This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/memcmp/avx2 in repository glibc.
discards 2b047a8ff3 Use vptest discards 9c933ed098 Add first_vec_ptest discards e50d7a7e9f Add memcmp-avx2-movbe-new.S adds b8216e8278 manual: Complete @standards in lang.texi. adds 09a596cc2c Remove bits/string.h. adds d8cee557e2 Mention in NEWS that __(NO|USE)_STRING_INLINES don't do anyt [...] adds 4cedcaea8d Add powf bench tests adds c0b23001a8 Fix fallout from bits/string.h removal. adds beb52f502f Improve math benchmark infrastructure adds 905947c304 tunables: Add IFUNC selection and cache sizes adds 18b759355d Add powf trace adds e0b5a3b654 conformtest: XFAIL uc_sigmask test for ia64 (bug 21634). adds 46ad8909ce conformtest: XFAIL uc_mcontext test for powerpc32 (bug 21635). adds da69a35566 Move x86 specific tunables to x86/dl-tunables.list new 22131e2437 Add memcmp-avx2-movbe-new.S new 0eb102823c Add first_vec_ptest and use vptest
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (2b047a8ff3) \ N -- N -- N refs/heads/hjl/memcmp/avx2 (0eb102823c)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 134 ++ NEWS | 4 + benchtests/Makefile | 2 +- benchtests/README | 6 + benchtests/bench-skeleton.c | 57 +- benchtests/powf-inputs | 2518 ++++++++++++++++++++ bits/string.h | 18 - conform/data/signal.h-data | 12 +- conform/data/ucontext.h-data | 6 +- elf/dl-tunables.list | 4 + include/bits/string3.h | 1 - include/bits/string_fortified.h | 1 + include/string.h | 13 +- manual/lang.texi | 40 +- manual/tunables.texi | 36 + string/Makefile | 9 +- string/bits/{string3.h => string_fortified.h} | 29 +- string/string-inlines.c | 36 +- string/string.h | 39 +- string/strncat.c | 5 + sysdeps/aarch64/bits/string.h | 24 - sysdeps/i386/i686/multiarch/strncat-c.c | 7 +- sysdeps/i386/string-inlines.c | 185 +- sysdeps/m68k/m680x0/m68020/bits/string.h | 24 - .../powerpc/powerpc32/power4/multiarch/mempcpy.c | 3 +- sysdeps/powerpc/powerpc64/multiarch/mempcpy.c | 3 +- sysdeps/powerpc/powerpc64/multiarch/stpcpy.c | 1 + sysdeps/s390/bits/string.h | 252 -- sysdeps/s390/multiarch/mempcpy.c | 4 +- sysdeps/s390/multiarch/strncat-c.c | 2 +- sysdeps/sparc/bits/string.h | 31 - sysdeps/unix/sysv/linux/ia64/Makefile | 5 + sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile | 5 + .../unix/sysv/linux/x86/dl-sysdep.c | 15 +- sysdeps/x86/bits/string.h | 1996 ---------------- sysdeps/x86/cacheinfo.c | 10 +- sysdeps/x86/cpu-features.c | 19 + sysdeps/x86/cpu-features.h | 8 + sysdeps/x86/cpu-tunables.c | 330 +++ ctype/Makefile => sysdeps/x86/dl-tunables.list | 34 +- sysdeps/x86_64/multiarch/memcmp-avx2-movbe-new.S | 57 +- sysdeps/x86_64/multiarch/mempcpy.c | 2 + sysdeps/x86_64/multiarch/stpcpy.c | 2 + sysdeps/x86_64/multiarch/strncat-c.c | 7 +- 44 files changed, 3424 insertions(+), 2572 deletions(-) create mode 100644 benchtests/powf-inputs delete mode 100644 bits/string.h delete mode 100644 include/bits/string3.h create mode 100644 include/bits/string_fortified.h rename string/bits/{string3.h => string_fortified.h} (89%) delete mode 100644 sysdeps/aarch64/bits/string.h delete mode 100644 sysdeps/m68k/m680x0/m68020/bits/string.h delete mode 100644 sysdeps/s390/bits/string.h delete mode 100644 sysdeps/sparc/bits/string.h copy support/xpipe.c => sysdeps/unix/sysv/linux/x86/dl-sysdep.c (81%) delete mode 100644 sysdeps/x86/bits/string.h create mode 100644 sysdeps/x86/cpu-tunables.c copy ctype/Makefile => sysdeps/x86/dl-tunables.list (66%)