blob: 8e4d22a6ba0b2131aa161c8626f1490998767883 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David S. Miller398d1082006-03-05 16:41:56 -08002/* NGmemcpy.S: Niagara optimized memcpy.
3 *
David S. Miller25e5566ed2007-10-02 01:03:09 -07004 * Copyright (C) 2006, 2007 David S. Miller (davem@davemloft.net)
David S. Miller398d1082006-03-05 16:41:56 -08005 */
6
7#ifdef __KERNEL__
David S. Miller7ae3aaf2016-10-24 19:32:12 -07008#include <linux/linkage.h>
David S. Miller398d1082006-03-05 16:41:56 -08009#include <asm/asi.h>
David S. Miller0d4bc952006-02-11 10:30:41 -080010#include <asm/thread_info.h>
David S. Miller398d1082006-03-05 16:41:56 -080011#define GLOBAL_SPARE %g7
David S. Miller0d4bc952006-02-11 10:30:41 -080012#define RESTORE_ASI(TMP) \
13 ldub [%g6 + TI_CURRENT_DS], TMP; \
14 wr TMP, 0x0, %asi;
David S. Miller398d1082006-03-05 16:41:56 -080015#else
16#define GLOBAL_SPARE %g5
David S. Miller0d4bc952006-02-11 10:30:41 -080017#define RESTORE_ASI(TMP) \
18 wr %g0, ASI_PNF, %asi
David S. Miller398d1082006-03-05 16:41:56 -080019#endif
20
David S. Miller25e5566ed2007-10-02 01:03:09 -070021#ifdef __sparc_v9__
22#define SAVE_AMOUNT 128
23#else
24#define SAVE_AMOUNT 64
25#endif
26
David S. Miller398d1082006-03-05 16:41:56 -080027#ifndef STORE_ASI
28#define STORE_ASI ASI_BLK_INIT_QUAD_LDD_P
29#endif
30
31#ifndef EX_LD
David S. Miller7ae3aaf2016-10-24 19:32:12 -070032#define EX_LD(x,y) x
David S. Miller398d1082006-03-05 16:41:56 -080033#endif
34
35#ifndef EX_ST
David S. Miller7ae3aaf2016-10-24 19:32:12 -070036#define EX_ST(x,y) x
David S. Miller398d1082006-03-05 16:41:56 -080037#endif
38
39#ifndef LOAD
40#ifndef MEMCPY_DEBUG
41#define LOAD(type,addr,dest) type [addr], dest
42#else
43#define LOAD(type,addr,dest) type##a [addr] 0x80, dest
44#endif
45#endif
46
47#ifndef LOAD_TWIN
48#define LOAD_TWIN(addr_reg,dest0,dest1) \
49 ldda [addr_reg] ASI_BLK_INIT_QUAD_LDD_P, dest0
50#endif
51
52#ifndef STORE
53#define STORE(type,src,addr) type src, [addr]
54#endif
55
56#ifndef STORE_INIT
David S. Miller25e5566ed2007-10-02 01:03:09 -070057#ifndef SIMULATE_NIAGARA_ON_NON_NIAGARA
David S. Miller398d1082006-03-05 16:41:56 -080058#define STORE_INIT(src,addr) stxa src, [addr] %asi
David S. Miller25e5566ed2007-10-02 01:03:09 -070059#else
60#define STORE_INIT(src,addr) stx src, [addr + 0x00]
61#endif
David S. Miller398d1082006-03-05 16:41:56 -080062#endif
63
64#ifndef FUNC_NAME
65#define FUNC_NAME NGmemcpy
66#endif
67
68#ifndef PREAMBLE
69#define PREAMBLE
70#endif
71
72#ifndef XCC
73#define XCC xcc
74#endif
75
76 .register %g2,#scratch
77 .register %g3,#scratch
78
79 .text
David S. Miller7ae3aaf2016-10-24 19:32:12 -070080#ifndef EX_RETVAL
81#define EX_RETVAL(x) x
82__restore_asi:
83 ret
84 wr %g0, ASI_AIUS, %asi
85 restore
86ENTRY(NG_ret_i2_plus_i4_plus_1)
87 ba,pt %xcc, __restore_asi
88 add %i2, %i5, %i0
89ENDPROC(NG_ret_i2_plus_i4_plus_1)
90ENTRY(NG_ret_i2_plus_g1)
91 ba,pt %xcc, __restore_asi
92 add %i2, %g1, %i0
93ENDPROC(NG_ret_i2_plus_g1)
94ENTRY(NG_ret_i2_plus_g1_minus_8)
95 sub %g1, 8, %g1
96 ba,pt %xcc, __restore_asi
97 add %i2, %g1, %i0
98ENDPROC(NG_ret_i2_plus_g1_minus_8)
99ENTRY(NG_ret_i2_plus_g1_minus_16)
100 sub %g1, 16, %g1
101 ba,pt %xcc, __restore_asi
102 add %i2, %g1, %i0
103ENDPROC(NG_ret_i2_plus_g1_minus_16)
104ENTRY(NG_ret_i2_plus_g1_minus_24)
105 sub %g1, 24, %g1
106 ba,pt %xcc, __restore_asi
107 add %i2, %g1, %i0
108ENDPROC(NG_ret_i2_plus_g1_minus_24)
109ENTRY(NG_ret_i2_plus_g1_minus_32)
110 sub %g1, 32, %g1
111 ba,pt %xcc, __restore_asi
112 add %i2, %g1, %i0
113ENDPROC(NG_ret_i2_plus_g1_minus_32)
114ENTRY(NG_ret_i2_plus_g1_minus_40)
115 sub %g1, 40, %g1
116 ba,pt %xcc, __restore_asi
117 add %i2, %g1, %i0
118ENDPROC(NG_ret_i2_plus_g1_minus_40)
119ENTRY(NG_ret_i2_plus_g1_minus_48)
120 sub %g1, 48, %g1
121 ba,pt %xcc, __restore_asi
122 add %i2, %g1, %i0
123ENDPROC(NG_ret_i2_plus_g1_minus_48)
124ENTRY(NG_ret_i2_plus_g1_minus_56)
125 sub %g1, 56, %g1
126 ba,pt %xcc, __restore_asi
127 add %i2, %g1, %i0
128ENDPROC(NG_ret_i2_plus_g1_minus_56)
129ENTRY(NG_ret_i2_plus_i4)
130 ba,pt %xcc, __restore_asi
131 add %i2, %i4, %i0
132ENDPROC(NG_ret_i2_plus_i4)
133ENTRY(NG_ret_i2_plus_i4_minus_8)
134 sub %i4, 8, %i4
135 ba,pt %xcc, __restore_asi
136 add %i2, %i4, %i0
137ENDPROC(NG_ret_i2_plus_i4_minus_8)
138ENTRY(NG_ret_i2_plus_8)
139 ba,pt %xcc, __restore_asi
140 add %i2, 8, %i0
141ENDPROC(NG_ret_i2_plus_8)
142ENTRY(NG_ret_i2_plus_4)
143 ba,pt %xcc, __restore_asi
144 add %i2, 4, %i0
145ENDPROC(NG_ret_i2_plus_4)
146ENTRY(NG_ret_i2_plus_1)
147 ba,pt %xcc, __restore_asi
148 add %i2, 1, %i0
149ENDPROC(NG_ret_i2_plus_1)
150ENTRY(NG_ret_i2_plus_g1_plus_1)
151 add %g1, 1, %g1
152 ba,pt %xcc, __restore_asi
153 add %i2, %g1, %i0
154ENDPROC(NG_ret_i2_plus_g1_plus_1)
155ENTRY(NG_ret_i2)
156 ba,pt %xcc, __restore_asi
157 mov %i2, %i0
158ENDPROC(NG_ret_i2)
159ENTRY(NG_ret_i2_and_7_plus_i4)
160 and %i2, 7, %i2
161 ba,pt %xcc, __restore_asi
162 add %i2, %i4, %i0
163ENDPROC(NG_ret_i2_and_7_plus_i4)
164#endif
165
David S. Miller398d1082006-03-05 16:41:56 -0800166 .align 64
167
168 .globl FUNC_NAME
169 .type FUNC_NAME,#function
David S. Miller25e5566ed2007-10-02 01:03:09 -0700170FUNC_NAME: /* %i0=dst, %i1=src, %i2=len */
171 PREAMBLE
172 save %sp, -SAVE_AMOUNT, %sp
173 srlx %i2, 31, %g2
David S. Miller398d1082006-03-05 16:41:56 -0800174 cmp %g2, 0
175 tne %xcc, 5
David S. Miller25e5566ed2007-10-02 01:03:09 -0700176 mov %i0, %o0
177 cmp %i2, 0
David S. Miller398d1082006-03-05 16:41:56 -0800178 be,pn %XCC, 85f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700179 or %o0, %i1, %i3
180 cmp %i2, 16
David S. Miller398d1082006-03-05 16:41:56 -0800181 blu,a,pn %XCC, 80f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700182 or %i3, %i2, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800183
184 /* 2 blocks (128 bytes) is the minimum we can do the block
185 * copy with. We need to ensure that we'll iterate at least
186 * once in the block copy loop. At worst we'll need to align
187 * the destination to a 64-byte boundary which can chew up
188 * to (64 - 1) bytes from the length before we perform the
189 * block copy loop.
190 */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700191 cmp %i2, (2 * 64)
David S. Miller398d1082006-03-05 16:41:56 -0800192 blu,pt %XCC, 70f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700193 andcc %i3, 0x7, %g0
David S. Miller398d1082006-03-05 16:41:56 -0800194
195 /* %o0: dst
David S. Miller25e5566ed2007-10-02 01:03:09 -0700196 * %i1: src
197 * %i2: len (known to be >= 128)
David S. Miller398d1082006-03-05 16:41:56 -0800198 *
David S. Miller25e5566ed2007-10-02 01:03:09 -0700199 * The block copy loops will use %i4/%i5,%g2/%g3 as
David S. Miller398d1082006-03-05 16:41:56 -0800200 * temporaries while copying the data.
201 */
202
David S. Miller25e5566ed2007-10-02 01:03:09 -0700203 LOAD(prefetch, %i1, #one_read)
David S. Miller398d1082006-03-05 16:41:56 -0800204 wr %g0, STORE_ASI, %asi
205
206 /* Align destination on 64-byte boundary. */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700207 andcc %o0, (64 - 1), %i4
David S. Miller398d1082006-03-05 16:41:56 -0800208 be,pt %XCC, 2f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700209 sub %i4, 64, %i4
210 sub %g0, %i4, %i4 ! bytes to align dst
211 sub %i2, %i4, %i2
2121: subcc %i4, 1, %i4
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700213 EX_LD(LOAD(ldub, %i1, %g1), NG_ret_i2_plus_i4_plus_1)
214 EX_ST(STORE(stb, %g1, %o0), NG_ret_i2_plus_i4_plus_1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700215 add %i1, 1, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800216 bne,pt %XCC, 1b
217 add %o0, 1, %o0
218
219 /* If the source is on a 16-byte boundary we can do
220 * the direct block copy loop. If it is 8-byte aligned
221 * we can do the 16-byte loads offset by -8 bytes and the
222 * init stores offset by one register.
223 *
224 * If the source is not even 8-byte aligned, we need to do
225 * shifting and masking (basically integer faligndata).
226 *
227 * The careful bit with init stores is that if we store
228 * to any part of the cache line we have to store the whole
229 * cacheline else we can end up with corrupt L2 cache line
230 * contents. Since the loop works on 64-bytes of 64-byte
231 * aligned store data at a time, this is easy to ensure.
232 */
2332:
David S. Miller25e5566ed2007-10-02 01:03:09 -0700234 andcc %i1, (16 - 1), %i4
235 andn %i2, (64 - 1), %g1 ! block copy loop iterator
David S. Miller398d1082006-03-05 16:41:56 -0800236 be,pt %XCC, 50f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700237 sub %i2, %g1, %i2 ! final sub-block copy bytes
238
239 cmp %i4, 8
240 be,pt %XCC, 10f
241 sub %i1, %i4, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800242
243 /* Neither 8-byte nor 16-byte aligned, shift and mask. */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700244 and %i4, 0x7, GLOBAL_SPARE
245 sll GLOBAL_SPARE, 3, GLOBAL_SPARE
246 mov 64, %i5
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700247 EX_LD(LOAD_TWIN(%i1, %g2, %g3), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700248 sub %i5, GLOBAL_SPARE, %i5
249 mov 16, %o4
250 mov 32, %o5
251 mov 48, %o7
252 mov 64, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800253
David S. Miller25e5566ed2007-10-02 01:03:09 -0700254 bg,pn %XCC, 9f
255 nop
David S. Miller398d1082006-03-05 16:41:56 -0800256
David S. Miller25e5566ed2007-10-02 01:03:09 -0700257#define MIX_THREE_WORDS(WORD1, WORD2, WORD3, PRE_SHIFT, POST_SHIFT, TMP) \
258 sllx WORD1, POST_SHIFT, WORD1; \
259 srlx WORD2, PRE_SHIFT, TMP; \
260 sllx WORD2, POST_SHIFT, WORD2; \
261 or WORD1, TMP, WORD1; \
262 srlx WORD3, PRE_SHIFT, TMP; \
263 or WORD2, TMP, WORD2;
264
David S. Miller7ae3aaf2016-10-24 19:32:12 -07002658: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700266 MIX_THREE_WORDS(%g2, %g3, %o2, %i5, GLOBAL_SPARE, %o1)
267 LOAD(prefetch, %i1 + %i3, #one_read)
268
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700269 EX_ST(STORE_INIT(%g2, %o0 + 0x00), NG_ret_i2_plus_g1)
270 EX_ST(STORE_INIT(%g3, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700271
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700272 EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3), NG_ret_i2_plus_g1_minus_16)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700273 MIX_THREE_WORDS(%o2, %o3, %g2, %i5, GLOBAL_SPARE, %o1)
274
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700275 EX_ST(STORE_INIT(%o2, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16)
276 EX_ST(STORE_INIT(%o3, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700277
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700278 EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1_minus_32)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700279 MIX_THREE_WORDS(%g2, %g3, %o2, %i5, GLOBAL_SPARE, %o1)
280
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700281 EX_ST(STORE_INIT(%g2, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32)
282 EX_ST(STORE_INIT(%g3, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700283
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700284 EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3), NG_ret_i2_plus_g1_minus_48)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700285 add %i1, 64, %i1
286 MIX_THREE_WORDS(%o2, %o3, %g2, %i5, GLOBAL_SPARE, %o1)
287
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700288 EX_ST(STORE_INIT(%o2, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48)
289 EX_ST(STORE_INIT(%o3, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700290
291 subcc %g1, 64, %g1
292 bne,pt %XCC, 8b
David S. Miller398d1082006-03-05 16:41:56 -0800293 add %o0, 64, %o0
294
David S. Miller398d1082006-03-05 16:41:56 -0800295 ba,pt %XCC, 60f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700296 add %i1, %i4, %i1
297
David S. Miller7ae3aaf2016-10-24 19:32:12 -07002989: EX_LD(LOAD_TWIN(%i1 + %o4, %o2, %o3), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700299 MIX_THREE_WORDS(%g3, %o2, %o3, %i5, GLOBAL_SPARE, %o1)
300 LOAD(prefetch, %i1 + %i3, #one_read)
301
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700302 EX_ST(STORE_INIT(%g3, %o0 + 0x00), NG_ret_i2_plus_g1)
303 EX_ST(STORE_INIT(%o2, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700304
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700305 EX_LD(LOAD_TWIN(%i1 + %o5, %g2, %g3), NG_ret_i2_plus_g1_minus_16)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700306 MIX_THREE_WORDS(%o3, %g2, %g3, %i5, GLOBAL_SPARE, %o1)
307
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700308 EX_ST(STORE_INIT(%o3, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16)
309 EX_ST(STORE_INIT(%g2, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700310
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700311 EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1_minus_32)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700312 MIX_THREE_WORDS(%g3, %o2, %o3, %i5, GLOBAL_SPARE, %o1)
313
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700314 EX_ST(STORE_INIT(%g3, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32)
315 EX_ST(STORE_INIT(%o2, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700316
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700317 EX_LD(LOAD_TWIN(%i1 + %i3, %g2, %g3), NG_ret_i2_plus_g1_minus_48)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700318 add %i1, 64, %i1
319 MIX_THREE_WORDS(%o3, %g2, %g3, %i5, GLOBAL_SPARE, %o1)
320
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700321 EX_ST(STORE_INIT(%o3, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48)
322 EX_ST(STORE_INIT(%g2, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700323
324 subcc %g1, 64, %g1
325 bne,pt %XCC, 9b
326 add %o0, 64, %o0
327
328 ba,pt %XCC, 60f
329 add %i1, %i4, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800330
33110: /* Destination is 64-byte aligned, source was only 8-byte
332 * aligned but it has been subtracted by 8 and we perform
333 * one twin load ahead, then add 8 back into source when
334 * we finish the loop.
335 */
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700336 EX_LD(LOAD_TWIN(%i1, %o4, %o5), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700337 mov 16, %o7
338 mov 32, %g2
339 mov 48, %g3
340 mov 64, %o1
David S. Miller7ae3aaf2016-10-24 19:32:12 -07003411: EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700342 LOAD(prefetch, %i1 + %o1, #one_read)
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700343 EX_ST(STORE_INIT(%o5, %o0 + 0x00), NG_ret_i2_plus_g1) ! initializes cache line
344 EX_ST(STORE_INIT(%o2, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8)
345 EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5), NG_ret_i2_plus_g1_minus_16)
346 EX_ST(STORE_INIT(%o3, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16)
347 EX_ST(STORE_INIT(%o4, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24)
348 EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3), NG_ret_i2_plus_g1_minus_32)
349 EX_ST(STORE_INIT(%o5, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32)
350 EX_ST(STORE_INIT(%o2, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40)
351 EX_LD(LOAD_TWIN(%i1 + %o1, %o4, %o5), NG_ret_i2_plus_g1_minus_48)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700352 add %i1, 64, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700353 EX_ST(STORE_INIT(%o3, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48)
354 EX_ST(STORE_INIT(%o4, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56)
David S. Miller398d1082006-03-05 16:41:56 -0800355 subcc %g1, 64, %g1
356 bne,pt %XCC, 1b
357 add %o0, 64, %o0
358
359 ba,pt %XCC, 60f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700360 add %i1, 0x8, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800361
36250: /* Destination is 64-byte aligned, and source is 16-byte
363 * aligned.
364 */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700365 mov 16, %o7
366 mov 32, %g2
367 mov 48, %g3
368 mov 64, %o1
David S. Miller7ae3aaf2016-10-24 19:32:12 -07003691: EX_LD(LOAD_TWIN(%i1 + %g0, %o4, %o5), NG_ret_i2_plus_g1)
370 EX_LD(LOAD_TWIN(%i1 + %o7, %o2, %o3), NG_ret_i2_plus_g1)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700371 LOAD(prefetch, %i1 + %o1, #one_read)
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700372 EX_ST(STORE_INIT(%o4, %o0 + 0x00), NG_ret_i2_plus_g1) ! initializes cache line
373 EX_ST(STORE_INIT(%o5, %o0 + 0x08), NG_ret_i2_plus_g1_minus_8)
374 EX_LD(LOAD_TWIN(%i1 + %g2, %o4, %o5), NG_ret_i2_plus_g1_minus_16)
375 EX_ST(STORE_INIT(%o2, %o0 + 0x10), NG_ret_i2_plus_g1_minus_16)
376 EX_ST(STORE_INIT(%o3, %o0 + 0x18), NG_ret_i2_plus_g1_minus_24)
377 EX_LD(LOAD_TWIN(%i1 + %g3, %o2, %o3), NG_ret_i2_plus_g1_minus_32)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700378 add %i1, 64, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700379 EX_ST(STORE_INIT(%o4, %o0 + 0x20), NG_ret_i2_plus_g1_minus_32)
380 EX_ST(STORE_INIT(%o5, %o0 + 0x28), NG_ret_i2_plus_g1_minus_40)
381 EX_ST(STORE_INIT(%o2, %o0 + 0x30), NG_ret_i2_plus_g1_minus_48)
382 EX_ST(STORE_INIT(%o3, %o0 + 0x38), NG_ret_i2_plus_g1_minus_56)
David S. Miller398d1082006-03-05 16:41:56 -0800383 subcc %g1, 64, %g1
384 bne,pt %XCC, 1b
385 add %o0, 64, %o0
386 /* fall through */
387
38860:
David S. Miller24d559c2007-03-19 13:27:33 -0700389 membar #Sync
390
David S. Miller25e5566ed2007-10-02 01:03:09 -0700391 /* %i2 contains any final bytes still needed to be copied
David S. Miller398d1082006-03-05 16:41:56 -0800392 * over. If anything is left, we copy it one byte at a time.
393 */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700394 RESTORE_ASI(%i3)
395 brz,pt %i2, 85f
396 sub %o0, %i1, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800397 ba,a,pt %XCC, 90f
Babu Moger0ae2d262017-03-17 14:52:21 -0600398 nop
David S. Miller398d1082006-03-05 16:41:56 -0800399
400 .align 64
40170: /* 16 < len <= 64 */
402 bne,pn %XCC, 75f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700403 sub %o0, %i1, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800404
40572:
David S. Miller25e5566ed2007-10-02 01:03:09 -0700406 andn %i2, 0xf, %i4
407 and %i2, 0xf, %i2
4081: subcc %i4, 0x10, %i4
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700409 EX_LD(LOAD(ldx, %i1, %o4), NG_ret_i2_plus_i4)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700410 add %i1, 0x08, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700411 EX_LD(LOAD(ldx, %i1, %g1), NG_ret_i2_plus_i4)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700412 sub %i1, 0x08, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700413 EX_ST(STORE(stx, %o4, %i1 + %i3), NG_ret_i2_plus_i4)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700414 add %i1, 0x8, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700415 EX_ST(STORE(stx, %g1, %i1 + %i3), NG_ret_i2_plus_i4_minus_8)
David S. Miller398d1082006-03-05 16:41:56 -0800416 bgu,pt %XCC, 1b
David S. Miller25e5566ed2007-10-02 01:03:09 -0700417 add %i1, 0x8, %i1
41873: andcc %i2, 0x8, %g0
David S. Miller398d1082006-03-05 16:41:56 -0800419 be,pt %XCC, 1f
420 nop
David S. Miller25e5566ed2007-10-02 01:03:09 -0700421 sub %i2, 0x8, %i2
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700422 EX_LD(LOAD(ldx, %i1, %o4), NG_ret_i2_plus_8)
423 EX_ST(STORE(stx, %o4, %i1 + %i3), NG_ret_i2_plus_8)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700424 add %i1, 0x8, %i1
4251: andcc %i2, 0x4, %g0
David S. Miller398d1082006-03-05 16:41:56 -0800426 be,pt %XCC, 1f
427 nop
David S. Miller25e5566ed2007-10-02 01:03:09 -0700428 sub %i2, 0x4, %i2
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700429 EX_LD(LOAD(lduw, %i1, %i5), NG_ret_i2_plus_4)
430 EX_ST(STORE(stw, %i5, %i1 + %i3), NG_ret_i2_plus_4)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700431 add %i1, 0x4, %i1
4321: cmp %i2, 0
David S. Miller398d1082006-03-05 16:41:56 -0800433 be,pt %XCC, 85f
434 nop
435 ba,pt %xcc, 90f
436 nop
437
43875:
439 andcc %o0, 0x7, %g1
440 sub %g1, 0x8, %g1
441 be,pn %icc, 2f
442 sub %g0, %g1, %g1
David S. Miller25e5566ed2007-10-02 01:03:09 -0700443 sub %i2, %g1, %i2
David S. Miller398d1082006-03-05 16:41:56 -0800444
4451: subcc %g1, 1, %g1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700446 EX_LD(LOAD(ldub, %i1, %i5), NG_ret_i2_plus_g1_plus_1)
447 EX_ST(STORE(stb, %i5, %i1 + %i3), NG_ret_i2_plus_g1_plus_1)
David S. Miller398d1082006-03-05 16:41:56 -0800448 bgu,pt %icc, 1b
David S. Miller25e5566ed2007-10-02 01:03:09 -0700449 add %i1, 1, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800450
David S. Miller25e5566ed2007-10-02 01:03:09 -07004512: add %i1, %i3, %o0
452 andcc %i1, 0x7, %g1
David S. Miller398d1082006-03-05 16:41:56 -0800453 bne,pt %icc, 8f
454 sll %g1, 3, %g1
455
David S. Miller25e5566ed2007-10-02 01:03:09 -0700456 cmp %i2, 16
David S. Miller398d1082006-03-05 16:41:56 -0800457 bgeu,pt %icc, 72b
458 nop
459 ba,a,pt %xcc, 73b
460
David S. Miller25e5566ed2007-10-02 01:03:09 -07004618: mov 64, %i3
462 andn %i1, 0x7, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700463 EX_LD(LOAD(ldx, %i1, %g2), NG_ret_i2)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700464 sub %i3, %g1, %i3
465 andn %i2, 0x7, %i4
David S. Miller398d1082006-03-05 16:41:56 -0800466 sllx %g2, %g1, %g2
David S. Miller25e5566ed2007-10-02 01:03:09 -07004671: add %i1, 0x8, %i1
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700468 EX_LD(LOAD(ldx, %i1, %g3), NG_ret_i2_and_7_plus_i4)
David S. Miller25e5566ed2007-10-02 01:03:09 -0700469 subcc %i4, 0x8, %i4
470 srlx %g3, %i3, %i5
471 or %i5, %g2, %i5
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700472 EX_ST(STORE(stx, %i5, %o0), NG_ret_i2_and_7_plus_i4)
David S. Miller398d1082006-03-05 16:41:56 -0800473 add %o0, 0x8, %o0
474 bgu,pt %icc, 1b
475 sllx %g3, %g1, %g2
476
477 srl %g1, 3, %g1
David S. Miller25e5566ed2007-10-02 01:03:09 -0700478 andcc %i2, 0x7, %i2
David S. Miller398d1082006-03-05 16:41:56 -0800479 be,pn %icc, 85f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700480 add %i1, %g1, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800481 ba,pt %xcc, 90f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700482 sub %o0, %i1, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800483
484 .align 64
48580: /* 0 < len <= 16 */
David S. Miller25e5566ed2007-10-02 01:03:09 -0700486 andcc %i3, 0x3, %g0
David S. Miller398d1082006-03-05 16:41:56 -0800487 bne,pn %XCC, 90f
David S. Miller25e5566ed2007-10-02 01:03:09 -0700488 sub %o0, %i1, %i3
David S. Miller398d1082006-03-05 16:41:56 -0800489
4901:
David S. Miller25e5566ed2007-10-02 01:03:09 -0700491 subcc %i2, 4, %i2
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700492 EX_LD(LOAD(lduw, %i1, %g1), NG_ret_i2_plus_4)
493 EX_ST(STORE(stw, %g1, %i1 + %i3), NG_ret_i2_plus_4)
David S. Miller398d1082006-03-05 16:41:56 -0800494 bgu,pt %XCC, 1b
David S. Miller25e5566ed2007-10-02 01:03:09 -0700495 add %i1, 4, %i1
David S. Miller398d1082006-03-05 16:41:56 -0800496
David S. Miller25e5566ed2007-10-02 01:03:09 -070049785: ret
498 restore EX_RETVAL(%i0), %g0, %o0
David S. Miller398d1082006-03-05 16:41:56 -0800499
500 .align 32
50190:
David S. Miller25e5566ed2007-10-02 01:03:09 -0700502 subcc %i2, 1, %i2
David S. Miller7ae3aaf2016-10-24 19:32:12 -0700503 EX_LD(LOAD(ldub, %i1, %g1), NG_ret_i2_plus_1)
504 EX_ST(STORE(stb, %g1, %i1 + %i3), NG_ret_i2_plus_1)
David S. Miller398d1082006-03-05 16:41:56 -0800505 bgu,pt %XCC, 90b
David S. Miller25e5566ed2007-10-02 01:03:09 -0700506 add %i1, 1, %i1
507 ret
508 restore EX_RETVAL(%i0), %g0, %o0
David S. Miller398d1082006-03-05 16:41:56 -0800509
510 .size FUNC_NAME, .-FUNC_NAME