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

数学计算

开发平台:

Unix_Linux

  1. dnl  IBM POWER mpn_submul_1 -- Multiply a limb vector with a limb and subtract
  2. dnl  the result from a second limb vector.
  3. dnl  Copyright 1992, 1994, 1999, 2000, 2001 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. dnl  INPUT PARAMETERS
  16. dnl  res_ptr r3
  17. dnl  s1_ptr r4
  18. dnl  size r5
  19. dnl  s2_limb r6
  20. dnl  The POWER architecture has no unsigned 32x32->64 bit multiplication
  21. dnl  instruction.  To obtain that operation, we have to use the 32x32->64
  22. dnl  signed multiplication instruction, and add the appropriate compensation to
  23. dnl  the high limb of the result.  We add the multiplicand if the multiplier
  24. dnl  has its most significant bit set, and we add the multiplier if the
  25. dnl  multiplicand has its most significant bit set.  We need to preserve the
  26. dnl  carry flag between each iteration, so we have to compute the compensation
  27. dnl  carefully (the natural, srai+and doesn't work).  Since all POWER can
  28. dnl  branch in zero cycles, we use conditional branches for the compensation.
  29. include(`../config.m4')
  30. ASM_START()
  31. PROLOGUE(mpn_submul_1)
  32. cal 3,-4(3)
  33. l 0,0(4)
  34. cmpi 0,6,0
  35. mtctr 5
  36. mul 9,0,6
  37. srai 7,0,31
  38. and 7,7,6
  39. mfmq 11
  40. cax 9,9,7
  41. l 7,4(3)
  42. sf 8,11,7 C add res_limb
  43. a 11,8,11 C invert cy (r11 is junk)
  44. blt Lneg
  45. Lpos: bdz Lend
  46. Lploop: lu 0,4(4)
  47. stu 8,4(3)
  48. cmpi 0,0,0
  49. mul 10,0,6
  50. mfmq 0
  51. ae 11,0,9 C low limb + old_cy_limb + old cy
  52. l 7,4(3)
  53. aze 10,10 C propagate cy to new cy_limb
  54. sf 8,11,7 C add res_limb
  55. a 11,8,11 C invert cy (r11 is junk)
  56. bge Lp0
  57. cax 10,10,6 C adjust high limb for negative limb from s1
  58. Lp0: bdz Lend0
  59. lu 0,4(4)
  60. stu 8,4(3)
  61. cmpi 0,0,0
  62. mul 9,0,6
  63. mfmq 0
  64. ae 11,0,10
  65. l 7,4(3)
  66. aze 9,9
  67. sf 8,11,7
  68. a 11,8,11 C invert cy (r11 is junk)
  69. bge Lp1
  70. cax 9,9,6 C adjust high limb for negative limb from s1
  71. Lp1: bdn Lploop
  72. b Lend
  73. Lneg: cax 9,9,0
  74. bdz Lend
  75. Lnloop: lu 0,4(4)
  76. stu 8,4(3)
  77. cmpi 0,0,0
  78. mul 10,0,6
  79. mfmq 7
  80. ae 11,7,9
  81. l 7,4(3)
  82. ae 10,10,0 C propagate cy to new cy_limb
  83. sf 8,11,7 C add res_limb
  84. a 11,8,11 C invert cy (r11 is junk)
  85. bge Ln0
  86. cax 10,10,6 C adjust high limb for negative limb from s1
  87. Ln0: bdz Lend0
  88. lu 0,4(4)
  89. stu 8,4(3)
  90. cmpi 0,0,0
  91. mul 9,0,6
  92. mfmq 7
  93. ae 11,7,10
  94. l 7,4(3)
  95. ae 9,9,0 C propagate cy to new cy_limb
  96. sf 8,11,7 C add res_limb
  97. a 11,8,11 C invert cy (r11 is junk)
  98. bge Ln1
  99. cax 9,9,6 C adjust high limb for negative limb from s1
  100. Ln1: bdn Lnloop
  101. b Lend
  102. Lend0: cal 9,0(10)
  103. Lend: st 8,4(3)
  104. aze 3,9
  105. br
  106. EPILOGUE(mpn_submul_1)