This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/glibc.
from 5a051454a9 Add inputs that generate larger error bounds adds 9fb07fd4e1 aarch64: update ulps. adds 764e9a0334 Correct buffer end pointer in IO_wdefault_doallocate (BZ #26874) adds 9fc813e1a3 Implement <unwind-link.h> for dynamically loading the libgcc [...] adds e164d95abf backtrace: Implement on top of <unwind-link.h> adds fac75a690e arm: Implement backtrace on top of <unwind-link.h> adds fd19b84640 i386: Implement backtrace on top of <unwind-link.h> adds 6563d544db m68k: Implement backtrace on top of <unwind-link.h> adds 600fe89cb1 sparc: Implement backtrace on top <unwind-link.h> adds 7cf18db482 __frame_state_for: Use <unwind-link.h> for unwinder access adds d14624825a Move sysdeps/gnu/unwind-resume.c to sysdeps/generic/unwind-resume.c adds 6b7efa3d87 Implement _Unwind_Resume in libc on top of <unwind-link.h> adds 97e42bd482 nptl: Use <unwind-link.h> for accessing the libgcc_s unwinder adds e7b2a56192 elf: Build __dl_iterate_phdr with unwinding support [BZ #27498] adds e81402f246 nptl: __libc_cleanup_push/__libc_cleanup_pop require -fexceptions adds e0685bacd5 tst: Add test for futimens adds dec445d40d tst: Add test for utime adds 9871ae0ab4 tst: Add test for utimes adds 40d055a2dd powerpc: Update libm-test-ulps adds 851f32cf7b ld.so: Implement the --list-diagnostics option new e4933c8a92 x86: Automate generation of PREFERRED_FEATURE_INDEX_1 bitfield new 01a5746b6c x86: Add CPU-specific diagnostics to ld.so --list-diagnostics new f01a61e138 i386: Regenerate ulps new dd1776e327 tst: Fix tst-timerfd test new dca565886b nscd: Fix double free in netgroupcache [BZ #27462]
The 5 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: NEWS | 4 + debug/backtrace.c | 86 ++----- elf/Makefile | 7 +- .../unwind-arch.h => elf/dl-diagnostics-cpu.c | 16 +- .../unwind-arch.h => elf/dl-diagnostics-kernel.c | 16 +- elf/dl-diagnostics.c | 265 +++++++++++++++++++++ elf/dl-diagnostics.h | 46 ++++ elf/dl-main.h | 5 +- elf/dl-usage.c | 1 + elf/rtld.c | 18 +- libio/wgenops.c | 7 +- malloc/set-freeres.c | 5 + misc/Makefile | 2 +- misc/Versions | 1 + misc/unwind-link.c | 145 +++++++++++ nptl/nptlfreeres.c | 1 - nptl/pthreadP.h | 6 +- nptl/pthread_cancel.c | 3 +- nscd/netgroupcache.c | 4 +- sysdeps/aarch64/libm-test-ulps | 32 +-- sysdeps/{generic => alpha}/unwind-arch.h | 22 +- sysdeps/arm/arm-unwind-resume.S | 26 +- sysdeps/arm/backtrace.c | 77 ++---- sysdeps/arm/nptl/unwind-forcedunwind.c | 25 ++ sysdeps/arm/pt-arm-unwind-resume.S | 22 +- sysdeps/arm/unwind-arch.h | 39 +++ sysdeps/arm/unwind-resume.c | 25 ++ sysdeps/generic/framestate.c | 21 +- sysdeps/generic/unwind-arch.h | 27 ++- sysdeps/generic/unwind-link.h | 106 +++++++++ sysdeps/generic/unwind-resume.c | 46 ++++ sysdeps/gnu/unwind-resume.c | 83 ------- sysdeps/i386/backtrace.c | 82 ++----- sysdeps/i386/fpu/libm-test-ulps | 46 ++-- sysdeps/i386/i686/fpu/multiarch/libm-test-ulps | 46 ++-- sysdeps/i386/unwind-arch.h | 39 +++ sysdeps/{generic => ia64}/unwind-arch.h | 26 +- sysdeps/m68k/backtrace.c | 82 ++----- sysdeps/{generic => m68k/m680x0}/unwind-arch.h | 18 +- sysdeps/m68k/unwind-arch.h | 35 +++ sysdeps/mach/hurd/fork.c | 3 + sysdeps/{unix/sysv/linux => }/mips/unwind-arch.h | 17 +- sysdeps/nptl/fork.c | 3 + sysdeps/nptl/libc-lockP.h | 9 +- sysdeps/nptl/unwind-forcedunwind.c | 115 ++------- sysdeps/powerpc/fpu/libm-test-ulps | 28 ++- .../{generic => powerpc/powerpc32}/unwind-arch.h | 22 +- sysdeps/{generic => s390}/unwind-arch.h | 22 +- sysdeps/{generic => sh}/unwind-arch.h | 22 +- sysdeps/sparc/backtrace.c | 66 ++--- sysdeps/{generic => sparc}/unwind-arch.h | 22 +- sysdeps/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/dl-diagnostics-kernel.c | 77 ++++++ sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c | 16 +- sysdeps/unix/sysv/linux/tst-futimens.c | 84 +++++++ sysdeps/unix/sysv/linux/tst-timerfd.c | 15 +- sysdeps/unix/sysv/linux/tst-utime.c | 87 +++++++ sysdeps/unix/sysv/linux/tst-utimes.c | 88 +++++++ sysdeps/x86/dl-diagnostics-cpu.c | 118 +++++++++ .../cpu-features-preferred_feature_index_1.def} | 30 ++- sysdeps/x86/include/cpu-features.h | 53 ++--- 61 files changed, 1656 insertions(+), 806 deletions(-) copy sysdeps/generic/unwind-arch.h => elf/dl-diagnostics-cpu.c (72%) copy sysdeps/generic/unwind-arch.h => elf/dl-diagnostics-kernel.c (72%) create mode 100644 elf/dl-diagnostics.c create mode 100644 elf/dl-diagnostics.h create mode 100644 misc/unwind-link.c copy sysdeps/{generic => alpha}/unwind-arch.h (66%) create mode 100644 sysdeps/arm/nptl/unwind-forcedunwind.c create mode 100644 sysdeps/arm/unwind-arch.h create mode 100644 sysdeps/arm/unwind-resume.c create mode 100644 sysdeps/generic/unwind-link.h create mode 100644 sysdeps/generic/unwind-resume.c delete mode 100644 sysdeps/gnu/unwind-resume.c create mode 100644 sysdeps/i386/unwind-arch.h copy sysdeps/{generic => ia64}/unwind-arch.h (52%) copy sysdeps/{generic => m68k/m680x0}/unwind-arch.h (71%) create mode 100644 sysdeps/m68k/unwind-arch.h rename sysdeps/{unix/sysv/linux => }/mips/unwind-arch.h (85%) copy sysdeps/{generic => powerpc/powerpc32}/unwind-arch.h (66%) copy sysdeps/{generic => s390}/unwind-arch.h (66%) copy sysdeps/{generic => sh}/unwind-arch.h (66%) copy sysdeps/{generic => sparc}/unwind-arch.h (66%) create mode 100644 sysdeps/unix/sysv/linux/dl-diagnostics-kernel.c create mode 100644 sysdeps/unix/sysv/linux/tst-futimens.c create mode 100644 sysdeps/unix/sysv/linux/tst-utime.c create mode 100644 sysdeps/unix/sysv/linux/tst-utimes.c create mode 100644 sysdeps/x86/dl-diagnostics-cpu.c copy sysdeps/{generic/unwind-arch.h => x86/include/cpu-features-preferred_feature_ [...]