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

数学计算

开发平台:

Unix_Linux

  1. dnl  S/390 mpn_mul_1 -- Multiply a limb vector with a limb and store the
  2. dnl  result in 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_mul_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. lr cylimb,0 # new cylimb
  38. st 1,0(rp) # store
  39. la up,4(,up)
  40. la rp,4(,rp)
  41. brct n,.Loopn
  42. lr 2,cylimb
  43. lm 6,7,24(15)
  44. br 14
  45. .Loopp: l 1,0(up) # load from u
  46. lr 6,1 #
  47. mr 0,vlimb # multiply signed
  48. sra 6,31 # make mask
  49. nr 6,vlimb # 0 or vlimb
  50. alr 0,6 # conditionally add vlimb to phi
  51. alr 1,cylimb # add carry limb to plo
  52. brc 8+4,+8 # branch if not carry
  53. ahi 0,1 # increment phi
  54. lr cylimb,0 # new cylimb
  55. st 1,0(rp) # store
  56. la up,4(,up)
  57. la rp,4(,rp)
  58. brct n,.Loopp
  59. lr 2,cylimb
  60. lm 6,7,24(15)
  61. br 14
  62. EPILOGUE(mpn_mul_1)