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
|
/* Optimized memset for Huawei Kunpeng processor.
Copyright (C) 2012-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 <sysdep.h>
/* Assumptions:
*
* ARMv8-a, AArch64, unaligned accesses
*
*/
#define dstin x0
#define valw w1
#define count x2
#define dst x3
#define dstend x4
ENTRY (__memset_kunpeng)
PTR_ARG (0)
SIZE_ARG (2)
dup v0.16B, valw
add dstend, dstin, count
cmp count, 128
b.hs L(set_long)
cmp count, 16
b.lo L(less16)
/* Set 16..127 bytes. */
str q0, [dstin]
tbnz count, 6, L(set127)
str q0, [dstend, -16]
tbz count, 5, 1f
str q0, [dstin, 16]
str q0, [dstend, -32]
1: ret
.p2align 4
/* Set 64..127 bytes. Write 64 bytes from the start and
64 bytes from the end. */
L(set127):
stp q0, q0, [dstin, 16]
str q0, [dstin, 48]
stp q0, q0, [dstend, -64]
stp q0, q0, [dstend, -32]
ret
.p2align 4
/* Set 0..15 bytes. */
L(less16):
tbz count, 3, L(less8)
str d0, [dstin]
str d0, [dstend, -8]
ret
L(less8):
tbz count, 2, 2f
str s0, [dstin]
str s0, [dstend, -4]
ret
2: cbz count, 3f
str b0, [dstin]
tbz count, 1, 3f
str h0, [dstend, -2]
3: ret
.p2align 4
L(set_long):
bic dst, dstin, 15
str q0, [dstin]
sub count, dstend, dst /* Count is 16 too large. */
sub dst, dst, 16 /* Dst is biased by -32. */
sub count, count, 64 + 16 + 1 /* Adjust count and bias for loop. */
1: stp q0, q0, [dst, 32]
stp q0, q0, [dst, 64]!
subs count, count, 64
b.lo 1f
stp q0, q0, [dst, 32]
stp q0, q0, [dst, 64]!
subs count, count, 64
b.lo 1f
stp q0, q0, [dst, 32]
stp q0, q0, [dst, 64]!
subs count, count, 64
b.lo 1f
stp q0, q0, [dst, 32]
stp q0, q0, [dst, 64]!
subs count, count, 64
b.hs 1b
1: stp q0, q0, [dstend, -64]
stp q0, q0, [dstend, -32]
ret
END (__memset_kunpeng)
|