udivdi3.S 872 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (C) 2016-2017 Free Software Foundation, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. .globl __udivdi3
  14. __udivdi3:
  15. mv a2, a1
  16. mv a1, a0
  17. li a0, -1
  18. beqz a2, .L5
  19. li a3, 1
  20. bgeu a2, a1, .L2
  21. .L1:
  22. blez a2, .L2
  23. slli a2, a2, 1
  24. slli a3, a3, 1
  25. bgtu a1, a2, .L1
  26. .L2:
  27. li a0, 0
  28. .L3:
  29. bltu a1, a2, .L4
  30. sub a1, a1, a2
  31. or a0, a0, a3
  32. .L4:
  33. srli a3, a3, 1
  34. srli a2, a2, 1
  35. bnez a3, .L3
  36. .L5:
  37. ret