umodsi3.S 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. .globl ___umodsi3
  36. ___umodsi3:
  37. CC=R0==0;
  38. IF CC JUMP .LRETURN_R0; /* Return 0, if NR == 0 */
  39. CC= R1==0;
  40. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 0 */
  41. CC=R0==R1;
  42. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if NR == DR */
  43. CC = R1 == 1;
  44. IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 1 */
  45. CC = R0<R1 (IU);
  46. IF CC JUMP .LRETURN_R0; /* Return dividend (R0),IF NR<DR */
  47. [--SP] = (R7:6); /* Push registers and */
  48. [--SP] = RETS; /* Return address */
  49. R7 = R0; /* Copy of R0 */
  50. R6 = R1;
  51. SP += -12; /* Should always provide this space */
  52. CALL ___udivsi3; /* Compute unsigned quotient using ___udiv32()*/
  53. SP += 12;
  54. R0 *= R6; /* Quotient * divisor */
  55. R0 = R7 - R0; /* Dividend - (quotient * divisor) */
  56. RETS = [SP++]; /* Pop return address */
  57. ( R7:6) = [SP++]; /* And registers */
  58. RTS; /* Return remainder */
  59. .LRETURN_ZERO_VAL:
  60. R0 = 0;
  61. .LRETURN_R0:
  62. RTS;