2011-03-21 Daniel Jacobowitz <dan@codesourcery.com>
[official-gcc.git] / gcc / config / m32c / m32c-lib2.c
blob274affc4ab094f3d13aad166067fbb41bc2a1c4f
1 /* libgcc routines for R8C/M16C/M32C
2 Copyright (C) 2005, 2009
3 Free Software Foundation, Inc.
4 Contributed by Red Hat.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published
10 by the Free Software Foundation; either version 3, or (at your
11 option) any later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 typedef int sint32_type __attribute__ ((mode (SI)));
28 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
29 typedef int word_type __attribute__ ((mode (__word__)));
31 uint32_type udivmodsi4 (uint32_type, uint32_type, word_type);
32 sint32_type __divsi3 (sint32_type, sint32_type);
33 sint32_type __modsi3 (sint32_type, sint32_type);
35 uint32_type
36 udivmodsi4 (uint32_type num, uint32_type den, word_type modwanted)
38 uint32_type bit = 1;
39 uint32_type res = 0;
41 while (den < num && bit && !(den & (1L << 31)))
43 den <<= 1;
44 bit <<= 1;
46 while (bit)
48 if (num >= den)
50 num -= den;
51 res |= bit;
53 bit >>= 1;
54 den >>= 1;
56 if (modwanted)
57 return num;
58 return res;
61 sint32_type
62 __divsi3 (sint32_type a, sint32_type b)
64 word_type neg = 0;
65 sint32_type res;
67 if (a < 0)
69 a = -a;
70 neg = !neg;
73 if (b < 0)
75 b = -b;
76 neg = !neg;
79 res = udivmodsi4 (a, b, 0);
81 if (neg)
82 res = -res;
84 return res;
87 sint32_type
88 __modsi3 (sint32_type a, sint32_type b)
90 word_type neg = 0;
91 sint32_type res;
93 if (a < 0)
95 a = -a;
96 neg = 1;
99 if (b < 0)
100 b = -b;
102 res = udivmodsi4 (a, b, 1);
104 if (neg)
105 res = -res;
107 return res;
110 /* See the comment by the definition of LIBGCC2_UNITS_PER_WORD in
111 m32c.h for why we are creating extra versions of some of the
112 functions defined in libgcc2.c. */
114 #define LIBGCC2_UNITS_PER_WORD 2
116 #define L_clzsi2
117 #define L_ctzsi2
118 #define L_ffssi2
119 #define L_paritysi2
120 #define L_popcountsi2
122 #include "libgcc2.c"
124 uint32_type
125 __udivsi3 (uint32_type a, uint32_type b)
127 return udivmodsi4 (a, b, 0);
130 uint32_type
131 __umoddi3 (uint32_type a, uint32_type b)
133 return udivmodsi4 (a, b, 1);