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

数学计算

开发平台:

Unix_Linux

  1. dnl  MIPS64 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, 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_submul_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: ld $10,0($4)
  36. mflo $3
  37. mfhi $9
  38. daddiu $5,$5,8
  39. daddu $3,$3,$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,$3,$2 C carry from previous addition -> $2
  44. dsubu $3,$10,$3
  45. sgtu $10,$3,$10
  46. daddu $2,$2,$10
  47. sd $3,0($4)
  48. daddiu $4,$4,8
  49. bne $6,$0,Loop
  50.  daddu $2,$9,$2 C add high product limb and carry from addition
  51. C wind-down phase 1
  52. $LC1: ld $10,0($4)
  53. mflo $3
  54. mfhi $9
  55. daddu $3,$3,$2
  56. sltu $2,$3,$2
  57. dmultu $8,$7
  58. dsubu $3,$10,$3
  59. sgtu $10,$3,$10
  60. daddu $2,$2,$10
  61. sd $3,0($4)
  62. daddiu $4,$4,8
  63. daddu $2,$9,$2 C add high product limb and carry from addition
  64. C wind-down phase 0
  65. $LC0: ld $10,0($4)
  66. mflo $3
  67. mfhi $9
  68. daddu $3,$3,$2
  69. sltu $2,$3,$2
  70. dsubu $3,$10,$3
  71. sgtu $10,$3,$10
  72. daddu $2,$2,$10
  73. sd $3,0($4)
  74. j $31
  75. daddu $2,$9,$2 C add high product limb and carry from addition
  76. EPILOGUE(mpn_submul_1)