Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-28 | Sync up ppc add_magnitudes and sub_magnitudes with default code | Siddhesh Poyarekar | |
2013-02-27 | Format mpsqrt.c | Siddhesh Poyarekar | |
2013-02-27 | Format mpatan2.c | Siddhesh Poyarekar | |
2013-02-27 | Format mpatan.c | Siddhesh Poyarekar | |
2013-02-27 | Format mptan.c | Siddhesh Poyarekar | |
2013-02-27 | Format mplog.c | Siddhesh Poyarekar | |
2013-02-26 | Another tweak to the multiplication algorithm | Siddhesh Poyarekar | |
Reduce the formula to calculate mantissa so that we reduce the net number of multiplications performed. | |||
2013-02-26 | Don't duplicate mpone and mptwo | Siddhesh Poyarekar | |
2013-02-25 | Remove commented declarations | Siddhesh Poyarekar | |
2013-02-25 | Use long wherever possible in mpa.c | Siddhesh Poyarekar | |
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. | |||
2013-02-25 | Format slowexp.c | Siddhesh Poyarekar | |
2013-02-25 | Reformat slowpow.c | Siddhesh Poyarekar | |
2013-02-25 | Remove commented code | Siddhesh Poyarekar | |
2013-02-25 | Sync up powerpc __mp_dbl with default code | Siddhesh Poyarekar | |
2013-02-21 | Remove remaining bounded-pointers support from i386 .S files. | Joseph Myers | |
2013-02-21 | Mark __inv as static in powerpc | Siddhesh Poyarekar | |
2013-02-21 | Fix whitespace differences between generic and powerpc mpa.c | Siddhesh Poyarekar | |
2013-02-21 | S/390: Fix _dl_runtime_profile for 32 bit. | Andreas Krebbel | |
2013-02-21 | Mark ZERO inputs to __mul as unlikely on powerpc | Siddhesh Poyarekar | |
Syncs up with generic code. | |||
2013-02-20 | Respect the user's namespace in installed header files. | Thomas Schwinge | |
Fixup for commit c7b275d6b3bceb6b400fa3044d13d1001bc605ca. | |||
2013-02-20 | bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)). | Thomas Schwinge | |
2013-02-20 | Copy comment about inner loop from powerpc mpa.c to the default one | Siddhesh Poyarekar | |
2013-02-19 | Remove some bounded-pointers support from i386 .S files. | Joseph Myers | |
2013-02-18 | unify xmalloc prototypes & friends | Mike Frysinger | |
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> | |||
2013-02-18 | C++11 thread_local destructors support | Siddhesh Poyarekar | |
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. | |||
2013-02-18 | New function _dl_find_dso_for_object | Siddhesh Poyarekar | |
Consolidate code to search for an address within a DSO. | |||
2013-02-18 | FUTEX_*_REQUEUE_PI support for non-x86 code | Siddhesh Poyarekar | |
Add FUTEX_*_REQUEUE_PI support for the default C code and also add implementations for s-390 and ppc. | |||
2013-02-18 | S/390: Fix _dl_runtime_profile | Andreas Krebbel | |
2013-02-17 | Remove bounded-pointers handling from x86_64 assembly sources. | Joseph Myers | |
2013-02-16 | Don't require LIM to determine loop end in __sqr | Siddhesh Poyarekar | |
2013-02-16 | Use intermediate variable to compute exponent in __mul | Siddhesh Poyarekar | |
2013-02-15 | Fix determination of lower precision in __mul | Siddhesh Poyarekar | |
2013-02-15 | Remove bounded-pointers build system support. | Joseph Myers | |
2013-02-15 | Remove miscellaneous bounded-pointers relics in C code. | Joseph Myers | |
2013-02-14 | Remove bp-sym.h and BP_SYM uses from C code. | Joseph Myers | |
2013-02-14 | Remove redundant return keyword | Siddhesh Poyarekar | |
2013-02-14 | Use __sqr instead of __mul wherever possible | Siddhesh Poyarekar | |
2013-02-14 | New __sqr function as a faster special case of __mul | Siddhesh Poyarekar | |
2013-02-13 | Remove __ptrvalue, __bounded and __unbounded. | Joseph Myers | |
2013-02-13 | Remove unnecessary factorial array | Siddhesh Poyarekar | |
kf is n! at the end of the loop, so storing the values is unnecessary. | |||
2013-02-13 | Better exp polynomial | Siddhesh Poyarekar | |
The lesser the __mul calls, the better it is for performance. | |||
2013-02-13 | Optimized mp multiplication | Siddhesh Poyarekar | |
Don't bother multiplying zeroes since that only wastes cycles. | |||
2013-02-13 | Clean up add_magnitudes and sub_magnitudes | Siddhesh Poyarekar | |
2013-02-08 | Remove CHECK_N and bp-checks.h. | Joseph Myers | |
2013-02-08 | ARM: Support loading unmarked objects from cache. | Carlos O'Donell | |
ARM now supports loading unmarked objects from the dynamic loader cache. Unmarked objects can be used with the hard-float or soft-float ABI. We must support loading unmarked objects during the transition period from a binutils that does not mark objects to one that does mark them with the correct ELF flags. Signed-off-by: Carlos O'Donell <carlos@redhat.com> | |||
2013-02-08 | Remove CHECK_1 and CHECK_1_NULL_OK. | Joseph Myers | |
2013-02-08 | Remove CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH for C code. | Joseph Myers | |
2013-02-07 | Remove lots of inline keywords. | Roland McGrath | |
2013-02-05 | Move nss directory into sysdeps Subdirs. | Roland McGrath | |
2013-02-05 | Add missing includes to sysdeps/generic/malloc-sysdep.h. | Roland McGrath | |