1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Copyright (c) 2014 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <kern/param.h>
#include <kern/stddef.h>
#include <kern/string.h>
#ifdef ARCH_STRING_MEMCPY
void *
memcpy(void *dest, const void *src, size_t n)
{
void *orig_dest;
orig_dest = dest;
asm volatile("rep movsb" : "+D" (dest), "+S" (src), "+c" (n));
return orig_dest;
}
#endif /* ARCH_STRING_MEMCPY */
#ifdef ARCH_STRING_MEMMOVE
void *
memmove(void *dest, const void *src, size_t n)
{
void *orig_dest;
orig_dest = dest;
if (dest <= src)
asm volatile("rep movsb" : "+D" (dest), "+S" (src), "+c" (n));
else {
dest += n - 1;
src += n - 1;
asm volatile("std; rep movsb; cld" : "+D" (dest), "+S" (src), "+c" (n));
}
return orig_dest;
}
#endif /* ARCH_STRING_MEMMOVE */
#ifdef ARCH_STRING_MEMSET
void *
memset(void *s, int c, size_t n)
{
void *orig_s;
orig_s = s;
asm volatile("rep stosb" : "+D" (s), "+c" (n) : "a" (c));
return orig_s;
}
#endif /* ARCH_STRING_MEMSET */
#ifdef ARCH_STRING_MEMCMP
int
memcmp(const void *s1, const void *s2, size_t n)
{
unsigned char c1, c2;
if (n == 0)
return 0;
asm volatile("repe cmpsb\n" : "+D" (s1), "+S" (s2), "+c" (n));
c1 = *(((const unsigned char *)s1) - 1);
c2 = *(((const unsigned char *)s2) - 1);
return (int)c1 - (int)c2;
}
#endif /* ARCH_STRING_MEMCMP */
#ifdef ARCH_STRING_STRLEN
size_t
strlen(const char *s)
{
size_t n;
n = (size_t)-1;
asm volatile("repne scasb" : "+D" (s), "+c" (n) : "a" (0));
return ~n - 1;
}
#endif /* ARCH_STRING_STRLEN */
#ifdef ARCH_STRING_STRCPY
char *
strcpy(char *dest, const char *src)
{
char *orig_dest;
orig_dest = dest;
asm volatile("1:\n"
"lodsb\n"
"stosb\n"
"testb %%al, %%al\n"
"jnz 1b\n"
: "+D" (dest), "+S" (src) : : "al");
return orig_dest;
}
#endif /* ARCH_STRING_STRCPY */
#ifdef ARCH_STRING_STRCMP
int
strcmp(const char *s1, const char *s2)
{
unsigned char c1, c2;
asm volatile("1:\n"
"lodsb\n"
"scasb\n"
"jne 1f\n"
"testb %%al, %%al\n"
"jnz 1b\n"
"1:\n"
: "+D" (s1), "+S" (s2) : : "al");
c1 = *(((const unsigned char *)s1) - 1);
c2 = *(((const unsigned char *)s2) - 1);
return (int)c1 - (int)c2;
}
#endif /* ARCH_STRING_STRCMP */
|