2.9
[glibc/nacl-glibc.git] / sysdeps / wordsize-32 / divdi3.c
blob8fa63438419f41dc608c961b6178c9205f99af36
1 /* 64-bit multiplication and division
2 Copyright (C) 1989, 1992-1999,2000,2001,2002,2003,2004,2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <endian.h>
22 #include <stdlib.h>
23 #include <bits/wordsize.h>
25 #if __WORDSIZE != 32
26 #error This is for 32-bit targets only
27 #endif
29 typedef unsigned int UQItype __attribute__ ((mode (QI)));
30 typedef int SItype __attribute__ ((mode (SI)));
31 typedef unsigned int USItype __attribute__ ((mode (SI)));
32 typedef int DItype __attribute__ ((mode (DI)));
33 typedef unsigned int UDItype __attribute__ ((mode (DI)));
34 #define Wtype SItype
35 #define HWtype SItype
36 #define DWtype DItype
37 #define UWtype USItype
38 #define UHWtype USItype
39 #define UDWtype UDItype
40 #define W_TYPE_SIZE 32
42 #include <stdlib/longlong.h>
44 #if __BYTE_ORDER == __BIG_ENDIAN
45 struct DWstruct { Wtype high, low;};
46 #elif __BYTE_ORDER == __LITTLE_ENDIAN
47 struct DWstruct { Wtype low, high;};
48 #else
49 #error Unhandled endianity
50 #endif
51 typedef union { struct DWstruct s; DWtype ll; } DWunion;
53 /* Prototypes of exported functions. */
54 extern DWtype __divdi3 (DWtype u, DWtype v);
55 extern DWtype __moddi3 (DWtype u, DWtype v);
56 extern UDWtype __udivdi3 (UDWtype u, UDWtype v);
57 extern UDWtype __umoddi3 (UDWtype u, UDWtype v);
59 static UDWtype
60 __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp)
62 DWunion ww;
63 DWunion nn, dd;
64 DWunion rr;
65 UWtype d0, d1, n0, n1, n2;
66 UWtype q0, q1;
67 UWtype b, bm;
69 nn.ll = n;
70 dd.ll = d;
72 d0 = dd.s.low;
73 d1 = dd.s.high;
74 n0 = nn.s.low;
75 n1 = nn.s.high;
77 #if !UDIV_NEEDS_NORMALIZATION
78 if (d1 == 0)
80 if (d0 > n1)
82 /* 0q = nn / 0D */
84 udiv_qrnnd (q0, n0, n1, n0, d0);
85 q1 = 0;
87 /* Remainder in n0. */
89 else
91 /* qq = NN / 0d */
93 if (d0 == 0)
94 d0 = 1 / d0; /* Divide intentionally by zero. */
96 udiv_qrnnd (q1, n1, 0, n1, d0);
97 udiv_qrnnd (q0, n0, n1, n0, d0);
99 /* Remainder in n0. */
102 if (rp != 0)
104 rr.s.low = n0;
105 rr.s.high = 0;
106 *rp = rr.ll;
110 #else /* UDIV_NEEDS_NORMALIZATION */
112 if (d1 == 0)
114 if (d0 > n1)
116 /* 0q = nn / 0D */
118 count_leading_zeros (bm, d0);
120 if (bm != 0)
122 /* Normalize, i.e. make the most significant bit of the
123 denominator set. */
125 d0 = d0 << bm;
126 n1 = (n1 << bm) | (n0 >> (W_TYPE_SIZE - bm));
127 n0 = n0 << bm;
130 udiv_qrnnd (q0, n0, n1, n0, d0);
131 q1 = 0;
133 /* Remainder in n0 >> bm. */
135 else
137 /* qq = NN / 0d */
139 if (d0 == 0)
140 d0 = 1 / d0; /* Divide intentionally by zero. */
142 count_leading_zeros (bm, d0);
144 if (bm == 0)
146 /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
147 conclude (the most significant bit of n1 is set) /\ (the
148 leading quotient digit q1 = 1).
150 This special case is necessary, not an optimization.
151 (Shifts counts of W_TYPE_SIZE are undefined.) */
153 n1 -= d0;
154 q1 = 1;
156 else
158 /* Normalize. */
160 b = W_TYPE_SIZE - bm;
162 d0 = d0 << bm;
163 n2 = n1 >> b;
164 n1 = (n1 << bm) | (n0 >> b);
165 n0 = n0 << bm;
167 udiv_qrnnd (q1, n1, n2, n1, d0);
170 /* n1 != d0... */
172 udiv_qrnnd (q0, n0, n1, n0, d0);
174 /* Remainder in n0 >> bm. */
177 if (rp != 0)
179 rr.s.low = n0 >> bm;
180 rr.s.high = 0;
181 *rp = rr.ll;
184 #endif /* UDIV_NEEDS_NORMALIZATION */
186 else
188 if (d1 > n1)
190 /* 00 = nn / DD */
192 q0 = 0;
193 q1 = 0;
195 /* Remainder in n1n0. */
196 if (rp != 0)
198 rr.s.low = n0;
199 rr.s.high = n1;
200 *rp = rr.ll;
203 else
205 /* 0q = NN / dd */
207 count_leading_zeros (bm, d1);
208 if (bm == 0)
210 /* From (n1 >= d1) /\ (the most significant bit of d1 is set),
211 conclude (the most significant bit of n1 is set) /\ (the
212 quotient digit q0 = 0 or 1).
214 This special case is necessary, not an optimization. */
216 /* The condition on the next line takes advantage of that
217 n1 >= d1 (true due to program flow). */
218 if (n1 > d1 || n0 >= d0)
220 q0 = 1;
221 sub_ddmmss (n1, n0, n1, n0, d1, d0);
223 else
224 q0 = 0;
226 q1 = 0;
228 if (rp != 0)
230 rr.s.low = n0;
231 rr.s.high = n1;
232 *rp = rr.ll;
235 else
237 UWtype m1, m0;
238 /* Normalize. */
240 b = W_TYPE_SIZE - bm;
242 d1 = (d1 << bm) | (d0 >> b);
243 d0 = d0 << bm;
244 n2 = n1 >> b;
245 n1 = (n1 << bm) | (n0 >> b);
246 n0 = n0 << bm;
248 udiv_qrnnd (q0, n1, n2, n1, d1);
249 umul_ppmm (m1, m0, q0, d0);
251 if (m1 > n1 || (m1 == n1 && m0 > n0))
253 q0--;
254 sub_ddmmss (m1, m0, m1, m0, d1, d0);
257 q1 = 0;
259 /* Remainder in (n1n0 - m1m0) >> bm. */
260 if (rp != 0)
262 sub_ddmmss (n1, n0, n1, n0, m1, m0);
263 rr.s.low = (n1 << b) | (n0 >> bm);
264 rr.s.high = n1 >> bm;
265 *rp = rr.ll;
271 ww.s.low = q0;
272 ww.s.high = q1;
273 return ww.ll;
276 DWtype
277 __divdi3 (DWtype u, DWtype v)
279 Wtype c = 0;
280 DWtype w;
282 if (u < 0)
284 c = ~c;
285 u = -u;
287 if (v < 0)
289 c = ~c;
290 v = -v;
292 w = __udivmoddi4 (u, v, NULL);
293 if (c)
294 w = -w;
295 return w;
297 strong_alias (__divdi3, __divdi3_internal)
299 DWtype
300 __moddi3 (DWtype u, DWtype v)
302 Wtype c = 0;
303 DWtype w;
305 if (u < 0)
307 c = ~c;
308 u = -u;
310 if (v < 0)
311 v = -v;
312 __udivmoddi4 (u, v, (UDWtype *) &w);
313 if (c)
314 w = -w;
315 return w;
317 strong_alias (__moddi3, __moddi3_internal)
319 UDWtype
320 __udivdi3 (UDWtype u, UDWtype v)
322 return __udivmoddi4 (u, v, NULL);
324 strong_alias (__udivdi3, __udivdi3_internal)
326 UDWtype
327 __umoddi3 (UDWtype u, UDWtype v)
329 UDWtype w;
331 __udivmoddi4 (u, v, &w);
332 return w;
334 strong_alias (__umoddi3, __umoddi3_internal)
336 /* We declare these with compat_symbol so that they are not visible at
337 link time. Programs must use the functions from libgcc. */
338 #if defined HAVE_ELF && defined SHARED && defined DO_VERSIONING
339 # include <shlib-compat.h>
340 compat_symbol (libc, __divdi3, __divdi3, GLIBC_2_0);
341 compat_symbol (libc, __moddi3, __moddi3, GLIBC_2_0);
342 compat_symbol (libc, __udivdi3, __udivdi3, GLIBC_2_0);
343 compat_symbol (libc, __umoddi3, __umoddi3, GLIBC_2_0);
344 #endif