-
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.
Improved st{r,p}{,n}cpy for SSE2 and SSSE3 on x86-64
- Loading branch information
H.J. Lu
authored and
Ulrich Drepper
committed
Jun 24, 2011
1 parent
d5495a1
commit 8912479
Showing
12 changed files
with
5,508 additions
and
1,838 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_unaligned | ||
#include "strcpy-sse2-unaligned.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,4 @@ | ||
#define USE_AS_STPCPY | ||
#define USE_AS_STRNCPY | ||
#define STRCPY __stpncpy_sse2_unaligned | ||
#include "strcpy-sse2-unaligned.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" |
Oops, something went wrong.