about summary refs log tree commit diff
path: root/sysdeps/aarch64/memset.S
blob: 2e15551006457e011eebe8aefca1e7d3609f360a (plain) (blame)
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
/* Copyright (C) 2012-2014 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
   <http://www.gnu.org/licenses/>.  */

/* Assumptions:
 *
 * ARMv8-a, AArch64
 * Unaligned accesses
 */

#include <sysdep.h>

#define dstin		x0
#define dstin_w		w0
#define valw		w1
#define count		x2
#define tmp1		x3
#define tmp1w		w3
#define tmp2		x4
#define tmp2w		w4
#define zva_len_x	x5
#define zva_len		w5
#define zva_mask_x	x6
#define zva_mask	w6
#define dst		x8
#define dst_w		w8
#define dstend		x9

	.globl	memset
	cfi_startproc

#if HAVE_IFUNC && !defined (IS_IN_rtld)
/* Rather than decode dczid_el0 every time, checking for zva disabled and
   unpacking the line size, do this once in the indirect function and choose
   an appropriate entry point which encodes these values as constants.  */

	.type	memset, %gnu_indirect_function
memset:
	mrs	x1, dczid_el0
	adrp	x0, 1f
	tst	x1, #16				/* test for zva disabled */
	and	x1, x1, #15
	add	x0, x0, #:lo12:1f
	csel	x1, xzr, x1, ne			/* squash index to 0 if so */
	ldrsw	x2, [x0, x1, lsl #2]
	add	x0, x0, x2
	RET
	.size	memset, .-memset

	.section .rodata
1:	.long	memset_nozva - 1b		// 0
	.long	memset_nozva - 1b		// 1
	.long	memset_nozva - 1b		// 2
	.long	memset_nozva - 1b		// 3
	.long	memset_zva_64 - 1b		// 4
	.long	memset_zva_128 - 1b		// 5
	.long	memset_zva_256 - 1b		// 6
	.long	memset_zva_512 - 1b		// 7
	.long	memset_zva_1024 - 1b	// 8
	.long	memset_zva_2048 - 1b	// 9
	.long	memset_zva_4096 - 1b	// 10
	.long	memset_zva_8192 - 1b	// 11
	.long	memset_zva_16384 - 1b	// 12
	.long	memset_zva_32768 - 1b	// 13
	.long	memset_zva_65536 - 1b	// 14
	.long	memset_zva_131072 - 1b	// 15
	.previous

/* The 64 byte zva size is too small, and needs unrolling for efficiency.  */

	.p2align 6
	.type	memset_zva_64, %function
memset_zva_64:
	CALL_MCOUNT
	tst	valw, #255
	b.ne	L(nz_or_small)

	cmp	count, #256
	dup	v16.16b, valw
	add	dstend, dstin, count
	b.lo	L(le_255)

	str	q16, [dstin]		/* first 16 aligned 1.  */
	and	tmp2, dstin, #-16
	and	dst, dstin, #-64

	stp	q16, q16, [tmp2, #16]	/* first 64 aligned 16.  */
	add	dst, dst, #64

	stp	q16, q16, [tmp2, #48]
	sub	count, dstend, dst	/* recompute for misalign */
	add	tmp1, dst, #64

	sub	count, count, #128	/* pre-bias */

	.p2align 6,,24
0:	dc	zva, dst
	subs	count, count, #128
	dc	zva, tmp1
	add	dst, dst, #128
	add	tmp1, tmp1, #128
	b.hs	0b

	adds	count, count, #128	/* undo pre-bias */
	b.ne	L(zva_tail)
	RET

	.size	memset_zva_64, . - memset_zva_64

/* For larger zva sizes, a simple loop ought to suffice.  */
/* ??? Needs performance testing, when such hardware becomes available.  */

.macro do_zvas len
	.p2align 4
	.type	memset_zva_\len, %function
memset_zva_\len:
	CALL_MCOUNT
	tst	valw, #255
	b.ne	L(nz_or_small)

	cmp	count, #256
	dup	v16.16b, valw
	add	dstend, dstin, count
	b.lo	L(le_255)

	mov	zva_len, #\len
	b	memset_zva_n

	.size	memset_zva_\len, . - memset_zva_\len
.endm

.macro do_zval len
	.p2align 4
	.type	memset_zva_\len, %function
memset_zva_\len:
	CALL_MCOUNT
	and	valw, valw, #255
	cmp	count, #\len
	ccmp	valw, #0, #0, hs	/* hs ? cmp val,0 : !z */
	b.ne	L(nz_or_small)

	add	dstend, dstin, count
	mov	zva_len, #\len
	b	memset_zva_n

	.size	memset_zva_\len, . - memset_zva_\len
.endm

	do_zvas 128	// 5
	do_zvas 256	// 6
	do_zval 512	// 7
	do_zval 1024	// 8
	do_zval 2048	// 9
	do_zval 4096	// 10
	do_zval 8192	// 11
	do_zval 16384	// 12
	do_zval 32768	// 13
	do_zval 65536	// 14
	do_zval 131072	// 15

	.p2align 6
#else
/* Without IFUNC, we must load the zva data from the dczid register.  */

	.p2align 6
	.type	memset, %function
memset:
	tst	valw, #255
	b.ne	L(nz_or_small)

	cmp	count, #256
	dup	v16.16b, valw
	add	dstend, dstin, count
	b.lo	L(le_255)

	mrs	tmp1, dczid_el0
	mov	zva_len, #4

	tst	tmp1w, #16		/* dc disabled? */
	and	tmp1w, tmp1w, #15

	ccmp	tmp1w, #4, #0, eq	/* eq ? cmp len,64 : !c */
	lsl	zva_len, zva_len, tmp1w

	ccmp	count, zva_len_x, #0, hs /* hs ? cmp count,len : !c */

	b.lo	L(ge_256)		/* disabled || len<64 || count<len */

	/* Fall through into memset_zva_n.  */
	.size	memset, . - memset
#endif /* HAVE_IFUNC */

/* Main part of the zva path.  On arrival here, we've already checked for
   minimum size and that VAL is zero.  Also, we've set up zva_len and mask. */

	.type	memset_zva_n, %function
memset_zva_n:
	stp	q16, q16, [dstin]	/* first 32 aligned 1.  */
	neg	tmp1w, dstin_w
	sub	zva_mask, zva_len, #1
	sub	count, count, zva_len_x	/* pre-bias */
	mov	dst, dstin
	ands	tmp1w, tmp1w, zva_mask
	b.ne	3f

	.p2align 6,,16
2:	dc	zva, dst
	subs	count, count, zva_len_x
	add	dst, dst, zva_len_x
	b.hs	2b

	adds	count, count, zva_len_x	/* undo pre-bias */
	b.ne	L(zva_tail)
	RET

	.p2align 4
3:	and	tmp2, dstin, #-32
	sub	count, count, tmp1	/* account for misalign */
	add	dst, dstin, tmp1

	.p2align 6,,24
4:	stp	q16, q16, [tmp2, #32]
	subs	tmp1w, tmp1w, #64
	stp	q16, q16, [tmp2, #64]!
	b.hi	4b

	b	2b

	.size	memset_zva_n, . - memset_zva_n

/* The non-zva path.  */

	.p2align 6
	.type	memset_nozva, %function
memset_nozva:
	CALL_MCOUNT
L(nz_or_small):
	dup	v16.16b, valw
	cmp	count, #256
	add	dstend, dstin, count
	b.hs	L(ge_256)

	/* Small data -- original count is less than 256 bytes.  */
L(le_255):
	cmp	count, #32
	b.lo	L(le_31)

	stp	q16, q16, [dstin]
	cmp	count, #64
	b.lo	L(le_63)

	stp	q16, q16, [dstin, #0x20]
	tbz	count, #7, L(le_127)

	stp	q16, q16, [dstin, #0x40]
	stp	q16, q16, [dstin, #0x60]
	stp	q16, q16, [dstend, #-0x80]
	stp	q16, q16, [dstend, #-0x60]
L(le_127):
	stp	q16, q16, [dstend, #-0x40]
L(le_63):
	stp	q16, q16, [dstend, #-0x20]
	RET

	.p2align 6,,16
L(ge_256):
	and	dst, dstin, #-32	/* align the pointer / pre-bias.  */
	stp	q16, q16, [dstin]	/* first 32 align 1 */
	sub	count, dstend, dst	/* begin misalign recompute */
	sub	count, count, #32+128	/* finish recompute + pre-bias */

	.p2align 6,,24
L(loop):
	stp	q16, q16, [dst, #0x20]
	stp	q16, q16, [dst, #0x40]
	subs	count, count, #128
	stp	q16, q16, [dst, #0x60]
	stp	q16, q16, [dst, #0x80]!
	b.hs	L(loop)

	adds	count, count, #128	/* undo pre-bias */
	b.ne	L(loop_tail)
	RET

	/* Tail of the zva loop.  Less than ZVA bytes, but possibly lots
	   more than 128.  Note that dst is aligned but unbiased.  */
L(zva_tail):
	subs	count, count, #128	/* pre-bias */
	sub	dst, dst, #32		/* pre-bias */
	b.hi	L(loop)

	/* Tail of the stp loop; less than 128 bytes left.
	   Note that dst is still aligned and biased by -32.  */
L(loop_tail):
	stp	q16, q16, [dstend, #-0x80]
	stp	q16, q16, [dstend, #-0x60]
	stp	q16, q16, [dstend, #-0x40]
	stp	q16, q16, [dstend, #-0x20]
	RET

L(le_31):
	tbz	count, #4, L(le_15)
	str	q16, [dstin]
	str	q16, [dstend, #-0x10]
	RET
L(le_15):
	tbz	count, #3, L(le_7)
	str	d16, [dstin]
	str	d16, [dstend, #-8]
	RET
L(le_7):
	tbz	count, #2, L(le_3)
	str	s16, [dstin]
	str	s16, [dstend, #-4]
	RET
L(le_3):
	tbz	count, #1, L(le_1)
	str	h16, [dstend, #-2]
L(le_1):
	tbz	count, #0, L(le_0)
	str	b16, [dstin]
L(le_0):
	RET

	.size	memset_nozva, . - memset_nozva
	cfi_endproc

strong_alias (memset, __memset)
libc_hidden_builtin_def (memset)