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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA 2.0 64-bit mpn_udiv_qrnnd_r.
  2. dnl  Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C This runs at about 280 cycles on both PA8000 and PA8500, corresponding to a
  16. C bit more than 4 cycles/bit.
  17. C INPUT PARAMETERS
  18. define(`n1',`%r26')
  19. define(`n0',`%r25')
  20. define(`d',`%r24')
  21. define(`remptr',`%r23')
  22. define(`q',`%r28')
  23. define(`dn',`%r29')
  24. define(`old_divstep',
  25.        `add,dc n0,n0,n0
  26. add,dc n1,n1,n1
  27. sub,*<< n1,d,%r22
  28. copy %r22,n1')
  29. define(`divstep',
  30.        `add n0,n0,n0
  31. add,dc n1,n1,n1
  32. sub n1,d,%r1
  33. add,dc q,q,q
  34. cmpclr,*<< n1,d,%r0
  35. copy %r1,n1
  36. ')
  37. ifdef(`HAVE_ABI_2_0w',
  38. ` .level 2.0w
  39. ',` .level 2.0
  40. ')
  41. PROLOGUE(mpn_udiv_qrnnd_r)
  42. ifdef(`HAVE_ABI_2_0n',
  43. ` depd %r25,31,32,%r26
  44. depd %r23,31,32,%r24
  45. copy %r24,%r25
  46. ldd -56(%r30),%r24
  47. ldw -60(%r30),%r23
  48. ')
  49. ldi 0,q
  50. cmpib,*>= 0,d,L(large_divisor)
  51. ldi 8,%r31 C setup loop counter
  52. sub %r0,d,dn
  53. LDEF(Loop)
  54. divstep divstep divstep divstep divstep divstep divstep divstep
  55. addib,<> -1,%r31,L(Loop)
  56. nop
  57. ifdef(`HAVE_ABI_2_0n',
  58. ` copy %r28,%r29
  59. extrd,u %r28,31,32,%r28
  60. ')
  61. bve (%r2)
  62. std n1,0(remptr) C store remainder
  63. LDEF(large_divisor)
  64. extrd,u n0,63,1,%r19 C save lsb of dividend
  65. shrpd n1,n0,1,n0 C n0 = lo(n1n0 >> 1)
  66. shrpd %r0,n1,1,n1 C n1 = hi(n1n0 >> 1)
  67. extrd,u d,63,1,%r20 C save lsb of divisor
  68. shrpd %r0,d,1,d C d = floor(orig_d / 2)
  69. add,l %r20,d,d C d = ceil(orig_d / 2)
  70. sub %r0,d,dn
  71. LDEF(Loop2)
  72. divstep divstep divstep divstep divstep divstep divstep divstep
  73. addib,<> -1,%r31,L(Loop2)
  74. nop
  75. cmpib,*= 0,%r20,L(even_divisor)
  76. shladd n1,1,%r19,n1 C shift in omitted dividend lsb
  77. add d,d,d C restore orig...
  78. sub d,%r20,d C ...d value
  79. sub %r0,d,dn C r21 = -d
  80. add,*nuv n1,q,n1 C fix remainder for omitted divisor lsb
  81. add,l n1,dn,n1 C adjust remainder if rem. fix carried
  82. add,dc %r0,q,q C adjust quotient accordingly
  83. sub,*<< n1,d,%r0 C remainder >= divisor?
  84. add,l n1,dn,n1 C adjust remainder
  85. add,dc %r0,q,q C adjust quotient
  86. LDEF(even_divisor)
  87. ifdef(`HAVE_ABI_2_0n',
  88. ` copy %r28,%r29
  89. extrd,u %r28,31,32,%r28
  90. ')
  91. bve (%r2)
  92. std n1,0(remptr) C store remainder
  93. EPILOGUE(mpn_udiv_qrnnd_r)