I am reading the source codes of glibc2.9. When I read the codes of func strcpy, the performance is not good as I expect.
The following are the codes of strcpy in glibc2.9:
char * strcpy (char *dest, const char* src)
{
reg_char c;
char *__unbounded s = (char *__unbounded) CHECK_BOUNDS_LOW (src);
const ptrdiff_t off = CHECK_BOUNDS_LOW (dest) - s - 1;
size_t n;
do {
c = *s++;
s[off] = c;
}
while (c != '\0');
n = s - src;
(void) CHECK_BOUNDS_HIGH (src + n);
(void) CHECK_BOUNDS_HIGH (dest + n);
return dest;
}
Because I don't know the reason of using the offset, so I did some performance tests with comparing with the following codes.
char* my_strcpy(char *dest, const char *src)
{
char *d = dest;
register char c;
do {
c = *src++;
*d++ = c;
} while ('\0' != c);
return dest;
}
As a result, the performance of strcpy is worse during my tests. I have removed the codes about bound pointer in func strcpy.
I am confusing why the strcpy uses the offset?
The following is the introduction about the tests. 1. platform: x86(Intel(R) Pentium(R) 4), gcc version 4.4.2 2. compile flag: No any compile flag, because I don't want compiler optimize the codes; The command is "gcc test.c".
The test codes are following:
#include <stdio.h>
#include <stdlib.h>
char* my_strcpy1(char *dest, const char *src)
{
char *d = dest;
register char c;
do {
c = *src++;
*d++ = c;
} while ('\0' != c);
return dest;
}
/* Copy SRC to DEST. */
char *
my_strcpy2 (dest, src)
char *dest;
const char *src;
{
register char c;
char * s = (char *)src;
const int off = dest - s - 1;
do
{
c = *s++;
s[off] = c;
}
while (c != '\0');
return dest;
}
int main()
{
const char str1[] = "test1";
const char str2[] = "test2";
char buf[100];
int i;
for (i = 0; i < 10000000; ++i) {
my_strcpy1(buf, str1);
my_strcpy1(buf, str2);
}
return 0;
}
When use the my_strcpy1, the outputs are following:
[root@Lnx99 test]#time ./a.out
real 0m0.519s
user 0m0.517s
sys 0m0.001s
[root@Lnx99 test]#time ./a.out
real 0m0.520s
user 0m0.520s
sys 0m0.001s
[root@Lnx99 test]#time ./a.out
real 0m0.519s
user 0m0.516s
sys 0m0.002s
When uses my_strcpy2, the output is following
[root@Lnx99 test]#time ./a.out
real 0m0.647s
user 0m0.647s
sys 0m0.000s
[root@Lnx99 test]#time ./a.out
real 0m0.642s
user 0m0.638s
sys 0m0.001s
[root@Lnx99 test]#time ./a.out
real 0m0.639s
user 0m0.638s
sys 0m0.002s
I know it is not very accurate with command "time". But I still could get the answer from the user time.
Update:
To remove the cost used to calculate the offset, I remove the codes and add a global variable.
#include <stdio.h>
#include <stdlib.h>
char* my_strcpy1(char *dest, const char *src)
{
char *d = dest;
register char c;
do {
c = *src++;
*d++ = c;
} while ('\0' != c);
return dest;
}
int off;
/* Copy SRC to DEST. */
char *
my_strcpy2 (dest, src)
char *dest;
const char *src;
{
register char c;
char * s = (char *)src;
do
{
c = *s++;
s[off] = c;
}
while (c != '\0');
return dest;
}
int main()
{
const char str1[] = "test1test1test1test1test1test1test1test1";
char buf[100];
off = buf-str1-1;
int i;
for (i = 0; i < 10000000; ++i) {
my_strcpy2(buf, str1);
}
return 0;
}
But the performance of my_strcpy2 still is worse than my_strcpy1. Then I checked the assemble codes, failed to get the answer too.
I also enlarged the size of string, the performance of my_strcpy1 is more better than my_strcpy2

strcpy, your platform almost certainly has an assembly version which glibc uses instead. – Dietrich Epp Sep 8 '11 at 7:25CHECK_BOUNDS_HIGHmacros look like extra safety checks for debugging version of the code (when "bounded pointer" support is enabled). Testing the performance with these debug macros enabled makes no sense. – AndreyT Sep 8 '11 at 7:34