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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha ev67 mpn_popcount -- mpn bit population count.
  2. dnl  Copyright 2003, 2005 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or
  6. dnl  modify it under the terms of the GNU Lesser General Public License as
  7. dnl  published by the Free Software Foundation; either version 3 of the
  8. dnl  License, or (at your option) any later version.
  9. dnl
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  11. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. dnl  Lesser General Public License for more details.
  14. dnl
  15. dnl  You should have received a copy of the GNU Lesser General Public License
  16. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  17. include(`../config.m4')
  18. C ev67: 1.5 cycles/limb
  19. C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
  20. C
  21. C This schedule seems necessary for the full 1.5 c/l, the IQ can't quite hide
  22. C all latencies, the addq's must be deferred to the next iteration.
  23. C
  24. C Since we need just 3 instructions per limb, further unrolling could approach
  25. C 1.0 c/l.
  26. C
  27. C The main loop processes two limbs at a time.  An odd size is handled by
  28. C processing src[0] at the start.  If the size is even that result is
  29. C discarded, and src[0] is repeated by the main loop.
  30. C
  31. ASM_START()
  32. PROLOGUE(mpn_popcount)
  33. C r16 src
  34. C r17 size
  35. ldq r0, 0(r16) C L0  src[0]
  36. and r17, 1, r8 C U1  1 if size odd
  37. srl r17, 1, r17 C U0  size, limb pairs
  38. s8addq r8, r16, r16 C L1  src++ if size odd
  39. ctpop r0, r0 C U0
  40. beq r17, L(one) C U1  if size==1
  41. cmoveq r8, r31, r0 C L   discard first limb if size even
  42. clr r3 C L
  43. clr r4 C L
  44. unop C U
  45. unop C L
  46. unop C U
  47. ALIGN(16)
  48. L(top):
  49. C r0 total accumulating
  50. C r3 pop 0
  51. C r4 pop 1
  52. C r16 src, incrementing
  53. C r17 size, decrementing
  54. ldq r1, 0(r16) C L
  55. ldq r2, 8(r16) C L
  56. lda r16, 16(r16) C U
  57. lda r17, -1(r17) C U
  58. addq r0, r3, r0 C L
  59. addq r0, r4, r0 C L
  60. ctpop r1, r3 C U0
  61. ctpop r2, r4 C U0
  62. ldl r31, 512(r16) C L prefetch
  63. bne r17, L(top) C U
  64. addq r0, r3, r0 C L
  65. addq r0, r4, r0 C U
  66. L(one):
  67. ret r31, (r26), 1 C L0
  68. EPILOGUE()
  69. ASM_END()