about summary refs log tree commit diff
path: root/sysdeps/powerpc
Commit message (Collapse)AuthorAgeFilesLines
* Fix PLT uses in libm on powerpcAndreas Schwab2011-09-154-16/+16
|
* Fix undefined symbol in powerpc64 dl-machine.hAndreas Schwab2011-09-131-2/+0
|
* Remove --wth-tls option, TLS support is requiredUlrich Drepper2011-09-114-92/+240
|
* Remove support for !USE___THREADUlrich Drepper2011-09-102-58/+45
|
* Fix whitespacesUlrich Drepper2011-09-072-2/+1
|
* Trigonometric optimizations for POWERAdhemerval Zanella2011-09-079-0/+1070
|
* Fix profiling on powerpc32 secure-plt shared libs and PIEsAlan Modra2011-09-075-6/+10
|
* power7 strncmp optimizationWill Schmidt2011-09-072-2/+6
|
* power7 memcpy VSX optimizationsWill Schmidt2011-09-072-29/+145
|
* Fix duplicate definition of Elf64_FuncDescAurelien Jarno2011-08-232-8/+7
|
* Adjust libm test ulps for powerpcAndreas Schwab2011-08-201-0/+2
|
* Add an elf_ifunc_invoke interface so that architectures can implementDavid S. Miller2011-06-202-3/+17
| | | | the ifunc resolver calls however they wish.
* Prevent Altivec and VSX insns on PowerPC64 when no FPRs or VRs are avail.Ryan S. Arnold2011-05-201-2/+5
| | | | | | | | (cherry picked from commit 4749a0058b27274a95c5a798e339c7299cdf890e) Conflicts: ChangeLog
* Fix whitespaces.Ulrich Drepper2011-04-227-106/+104
|
* Remove doubled words.Jim Meyering2011-04-2222-40/+40
|
* Fix POWER4/POWER7 optimized strncmp to not read past differing bytesAndreas Schwab2011-04-174-20/+24
|
* Fix memory leak in TLS of loaded objects.Ulrich Drepper2011-04-101-1/+4
|
* PowerPC: Fix POWER6 s_isnanf.S: END(__isnan) to END(__isnanf)Ryan S. Arnold2011-03-181-3/+2
|
* Disable VSX usage in rtld.c to prevent TOC ref before relocs are resolved.Ryan S. Arnold2011-02-171-0/+5
|
* Make PowerPC64 default to nonexecutable stackRyan S. Arnold2010-12-191-1/+12
|
* power7-optimized mempcpyLuis Machado2010-11-052-0/+929
|
* powerpc: PPCA2/A2 optimized memcpy functionMichael B. Brutman2010-10-244-3/+1021
|
* Provide FP_FAST_FMA{,F,L} definitions for x86/x86-64.Ulrich Drepper2010-10-191-1/+1
|
* Add C99 FP_FAST_FMA{,F,L} macros to math.hMichael Meissner2010-10-191-0/+4
|
* Implement accurate fma.Jakub Jelinek2010-10-134-0/+71
|
* Correct implementation of fmaf.Jakub Jelinek2010-10-112-2/+4
|
* powerpc: Use generic memset for RTLD for ppc32/64Luis Machado2010-09-292-0/+8
|
* Revert "powerpc: PPCA2 optimized memcpy function"Ulrich Drepper2010-09-272-1012/+0
| | | | | | | | This reverts commit 44f91d3884e241e4402eb3e8b9b6dfa2acc9f80c. Conflicts: ChangeLog
* powerpc: PPCA2 optimized memcpy functionMichael B. Brutman2010-09-212-0/+1012
|
* Remove undefined operationsAndreas Schwab2010-09-051-5/+3
|
* powerpc: Various P7-optimized string functionsLuis Machado2010-08-1914-0/+2088
|
* PowerPC64 ABI fixesAlan Modra2010-08-128-155/+156
|
* Whitespace fixes.Ulrich Drepper2010-07-152-2/+2
|
* POWER6/7 optimizations for copysignLuis Machado2010-07-154-0/+114
|
* powerpc: Re-work the Implies structureLuis Machado2010-06-3022-22/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch tries to organize the implies files for ppc, since there are a number of processors and most of them are compatible with each other (backwards compatible). Having in mind that we start the search for processor-specific files in the sysdeps/unix/sysv/linux tree (sysdeps/unix/sysv/linux/powerpc/powerpc[32|64]/[processor]/fpu to be exact), we would like to grab any linux-specific code from that tree prior to going through the other tree (sysdeps/powerpc/...). For that, i removed the Implies files that were originally inside the fpu directories and placed then in the non-fpu directories (still inside the unix/sysv/linux tree). If no processor-specific/linux-specific files could be found, we "imply" the other tree's (sysdeps/powerpc/...) fpu directory for that specific processor AND also the non-fpu directory for that same tree. If, again, no processor-specific code is found, we read another Implies file that will point to the most compatible processor that we should grab code from, and so on, until we reach the power4 processor. So, in summary, the Implies files will live inside these directories now: * sysdeps/unix/sysv/linux/powerpc/powerpc[32|64]/[processor] * sysdeps/powerpc/powerpc[32|64]/[processor] Practical example of the order we will use to pick power6-specific code with the new structure. sysdeps/unix/sysv/linux/powerpc/powerpc[32|64]/power6/fpu -> sysdeps/unix/sysv/linux/powerpc/powerpc[32|64]/power6 -> sysdeps/powerpc/powerpc[32|64]/power6/fpu -> sysdeps/powerpc/powerpc[32|64]/power6 -> sysdeps/powerpc/powerpc[32|64]/power5+/fpu -> sysdeps/powerpc/powerpc[32|64]/power5+ -> sysdeps/powerpc/powerpc[32|64]/power5/fpu -> sysdeps/powerpc/powerpc[32|64]/power5 -> sysdeps/powerpc/powerpc[32|64]/power4/fpu -> sysdeps/powerpc/powerpc[32|64]/power4 (from here, it'll go to the generic path as usual)
* More whitespace fixes.Ulrich Drepper2010-06-141-2/+2
|
* Fix whitespaces.Ulrich Drepper2010-06-144-37/+37
|
* power7 string compare optimizationsLuis Machado2010-06-144-0/+2330
|
* Small fix to POWER7 32-bit memcpyLuis Machado2010-05-281-2/+2
|
* Small fix to POWER7 32-bit memsetLuis Machado2010-05-241-3/+2
|
* Add missing files.Luis Machado2010-05-202-0/+833
|
* Fix whitespace issues.Ulrich Drepper2010-03-102-705/+705
|
* power7-optimized 64-bit and 32-bit memcpyLuis Machado2010-03-102-0/+918
|
* Cleanup old obsolete PPC_REL16 checksLuis Machado2010-02-1224-153/+8
|
* Fix POWER7 ImpliesLuis Machado2010-02-104-4/+0
|
* Fix whitespace issues.Ulrich Drepper2010-02-094-4/+0
|
* power7-optimized classification functionsLuis Machado2010-02-0912-0/+487
|
* Avoid PLT call to fegetenv on s390Andreas Schwab2010-02-091-0/+1
|
* Fix whitespace issues.Ulrich Drepper2010-01-182-24/+24
|
* memcpy for ppc/cell.Ulrich Drepper2010-01-182-0/+490
|