aboutsummaryrefslogtreecommitdiff
path: root/ports
AgeCommit message (Collapse)AuthorFilesLines
2013-04-02New <math.h> macro named issignaling to check for a signaling NaN (sNaN).Thomas Schwinge17-0/+121
It is based on draft TS 18661 and currently enabled as a GNU extension.
2013-03-26ARM: fix preconfigure.Mans Rullgard3-2/+7
2013-03-21Use LIBC_CONFIG_VAR for MIPS default-abi setting.Joseph Myers4-5/+11
2013-03-20Use LIBC_CONFIG_VAR for ARM default-abi setting.Joseph Myers4-7/+14
2013-03-19aarch64: Move rtld link to /libAndreas Schwab3-0/+8
2013-03-18ARM: Make dl-tlsdesc.S use sfi_breg, respect ARM_ALWAYS_BX and ↵Roland McGrath3-9/+38
ARM_NO_INDEX_REGISTER.
2013-03-15Better distinguish between NaN/qNaN/sNaN.Thomas Schwinge1-8/+8
2013-03-15Avoid duplicate MAP_ANONYMOUS definition for MIPS GNU/Linux.Thomas Schwinge2-1/+5
Follow-up to commit 664a9ce4ca40feabff781fff044c93a43ae15b59.
2013-03-15ARM: sfi_sp assembler macroRoland McGrath3-1/+9
2013-03-15ARM: sfi_breg assembler macroRoland McGrath18-189/+404
2013-03-14aarch64: use lib64 as default lib and slib directoryAndreas Schwab3-0/+31
2013-03-13ARM_BX_ALIGN_LOG2Roland McGrath4-12/+63
2013-03-13ARM: Handle ARM_ALWAYS_BX in {add,sub}_n.S code.Roland McGrath2-0/+9
2013-03-13ARM: Support avoiding pc as destination register.Roland McGrath4-2/+67
2013-03-12ARM: Make armv6t2 memchr implementation usable without Thumb.Roland McGrath2-2/+26
2013-03-12ARM: Change register allocation in armv6t2 memchr implementation.Roland McGrath2-15/+20
2013-03-12ia64: fix set-but-unused warnings with syscallsMike Frysinger2-2/+11
These macros often set up a variable that later macros sometimes do not use. Add unused attribute to avoid that. Similarly, the ia64 code tends to check the err field rather than the val (which is opposite of most arches) leading to the same kind of warning. Replace this with a dummy reference. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-03-12ia64: fix strict aliasing warnings with libm errorMike Frysinger2-58/+81
The current code declares double constants by using a char buffer and then casting the pointer to a different type. This makes the aliasing logic unhappy. Change it to use a union instead to avoid that. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-03-12ia64: fix strict aliasing warnings with func descriptorsMike Frysinger5-13/+34
Function pointers on ia64 are like parisc -- they're plabels. While the parisc port enjoys a gcc builtin for extracting the address here, ia64 has no such luck. Casting & dereferencing in one go triggers a strict aliasing warning. Use a union to fix that. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-03-11Add comments about ARM configure -fno-unwind-tables handling.Joseph Myers5-0/+21
2013-03-11ARM: Consolidate setjmp details in include/bits/setjmp.h file.Roland McGrath6-10/+28
2013-03-11ARM: Convert string/ assembly to unified syntax.Roland McGrath5-40/+53
2013-03-11ARM: Use r10 instead of r9.Roland McGrath3-18/+21
2013-03-11AM33: Use <bits/mman.h>Andreas Jaeger2-61/+7
2013-03-11Use <bits/mman.h> on ia64Andreas Jaeger2-74/+7
2013-03-11Clean up ARM preconfigure.Roland McGrath3-46/+109
2013-03-11Remove extra pthread_atfork compat symbolsAndreas Schwab10-6/+28
2013-03-10ia64: makecontext: fix signed warningsMike Frysinger2-2/+7
The ia64_rse_is_rnat_slot func expects an unsigned pointer, but we're passing in a signed pointer. The signness doesn't matter here, so convert it to unsigned. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-03-10ia64: fix NEED_DL_SYSINFO_DSO conditionalsMike Frysinger2-23/+13
The recent change to clean up these defines missed the ia64 logic. Update it accordingly. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-03-07arm: Implement armv6 optimized string routinesRichard Henderson8-0/+707
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.
2013-03-07AARCH64: Use <bits/mman-linux.h>Andreas Jaeger2-73/+8
* sysdeps/unix/sysv/linux/aarch64/bits/mman.h: Remove all defines provided by bits/mman-linux.h and include <bits/mman-linux.h>.
2013-03-06Use <bits/mman-linux.h> for MIPSAndreas Jaeger2-72/+9
* sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow definition via __MAP_ANONYMOUS. * sysdeps/unix/sysv/linux/mips/bits/mman.h: Remove all defines provided by bits/mman-linux.h and include <bits/mman-linux.h>. (__MAP_ANONYMOUS): Define.
2013-03-06arm: Add optimized add_n and sub_nRichard Henderson3-0/+88
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.
2013-03-06arm: Add optimized submul_1Richard Henderson2-0/+69
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.
2013-03-06arm: Add optimized addmul_1Richard Henderson2-0/+68
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.
2013-03-06arm: Add optimized ffs for armv6t2Richard Henderson3-0/+88
2013-03-06arm: Implement hard-tp for GET_TLSRichard Henderson4-11/+30
2013-03-06arm: Tidy architecture selectionRichard Henderson3-8/+45
2013-03-06arm: Unless arm4t, pop return address directly into pcRichard Henderson3-5/+14
2013-03-06arm: Commonize BX conditionalsRichard Henderson4-30/+21
Add BLX macro in addition and use it where appropriate.
2013-03-06arm: Delete LOADREGS macroRichard Henderson3-5/+4
There was only one user. It's "condition" argument was used for "ia" rather than an actual condition. The apcs26 syntax is almost certainly not needed, given current binutils requirements.
2013-03-06arm: Use push/pop mnemonicsRichard Henderson20-134/+154
For arm this makes no difference--the result is bit-for-bit identical; for thumb this results in smaller encodings. Perhaps it ought not and this is in fact an assembler bug, but I also think it's clearer.
2013-03-06arm: Enable thumb2 mode in assembly filesRichard Henderson2-2/+14
The preceeding patches have allowed for the few incompatibilities between arm and thumb2 mode, or have marked the file as not wanting to use thumb2 mode.
2013-03-06arm: Introduce and use GET_TLSRichard Henderson10-42/+77
Factor out the sequence needed to call kuser_get_tls, as we can't play subtract into pc games in thumb mode. Prepare for hard-tp, pulling the save of LR into the macro.
2013-03-06arm: Introduce and use NEGOFF series of macrosRichard Henderson6-14/+43
There are several places in which we access negative offsets from the thread-pointer, but thumb2 only supports positive offsets in memory references. Avoid duplicating the rather large macros in which these references are embedded by abstracting out the operation.
2013-03-06arm: Introduce and use LDST_PCRELRichard Henderson5-24/+47
Macro-ising the few instances where we need to distinguish between arm and thumb pc-relative memory operations.
2013-03-06Sync with Linux 3.8Andreas Jaeger11-2/+35
2013-03-06Update date of last entryAndreas Jaeger1-1/+1
2013-03-06Use <bits/mman-linux.h> on M68kAndreas Jaeger2-74/+7
2013-03-06Use <bits/mman-linux.h> on ARMAndreas Jaeger2-74/+7