-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimized st{r,p}{,n}cpy for SSE2/SSSE3 on x86-32
- Loading branch information
H.J. Lu
authored and
Ulrich Drepper
committed
Jun 24, 2011
1 parent
07f494a
commit 0b1cbaa
Showing
18 changed files
with
6,585 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#define USE_AS_STPCPY | ||
#define STRCPY __stpcpy_sse2 | ||
#include "strcpy-sse2.S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#define USE_AS_STPCPY | ||
#define STRCPY __stpcpy_ssse3 | ||
#include "strcpy-ssse3.S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#define USE_AS_STPCPY | ||
#define STRCPY __stpcpy | ||
#include "strcpy.S" | ||
|
||
weak_alias (__stpcpy, stpcpy) | ||
libc_hidden_def (__stpcpy) | ||
libc_hidden_builtin_def (stpcpy) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define USE_AS_STPCPY | ||
#define USE_AS_STRNCPY | ||
#define STRCPY __stpncpy_sse2 | ||
#include "strcpy-sse2.S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#define USE_AS_STPCPY | ||
#define USE_AS_STRNCPY | ||
#define STRCPY __stpncpy_ssse3 | ||
#include "strcpy-ssse3.S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#define STRCPY __stpncpy | ||
#define USE_AS_STPCPY | ||
#define USE_AS_STRNCPY | ||
#include "strcpy.S" | ||
|
||
weak_alias (__stpncpy, stpncpy) |
Oops, something went wrong.