logops_n.asm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:8k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32/VMX and PowerPC-64/VMX mpn_and_n, mpn_andn_n, mpn_nand_n,
  2. dnl  mpn_ior_n, mpn_iorn_n, mpn_nior_n, mpn_xor_n, mpn_xnor_n -- mpn bitwise
  3. dnl  logical operations.
  4. dnl  Copyright 2006 Free Software Foundation, Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C               and,ior,andn,nior,xor    iorn,xnor         nand
  18. C                   cycles/limb         cycles/limb    cycles/limb
  19. C 7400,7410 (G4):       1.39                 ?              ?
  20. C 744x,745x (G4+):      1.14                1.39           1.39
  21. C 970:                  1.7                 2.0            2.0
  22. C STATUS
  23. C  * Works for all sizes and alignment for 32-bit limbs.
  24. C  * Works for n >= 4 for 64-bit limbs; untested for smaller operands.
  25. C  * Current performance makes this pointless for 970
  26. C TODO
  27. C  * Might want to make variants when just one of the source operands needs
  28. C    vperm, and when neither needs it.  The latter runs 50% faster on 7400.
  29. C  * Idea: If the source operands are equally aligned, we could do the logops
  30. C    first, then vperm before storing!  That means we never need more than one
  31. C    vperm, ever!
  32. C  * Perhaps align `rp' after initial alignment loop?
  33. C  * Instead of having scalar code in the beginning and end, consider using
  34. C    read-modify-write vector code.
  35. C  * Software pipeline?  Hopefully not too important, this is hairy enough
  36. C    already.
  37. C  * At least be more clever about operand loading, i.e., load v operands before
  38. C    u operands, since v operands are sometimes negated.
  39. define(`GMP_LIMB_BYTES', eval(GMP_LIMB_BITS/8))
  40. define(`LIMBS_PER_VR',  eval(16/GMP_LIMB_BYTES))
  41. define(`LIMBS_PER_2VR', eval(32/GMP_LIMB_BYTES))
  42. define(`vnegb', `') C default neg-before to null
  43. define(`vnega', `') C default neg-before to null
  44. ifdef(`OPERATION_and_n',
  45. ` define(`func', `mpn_and_n')
  46. define(`logopS',`and $1,$2,$3')
  47. define(`logop', `vand $1,$2,$3')')
  48. ifdef(`OPERATION_andn_n',
  49. ` define(`func', `mpn_andn_n')
  50. define(`logopS',`andc $1,$2,$3')
  51. define(`logop', `vandc $1,$2,$3')')
  52. ifdef(`OPERATION_nand_n',
  53. ` define(`func', `mpn_nand_n')
  54. define(`logopS',`nand $1,$2,$3')
  55. define(`logop', `vand $1,$2,$3')
  56. define(`vnega', `vnor $1,$2,$2')')
  57. ifdef(`OPERATION_ior_n',
  58. ` define(`func', `mpn_ior_n')
  59. define(`logopS',`or $1,$2,$3')
  60. define(`logop', `vor $1,$2,$3')')
  61. ifdef(`OPERATION_iorn_n',
  62. ` define(`func', `mpn_iorn_n')
  63. define(`logopS',`orc $1,$2,$3')
  64. define(`vnegb', `vnor $1,$2,$2')
  65. define(`logop', `vor $1,$2,$3')')
  66. ifdef(`OPERATION_nior_n',
  67. ` define(`func', `mpn_nior_n')
  68. define(`logopS',`nor $1,$2,$3')
  69. define(`logop', `vnor $1,$2,$3')')
  70. ifdef(`OPERATION_xor_n',
  71. ` define(`func', `mpn_xor_n')
  72. define(`logopS',`xor $1,$2,$3')
  73. define(`logop', `vxor $1,$2,$3')')
  74. ifdef(`OPERATION_xnor_n',
  75. ` define(`func',`mpn_xnor_n')
  76. define(`logopS',`eqv $1,$2,$3')
  77. define(`vnegb', `vnor $1,$2,$2')
  78. define(`logop', `vxor $1,$2,$3')')
  79. ifelse(GMP_LIMB_BITS,`32',`
  80. define(`LIMB32',` $1')
  81. define(`LIMB64',`')
  82. ',`
  83. define(`LIMB32',`')
  84. define(`LIMB64',` $1')
  85. ')
  86. C INPUT PARAMETERS
  87. define(`rp', `r3')
  88. define(`up', `r4')
  89. define(`vp', `r5')
  90. define(`n', `r6')
  91. define(`us', `v8')
  92. define(`vs', `v9')
  93. MULFUNC_PROLOGUE(mpn_and_n mpn_andn_n mpn_nand_n mpn_ior_n mpn_iorn_n mpn_nior_n mpn_xor_n mpn_xnor_n)
  94. ASM_START()
  95. PROLOGUE(func)
  96. LIMB32(`cmpwi cr0, n, 8 ')
  97. LIMB64(`cmpdi cr0, n, 4 ')
  98. bge L(big)
  99. mtctr n
  100. LIMB32(`lwz r8, 0(up) ')
  101. LIMB32(`lwz r9, 0(vp) ')
  102. LIMB32(`logopS( r0, r8, r9) ')
  103. LIMB32(`stw r0, 0(rp) ')
  104. LIMB32(`bdz L(endS) ')
  105. L(topS):
  106. LIMB32(`lwzu r8, 4(up) ')
  107. LIMB64(`ld r8, 0(up) ')
  108. LIMB64(`addi up, up, GMP_LIMB_BYTES ')
  109. LIMB32(`lwzu r9, 4(vp) ')
  110. LIMB64(`ld r9, 0(vp) ')
  111. LIMB64(`addi vp, vp, GMP_LIMB_BYTES ')
  112. logopS( r0, r8, r9)
  113. LIMB32(`stwu r0, 4(rp) ')
  114. LIMB64(`std r0, 0(rp) ')
  115. LIMB64(`addi rp, rp, GMP_LIMB_BYTES ')
  116. bdnz L(topS)
  117. L(endS):
  118. blr
  119. L(big): mfspr r12, 256
  120. oris r0, r12, 0xfffc C Set VRSAVE bit 0-13 FIXME
  121. mtspr 256, r0
  122. C First loop until the destination is 16-byte aligned.  This will execute 0 or 1
  123. C times for 64-bit machines, and 0 to 3 times for 32-bit machines.
  124. LIMB32(`rlwinm. r0, rp, 30,30,31') C (rp >> 2) mod 4
  125. LIMB64(`rlwinm. r0, rp, 29,31,31') C (rp >> 3) mod 2
  126. beq L(aligned)
  127. subfic r7, r0, LIMBS_PER_VR
  128. LIMB32(`li r10, 0 ')
  129. subf n, r7, n
  130. L(top0):
  131. LIMB32(`lwz r8, 0(up) ')
  132. LIMB64(`ld r8, 0(up) ')
  133. addi up, up, GMP_LIMB_BYTES
  134. LIMB32(`lwz r9, 0(vp) ')
  135. LIMB64(`ld r9, 0(vp) ')
  136. addi vp, vp, GMP_LIMB_BYTES
  137. LIMB32(`addic. r7, r7, -1 ')
  138. logopS( r0, r8, r9)
  139. LIMB32(`stwx r0, r10, rp ')
  140. LIMB64(`std r0, 0(rp) ')
  141. LIMB32(`addi r10, r10, GMP_LIMB_BYTES')
  142. LIMB32(`bne L(top0) ')
  143. addi rp, rp, 16 C update rp, but preserve its alignment
  144. L(aligned):
  145. LIMB64(`srdi r7, n, 1 ') C loop count corresponding to n
  146. LIMB32(`srwi r7, n, 2 ') C loop count corresponding to n
  147. mtctr r7 C copy n to count register
  148. li r10, 16
  149. lvsl us, 0, up
  150. lvsl vs, 0, vp
  151. lvx v2, 0, up
  152. lvx v3, 0, vp
  153. bdnz L(gt1)
  154. lvx v0, r10, up
  155. lvx v1, r10, vp
  156. vperm v4, v2, v0, us
  157. vperm v5, v3, v1, vs
  158. vnegb( v5, v5)
  159. logop( v6, v4, v5)
  160. vnega( v6, v6)
  161. stvx v6, 0, rp
  162. addi up, up, 16
  163. addi vp, vp, 16
  164. addi rp, rp, 4
  165. b L(tail)
  166. L(gt1): addi up, up, 16
  167. addi vp, vp, 16
  168. L(top): lvx v0, 0, up
  169. lvx v1, 0, vp
  170. vperm v4, v2, v0, us
  171. vperm v5, v3, v1, vs
  172. vnegb( v5, v5)
  173. logop( v6, v4, v5)
  174. vnega( v6, v6)
  175. stvx v6, 0, rp
  176. bdz L(end)
  177. lvx v2, r10, up
  178. lvx v3, r10, vp
  179. vperm v4, v0, v2, us
  180. vperm v5, v1, v3, vs
  181. vnegb( v5, v5)
  182. logop( v6, v4, v5)
  183. vnega( v6, v6)
  184. stvx v6, r10, rp
  185. addi up, up, 32
  186. addi vp, vp, 32
  187. addi rp, rp, 32
  188. bdnz L(top)
  189. andi. r0, up, 15
  190. vxor v0, v0, v0
  191. beq 1f
  192. lvx v0, 0, up
  193. 1: andi. r0, vp, 15
  194. vxor v1, v1, v1
  195. beq 1f
  196. lvx v1, 0, vp
  197. 1: vperm v4, v2, v0, us
  198. vperm v5, v3, v1, vs
  199. vnegb( v5, v5)
  200. logop( v6, v4, v5)
  201. vnega( v6, v6)
  202. stvx v6, 0, rp
  203. addi rp, rp, 4
  204. b L(tail)
  205. L(end): andi. r0, up, 15
  206. vxor v2, v2, v2
  207. beq 1f
  208. lvx v2, r10, up
  209. 1: andi. r0, vp, 15
  210. vxor v3, v3, v3
  211. beq 1f
  212. lvx v3, r10, vp
  213. 1: vperm v4, v0, v2, us
  214. vperm v5, v1, v3, vs
  215. vnegb( v5, v5)
  216. logop( v6, v4, v5)
  217. vnega( v6, v6)
  218. stvx v6, r10, rp
  219. addi up, up, 16
  220. addi vp, vp, 16
  221. addi rp, rp, 20
  222. L(tail):
  223. LIMB32(`rlwinm. r7, n, 0,30,31 ') C r7 = n mod 4
  224. LIMB64(`rlwinm. r7, n, 0,31,31 ') C r7 = n mod 2
  225. beq L(ret)
  226. addi rp, rp, 15
  227. LIMB32(`rlwinm rp, rp, 0,0,27 ')
  228. LIMB64(`rldicr rp, rp, 0,59 ')
  229. li r10, 0
  230. L(top2):
  231. LIMB32(`lwzx r8, r10, up ')
  232. LIMB64(`ldx r8, r10, up ')
  233. LIMB32(`lwzx r9, r10, vp ')
  234. LIMB64(`ldx r9, r10, vp ')
  235. LIMB32(`addic. r7, r7, -1 ')
  236. logopS( r0, r8, r9)
  237. LIMB32(`stwx r0, r10, rp ')
  238. LIMB64(`std r0, 0(rp) ')
  239. LIMB32(`addi r10, r10, GMP_LIMB_BYTES')
  240. LIMB32(`bne L(top2) ')
  241. L(ret): mtspr 256, r12
  242. blr
  243. EPILOGUE()
  244. C This works for 64-bit PowerPC, since a limb ptr can only be aligned
  245. C in 2 relevant ways, which means we can always find a pair of aligned
  246. C pointers of rp, up, and vp.
  247. C process words until rp is 16-byte aligned
  248. C if (((up | vp) & 15) == 0)
  249. C   process with VMX without any vperm
  250. C else if ((up & 15) != 0 && (vp & 15) != 0)
  251. C   process with VMX using vperm on store data
  252. C else if ((up & 15) != 0)
  253. C   process with VMX using vperm on up data
  254. C else
  255. C   process with VMX using vperm on vp data
  256. C
  257. C rlwinm, r0, up, 0,28,31
  258. C rlwinm r0, vp, 0,28,31
  259. C cmpwi cr7, r0, 0
  260. C cror cr6, cr0, cr7
  261. C crand cr0, cr0, cr7