]> git.proxmox.com Git - ceph.git/blob - ceph/src/erasure-code/isa/isa-l/erasure_code/gf_4vect_dot_prod_avx.asm.s
bump version to 12.0.3-pve3
[ceph.git] / ceph / src / erasure-code / isa / isa-l / erasure_code / gf_4vect_dot_prod_avx.asm.s
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2 ; Copyright(c) 2011-2015 Intel Corporation All rights reserved.
3 ;
4 ; Redistribution and use in source and binary forms, with or without
5 ; modification, are permitted provided that the following conditions
6 ; are met:
7 ; * Redistributions of source code must retain the above copyright
8 ; notice, this list of conditions and the following disclaimer.
9 ; * Redistributions in binary form must reproduce the above copyright
10 ; notice, this list of conditions and the following disclaimer in
11 ; the documentation and/or other materials provided with the
12 ; distribution.
13 ; * Neither the name of Intel Corporation nor the names of its
14 ; contributors may be used to endorse or promote products derived
15 ; from this software without specific prior written permission.
16 ;
17 ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 ; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 ; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 ; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 ; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 ; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 ; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 ; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 ; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 ; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 ; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29
30 ;;;
31 ;;; gf_4vect_dot_prod_avx(len, vec, *g_tbls, **buffs, **dests);
32 ;;;
33
34 %include "reg_sizes.asm"
35
36 %ifidn __OUTPUT_FORMAT__, elf64
37 %define arg0 rdi
38 %define arg1 rsi
39 %define arg2 rdx
40 %define arg3 rcx
41 %define arg4 r8
42 %define arg5 r9
43
44 %define tmp r11
45 %define tmp2 r10
46 %define tmp3 r13 ; must be saved and restored
47 %define tmp4 r12 ; must be saved and restored
48 %define tmp5 r14 ; must be saved and restored
49 %define tmp6 r15 ; must be saved and restored
50 %define return rax
51 %macro SLDR 2
52 %endmacro
53 %define SSTR SLDR
54 %define PS 8
55 %define LOG_PS 3
56
57 %define func(x) x:
58 %macro FUNC_SAVE 0
59 push r12
60 push r13
61 push r14
62 push r15
63 %endmacro
64 %macro FUNC_RESTORE 0
65 pop r15
66 pop r14
67 pop r13
68 pop r12
69 %endmacro
70 %endif
71
72 %ifidn __OUTPUT_FORMAT__, win64
73 %define arg0 rcx
74 %define arg1 rdx
75 %define arg2 r8
76 %define arg3 r9
77
78 %define arg4 r12 ; must be saved, loaded and restored
79 %define arg5 r15 ; must be saved and restored
80 %define tmp r11
81 %define tmp2 r10
82 %define tmp3 r13 ; must be saved and restored
83 %define tmp4 r14 ; must be saved and restored
84 %define tmp5 rdi ; must be saved and restored
85 %define tmp6 rsi ; must be saved and restored
86 %define return rax
87 %macro SLDR 2
88 %endmacro
89 %define SSTR SLDR
90 %define PS 8
91 %define LOG_PS 3
92 %define stack_size 9*16 + 7*8 ; must be an odd multiple of 8
93 %define arg(x) [rsp + stack_size + PS + PS*x]
94
95 %define func(x) proc_frame x
96 %macro FUNC_SAVE 0
97 alloc_stack stack_size
98 save_xmm128 xmm6, 0*16
99 save_xmm128 xmm7, 1*16
100 save_xmm128 xmm8, 2*16
101 save_xmm128 xmm9, 3*16
102 save_xmm128 xmm10, 4*16
103 save_xmm128 xmm11, 5*16
104 save_xmm128 xmm12, 6*16
105 save_xmm128 xmm13, 7*16
106 save_xmm128 xmm14, 8*16
107 save_reg r12, 9*16 + 0*8
108 save_reg r13, 9*16 + 1*8
109 save_reg r14, 9*16 + 2*8
110 save_reg r15, 9*16 + 3*8
111 save_reg rdi, 9*16 + 4*8
112 save_reg rsi, 9*16 + 5*8
113 end_prolog
114 mov arg4, arg(4)
115 %endmacro
116
117 %macro FUNC_RESTORE 0
118 vmovdqa xmm6, [rsp + 0*16]
119 vmovdqa xmm7, [rsp + 1*16]
120 vmovdqa xmm8, [rsp + 2*16]
121 vmovdqa xmm9, [rsp + 3*16]
122 vmovdqa xmm10, [rsp + 4*16]
123 vmovdqa xmm11, [rsp + 5*16]
124 vmovdqa xmm12, [rsp + 6*16]
125 vmovdqa xmm13, [rsp + 7*16]
126 vmovdqa xmm14, [rsp + 8*16]
127 mov r12, [rsp + 9*16 + 0*8]
128 mov r13, [rsp + 9*16 + 1*8]
129 mov r14, [rsp + 9*16 + 2*8]
130 mov r15, [rsp + 9*16 + 3*8]
131 mov rdi, [rsp + 9*16 + 4*8]
132 mov rsi, [rsp + 9*16 + 5*8]
133 add rsp, stack_size
134 %endmacro
135 %endif
136
137 %ifidn __OUTPUT_FORMAT__, elf32
138
139 ;;;================== High Address;
140 ;;; arg4
141 ;;; arg3
142 ;;; arg2
143 ;;; arg1
144 ;;; arg0
145 ;;; return
146 ;;;<================= esp of caller
147 ;;; ebp
148 ;;;<================= ebp = esp
149 ;;; var0
150 ;;; var1
151 ;;; var2
152 ;;; var3
153 ;;; esi
154 ;;; edi
155 ;;; ebx
156 ;;;<================= esp of callee
157 ;;;
158 ;;;================== Low Address;
159
160 %define PS 4
161 %define LOG_PS 2
162 %define func(x) x:
163 %define arg(x) [ebp + PS*2 + PS*x]
164 %define var(x) [ebp - PS - PS*x]
165
166 %define trans ecx
167 %define trans2 esi
168 %define arg0 trans ;trans and trans2 are for the variables in stack
169 %define arg0_m arg(0)
170 %define arg1 ebx
171 %define arg2 arg2_m
172 %define arg2_m arg(2)
173 %define arg3 trans
174 %define arg3_m arg(3)
175 %define arg4 trans
176 %define arg4_m arg(4)
177 %define arg5 trans2
178 %define tmp edx
179 %define tmp2 edi
180 %define tmp3 trans2
181 %define tmp3_m var(0)
182 %define tmp4 trans2
183 %define tmp4_m var(1)
184 %define tmp5 trans2
185 %define tmp5_m var(2)
186 %define tmp6 trans2
187 %define tmp6_m var(3)
188 %define return eax
189 %macro SLDR 2 ;stack load/restore
190 mov %1, %2
191 %endmacro
192 %define SSTR SLDR
193
194 %macro FUNC_SAVE 0
195 push ebp
196 mov ebp, esp
197 sub esp, PS*4 ;4 local variables
198 push esi
199 push edi
200 push ebx
201 mov arg1, arg(1)
202 %endmacro
203
204 %macro FUNC_RESTORE 0
205 pop ebx
206 pop edi
207 pop esi
208 add esp, PS*4 ;4 local variables
209 pop ebp
210 %endmacro
211
212 %endif ; output formats
213
214 %define len arg0
215 %define vec arg1
216 %define mul_array arg2
217 %define src arg3
218 %define dest1 arg4
219 %define ptr arg5
220 %define vec_i tmp2
221 %define dest2 tmp3
222 %define dest3 tmp4
223 %define dest4 tmp5
224 %define vskip3 tmp6
225 %define pos return
226
227 %ifidn PS,4 ;32-bit code
228 %define len_m arg0_m
229 %define src_m arg3_m
230 %define dest1_m arg4_m
231 %define dest2_m tmp3_m
232 %define dest3_m tmp4_m
233 %define dest4_m tmp5_m
234 %define vskip3_m tmp6_m
235 %endif
236
237 %ifndef EC_ALIGNED_ADDR
238 ;;; Use Un-aligned load/store
239 %define XLDR vmovdqu
240 %define XSTR vmovdqu
241 %else
242 ;;; Use Non-temporal load/stor
243 %ifdef NO_NT_LDST
244 %define XLDR vmovdqa
245 %define XSTR vmovdqa
246 %else
247 %define XLDR vmovntdqa
248 %define XSTR vmovntdq
249 %endif
250 %endif
251
252 %ifidn PS,8 ; 64-bit code
253 default rel
254 [bits 64]
255 %endif
256
257
258 section .text
259
260 %ifidn PS,8 ;64-bit code
261 %define xmask0f xmm14
262 %define xgft1_lo xmm13
263 %define xgft1_hi xmm12
264 %define xgft2_lo xmm11
265 %define xgft2_hi xmm10
266 %define xgft3_lo xmm9
267 %define xgft3_hi xmm8
268 %define xgft4_lo xmm7
269 %define xgft4_hi xmm6
270
271 %define x0 xmm0
272 %define xtmpa xmm1
273 %define xp1 xmm2
274 %define xp2 xmm3
275 %define xp3 xmm4
276 %define xp4 xmm5
277 %else
278 %define xmm_trans xmm7 ;reuse xmask0f and xgft1_lo
279 %define xmask0f xmm_trans
280 %define xgft1_lo xmm_trans
281 %define xgft1_hi xmm6
282 %define xgft2_lo xgft1_lo
283 %define xgft2_hi xgft1_hi
284 %define xgft3_lo xgft1_lo
285 %define xgft3_hi xgft1_hi
286 %define xgft4_lo xgft1_lo
287 %define xgft4_hi xgft1_hi
288
289 %define x0 xmm0
290 %define xtmpa xmm1
291 %define xp1 xmm2
292 %define xp2 xmm3
293 %define xp3 xmm4
294 %define xp4 xmm5
295 %endif
296 align 16
297 global gf_4vect_dot_prod_avx:function
298 func(gf_4vect_dot_prod_avx)
299 FUNC_SAVE
300 SLDR len, len_m
301 sub len, 16
302 SSTR len_m, len
303 jl .return_fail
304 xor pos, pos
305 vmovdqa xmask0f, [mask0f] ;Load mask of lower nibble in each byte
306 mov vskip3, vec
307 imul vskip3, 96
308 SSTR vskip3_m, vskip3
309 sal vec, LOG_PS ;vec *= PS. Make vec_i count by PS
310 SLDR dest1, dest1_m
311 mov dest2, [dest1+PS]
312 SSTR dest2_m, dest2
313 mov dest3, [dest1+2*PS]
314 SSTR dest3_m, dest3
315 mov dest4, [dest1+3*PS]
316 SSTR dest4_m, dest4
317 mov dest1, [dest1]
318 SSTR dest1_m, dest1
319
320 .loop16:
321 vpxor xp1, xp1
322 vpxor xp2, xp2
323 vpxor xp3, xp3
324 vpxor xp4, xp4
325 mov tmp, mul_array
326 xor vec_i, vec_i
327
328 .next_vect:
329 SLDR src, src_m
330 mov ptr, [src+vec_i]
331
332 %ifidn PS,8 ;64-bit code
333 vmovdqu xgft1_lo, [tmp] ;Load array Ax{00}, Ax{01}, ..., Ax{0f}
334 vmovdqu xgft1_hi, [tmp+16] ; " Ax{00}, Ax{10}, ..., Ax{f0}
335 vmovdqu xgft2_lo, [tmp+vec*(32/PS)] ;Load array Bx{00}, Bx{01}, ..., Bx{0f}
336 vmovdqu xgft2_hi, [tmp+vec*(32/PS)+16] ; " Bx{00}, Bx{10}, ..., Bx{f0}
337 vmovdqu xgft3_lo, [tmp+vec*(64/PS)] ;Load array Cx{00}, Cx{01}, ..., Cx{0f}
338 vmovdqu xgft3_hi, [tmp+vec*(64/PS)+16] ; " Cx{00}, Cx{10}, ..., Cx{f0}
339 vmovdqu xgft4_lo, [tmp+vskip3] ;Load array Dx{00}, Dx{01}, ..., Dx{0f}
340 vmovdqu xgft4_hi, [tmp+vskip3+16] ; " Dx{00}, Dx{10}, ..., Dx{f0}
341
342 XLDR x0, [ptr+pos] ;Get next source vector
343 add tmp, 32
344 add vec_i, PS
345
346 vpand xtmpa, x0, xmask0f ;Mask low src nibble in bits 4-0
347 vpsraw x0, x0, 4 ;Shift to put high nibble into bits 4-0
348 vpand x0, x0, xmask0f ;Mask high src nibble in bits 4-0
349 %else ;32-bit code
350 XLDR x0, [ptr+pos] ;Get next source vector
351 vmovdqa xmask0f, [mask0f] ;Load mask of lower nibble in each byte
352
353 vpand xtmpa, x0, xmask0f ;Mask low src nibble in bits 4-0
354 vpsraw x0, x0, 4 ;Shift to put high nibble into bits 4-0
355 vpand x0, x0, xmask0f ;Mask high src nibble in bits 4-0
356
357 vmovdqu xgft1_lo, [tmp] ;Load array Ax{00}, Ax{01}, ..., Ax{0f}
358 vmovdqu xgft1_hi, [tmp+16] ; " Ax{00}, Ax{10}, ..., Ax{f0}
359 %endif
360
361 vpshufb xgft1_hi, x0 ;Lookup mul table of high nibble
362 vpshufb xgft1_lo, xtmpa ;Lookup mul table of low nibble
363 vpxor xgft1_hi, xgft1_lo ;GF add high and low partials
364 vpxor xp1, xgft1_hi ;xp1 += partial
365
366 %ifidn PS,4 ;32-bit code
367 vmovdqu xgft2_lo, [tmp+vec*(32/PS)] ;Load array Bx{00}, Bx{01}, ..., Bx{0f}
368 vmovdqu xgft2_hi, [tmp+vec*(32/PS)+16] ; " Bx{00}, Bx{10}, ..., Bx{f0}
369 %endif
370 vpshufb xgft2_hi, x0 ;Lookup mul table of high nibble
371 vpshufb xgft2_lo, xtmpa ;Lookup mul table of low nibble
372 vpxor xgft2_hi, xgft2_lo ;GF add high and low partials
373 vpxor xp2, xgft2_hi ;xp2 += partial
374
375 %ifidn PS,4 ;32-bit code
376 sal vec, 1
377 vmovdqu xgft3_lo, [tmp+vec*(32/PS)] ;Load array Cx{00}, Cx{01}, ..., Cx{0f}
378 vmovdqu xgft3_hi, [tmp+vec*(32/PS)+16] ; " Cx{00}, Cx{10}, ..., Cx{f0}
379 sar vec, 1
380 %endif
381 vpshufb xgft3_hi, x0 ;Lookup mul table of high nibble
382 vpshufb xgft3_lo, xtmpa ;Lookup mul table of low nibble
383 vpxor xgft3_hi, xgft3_lo ;GF add high and low partials
384 vpxor xp3, xgft3_hi ;xp3 += partial
385
386 %ifidn PS,4 ;32-bit code
387 SLDR vskip3, vskip3_m
388 vmovdqu xgft4_lo, [tmp+vskip3] ;Load array Dx{00}, Dx{01}, ..., Dx{0f}
389 vmovdqu xgft4_hi, [tmp+vskip3+16] ; " Dx{00}, Dx{10}, ..., Dx{f0}
390 add tmp, 32
391 add vec_i, PS
392 %endif
393 vpshufb xgft4_hi, x0 ;Lookup mul table of high nibble
394 vpshufb xgft4_lo, xtmpa ;Lookup mul table of low nibble
395 vpxor xgft4_hi, xgft4_lo ;GF add high and low partials
396 vpxor xp4, xgft4_hi ;xp4 += partial
397
398 cmp vec_i, vec
399 jl .next_vect
400
401 SLDR dest1, dest1_m
402 SLDR dest2, dest2_m
403 XSTR [dest1+pos], xp1
404 XSTR [dest2+pos], xp2
405 SLDR dest3, dest3_m
406 XSTR [dest3+pos], xp3
407 SLDR dest4, dest4_m
408 XSTR [dest4+pos], xp4
409
410 SLDR len, len_m
411 add pos, 16 ;Loop on 16 bytes at a time
412 cmp pos, len
413 jle .loop16
414
415 lea tmp, [len + 16]
416 cmp pos, tmp
417 je .return_pass
418
419 ;; Tail len
420 mov pos, len ;Overlapped offset length-16
421 jmp .loop16 ;Do one more overlap pass
422
423 .return_pass:
424 mov return, 0
425 FUNC_RESTORE
426 ret
427
428 .return_fail:
429 mov return, 1
430 FUNC_RESTORE
431 ret
432
433 endproc_frame
434
435 section .data
436
437 align 16
438 mask0f: ddq 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f
439
440 ;;; func core, ver, snum
441 slversion gf_4vect_dot_prod_avx, 02, 05, 0193