This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.35/master in repository glibc.
from d626c31ce5 x86: Avoid integer truncation with large cache sizes (bug 32470) new 30384b91ad x86_64: Sort fpu/multiarch/Makefile new 516180d399 x86_64: Add log2 with FMA new 0d1c70aa4c x86_64: Add expm1 with FMA new 41a3e51233 x86_64: Add log1p with FMA new 543efedcb3 x86: Check the lower byte of EAX of CPUID leaf 2 [BZ #30643] new 889f99c149 elf: Fix slow tls access after dlopen [BZ #19924] new a4207d4e83 x86: Only align destination to 1x VEC_SIZE in memset 4x loop new 710057676d sysdeps/x86/Makefile: Split and sort tests
The 8 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: elf/dl-close.c | 2 +- elf/dl-open.c | 8 +- elf/dl-reloc.c | 6 +- elf/dl-tls.c | 117 +++++++++++---------- sysdeps/generic/ldsodefs.h | 3 +- sysdeps/ieee754/dbl-64/s_expm1.c | 7 ++ sysdeps/ieee754/dbl-64/s_log1p.c | 5 + sysdeps/x86/Makefile | 110 +++++++++++++------ sysdeps/x86/dl-cacheinfo.h | 31 +++--- sysdeps/x86_64/dl-tls.c | 4 +- sysdeps/x86_64/fpu/multiarch/Makefile | 94 ++++++++++++++--- sysdeps/x86_64/fpu/multiarch/e_log2-fma.c | 3 + .../x86_64/fpu/multiarch/{e_expf.c => e_log2.c} | 28 ++--- sysdeps/x86_64/fpu/multiarch/s_expm1-fma.c | 10 ++ .../x86_64/fpu/multiarch/s_expm1.c | 23 ++-- sysdeps/x86_64/fpu/multiarch/s_log1p-fma.c | 4 + .../x86_64/fpu/multiarch/s_log1p.c | 18 ++-- .../x86_64/multiarch/memset-vec-unaligned-erms.S | 2 +- 18 files changed, 308 insertions(+), 167 deletions(-) create mode 100644 sysdeps/x86_64/fpu/multiarch/e_log2-fma.c copy sysdeps/x86_64/fpu/multiarch/{e_expf.c => e_log2.c} (60%) create mode 100644 sysdeps/x86_64/fpu/multiarch/s_expm1-fma.c copy support/xstdlib.h => sysdeps/x86_64/fpu/multiarch/s_expm1.c (61%) create mode 100644 sysdeps/x86_64/fpu/multiarch/s_log1p-fma.c copy support/xstdlib.h => sysdeps/x86_64/fpu/multiarch/s_log1p.c (72%)