Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove __FAVOR_BSD. | Joseph Myers | 2013-12-17 | 10 | -200/+115 |
| | |||||
* | [AArch64] Implement FUTEX_*_REQUEUE_PI | Marcus Shawcroft | 2013-12-17 | 2 | -0/+40 |
| | |||||
* | Update powerpc-fpu ULPs. | Adhemerval Zanella | 2013-12-17 | 2 | -2/+384 |
| | |||||
* | Fix dbl-64 hypot spurious underflows (bug 16314). | Joseph Myers | 2013-12-17 | 5 | -753/+759 |
| | |||||
* | Fix hypot handling of subnormals (bug 16316, bug 16330). | Joseph Myers | 2013-12-17 | 7 | -682/+1916 |
| | |||||
* | [AArch64] libm-test-ulps regenerated from scratch. | Marcus Shawcroft | 2013-12-17 | 2 | -1926/+78 |
| | |||||
* | [AArch64] Back out sqrt() addition to libm-test-ulps. | Marcus Shawcroft | 2013-12-17 | 2 | -20/+4 |
| | |||||
* | Make soft-float sh use soft-fp fma/fmaf. | Kaz Kojima | 2013-12-17 | 5 | -0/+75 |
| | |||||
* | Clean up setjmp use in dl-error.c. | Roland McGrath | 2013-12-16 | 2 | -32/+50 |
| | |||||
* | Move tests of atan2, hypot and pow from libm-test.inc to auto-libm-test-in. | Joseph Myers | 2013-12-16 | 7 | -510/+43296 |
| | |||||
* | Add missing bug number to NEWS. | Joseph Myers | 2013-12-16 | 1 | -11/+12 |
| | |||||
* | manual/memory.texi: Document aligned_alloc. | Will Newton | 2013-12-16 | 2 | -16/+57 |
| | | | | | | | | | | | | | | ChangeLog: 2013-12-16 Will Newton <will.newton@linaro.org> * manual/memory.texi (Malloc Examples): Mention aligned_alloc. (Aligned Memory Blocks): Add documentation for aligned_alloc and suggest it as an alternative to posix_memalign. (Hooks for Malloc): Document __memalign_hook is also called for aligned_alloc. (Summary of Malloc): Add summary for aligned alloc. Document __memalign_hook is also called for aligned_alloc. | ||||
* | manual/memory.texi: Bring aligned allocation docs up to date. | Will Newton | 2013-12-16 | 2 | -17/+58 |
| | | | | | | | | | | | | | | | | | | | | | | | The current documentation suggests using memalign and valloc which are now considered obsolete, so suggest using posix_memalign instead. Also document the possible error return and errno values for memalign and posix_memalign and improve documentation of __memalign_hook. ChangeLog: 2013-12-16 Will Newton <will.newton@linaro.org> * manual/memory.texi (Malloc Examples): Clarify default alignment documentation. Suggest posix_memalign rather than memalign or valloc. (Aligned Memory Blocks): Remove suggestion to use memalign or valloc. Remove obsolete comment about BSD. Document memalign errno values and mark the function obsolete. Document posix_memalign returned error codes. Mark valloc as obsolete. (Hooks for Malloc): __memalign_hook is also called for posix_memalign and valloc. (Summary of Malloc): Add posix_memalign to function summary. __memalign_hook is also called for posix_memalign and valloc. | ||||
* | Minor code cleanup in s_sin.c | Siddhesh Poyarekar | 2013-12-16 | 2 | -20/+23 |
| | | | | | | | - Remove redundant mynumber union definitions - Clean up a clumsy ternary operator - Rename TAYLOR_SINCOS to TAYLOR_SIN since we're only expanding the sin Taylor series in it. | ||||
* | Set AUTOCONF variable when maintainer-mode is not used | Allan McRae | 2013-12-16 | 3 | -0/+7 |
| | | | | | Fixes build issue introduced in 8894bad3 when configure.ac is altered and maintainer-mode is not enabled. | ||||
* | Update file name in x86_64 ifunc list | Allan McRae | 2013-12-16 | 2 | -1/+3 |
| | | | | File name update missed in commit 584b18eb. | ||||
* | Add --enable-maintainer-mode configure option | Allan McRae | 2013-12-16 | 3 | -32/+59 |
| | | | | | | | | | Autoconf is tested for and run if needed only when --enable-maintainer-mode is used on configure. This results in the autom4te.cache directory only being written in the source directory during configure if automatic autoconf usage is requested. Fixes BZ #14120. | ||||
* | Add systemd unit file for nscd | Allan McRae | 2013-12-16 | 3 | -0/+27 |
| | | | | Provide an example systemd unit and tmpfile for running nscd. | ||||
* | Add strstr with unaligned loads. Fixes bug 12100. | Ondřej Bílka | 2013-12-14 | 10 | -506/+441 |
| | | | | | | | | | | A sse42 version of strstr used pcmpistr instruction which is quite ineffective. A faster way is look for pairs of characters which is uses sse2, is faster than pcmpistr and for real strings a pairs we look for are relatively rare. For linear time complexity we use buy or rent technique which switches to two-way algorithm when superlinear behaviour is detected. | ||||
* | Move sysdeps/sh/sh4/fpu/bits/fenv.h to sysdeps/sh/bits/. | Kaz Kojima | 2013-12-14 | 2 | -0/+6 |
| | |||||
* | PowerPC: Update NEWS with ppc64 STT_GNU_IFUNC support | Adhemerval Zanella | 2013-12-13 | 2 | -1/+5 |
| | |||||
* | PowerPC: multiarch hypot/hypotf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -1/+171 |
| | |||||
* | PowerPC: multiarch modf/modff for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -2/+186 |
| | |||||
* | PowerPC: multiarch logb/logbl/logbf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 11 | -1/+261 |
| | |||||
* | PowerPC: multiarch isinf/isinff for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -2/+192 |
| | |||||
* | PowerPC: multiarch finite/finitef for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -2/+200 |
| | |||||
* | PowerPC: multiarch llrint/lrint for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+134 |
| | |||||
* | PowerPC: multiarch copysign/copysignf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -2/+168 |
| | |||||
* | PowerPC: multiarch trunc/truncf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -1/+206 |
| | |||||
* | PowerPC: multiarch round/roundf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -1/+206 |
| | |||||
* | PowerPC: multiarch floor/floorf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -1/+208 |
| | |||||
* | PowerPC: multiarch ceil/ceilf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -1/+206 |
| | |||||
* | PowerPC: multiarch llround/lround for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+170 |
| | |||||
* | PowerPC: multiarch isnan/isnanf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 9 | -0/+279 |
| | |||||
* | PowerPC: Adjust multiarch Implies for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -2/+14 |
| | | | | | | This patch adds Implies files on multiarch folder for POWER chips so multirach is enabled when building with --with-cpu and powerN option. | ||||
* | PowerPC: Cleaning up uneeded sqrt routines | Adhemerval Zanella | 2013-12-13 | 5 | -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. | ||||
* | PowerPC: multiarch stpcpy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+141 |
| | |||||
* | PowerPC: multiarch strcpy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+134 |
| | |||||
* | PowerPC: multiarch wordcopy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -17/+183 |
| | |||||
* | PowerPC: multiarch wcscpy for PowerPC64. | Adhemerval Zanella | 2013-12-13 | 7 | -1/+118 |
| | |||||
* | PowerPC: multiarch wcsrchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+119 |
| | |||||
* | PowerPC: multiarch wcschr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+121 |
| | |||||
* | PowerPC: multiarch strchrnul for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+116 |
| | |||||
* | PowerPC: multiarch strchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+155 |
| | |||||
* | PowerPC: multiarch strncmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+181 |
| | |||||
* | PowerPC: multiarch strncasecmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+165 |
| | |||||
* | PowerPC: multiarch strcasecmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+196 |
| | |||||
* | PowerPC: multiarch strnlen for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+115 |
| | |||||
* | PowerPC: multiarch strlen for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+131 |
| | |||||
* | PowerPC: multiarch rawmemchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+113 |
| |