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

数学计算

开发平台:

Unix_Linux

  1. dnl  Intel P5 mpn_popcount -- mpn bit population count.
  2. dnl  Copyright 2001, 2002 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C P5: 8.0 cycles/limb
  20. C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
  21. C
  22. C An arithmetic approach has been found to be slower than the table lookup,
  23. C due to needing too many instructions.
  24. C The slightly strange quoting here helps the renaming done by tune/many.pl.
  25. deflit(TABLE_NAME,
  26. m4_assert_defined(`GSYM_PREFIX')
  27. GSYM_PREFIX`'mpn_popcount``'_table')
  28. RODATA
  29. ALIGN(8)
  30. GLOBL TABLE_NAME
  31. TABLE_NAME:
  32. forloop(i,0,255,
  33. ` .byte m4_popcount(i)
  34. ')
  35. defframe(PARAM_SIZE,8)
  36. defframe(PARAM_SRC, 4)
  37. TEXT
  38. ALIGN(8)
  39. PROLOGUE(mpn_popcount)
  40. deflit(`FRAME',0)
  41. movl PARAM_SIZE, %ecx
  42. pushl %esi FRAME_pushl()
  43. ifdef(`PIC',`
  44. pushl %ebx FRAME_pushl()
  45. pushl %ebp FRAME_pushl()
  46. call L(here)
  47. L(here):
  48. popl %ebp
  49. shll %ecx C size in byte pairs
  50. addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ebp
  51. movl PARAM_SRC, %esi
  52. xorl %eax, %eax C total
  53. xorl %ebx, %ebx C byte
  54. movl TABLE_NAME@GOT(%ebp), %ebp
  55. xorl %edx, %edx C byte
  56. define(TABLE,`(%ebp,$1)')
  57. ',`
  58. dnl non-PIC
  59. shll %ecx C size in byte pairs
  60. movl PARAM_SRC, %esi
  61. pushl %ebx FRAME_pushl()
  62. xorl %eax, %eax C total
  63. xorl %ebx, %ebx C byte
  64. xorl %edx, %edx C byte
  65. define(TABLE,`TABLE_NAME`'($1)')
  66. ')
  67. ALIGN(8) C necessary on P55 for claimed speed
  68. L(top):
  69. C eax total
  70. C ebx byte
  71. C ecx counter, 2*size to 2
  72. C edx byte
  73. C esi src
  74. C edi
  75. C ebp [PIC] table
  76. addl %ebx, %eax
  77. movb -1(%esi,%ecx,2), %bl
  78. addl %edx, %eax
  79. movb -2(%esi,%ecx,2), %dl
  80. movb TABLE(%ebx), %bl
  81. decl %ecx
  82. movb TABLE(%edx), %dl
  83. jnz L(top)
  84. ifdef(`PIC',`
  85. popl %ebp
  86. ')
  87. addl %ebx, %eax
  88. popl %ebx
  89. addl %edx, %eax
  90. popl %esi
  91. ret
  92. EPILOGUE()