Add sysdeps/ieee754/soft-fp.
[glibc.git] / stdlib / divrem.c
blob984d945dee9056f538419a9dd5719d79eeb1557a
1 /* mpn_divrem -- Divide natural numbers, producing both remainder and
2 quotient.
4 Copyright (C) 1993-2017 Free Software Foundation, Inc.
6 This file is part of the GNU MP Library.
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or (at your
11 option) any later version.
13 The GNU MP Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16 License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with the GNU MP Library; see the file COPYING.LIB. If not, see
20 <http://www.gnu.org/licenses/>. */
22 #include <gmp.h>
23 #include "gmp-impl.h"
24 #include "longlong.h"
26 /* Divide num (NP/NSIZE) by den (DP/DSIZE) and write
27 the NSIZE-DSIZE least significant quotient limbs at QP
28 and the DSIZE long remainder at NP. If QEXTRA_LIMBS is
29 non-zero, generate that many fraction bits and append them after the
30 other quotient limbs.
31 Return the most significant limb of the quotient, this is always 0 or 1.
33 Preconditions:
34 0. NSIZE >= DSIZE.
35 1. The most significant bit of the divisor must be set.
36 2. QP must either not overlap with the input operands at all, or
37 QP + DSIZE >= NP must hold true. (This means that it's
38 possible to put the quotient in the high part of NUM, right after the
39 remainder in NUM.
40 3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero. */
42 mp_limb_t
43 mpn_divrem (mp_ptr qp, mp_size_t qextra_limbs,
44 mp_ptr np, mp_size_t nsize,
45 mp_srcptr dp, mp_size_t dsize)
47 mp_limb_t most_significant_q_limb = 0;
49 switch (dsize)
51 case 0:
52 /* We are asked to divide by zero, so go ahead and do it! (To make
53 the compiler not remove this statement, return the value.) */
54 return 1 / dsize;
56 case 1:
58 mp_size_t i;
59 mp_limb_t n1;
60 mp_limb_t d;
62 d = dp[0];
63 n1 = np[nsize - 1];
65 if (n1 >= d)
67 n1 -= d;
68 most_significant_q_limb = 1;
71 qp += qextra_limbs;
72 for (i = nsize - 2; i >= 0; i--)
73 udiv_qrnnd (qp[i], n1, n1, np[i], d);
74 qp -= qextra_limbs;
76 for (i = qextra_limbs - 1; i >= 0; i--)
77 udiv_qrnnd (qp[i], n1, n1, 0, d);
79 np[0] = n1;
81 break;
83 case 2:
85 mp_size_t i;
86 mp_limb_t n1, n0, n2;
87 mp_limb_t d1, d0;
89 np += nsize - 2;
90 d1 = dp[1];
91 d0 = dp[0];
92 n1 = np[1];
93 n0 = np[0];
95 if (n1 >= d1 && (n1 > d1 || n0 >= d0))
97 sub_ddmmss (n1, n0, n1, n0, d1, d0);
98 most_significant_q_limb = 1;
101 for (i = qextra_limbs + nsize - 2 - 1; i >= 0; i--)
103 mp_limb_t q;
104 mp_limb_t r;
106 if (i >= qextra_limbs)
107 np--;
108 else
109 np[0] = 0;
111 if (n1 == d1)
113 /* Q should be either 111..111 or 111..110. Need special
114 treatment of this rare case as normal division would
115 give overflow. */
116 q = ~(mp_limb_t) 0;
118 r = n0 + d1;
119 if (r < d1) /* Carry in the addition? */
121 add_ssaaaa (n1, n0, r - d0, np[0], 0, d0);
122 qp[i] = q;
123 continue;
125 n1 = d0 - (d0 != 0);
126 n0 = -d0;
128 else
130 udiv_qrnnd (q, r, n1, n0, d1);
131 umul_ppmm (n1, n0, d0, q);
134 n2 = np[0];
135 q_test:
136 if (n1 > r || (n1 == r && n0 > n2))
138 /* The estimated Q was too large. */
139 q--;
141 sub_ddmmss (n1, n0, n1, n0, 0, d0);
142 r += d1;
143 if (r >= d1) /* If not carry, test Q again. */
144 goto q_test;
147 qp[i] = q;
148 sub_ddmmss (n1, n0, r, n2, n1, n0);
150 np[1] = n1;
151 np[0] = n0;
153 break;
155 default:
157 mp_size_t i;
158 mp_limb_t dX, d1, n0;
160 np += nsize - dsize;
161 dX = dp[dsize - 1];
162 d1 = dp[dsize - 2];
163 n0 = np[dsize - 1];
165 if (n0 >= dX)
167 if (n0 > dX || mpn_cmp (np, dp, dsize - 1) >= 0)
169 mpn_sub_n (np, np, dp, dsize);
170 n0 = np[dsize - 1];
171 most_significant_q_limb = 1;
175 for (i = qextra_limbs + nsize - dsize - 1; i >= 0; i--)
177 mp_limb_t q;
178 mp_limb_t n1, n2;
179 mp_limb_t cy_limb;
181 if (i >= qextra_limbs)
183 np--;
184 n2 = np[dsize];
186 else
188 n2 = np[dsize - 1];
189 MPN_COPY_DECR (np + 1, np, dsize);
190 np[0] = 0;
193 if (n0 == dX)
194 /* This might over-estimate q, but it's probably not worth
195 the extra code here to find out. */
196 q = ~(mp_limb_t) 0;
197 else
199 mp_limb_t r;
201 udiv_qrnnd (q, r, n0, np[dsize - 1], dX);
202 umul_ppmm (n1, n0, d1, q);
204 while (n1 > r || (n1 == r && n0 > np[dsize - 2]))
206 q--;
207 r += dX;
208 if (r < dX) /* I.e. "carry in previous addition?" */
209 break;
210 n1 -= n0 < d1;
211 n0 -= d1;
215 /* Possible optimization: We already have (q * n0) and (1 * n1)
216 after the calculation of q. Taking advantage of that, we
217 could make this loop make two iterations less. */
219 cy_limb = mpn_submul_1 (np, dp, dsize, q);
221 if (n2 != cy_limb)
223 mpn_add_n (np, np, dp, dsize);
224 q--;
227 qp[i] = q;
228 n0 = np[dsize - 1];
233 return most_significant_q_limb;