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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
|
/* strcpy with AVX2
Copyright (C) 2011-2024 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <isa-level.h>
#if ISA_SHOULD_BUILD (3)
# include <sysdep.h>
# ifndef VEC_SIZE
# include "x86-avx-vecs.h"
# endif
# ifndef STRCPY
# define STRCPY __strcpy_avx2
# endif
/* Use movsb in page cross case to save code size. */
# define USE_MOVSB_IN_PAGE_CROSS 1
# ifdef USE_AS_WCSCPY
# define VPCMPEQ vpcmpeqd
# define VPMIN vpminud
# define CHAR_SIZE 4
# else
# define VPCMPEQ vpcmpeqb
# define VPMIN vpminub
# define CHAR_SIZE 1
# endif
# define PAGE_SIZE 4096
# ifdef USE_AS_STPCPY
# define END_REG rax
# else
# define END_REG rdi, %rdx
# endif
# ifdef USE_AS_STRCAT
# define PAGE_ALIGN_REG ecx
# else
# define PAGE_ALIGN_REG eax
# endif
# define VZERO VMM(7)
# define VZERO_128 VMM_128(7)
.section SECTION(.text), "ax", @progbits
ENTRY(STRCPY)
vpxor %VZERO_128, %VZERO_128, %VZERO_128
# ifdef USE_AS_STRCAT
movq %rdi, %rax
# include "strcat-strlen-avx2.h.S"
# endif
movl %esi, %PAGE_ALIGN_REG
andl $(PAGE_SIZE - 1), %PAGE_ALIGN_REG
cmpl $(PAGE_SIZE - VEC_SIZE), %PAGE_ALIGN_REG
ja L(page_cross)
L(page_cross_continue):
# if !defined USE_AS_STPCPY && !defined USE_AS_STRCAT
movq %rdi, %rax
# endif
VMOVU (%rsi), %VMM(0)
VPCMPEQ %VMM(0), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jz L(more_1x_vec)
/* No longer need ymm registers so just vzeroupper so it doesn't
need to be duplicated at each return statement. */
COND_VZEROUPPER
xorl %edx, %edx
bsfl %ecx, %edx
# ifdef USE_AS_STPCPY
leaq (%rdi, %rdx), %rax
# endif
/* Use mask bits in rcx to detect which copy we need. If the low
mask is zero then there must be a bit set in the upper half.
I.e if ecx != 0 and cx == 0, then match must be upper 16
bits so we use L(copy_16_31). */
testw %cx, %cx
jz L(copy_16_31)
testb %cl, %cl
jz L(copy_8_15)
# ifdef USE_AS_WCSCPY
vmovd %xmm0, (%rdi)
movl $0, (%END_REG)
ret
# else
testb $0x7, %cl
jz L(copy_4_7)
testl %edx, %edx
jz L(set_null_term)
vmovd %xmm0, %ecx
movw %cx, (%rdi)
.p2align 4,, 2
L(set_null_term):
movb $0, (%END_REG)
ret
.p2align 4,, 12
L(copy_4_7):
movl -3(%rsi, %rdx), %ecx
vmovd %xmm0, (%rdi)
movl %ecx, -3(%END_REG)
ret
# endif
.p2align 4,, 10
L(copy_16_31):
VMOVU -(16 - CHAR_SIZE)(%rsi, %rdx), %xmm1
VMOVU %xmm0, (%rdi)
VMOVU %xmm1, -(16 - CHAR_SIZE)(%END_REG)
ret
.p2align 4,, 10
L(copy_8_15):
# ifdef USE_AS_WCSCPY
movl -(8 - CHAR_SIZE)(%rsi, %rdx), %ecx
# else
movq -(8 - CHAR_SIZE)(%rsi, %rdx), %rcx
# endif
vmovq %xmm0, (%rdi)
movq %rcx, -(8 - CHAR_SIZE)(%END_REG)
ret
.p2align 4,, 8
L(more_1x_vec):
# if defined USE_AS_STPCPY || defined USE_AS_STRCAT
VMOVU %VMM(0), (%rdi)
# endif
subq %rsi, %rdi
orq $(VEC_SIZE - 1), %rsi
addq %rsi, %rdi
VMOVA 1(%rsi), %VMM(1)
/* Try and order stores after as many loads as is reasonable to
avoid potential false dependencies. */
# if !defined USE_AS_STPCPY && !defined USE_AS_STRCAT
VMOVU %VMM(0), (%rax)
# endif
VPCMPEQ %VMM(1), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x1)
VMOVA (VEC_SIZE + 1)(%rsi), %VMM(2)
VMOVU %VMM(1), 1(%rdi)
VPCMPEQ %VMM(2), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x2)
VMOVA (VEC_SIZE * 2 + 1)(%rsi), %VMM(3)
VMOVU %VMM(2), (VEC_SIZE + 1)(%rdi)
VPCMPEQ %VMM(3), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x3)
VMOVA (VEC_SIZE * 3 + 1)(%rsi), %VMM(4)
VMOVU %VMM(3), (VEC_SIZE * 2 + 1)(%rdi)
VPCMPEQ %VMM(4), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %edx
testl %edx, %edx
jnz L(ret_vec_x4)
VMOVU %VMM(4), (VEC_SIZE * 3 + 1)(%rdi)
/* Subtract rsi from rdi before aligning. Adding back rsi will
get proper rdi (dst) for new src. */
subq %rsi, %rdi
incq %rsi
orq $(VEC_SIZE * 4 - 1), %rsi
/* Do first half of loop ahead of time so loop can just start by
storing. */
VMOVA (VEC_SIZE * 0 + 1)(%rsi), %VMM(0)
VMOVA (VEC_SIZE * 1 + 1)(%rsi), %VMM(1)
VMOVA (VEC_SIZE * 2 + 1)(%rsi), %VMM(2)
VMOVA (VEC_SIZE * 3 + 1)(%rsi), %VMM(3)
VPMIN %VMM(0), %VMM(1), %VMM(4)
VPMIN %VMM(2), %VMM(3), %VMM(6)
VPMIN %VMM(4), %VMM(6), %VMM(6)
VPCMPEQ %VMM(6), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %edx
addq %rsi, %rdi
testl %edx, %edx
jnz L(loop_4x_done)
.p2align 4,, 11
L(loop_4x_vec):
VMOVU %VMM(0), (VEC_SIZE * 0 + 1)(%rdi)
VMOVU %VMM(1), (VEC_SIZE * 1 + 1)(%rdi)
subq $(VEC_SIZE * -4), %rsi
VMOVU %VMM(2), (VEC_SIZE * 2 + 1)(%rdi)
VMOVU %VMM(3), (VEC_SIZE * 3 + 1)(%rdi)
VMOVA (VEC_SIZE * 0 + 1)(%rsi), %VMM(0)
VMOVA (VEC_SIZE * 1 + 1)(%rsi), %VMM(1)
VMOVA (VEC_SIZE * 2 + 1)(%rsi), %VMM(2)
VMOVA (VEC_SIZE * 3 + 1)(%rsi), %VMM(3)
VPMIN %VMM(0), %VMM(1), %VMM(4)
VPMIN %VMM(2), %VMM(3), %VMM(6)
VPMIN %VMM(4), %VMM(6), %VMM(6)
VPCMPEQ %VMM(6), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %edx
subq $(VEC_SIZE * -4), %rdi
testl %edx, %edx
jz L(loop_4x_vec)
L(loop_4x_done):
VPCMPEQ %VMM(0), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x1)
VMOVU %VMM(0), (VEC_SIZE * 0 + 1)(%rdi)
VPCMPEQ %VMM(1), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x2)
VMOVU %VMM(1), (VEC_SIZE * 1 + 1)(%rdi)
VPCMPEQ %VMM(2), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
testl %ecx, %ecx
jnz L(ret_vec_x3)
VMOVU %VMM(2), (VEC_SIZE * 2 + 1)(%rdi)
L(ret_vec_x4):
bsfl %edx, %edx
VMOVU ((VEC_SIZE * 3 + 1)-(VEC_SIZE - CHAR_SIZE))(%rsi, %rdx), %VMM(1)
VMOVU %VMM(1), ((VEC_SIZE * 3 + 1)-(VEC_SIZE - CHAR_SIZE))(%rdi, %rdx)
# ifdef USE_AS_STPCPY
leaq (VEC_SIZE * 3 + 1)(%rdx, %rdi), %rax
# endif
L(return_end):
VZEROUPPER_RETURN
.p2align 4,, 8
L(ret_vec_x1):
bsfl %ecx, %ecx
VMOVU (1 -(VEC_SIZE - CHAR_SIZE))(%rsi, %rcx), %VMM(1)
VMOVU %VMM(1), (1 -(VEC_SIZE - CHAR_SIZE))(%rdi, %rcx)
# ifdef USE_AS_STPCPY
leaq 1(%rcx, %rdi), %rax
# endif
L(return_vzeroupper):
ZERO_UPPER_VEC_REGISTERS_RETURN
.p2align 4,, 8
L(ret_vec_x2):
bsfl %ecx, %ecx
VMOVU ((VEC_SIZE + 1)-(VEC_SIZE - CHAR_SIZE))(%rsi, %rcx), %VMM(1)
VMOVU %VMM(1), ((VEC_SIZE + 1)-(VEC_SIZE - CHAR_SIZE))(%rdi, %rcx)
# ifdef USE_AS_STPCPY
leaq (VEC_SIZE * 1 + 1)(%rcx, %rdi), %rax
# endif
VZEROUPPER_RETURN
.p2align 4,, 8
L(ret_vec_x3):
bsfl %ecx, %ecx
VMOVU ((VEC_SIZE * 2 + 1)-(VEC_SIZE - CHAR_SIZE))(%rsi, %rcx), %VMM(1)
VMOVU %VMM(1), ((VEC_SIZE * 2 + 1)-(VEC_SIZE - CHAR_SIZE))(%rdi, %rcx)
# ifdef USE_AS_STPCPY
leaq (VEC_SIZE * 2 + 1)(%rcx, %rdi), %rax
# endif
VZEROUPPER_RETURN
.p2align 4,, 4
L(page_cross):
movq %rsi, %rcx
andq $(VEC_SIZE * -1), %rcx
VPCMPEQ (%rcx), %VZERO, %VMM(6)
vpmovmskb %VMM(6), %ecx
shrxl %esi, %ecx, %ecx
# if USE_MOVSB_IN_PAGE_CROSS
/* Optimizing more aggressively for space as this is very cold
code. This saves 2x cache lines. */
/* This adds once to the later result which will get correct
copy bounds. NB: this can never zero-out a non-zero RCX as
to be in the page cross case rsi cannot be aligned and we
already right-shift rcx by the misalignment. */
shll $CHAR_SIZE, %ecx
jz L(page_cross_continue)
bsfl %ecx, %ecx
# if !defined USE_AS_STPCPY && !defined USE_AS_STRCAT
movq %rdi, %rax
# endif
rep movsb
# ifdef USE_AS_STPCPY
leaq -CHAR_SIZE(%rdi), %rax
# endif
VZEROUPPER_RETURN
# else
testl %ecx, %ecx
jz L(page_cross_continue)
/* Traditional copy case, essentially same as used in non-page-
cross case but since we can't reuse VMM(0) we need twice as
many loads from rsi. */
# ifndef USE_AS_STRCAT
xorl %edx, %edx
# endif
bsfl %ecx, %edx
# ifdef USE_AS_STPCPY
leaq (%rdi, %rdx), %rax
# elif !defined USE_AS_STRCAT
movq %rdi, %rax
# endif
/* vzeroupper early to avoid duplicating at each return. */
COND_VZEROUPPER
testw %cx, %cx
jz L(page_cross_copy_16_31)
testb %cl, %cl
jz L(page_cross_copy_8_15)
testl $0x7, %cl
jz L(page_cross_copy_4_7)
testl %edx, %edx
jz L(page_cross_set_null_term)
movzwl (%rsi), %ecx
movw %cx, (%rdi)
L(page_cross_set_null_term):
movb $0, (%END_REG)
ret
.p2align 4,, 4
L(page_cross_copy_4_7):
movl (%rsi), %ecx
movl -3(%rsi, %rdx), %esi
movl %ecx, (%rdi)
movl %esi, -3(%END_REG)
ret
.p2align 4,, 4
L(page_cross_copy_8_15):
movq (%rsi), %rcx
movq -7(%rsi, %rdx), %rsi
movq %rcx, (%rdi)
movq %rsi, -7(%END_REG)
ret
.p2align 4,, 3
L(page_cross_copy_16_31):
VMOVU (%rsi), %xmm0
VMOVU -15(%rsi, %rdx), %xmm1
VMOVU %xmm0, (%rdi)
VMOVU %xmm1, -15(%END_REG)
ret
# endif
END(STRCPY)
#endif
|