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

数学计算

开发平台:

Unix_Linux

  1. dnl  MIPS64 mpn_mul_1 -- Multiply a limb vector with a single limb and store
  2. dnl  the product in a second limb vector.
  3. dnl  Copyright 1992, 1994, 1995, 2000, 2001, 2002 Free Software Foundation,
  4. dnl  Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C INPUT PARAMETERS
  18. C res_ptr $4
  19. C s1_ptr $5
  20. C size $6
  21. C s2_limb $7
  22. ASM_START()
  23. PROLOGUE(mpn_mul_1)
  24. C feed-in phase 0
  25. ld $8,0($5)
  26. C feed-in phase 1
  27. daddiu $5,$5,8
  28. dmultu $8,$7
  29. daddiu $6,$6,-1
  30. beq $6,$0,$LC0
  31.  move $2,$0 C zero cy2
  32. daddiu $6,$6,-1
  33. beq $6,$0,$LC1
  34. ld $8,0($5) C load new s1 limb as early as possible
  35. Loop: nop
  36. mflo $10
  37. mfhi $9
  38. daddiu $5,$5,8
  39. daddu $10,$10,$2 C add old carry limb to low product limb
  40. dmultu $8,$7
  41. ld $8,0($5) C load new s1 limb as early as possible
  42. daddiu $6,$6,-1 C decrement loop counter
  43. sltu $2,$10,$2 C carry from previous addition -> $2
  44. nop
  45. nop
  46. sd $10,0($4)
  47. daddiu $4,$4,8
  48. bne $6,$0,Loop
  49.  daddu $2,$9,$2 C add high product limb and carry from addition
  50. C wind-down phase 1
  51. $LC1: mflo $10
  52. mfhi $9
  53. daddu $10,$10,$2
  54. sltu $2,$10,$2
  55. dmultu $8,$7
  56. sd $10,0($4)
  57. daddiu $4,$4,8
  58. daddu $2,$9,$2 C add high product limb and carry from addition
  59. C wind-down phase 0
  60. $LC0: mflo $10
  61. mfhi $9
  62. daddu $10,$10,$2
  63. sltu $2,$10,$2
  64. sd $10,0($4)
  65. j $31
  66. daddu $2,$9,$2 C add high product limb and carry from addition
  67. EPILOGUE(mpn_mul_1)