about summary refs log tree commit diff
path: root/ports/ChangeLog.arm
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Use LIBC_CONFIG_VAR for ARM default-abi setting.Joseph Myers2013-03-201-0/+8
|
* ARM: Make dl-tlsdesc.S use sfi_breg, respect ARM_ALWAYS_BX and ↵Roland McGrath2013-03-181-0/+10
| | | | ARM_NO_INDEX_REGISTER.
* ARM: sfi_sp assembler macroRoland McGrath2013-03-151-0/+3
|
* ARM: sfi_breg assembler macroRoland McGrath2013-03-151-0/+23
|
* ARM_BX_ALIGN_LOG2Roland McGrath2013-03-131-0/+4
|
* ARM: Handle ARM_ALWAYS_BX in {add,sub}_n.S code.Roland McGrath2013-03-131-0/+3
|
* ARM: Support avoiding pc as destination register.Roland McGrath2013-03-131-0/+7
|
* ARM: Make armv6t2 memchr implementation usable without Thumb.Roland McGrath2013-03-121-0/+3
|
* ARM: Change register allocation in armv6t2 memchr implementation.Roland McGrath2013-03-121-0/+5
|
* Add comments about ARM configure -fno-unwind-tables handling.Joseph Myers2013-03-111-0/+9
|
* ARM: Consolidate setjmp details in include/bits/setjmp.h file.Roland McGrath2013-03-111-0/+8
|
* ARM: Convert string/ assembly to unified syntax.Roland McGrath2013-03-111-0/+5
|
* ARM: Use r10 instead of r9.Roland McGrath2013-03-111-0/+3
|
* Clean up ARM preconfigure.Roland McGrath2013-03-111-0/+5
|
* Remove extra pthread_atfork compat symbolsAndreas Schwab2013-03-111-0/+6
|
* arm: Implement armv6 optimized string routinesRichard Henderson2013-03-071-0/+10
| | | | | | | | The strcpy and strchr (and related) functions are four times faster than the byte-by-byte default versions. The strlen function is twice as fast for long strings and 50% faster for short strings over the armv4 version.
* arm: Add optimized add_n and sub_nRichard Henderson2013-03-061-0/+2
| | | | | | | | Written from scratch rather than copied from GMP, due to LGPL 2.1 vs GPL 3, but tested with the GMP testsuite. This is 250% faster than the generic code as measured on Cortex-A15, and the same speed as GMP on the same core, and probably everywhere.
* arm: Add optimized submul_1Richard Henderson2013-03-061-0/+1
| | | | | | | | Written from scratch rather than copied from GMP, due to LGPL 2.1 vs GPL 3, but tested with the GMP testsuite. This is 50% faster than the generic code as measured on Cortex-A15. It is 25% slower than the current GMP routine on the same core.
* arm: Add optimized addmul_1Richard Henderson2013-03-061-0/+1
| | | | | | | | | Written from scratch rather than copied from GMP, due to LGPL 2.1 vs GPL 3, but tested with the GMP testsuite. This is 25% faster than the generic code as measured on Cortex-A15, and the same speed as GMP on the same core. It's probably slower than GMP on the A8 and A9 cores though.
* arm: Add optimized ffs for armv6t2Richard Henderson2013-03-061-0/+3
|
* arm: Implement hard-tp for GET_TLSRichard Henderson2013-03-061-0/+6
|