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

数学计算

开发平台:

Unix_Linux

  1. dnl  MIPS32 mpn_submul_1 -- Multiply a limb vector with a single limb and
  2. dnl  subtract the product from a second limb vector.
  3. dnl  Copyright 1992, 1994, 1996, 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 INPUT PARAMETERS
  17. C res_ptr $4
  18. C s1_ptr $5
  19. C size $6
  20. C s2_limb $7
  21. ASM_START()
  22. PROLOGUE(mpn_submul_1)
  23. C feed-in phase 0
  24. lw $8,0($5)
  25. C feed-in phase 1
  26. addiu $5,$5,4
  27. multu $8,$7
  28. addiu $6,$6,-1
  29. beq $6,$0,$LC0
  30.  move $2,$0 C zero cy2
  31. addiu $6,$6,-1
  32. beq $6,$0,$LC1
  33. lw $8,0($5) C load new s1 limb as early as possible
  34. Loop: lw $10,0($4)
  35. mflo $3
  36. mfhi $9
  37. addiu $5,$5,4
  38. addu $3,$3,$2 C add old carry limb to low product limb
  39. multu $8,$7
  40. lw $8,0($5) C load new s1 limb as early as possible
  41. addiu $6,$6,-1 C decrement loop counter
  42. sltu $2,$3,$2 C carry from previous addition -> $2
  43. subu $3,$10,$3
  44. sgtu $10,$3,$10
  45. addu $2,$2,$10
  46. sw $3,0($4)
  47. addiu $4,$4,4
  48. bne $6,$0,Loop
  49.  addu $2,$9,$2 C add high product limb and carry from addition
  50. C wind-down phase 1
  51. $LC1: lw $10,0($4)
  52. mflo $3
  53. mfhi $9
  54. addu $3,$3,$2
  55. sltu $2,$3,$2
  56. multu $8,$7
  57. subu $3,$10,$3
  58. sgtu $10,$3,$10
  59. addu $2,$2,$10
  60. sw $3,0($4)
  61. addiu $4,$4,4
  62. addu $2,$9,$2 C add high product limb and carry from addition
  63. C wind-down phase 0
  64. $LC0: lw $10,0($4)
  65. mflo $3
  66. mfhi $9
  67. addu $3,$3,$2
  68. sltu $2,$3,$2
  69. subu $3,$10,$3
  70. sgtu $10,$3,$10
  71. addu $2,$2,$10
  72. sw $3,0($4)
  73. j $31
  74. addu $2,$9,$2 C add high product limb and carry from addition
  75. EPILOGUE(mpn_submul_1)