summary refs log tree commit diff
path: root/sysdeps
Commit message (Collapse)AuthorAgeFilesLines
* Remove powerpc64 bounded-pointers code.Joseph Myers2013-03-0636-497/+116
|
* Define MCL_CURRENT, MCL_FUTURE in bits/mman-linux.hAndreas Jaeger2013-03-056-29/+23
| | | | | | | | | | | | | | | | | | | | * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include <bits/mman-linux.h>. (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value is fine. * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of <bits/mman-linux.h> to end of file. (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value is fine. * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of <bits/mman-linux.h> to end of file. (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value is fine. * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of <bits/mman-linux.h> to end of file. * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT] (MCL_CURRENT, MCL_FUTURE): Define here.
* S/390: Use attribute_hidden in ifunc-resolve.cAndreas Krebbel2013-03-052-6/+6
|
* S/390: Fix rt_sigprocmask syscall invocation in get/set/swapcontext.Andreas Krebbel2013-03-057-86/+100
|
* Remove powerpc32 strncmp comments about bounded pointers.Joseph Myers2013-03-043-9/+0
|
* Create <bits/mman-linux.h>Andreas Jaeger2013-03-046-338/+104
| | | | | | | | | | | | | * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux common definitions. * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines provided by bits/mman-linux.h and include <bits/mman-linux.h>. * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise. * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise. * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise. * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
* BZ #15055: Use __ieee754_sqrl in acoshl for lbdl-128ibmAdhemerval Zanella2013-03-041-1/+1
|
* Use same installed powerpc headers for hard and soft float.Joseph Myers2013-03-013-0/+0
|
* Fix NEED_DL_SYSINFO_DSO conditionals.Roland McGrath2013-03-012-2/+2
|
* Remove powerpc32 bounded-pointers code.Joseph Myers2013-02-2846-450/+124
|
* Sync up ppc add_magnitudes and sub_magnitudes with default codeSiddhesh Poyarekar2013-02-282-104/+120
|
* Format mpsqrt.cSiddhesh Poyarekar2013-02-271-34/+44
|
* Format mpatan2.cSiddhesh Poyarekar2013-02-271-23/+22
|
* Format mpatan.cSiddhesh Poyarekar2013-02-271-46/+61
|
* Format mptan.cSiddhesh Poyarekar2013-02-271-13/+15
|
* Format mplog.cSiddhesh Poyarekar2013-02-271-21/+23
|
* Another tweak to the multiplication algorithmSiddhesh Poyarekar2013-02-261-6/+50
| | | | | Reduce the formula to calculate mantissa so that we reduce the net number of multiplications performed.
* Don't duplicate mpone and mptwoSiddhesh Poyarekar2013-02-261-5/+3
|
* Remove commented declarationsSiddhesh Poyarekar2013-02-251-14/+0
|
* Use long wherever possible in mpa.cSiddhesh Poyarekar2013-02-251-31/+39
| | | | | | Using long throughout like powerpc does is beneficial since it reduces the need to switch to 32-bit instructions. It gives a very minor performance improvement.
* Format slowexp.cSiddhesh Poyarekar2013-02-251-22/+26
|
* Reformat slowpow.cSiddhesh Poyarekar2013-02-251-31/+48
|
* Remove commented codeSiddhesh Poyarekar2013-02-251-6/+0
|
* Sync up powerpc __mp_dbl with default codeSiddhesh Poyarekar2013-02-252-6/+2
|
* Remove remaining bounded-pointers support from i386 .S files.Joseph Myers2013-02-2163-500/+326
|
* Mark __inv as static in powerpcSiddhesh Poyarekar2013-02-212-2/+2
|
* Fix whitespace differences between generic and powerpc mpa.cSiddhesh Poyarekar2013-02-213-4/+4
|
* S/390: Fix _dl_runtime_profile for 32 bit.Andreas Krebbel2013-02-211-5/+11
|
* Mark ZERO inputs to __mul as unlikely on powerpcSiddhesh Poyarekar2013-02-212-2/+2
| | | | Syncs up with generic code.
* Respect the user's namespace in installed header files.Thomas Schwinge2013-02-201-1/+1
| | | | Fixup for commit c7b275d6b3bceb6b400fa3044d13d1001bc605ca.
* bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)).Thomas Schwinge2013-02-201-1/+1
|
* Copy comment about inner loop from powerpc mpa.c to the default oneSiddhesh Poyarekar2013-02-203-2/+12
|
* Remove some bounded-pointers support from i386 .S files.Joseph Myers2013-02-1951-477/+27
|
* unify xmalloc prototypes & friendsMike Frysinger2013-02-181-7/+1
| | | | | | | | These prototypes are duplicated in many places. Add a dedicated header for holding prototypes for program-specific functions to avoid that. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* C++11 thread_local destructors supportSiddhesh Poyarekar2013-02-1810-0/+30
| | | | | | | | | | | This feature is specifically for the C++ compiler to offload calling thread_local object destructors on thread program exit, to glibc. This is to overcome the possible complication of destructors of thread_local objects getting called after the DSO in which they're defined is unloaded by the dynamic linker. The DSO is marked as 'unloadable' if it has a constructed thread_local object and marked as 'unloadable' again when all the constructed thread_local objects defined in it are destroyed.
* New function _dl_find_dso_for_objectSiddhesh Poyarekar2013-02-181-0/+4
| | | | Consolidate code to search for an address within a DSO.
* FUTEX_*_REQUEUE_PI support for non-x86 codeSiddhesh Poyarekar2013-02-181-0/+5
| | | | | Add FUTEX_*_REQUEUE_PI support for the default C code and also add implementations for s-390 and ppc.
* S/390: Fix _dl_runtime_profileAndreas Krebbel2013-02-181-32/+38
|
* Remove bounded-pointers handling from x86_64 assembly sources.Joseph Myers2013-02-1717-197/+32
|
* Don't require LIM to determine loop end in __sqrSiddhesh Poyarekar2013-02-161-10/+4
|
* Use intermediate variable to compute exponent in __mulSiddhesh Poyarekar2013-02-161-4/+15
|
* Fix determination of lower precision in __mulSiddhesh Poyarekar2013-02-151-1/+4
|
* Remove bounded-pointers build system support.Joseph Myers2013-02-153-5/+0
|
* Remove miscellaneous bounded-pointers relics in C code.Joseph Myers2013-02-153-11/+2
|
* Remove bp-sym.h and BP_SYM uses from C code.Joseph Myers2013-02-1412-43/+29
|
* Remove redundant return keywordSiddhesh Poyarekar2013-02-142-26/+0
|
* Use __sqr instead of __mul wherever possibleSiddhesh Poyarekar2013-02-143-4/+4
|
* New __sqr function as a faster special case of __mulSiddhesh Poyarekar2013-02-147-2/+296
|
* Remove __ptrvalue, __bounded and __unbounded.Joseph Myers2013-02-1336-101/+81
|
* Remove unnecessary factorial arraySiddhesh Poyarekar2013-02-131-10/+3
| | | | kf is n! at the end of the loop, so storing the values is unnecessary.