about summary refs log tree commit diff
path: root/ports/ChangeLog.arm
Commit message (Collapse)AuthorAgeFilesLines
* ARM: Fix clone build for ARMv4Will Newton2014-01-241-0/+6
| | | | | | | | | | | | | | | ARMv4 does not have the blx instruction, so use the BLX macro which handles abstracting this for us. Build tested for armv7, armv4t and armv4. ports/ChangeLog.arm: 2014-01-24 Will Newton <will.newton@linaro.org> [BZ #16499] * sysdeps/unix/sysv/linux/arm/clone.S: Use BLX macro instead of blx instruction directly.
* ARM: Don't apply pointer encryption to the frame pointerWill Newton2014-01-141-0/+10
| | | | | | | | | | | | | | | | | | | | | The frame pointer register is rarely used for that purpose on ARM and applications that look at the contents of the jmp_buf may be relying on reading an unencrypted value. For example, Ruby uses the contents of jmp_buf to find the root set for garbage collection so relies on this pointer value being unencrypted. Without this patch the Ruby testsuite fails with a segmentation fault. ports/ChangeLog.arm: 2013-01-14 Will Newton <will.newton@linaro.org> * sysdeps/arm/__longjmp.S: Don't apply pointer encryption to fp register. * sysdeps/arm/setjmp.S: Likewise. * sysdeps/arm/include/bits/setjmp.h (JMP_BUF_REGLIST): Add fp to register list, remove a4. * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD): New macro.
* ARM: Disable compat mcount code when unneeded.Roland McGrath2014-01-101-1/+14
|
* Regenerate ARM ulps.Joseph Myers2014-01-011-0/+4
|
* Fix dbl-64 e_sqrt.c for non-default rounding modes (bug 16271).Joseph Myers2013-11-281-0/+4
|
* Use __glibc_reserved instead __unused.Ondřej Bílka2013-11-261-0/+3
|
* ARM: Fix memcpy computed-jump calculations for ARM_ALWAYS_BX case.Roland McGrath2013-11-221-0/+8
|
* rename configure.in to configure.acMike Frysinger2013-10-301-0/+20
| | | | | | | Autoconf has been deprecating configure.in for quite a long time. Rename all our configure.in and preconfigure.in files to .ac. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* ARM: Allow building __sigsetjmp as Thumb.Will Newton2013-10-041-0/+3
| | | | | | | | | | | Convert __sigsetjmp code to allow building as Thumb. ports/ChangeLog.arm: 2013-10-04 Will Newton <will.newton@linaro.org> * sysdeps/arm/setjmp.S (NO_THUMB): Remove define. (__sigsetjmp): Use Thumb supported instructions.
* ARM: Allow building __longjmp as Thumb.Will Newton2013-10-041-0/+7
| | | | | | | | | | | | | Convert __longjmp code to allow building as Thumb. ports/ChangeLog.arm: 2013-10-04 Will Newton <will.newton@linaro.org> * sysdeps/arm/__longjmp.S (NO_THUMB): Remove define. (__longjmp): Use Thumb supported instructions. * sysdeps/unix/sysv/linux/arm/____longjmp_chk.S (NO_THUMB): Remove define.
* ARM: Add pointer encryption support.Will Newton2013-10-031-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for pointer encryption in glibc internal structures in C and assembler code. Pointer encryption is a glibc security feature described here: https://sourceware.org/glibc/wiki/PointerEncryption The ARM implementation uses global variables instead of thread pointer relative accesses to get the value of the pointer encryption guard because accessing the thread pointer can be very expensive on older ARM cores. ports/ChangeLog.arm: 2013-10-03 Will Newton <will.newton@linaro.org> * sysdeps/arm/__longjmp.S (__longjmp): Demangle fp, sp and lr when restoring register values. * sysdeps/arm/include/bits/setjmp.h (JMP_BUF_REGLIST): Remove sp and lr from list and replace fp with a4. * sysdeps/arm/jmpbuf-unwind.h (_jmpbuf_sp): New function. (_JMPBUF_UNWINDS_ADJ): Call _jmpbuf_sp. * sysdeps/arm/setjmp.S (__sigsetjmp): Mangle fp, sp and lr before storing register values. * sysdeps/arm/sysdep.h (LDST_GLOBAL): New macro. * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE): New macro. (PTR_DEMANGLE): Likewise. (PTR_MANGLE2): Likewise. (PTR_DEMANGLE2): Likewise.
* ports/sysdeps/arm/nptl/tls.h: Remove TLS_INIT_TP_EXPENSIVE.Will Newton2013-09-241-0/+5
| | | | | | | | | | | This define was removed from the rest of the tree eight years ago. ports/ChangeLog.arm: 2013-09-24 Will Newton <will.newton@linaro.org> * ports/sysdeps/arm/nptl/tls.h (TLS_INIT_TP_EXPENSIVE): Remove macro.
* Make __ffs hiddenAndreas Schwab2013-09-201-0/+4
|
* Improve atomic locking for ARM.Maxim Kuvyrkov2013-09-191-0/+10
| | | | | | | | | | [BZ #15640] * sysdeps/arm/bits/atomic.h (atomic_exchange_acq, atomic_exchange_rel) (atomic_compare_and_exchange_bool_acq) (atomic_compare_and_exchange_val_acq) (atomic_compare_and_exchange_bool_rel) (atomic_compare_and_exchange_val_rel): Use __atomic_exchange_n and __atomic_compare_exchange_n builtins when GCC supports them.
* ARM: Improve armv7 memcpy performance.Will Newton2013-09-161-0/+5
| | | | | | | | | | | | | | Only enter the aligned copy loop with buffers that can be 8-byte aligned. This improves performance slightly on Cortex-A9 and Cortex-A15 cores for large copies with buffers that are 4-byte aligned but not 8-byte aligned. ports/ChangeLog.arm: 2013-09-16 Will Newton <will.newton@linaro.org> * sysdeps/arm/armv7/multiarch/memcpy_impl.S: Tighten check on entry to aligned copy loop to improve performance.
* Use sfi_* macros in armv6t2 strlen.Roland McGrath2013-08-301-0/+2
|
* Make armv6t2 strlen work in ARM mode too.Roland McGrath2013-08-301-0/+5
|
* ARM: Fix clone code when built for Thumb.Will Newton2013-08-301-0/+6
| | | | | | | | | | | | | The mov lr, pc instruction will lose the Thumb bit from the return address so use blx lr instead. ports/ChangeLog.arm: 2013-08-30 Will Newton <will.newton@linaro.org> [BZ #15909] * sysdeps/unix/sysv/linux/arm/clone.S (__clone): Use blx instead of mov lr, pc.
* sysdeps/arm/armv6t2/strlen.S: strlen implementation for armv6t2.Will Newton2013-08-301-0/+4
| | | | | | | | | | | This implementation of strlen is faster than the armv6 version for all string lengths greater than 1 on a Cortex-A15. ports/ChangeLog.arm: 2013-08-09 Will Newton <will.newton@linaro.org> * sysdeps/arm/armv6t2/strlen.S: New file.
* Use ELFOSABI_GNU instead of ELFOSABI_LINUX.Thomas Schwinge2013-08-291-0/+6
|
* ARM: Pass dl_hwcap to IFUNC resolver.Carlos O'Donell2013-08-291-0/+7
| | | | | For REL relocs pass dl_hwcap to the IFUNC resolver as is required by the IFUNC API (bug 15905).
* Condition sysdeps/arm/include/bits/setjmp.h contents on _ISOMAC.Joseph Myers2013-07-031-0/+6
|
* Regenerate ARM ulps.Joseph Myers2013-07-021-0/+2
|
* Make soft-float ARM use soft-fp fma/fmaf.Joseph Myers2013-07-021-0/+9
|
* ARM: Pass dl_hwcap to IFUNC resolver functions.Will Newton2013-07-021-0/+5
|
* Add GLRO(dl_hwcap2) for new AT_HWCAP2 auxv_t a_type.Ryan S. Arnold2013-06-281-0/+7
|
* sysdeps/arm/arm-mcount.S: Comment typo fix.Roland McGrath2013-06-181-0/+2
|
* ARM: Make armv7 memcpy implementations SFI-friendlyRoland McGrath2013-06-181-0/+8
|
* ARM: Clean up __libc_ifunc_impl_listRoland McGrath2013-06-181-0/+6
|
* Fix warnings from ARM soft-float fpu_control.h.Joseph Myers2013-06-181-0/+5
|
* Wrap test-fpucw.c for ARM.Joseph Myers2013-06-181-0/+6
|
* Make ARM feenableexcept detect failure (bug 14907).Joseph Myers2013-06-171-0/+6
|
* New API to set default thread attributesSiddhesh Poyarekar2013-06-151-0/+4
| | | | | | | This patch introduces two new convenience functions to set the default thread attributes used for creating threads. This allows a programmer to set the default thread attributes just once in a process and then run pthread_create without additional attributes.
* Update ARM _FPU_RESERVED value.Joseph Myers2013-06-141-0/+6
|
* Add exception information to math-tests.h and use it in libm-test.inc.Joseph Myers2013-06-111-0/+7
|
* Add rounding mode information to math-tests.h and use it in libm-test.inc.Joseph Myers2013-06-101-0/+4
|
* BZ #15583: r7 uninitialized in strcpy.S when ARM_HAS_T2 undefinedRichard Henderson2013-06-051-0/+6
|
* Remove trailing whitespace in ports.Joseph Myers2013-06-051-0/+7
|
* Link extra-libs consistently with libc and ld.so.Joseph Myers2013-05-311-0/+6
|
* Avoid crashing in LD_DEBUG when program name is unavailableSiddhesh Poyarekar2013-05-291-0/+7
| | | | | | | | | Resolves: #15465 The program name may be unavailable if the user application tampers with argc and argv[]. Some parts of the dynamic linker caters for this while others don't, so this patch consolidates the check and fallback into a single macro and updates all users.
* Don't include expected results in libm-test test names.Joseph Myers2013-05-221-0/+4
|
* Handle sincos with generic libm-test logic.Joseph Myers2013-05-191-0/+4
|
* Add #include <stdint.h> for uint[32|64]_t usage (except installed headers).Ryan S. Arnold2013-05-161-0/+5
|
* Stop ARM setjmp/longjmp saving/restoring fpscr (bug 14908).Joseph Myers2013-05-141-0/+8
|
* ARM: Make multiarch memcpy always use NEON when compiler doesRoland McGrath2013-05-131-0/+12
|
* ARM: Add Cortex-A15 optimized NEON and VFP memcpy routines, with IFUNC.Will Newton2013-05-081-0/+12
|
* ARM: Rewrite elf_machine_dynamic in pure C.Roland McGrath2013-05-071-0/+5
|
* ARM: Add missing sfi_breg prefix in _dl_tlsdesc_dynamic code.Roland McGrath2013-05-061-0/+4
|
* ARM: Macroize assembly use of EABI unwind directives.Roland McGrath2013-04-191-0/+7
|
* ARM: fix preconfigure.Mans Rullgard2013-03-261-0/+5
|