]> git.proxmox.com Git - ceph.git/blame - ceph/src/erasure-code/isa/isa-l/erasure_code/ec_multibinary.asm.s
bump version to 12.0.3-pve3
[ceph.git] / ceph / src / erasure-code / isa / isa-l / erasure_code / ec_multibinary.asm.s
CommitLineData
7c673cae
FG
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%ifidn __OUTPUT_FORMAT__, elf64
31 %define WRT_OPT wrt ..plt
32%else
33 %define WRT_OPT
34%endif
35
36%include "reg_sizes.asm"
37
38%ifidn __OUTPUT_FORMAT__, elf32
39
40[bits 32]
41
42 %define def_wrd dd
43 %define wrd_sz dword
44 %define arg1 esi
45 %define arg2 eax
46 %define arg3 ebx
47 %define arg4 ecx
48 %define arg5 edx
49
50%else
51
52 default rel
53 [bits 64]
54
55 %define def_wrd dq
56 %define wrd_sz qword
57 %define arg1 rsi
58 %define arg2 rax
59 %define arg3 rbx
60 %define arg4 rcx
61 %define arg5 rdx
62
63
64 extern ec_encode_data_update_sse
65 extern ec_encode_data_update_avx
66 extern ec_encode_data_update_avx2
67 extern gf_vect_mul_sse
68 extern gf_vect_mul_avx
69
70 extern gf_vect_mad_sse
71 extern gf_vect_mad_avx
72 extern gf_vect_mad_avx2
73%endif
74
75extern gf_vect_mul_base
76extern ec_encode_data_base
77extern ec_encode_data_update_base
78extern gf_vect_dot_prod_base
79extern gf_vect_mad_base
80
81extern gf_vect_dot_prod_sse
82extern gf_vect_dot_prod_avx
83extern gf_vect_dot_prod_avx2
84extern ec_encode_data_sse
85extern ec_encode_data_avx
86extern ec_encode_data_avx2
87
88
89section .data
90;;; *_mbinit are initial values for *_dispatched; is updated on first call.
91;;; Therefore, *_dispatch_init is only executed on first call.
92
93ec_encode_data_dispatched:
94 def_wrd ec_encode_data_mbinit
95
96gf_vect_mul_dispatched:
97 def_wrd gf_vect_mul_mbinit
98
99gf_vect_dot_prod_dispatched:
100 def_wrd gf_vect_dot_prod_mbinit
101
102ec_encode_data_update_dispatched:
103 def_wrd ec_encode_data_update_mbinit
104
105gf_vect_mad_dispatched:
106 def_wrd gf_vect_mad_mbinit
107
108section .text
109;;;;
110; ec_encode_data multibinary function
111;;;;
112global ec_encode_data:function
113ec_encode_data_mbinit:
114 call ec_encode_data_dispatch_init
115
116ec_encode_data:
117 jmp wrd_sz [ec_encode_data_dispatched]
118
119ec_encode_data_dispatch_init:
120 push arg1
121 push arg2
122 push arg3
123 push arg4
124 push arg5
125 lea arg1, [ec_encode_data_base WRT_OPT] ; Default
126
127 mov eax, 1
128 cpuid
129 lea arg3, [ec_encode_data_sse WRT_OPT]
130 test ecx, FLAG_CPUID1_ECX_SSE4_1
131 cmovne arg1, arg3
132
133 and ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
134 cmp ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
135 lea arg3, [ec_encode_data_avx WRT_OPT]
136
137 jne _done_ec_encode_data_init
138 mov arg1, arg3
139
140 ;; Try for AVX2
141 xor ecx, ecx
142 mov eax, 7
143 cpuid
144 test ebx, FLAG_CPUID1_EBX_AVX2
145 lea arg3, [ec_encode_data_avx2 WRT_OPT]
146 cmovne arg1, arg3
147 ;; Does it have xmm and ymm support
148 xor ecx, ecx
149 xgetbv
150 and eax, FLAG_XGETBV_EAX_XMM_YMM
151 cmp eax, FLAG_XGETBV_EAX_XMM_YMM
152 je _done_ec_encode_data_init
153 lea arg1, [ec_encode_data_sse WRT_OPT]
154
155_done_ec_encode_data_init:
156 pop arg5
157 pop arg4
158 pop arg3
159 pop arg2
160 mov [ec_encode_data_dispatched], arg1
161 pop arg1
162 ret
163
164;;;;
165; gf_vect_mul multibinary function
166;;;;
167global gf_vect_mul:function
168gf_vect_mul_mbinit:
169 call gf_vect_mul_dispatch_init
170
171gf_vect_mul:
172 jmp wrd_sz [gf_vect_mul_dispatched]
173
174gf_vect_mul_dispatch_init:
175 push arg1
176%ifidn __OUTPUT_FORMAT__, elf32 ;; 32-bit check
177 lea arg1, [gf_vect_mul_base]
178%else
179 push rax
180 push rbx
181 push rcx
182 push rdx
183 lea arg1, [gf_vect_mul_base WRT_OPT] ; Default
184
185 mov eax, 1
186 cpuid
187 test ecx, FLAG_CPUID1_ECX_SSE4_2
188 lea rbx, [gf_vect_mul_sse WRT_OPT]
189 je _done_gf_vect_mul_dispatch_init
190 mov arg1, rbx
191
192 ;; Try for AVX
193 and ecx, (FLAG_CPUID1_ECX_OSXSAVE | FLAG_CPUID1_ECX_AVX)
194 cmp ecx, (FLAG_CPUID1_ECX_OSXSAVE | FLAG_CPUID1_ECX_AVX)
195 jne _done_gf_vect_mul_dispatch_init
196
197 ;; Does it have xmm and ymm support
198 xor ecx, ecx
199 xgetbv
200 and eax, FLAG_XGETBV_EAX_XMM_YMM
201 cmp eax, FLAG_XGETBV_EAX_XMM_YMM
202 jne _done_gf_vect_mul_dispatch_init
203 lea arg1, [gf_vect_mul_avx WRT_OPT]
204
205_done_gf_vect_mul_dispatch_init:
206 pop rdx
207 pop rcx
208 pop rbx
209 pop rax
210%endif ;; END 32-bit check
211 mov [gf_vect_mul_dispatched], arg1
212 pop arg1
213 ret
214
215;;;;
216; ec_encode_data_update multibinary function
217;;;;
218global ec_encode_data_update:function
219ec_encode_data_update_mbinit:
220 call ec_encode_data_update_dispatch_init
221
222ec_encode_data_update:
223 jmp wrd_sz [ec_encode_data_update_dispatched]
224
225ec_encode_data_update_dispatch_init:
226 push arg1
227%ifidn __OUTPUT_FORMAT__, elf32 ;; 32-bit check
228 lea arg1, [ec_encode_data_update_base]
229%else
230 push rax
231 push rbx
232 push rcx
233 push rdx
234 lea arg1, [ec_encode_data_update_base WRT_OPT] ; Default
235
236 mov eax, 1
237 cpuid
238 lea rbx, [ec_encode_data_update_sse WRT_OPT]
239 test ecx, FLAG_CPUID1_ECX_SSE4_1
240 cmovne arg1, rbx
241
242 and ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
243 cmp ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
244 lea rbx, [ec_encode_data_update_avx WRT_OPT]
245
246 jne _done_ec_encode_data_update_init
247 mov rsi, rbx
248
249 ;; Try for AVX2
250 xor ecx, ecx
251 mov eax, 7
252 cpuid
253 test ebx, FLAG_CPUID1_EBX_AVX2
254 lea rbx, [ec_encode_data_update_avx2 WRT_OPT]
255 cmovne rsi, rbx
256
257 ;; Does it have xmm and ymm support
258 xor ecx, ecx
259 xgetbv
260 and eax, FLAG_XGETBV_EAX_XMM_YMM
261 cmp eax, FLAG_XGETBV_EAX_XMM_YMM
262 je _done_ec_encode_data_update_init
263 lea rsi, [ec_encode_data_update_sse WRT_OPT]
264
265_done_ec_encode_data_update_init:
266 pop rdx
267 pop rcx
268 pop rbx
269 pop rax
270%endif ;; END 32-bit check
271 mov [ec_encode_data_update_dispatched], arg1
272 pop arg1
273 ret
274
275;;;;
276; gf_vect_dot_prod multibinary function
277;;;;
278global gf_vect_dot_prod:function
279gf_vect_dot_prod_mbinit:
280 call gf_vect_dot_prod_dispatch_init
281
282gf_vect_dot_prod:
283 jmp wrd_sz [gf_vect_dot_prod_dispatched]
284
285gf_vect_dot_prod_dispatch_init:
286 push arg1
287 push arg2
288 push arg3
289 push arg4
290 push arg5
291 lea arg1, [gf_vect_dot_prod_base WRT_OPT] ; Default
292
293 mov eax, 1
294 cpuid
295 lea arg3, [gf_vect_dot_prod_sse WRT_OPT]
296 test ecx, FLAG_CPUID1_ECX_SSE4_1
297 cmovne arg1, arg3
298
299 and ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
300 cmp ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
301 lea arg3, [gf_vect_dot_prod_avx WRT_OPT]
302
303 jne _done_gf_vect_dot_prod_init
304 mov arg1, arg3
305
306 ;; Try for AVX2
307 xor ecx, ecx
308 mov eax, 7
309 cpuid
310 test ebx, FLAG_CPUID1_EBX_AVX2
311 lea arg3, [gf_vect_dot_prod_avx2 WRT_OPT]
312 cmovne arg1, arg3
313 ;; Does it have xmm and ymm support
314 xor ecx, ecx
315 xgetbv
316 and eax, FLAG_XGETBV_EAX_XMM_YMM
317 cmp eax, FLAG_XGETBV_EAX_XMM_YMM
318 je _done_gf_vect_dot_prod_init
319 lea arg1, [gf_vect_dot_prod_sse WRT_OPT]
320
321_done_gf_vect_dot_prod_init:
322 pop arg5
323 pop arg4
324 pop arg3
325 pop arg2
326 mov [gf_vect_dot_prod_dispatched], arg1
327 pop arg1
328 ret
329
330;;;;
331; gf_vect_mad multibinary function
332;;;;
333global gf_vect_mad:function
334gf_vect_mad_mbinit:
335 call gf_vect_mad_dispatch_init
336
337gf_vect_mad:
338 jmp wrd_sz [gf_vect_mad_dispatched]
339
340gf_vect_mad_dispatch_init:
341 push arg1
342%ifidn __OUTPUT_FORMAT__, elf32 ;; 32-bit check
343 lea arg1, [gf_vect_mad_base]
344%else
345 push rax
346 push rbx
347 push rcx
348 push rdx
349 lea arg1, [gf_vect_mad_base WRT_OPT] ; Default
350
351 mov eax, 1
352 cpuid
353 lea rbx, [gf_vect_mad_sse WRT_OPT]
354 test ecx, FLAG_CPUID1_ECX_SSE4_1
355 cmovne arg1, rbx
356
357 and ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
358 cmp ecx, (FLAG_CPUID1_ECX_AVX | FLAG_CPUID1_ECX_OSXSAVE)
359 lea rbx, [gf_vect_mad_avx WRT_OPT]
360
361 jne _done_gf_vect_mad_init
362 mov rsi, rbx
363
364 ;; Try for AVX2
365 xor ecx, ecx
366 mov eax, 7
367 cpuid
368 test ebx, FLAG_CPUID1_EBX_AVX2
369 lea rbx, [gf_vect_mad_avx2 WRT_OPT]
370 cmovne rsi, rbx
371
372 ;; Does it have xmm and ymm support
373 xor ecx, ecx
374 xgetbv
375 and eax, FLAG_XGETBV_EAX_XMM_YMM
376 cmp eax, FLAG_XGETBV_EAX_XMM_YMM
377 je _done_gf_vect_mad_init
378 lea rsi, [gf_vect_mad_sse WRT_OPT]
379
380_done_gf_vect_mad_init:
381 pop rdx
382 pop rcx
383 pop rbx
384 pop rax
385%endif ;; END 32-bit check
386 mov [gf_vect_mad_dispatched], arg1
387 pop arg1
388 ret
389
390;;; func core, ver, snum
391slversion ec_encode_data, 00, 04, 0133
392slversion gf_vect_mul, 00, 03, 0134
393slversion ec_encode_data_update, 00, 03, 0212
394slversion gf_vect_dot_prod, 00, 03, 0138
395slversion gf_vect_mad, 00, 02, 0213