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
|
/* Optimized memmove implementation using Loongarch LASX instructions.
Copyright (C) 2023 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>
#include <sys/regdef.h>
#include <sys/asm.h>
#if IS_IN (libc) && !defined __loongarch_soft_float
#ifndef MEMCPY_NAME
# define MEMCPY_NAME __memcpy_lasx
#endif
#ifndef MEMMOVE_NAME
# define MEMMOVE_NAME __memmove_lasx
#endif
LEAF(MEMCPY_NAME, 6)
li.d t0, 32
add.d a3, a0, a2
add.d a4, a1, a2
bgeu t0, a2, L(less_32bytes)
li.d t1, 64
bltu t1, a2, L(copy_long)
xvld xr0, a1, 0
xvld xr1, a4, -32
xvst xr0, a0, 0
xvst xr1, a3, -32
jr ra
L(less_32bytes):
srli.d t0, a2, 4
beqz t0, L(less_16bytes)
vld vr0, a1, 0
vld vr1, a4, -16
vst vr0, a0, 0
vst vr1, a3, -16
jr ra
L(less_16bytes):
srli.d t0, a2, 3
beqz t0, L(less_8bytes)
ld.d t0, a1, 0
ld.d t1, a4, -8
st.d t0, a0, 0
st.d t1, a3, -8
jr ra
L(less_8bytes):
srli.d t0, a2, 2
beqz t0, L(less_4bytes)
ld.w t0, a1, 0
ld.w t1, a4, -4
st.w t0, a0, 0
st.w t1, a3, -4
jr ra
L(less_4bytes):
srli.d t0, a2, 1
beqz t0, L(less_2bytes)
ld.h t0, a1, 0
ld.h t1, a4, -2
st.h t0, a0, 0
st.h t1, a3, -2
jr ra
L(less_2bytes):
beqz a2, L(less_1bytes)
ld.b t0, a1, 0
st.b t0, a0, 0
L(less_1bytes):
jr ra
END(MEMCPY_NAME)
LEAF(MEMMOVE_NAME, 6)
li.d t0, 32
add.d a3, a0, a2
add.d a4, a1, a2
bgeu t0, a2, L(less_32bytes)
li.d t1, 64
bltu t1, a2, L(move_long)
xvld xr0, a1, 0
xvld xr1, a4, -32
xvst xr0, a0, 0
xvst xr1, a3, -32
jr ra
L(move_long):
sub.d t2, a0, a1
bltu t2, a2, L(copy_back)
L(copy_long):
andi t2, a0, 0x1f
addi.d a2, a2, -1
sub.d t2, t0, t2
xvld xr8, a1, 0
xvld xr9, a4, -32
sub.d t3, a2, t2
add.d a5, a0, t2
andi a2, t3, 0xff
add.d a1, a1, t2
beq a2, t3, L(lt256)
sub.d a6, a4, a2
addi.d a6, a6, -1
L(loop_256):
xvld xr0, a1, 0
xvld xr1, a1, 32
xvld xr2, a1, 64
xvld xr3, a1, 96
xvld xr4, a1, 128
xvld xr5, a1, 160
xvld xr6, a1, 192
xvld xr7, a1, 224
addi.d a1, a1, 256
xvst xr0, a5, 0
xvst xr1, a5, 32
xvst xr2, a5, 64
xvst xr3, a5, 96
xvst xr4, a5, 128
xvst xr5, a5, 160
xvst xr6, a5, 192
xvst xr7, a5, 224
addi.d a5, a5, 256
bne a1, a6, L(loop_256)
L(lt256):
srli.d t2, a2, 7
beqz t2, L(lt128)
xvld xr0, a1, 0
xvld xr1, a1, 32
xvld xr2, a1, 64
xvld xr3, a1, 96
addi.d a1, a1, 128
addi.d a2, a2, -128
xvst xr0, a5, 0
xvst xr1, a5, 32
xvst xr2, a5, 64
xvst xr3, a5, 96
addi.d a5, a5, 128
L(lt128):
bltu a2, t1, L(lt64)
xvld xr0, a1, 0
xvld xr1, a1, 32
addi.d a1, a1, 64
addi.d a2, a2, -64
xvst xr0, a5, 0
xvst xr1, a5, 32
addi.d a5, a5, 64
L(lt64):
bltu a2, t0, L(lt32)
xvld xr0, a1, 0
xvst xr0, a5, 0
L(lt32):
xvst xr8, a0, 0
xvst xr9, a3, -32
jr ra
nop
L(copy_back):
addi.d a3, a3, -1
addi.d a2, a2, -2
andi t2, a3, 0x1f
xvld xr8, a1, 0
xvld xr9, a4, -32
sub.d t3, a2, t2
sub.d a5, a3, t2
sub.d a4, a4, t2
andi a2, t3, 0xff
beq a2, t3, L(back_lt256)
add.d a6, a1, a2
addi.d a6, a6, 2
L(back_loop_256):
xvld xr0, a4, -33
xvld xr1, a4, -65
xvld xr2, a4, -97
xvld xr3, a4, -129
xvld xr4, a4, -161
xvld xr5, a4, -193
xvld xr6, a4, -225
xvld xr7, a4, -257
addi.d a4, a4, -256
xvst xr0, a5, -32
xvst xr1, a5, -64
xvst xr2, a5, -96
xvst xr3, a5, -128
xvst xr4, a5, -160
xvst xr5, a5, -192
xvst xr6, a5, -224
xvst xr7, a5, -256
addi.d a5, a5, -256
bne a4, a6, L(back_loop_256)
L(back_lt256):
srli.d t2, a2, 7
beqz t2, L(back_lt128)
xvld xr0, a4, -33
xvld xr1, a4, -65
xvld xr2, a4, -97
xvld xr3, a4, -129
addi.d a2, a2, -128
addi.d a4, a4, -128
xvst xr0, a5, -32
xvst xr1, a5, -64
xvst xr2, a5, -96
xvst xr3, a5, -128
addi.d a5, a5, -128
L(back_lt128):
blt a2, t1, L(back_lt64)
xvld xr0, a4, -33
xvld xr1, a4, -65
addi.d a2, a2, -64
addi.d a4, a4, -64
xvst xr0, a5, -32
xvst xr1, a5, -64
addi.d a5, a5, -64
L(back_lt64):
bltu a2, t0, L(back_lt32)
xvld xr0, a4, -33
xvst xr0, a5, -32
L(back_lt32):
xvst xr8, a0, 0
xvst xr9, a3, -31
jr ra
END(MEMMOVE_NAME)
libc_hidden_builtin_def (MEMCPY_NAME)
libc_hidden_builtin_def (MEMMOVE_NAME)
#endif
|