about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: multiarch lrint/lrintf for PowerPC32Adhemerval Zanella2013-12-066-1/+150
|
* PowerPC: multiarch lround/lrounf for PowerPC32Adhemerval Zanella2013-12-067-1/+191
|
* PowerPC: multiarch copysign/copysignf for PowerPC32Adhemerval Zanella2013-12-066-2/+167
|
* PowerPC: multiarch trunc/truncf for PowerPC32Adhemerval Zanella2013-12-068-1/+208
|
* PowerPC: multiarch round/roundf for PowerPC32Adhemerval Zanella2013-12-068-1/+208
|
* PowerPC: multiarch floor/floorf for PowerPC32Adhemerval Zanella2013-12-068-1/+209
|
* PowerPC: multiarch ceil/ceilf for PowerPC32Adhemerval Zanella2013-12-068-1/+208
|
* PowerPC: multiarch finite/finitef for PowerPC32Adhemerval Zanella2013-12-069-5/+215
|
* PowerPC: multiarch isinf/isinff for PowerPC32Adhemerval Zanella2013-12-067-2/+193
|
* PowerPC: multiarch isnan/isnanf for PowerPC32Adhemerval Zanella2013-12-0611-1/+306
|
* PowerPC: multiarch sqrt/sqrtf for PowerPC32Adhemerval Zanella2013-12-068-1/+205
|
* PowerPC: multiarch llround/llroundf for PowerPC32Adhemerval Zanella2013-12-067-1/+187
|
* PowerPC: multiarch llrint/llrintf for PowerPC32Adhemerval Zanella2013-12-068-0/+206
|
* PowerPC: change sysdeps fpu folderAdhemerval Zanella2013-12-062-2/+4
| | | | | This patch makes the fpu/multiarch folder appears in front of the powerpc/fpu folder.
* PowerPC: multiarch wordcopy routines for PowerPC32Adhemerval Zanella2013-12-0610-255/+224
|
* PowerPC: multiarch wcscpy for PowerPC32Adhemerval Zanella2013-12-0610-7/+150
|
* PowerPC: multiarch wcsrchr for PowerPC32Adhemerval Zanella2013-12-0610-7/+146
|
* PowerPC: multiarch wcschr for PowerPC32Adhemerval Zanella2013-12-069-6/+160
|
* PowerPC: multiarch strchr for PowerPC32Adhemerval Zanella2013-12-067-1/+156
|
* PowerPC: multiarch strchrnul for PowerPC32Adhemerval Zanella2013-12-067-2/+133
|
* PowerPC: multiarch strncasecmp for PowerPC32Adhemerval Zanella2013-12-067-1/+170
|
* PowerPC: multiarch strcasecmp for PowerPC32Adhemerval Zanella2013-12-067-1/+194
|
* PowerPC: multiarch strncmp for PowerPC32Adhemerval Zanella2013-12-066-1/+134
|
* PowerPC: multiarch strnlen for PowerPC32Adhemerval Zanella2013-12-067-1/+135
|
* PowerPC: multiarch strlen for PowerPC32Adhemerval Zanella2013-12-066-1/+127
|
* PowerPC: multiarch rawmemchr for PowerPC32Adhemerval Zanella2013-12-067-2/+136
|
* PowerPC: multiarch memrchr for PowerPC32Adhemerval Zanella2013-12-066-1/+124
|
* PowerPC: multiarch memchr for PowerPC32Adhemerval Zanella2013-12-067-2/+140
|
* PowerPC: multiarch mempcpy for PowerPC32Adhemerval Zanella2013-12-067-2/+133
|
* PowerPC: multiarch memset/bzero for PowerPC32Adhemerval Zanella2013-12-0612-1/+327
|
* PowerPC: multiarch memcmp for PowerPC32Adhemerval Zanella2013-12-067-1/+159
|
* PowerPC: multiarch memcpy for PowerPC32Adhemerval Zanella2013-12-069-1/+271
|
* PowerPC: initial support for multilib for PowerPC32Adhemerval Zanella2013-12-065-2/+116
| | | | | This patch add a empty Makefile, the C IFUNC helper macros, and a empty available IFUNC implementation enumeration.
* benchtests: Append volatile keyword to type instead of prependingSiddhesh Poyarekar2013-12-062-2/+6
| | | | | | `volatile int` means the same as 'int volatile', but that's not the case for 'volatile char *' and 'char * volatile'. We won't need a 'char volatile *' or other complicated semantics for now.
* Add SH implementation of sotruss-lib.c and c++-types.data.Kaz Kojima2013-12-063-0/+122
|
* Update powerpc-fpu ULPs.Adhemerval Zanella2013-12-052-8/+2221
|
* Fix tgamma errno setting on underflow (bug 6810).Joseph Myers2013-12-059-2621/+2696
|
* Move TEST_f_f tests for [l-y]* functions from libm-test.inc to ↵Joseph Myers2013-12-057-816/+37505
| | | | auto-libm-test-in.
* Revert wrong commit.Adhemerval Zanella2013-12-051-2/+2
|
* PowerPC: Add systemtap static probe points in setjmp/longjmpAdhemerval Zanella2013-12-0513-60/+128
| | | | | | | | | This patch add static probes for setjmp/longjmp in the way gdb expects,fixing the gdb.base/longjmp.exp gdb testcases. It changes the symbol_name and use macros to to avoid change the probe names and ending up adding more logic on GDB (since with the expected name GDB work seamlessly).
* Fix elf/get-dynamic-info.h for ATAdhemerval Zanella2013-12-051-2/+2
|
* Accept output arguments to benchmark functionsSiddhesh Poyarekar2013-12-055-91/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds the ability to accept output arguments to functions being benchmarked, by nesting the argument type in <> in the args directive. It includes the sincos implementation as an example, where the function would have the following args directive: ## args: double:<double *>:<double *> This simply adds a definition for a static variable whose pointer gets passed into the function, so it's not yet possible to pass something more complicated like a pre-allocated string or array. That would be a good feature to add if a function needs it. The values in the input file will map only to the input arguments. So if I had a directive like this for a function foo: ## args: int:<int *>:int:<int *> and I have a value list like this: 1, 2 3, 4 5, 6 then the function calls generated would be: foo (1, &out1, 2, &out2); foo (3, &out1, 4, &out2); foo (5, &out1, 6, &out2);
* Remove unused variables in __stpncpy_chkSiddhesh Poyarekar2013-12-052-3/+2
|
* Fix ChangeLog formattingSiddhesh Poyarekar2013-12-051-2/+2
|
* BZ #15941: Fix INSTALL file regeneration failure with makeinfo 5.xSiddhesh Poyarekar2013-12-055-10/+24
| | | | | I have skipped regenerating the INSTALL file because we want to continue using the 4.x generator for now.
* Update longlong.h from GCC.Joseph Myers2013-12-042-13/+46
|
* Add bug numbers 926, 4772 and 16274 to NEWS.Ondřej Bílka2013-12-041-13/+13
|
* Add missing bug numbers (12486, 15915, 16038) to NEWS.Joseph Myers2013-12-041-11/+12
|
* Fix Bessel function error handling (bug 6807, bug 15901).Joseph Myers2013-12-0417-49/+156
|
* PowerPC64 ELFv2 ABI 6/6: Bump ld.so soname version numberUlrich Weigand2013-12-046-7/+209
| | | | | | | | | | | | | | | | To avoid having a ELFv2 binary accidentally picking up an old ABI ld.so, this patch bumps the soname to ld64.so.2. In theory (or for testing purposes) this will also allow co-installing ld.so versions for both ABIs on the same system. Note that the kernel will already be able to load executables of both ABIs. However, there is currently no plan to use that theoretical possibility in a any supported distribution environment ... Note that in order to check which ABI to use, we need to invoke the compiler to check the _CALL_ELF macro; this is done in a new configure check in sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac, replacing the hard-coded value of default-abi in the Makefile.