aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-13PowerPC: Adjust multiarch Implies for PowerPC64Adhemerval Zanella
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-13PowerPC: Cleaning up uneeded sqrt routinesAdhemerval Zanella
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 Zanella
2013-12-13PowerPC: multiarch strcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wordcopy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wcscpy for PowerPC64.Adhemerval Zanella
2013-12-13PowerPC: multiarch wcsrchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wcschr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strchrnul for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strncmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strncasecmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strcasecmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strnlen for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strlen for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch rawmemchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memrchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch mempcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memset/bzero for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multirach memcmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: Adjust multiarch Implies for PowerPC64Adhemerval Zanella
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 Kojima
2013-12-12Update NEWSToke Høiland-Jørgensen
2013-12-12Add entries for U00D8 and U00F8.Toke Høiland-Jørgensen
2013-12-12PowerPC: Add DSO and TAR fields to TLSAdhemerval Zanella
2013-12-12Add test case for pthread_[sg]etname_np.Carlos O'Donell
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 Poyarekar
2013-12-12Fix Charset comment in fi_FI, fi_FI@euroMarko Myllynen
2013-12-11ChangeLog whitespace fix.Roland McGrath
2013-12-11[AArch64] Regenerate libm-test-ulps.Marcus Shawcroft
2013-12-11Consolidate definition of constant t22Siddhesh Poyarekar
2013-12-11Use double constants instead of the struct numberSiddhesh Poyarekar
2013-12-10Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.Ondřej Bílka
2013-12-10Drop PER_THREAD conditionals from malloc.Ondřej Bílka
2013-12-09Add GLIBC_2.3 and GLIBC_2.19 in Versions.defAdhemerval Zanella
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 Schwab
2013-12-10m68k: add support for PI futexesAndreas Schwab
2013-12-10m68k: don't assume PI futexes before 3.10Andreas Schwab
2013-12-10ChangeLog fixAndreas Schwab
2013-12-09Simplify perturb_byte logic.Ondřej Bílka
2013-12-09Replace malloc force_reg by atomic_forced_read.Ondřej Bílka
2013-12-09Fix CFI annotations in pthread_cond_timedwait for i486+Andreas Schwab
2013-12-09Update powerpc-fpu ULPs.Adhemerval Zanella
2013-12-09Update x86_64 ULps for AMD K10Markus Trippelsdorf
2013-12-08Move tests of lgamma from libm-test.inc to auto-libm-test-in.Joseph Myers
2013-12-07alpha: Convert <bits/mman.h> to <bits/mman-linux.h>Richard Henderson
2013-12-06PowerPC: Optimized mpn functions for PowerPC64/POWER7Adhemerval Zanella
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 Zanella
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.