idiv32.S 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (C) 2000 Hewlett-Packard Co
  3. * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
  4. *
  5. * 32-bit integer division.
  6. *
  7. * This code is based on the application note entitled "Divide, Square Root
  8. * and Remainder Algorithms for the IA-64 Architecture". This document
  9. * is available as Intel document number 248725-002 or via the web at
  10. * http://developer.intel.com/software/opensource/numerics/
  11. *
  12. * For more details on the theory behind these algorithms, see "IA-64
  13. * and Elementary Functions" by Peter Markstein; HP Professional Books
  14. * (http://www.hp.com/go/retailbooks/)
  15. */
  16. #include <asm/asmmacro.h>
  17. #ifdef MODULO
  18. # define OP mod
  19. #else
  20. # define OP div
  21. #endif
  22. #ifdef UNSIGNED
  23. # define SGN u
  24. # define EXTEND zxt4
  25. # define INT_TO_FP(a,b) fcvt.xuf.s1 a=b
  26. # define FP_TO_INT(a,b) fcvt.fxu.trunc.s1 a=b
  27. #else
  28. # define SGN
  29. # define EXTEND sxt4
  30. # define INT_TO_FP(a,b) fcvt.xf a=b
  31. # define FP_TO_INT(a,b) fcvt.fx.trunc.s1 a=b
  32. #endif
  33. #define PASTE1(a,b) a##b
  34. #define PASTE(a,b) PASTE1(a,b)
  35. #define NAME PASTE(PASTE(__,SGN),PASTE(OP,si3))
  36. GLOBAL_ENTRY(NAME)
  37. .regstk 2,0,0,0
  38. // Transfer inputs to FP registers.
  39. mov r2 = 0xffdd // r2 = -34 + 65535 (fp reg format bias)
  40. EXTEND in0 = in0 // in0 = a
  41. EXTEND in1 = in1 // in1 = b
  42. ;;
  43. setf.sig f8 = in0
  44. setf.sig f9 = in1
  45. #ifdef MODULO
  46. sub in1 = r0, in1 // in1 = -b
  47. #endif
  48. ;;
  49. // Convert the inputs to FP, to avoid FP software-assist faults.
  50. INT_TO_FP(f8, f8)
  51. INT_TO_FP(f9, f9)
  52. ;;
  53. setf.exp f7 = r2 // f7 = 2^-34
  54. frcpa.s1 f6, p6 = f8, f9 // y0 = frcpa(b)
  55. ;;
  56. (p6) fmpy.s1 f8 = f8, f6 // q0 = a*y0
  57. (p6) fnma.s1 f6 = f9, f6, f1 // e0 = -b*y0 + 1
  58. ;;
  59. #ifdef MODULO
  60. setf.sig f9 = in1 // f9 = -b
  61. #endif
  62. (p6) fma.s1 f8 = f6, f8, f8 // q1 = e0*q0 + q0
  63. (p6) fma.s1 f6 = f6, f6, f7 // e1 = e0*e0 + 2^-34
  64. ;;
  65. #ifdef MODULO
  66. setf.sig f7 = in0
  67. #endif
  68. (p6) fma.s1 f6 = f6, f8, f8 // q2 = e1*q1 + q1
  69. ;;
  70. FP_TO_INT(f6, f6) // q = trunc(q2)
  71. ;;
  72. #ifdef MODULO
  73. xma.l f6 = f6, f9, f7 // r = q*(-b) + a
  74. ;;
  75. #endif
  76. getf.sig r8 = f6 // transfer result to result register
  77. br.ret.sptk.many rp
  78. END(NAME)