This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from a15529fda8 i386: Replace PREINIT_FUNCTION@PLT with *%eax in call new 69a01461ee Add narrowing multiply functions.
The 1 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 | 72 + NEWS | 3 + manual/arith.texi | 19 + math/Makefile | 4 +- math/Versions | 5 + math/auto-libm-test-in | 48 + math/auto-libm-test-out-narrow-mul | 11383 +++++++++++++++++++ math/bits/mathcalls-narrow.h | 3 + math/gen-auto-libm-tests.c | 1 + math/libm-test-narrow-mul.inc | 179 + math/math-narrow.h | 53 + soft-fp/op-common.h | 21 + .../i386/fpu/s_f32xmulf64.c | 20 +- .../ieee754/dbl-64/s_f32xmulf64.c | 19 +- .../ieee754/dbl-64/s_fmul.c | 23 +- sysdeps/ieee754/float128/float128_private.h | 2 + sysdeps/ieee754/float128/s_f32mulf128.c | 6 + sysdeps/ieee754/float128/s_f64mulf128.c | 10 + sysdeps/ieee754/float128/s_f64xmulf128.c | 2 + .../ieee754/ldbl-128/s_dmull.c | 26 +- .../ieee754/ldbl-128/s_f64xmulf128.c | 27 +- .../ieee754/ldbl-128/s_fmull.c | 22 +- .../ieee754/ldbl-128ibm/s_dmull.c | 18 +- .../ieee754/ldbl-128ibm/s_fmull.c | 18 +- .../ieee754/ldbl-96/s_dmull.c | 22 +- .../ieee754/ldbl-96/s_fmull.c | 20 +- sysdeps/ieee754/ldbl-opt/Makefile | 4 +- sysdeps/ieee754/ldbl-opt/Versions | 2 +- sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 1 + .../ieee754/ldbl-opt/nldbl-dmul.c | 19 +- .../ieee754/ldbl-opt/nldbl-fmul.c | 19 +- sysdeps/ieee754/soft-fp/s_dmull.c | 59 + .../ieee754/soft-fp/s_fmul.c | 45 +- .../ieee754/soft-fp/s_fmull.c | 44 +- sysdeps/mach/hurd/i386/libm.abilist | 13 + sysdeps/powerpc/fpu/libm-test-ulps | 16 + sysdeps/unix/sysv/linux/aarch64/libm.abilist | 13 + sysdeps/unix/sysv/linux/alpha/libm.abilist | 14 + sysdeps/unix/sysv/linux/arm/libm.abilist | 6 + sysdeps/unix/sysv/linux/hppa/libm.abilist | 6 + sysdeps/unix/sysv/linux/i386/libm.abilist | 13 + sysdeps/unix/sysv/linux/ia64/libm.abilist | 13 + sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist | 6 + sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist | 6 + sysdeps/unix/sysv/linux/microblaze/libm.abilist | 6 + sysdeps/unix/sysv/linux/mips/mips32/libm.abilist | 6 + sysdeps/unix/sysv/linux/mips/mips64/libm.abilist | 13 + sysdeps/unix/sysv/linux/nios2/libm.abilist | 6 + .../sysv/linux/powerpc/powerpc32/fpu/libm.abilist | 7 + .../linux/powerpc/powerpc32/nofpu/libm.abilist | 7 + .../sysv/linux/powerpc/powerpc64/libm-le.abilist | 14 + .../unix/sysv/linux/powerpc/powerpc64/libm.abilist | 7 + sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist | 13 + sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist | 14 + sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist | 14 + sysdeps/unix/sysv/linux/sh/libm.abilist | 6 + sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist | 14 + sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist | 13 + sysdeps/unix/sysv/linux/x86_64/64/libm.abilist | 13 + sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist | 13 + 60 files changed, 12370 insertions(+), 121 deletions(-) create mode 100644 math/auto-libm-test-out-narrow-mul create mode 100644 math/libm-test-narrow-mul.inc copy math/bits/mathcalls-narrow.h => sysdeps/i386/fpu/s_f32xmulf64.c (66%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/dbl-64/s_f32xmulf64.c (70%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/dbl-64/s_fmul.c (66%) create mode 100644 sysdeps/ieee754/float128/s_f32mulf128.c create mode 100644 sysdeps/ieee754/float128/s_f64mulf128.c create mode 100644 sysdeps/ieee754/float128/s_f64xmulf128.c copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-128/s_dmull.c (60%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-128/s_f64xmulf128.c (55%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-128/s_fmull.c (66%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-128ibm/s_dmull.c (69%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-128ibm/s_fmull.c (69%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-96/s_dmull.c (66%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-96/s_fmull.c (69%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-opt/nldbl-dmul.c (69%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/ldbl-opt/nldbl-fmul.c (69%) create mode 100644 sysdeps/ieee754/soft-fp/s_dmull.c copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/soft-fp/s_fmul.c (50%) copy math/bits/mathcalls-narrow.h => sysdeps/ieee754/soft-fp/s_fmull.c (50%)