aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-15Make mantissa type configurableSiddhesh Poyarekar
This allows the default mantissa to be integral, with powerpc overriding it to take advantage of its FPUs.
2013-03-15Modify threads in nptl cindex to pthreadsSiddhesh Poyarekar
2013-03-15Regenerate sysdeps/x86_64/preconfigure.Joseph Myers
2013-03-14Fix spurious underflow exceptions for Bessel functions for double (bug 14155).Joseph Myers
2013-03-14aarch64: use lib64 as default lib and slib directoryAndreas Schwab
2013-03-14Add nptl manual chapterSiddhesh Poyarekar
This adds the base chapter for POSIX threads and also documentation for thread-specific data, along with a note on its interaction with C++11 thread_local variables.
2013-03-14Fix formatting in last changeSiddhesh Poyarekar
2013-03-14Fix __times() handling of EFAULT when buf is NULLPetr Baudis
2013-03-13ARM_BX_ALIGN_LOG2Roland McGrath
2013-03-13ARM: Handle ARM_ALWAYS_BX in {add,sub}_n.S code.Roland McGrath
2013-03-13ARM: Support avoiding pc as destination register.Roland McGrath
2013-03-13Don't build .os objects of static-only-routines for extra libsAndreas Schwab
2013-03-12Include atomic.h in generic lowlevellock.c.Carlos O'Donell
2013-03-13Update zic from tzcode 2013b.Joseph Myers
2013-03-12Remove mention of i386-pc-linux-gnu.Carlos O'Donell
The GNU C Library does not support building for i386 therefore we remove mention of this configuration from the INSTALL file.
2013-03-12ARM: Make armv6t2 memchr implementation usable without Thumb.Roland McGrath
2013-03-12ARM: Change register allocation in armv6t2 memchr implementation.Roland McGrath
2013-03-12Add sysdeps/init_array to produce empty crt[in].o and use .preinit_array for ↵Roland McGrath
gcrt1.o
2013-03-12Fix up log entry.Roland McGrath
2013-03-12ia64: fix set-but-unused warnings with syscallsMike Frysinger
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 Frysinger
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 Frysinger
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 Myers
2013-03-11ARM: Consolidate setjmp details in include/bits/setjmp.h file.Roland McGrath
2013-03-11ARM: Convert string/ assembly to unified syntax.Roland McGrath
2013-03-11ARM: Use r10 instead of r9.Roland McGrath
2013-03-11AM33: Use <bits/mman.h>Andreas Jaeger
2013-03-11Use <bits/mman.h> on ia64Andreas Jaeger
2013-03-11Clean up ARM preconfigure.Roland McGrath
2013-03-11Remove Prefer_SSE_for_memop on x64Ondrej Bilka
2013-03-11Remove extra pthread_atfork compat symbolsAndreas Schwab
2013-03-10ia64: makecontext: fix signed warningsMike Frysinger
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 Frysinger
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-08Set LC_ALL=C before sed.Paul Pluzhnikov
2013-03-08Add dependency tracking for preconfigure files.Roland McGrath
2013-03-08Remove __malloc_ptr_t.Joseph Myers
2013-03-08Use ISO C prototype for __default_morecore.Joseph Myers
2013-03-08Remove __malloc_ptrdiff_t.Joseph Myers
2013-03-08Remove __malloc_size_t.Joseph Myers
2013-03-08PowerPC: unify math_ldbl.h implementationsAdhemerval Zanella
This patch removes redudant definition from PowerPC specific math_ldbl, using the definitions from ieee754 math_ldbl.h.
2013-03-08Consolidate copies of mp code in powerpcSiddhesh Poyarekar
Retain a single copy of the mp code in power4 instead of the two identical copies in powerpc32 and powerpc64.
2013-03-07arm: Implement armv6 optimized string routinesRichard Henderson
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 Jaeger
* 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-07Install <bits/mman-linux.h>Andreas Jaeger
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add bits/mman-linux.h.
2013-03-07Merge powerpc slowexp.c into generic codeSiddhesh Poyarekar
2013-03-07Merge powerpc slowpow.c into generic codeSiddhesh Poyarekar
2013-03-07Use an intermediate variable to sum exponents in powerpc __mul and __sqrSiddhesh Poyarekar
2013-03-07Use generic mpa.c code for everything except __mul and __sqrSiddhesh Poyarekar
2013-03-07Remove PIPE_BUF Linux-specific codeSiddhesh Poyarekar
Fixes BZ #12723 The variable pipe buffer size does nothing to the value of PIPE_BUF, since the number of bytes that are atomically written is still PIPE_BUF on Linux.
2013-03-06Revert " * sysdeps/x86_64/strlen.S: Replace with new SSE2 based implementation"Ondrej Bilka
This reverts commit b79188d71716b6286866e06add976fe84100595e.