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

数学计算

开发平台:

Unix_Linux

  1. dnl  S/390 mpn_addmul_1 -- Multiply a limb vector with a limb and add the
  2. dnl  result to a second limb vector.
  3. dnl  Copyright 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. include(`../config.m4')
  16. define(`rp',2)
  17. define(`up',3)
  18. define(`n',4)
  19. define(`vlimb',5)
  20. define(`cylimb',7)
  21. ASM_START()
  22. PROLOGUE(mpn_addmul_1)
  23. stm 6,7,24(15)
  24. slr cylimb,cylimb # clear cylimb
  25. ltr vlimb,vlimb
  26. jnl .Loopp
  27. .Loopn: l 1,0(up) # load from u
  28. lr 6,1 #
  29. mr 0,vlimb # multiply signed
  30. alr 0,6 # add vlimb to phi
  31. sra 6,31 # make mask
  32. nr 6,vlimb # 0 or vlimb
  33. alr 0,6 # conditionally add vlimb to phi
  34. alr 1,cylimb # add carry limb to plo
  35. brc 8+4,+8 # branch if not carry
  36. ahi 0,1 # increment phi
  37. l 6,0(rp) # load r limb
  38. alr 6,1 # add u limb to plo
  39. brc 8+4,+8 # branch if not carry
  40. ahi 0,1 # increment phi
  41. lr cylimb,0 # new cylimb
  42. st 6,0(rp) # store
  43. la up,4(,up)
  44. la rp,4(,rp)
  45. brct n,.Loopn
  46. lr 2,cylimb
  47. lm 6,7,24(15)
  48. br 14
  49. .Loopp: l 1,0(up) # load from u
  50. lr 6,1 #
  51. mr 0,vlimb # multiply signed
  52. sra 6,31 # make mask
  53. nr 6,vlimb # 0 or vlimb
  54. alr 0,6 # conditionally add vlimb to phi
  55. alr 1,cylimb # add carry limb to plo
  56. brc 8+4,+8 # branch if not carry
  57. ahi 0,1 # increment phi
  58. l 6,0(rp) # load r limb
  59. alr 6,1 # add u limb to plo
  60. brc 8+4,+8 # branch if not carry
  61. ahi 0,1 # increment phi
  62. lr cylimb,0 # new cylimb
  63. st 6,0(rp) # store
  64. la up,4(,up)
  65. la rp,4(,rp)
  66. brct n,.Loopp
  67. lr 2,cylimb
  68. lm 6,7,24(15)
  69. br 14
  70. EPILOGUE(mpn_addmul_1)