divdi3.S 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //===----------------------Hexagon builtin routine ------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. .macro FUNCTION_BEGIN name
  9. .text
  10. .p2align 5
  11. .globl \name
  12. .type \name, @function
  13. \name:
  14. .endm
  15. .macro FUNCTION_END name
  16. .size \name, . - \name
  17. .endm
  18. FUNCTION_BEGIN __hexagon_divdi3
  19. {
  20. p2 = tstbit(r1,#31)
  21. p3 = tstbit(r3,#31)
  22. }
  23. {
  24. r1:0 = abs(r1:0)
  25. r3:2 = abs(r3:2)
  26. }
  27. {
  28. r6 = cl0(r1:0) // count leading 0's of dividend (numerator)
  29. r7 = cl0(r3:2) // count leading 0's of divisor (denominator)
  30. r5:4 = r3:2 // divisor moved into working registers
  31. r3:2 = r1:0 // dividend is the initial remainder, r3:2 contains remainder
  32. }
  33. {
  34. p3 = xor(p2,p3)
  35. r10 = sub(r7,r6) // left shift count for bit & divisor
  36. r1:0 = #0 // initialize quotient to 0
  37. r15:14 = #1 // initialize bit to 1
  38. }
  39. {
  40. r11 = add(r10,#1) // loop count is 1 more than shift count
  41. r13:12 = lsl(r5:4,r10) // shift divisor msb into same bit position as dividend msb
  42. r15:14 = lsl(r15:14,r10) // shift the bit left by same amount as divisor
  43. }
  44. {
  45. p0 = cmp.gtu(r5:4,r3:2) // check if divisor > dividend
  46. loop0(1f,r11) // register loop
  47. }
  48. {
  49. if (p0) jump .hexagon_divdi3_return // if divisor > dividend, we're done, so return
  50. }
  51. .falign
  52. 1:
  53. {
  54. p0 = cmp.gtu(r13:12,r3:2) // set predicate reg if shifted divisor > current remainder
  55. }
  56. {
  57. r7:6 = sub(r3:2, r13:12) // subtract shifted divisor from current remainder
  58. r9:8 = add(r1:0, r15:14) // save current quotient to temp (r9:8)
  59. }
  60. {
  61. r1:0 = vmux(p0, r1:0, r9:8) // choose either current quotient or new quotient (r9:8)
  62. r3:2 = vmux(p0, r3:2, r7:6) // choose either current remainder or new remainder (r7:6)
  63. }
  64. {
  65. r15:14 = lsr(r15:14, #1) // shift bit right by 1 for next iteration
  66. r13:12 = lsr(r13:12, #1) // shift "shifted divisor" right by 1 for next iteration
  67. }:endloop0
  68. .hexagon_divdi3_return:
  69. {
  70. r3:2 = neg(r1:0)
  71. }
  72. {
  73. r1:0 = vmux(p3,r3:2,r1:0)
  74. jumpr r31
  75. }
  76. FUNCTION_END __hexagon_divdi3
  77. .globl __qdsp_divdi3
  78. .set __qdsp_divdi3, __hexagon_divdi3