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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32/VMX and PowerPC-64/VMX mpn_popcount.
  2. dnl  Copyright 2006 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C                   cycles/limb
  16. C 7400,7410 (G4):       2.75
  17. C 744x,745x (G4+):      2.25
  18. C 970 (G5):             5.3
  19. C STATUS
  20. C  * Works for all sizes and alignments.
  21. C TODO
  22. C  * Tune the awkward huge n outer loop code.
  23. C  * Two lvx, two vperm, and two vxor could make us a similar hamdist.
  24. C  * For the 970, a combined VMX+intop approach might be best.
  25. C  * Compress cnsts table in 64-bit mode, only half the values are needed.
  26. define(`GMP_LIMB_BYTES', eval(GMP_LIMB_BITS/8))
  27. define(`LIMBS_PER_VR',  eval(16/GMP_LIMB_BYTES))
  28. define(`LIMBS_PER_2VR', eval(32/GMP_LIMB_BYTES))
  29. define(`OPERATION_popcount')
  30. ifdef(`OPERATION_popcount',`
  31.   define(`func',`mpn_popcount')
  32.   define(`up', `r3')
  33.   define(`n', `r4')
  34.   define(`HAM', `dnl')
  35. ')
  36. ifdef(`OPERATION_hamdist',`
  37.   define(`func',`mpn_hamdist')
  38.   define(`up', `r3')
  39.   define(`vp', `r4')
  40.   define(`n', `r5')
  41.   define(`HAM', `$1')
  42. ')
  43. define(`x01010101',`v2')
  44. define(`x00110011',`v7')
  45. define(`x00001111',`v10')
  46. define(`cnt1',`v11')
  47. define(`cnt2',`v12')
  48. define(`cnt4',`v13')
  49. ifelse(GMP_LIMB_BITS,32,`
  50. define(`LIMB32',` $1')
  51. define(`LIMB64',`')
  52. ',`
  53. define(`LIMB32',`')
  54. define(`LIMB64',` $1')
  55. ')
  56. C The inner loop handles up to 2^34 bits, i.e., 2^31 64-limbs, due to overflow
  57. C in vsum4ubs.  For large operands, we work in chunks, of size LIMBS_PER_CHUNK.
  58. define(`LIMBS_PER_CHUNK', 0x1000)
  59. define(`LIMBS_CHUNK_THRES', 0x1001)
  60. ASM_START()
  61. PROLOGUE(mpn_popcount)
  62. mfspr r10, 256
  63. oris r0, r10, 0xfffc C Set VRSAVE bit 0-13
  64. mtspr 256, r0
  65. ifdef(`HAVE_ABI_mode32',
  66. ` rldicl n, n, 0, 32') C zero extend n
  67. C Load various constants into vector registers
  68. LEAL( r11, cnsts)
  69. li r12, 16
  70. vspltisb cnt1, 1 C 0x0101...01 used as shift count
  71. vspltisb cnt2, 2 C 0x0202...02 used as shift count
  72. vspltisb cnt4, 4 C 0x0404...04 used as shift count
  73. lvx x01010101, 0, r11 C 0x3333...33
  74. lvx x00110011, r12, r11 C 0x5555...55
  75. vspltisb x00001111, 15 C 0x0f0f...0f
  76. LIMB64(`lis r0, LIMBS_CHUNK_THRES ')
  77. LIMB64(`cmpd cr7, n, r0 ')
  78. lvx v0, 0, up
  79. addi r7, r11, 96
  80. rlwinm r6, up, 2,26,29
  81. lvx v8, r7, r6
  82. vand v0, v0, v8
  83. LIMB32(`rlwinm r8, up, 30,30,31 ')
  84. LIMB64(`rlwinm r8, up, 29,31,31 ')
  85. add n, n, r8 C compensate n for rounded down `up'
  86. vxor v1, v1, v1
  87. li r8, 0 C grand total count
  88. vxor v3, v3, v3 C zero total count
  89. addic. n, n, -LIMBS_PER_VR
  90. ble L(sum)
  91. addic. n, n, -LIMBS_PER_VR
  92. ble L(lsum)
  93. C For 64-bit machines, handle huge n that would overflow vsum4ubs
  94. LIMB64(`ble cr7, L(small) ')
  95. LIMB64(`addis r9, n, -LIMBS_PER_CHUNK ') C remaining n
  96. LIMB64(`lis n, LIMBS_PER_CHUNK ')
  97. L(small):
  98. LIMB32(`srwi r7, n, 3 ') C loop count corresponding to n
  99. LIMB64(`srdi r7, n, 2 ') C loop count corresponding to n
  100. addi r7, r7, 1
  101. mtctr r7 C copy n to count register
  102. b L(ent)
  103. ALIGN(8)
  104. L(top): lvx v0, 0, up
  105. li r7, 128 C prefetch distance
  106. L(ent): lvx v1, r12, up
  107. addi up, up, 32
  108. vsr v4, v0, cnt1
  109. vsr v5, v1, cnt1
  110. dcbt up, r7 C prefetch
  111. vand v8, v4, x01010101
  112. vand v9, v5, x01010101
  113. vsububm v0, v0, v8 C 64 2-bit accumulators (0..2)
  114. vsububm v1, v1, v9 C 64 2-bit accumulators (0..2)
  115. vsr v4, v0, cnt2
  116. vsr v5, v1, cnt2
  117. vand v8, v0, x00110011
  118. vand v9, v1, x00110011
  119. vand v4, v4, x00110011
  120. vand v5, v5, x00110011
  121. vaddubm v0, v4, v8 C 32 4-bit accumulators (0..4)
  122. vaddubm v1, v5, v9 C 32 4-bit accumulators (0..4)
  123. vaddubm v8, v0, v1 C 32 4-bit accumulators (0..8)
  124. vsr v9, v8, cnt4
  125. vand v6, v8, x00001111
  126. vand v9, v9, x00001111
  127. vaddubm v6, v9, v6 C 16 8-bit accumulators (0..16)
  128. vsum4ubs v3, v6, v3 C sum 4 x 4 bytes into 4 32-bit fields
  129. bdnz L(top)
  130. andi. n, n, eval(LIMBS_PER_2VR-1)
  131. beq L(rt)
  132. lvx v0, 0, up
  133. vxor v1, v1, v1
  134. cmpwi n, LIMBS_PER_VR
  135. ble L(sum)
  136. L(lsum):
  137. vor v1, v0, v0
  138. lvx v0, r12, up
  139. L(sum):
  140. LIMB32(`rlwinm r6, n, 4,26,27 ')
  141. LIMB64(`rlwinm r6, n, 5,26,26 ')
  142. addi r7, r11, 32
  143. lvx v8, r7, r6
  144. vand v0, v0, v8
  145. vsr v4, v0, cnt1
  146. vsr v5, v1, cnt1
  147. vand v8, v4, x01010101
  148. vand v9, v5, x01010101
  149. vsububm v0, v0, v8 C 64 2-bit accumulators (0..2)
  150. vsububm v1, v1, v9 C 64 2-bit accumulators (0..2)
  151. vsr v4, v0, cnt2
  152. vsr v5, v1, cnt2
  153. vand v8, v0, x00110011
  154. vand v9, v1, x00110011
  155. vand v4, v4, x00110011
  156. vand v5, v5, x00110011
  157. vaddubm v0, v4, v8 C 32 4-bit accumulators (0..4)
  158. vaddubm v1, v5, v9 C 32 4-bit accumulators (0..4)
  159. vaddubm v8, v0, v1 C 32 4-bit accumulators (0..8)
  160. vsr v9, v8, cnt4
  161. vand v6, v8, x00001111
  162. vand v9, v9, x00001111
  163. vaddubm v6, v9, v6 C 16 8-bit accumulators (0..16)
  164. vsum4ubs v3, v6, v3 C sum 4 x 4 bytes into 4 32-bit fields
  165. L(rt):
  166. li r7, -16 C FIXME: does all ppc32 and ppc64 ABIs
  167. stvx v3, r7, r1 C FIXME: ...support storing below sp?
  168. lwz r7, -16(r1)
  169. add r8, r8, r7
  170. lwz r7, -12(r1)
  171. add r8, r8, r7
  172. lwz r7, -8(r1)
  173. add r8, r8, r7
  174. lwz r7, -4(r1)
  175. add r8, r8, r7
  176. C Handle outer loop for huge n.  We inherit cr7 and r0 from above.
  177. LIMB64(`ble cr7, L(ret)
  178. vxor v3, v3, v3 C zero total count
  179. mr n, r9
  180. cmpd cr7, n, r0
  181. ble cr7, L(2)
  182. addis r9, n, -LIMBS_PER_CHUNK C remaining n
  183. lis n, LIMBS_PER_CHUNK
  184. L(2): srdi r7, n, 2 C loop count corresponding to n
  185. mtctr r7 C copy n to count register
  186. b L(top)
  187. ')
  188. L(ret): mr r3, r8
  189. mtspr 256, r10
  190. blr
  191. EPILOGUE()
  192. DEF_OBJECT(cnsts,16)
  193. .byte 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55
  194. .byte 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55
  195. .byte 0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33
  196. .byte 0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33
  197. C Masks for high end of number
  198. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  199. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  200. .byte 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00
  201. .byte 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
  202. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  203. .byte 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
  204. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  205. .byte 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00
  206. C Masks for low end of number
  207. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  208. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  209. .byte 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff
  210. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  211. .byte 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
  212. .byte 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
  213. .byte 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
  214. .byte 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff
  215. END_OBJECT(cnsts)
  216. ASM_END()