about summary refs log tree commit diff
path: root/sysdeps/i386/i686
Commit message (Collapse)AuthorAgeFilesLines
* Consistently use macros for x86 PIC thunks.Joseph Myers2012-02-0341-418/+93
|
* Fix wrong copying processing for last bytes in x86-32 wcscpyLiubov Dmitrieva2011-12-231-41/+21
| | | | | | | | | | | Wrong copy algorithm for last bytes, not thread safety. In some particular cases it uses the destination memory beyond the string end for 16-byte load, puts changes into that part that is relevant to destination string and writes whole 16-byte chunk into memory. I have a test case where the memory beyond the string end contains malloc/free data, that appear corrupted in case free() updates it in between the 16-byte read and 16-byte write.
* Fix overrun in strcpy destination buffer in x86-32/SSSE3 versionLiubov Dmitrieva2011-12-221-745/+516
|
* Optimized wcschr and wcscpy for x86-64 and x86-32Ulrich Drepper2011-12-1710-1/+1370
|
* Fix SSSE3/SSE4.2 strcasecmp[_l]/strncasecmp[_l] for non-PIC and ↵Andreas Schwab2011-11-162-12/+68
| | | | -mno-tls-direct-seg-refs
* Add SSE4.2 support for strcasecmp and strncasecmp on x86-32Ulrich Drepper2011-11-148-89/+470
|
* SSSE3 optimized strcasecmp and strncasecmp for x86-32Ulrich Drepper2011-11-1314-266/+1058
|
* Fix warnings in fallback C code of x86-32 wide memory functionsUlrich Drepper2011-11-123-0/+12
|
* Remove unnecessary code from x86-32 SSSE3 strncmpUlrich Drepper2011-11-081-3/+1
|
* Fix some warning nitsAndreas Schwab2011-10-282-7/+5
|
* Move wide char related routines to wcsmbs subdirAndreas Schwab2011-10-281-3/+7
|
* Fix strnlen changeUlrich Drepper2011-10-231-0/+1
|
* Add optimized wcslen and strnlen for x86-32Liubov Dmitrieva2011-10-238-40/+723
|
* Improve x86-32 SSSE3 memcpyMichael Zolotukhin2011-10-231-219/+708
|
* Fix WSUlrich Drepper2011-10-231-5/+5
|
* Fix signedness in wcscmp comparisonLiubov Dmitrieva2011-10-231-71/+87
|
* No need for boundary case handling in x86-32 __ieee_logUlrich Drepper2011-10-151-52/+1
|
* No need for boundary case handling in x86-32 __ieee_logfUlrich Drepper2011-10-151-52/+1
|
* Optimized memcmp and wmemcmp for x86-64 and x86-32Liubov Dmitrieva2011-10-157-282/+754
|
* Optimize x86-32 logUlrich Drepper2011-10-143-0/+242
|
* Fix whitespacesUlrich Drepper2011-10-122-10/+10
|
* Optimized memchr, memrchr, rawmemchr for x86-32Liubov Dmitrieva2011-10-1211-1/+2639
|
* Fix up x86-32 section names for Atom codeLiubov Dmitrieva2011-09-076-9/+6
|
* Move Atom-optimized code out of the way and togetherUlrich Drepper2011-09-063-4/+4
|
* Fix whitespacesUlrich Drepper2011-09-052-2/+0
|
* Optimized strchr and strrchr with SSE2 on x86-32Liubov Dmitrieva2011-09-057-1/+1656
|
* Fix whitespacesUlrich Drepper2011-09-053-4/+1
|
* Add x86-32 optimized wcscmpUlrich Drepper2011-09-054-1/+1075
|
* Fix spurious nop at start of __strspn_ia32Andreas Schwab2011-08-231-2/+2
|
* Fix whitespacesUlrich Drepper2011-08-042-2/+0
|
* Improve x86-32 strcat functions with SSE2/SSSE3Liubov Dmitrieva2011-08-0410-317/+2314
|
* Quash a warning in strstr-c.c built for static.Roland McGrath2011-07-141-0/+2
|
* Fix unwind info in 32bit SSE2/SSSE3 strncpyH.J. Lu2011-06-252-1/+5
|
* Optimized st{r,p}{,n}cpy for SSE2/SSSE3 on x86-32H.J. Lu2011-06-2414-1/+6542
|
* Fix static linking with checking x86/x86-64 memcpy.Mike Frysinger2011-04-172-2/+2
|
* Undo accidental checkin.Ulrich Drepper2010-12-141-25/+30
|
* Fix -D_FORTIFY_SOURCE memmove and bcopJakub Jelinek2010-12-091-30/+25
|
* Remove dead code from x86-32 SSSE3 strncmp.H.J. Lu2010-12-011-8/+1
|
* 32bit memset-sse2.S fails with uneven cache sizeUlrich Drepper2010-11-051-0/+4
| | | | | | | | | 32bit memset-sse2.S assumes cache size is multiple of 128 bytes. If it isn't true, memset-sse2.S will fail. For example, a processor can have 24576 KB L3 cache and 20 cores. That is 2516582 byte per core. Half of it is 1258291, which isn't helpful for vector instructions. This patch rounds cache sizes to multiple of 256 bytes and adds "raw" cache sizes.
* Implement accurate fma.Jakub Jelinek2010-10-131-1/+1
|
* Correct implementation of fmaf.Jakub Jelinek2010-10-111-1/+1
|
* Add missing i686/multiarch/Makefile bit for shared x86_64 code.Roland McGrath2010-08-271-0/+1
|
* Fixup x86 after x86-64 varshift change.Ulrich Drepper2010-08-272-1/+1
|
* Unroll 32bit SSE strlen and handle slow bsfH.J. Lu2010-08-254-80/+480
|
* Clean up SSE variable shiftsRichard Henderson2010-08-243-1/+3
|
* Fix ifunc thunk for strspn on x86 in static libcAndreas Schwab2010-08-191-2/+2
|
* Add missing file from last commit.Andreas Schwab2010-07-211-0/+2
|
* Add strcasestr-nonascii to i386 buildAndreas Schwab2010-07-211-1/+2
|
* Fix bugs in x86-32 strcmp-sse4.S and strcmp-ssse3.SH.J. Lu2010-04-152-7/+8
|
* Add x86-32 FMA supportH.J. Lu2010-04-146-0/+143
|