Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-03-29 | Format e_log.c | Siddhesh Poyarekar | 1 | -95/+133 | |
2013-03-28 | Use __ehdr_start, if available, as fallback for AT_PHDR. | Roland McGrath | 1 | -8/+14 | |
2013-03-28 | Make _dl_phdr pointer to const. | Roland McGrath | 2 | -2/+2 | |
2013-03-28 | Consolidate declarations of _dl_phdr, _dl_phnum. | Roland McGrath | 2 | -4/+6 | |
2013-03-28 | Never call syslog in __libc_message. | Roland McGrath | 1 | -9/+0 | |
2013-03-28 | PowerPC: .eh_frame info in crt1.o isn't useful and triggers gold bug 14675. | Alan Modra | 2 | -0/+14 | |
The .eh_frame info in crt1.o isn't useful and this patch prevents it from being generated on PowerPC. It triggers the following gold bug: http://sourceware.org/bugzilla/show_bug.cgi?id=14675 | |||||
2013-03-28 | Fix e_logl (128ibm) spurious underflow | Adhemerval Zanella | 2 | -2/+17 | |
2013-03-28 | Format and clean up s_atan2.c | Siddhesh Poyarekar | 1 | -310/+494 | |
2013-03-27 | Fix casinh inaccuracy near i, imaginary part > 1 (bug 15307). | Joseph Myers | 2 | -0/+708 | |
2013-03-26 | Use integral constants | Siddhesh Poyarekar | 1 | -76/+76 | |
The compiler is smart enough to convert those into double for powerpc, but if we put them as doubles, it adds overhead by performing those operations in floating point mode. | |||||
2013-03-26 | Removed commented code | Siddhesh Poyarekar | 11 | -85/+0 | |
2013-03-26 | Make mantissa type of mp_no configurable | Siddhesh Poyarekar | 4 | -69/+157 | |
The mantissa of mp_no is intended to take only integral values. This is a relatively good choice for powerpc due to its 4 fpus, but not for other architectures, which suffer due to this choice. This change makes the default mantissa a long integer and allows powerpc to override it. Additionally, some operations have been optimized for integer manipulation, resulting in a significant improvement in performance. | |||||
2013-03-26 | PowerPC: fix libm ABI issue for llroundl | Adhemerval Zanella | 1 | -0/+4 | |
2013-03-22 | Update sparc ULPs. | David S. Miller | 1 | -4/+1002 | |
* sysdeps/sparc/fpu/libm-test-ulps: Update. | |||||
2013-03-22 | BZ#13889: expl (709.75) wrongly overflows for ldbl-128ibm | Adhemerval Zanella | 2 | -6/+24 | |
The patch increase the high value to check if expl overflows. Current high mark value is not really correct, the algorithm accepts high values. It also adds a correct wrapper function to check for overflow and underflow. | |||||
2013-03-22 | BZ#11120: fix x86_64/strcmp.S NOT_IN_libc safeguards | Dmitry V. Levin | 1 | -3/+3 | |
Due to a typo repeated several times, this bug hasn't been fixed yet, despite being marked as resolved in glibc 2.12. * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib with NOT_IN_libc. | |||||
2013-03-21 | PowerPC: fix sqrtl ABI issue | Adhemerval Zanella | 1 | -0/+4 | |
This patch fixes a sqrtl ABI issue when building for powerpc64. | |||||
2013-03-21 | On 32-bit x86, disable certain tests involving sNaN values. | Thomas Schwinge | 2 | -0/+62 | |
Follow-up to commit 495ded2c8c1eb8c0ac4b54add2dd397852e19cba. | |||||
2013-03-21 | Fix Bessel function spurious overflows for ldbl-128 / ldbl-128ibm (bug 15285). | Joseph Myers | 3 | -20/+40 | |
2013-03-21 | Fix casinh inaccuracy for argument with imaginary part 1 (bug 15287). | Joseph Myers | 2 | -2/+1466 | |
2013-03-21 | Replace 8388608.0 with HALFRAD in mp code | Siddhesh Poyarekar | 2 | -3/+3 | |
Minor cleanup | |||||
2013-03-20 | Move system-specific settings out of toplevel configure.in and config.make.in. | Joseph Myers | 8 | -0/+39 | |
2013-03-19 | Consolidate Linux and POSIX libc_fatal code. | Roland McGrath | 2 | -186/+67 | |
2013-03-19 | s390x: Move rtld link to /lib | Andreas Schwab | 2 | -4/+14 | |
2013-03-18 | Faster strlen on x64. | Ondrej Bilka | 13 | -1308/+755 | |
2013-03-17 | Update Sparc ULPs. | David S. Miller | 1 | -2/+14 | |
* sysdeps/sparc/fpu/libm-test-ulps: Update. | |||||
2013-03-16 | Fix y1l spurious overflows for ldbl-96 (bug 15283). | Joseph Myers | 3 | -1/+25 | |
2013-03-16 | Fix spurious underflow exceptions for Bessel functions for ldbl-128 / ↵ | Joseph Myers | 2 | -58/+79 | |
ldbl-128ibm (bug 14155). | |||||
2013-03-15 | Move _dl_non_dynamic_init, _dl_aux_init declarations. | Roland McGrath | 2 | -6/+7 | |
2013-03-15 | Promote a math test for sNaN handling to the top-level. | Thomas Schwinge | 2 | -337/+0 | |
2013-03-15 | Use GCC's builtins for generating NaNs. | Thomas Schwinge | 1 | -55/+9 | |
2013-03-15 | Better distinguish between NaN/qNaN/sNaN. | Thomas Schwinge | 4 | -55/+55 | |
2013-03-15 | Revert configurable mantissa patch | Siddhesh Poyarekar | 4 | -148/+60 | |
Reverts d22ca8cdfb98001d03772ef264b244930d439b3f since it is severely broken on 32-bit. | |||||
2013-03-15 | Reverting wrong commit. | Adhemerval Zanella | 1 | -0/+42 | |
Restore sysdeps/gnu/configure wrongly modified on ef26eece6331a1f6d959818e37c438cc7ce68e53. | |||||
2013-03-15 | PowerPC: gettimeofday optimization by using IFUNC | Adhemerval Zanella | 3 | -54/+46 | |
2013-03-15 | Make mantissa type configurable | Siddhesh Poyarekar | 4 | -60/+148 | |
This allows the default mantissa to be integral, with powerpc overriding it to take advantage of its FPUs. | |||||
2013-03-15 | Regenerate sysdeps/x86_64/preconfigure. | Joseph Myers | 1 | -120/+0 | |
2013-03-14 | Fix spurious underflow exceptions for Bessel functions for double (bug 14155). | Joseph Myers | 2 | -4/+8 | |
2013-03-14 | Fix formatting in last change | Siddhesh Poyarekar | 1 | -1/+1 | |
2013-03-14 | Fix __times() handling of EFAULT when buf is NULL | Petr Baudis | 1 | -4/+6 | |
2013-03-12 | Add sysdeps/init_array to produce empty crt[in].o and use .preinit_array for ↵ | Roland McGrath | 4 | -0/+104 | |
gcrt1.o | |||||
2013-03-11 | Remove Prefer_SSE_for_memop on x64 | Ondrej Bilka | 9 | -198/+2 | |
2013-03-11 | Remove extra pthread_atfork compat symbols | Andreas Schwab | 1 | -1/+0 | |
2013-03-08 | PowerPC: unify math_ldbl.h implementations | Adhemerval Zanella | 4 | -168/+18 | |
This patch removes redudant definition from PowerPC specific math_ldbl, using the definitions from ieee754 math_ldbl.h. | |||||
2013-03-08 | Consolidate copies of mp code in powerpc | Siddhesh Poyarekar | 6 | -221/+4 | |
Retain a single copy of the mp code in power4 instead of the two identical copies in powerpc32 and powerpc64. | |||||
2013-03-07 | Install <bits/mman-linux.h> | Andreas Jaeger | 1 | -1/+2 | |
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add bits/mman-linux.h. | |||||
2013-03-07 | Merge powerpc slowexp.c into generic code | Siddhesh Poyarekar | 5 | -133/+11 | |
2013-03-07 | Merge powerpc slowpow.c into generic code | Siddhesh Poyarekar | 5 | -186/+19 | |
2013-03-07 | Use an intermediate variable to sum exponents in powerpc __mul and __sqr | Siddhesh Poyarekar | 2 | -10/+12 | |
2013-03-07 | Use generic mpa.c code for everything except __mul and __sqr | Siddhesh Poyarekar | 3 | -1256/+12 | |