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
|
/*
* 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 2 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stddef.h>
#include <string.h>
#define ARCH_STRING_MEMCPY
#define ARCH_STRING_MEMMOVE
#define ARCH_STRING_MEMSET
#define ARCH_STRING_MEMCMP
#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)
: : "memory");
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)
: : "memory");
else {
dest += n - 1;
src += n - 1;
asm volatile("std; rep movsb; cld"
: "+D" (dest), "+S" (src), "+c" (n)
: : "memory");
}
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)
: "memory");
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"
: "+D" (s1), "+S" (s2), "+c" (n)
: : "memory");
c1 = *(((const unsigned char *)s1) - 1);
c2 = *(((const unsigned char *)s2) - 1);
return (int)c1 - (int)c2;
}
#endif /* ARCH_STRING_MEMCMP */
|