This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/ifunc/c in repository glibc.
discards e2ef301440 x86-64: Implement memcmp family IFUNC selectors in C discards 27fbd68670 x86-64: Implement memset family IFUNC selectors in C discards a557a99d93 x86-64: Implement memmove family IFUNC selectors in C adds 65b6d8b79c Polish the treatment of dl-tunable-list.h in Makeconfig. adds b4971123e9 Remove bare use of __attribute__ in include/errno.h. adds 0862cdcdc8 Condition signal.h inclusion in sys/wait.h (bug 21560). adds b85995291e Fix sigpause namespace (bug 21554). adds 10d33c5a86 Update nios2, sparc32 localplt.data files for recent GCC change. adds a17973efc6 Fix waitid namespace (bug 21561). adds d6bd839b9a Add a way to bypass the PLT when calling getauxval adds cdfbe5037f powerpc: add sysconf support for cache geometries adds 8458956a62 Correct an outdated comment in stdlib/errno.h. adds b05eca0e1d Correct collation rules for Malayalam. new 6a061a7543 x86-64: Implement memmove family IFUNC selectors in C new 1364a47a36 x86-64: Implement memset family IFUNC selectors in C new 7ad7882ab4 x86-64: Implement memcmp family IFUNC selectors in C new 124210359d x86-64: Implement strcpy family IFUNC selectors in C new ac09970f15 Use IFUNC memmove in libc.so new d959b81f87 Use IFUNC memset in libc.so new 328e1713fd Use IFUNC memcmp in libc.so
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 (e2ef301440) \ N -- N -- N refs/heads/hjl/ifunc/c (328e1713fd)
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 7 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 | 68 +++++++++++++++ Makeconfig | 21 +++-- conform/Makefile | 3 - include/errno.h | 2 +- include/sys/auxv.h | 7 ++ localedata/ChangeLog | 8 ++ localedata/locales/iso14651_t1_common | 26 +++++- misc/getauxval.c | 1 + posix/sys/wait.h | 15 +++- signal/signal.h | 2 +- stdlib/errno.h | 2 +- sysdeps/unix/sysv/linux/bits/waitflags.h | 10 ++- sysdeps/unix/sysv/linux/nios2/localplt.data | 8 +- sysdeps/unix/sysv/linux/powerpc/Makefile | 1 + sysdeps/unix/sysv/linux/powerpc/sysconf.c | 96 +++++++++++++++++++++ .../linux/powerpc/test-powerpc-linux-sysconf.c | 73 ++++++++++++++++ .../unix/sysv/linux/sparc/sparc32/localplt.data | 1 + sysdeps/x86_64/multiarch/Makefile | 1 + sysdeps/x86_64/multiarch/ifunc-memmove.h | 2 +- sysdeps/x86_64/multiarch/ifunc-memset.h | 2 +- .../multiarch/{ifunc-avx2.h => ifunc-strcpy.h} | 15 ++-- sysdeps/x86_64/multiarch/memcmp-sse2.S | 6 +- sysdeps/x86_64/multiarch/memcmp.c | 5 ++ sysdeps/x86_64/multiarch/memcpy.c | 3 + .../x86_64/multiarch/memmove-sse2-unaligned-erms.S | 13 --- sysdeps/x86_64/multiarch/memmove.c | 4 + sysdeps/x86_64/multiarch/mempcpy.c | 4 + .../x86_64/multiarch/memset-sse2-unaligned-erms.S | 8 +- sysdeps/x86_64/multiarch/memset.c | 5 ++ .../multiarch/{strnlen-sse2.S => stpcpy-sse2.S} | 15 ++-- sysdeps/x86_64/multiarch/stpcpy.S | 9 -- sysdeps/x86_64/multiarch/{strrchr.c => stpcpy.c} | 22 +++-- sysdeps/x86_64/multiarch/stpncpy-c.c | 9 +- sysdeps/x86_64/multiarch/stpncpy.S | 8 -- sysdeps/x86_64/multiarch/{strrchr.c => stpncpy.c} | 19 +++-- .../multiarch/{strchr-sse2.S => strcpy-sse2.S} | 13 +-- sysdeps/x86_64/multiarch/strcpy.S | 99 ---------------------- sysdeps/x86_64/multiarch/{strrchr.c => strcpy.c} | 16 ++-- sysdeps/x86_64/multiarch/strncpy-c.c | 7 +- sysdeps/x86_64/multiarch/strncpy.S | 5 -- sysdeps/x86_64/multiarch/{strrchr.c => strncpy.c} | 17 ++-- sysdeps/x86_64/multiarch/wmemset.c | 7 ++ 42 files changed, 420 insertions(+), 238 deletions(-) create mode 100644 sysdeps/unix/sysv/linux/powerpc/sysconf.c create mode 100644 sysdeps/unix/sysv/linux/powerpc/test-powerpc-linux-sysconf.c copy sysdeps/x86_64/multiarch/{ifunc-avx2.h => ifunc-strcpy.h} (74%) copy sysdeps/x86_64/multiarch/{strnlen-sse2.S => stpcpy-sse2.S} (76%) delete mode 100644 sysdeps/x86_64/multiarch/stpcpy.S copy sysdeps/x86_64/multiarch/{strrchr.c => stpcpy.c} (64%) delete mode 100644 sysdeps/x86_64/multiarch/stpncpy.S copy sysdeps/x86_64/multiarch/{strrchr.c => stpncpy.c} (69%) copy sysdeps/x86_64/multiarch/{strchr-sse2.S => strcpy-sse2.S} (82%) delete mode 100644 sysdeps/x86_64/multiarch/strcpy.S copy sysdeps/x86_64/multiarch/{strrchr.c => strcpy.c} (75%) delete mode 100644 sysdeps/x86_64/multiarch/strncpy.S copy sysdeps/x86_64/multiarch/{strrchr.c => strncpy.c} (73%)