about summary refs log tree commit diff
path: root/ports
Commit message (Collapse)AuthorAgeFilesLines
...
* ARM: Macroize use of .cfi_sections directive.Roland McGrath2013-02-275-5/+16
|
* Add support for building as MIPS16 code.Maciej W. Rozycki2013-02-2762-47/+1041
|
* Add FUTEX_*_REQUEUE_PI support for Alpha.Richard Henderson2013-02-202-0/+35
|
* alpha: Include errno.h in sysdep.hRichard Henderson2013-02-202-0/+7
| | | | | Recent changes in malloc-sysdep.h exposed this error, the symptom being __set_errno was not defined early enough.
* Respect the user's namespace in installed header files.Thomas Schwinge2013-02-202-1/+4
| | | | Fixup for commit c7b275d6b3bceb6b400fa3044d13d1001bc605ca.
* Properly sort a libc.abilist file.Thomas Schwinge2013-02-202-11/+14
| | | | Inconsistency introduced in commit 84b3fd8407cc9a2e7f487b6247681bd8a78a4560.
* bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)).Thomas Schwinge2013-02-202-1/+4
|
* Add missing __attribute_used__.Thomas Schwinge2013-02-202-1/+5
| | | | | Generic IEEE 754 file has been changed in commit b575c52b86fe0c00adec925e356eb72cf95b23a7.
* Align to generic file.Thomas Schwinge2013-02-202-9/+14
|
* Add FUTEX_*_REQUEUE_PI support for MIPS.Joseph Myers2013-02-192-0/+40
|
* Add FUTEX_*_REQUEUE_PI support for ARM.Joseph Myers2013-02-182-0/+38
|
* Add __cxa_thread_atexit_impl to aarch64 abilistSiddhesh Poyarekar2013-02-182-0/+8
|
* C++11 thread_local destructors supportSiddhesh Poyarekar2013-02-1819-0/+81
| | | | | | | | | | | This feature is specifically for the C++ compiler to offload calling thread_local object destructors on thread program exit, to glibc. This is to overcome the possible complication of destructors of thread_local objects getting called after the DSO in which they're defined is unloaded by the dynamic linker. The DSO is marked as 'unloadable' if it has a constructed thread_local object and marked as 'unloadable' again when all the constructed thread_local objects defined in it are destroyed.
* Remove miscellaneous bounded-pointers relics in C code.Joseph Myers2013-02-152-2/+8
|
* hppa: Remove unused lll_unlock_wake_cb.Carlos O'Donell2013-02-143-14/+7
| | | | | | There hasn't been a use for lll_unlock_wake_cb since it was removed globally in 2007-05-29. This patch removes the function from hppa's lowlevellock.[ch] implementation.
* aarch64: Update libm-test-ulps.Marcus Shawcroft2013-02-142-0/+368
|
* Remove bp-sym.h and BP_SYM uses from C code.Joseph Myers2013-02-149-20/+35
|
* Remove __ptrvalue, __bounded and __unbounded.Joseph Myers2013-02-1316-20/+58
|
* Add CFI information for MIPS assembly sources.Joseph Myers2013-02-1120-34/+191
|
* m68k: update kernel-features.hAndreas Schwab2013-02-082-0/+29
|
* Remove CHECK_N and bp-checks.h.Joseph Myers2013-02-0814-40/+62
|
* BZ #15006: Updates NEWS and ChangeLog.Carlos O'Donell2013-02-081-0/+1
|
* ARM: Support loading unmarked objects from cache.Carlos O'Donell2013-02-083-2/+21
| | | | | | | | | | | | ARM now supports loading unmarked objects from the dynamic loader cache. Unmarked objects can be used with the hard-float or soft-float ABI. We must support loading unmarked objects during the transition period from a binutils that does not mark objects to one that does mark them with the correct ELF flags. Signed-off-by: Carlos O'Donell <carlos@redhat.com>
* Use ENTRY and END in more MIPS .S files.Joseph Myers2013-02-0815-49/+36
|
* Remove CHECK_1 and CHECK_1_NULL_OK.Joseph Myers2013-02-0811-17/+44
|
* MIPS: Correct formatting of syscall wrapper `asm' specifiers.Maciej W. Rozycki2013-02-054-120/+125
|
* MIPS: Respect the legacy syscall restart convention.Maciej W. Rozycki2013-02-054-87/+268
| | | | | | | | | | | | | | | That convention requires the instruction immediately preceding SYSCALL to initialize $v0 with the syscall number. Then if a restart triggers, $v0 will have been clobbered by the syscall interrupted, and needs to be reinititalized. The kernel will decrement the PC by 4 before switching back to the user mode so that $v0 has been reloaded before SYSCALL is executed again. This implies the place $v0 is loaded from must be preserved across a syscall, e.g. an immediate, static register, stack slot, etc. The restriction was lifted with Linux 2.6.36 kernel release and no special requirements are placed around the SYSCALL instruction anymore, however we still support older kernel binaries.
* Remove CHECK_STRING, CHECK_STRING_NULL_OK and __ubp_memchr.Joseph Myers2013-02-0412-21/+45
|
* Remove CHECK_SIGSET and CHECK_SIGSET_NULL_OK.Joseph Myers2013-01-313-5/+12
|
* Remove bp-semctl.h and CHECK_SEMCTL.Joseph Myers2013-01-314-9/+16
|
* MIPS: Correct NewABI syscall wrapper whitespace damage.Maciej W. Rozycki2013-01-293-164/+170
|
* 2013-01-25 Steve Ellcey <sellcey@mips.com>Steve Ellcey2013-01-252-23/+4
| | | | * sysdeps/mips/memmove.c: Remove.
* AArch64: Adding optimized strncmp implementation.Marcus Shawcroft2013-01-242-0/+208
|
* AArch64: Adding optimized strnlen implementation.Marcus Shawcroft2013-01-243-0/+182
|
* m68k: update libm test ULPsAndreas Schwab2013-01-202-0/+26
|
* m68k: add unwind tables to backtraceAndreas Schwab2013-01-202-0/+10
|
* Add backtrace for m68kAndreas Schwab2013-01-192-0/+161
|
* Add not-cancel.h for m68k/nptlAndreas Schwab2013-01-193-0/+7
|
* AArch64: Implement optimized strlen.Marcus Shawcroft2013-01-172-0/+121
|
* AArch64: Implement optimized strcmpMarcus Shawcroft2013-01-172-0/+159
|
* AArch64: Implement optimized bzero.Marcus Shawcroft2013-01-172-0/+31
|
* AArch64: Implement optimized memmove.Marcus Shawcroft2013-01-172-0/+316
|
* AArch64: Implement optimized memcpy.Marcus Shawcroft2013-01-172-0/+180
|
* AArch64: Implement optimized memset.Marcus Shawcroft2013-01-172-0/+233
|
* AArch64: Implement optimized memcmp.Marcus Shawcroft2013-01-173-0/+165
|
* AArch64: Tidyup whitespace.Marcus Shawcroft2013-01-172-11/+16
|
* Use __extension__ with long long in installed headers.Joseph Myers2013-01-109-21/+45
|
* tilegx: fix ldd to work with both tilegx64 and tilegx32Chris Metcalf2013-01-104-0/+15
| | | | | This uses the same ldd-rewrite.sed hook as other platforms, with the minor tweak that tilegx uses /lib (64-bit) and /lib32 (32-bit).
* Fix trailing blank.Steve Ellcey2013-01-081-1/+1
|
* 2013-01-08 Steve Ellcey <sellcey@mips.com>Steve Ellcey2013-01-082-65/+117
| | | | | * sysdeps/mips/memcpy.S: Change prefetch hint, reorder partial loads and stores, set and use MAX_PREFETCH_SIZE.