LibC: Implement some mem* and str* functions in assembly

This made them a lot faster on modern cpus with optimized rep stos and
rep movs
This commit is contained in:
2025-01-14 22:50:46 +02:00
parent b129bab81a
commit ebecbb69ec
4 changed files with 152 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ set(LIBC_SOURCES
icxxabi.cpp
arch/${BANAN_ARCH}/setjmp.S
arch/${BANAN_ARCH}/string.S
../../../BAN/BAN/Assert.cpp
)