Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update powerpc-nofpu localplt.data for fegetround hidden_proto / hidden_def. | Joseph Myers | 2013-12-18 | 1 | -1/+0 |
| | | | | | | | | | | My recent changes that added libm_hidden_proto / libm_hidden_def for fegetround had the side effect of removing the need for a localplt.data entry for fegetround for powerpc-nofpu. This patch removes that entry. Tested powerpc-nofpu. * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data: Don't expect fegetround reference in libm.so. | ||||
* | Compile e_sqrt.c with -ffp-contract=off. | Marcus Shawcroft | 2013-12-18 | 1 | -0/+1 |
| | |||||
* | Fix ldbl-128 logl for subnormals (bug 16338). | Joseph Myers | 2013-12-18 | 3 | -3/+8 |
| | | | | | | | | | | | | | | | | | | | | | | This patch fixes bug 16338, ldbl-128 logl not handling subnormals (with consequent inaccuracy for lgammal as well). The fix is simply to use __frexpl when determining the exponent, as done already in log2l and log10l. Given the lack of testing of small arguments to any of the log* functions, appropriate tests are added for all of them. Tested x86_64 and x86 and ulps updated accordingly, and spot tests also run for mips64 to confirm the ldbl-128 fix. Note that while this fixes lgammal inaccuracy for small positive arguments, I suspect that there will still be problems with spurious underflows in that case. * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl to determine exponent and adjust argument to have exponent of -1. * math/auto-libm-test-in: Add more tests of log, log10, log1p and log2. * math/auto-libm-test-out: Regenerated. * sysdeps/x86_64/fpu/libm-test-ulps: Update. | ||||
* | Remove use of SSE4.2 functions for strstr on i686 | Andreas Schwab | 2013-12-18 | 6 | -49/+2 |
| | | | | | The SSE4.2 have been removed from x86_64 by commit 584b18eb. This patch fixes the build on i686, which attempts to use the removed files. | ||||
* | Remove unused files from sysdeps/unix/bsd/bsd4.4/bits/. | Joseph Myers | 2013-12-17 | 2 | -452/+0 |
| | |||||
* | Remove various unused files from sysdeps/unix/bsd/. | Joseph Myers | 2013-12-17 | 27 | -1534/+0 |
| | |||||
* | Remove __FAVOR_BSD. | Joseph Myers | 2013-12-17 | 2 | -75/+78 |
| | |||||
* | Update powerpc-fpu ULPs. | Adhemerval Zanella | 2013-12-17 | 1 | -2/+380 |
| | |||||
* | Fix dbl-64 hypot spurious underflows (bug 16314). | Joseph Myers | 2013-12-17 | 1 | -1/+1 |
| | |||||
* | Fix hypot handling of subnormals (bug 16316, bug 16330). | Joseph Myers | 2013-12-17 | 3 | -0/+33 |
| | |||||
* | Make soft-float sh use soft-fp fma/fmaf. | Kaz Kojima | 2013-12-17 | 4 | -0/+66 |
| | |||||
* | Move tests of atan2, hypot and pow from libm-test.inc to auto-libm-test-in. | Joseph Myers | 2013-12-16 | 2 | -0/+273 |
| | |||||
* | Minor code cleanup in s_sin.c | Siddhesh Poyarekar | 2013-12-16 | 1 | -20/+13 |
| | | | | | | | - 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. | ||||
* | Update file name in x86_64 ifunc list | Allan McRae | 2013-12-16 | 1 | -1/+1 |
| | | | | File name update missed in commit 584b18eb. | ||||
* | Add strstr with unaligned loads. Fixes bug 12100. | Ondřej Bílka | 2013-12-14 | 8 | -494/+415 |
| | | | | | | | | | | 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 | 1 | -0/+0 |
| | |||||
* | PowerPC: multiarch hypot/hypotf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+158 |
| | |||||
* | PowerPC: multiarch modf/modff for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -2/+173 |
| | |||||
* | PowerPC: multiarch logb/logbl/logbf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 10 | -1/+244 |
| | |||||
* | PowerPC: multiarch isinf/isinff for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -2/+178 |
| | |||||
* | PowerPC: multiarch finite/finitef for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -2/+186 |
| | |||||
* | PowerPC: multiarch llrint/lrint for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+122 |
| | |||||
* | PowerPC: multiarch copysign/copysignf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -2/+155 |
| | |||||
* | PowerPC: multiarch trunc/truncf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+188 |
| | |||||
* | PowerPC: multiarch round/roundf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+188 |
| | |||||
* | PowerPC: multiarch floor/floorf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+190 |
| | |||||
* | PowerPC: multiarch ceil/ceilf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 7 | -1/+188 |
| | |||||
* | PowerPC: multiarch llround/lround for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+155 |
| | |||||
* | PowerPC: multiarch isnan/isnanf for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 8 | -0/+264 |
| | |||||
* | PowerPC: Adjust multiarch Implies for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -2/+5 |
| | | | | | | 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 | 4 | -202/+0 |
| | | | | | | | | 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 | 5 | -1/+130 |
| | |||||
* | PowerPC: multiarch strcpy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+123 |
| | |||||
* | PowerPC: multiarch wordcopy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+146 |
| | |||||
* | PowerPC: multiarch wcscpy for PowerPC64. | Adhemerval Zanella | 2013-12-13 | 6 | -1/+106 |
| | |||||
* | PowerPC: multiarch wcsrchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+107 |
| | |||||
* | PowerPC: multiarch wcschr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+109 |
| | |||||
* | PowerPC: multiarch strchrnul for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+105 |
| | |||||
* | PowerPC: multiarch strchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+143 |
| | |||||
* | PowerPC: multiarch strncmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+169 |
| | |||||
* | PowerPC: multiarch strncasecmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+152 |
| | |||||
* | PowerPC: multiarch strcasecmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+182 |
| | |||||
* | PowerPC: multiarch strnlen for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+104 |
| | |||||
* | PowerPC: multiarch strlen for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+120 |
| | |||||
* | PowerPC: multiarch rawmemchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+102 |
| | |||||
* | PowerPC: multiarch memrchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+107 |
| | |||||
* | PowerPC: multiarch memchr for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+107 |
| | |||||
* | PowerPC: multiarch mempcpy for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 5 | -1/+109 |
| | |||||
* | PowerPC: multiarch memset/bzero for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 16 | -1/+385 |
| | |||||
* | PowerPC: multirach memcmp for PowerPC64 | Adhemerval Zanella | 2013-12-13 | 6 | -1/+166 |
| |