5113f6f70
김현기
kernel add
|
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
|
#include <linux/string.h>
#include <linux/module.h>
#undef memcpy
#undef memset
__visible void *memcpy(void *to, const void *from, size_t n)
{
#ifdef CONFIG_X86_USE_3DNOW
return __memcpy3d(to, from, n);
#else
return __memcpy(to, from, n);
#endif
}
EXPORT_SYMBOL(memcpy);
__visible void *memset(void *s, int c, size_t count)
{
return __memset(s, c, count);
}
EXPORT_SYMBOL(memset);
__visible void *memmove(void *dest, const void *src, size_t n)
{
int d0,d1,d2,d3,d4,d5;
char *ret = dest;
__asm__ __volatile__(
/* Handle more 16 bytes in loop */
"cmp $0x10, %0
\t"
"jb 1f
\t"
/* Decide forward/backward copy mode */
"cmp %2, %1
\t"
"jb 2f
\t"
/*
* movs instruction have many startup latency
* so we handle small size by general register.
*/
"cmp $680, %0
\t"
"jb 3f
\t"
/*
* movs instruction is only good for aligned case.
*/
"mov %1, %3
\t"
"xor %2, %3
\t"
"and $0xff, %3
\t"
"jz 4f
\t"
"3:
\t"
"sub $0x10, %0
\t"
/*
* We gobble 16 bytes forward in each loop.
*/
"3:
\t"
"sub $0x10, %0
\t"
"mov 0*4(%1), %3
\t"
"mov 1*4(%1), %4
\t"
"mov %3, 0*4(%2)
\t"
"mov %4, 1*4(%2)
\t"
"mov 2*4(%1), %3
\t"
"mov 3*4(%1), %4
\t"
"mov %3, 2*4(%2)
\t"
"mov %4, 3*4(%2)
\t"
"lea 0x10(%1), %1
\t"
"lea 0x10(%2), %2
\t"
"jae 3b
\t"
"add $0x10, %0
\t"
"jmp 1f
\t"
/*
* Handle data forward by movs.
*/
".p2align 4
\t"
"4:
\t"
"mov -4(%1, %0), %3
\t"
"lea -4(%2, %0), %4
\t"
"shr $2, %0
\t"
"rep movsl
\t"
"mov %3, (%4)
\t"
"jmp 11f
\t"
/*
* Handle data backward by movs.
*/
".p2align 4
\t"
"6:
\t"
"mov (%1), %3
\t"
"mov %2, %4
\t"
"lea -4(%1, %0), %1
\t"
"lea -4(%2, %0), %2
\t"
"shr $2, %0
\t"
"std
\t"
"rep movsl
\t"
"mov %3,(%4)
\t"
"cld
\t"
"jmp 11f
\t"
/*
* Start to prepare for backward copy.
*/
".p2align 4
\t"
"2:
\t"
"cmp $680, %0
\t"
"jb 5f
\t"
"mov %1, %3
\t"
"xor %2, %3
\t"
"and $0xff, %3
\t"
"jz 6b
\t"
/*
* Calculate copy position to tail.
*/
"5:
\t"
"add %0, %1
\t"
"add %0, %2
\t"
"sub $0x10, %0
\t"
/*
* We gobble 16 bytes backward in each loop.
*/
"7:
\t"
"sub $0x10, %0
\t"
"mov -1*4(%1), %3
\t"
"mov -2*4(%1), %4
\t"
"mov %3, -1*4(%2)
\t"
"mov %4, -2*4(%2)
\t"
"mov -3*4(%1), %3
\t"
"mov -4*4(%1), %4
\t"
"mov %3, -3*4(%2)
\t"
"mov %4, -4*4(%2)
\t"
"lea -0x10(%1), %1
\t"
"lea -0x10(%2), %2
\t"
"jae 7b
\t"
/*
* Calculate copy position to head.
*/
"add $0x10, %0
\t"
"sub %0, %1
\t"
"sub %0, %2
\t"
/*
* Move data from 8 bytes to 15 bytes.
*/
".p2align 4
\t"
"1:
\t"
"cmp $8, %0
\t"
"jb 8f
\t"
"mov 0*4(%1), %3
\t"
"mov 1*4(%1), %4
\t"
"mov -2*4(%1, %0), %5
\t"
"mov -1*4(%1, %0), %1
\t"
"mov %3, 0*4(%2)
\t"
"mov %4, 1*4(%2)
\t"
"mov %5, -2*4(%2, %0)
\t"
"mov %1, -1*4(%2, %0)
\t"
"jmp 11f
\t"
/*
* Move data from 4 bytes to 7 bytes.
*/
".p2align 4
\t"
"8:
\t"
"cmp $4, %0
\t"
"jb 9f
\t"
"mov 0*4(%1), %3
\t"
"mov -1*4(%1, %0), %4
\t"
"mov %3, 0*4(%2)
\t"
"mov %4, -1*4(%2, %0)
\t"
"jmp 11f
\t"
/*
* Move data from 2 bytes to 3 bytes.
*/
".p2align 4
\t"
"9:
\t"
"cmp $2, %0
\t"
"jb 10f
\t"
"movw 0*2(%1), %%dx
\t"
"movw -1*2(%1, %0), %%bx
\t"
"movw %%dx, 0*2(%2)
\t"
"movw %%bx, -1*2(%2, %0)
\t"
"jmp 11f
\t"
/*
* Move data for 1 byte.
*/
".p2align 4
\t"
"10:
\t"
"cmp $1, %0
\t"
"jb 11f
\t"
"movb (%1), %%cl
\t"
"movb %%cl, (%2)
\t"
".p2align 4
\t"
"11:"
: "=&c" (d0), "=&S" (d1), "=&D" (d2),
"=r" (d3),"=r" (d4), "=r"(d5)
:"0" (n),
"1" (src),
"2" (dest)
:"memory");
return ret;
}
EXPORT_SYMBOL(memmove);
|