Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement fma in soft-fp. | Joseph Myers | 2013-07-02 | 21 | -109/+681 |
| | |||||
* | ARM: Pass dl_hwcap to IFUNC resolver functions. | Will Newton | 2013-07-02 | 2 | -1/+6 |
| | |||||
* | Support no-FPU ColdFire in sysdeps/m68k/dl-trampoline.S and refactor code. | Joseph Myers | 2013-06-30 | 2 | -24/+27 |
| | |||||
* | tile: switch to using <fenv.h> fallback functions | Chris Metcalf | 2013-06-30 | 7 | -165/+9 |
| | | | | | Now that the fallback functions match the desired semantics for tile functions, just switch to using them. | ||||
* | Add more NEWS items for 2.18. | Joseph Myers | 2013-06-28 | 1 | -0/+15 |
| | |||||
* | Skip SSE4.2 versions on Intel Silvermont | Liubov Dmitrieva | 2013-06-28 | 6 | -15/+51 |
| | | | | SSE2/SSSE3 versions are faster than SSE4.2 versions on Intel Silvermont. | ||||
* | PowerPC: Define AT_HWCAP2 bits and AT_HWCAP2 handling for POWER8. | Ryan S. Arnold | 2013-06-28 | 6 | -22/+85 |
| | |||||
* | Add GLRO(dl_hwcap2) for new AT_HWCAP2 auxv_t a_type. | Ryan S. Arnold | 2013-06-28 | 18 | -13/+89 |
| | |||||
* | Consistently use page_shift in sysdeps/unix/sysv/linux/mmap64.c. | Joseph Myers | 2013-06-28 | 2 | -1/+6 |
| | |||||
* | Test for mprotect failure in dl-load.c (bug 12492). | Pierre Ynard | 2013-06-28 | 3 | -13/+23 |
| | |||||
* | Mark packed structure element used with atomic operation aligned. | Nathan Froyd | 2013-06-28 | 2 | -1/+18 |
| | |||||
* | Fix sysdeps/m68k/fpu_control.h preprocessor indentation. | Joseph Myers | 2013-06-28 | 2 | -32/+36 |
| | |||||
* | Support no-FPU ColdFire in sysdeps/m68k/fpu_control.h. | Nathan Sidwell | 2013-06-28 | 2 | -3/+23 |
| | |||||
* | Add a dlopen/getpagesize static executable test. | Maciej W. Rozycki | 2013-06-28 | 4 | -3/+117 |
| | |||||
* | [BZ #15022] Correct global-scope dlopen issues in static executables. | Maciej W. Rozycki | 2013-06-28 | 9 | -42/+610 |
| | | | | | | | | This change creates a link map in static executables to serve as the global search list for dlopen. It fixes a problem with the inability to access the global symbol object and a crash on an attempt to map a DSO into the global scope. Some code that has become dead after the addition of this link map is removed too and test cases are provided. | ||||
* | [AArch64] Adjust elf_machine_dynamic to find _DYNAMIC via _GLOBAL_OFFSET_TABLE_ | Marcus Shawcroft | 2013-06-28 | 2 | -2/+7 |
| | |||||
* | [AArch64] Simplify getcontext pstate initialization. | Marcus Shawcroft | 2013-06-28 | 2 | -2/+6 |
| | |||||
* | _dl_static_init: Remove nested locking. | Maciej W. Rozycki | 2013-06-27 | 4 | -14/+14 |
| | | | | | | | This function is now called from dl_open_worker with the GL(dl_load_lock) lock held and no longer needs local protection. GL(dl_load_lock) also correctly protects _dl_lookup_symbol_x called here that relies on the caller to have serialized access to the data structures it uses. | ||||
* | Require GCC 4.4 or later to build glibc. | Joseph Myers | 2013-06-26 | 5 | -6/+14 |
| | |||||
* | Add a test for BZ #15674 | H.J. Lu | 2013-06-26 | 2 | -0/+27 |
| | |||||
* | Mention BZ #15674 | H.J. Lu | 2013-06-26 | 1 | -1/+1 |
| | |||||
* | Fix buffers overrun in x86_64 memcmp-ssse3.S | Liubov Dmitrieva | 2013-06-26 | 2 | -4/+7 |
| | |||||
* | [BZ #15022] Avoid repeated calls to DL_STATIC_INIT for the same module. | Maciej W. Rozycki | 2013-06-26 | 2 | -4/+11 |
| | |||||
* | Add AT_HWCAP2 as a new auxv_t a_type to elf.h. | Ryan S. Arnold | 2013-06-26 | 2 | -1/+8 |
| | |||||
* | drop NEWS mention | Mike Frysinger | 2013-06-25 | 1 | -1/+0 |
| | | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | Fix missing libc-internal.h include. | Richard Henderson | 2013-06-25 | 2 | -0/+5 |
| | | | | * locale/programs/locarchive.c: Include <libc-internal.h> | ||||
* | Update texinfo.tex. | Joseph Myers | 2013-06-25 | 2 | -202/+358 |
| | |||||
* | m68k: fix bad use of register alias in cfi insn | Andreas Schwab | 2013-06-25 | 2 | -2/+7 |
| | |||||
* | [BZ #15666] alpha: Add __sqrt*_finite definitions | Richard Henderson | 2013-06-24 | 9 | -1/+86 |
| | | | | | With compatibility for ev6 and non-ev6 builds, as the non-ev6 did manage to get definitions emitted for the float and double functions. | ||||
* | [BZ #10283] localedef: align fixed maps to SHMLBA | Mike Frysinger | 2013-06-24 | 5 | -29/+113 |
| | | | | | | | | | | | | Many Linux arches require fixed mmaps to be aligned higher than pagesize, so use the SHMLBA define as it represents this quantity exactly. This fixes spurious errors seen on those arches like: cannot map archive header: Invalid argument URL: http://sourceware.org/bugzilla/show_bug.cgi?id=10283 Reported-by: CHIKAMA Masaki <masaki.chikama@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | libc-internal.h: add ALIGN helper macros | Mike Frysinger | 2013-06-24 | 2 | -0/+27 |
| | | | | | | | Rather than open coding the masks, add helper macros to do the magic. This makes code easier to read. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | BZ #12310: pthread_exit in static app. segfaults | Vladimir Nikulichev | 2013-06-24 | 3 | -12/+21 |
| | | | | | | | | | | | | | | | | Static applications that call pthread_exit on the main thread segfault. This is because after a thread terminates __libc_start_main decrements __nptl_nthreads which is only defined in pthread_create. Therefore the right solution is to add a requirement to pthread_create from pthread_exit. ~~~ nptl/ 2013-06-24 Vladimir Nikulichev <v.nikulichev@gmail.com> [BZ #12310] * pthread_exit.c: Add reference to pthread_create. | ||||
* | PowerPC: Enable POWER8 platform sans hwcap bits. | Ryan S. Arnold | 2013-06-24 | 7 | -3/+34 |
| | |||||
* | Regenerate INSTALL file | Siddhesh Poyarekar | 2013-06-24 | 2 | -3/+6 |
| | |||||
* | Fix typo in comment | Siddhesh Poyarekar | 2013-06-24 | 2 | -2/+6 |
| | |||||
* | alpha: Update libm-test-ulps | Richard Henderson | 2013-06-23 | 2 | -32/+6392 |
| | |||||
* | Include <string.h> in nptl/pthread_setattr_default_np.c. | Joseph Myers | 2013-06-22 | 2 | -0/+5 |
| | |||||
* | Include <string.h> in sysdeps/unix/sysv/linux/libc_fatal.c. | Joseph Myers | 2013-06-22 | 2 | -0/+3 |
| | |||||
* | Fix soft-fp shadowing between __FP_FRAC_ADD_3 and _FP_MUL_MEAT_2_wide_3mul ↵ | Joseph Myers | 2013-06-22 | 3 | -7/+13 |
| | | | | (bug 15667). | ||||
* | Remove dead DL_DST_REQ_STATIC code. | Maciej W. Rozycki | 2013-06-22 | 2 | -13/+6 |
| | |||||
* | Add sh4 implementation of fegetexceptflag (bug 15655). | Kaz Kojima | 2013-06-22 | 1 | -1/+2 |
| | |||||
* | Fix bad shift in soft-fp (bug 7006). | Joseph Myers | 2013-06-21 | 3 | -14/+21 |
| | |||||
* | dlfcn/Makefile: Avoid repeated $(*-ENV) definitions. | Maciej W. Rozycki | 2013-06-21 | 2 | -1/+6 |
| | |||||
* | Add sh4 implementation of fegetexceptflag. | Kaz Kojima | 2013-06-21 | 2 | -0/+43 |
| | |||||
* | Fix loop construction to functions calls | Adhemerval Zanella | 2013-06-20 | 11 | -0/+86 |
| | | | | | | Check wheter the compiler has the option -fno-tree-loop-distribute-patterns to inhibit loop transformation to library calls and uses it on memset and memmove default implementation to avoid recursive calls. | ||||
* | Allow fesetround failures in math/test-misc.c if ROUNDING_TESTS fails. | Joseph Myers | 2013-06-20 | 2 | -1/+8 |
| | |||||
* | Avoid spurious failures from <fenv.h> fallback functions (bug 15654). | Joseph Myers | 2013-06-20 | 12 | -16/+44 |
| | |||||
* | Use rtld-CPPFLAGS in rtld-%.os rules for generated sources. | Roland McGrath | 2013-06-18 | 2 | -12/+28 |
| | |||||
* | sysdeps/arm/arm-mcount.S: Comment typo fix. | Roland McGrath | 2013-06-18 | 2 | -1/+3 |
| | |||||
* | ARM: Make armv7 memcpy implementations SFI-friendly | Roland McGrath | 2013-06-18 | 3 | -281/+572 |
| |