diff options
author | Will Newton <will.newton@linaro.org> | 2014-04-23 13:21:47 +0100 |
---|---|---|
committer | Will Newton <will.newton@linaro.org> | 2014-05-09 10:01:28 +0100 |
commit | f63c86fed0ddf38f53de486c5ec537455c00bd52 (patch) | |
tree | 675bf0a8a568824b81a60323d5db5feebe9dc88d /NEWS | |
parent | 95afbbe5fcf1b9eca04c05368d6c546b883007cb (diff) | |
download | glibc-f63c86fed0ddf38f53de486c5ec537455c00bd52.tar.gz glibc-f63c86fed0ddf38f53de486c5ec537455c00bd52.tar.xz glibc-f63c86fed0ddf38f53de486c5ec537455c00bd52.zip |
ARM: Add optimized ARMv7 strcmp implementation
Add an optimized implementation of strcmp for ARMv7-A cores. This implementation is significantly faster than the current generic C implementation, particularly for strings of 16 bytes and longer. Tested with the glibc string tests for arm-linux-gnueabihf and armeb-linux-gnueabihf. The code was written by ARM, who have agreed to assign the copyright to the FSF for integration into glibc. ChangeLog: 2014-05-09 Will Newton <will.newton@linaro.org> * sysdeps/arm/armv7/strcmp.S: New file. * NEWS: Mention addition of ARMv7 optimized strcmp.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS index 96b3dbf3f6..40068712dc 100644 --- a/NEWS +++ b/NEWS @@ -38,6 +38,8 @@ Version 2.20 interfaces those macros enabled remain available when compiling with _GNU_SOURCE defined, with _DEFAULT_SOURCE defined, or without any feature test macros defined. + +* Optimized strcmp implementation for ARMv7. Contributed by ARM Ltd. Version 2.19 |