about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Convert TEST_fI_f1 tests from code to data.Joseph Myers2013-05-142-11/+32
|
* Convert TEST_fF_f1 tests from code to data.Joseph Myers2013-05-142-12/+45
|
* Convert TEST_f_f1 tests from code to data.Joseph Myers2013-05-142-34/+76
|
* Add comments to vDSO hwcap loading process.Carlos O'Donell2013-05-143-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Loading of the vDSO pseudo-hwcap from the type 2 GNU note is a rather arcane and poorly documented process. Given that I had a chance to review this code today I thought I would add all of the things I had to lookup to verify the validity of the process. With a single .note.GNU the vDSO can register up to 64 flags, though in practice you are limited to 64 - _DL_FIRST_EXTRA bits which on x86 is 12 bits. The only use of this that I know of is in the Xen support in Linux where they use the 1st bit to indicate "nosegneg". I see "We use bit 1 to avoid bugs in some versions of glibc when bit 0 is used; the choice is otherwise arbitrary.", but no reference to a glibc bug anywhere. The code as-is should support bit zero, so we still have that free for future use. The kernel, glibc, and ld.so.cache must coordinate to ensure that bit values don't go too high and are used consistently. --- 2013-05-13 Carlos O'Donell <carlos@redhat.com> * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading. * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check. (main): Comment "tls" pseudo-hwcap.
* ARM: Make multiarch memcpy always use NEON when compiler doesRoland McGrath2013-05-135-11/+43
|
* Convert TEST_fl_f tests from code to data.Joseph Myers2013-05-132-38/+58
|
* Convert TEST_fi_f tests from code to data.Joseph Myers2013-05-132-36/+63
|
* Convert TEST_c_f tests from code to data.Joseph Myers2013-05-132-92/+140
|
* Convert TEST_if_f tests from code to data.Joseph Myers2013-05-132-124/+151
|
* Consistently use TEST_fl_f in tests of scalbln.Joseph Myers2013-05-132-25/+29
|
* Define decimal constant M_1_DIV_El in libm-test.incAdhemerval Zanella2013-05-132-1/+7
| | | | This patch replaces the 1.0 / M_El by the decimal constant M_1_DIV_El.
* Use HP_TIMING for benchmarks if availableSiddhesh Poyarekar2013-05-134-22/+100
| | | | | | | | | | | | | HP_TIMING uses native timestamping instructions if available, thus greatly reducing the overhead of recording start and end times for function calls. For architectures that don't have HP_TIMING available, we fall back to the clock_gettime bits. One may also override this by invoking the benchmark as follows: make USE_CLOCK_GETTIME=1 bench and get the benchmark results using clock_gettime. One has to do `make bench-clean` to ensure that the benchmark programs are rebuilt.
* Make _LIB_VERSION a weak symbolSiddhesh Poyarekar2013-05-133-11/+19
| | | | | | | That way it can live alongside _LIB_VERSION in libieee.a for statically compiled programs. Resolves #14582.
* Convert TEST_fff_f tests from code to data.Joseph Myers2013-05-122-888/+911
|
* Convert TEST_c_c tests from code to data.Joseph Myers2013-05-123-4599/+4738
|
* [AArch64] Fix out of range branch from ioctl() and clone()Marcus Shawcroft2013-05-123-4/+11
| | | | | | | | | | 2013-05-12 Marcus Shawcroft <marcus.shawcroft@linaro.org> * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Do not call sycall_error directly with a confitional branch. * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Do not call sycall_error directly with a confitional branch.
* Convert TEST_ff_f tests from code to data.Joseph Myers2013-05-123-937/+1055
|
* Make fma and nextafter tests use max_value instead of fltmax.Joseph Myers2013-05-112-10/+10
|
* Convert TEST_f_f tests from code to data.Joseph Myers2013-05-112-2501/+2725
|
* Add BZ #10191 to ChangeLog/NEWSAndreas Jaeger2013-05-112-14/+15
| | | | BZ #10191 was fixed some time ago without noticing at that time.
* Add getgid.c for SHChristian Grönke2013-05-103-9/+15
| | | | | [BZ #12387] * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
* Hurd: add ST_NOATIMEPino Toscano2013-05-102-1/+7
|
* Fix integer overflow in sysdeps/unix/sysv/linux/bits/sched.hAndreas Jaeger2013-05-103-4/+11
| | | | | | [BZ #15448] * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S) (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
* Start converting libm tests from code to data.Joseph Myers2013-05-103-72/+196
|
* Fix coding styleSiddhesh Poyarekar2013-05-102-4/+8
|
* Fix tgamma errno setting on domain error (bug 6809).Joseph Myers2013-05-106-14/+29
|
* Use *stat64 instead of *stat in installed programsFlorian Weimer2013-05-107-25/+37
| | | | | This ensures reliable operation on file systems with inode numbers which do not fit into 32 bits.
* Localize rpcgenAndreas Jaeger2013-05-103-2/+13
| | | | | | | [BZ #15395] * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for localization. Include <locale.h>.
* Add more comments to dlclose() algorithm.Carlos O'Donell2013-05-092-0/+10
| | | | | | | | | | | | | | The algorithm for scanning dependencies upon dlclose is less than immediately obvious. This patch adds two bits of comments that explain why you start the dependency search at l_initfini[1], and why you need to restart the search. --- 2013-05-09 Carlos O'Donell <carlos@redhat.com> * elf/dl-close.c (_dl_close_worker): Add comments.
* Fix ldbl-128ibm cos range reduction near pi/2 (bug 15359).Joseph Myers2013-05-093-7/+12
|
* Fix ldbl-128 cos range reduction near pi/2 (bug 15429).Joseph Myers2013-05-093-6/+11
|
* Use M_SQRT1_2l instead of local M_SQRT_2_2 in libm-test.inc.Joseph Myers2013-05-092-2/+4
|
* Fix tst-mutexpi8Andi Kleen2013-05-092-0/+18
| | | | | | 2013-05-09 Andi Kleen <ak@linux.intel.com> * tst-mutex8.c (do_test): Check for ENABLE_PI.
* Use M_PI_34l consistently in libm-test.inc.Joseph Myers2013-05-092-2/+5
|
* Use decimal constants in defining M_* in libm-test.inc.Joseph Myers2013-05-092-5/+13
|
* Update powerpc libm-test ULPsAdhemerval Zanella2013-05-082-6/+444
|
* Factor out initializers for libm-test.inc constants.Joseph Myers2013-05-082-19/+45
|
* Use correct TEST_* macros for jn, ldexp and yn tests.Joseph Myers2013-05-082-100/+106
|
* ARM: Add Cortex-A15 optimized NEON and VFP memcpy routines, with IFUNC.Will Newton2013-05-0810-0/+866
|
* Move some libm-test logic for running tests from gen-libm-test.pl to ↵Joseph Myers2013-05-083-75/+242
| | | | libm-test.inc.
* Improve tgamma accuracy (bugs 2546, 2560, 5159, 15426).Joseph Myers2013-05-0819-53/+2873
|
* Preheat CPU in benchtests.Ondrej Bilka2013-05-082-0/+21
| | | | | | A benchmark could be skewed by CPU initialy working on minimal frequency and speeding up later. We first run code in loop to partialy fix this issue.
* Only defined DEV_BSIZE if not already defined.Aurelien Jarno2013-05-082-1/+7
|
* Declare _dl_skip_args in ldsodefs.h header.Roland McGrath2013-05-072-0/+15
|
* ARM: Rewrite elf_machine_dynamic in pure C.Roland McGrath2013-05-072-21/+9
|
* manual/message.texi: Fix english and clarify.Carlos O'Donell2013-05-072-4/+9
| | | | | | | | | | | | | | | Rewrite the first paragraph to talk about users not humans, and to use correct English. Clarify that it is the mapping of messages to IDs that impacts the design of the message translation API. --- 2013-05-07 Carlos O'Donell <carlos@redhat.com> * manual/message.texi (Message Translation): Talk about users. Message to key mapping impacts design.
* Fix glob64 broken by cleanup.Roland McGrath2013-05-062-0/+4
|
* Remove a dead declaration.Roland McGrath2013-05-062-7/+2
|
* Move dummy glob64.c alongside glob.c that defines glob64.Roland McGrath2013-05-062-0/+3
|
* Flesh out stub not-cancel.h file.Roland McGrath2013-05-062-0/+12
|