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

数学计算

开发平台:

Unix_Linux

  1. dnl Alpha mpn_addmul_1 -- Multiply a limb vector with a limb and add the
  2. dnl result to 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. ASM_START()
  26. PROLOGUE(mpn_addmul_1)
  27. ldq r2,0(r17) C r2 = s1_limb
  28. addq r17,8,r17 C s1_ptr++
  29. subq r18,1,r18 C size--
  30. mulq r2,r19,r3 C r3 = prod_low
  31. ldq r5,0(r16) C r5 = *res_ptr
  32. umulh r2,r19,r0 C r0 = prod_high
  33. beq r18,$Lend1 C jump if size was == 1
  34. ldq r2,0(r17) C r2 = s1_limb
  35. addq r17,8,r17 C s1_ptr++
  36. subq r18,1,r18 C size--
  37. addq r5,r3,r3
  38. cmpult r3,r5,r4
  39. stq r3,0(r16)
  40. addq r16,8,r16 C res_ptr++
  41. beq r18,$Lend2 C jump if size was == 2
  42. ALIGN(8)
  43. $Loop: mulq r2,r19,r3 C r3 = prod_low
  44. ldq r5,0(r16) C r5 = *res_ptr
  45. addq r4,r0,r0 C cy_limb = cy_limb + 'cy'
  46. subq r18,1,r18 C size--
  47. umulh r2,r19,r4 C r4 = cy_limb
  48. ldq r2,0(r17) C r2 = s1_limb
  49. addq r17,8,r17 C s1_ptr++
  50. addq r3,r0,r3 C r3 = cy_limb + prod_low
  51. cmpult r3,r0,r0 C r0 = carry from (cy_limb + prod_low)
  52. addq r5,r3,r3
  53. cmpult r3,r5,r5
  54. stq r3,0(r16)
  55. addq r16,8,r16 C res_ptr++
  56. addq r5,r0,r0 C combine carries
  57. bne r18,$Loop
  58. $Lend2: mulq r2,r19,r3 C r3 = prod_low
  59. ldq r5,0(r16) C r5 = *res_ptr
  60. addq r4,r0,r0 C cy_limb = cy_limb + 'cy'
  61. umulh r2,r19,r4 C r4 = cy_limb
  62. addq r3,r0,r3 C r3 = cy_limb + prod_low
  63. cmpult r3,r0,r0 C r0 = carry from (cy_limb + prod_low)
  64. addq r5,r3,r3
  65. cmpult r3,r5,r5
  66. stq r3,0(r16)
  67. addq r5,r0,r0 C combine carries
  68. addq r4,r0,r0 C cy_limb = prod_high + cy
  69. ret r31,(r26),1
  70. $Lend1: addq r5,r3,r3
  71. cmpult r3,r5,r5
  72. stq r3,0(r16)
  73. addq r0,r5,r0
  74. ret r31,(r26),1
  75. EPILOGUE(mpn_addmul_1)
  76. ASM_END()