summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* docs/probe_math_exception.c:Denis Vlasenko2009-02-115-29/+83
| | | | | | | | | | | | update example libc/sysdeps/linux/i386/bits/mathinline.h: improve __finite() macro, add __finitef macro (why they aren't always macros? why aren't they arch independent?) libm/math_private.h: much better comments on math_opt_barrier() and math_force_eval() libm/s_finite[f].c: improve out-of-line __finite[f]() too (one byte less, yay...)
* add comment why do we need _ISbit() macroDenis Vlasenko2009-02-111-0/+1
|
* Re-add _ISbit macro required to build libstdc++ from gcc toolchain.Carmelo Amoroso2009-02-101-12/+18
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* ldouble_wrappers.c: add long and long long optimized wrappersDenis Vlasenko2009-02-092-240/+113
| | | | | | | | | | float_wrappers.c: add xxxWRAPPER1(func) macros. no code changes, but makes this file much shorter. text data bss dec hex filename - 42504 188 4 42696 a6c8 lib/libm-0.9.30-svn.so + 42488 188 4 42680 a6b8 lib/libm-0.9.30-svn.so
* reinstate bits/uClibc_arch_features.h in installed headers,Denis Vlasenko2009-02-091-1/+2
| | | | | my cross-compile toolchain based on gcc 4.3.1 broke without it.
* Hand-optimize wrappers on i386:Denis Vlasenko2009-02-091-156/+104
| | | | | | | | | | | | | | | | | | | -83 ec 10 sub $0x10,%esp -db 6c 24 14 fldt 0x14(%esp) -dd 5c 24 08 fstpl 0x8(%esp) -dd 44 24 08 fldl 0x8(%esp) -dd 1c 24 fstpl (%esp) -e8 fc ff ff ff call __GI_trunc -83 c4 10 add $0x10,%esp +db 6c 24 04 fldt 0x4(%esp) +dd 5c 24 04 fstpl 0x4(%esp) +e9 fc ff ff ff jmp __GI_trunc c3 ret text data bss dec hex filename - 42749 176 4 42929 a7b1 lib/libm-0.9.30-svn.so + 42085 176 4 42265 a519 lib/libm-0.9.30-svn.so
* ldouble_wrappers.c: fix __signbitl, it was calling itself by mistake.Denis Vlasenko2009-02-092-64/+7
| | | | | | remove wrong casts to long double of long return values. remove lots of empty lines.
* Add strverscmp() and versionsort[64]().Denis Vlasenko2009-02-086-4/+170
| | | | | By Hai Zaar (haizaar AT codefidence.com)
* nextafterf: trying to correct FP exception handlingDenis Vlasenko2009-02-083-11/+100
|
* fix nextafterf. by Jie Zhang (jie.zhang AT analog.com)Denis Vlasenko2009-02-063-11/+106
|
* libm: add scalbf, gammaf, significandf wrappers.Denis Vlasenko2009-02-053-3/+22
| | | | | | This makes in possible to enable test/math (not it compiles, but has lots of test failures).
* - fix install_headers on hosts where ld does not support gnu hash-style butBernhard Reutner-Fischer2009-02-031-0/+2
| | | | uClibc is configured to use it.
* libm/ldouble_wrappers.c: add libm_hidden_def's to fix testsuite buildDenis Vlasenko2009-02-024-2/+8
| | | | | | | test/Rules.mak: don't pass target options to host build test/math/basic-test.c: fix test build error patching file test/unistd/errno.c: fix test build warning
* Fix tls testcases to not use 'asm' keyword due to new CFLAGS -fno-asm.Carmelo Amoroso2009-01-298-129/+129
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Minor changes to silent compiler warning due to sigdness.Carmelo Amoroso2009-01-292-5/+5
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Synch build system with trunk.Carmelo Amoroso2009-01-295-51/+89
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* fix ppoll. we forgot to pass 5th parameter to the syscallDenis Vlasenko2009-01-281-14/+17
|
* Do not install .regex.ChangeLog.14 any more (removed) for testsCarmelo Amoroso2009-01-281-1/+1
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix filterout directive.Carmelo Amoroso2009-01-281-1/+1
|
* Added sysdep.h and sysdep-cancel.h for linuxthreads ARMCarmelo Amoroso2009-01-282-0/+145
| | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
* Make clock_getcpuclockid() and clock_nanosleep() visible when Carmelo Amoroso2009-01-281-6/+5
| | | | | | | NPTL is enabled, and we have selected __UCLIBC_HAS_ADVANCED_REALTIME__ Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fixed NPTL tests build and cleanup:Carmelo Amoroso2009-01-285-6/+7
| | | | | | | | | | - tst-mqueue6.c: remove cast to undefined type - tst-timer4.c: remove cast to undefined type - tst-mqueue1.c: avoid compiler warning due to different signedness - tst-cancel7.c: comment out unsed code to silent compiler warning Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Remove check for the relocation type check in the resolver,Carmelo Amoroso2009-01-2813-91/+0
| | | | | | | from all archs. Signed-off-by: Jiri Olsa <olsajiri@gmail.com>
* Must include tls.h before link.h to have TLS related field available in ↵Carmelo Amoroso2009-01-283-3/+3
| | | | | | | | | | | struct link_map. This change is now required after recent clean-up of installed headers. Likely we were including tls.h indirectly. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Follow naming convention for tst-regex2 input file. All othersCarmelo Amoroso2009-01-282-1/+1
| | | | | | | are .dat suffix. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix res_init.c build when __UCLIBC_HAS_COMPAT_RES_STATE__Carmelo Amoroso2009-01-261-1/+3
| | | | | | | is not enabled by properly guarding optional fields assignment. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Synch with trunk: miscellaneous changes, mostly cleanup,Carmelo Amoroso2009-01-2225-308/+388
| | | | | | | code styling, comments. No object-code changes. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Signal handling rework: two missing filesCarmelo Amoroso2009-01-222-149/+93
|
* Synch whole signal handling rework with trunk. Tested on nptl-sh4.Carmelo Amoroso2009-01-2216-353/+187
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix build problem. Revert commit 24521. Please do not changeCarmelo Amoroso2009-01-221-1/+0
| | | | | | | again if cannot be tested with TLS. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* res_state has _vcsock field only if __UCLIBC_HAS_EXTRA_COMPAT_RES_STATE__Carmelo Amoroso2009-01-221-0/+2
| | | | | | | is enabled. FIx build problem. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* - pull r24946 from trunk (remove unavailable functionality; psm)Bernhard Reutner-Fischer2009-01-216-11/+37
|
* ldso: performs bootstrap relocations only if required by the arch.Carmelo Amoroso2009-01-2110-31/+69
| | | | | | | | It is controlled by ARCH_NEEDS_BOOTSTRAP_RELOCS macro. Signed-off-by: Jirka <olsajiri@gmail.com> Acked-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* *: remove __UCLIBC_CURLOCALE_DATA, __UCLIBC_CURLOCALE_DATA.xDenis Vlasenko2009-01-2112-130/+115
| | | | | | | | | | | | | | | | | | | is always equivalent to __UCLIBC_CURLOCALE->x. remove typedef __uclibc_locale_t, it used only in a few places, it is lees confusing to use struct __uclibc_locale_struct everywhere. xlocale.h: hide __global_locale back under _LIBC, bug 53 is wrong in claiming it should be exported. Also hide under _LIBC: extern __locale_t __curlocale_var; extern __locale_t __curlocale(void); extern __locale_t __curlocale_set(__locale_t newloc); # define __UCLIBC_CURLOCALE # define __XL_NPP(N) # define __LOCALE_PARAM # define __LOCALE_ARG # define __LOCALE_PTR
* ldouble_wrappers.c: remove erroneous libm_hidden_def'sDenis Vlasenko2009-01-201-5/+0
|
* extra/scripts/relative_path.sh: fix itDenis Vlasenko2009-01-191-1/+4
|
* Make __global_locale visible in headersDenis Vlasenko2009-01-181-1/+2
|
* - pull 24836:24838 from trunk (2 of psm's small fixes)Bernhard Reutner-Fischer2009-01-142-3/+4
|
* - pull r24834 from trunkBernhard Reutner-Fischer2009-01-142-13/+9
|
* libm_sh: fix libm build for shCarmelo Amoroso2009-01-144-7/+5
| | | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* libm_sh: Re-added sh specific files erroneously removed recently,Carmelo Amoroso2009-01-143-0/+75
| | | | | | | and moved under a better folder. SIgned-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* ldso: do not comment out unused variables, just delete it.Carmelo Amoroso2009-01-121-1/+0
| | | | | SIgned-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* - pull r24799 from trunkBernhard Reutner-Fischer2009-01-122-1/+11
|
* - pull r24786 from trunkBernhard Reutner-Fischer2009-01-121-2/+2
|
* utils/Makefile.in: de-obfuscate it a bitDenis Vlasenko2009-01-112-19/+34
| | | | | Rules.mak: use -Os, not -O2
* replace yet another _dl_malloc + _dl_memset with _dl_zallocDenis Vlasenko2009-01-112-4/+1
|
* simple optimizations and style fixes in dynamic loadingDenis Vlasenko2009-01-1010-270/+271
| | | | | | | | | | | text data bss dec hex filename - 16709 240 92 17041 4291 lib/ld-uClibc.so + 16634 236 92 16962 4242 lib/ld-uClibc.so - 4602 344 4 4950 1356 lib/libdl-0.9.30-svn.so + 4571 328 4 4903 1327 lib/libdl-0.9.30-svn.so - 4602 344 4 4950 1356 lib/libdl.so + 4571 328 4 4903 1327 lib/libdl.so
* ldso/ldso/dl-startup.c: make _dl_elf_main static; remove one dead variable.Denis Vlasenko2009-01-0414-43/+23
| | | | | | | | | | ldso/ldso/avr32/dl-startup.h: remove superfluous definition of START() macro. ldso/ldso/*/dl-startup.h: fix a typo in comment text data bss dec hex filename - 16752 244 92 17088 42c0 lib/ld-uClibc.so + 16709 240 92 17041 4291 lib/ld-uClibc.so
* forgot to remove one #endif...Denis Vlasenko2009-01-041-1/+0
|
* Get rid of the following annoying warnings on ppc:Denis Vlasenko2009-01-031-17/+18
| | | | | | warning: nested extern declaration of '__illegally_sized_syscall_argN' From Stefan Assmann (sassmann AT suse.de)