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 f36fb6fdfd x86-64: Implement memcmp family IFUNC selectors in C discards 88aaf14749 x86-64: Implement memset family IFUNC selectors in C discards eb3372eed5 x86-64: Implement memmove family IFUNC selectors in C adds 4615f5aefe Add more tests for memchr adds 199fc19d3a Remove __need macros from stdio.h and wchar.h. adds 37b66c0b1a ld.so: Consolidate 2 strtouls into _dl_strtoul [BZ #21528] adds ab70273bb7 conformtest: Correct sys/wait.h expectations for XPG4. adds 6c85cc2852 aarch64: Fix undefined behavior in _dl_procinfo adds 48bd8cda09 support: Expose TEST_VERIFY_EXIT behavior to GCC optimizers adds 990c32b93a malloc: Remove tst-dynarray, tst-dynarray-fail from test-srcs adds 2f5d20ac99 x86-64: Optimize memchr/rawmemchr/wmemchr with SSE2/AVX2 adds dc485ceb2a x86-64: Optimize strlen/strnlen/wcslen/wcsnlen with AVX2 new cba707fc3d x86-64: Implement memmove family IFUNC selectors in C new 9763d446f3 x86-64: Implement memset family IFUNC selectors in C new cb5f66c53f x86-64: Implement memcmp family IFUNC selectors in C
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 (f36fb6fdfd) \ N -- N -- N refs/heads/hjl/ifunc/c (cb5f66c53f)
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 3 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 | 149 ++++++++ conform/Makefile | 1 + conform/data/sys/wait.h-data | 12 +- elf/dl-minimal.c | 84 ----- elf/dl-misc.c | 84 +++++ elf/dl-tunables.c | 69 +--- elf/rtld.c | 3 +- grp/grp.h | 3 +- gshadow/gshadow.h | 4 +- hurd/hurd.h | 3 +- iconv/gconv.h | 6 +- include/bits/types/FILE.h | 1 + include/bits/types/__FILE.h | 1 + include/bits/types/__mbstate_t.h | 1 + include/bits/types/mbstate_t.h | 1 + include/bits/types/wint_t.h | 1 + include/bits/wctype-wchar.h | 1 + include/stdio.h | 16 +- include/wchar.h | 10 +- include/wctype.h | 29 +- libio/Makefile | 3 +- libio/bits/types/FILE.h | 9 + libio/bits/types/__FILE.h | 7 + libio/stdio.h | 47 +-- mach/mach.h | 6 +- malloc/Makefile | 2 +- misc/mntent.h | 4 +- pwd/pwd.h | 3 +- shadow/shadow.h | 4 +- stdio-common/printf.h | 5 +- string/test-memrchr.c | 17 + support/check.h | 10 +- support/support_test_verify_impl.c | 12 +- sysdeps/generic/_G_config.h | 7 +- sysdeps/generic/ldsodefs.h | 4 + sysdeps/unix/sysv/linux/_G_config.h | 7 +- sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h | 6 +- sysdeps/unix/sysv/linux/dl-librecon.h | 2 +- sysdeps/x86_64/memchr.S | 65 ++-- sysdeps/x86_64/multiarch/Makefile | 6 +- .../x86_64/multiarch/{wcsnlen.c => ifunc-avx2.h} | 23 +- sysdeps/x86_64/multiarch/ifunc-impl-list.c | 45 +++ sysdeps/x86_64/multiarch/memchr-avx2.S | 340 ++++++++++++++++++ .../x86_64/multiarch/memchr-sse2.S | 25 +- sysdeps/x86_64/multiarch/{memmove.c => memchr.c} | 25 +- sysdeps/x86_64/multiarch/memcpy.c | 5 +- sysdeps/x86_64/multiarch/memmove.c | 5 +- sysdeps/x86_64/multiarch/rawmemchr-avx2.S | 4 + .../x86_64/multiarch/rawmemchr-sse2.S | 26 +- sysdeps/x86_64/multiarch/{memcpy.c => rawmemchr.c} | 35 +- sysdeps/x86_64/multiarch/strlen-avx2.S | 394 +++++++++++++++++++++ .../x86_64/multiarch/strlen-sse2.S | 22 +- sysdeps/x86_64/multiarch/{memmove.c => strlen.c} | 24 +- sysdeps/x86_64/multiarch/strnlen-avx2.S | 4 + .../x86_64/multiarch/strnlen-sse2.S | 25 +- sysdeps/x86_64/multiarch/{wcsnlen.c => strnlen.c} | 42 +-- sysdeps/x86_64/multiarch/wcslen-avx2.S | 4 + .../x86_64/multiarch/wcslen-sse2.S | 23 +- sysdeps/x86_64/multiarch/{memmove.c => wcslen.c} | 23 +- sysdeps/x86_64/multiarch/wcsnlen-avx2.S | 5 + sysdeps/x86_64/multiarch/wcsnlen.c | 6 + sysdeps/x86_64/multiarch/wmemchr-avx2.S | 4 + sysdeps/x86_64/multiarch/wmemchr-sse2.S | 4 + sysdeps/x86_64/multiarch/{wcsnlen.c => wmemchr.c} | 40 +-- wcsmbs/Makefile | 3 +- wcsmbs/bits/types/__mbstate_t.h | 23 ++ wcsmbs/bits/types/mbstate_t.h | 8 + wcsmbs/bits/types/wint_t.h | 23 ++ wcsmbs/uchar.h | 9 +- wcsmbs/wchar.h | 119 ++----- wctype/Makefile | 2 +- wctype/{wctype.h => bits/wctype-wchar.h} | 152 +------- wctype/wctype.h | 175 +-------- 73 files changed, 1451 insertions(+), 921 deletions(-) create mode 100644 include/bits/types/FILE.h create mode 100644 include/bits/types/__FILE.h create mode 100644 include/bits/types/__mbstate_t.h create mode 100644 include/bits/types/mbstate_t.h create mode 100644 include/bits/types/wint_t.h create mode 100644 include/bits/wctype-wchar.h create mode 100644 libio/bits/types/FILE.h create mode 100644 libio/bits/types/__FILE.h copy sysdeps/x86_64/multiarch/{wcsnlen.c => ifunc-avx2.h} (67%) create mode 100644 sysdeps/x86_64/multiarch/memchr-avx2.S copy support/support_test_verify_impl.c => sysdeps/x86_64/multiarch/memchr-sse2.S (62%) copy sysdeps/x86_64/multiarch/{memmove.c => memchr.c} (63%) create mode 100644 sysdeps/x86_64/multiarch/rawmemchr-avx2.S copy support/support_test_verify_impl.c => sysdeps/x86_64/multiarch/rawmemchr-sse2 [...] copy sysdeps/x86_64/multiarch/{memcpy.c => rawmemchr.c} (61%) create mode 100644 sysdeps/x86_64/multiarch/strlen-avx2.S copy support/support_test_verify_impl.c => sysdeps/x86_64/multiarch/strlen-sse2.S (62%) copy sysdeps/x86_64/multiarch/{memmove.c => strlen.c} (65%) create mode 100644 sysdeps/x86_64/multiarch/strnlen-avx2.S copy support/support_test_verify_impl.c => sysdeps/x86_64/multiarch/strnlen-sse2.S (62%) copy sysdeps/x86_64/multiarch/{wcsnlen.c => strnlen.c} (60%) create mode 100644 sysdeps/x86_64/multiarch/wcslen-avx2.S copy support/support_test_verify_impl.c => sysdeps/x86_64/multiarch/wcslen-sse2.S (62%) copy sysdeps/x86_64/multiarch/{memmove.c => wcslen.c} (64%) create mode 100644 sysdeps/x86_64/multiarch/wcsnlen-avx2.S create mode 100644 sysdeps/x86_64/multiarch/wmemchr-avx2.S create mode 100644 sysdeps/x86_64/multiarch/wmemchr-sse2.S copy sysdeps/x86_64/multiarch/{wcsnlen.c => wmemchr.c} (61%) create mode 100644 wcsmbs/bits/types/__mbstate_t.h create mode 100644 wcsmbs/bits/types/mbstate_t.h create mode 100644 wcsmbs/bits/types/wint_t.h copy wctype/{wctype.h => bits/wctype-wchar.h} (53%)