about summary refs log tree commit diff
path: root/ports
Commit message (Collapse)AuthorAgeFilesLines
* Make ARM fesetenv (FE_NOMASK_ENV) detect failure (bug 14866).Joseph Myers2012-11-212-0/+16
|
* Cast to uintptr_t in MIPS jmpbuf-unwind.h.Joseph Myers2012-11-212-1/+4
|
* aarch64: Fix lll_futex_timed_wait_bitset return value sign.Marcus Shawcroft2012-11-212-1/+6
| | | | | The implementation of lll_futex_timed_wait_bitset should not be negating the futex syscall return value on error.
* aarch64: Remove weak_aliasx macro.Marcus Shawcroft2012-11-216-10/+14
|
* aarch64: Remove support for NO_LONG_DOUBLE.Marcus Shawcroft2012-11-216-25/+8
|
* aarch64: Indent preprocessor directives.Marcus Shawcroft2012-11-217-35/+44
|
* aarch64: Use range in copyright years.Marcus Shawcroft2012-11-2131-30/+63
|
* aarch64: Rename .x files to .cMarcus Shawcroft2012-11-2115-14/+33
|
* aarch64: Don't use K&R CMarcus Shawcroft2012-11-216-13/+13
|
* Add sotruss-lib.c for MIPS.Joseph Myers2012-11-212-0/+121
|
* tile: update libm-test-ulps for new testsChris Metcalf2012-11-202-0/+36
|
* tile: Fix __bswap_64 return type in tile bits/byteswap.hChris Metcalf2012-11-202-1/+6
|
* tile: remove redundant defines of libc_fetestexcept, etc. in s_fma.cChris Metcalf2012-11-202-4/+5
|
* m68k: Remove indirection through weak_aliasxAndreas Schwab2012-11-2015-51/+47
|
* Use parentheses around MIPS syscall macro arguments.Joseph Myers2012-11-203-46/+62
|
* Fix int-to-pointer-cast warnings for MIPS.Joseph Myers2012-11-204-12/+28
|
* Fix warnings from aborting MIPS atomic macros.Joseph Myers2012-11-202-3/+13
|
* Fix unused-variable warnings from MIPS RESOLVE_GOTSYM macro.Joseph Myers2012-11-202-1/+4
|
* Fix unused variable warnings from MIPS syscall macros.Joseph Myers2012-11-194-9/+24
|
* AArch64: Adding optimized maths functions.Marcus Shawcroft2012-11-1929-2/+812
|
* hppa: Mark __pthread_once as a hidden def.Carlos O'Donell2012-11-192-2/+7
|
* hppa: Fix fesetenv for FE_DFL_ENV.Carlos O'Donell2012-11-192-10/+5
| | | | | Switching back to FE_DFL_ENV should reset the FPU to the state as it was at the start of the program.
* hppa: Implement get-rounding-mode.hCarlos O'Donell2012-11-193-1/+39
| | | | | Implement get_rounding_mode using the new fpu_control.h support. Use get_rounding_mode from fegetround.
* hppa: Implement fpu_control.h.Carlos O'Donell2012-11-192-0/+68
| | | | | The HP-PARISC processor has full IEEE-754 support and we implement all of fpu_control.h.
* hppa: Add ____longjmp_check C implementation.Carlos O'Donell2012-11-191-0/+47
|
* hppa: Implement __longjmp_chk.Carlos O'Donell2012-11-195-80/+129
| | | | Implement longjmp and the chk variant in C.
* m68k: fix cancellable syscall with 5 or 6 argumentsAndreas Schwab2012-11-182-5/+10
|
* m68k: define ELF_MACHINE_RUNTIME_FIXUP_PARAMSAndreas Schwab2012-11-182-2/+7
|
* m68k: update libm test ULPsAndreas Schwab2012-11-182-0/+121
|
* m68k: define lll_futex_timed_wait_bitsetAndreas Schwab2012-11-182-1/+18
|
* Fix "set but not used" warnings from MIPS bits/atomic.h.Joseph Myers2012-11-172-4/+13
|
* Fix thumb2 build breakage in libcryptMarcus Shawcroft2012-11-142-0/+9
|
* AArch64 PortMarcus Shawcroft2012-11-09128-0/+13767
|
* Update language in ChangeLog.tile.Chris Metcalf2012-11-071-2/+1
|
* tile: use memcpy in memmove when possibleChris Metcalf2012-11-062-0/+24
|
* Use memcpy in memmove when possibleMaxim Kuvyrkov2012-11-062-0/+27
|
* tile: use atomic op to unlock pthread_spinlock_tChris Metcalf2012-11-062-0/+37
| | | | | | | | | Atomic ops are issued directly from the core, rather than potentially sitting in the write buffer, so can improve the performance of other waiters. In addition, if we didn't end up pulling a copy of the cache line where the lock is into cache, by using an atomic op we don't have to acquire the cache line before we can unlock.
* Make ieee754 fma tolerate architectures without exception support.Chris Metcalf2012-11-062-7/+28
|
* tile: support very large shared objectsChris Metcalf2012-11-064-12/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With gcc 4.8 tilegx has support for -mcmodel=large, to tolerate very large shared objects. This option changes the compiler output to not include direct jump instructions, which have a range of only 2^30, i.e +/- 512MB. Instead the compiler marshalls the target PCs into registers and then uses jump- or call-to-register instructions. For glibc, the upshot is that we need to arrange for a few functions to tolerate the possibility of a large range between the PC and the target. In particular, the crti.S and start.S code needs to be able to reach from .init to the PLT, as does gmon-start.c. The elf-init.c code has the reverse problem, needing to call from libc_nonshared.a (linked at the end of shared objects) back to the _init section at the beginning. No other functions in *_nonshared.a need to be built this way, as they only call the PLT (or potentially each other), but all of that code is linked at the very end of the shared object. We don't build the standard -static archives with this option as the performance cost is high enough and the use case is rare enough that it doesn't seem worthwhile. Instead, we would encourage developers who need the -static model with huge executables to build a private copy of glibc and configure it with -mcmodel=large. Note that libc.so et al don't need any changes; the only changes are for code that is statically linked into user code built with -mcmodel=large. For the assembly code, I just rewrote it so that it unconditionally uses the large model. To be able to pass -mcmodel=large to csu/elf-init.c and csu/gmon-start.c, I need to check to see if the compiler supports that flag, since gcc 4.7 doesn't; I added the support by creating a small Makefile fragment that just runs the compiler to check.
* tile: improve simulator notification for relative paths in dlopenChris Metcalf2012-11-062-14/+92
| | | | | | | | | | | | Normally, the simulator is notified of absolute pathnames by the _dl_load_hook hook. However, when a relative pathname is used, the simulator may not know that the relative path matches a path that it could figure out in the file system that it has access to. Instead we provide a simplified version of the realpath function so we can pass a plausible absolute pathname to the simulator. Since we're now doing more work at object load time, we also add a guard so we do no work at all if we're not running on the simulator.
* Optimize tile (mostly tilegx) memcpy and memmove performance.Chris Metcalf2012-11-064-67/+615
| | | | | | | | | | | | | | | | | | - Override <memcopy.h> so we use full 8-byte word copies on tilegx32 for memmove, then use op_t in memcpy instead of the previous locally-defined word_t just to avoid proliferating identical types. - Fix bug in memcpy prefetch that caused us to never prefetch past the first cache line. - Optimize misaligned memcpy by inlining _wordcopy_fwd_dest_aligned instead of just doing a dumb word-at-a-time copy. - Make memcpy safe for forward copies by doing all the loads from a given cache line prior to doing a wh64 (cache line zero-fill) on the destination. Remove now-redundant src == dst check. - Copy and optimize the generic wordcopy.c routines to use the tile "double align" instruction instead of the MERGE macro; to avoid offset addressing mode (which tile doesn't have) by rewriting the pointer math to load and store with a zero index; and to use post-increment addresses in the inner loops to improve scheduling.
* Define lll_futex_timed_wait_bitset for MIPS.Joseph Myers2012-11-052-0/+17
|
* Define lll_futex_timed_wait_bitset for ARM.Joseph Myers2012-11-052-1/+16
|
* Fix types of FE_DFL_ENV and FE_NOMASK_ENV (bug 14805).Joseph Myers2012-11-054-3/+15
|
* [BZ #157] Remove include/stub-tag.h for good.Thomas Schwinge2012-11-045-4/+11
|
* Make fma use of Dekker and Knuth algorithms use round-to-nearest (bug 14796).Joseph Myers2012-11-0316-7/+40
|
* Make fenv.h FE_* macros usable in #if (bug 3439).Joseph Myers2012-11-0316-133/+310
|
* tile: Account for new tests (missed test-double changes)Chris Metcalf2012-11-032-0/+20
|
* Regenerate all configure scripts.Thomas Schwinge2012-11-012-2/+4
|
* Convert alpha to use <bits/fcntl-linux.h>Andreas Jaeger2012-11-012-228/+19
|