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

数学计算

开发平台:

Unix_Linux

  1. dnl  SuperSPARC mpn_udiv_qrnnd division support, used from longlong.h.
  2. dnl  This is for SuperSPARC only, to compensate for its semi-functional
  3. dnl  udiv instruction.
  4. dnl  Copyright 1993, 1994, 1996, 2000 Free Software Foundation, 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 rem_ptr i0
  19. C n1 i1
  20. C n0 i2
  21. C d i3
  22. ASM_START()
  23. ifdef(`PIC',
  24. ` TEXT
  25. L(getpc):
  26. retl
  27. nop')
  28. TEXT
  29. ALIGN(8)
  30. L(C0): .double 0r4294967296
  31. L(C1): .double 0r2147483648
  32. PROLOGUE(mpn_udiv_qrnnd)
  33. save %sp,-104,%sp
  34. st %i1,[%fp-8]
  35. ld [%fp-8],%f10
  36. ifdef(`PIC',
  37. `L(pc): call L(getpc) C put address of this insn in %o7
  38. ldd [%o7+L(C0)-L(pc)],%f8',
  39. ` sethi %hi(L(C0)),%o7
  40. ldd [%o7+%lo(L(C0))],%f8')
  41. fitod %f10,%f4
  42. cmp %i1,0
  43. bge L(248)
  44. mov %i0,%i5
  45. faddd %f4,%f8,%f4
  46. L(248):
  47. st %i2,[%fp-8]
  48. ld [%fp-8],%f10
  49. fmuld %f4,%f8,%f6
  50. cmp %i2,0
  51. bge L(249)
  52. fitod %f10,%f2
  53. faddd %f2,%f8,%f2
  54. L(249):
  55. st %i3,[%fp-8]
  56. faddd %f6,%f2,%f2
  57. ld [%fp-8],%f10
  58. cmp %i3,0
  59. bge L(250)
  60. fitod %f10,%f4
  61. faddd %f4,%f8,%f4
  62. L(250):
  63. fdivd %f2,%f4,%f2
  64. ifdef(`PIC',
  65. ` ldd [%o7+L(C1)-L(pc)],%f4',
  66. ` sethi %hi(L(C1)),%o7
  67. ldd [%o7+%lo(L(C1))],%f4')
  68. fcmped %f2,%f4
  69. nop
  70. fbge,a L(251)
  71. fsubd %f2,%f4,%f2
  72. fdtoi %f2,%f2
  73. st %f2,[%fp-8]
  74. b L(252)
  75. ld [%fp-8],%i4
  76. L(251):
  77. fdtoi %f2,%f2
  78. st %f2,[%fp-8]
  79. ld [%fp-8],%i4
  80. sethi %hi(-2147483648),%g2
  81. xor %i4,%g2,%i4
  82. L(252):
  83. umul %i3,%i4,%g3
  84. rd %y,%i0
  85. subcc %i2,%g3,%o7
  86. subxcc %i1,%i0,%g0
  87. be L(253)
  88. cmp %o7,%i3
  89. add %i4,-1,%i0
  90. add %o7,%i3,%o7
  91. st %o7,[%i5]
  92. ret
  93. restore
  94. L(253):
  95. blu L(246)
  96. mov %i4,%i0
  97. add %i4,1,%i0
  98. sub %o7,%i3,%o7
  99. L(246):
  100. st %o7,[%i5]
  101. ret
  102. restore
  103. EPILOGUE(mpn_udiv_qrnnd)