gf_3vect_mad_sse.asm 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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. ;;; gf_3vect_mad_sse(len, vec, vec_i, mul_array, src, dest);
  31. ;;;
  32. %include "reg_sizes.asm"
  33. %define PS 8
  34. %ifidn __OUTPUT_FORMAT__, win64
  35. %define arg0 rcx
  36. %define arg0.w ecx
  37. %define arg1 rdx
  38. %define arg2 r8
  39. %define arg3 r9
  40. %define arg4 r12
  41. %define arg5 r15
  42. %define tmp r11
  43. %define return rax
  44. %define return.w eax
  45. %define stack_size 16*10 + 3*8
  46. %define arg(x) [rsp + stack_size + PS + PS*x]
  47. %define func(x) proc_frame x
  48. %macro FUNC_SAVE 0
  49. sub rsp, stack_size
  50. movdqa [rsp+16*0],xmm6
  51. movdqa [rsp+16*1],xmm7
  52. movdqa [rsp+16*2],xmm8
  53. movdqa [rsp+16*3],xmm9
  54. movdqa [rsp+16*4],xmm10
  55. movdqa [rsp+16*5],xmm11
  56. movdqa [rsp+16*6],xmm12
  57. movdqa [rsp+16*7],xmm13
  58. movdqa [rsp+16*8],xmm14
  59. movdqa [rsp+16*9],xmm15
  60. save_reg r12, 10*16 + 0*8
  61. save_reg r15, 10*16 + 1*8
  62. end_prolog
  63. mov arg4, arg(4)
  64. mov arg5, arg(5)
  65. %endmacro
  66. %macro FUNC_RESTORE 0
  67. movdqa xmm6, [rsp+16*0]
  68. movdqa xmm7, [rsp+16*1]
  69. movdqa xmm8, [rsp+16*2]
  70. movdqa xmm9, [rsp+16*3]
  71. movdqa xmm10, [rsp+16*4]
  72. movdqa xmm11, [rsp+16*5]
  73. movdqa xmm12, [rsp+16*6]
  74. movdqa xmm13, [rsp+16*7]
  75. movdqa xmm14, [rsp+16*8]
  76. movdqa xmm15, [rsp+16*9]
  77. mov r12, [rsp + 10*16 + 0*8]
  78. mov r15, [rsp + 10*16 + 1*8]
  79. add rsp, stack_size
  80. %endmacro
  81. %elifidn __OUTPUT_FORMAT__, elf64
  82. %define arg0 rdi
  83. %define arg0.w edi
  84. %define arg1 rsi
  85. %define arg2 rdx
  86. %define arg3 rcx
  87. %define arg4 r8
  88. %define arg5 r9
  89. %define tmp r11
  90. %define return rax
  91. %define return.w eax
  92. %define func(x) x:
  93. %define FUNC_SAVE
  94. %define FUNC_RESTORE
  95. %endif
  96. ;;; gf_3vect_mad_sse(len, vec, vec_i, mul_array, src, dest)
  97. %define len arg0
  98. %define len.w arg0.w
  99. %define vec arg1
  100. %define vec_i arg2
  101. %define mul_array arg3
  102. %define src arg4
  103. %define dest1 arg5
  104. %define pos return
  105. %define pos.w return.w
  106. %define dest2 mul_array
  107. %define dest3 vec_i
  108. %ifndef EC_ALIGNED_ADDR
  109. ;;; Use Un-aligned load/store
  110. %define XLDR movdqu
  111. %define XSTR movdqu
  112. %else
  113. ;;; Use Non-temporal load/stor
  114. %ifdef NO_NT_LDST
  115. %define XLDR movdqa
  116. %define XSTR movdqa
  117. %else
  118. %define XLDR movntdqa
  119. %define XSTR movntdq
  120. %endif
  121. %endif
  122. default rel
  123. [bits 64]
  124. section .text
  125. %define xmask0f xmm15
  126. %define xgft1_lo xmm14
  127. %define xgft1_hi xmm13
  128. %define xgft2_lo xmm12
  129. %define xgft2_hi xmm11
  130. %define xgft3_lo xmm10
  131. %define xgft3_hi xmm9
  132. %define x0 xmm0
  133. %define xtmpa xmm1
  134. %define xtmph1 xmm2
  135. %define xtmpl1 xmm3
  136. %define xtmph2 xmm4
  137. %define xtmpl2 xmm5
  138. %define xtmph3 xmm6
  139. %define xtmpl3 xmm7
  140. %define xd1 xmm8
  141. %define xd2 xtmpl1
  142. %define xd3 xtmph1
  143. align 16
  144. global gf_3vect_mad_sse:ISAL_SYM_TYPE_FUNCTION
  145. func(gf_3vect_mad_sse)
  146. %ifidn __OUTPUT_FORMAT__, macho64
  147. global _gf_3vect_mad_sse:ISAL_SYM_TYPE_FUNCTION
  148. func(_gf_3vect_mad_sse)
  149. %endif
  150. FUNC_SAVE
  151. sub len, 16
  152. jl .return_fail
  153. xor pos, pos
  154. movdqa xmask0f, [mask0f] ;Load mask of lower nibble in each byte
  155. sal vec_i, 5 ;Multiply by 32
  156. sal vec, 5
  157. lea tmp, [mul_array + vec_i]
  158. movdqu xgft1_lo, [tmp] ;Load array Ax{00}, Ax{01}, Ax{02}, ...
  159. movdqu xgft1_hi, [tmp+16] ; " Ax{00}, Ax{10}, Ax{20}, ... , Ax{f0}
  160. movdqu xgft2_lo, [tmp+vec] ;Load array Bx{00}, Bx{01}, Bx{02}, ...
  161. movdqu xgft2_hi, [tmp+vec+16] ; " Bx{00}, Bx{10}, Bx{20}, ... , Bx{f0}
  162. movdqu xgft3_lo, [tmp+2*vec] ;Load array Cx{00}, Cx{01}, Cx{02}, ...
  163. movdqu xgft3_hi, [tmp+2*vec+16] ; " Cx{00}, Cx{10}, Cx{20}, ... , Cx{f0}
  164. mov dest2, [dest1+PS] ; reuse mul_array
  165. mov dest3, [dest1+2*PS] ; reuse vec_i
  166. mov dest1, [dest1]
  167. .loop16:
  168. XLDR x0, [src+pos] ;Get next source vector
  169. movdqa xtmph1, xgft1_hi ;Reload const array registers
  170. movdqa xtmpl1, xgft1_lo
  171. movdqa xtmph2, xgft2_hi ;Reload const array registers
  172. movdqa xtmpl2, xgft2_lo
  173. movdqa xtmph3, xgft3_hi ;Reload const array registers
  174. movdqa xtmpl3, xgft3_lo
  175. XLDR xd1, [dest1+pos] ;Get next dest vector
  176. movdqa xtmpa, x0 ;Keep unshifted copy of src
  177. psraw x0, 4 ;Shift to put high nibble into bits 4-0
  178. pand x0, xmask0f ;Mask high src nibble in bits 4-0
  179. pand xtmpa, xmask0f ;Mask low src nibble in bits 4-0
  180. ; dest1
  181. pshufb xtmph1, x0 ;Lookup mul table of high nibble
  182. pshufb xtmpl1, xtmpa ;Lookup mul table of low nibble
  183. pxor xtmph1, xtmpl1 ;GF add high and low partials
  184. pxor xd1, xtmph1
  185. XLDR xd2, [dest2+pos] ;reuse xtmpl1. Get next dest vector
  186. XLDR xd3, [dest3+pos] ;reuse xtmph1. Get next dest vector
  187. ; dest2
  188. pshufb xtmph2, x0 ;Lookup mul table of high nibble
  189. pshufb xtmpl2, xtmpa ;Lookup mul table of low nibble
  190. pxor xtmph2, xtmpl2 ;GF add high and low partials
  191. pxor xd2, xtmph2
  192. ; dest3
  193. pshufb xtmph3, x0 ;Lookup mul table of high nibble
  194. pshufb xtmpl3, xtmpa ;Lookup mul table of low nibble
  195. pxor xtmph3, xtmpl3 ;GF add high and low partials
  196. pxor xd3, xtmph3
  197. XSTR [dest1+pos], xd1 ;Store result
  198. XSTR [dest2+pos], xd2 ;Store result
  199. XSTR [dest3+pos], xd3 ;Store result
  200. add pos, 16 ;Loop on 16 bytes at a time
  201. cmp pos, len
  202. jle .loop16
  203. lea tmp, [len + 16]
  204. cmp pos, tmp
  205. je .return_pass
  206. .lessthan16:
  207. ;; Tail len
  208. ;; Do one more overlap pass
  209. mov tmp, len ;Overlapped offset length-16
  210. XLDR x0, [src+tmp] ;Get next source vector
  211. XLDR xd1, [dest1+tmp] ;Get next dest vector
  212. XLDR xd2, [dest2+tmp] ;reuse xtmpl1. Get next dest vector
  213. XLDR xd3, [dest3+tmp] ;reuse xtmph1. Get next dest vector
  214. sub len, pos
  215. movdqa xtmph3, [constip16] ;Load const of i + 16
  216. pinsrb xtmpl3, len.w, 15
  217. pshufb xtmpl3, xmask0f ;Broadcast len to all bytes
  218. pcmpgtb xtmpl3, xtmph3
  219. movdqa xtmpa, x0 ;Keep unshifted copy of src
  220. psraw x0, 4 ;Shift to put high nibble into bits 4-0
  221. pand x0, xmask0f ;Mask high src nibble in bits 4-0
  222. pand xtmpa, xmask0f ;Mask low src nibble in bits 4-0
  223. ; dest1
  224. pshufb xgft1_hi, x0 ;Lookup mul table of high nibble
  225. pshufb xgft1_lo, xtmpa ;Lookup mul table of low nibble
  226. pxor xgft1_hi, xgft1_lo ;GF add high and low partials
  227. pand xgft1_hi, xtmpl3
  228. pxor xd1, xgft1_hi
  229. ; dest2
  230. pshufb xgft2_hi, x0 ;Lookup mul table of high nibble
  231. pshufb xgft2_lo, xtmpa ;Lookup mul table of low nibble
  232. pxor xgft2_hi, xgft2_lo ;GF add high and low partials
  233. pand xgft2_hi, xtmpl3
  234. pxor xd2, xgft2_hi
  235. ; dest3
  236. pshufb xgft3_hi, x0 ;Lookup mul table of high nibble
  237. pshufb xgft3_lo, xtmpa ;Lookup mul table of low nibble
  238. pxor xgft3_hi, xgft3_lo ;GF add high and low partials
  239. pand xgft3_hi, xtmpl3
  240. pxor xd3, xgft3_hi
  241. XSTR [dest1+tmp], xd1 ;Store result
  242. XSTR [dest2+tmp], xd2 ;Store result
  243. XSTR [dest3+tmp], xd3 ;Store result
  244. .return_pass:
  245. FUNC_RESTORE
  246. mov return, 0
  247. ret
  248. .return_fail:
  249. FUNC_RESTORE
  250. mov return, 1
  251. ret
  252. endproc_frame
  253. section .data
  254. align 16
  255. mask0f:
  256. dq 0x0f0f0f0f0f0f0f0f, 0x0f0f0f0f0f0f0f0f
  257. constip16:
  258. dq 0xf8f9fafbfcfdfeff, 0xf0f1f2f3f4f5f6f7
  259. ;;; func core, ver, snum
  260. slversion gf_3vect_mad_sse, 00, 01, 0206