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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD64 logops.
  2. dnl  Copyright 2004, 2005, 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 K8,K9:  1.5
  17. C K10:  1.75-2 (fluctuating)
  18. C P4:  2.8/3.35/3.60 (variant1/variant2/variant3)
  19. C P6-15:  2.0
  20. ifdef(`OPERATION_and_n',`
  21.   define(`func',`mpn_and_n')
  22.   define(`VARIANT_1')
  23.   define(`LOGOP',`andq')')
  24. ifdef(`OPERATION_andn_n',`
  25.   define(`func',`mpn_andn_n')
  26.   define(`VARIANT_2')
  27.   define(`LOGOP',`andq')')
  28. ifdef(`OPERATION_nand_n',`
  29.   define(`func',`mpn_nand_n')
  30.   define(`VARIANT_3')
  31.   define(`LOGOP',`andq')')
  32. ifdef(`OPERATION_ior_n',`
  33.   define(`func',`mpn_ior_n')
  34.   define(`VARIANT_1')
  35.   define(`LOGOP',`orq')')
  36. ifdef(`OPERATION_iorn_n',`
  37.   define(`func',`mpn_iorn_n')
  38.   define(`VARIANT_2')
  39.   define(`LOGOP',`orq')')
  40. ifdef(`OPERATION_nior_n',`
  41.   define(`func',`mpn_nior_n')
  42.   define(`VARIANT_3')
  43.   define(`LOGOP',`orq')')
  44. ifdef(`OPERATION_xor_n',`
  45.   define(`func',`mpn_xor_n')
  46.   define(`VARIANT_1')
  47.   define(`LOGOP',`xorq')')
  48. ifdef(`OPERATION_xnor_n',`
  49.   define(`func',`mpn_xnor_n')
  50.   define(`VARIANT_2')
  51.   define(`LOGOP',`xorq')')
  52. 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)
  53. C INPUT PARAMETERS
  54. define(`rp',`%rdi')
  55. define(`up',`%rsi')
  56. define(`vp',`%rdx')
  57. define(`n',`%rcx')
  58. ASM_START()
  59. ifdef(`VARIANT_1',`
  60. TEXT
  61. ALIGN(32)
  62. PROLOGUE(func)
  63. movq (vp), %r8
  64. movl %ecx, %eax
  65. leaq (vp,n,8), vp
  66. leaq (up,n,8), up
  67. leaq (rp,n,8), rp
  68. negq n
  69. andl $3, %eax
  70. je L(b00)
  71. cmpl $2, %eax
  72. jc L(b01)
  73. je L(b10)
  74. L(b11): LOGOP (up,n,8), %r8
  75. movq %r8, (rp,n,8)
  76. decq n
  77. jmp L(e11)
  78. L(b10): addq $-2, n
  79. jmp L(e10)
  80. L(b01): LOGOP (up,n,8), %r8
  81. movq %r8, (rp,n,8)
  82. incq n
  83. jz L(ret)
  84. L(oop): movq (vp,n,8), %r8
  85. L(b00): movq 8(vp,n,8), %r9
  86. LOGOP (up,n,8), %r8
  87. LOGOP 8(up,n,8), %r9
  88. nop
  89. movq %r8, (rp,n,8)
  90. movq %r9, 8(rp,n,8)
  91. L(e11): movq 16(vp,n,8), %r8
  92. L(e10): movq 24(vp,n,8), %r9
  93. LOGOP 16(up,n,8), %r8
  94. LOGOP 24(up,n,8), %r9
  95. movq %r8, 16(rp,n,8)
  96. movq %r9, 24(rp,n,8)
  97. addq $4, n
  98. jnc L(oop)
  99. L(ret): ret
  100. EPILOGUE()
  101. ')
  102. ifdef(`VARIANT_2',`
  103. TEXT
  104. ALIGN(32)
  105. PROLOGUE(func)
  106. movq (vp), %r8
  107. notq %r8
  108. movl %ecx, %eax
  109. leaq (vp,n,8), vp
  110. leaq (up,n,8), up
  111. leaq (rp,n,8), rp
  112. negq n
  113. andl $3, %eax
  114. je L(b00)
  115. cmpl $2, %eax
  116. jc L(b01)
  117. je L(b10)
  118. L(b11): LOGOP (up,n,8), %r8
  119. movq %r8, (rp,n,8)
  120. decq n
  121. jmp L(e11)
  122. L(b10): addq $-2, n
  123. jmp L(e10)
  124. .byte 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
  125. L(b01): LOGOP (up,n,8), %r8
  126. movq %r8, (rp,n,8)
  127. incq n
  128. jz L(ret)
  129. L(oop): movq (vp,n,8), %r8
  130. notq %r8
  131. L(b00): movq 8(vp,n,8), %r9
  132. notq %r9
  133. LOGOP (up,n,8), %r8
  134. LOGOP 8(up,n,8), %r9
  135. movq %r8, (rp,n,8)
  136. movq %r9, 8(rp,n,8)
  137. L(e11): movq 16(vp,n,8), %r8
  138. notq %r8
  139. L(e10): movq 24(vp,n,8), %r9
  140. notq %r9
  141. LOGOP 16(up,n,8), %r8
  142. LOGOP 24(up,n,8), %r9
  143. movq %r8, 16(rp,n,8)
  144. movq %r9, 24(rp,n,8)
  145. addq $4, n
  146. jnc L(oop)
  147. L(ret): ret
  148. EPILOGUE()
  149. ')
  150. ifdef(`VARIANT_3',`
  151. TEXT
  152. ALIGN(32)
  153. PROLOGUE(func)
  154. movq (vp), %r8
  155. movl %ecx, %eax
  156. leaq (vp,n,8), vp
  157. leaq (up,n,8), up
  158. leaq (rp,n,8), rp
  159. negq n
  160. andl $3, %eax
  161. je L(b00)
  162. cmpl $2, %eax
  163. jc L(b01)
  164. je L(b10)
  165. L(b11): LOGOP (up,n,8), %r8
  166. notq %r8
  167. movq %r8, (rp,n,8)
  168. decq n
  169. jmp L(e11)
  170. L(b10): addq $-2, n
  171. jmp L(e10)
  172. .byte 0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90
  173. L(b01): LOGOP (up,n,8), %r8
  174. notq %r8
  175. movq %r8, (rp,n,8)
  176. incq n
  177. jz L(ret)
  178. L(oop): movq (vp,n,8), %r8
  179. L(b00): movq 8(vp,n,8), %r9
  180. LOGOP (up,n,8), %r8
  181. notq %r8
  182. LOGOP 8(up,n,8), %r9
  183. notq %r9
  184. movq %r8, (rp,n,8)
  185. movq %r9, 8(rp,n,8)
  186. L(e11): movq 16(vp,n,8), %r8
  187. L(e10): movq 24(vp,n,8), %r9
  188. LOGOP 16(up,n,8), %r8
  189. notq %r8
  190. LOGOP 24(up,n,8), %r9
  191. notq %r9
  192. movq %r8, 16(rp,n,8)
  193. movq %r9, 24(rp,n,8)
  194. addq $4, n
  195. jnc L(oop)
  196. L(ret): ret
  197. EPILOGUE()
  198. ')