aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-16manual/memory.texi: Document aligned_alloc.Will Newton
ChangeLog: 2013-12-16 Will Newton <will.newton@linaro.org> * manual/memory.texi (Malloc Examples): Mention aligned_alloc. (Aligned Memory Blocks): Add documentation for aligned_alloc and suggest it as an alternative to posix_memalign. (Hooks for Malloc): Document __memalign_hook is also called for aligned_alloc. (Summary of Malloc): Add summary for aligned alloc. Document __memalign_hook is also called for aligned_alloc.
2013-12-16manual/memory.texi: Bring aligned allocation docs up to date.Will Newton
The current documentation suggests using memalign and valloc which are now considered obsolete, so suggest using posix_memalign instead. Also document the possible error return and errno values for memalign and posix_memalign and improve documentation of __memalign_hook. ChangeLog: 2013-12-16 Will Newton <will.newton@linaro.org> * manual/memory.texi (Malloc Examples): Clarify default alignment documentation. Suggest posix_memalign rather than memalign or valloc. (Aligned Memory Blocks): Remove suggestion to use memalign or valloc. Remove obsolete comment about BSD. Document memalign errno values and mark the function obsolete. Document posix_memalign returned error codes. Mark valloc as obsolete. (Hooks for Malloc): __memalign_hook is also called for posix_memalign and valloc. (Summary of Malloc): Add posix_memalign to function summary. __memalign_hook is also called for posix_memalign and valloc.
2013-12-16Minor code cleanup in s_sin.cSiddhesh Poyarekar
- Remove redundant mynumber union definitions - Clean up a clumsy ternary operator - Rename TAYLOR_SINCOS to TAYLOR_SIN since we're only expanding the sin Taylor series in it.
2013-12-16Set AUTOCONF variable when maintainer-mode is not usedAllan McRae
Fixes build issue introduced in 8894bad3 when configure.ac is altered and maintainer-mode is not enabled.
2013-12-16Update file name in x86_64 ifunc listAllan McRae
File name update missed in commit 584b18eb.
2013-12-16Add --enable-maintainer-mode configure optionAllan McRae
Autoconf is tested for and run if needed only when --enable-maintainer-mode is used on configure. This results in the autom4te.cache directory only being written in the source directory during configure if automatic autoconf usage is requested. Fixes BZ #14120.
2013-12-16Add systemd unit file for nscdAllan McRae
Provide an example systemd unit and tmpfile for running nscd.
2013-12-14Add strstr with unaligned loads. Fixes bug 12100.Ondřej Bílka
A sse42 version of strstr used pcmpistr instruction which is quite ineffective. A faster way is look for pairs of characters which is uses sse2, is faster than pcmpistr and for real strings a pairs we look for are relatively rare. For linear time complexity we use buy or rent technique which switches to two-way algorithm when superlinear behaviour is detected.
2013-12-14Move sysdeps/sh/sh4/fpu/bits/fenv.h to sysdeps/sh/bits/.Kaz Kojima
2013-12-13PowerPC: Update NEWS with ppc64 STT_GNU_IFUNC supportAdhemerval Zanella
2013-12-13PowerPC: multiarch hypot/hypotf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch modf/modff for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch logb/logbl/logbf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch isinf/isinff for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch finite/finitef for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch llrint/lrint for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch copysign/copysignf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch trunc/truncf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch round/roundf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch floor/floorf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch ceil/ceilf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch llround/lround for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch isnan/isnanf for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: Adjust multiarch Implies for PowerPC64Adhemerval Zanella
This patch adds Implies files on multiarch folder for POWER chips so multirach is enabled when building with --with-cpu and powerN option.
2013-12-13PowerPC: Cleaning up uneeded sqrt routinesAdhemerval Zanella
For PPC64, all the wrappers at sysdeps are superfluous: they are basically the same implementation from math/w_sqrt.c with the '#ifdef _IEEE_LIBM'. And the power4 version just force the 'fsqrt' instruction utilization with an inline assembly, which is already handled by math_private.h __ieee754_sqrt implementation.
2013-12-13PowerPC: multiarch stpcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wordcopy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wcscpy for PowerPC64.Adhemerval Zanella
2013-12-13PowerPC: multiarch wcsrchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch wcschr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strchrnul for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strncmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strncasecmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strcasecmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strnlen for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch strlen for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch rawmemchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memrchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memchr for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch mempcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memset/bzero for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multirach memcmp for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: multiarch memcpy for PowerPC64Adhemerval Zanella
2013-12-13PowerPC: Adjust multiarch Implies for PowerPC64Adhemerval Zanella
This patch adds Implies files on multiarch folder for POWER chips so multirach is enabled when building with --with-cpu and powerN option.
2013-12-13Use $$ver instead of $ver.Kaz Kojima
2013-12-12Update NEWSToke Høiland-Jørgensen
2013-12-12Add entries for U00D8 and U00F8.Toke Høiland-Jørgensen
2013-12-12PowerPC: Add DSO and TAR fields to TLSAdhemerval Zanella