summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-12-13PowerPC: Cleaning up uneeded sqrt routinesAdhemerval Zanella5-202/+7
For PPC64, all the wrappers at sysdeps are superfluous: they are basically the same implementation from math/w_sqrt.c with the '#ifdef _IEEE_LIBM'. And the power4 version just force the 'fsqrt' instruction utilization with an inline assembly, which is already handled by math_private.h __ieee754_sqrt implementation.
2013-12-13PowerPC: multiarch stpcpy for PowerPC64Adhemerval Zanella6-1/+141
2013-12-13PowerPC: multiarch strcpy for PowerPC64Adhemerval Zanella6-1/+134
2013-12-13PowerPC: multiarch wordcopy for PowerPC64Adhemerval Zanella7-17/+183
2013-12-13PowerPC: multiarch wcscpy for PowerPC64.Adhemerval Zanella7-1/+118
2013-12-13PowerPC: multiarch wcsrchr for PowerPC64Adhemerval Zanella7-1/+119
2013-12-13PowerPC: multiarch wcschr for PowerPC64Adhemerval Zanella7-1/+121
2013-12-13PowerPC: multiarch strchrnul for PowerPC64Adhemerval Zanella6-1/+116
2013-12-13PowerPC: multiarch strchr for PowerPC64Adhemerval Zanella7-1/+155
2013-12-13PowerPC: multiarch strncmp for PowerPC64Adhemerval Zanella7-1/+181
2013-12-13PowerPC: multiarch strncasecmp for PowerPC64Adhemerval Zanella7-1/+165
2013-12-13PowerPC: multiarch strcasecmp for PowerPC64Adhemerval Zanella7-1/+196
2013-12-13PowerPC: multiarch strnlen for PowerPC64Adhemerval Zanella6-1/+115
2013-12-13PowerPC: multiarch strlen for PowerPC64Adhemerval Zanella6-1/+131
2013-12-13PowerPC: multiarch rawmemchr for PowerPC64Adhemerval Zanella6-1/+113
2013-12-13PowerPC: multiarch memrchr for PowerPC64Adhemerval Zanella6-1/+118
2013-12-13PowerPC: multiarch memchr for PowerPC64Adhemerval Zanella6-1/+118
2013-12-13PowerPC: multiarch mempcpy for PowerPC64Adhemerval Zanella6-1/+120
2013-12-13PowerPC: multiarch memset/bzero for PowerPC64Adhemerval Zanella17-1/+412
2013-12-13PowerPC: multirach memcmp for PowerPC64Adhemerval Zanella8-2/+184
2013-12-13PowerPC: multiarch memcpy for PowerPC64Adhemerval Zanella11-0/+394
2013-12-13PowerPC: Adjust multiarch Implies for PowerPC64Adhemerval Zanella22-15/+38
This patch adds Implies files on multiarch folder for POWER chips so multirach is enabled when building with --with-cpu and powerN option.
2013-12-13Use $$ver instead of $ver.Kaz Kojima2-2/+6
2013-12-12Update NEWSToke Høiland-Jørgensen1-9/+9
2013-12-12Add entries for U00D8 and U00F8.Toke Høiland-Jørgensen2-0/+8
2013-12-12PowerPC: Add DSO and TAR fields to TLSAdhemerval Zanella3-0/+13
2013-12-12Add test case for pthread_[sg]etname_np.Carlos O'Donell3-0/+307
This commit adds a testcase for pthread_setname_np and pthread_getname_np. The testcase itself has four tests to validate that these functions work as expected. The test is only enabled for Linux since it requires access to an alternate method for validating the functions work.
2013-12-12benchmark inputs for exp2, log2, log and tanSiddhesh Poyarekar6-4/+4063
2013-12-12Fix Charset comment in fi_FI, fi_FI@euroMarko Myllynen3-2/+7
2013-12-11ChangeLog whitespace fix.Roland McGrath1-0/+1
2013-12-11[AArch64] Regenerate libm-test-ulps.Marcus Shawcroft2-13/+4296
2013-12-11Consolidate definition of constant t22Siddhesh Poyarekar2-9/+8
2013-12-11Use double constants instead of the struct numberSiddhesh Poyarekar3-136/+127
2013-12-10Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.Ondřej Bílka3-19/+14
2013-12-10Drop PER_THREAD conditionals from malloc.Ondřej Bílka5-96/+17
2013-12-09Add GLIBC_2.3 and GLIBC_2.19 in Versions.defAdhemerval Zanella2-0/+6
This patch adds GLIBC_2.3 and GLIBC_2.19 mark on Version.def so they are always define in abi-versions.h. This fixes a build issue with fe_nomask.c in PPC64 LE where neither GLIBC_2_3 or GLIBC_2_19 are defined for SHLIB_COMPAT, resulting in a wrong evaluation in the macro.
2013-12-10m68k: use math_force_eval in nextafterlAndreas Schwab2-5/+6
2013-12-10m68k: add support for PI futexesAndreas Schwab2-0/+34
2013-12-10m68k: don't assume PI futexes before 3.10Andreas Schwab2-0/+12
2013-12-10ChangeLog fixAndreas Schwab1-1/+3
2013-12-09Simplify perturb_byte logic.Ondřej Bílka2-21/+30
2013-12-09Replace malloc force_reg by atomic_forced_read.Ondřej Bílka4-17/+19
2013-12-09Fix CFI annotations in pthread_cond_timedwait for i486+Andreas Schwab3-9/+15
2013-12-09Update powerpc-fpu ULPs.Adhemerval Zanella2-0/+50
2013-12-09Update x86_64 ULps for AMD K10Markus Trippelsdorf2-2/+12
2013-12-08Move tests of lgamma from libm-test.inc to auto-libm-test-in.Joseph Myers7-71/+2465
2013-12-07alpha: Convert <bits/mman.h> to <bits/mman-linux.h>Richard Henderson2-83/+24
2013-12-06PowerPC: Optimized mpn functions for PowerPC64/POWER7Adhemerval Zanella3-0/+128
This patch add optimized __mpn_add_n/__mpn_sub_n for PowerPC64/POWER7. They are originally from GMP with adjustments for GLIBC.
2013-12-06PowerPC: Optimized mpn functions for PowerPC64Adhemerval Zanella5-0/+552
This patch add optimized __mpn_addmul, __mpn_addsub, __mpn_lshift, and __mpn_mul_1 implementations for PowerPC64. They are originally from GMP with adjustments for GLIBC.
2013-12-06Fix BZ #15089: malloc_trim always trim for large padding.Fernando J. V. da Silva3-43/+50