umodsi3.S 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * File: arch/blackfin/lib/umodsi3.S
  3. * Based on:
  4. * Author:
  5. *
  6. * Created:
  7. * Description: libgcc1 routines for Blackfin 5xx
  8. *
  9. * Modified:
  10. * Copyright 2004-2006 Analog Devices Inc.
  11. *
  12. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, see the file COPYING, or write
  26. * to the Free Software Foundation, Inc.,
  27. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  28. */
  29. #ifdef CONFIG_ARITHMETIC_OPS_L1
  30. .section .l1.text
  31. #else
  32. .text
  33. #endif
  34. .extern ___udivsi3;
  35. .type ___udivsi3, STT_FUNC;
  36. .globl ___umodsi3
  37. .type ___umodsi3, STT_FUNC;
  38. ___umodsi3:
  39. CC=R0==0;
  40. IF CC JUMP .LRETURN_R0; /* Return 0, if NR == 0 */
  41. CC= R1==0;
  42. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 0 */
  43. CC=R0==R1;
  44. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if NR == DR */
  45. CC = R1 == 1;
  46. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 1 */
  47. CC = R0<R1 (IU);
  48. IF CC JUMP .LRETURN_R0; /* Return dividend (R0),IF NR<DR */
  49. [--SP] = (R7:6); /* Push registers and */
  50. [--SP] = RETS; /* Return address */
  51. R7 = R0; /* Copy of R0 */
  52. R6 = R1;
  53. SP += -12; /* Should always provide this space */
  54. CALL ___udivsi3; /* Compute unsigned quotient using ___udiv32()*/
  55. SP += 12;
  56. R0 *= R6; /* Quotient * divisor */
  57. R0 = R7 - R0; /* Dividend - (quotient * divisor) */
  58. RETS = [SP++]; /* Pop return address */
  59. ( R7:6) = [SP++]; /* And registers */
  60. RTS; /* Return remainder */
  61. .LRETURN_ZERO_VAL:
  62. R0 = 0;
  63. .LRETURN_R0:
  64. RTS;
  65. .size ___umodsi3, .-___umodsi3