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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_and_n, mpn_andn_n, mpn_nand_n, mpn_ior_n, mpn_iorn_n,
  2. dnl  mpn_nior_n, mpn_xor_n, mpn_xnor_n -- mpn bitwise logical operations.
  3. dnl  Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
  4. dnl  This file is part of the GNU MP Library.
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  6. dnl  it under the terms of the GNU Lesser General Public License as published
  7. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  8. dnl  your option) any later version.
  9. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  10. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. dnl  License for more details.
  13. dnl  You should have received a copy of the GNU Lesser General Public License
  14. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. include(`../config.m4')
  16. C cycles/limb
  17. C POWER3/PPC630:     1.75
  18. C POWER4/PPC970:     2.10
  19. C   n    POWER3/PPC630   POWER4/PPC970
  20. C     1        15.00        15.33
  21. C     2 7.50 7.99
  22. C     3 5.33 6.00
  23. C     4 4.50 4.74
  24. C     5 4.20 4.39
  25. C     6 3.50 3.99
  26. C     7 3.14 3.64
  27. C     8 3.00 3.36
  28. C     9 3.00 3.36
  29. C    10 2.70 3.25
  30. C    11 2.63 3.11
  31. C    12 2.58 3.00
  32. C    13 2.61 3.02
  33. C    14 2.42 2.82
  34. C    15 2.40 2.79
  35. C    50 2.08 2.67
  36. C   100 1.85 2.31
  37. C   200 1.80 2.18
  38. C   400 1.77 2.14
  39. C  1000 1.76 2.10#
  40. C  2000 1.75# 2.13
  41. C  4000 2.30 2.57
  42. C  8000 2.62 2.58
  43. C 16000 2.52 4.25
  44. C 32000 2.49        16.25
  45. C 64000 2.66        18.76
  46. ifdef(`OPERATION_and_n',
  47. ` define(`func',`mpn_and_n')
  48. define(`logop', `and')')
  49. ifdef(`OPERATION_andn_n',
  50. ` define(`func',`mpn_andn_n')
  51. define(`logop', `andc')')
  52. ifdef(`OPERATION_nand_n',
  53. ` define(`func',`mpn_nand_n')
  54. define(`logop', `nand')')
  55. ifdef(`OPERATION_ior_n',
  56. ` define(`func',`mpn_ior_n')
  57. define(`logop', `or')')
  58. ifdef(`OPERATION_iorn_n',
  59. ` define(`func',`mpn_iorn_n')
  60. define(`logop', `orc')')
  61. ifdef(`OPERATION_nior_n',
  62. ` define(`func',`mpn_nior_n')
  63. define(`logop', `nor')')
  64. ifdef(`OPERATION_xor_n',
  65. ` define(`func',`mpn_xor_n')
  66. define(`logop', `xor')')
  67. ifdef(`OPERATION_xnor_n',
  68. ` define(`func',`mpn_xnor_n')
  69. define(`logop', `eqv')')
  70. C INPUT PARAMETERS
  71. C rp r3
  72. C up r4
  73. C vp r5
  74. C n r6
  75. 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)
  76. ASM_START()
  77. PROLOGUE(func)
  78. ld r8, 0(r4) C read lowest u limb
  79. ld r9, 0(r5) C read lowest v limb
  80. addi r6, r6, 3 C compute branch count (1)
  81. rldic. r0, r6, 3, 59 C r0 = (n-1 & 3) << 3; cr0 = (n == 4(t+1))?
  82. cmpldi cr6, r0, 16 C cr6 = (n cmp 4t + 3)
  83. ifdef(`HAVE_ABI_mode32',
  84. ` rldicl r6, r6, 62,34', C ...branch count
  85. ` rldicl r6, r6, 62, 2') C ...branch count
  86. mtctr r6
  87. ld r6, 0(r4) C read lowest u limb (again)
  88. ld r7, 0(r5) C read lowest v limb (again)
  89. add r5, r5, r0 C offset vp
  90. add r4, r4, r0 C offset up
  91. add r3, r3, r0 C offset rp
  92. beq cr0, L(L01)
  93. blt cr6, L(L10)
  94. beq cr6, L(L11)
  95. b L(L00)
  96. L(oop): ld r8, -24(r4)
  97. ld r9, -24(r5)
  98. logop r10, r6, r7
  99. std r10, -32(r3)
  100. L(L00): ld r6, -16(r4)
  101. ld r7, -16(r5)
  102. logop r10, r8, r9
  103. std r10, -24(r3)
  104. L(L11): ld r8, -8(r4)
  105. ld r9, -8(r5)
  106. logop r10, r6, r7
  107. std r10, -16(r3)
  108. L(L10): ld r6, 0(r4)
  109. ld r7, 0(r5)
  110. logop r10, r8, r9
  111. std r10, -8(r3)
  112. L(L01): addi r5, r5, 32
  113. addi r4, r4, 32
  114. addi r3, r3, 32
  115. bdnz L(oop)
  116. logop r10, r6, r7
  117. std r10, -32(r3)
  118. blr
  119. EPILOGUE()