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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha mpn_mul_1 -- Multiply a limb vector with a limb and store
  2. dnl  the result in a second limb vector.
  3. dnl  Copyright 1992, 1994, 1995, 2000, 2002 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 EV4:     42
  18. C EV5:     18
  19. C EV6:      7
  20. C  INPUT PARAMETERS
  21. C  rp r16
  22. C  up r17
  23. C  n r18
  24. C  vl r19
  25. C  cl r20
  26. ASM_START()
  27. PROLOGUE(mpn_mul_1c)
  28. ldq r2,0(r17) C r2 = s1_limb
  29. lda r18,-1(r18) C size--
  30. mulq r2,r19,r3 C r3 = prod_low
  31. umulh r2,r19,r4 C r4 = prod_high
  32. beq r18,$Le1c C jump if size was == 1
  33. ldq r2,8(r17) C r2 = s1_limb
  34. lda r18,-1(r18) C size--
  35. addq r3,r20,r3 C r3 = cy_limb + cl
  36. stq r3,0(r16)
  37. cmpult r3,r20,r0 C r0 = carry from (cy_limb + cl)
  38. bne r18,$Loop C jump if size was == 2
  39. br r31,$Le2
  40. $Le1c: addq r3,r20,r3 C r3 = cy_limb + cl
  41. cmpult r3,r20,r0 C r0 = carry from (cy_limb + cl)
  42. $Le1: stq r3,0(r16)
  43. addq r4,r0,r0
  44. ret r31,(r26),1
  45. EPILOGUE(mpn_mul_1c)
  46. PROLOGUE(mpn_mul_1)
  47. ldq r2,0(r17) C r2 = s1_limb
  48. lda r18,-1(r18) C size--
  49. mulq r2,r19,r3 C r3 = prod_low
  50. bic r31,r31,r0 C clear cy_limb
  51. umulh r2,r19,r4 C r4 = prod_high
  52. beq r18,$Le1 C jump if size was == 1
  53. ldq r2,8(r17) C r2 = s1_limb
  54. lda r18,-1(r18) C size--
  55. stq r3,0(r16)
  56. beq r18,$Le2 C jump if size was == 2
  57. ALIGN(8)
  58. $Loop: mulq r2,r19,r3 C r3 = prod_low
  59. addq r4,r0,r0 C cy_limb = cy_limb + 'cy'
  60. lda r18,-1(r18) C size--
  61. umulh r2,r19,r4 C r4 = prod_high
  62. ldq r2,16(r17) C r2 = s1_limb
  63. lda r17,8(r17) C s1_ptr++
  64. addq r3,r0,r3 C r3 = cy_limb + prod_low
  65. stq r3,8(r16)
  66. cmpult r3,r0,r0 C r0 = carry from (cy_limb + prod_low)
  67. lda r16,8(r16) C res_ptr++
  68. bne r18,$Loop
  69. $Le2: mulq r2,r19,r3 C r3 = prod_low
  70. addq r4,r0,r0 C cy_limb = cy_limb + 'cy'
  71. umulh r2,r19,r4 C r4 = prod_high
  72. addq r3,r0,r3 C r3 = cy_limb + prod_low
  73. cmpult r3,r0,r0 C r0 = carry from (cy_limb + prod_low)
  74. stq r3,8(r16)
  75. addq r4,r0,r0 C cy_limb = prod_high + cy
  76. ret r31,(r26),1
  77. EPILOGUE(mpn_mul_1)
  78. ASM_END()