1 /* This has so very few changes over libgcc2's __udivmoddi4 it isn't funny. */
3 #include <math-emu/soft-fp.h>
5 #undef count_leading_zeros
6 #define count_leading_zeros __FP_CLZ
9 _fp_udivmodti4(_FP_W_TYPE q[2], _FP_W_TYPE r[2],
10 _FP_W_TYPE n1, _FP_W_TYPE n0,
11 _FP_W_TYPE d1, _FP_W_TYPE d0)
13 _FP_W_TYPE q0, q1, r0, r1;
18 #if !UDIV_NEEDS_NORMALIZATION
23 udiv_qrnnd (q0, n0, n1, n0, d0);
26 /* Remainder in n0. */
33 d0 = 1 / d0; /* Divide intentionally by zero. */
35 udiv_qrnnd (q1, n1, 0, n1, d0);
36 udiv_qrnnd (q0, n0, n1, n0, d0);
38 /* Remainder in n0. */
44 #else /* UDIV_NEEDS_NORMALIZATION */
50 count_leading_zeros (bm, d0);
54 /* Normalize, i.e. make the most significant bit of the
58 n1 = (n1 << bm) | (n0 >> (_FP_W_TYPE_SIZE - bm));
62 udiv_qrnnd (q0, n0, n1, n0, d0);
65 /* Remainder in n0 >> bm. */
72 d0 = 1 / d0; /* Divide intentionally by zero. */
74 count_leading_zeros (bm, d0);
78 /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
79 conclude (the most significant bit of n1 is set) /\ (the
80 leading quotient digit q1 = 1).
82 This special case is necessary, not an optimization.
83 (Shifts counts of SI_TYPE_SIZE are undefined.) */
94 b = _FP_W_TYPE_SIZE - bm;
98 n1 = (n1 << bm) | (n0 >> b);
101 udiv_qrnnd (q1, n1, n2, n1, d0);
106 udiv_qrnnd (q0, n0, n1, n0, d0);
108 /* Remainder in n0 >> bm. */
113 #endif /* UDIV_NEEDS_NORMALIZATION */
124 /* Remainder in n1n0. */
132 count_leading_zeros (bm, d1);
135 /* From (n1 >= d1) /\ (the most significant bit of d1 is set),
136 conclude (the most significant bit of n1 is set) /\ (the
137 quotient digit q0 = 0 or 1).
139 This special case is necessary, not an optimization. */
141 /* The condition on the next line takes advantage of that
142 n1 >= d1 (true due to program flow). */
143 if (n1 > d1 || n0 >= d0)
146 sub_ddmmss (n1, n0, n1, n0, d1, d0);
158 _FP_W_TYPE m1, m0, n2;
162 b = _FP_W_TYPE_SIZE - bm;
164 d1 = (d1 << bm) | (d0 >> b);
167 n1 = (n1 << bm) | (n0 >> b);
170 udiv_qrnnd (q0, n1, n2, n1, d1);
171 umul_ppmm (m1, m0, q0, d0);
173 if (m1 > n1 || (m1 == n1 && m0 > n0))
176 sub_ddmmss (m1, m0, m1, m0, d1, d0);
181 /* Remainder in (n1n0 - m1m0) >> bm. */
182 sub_ddmmss (n1, n0, n1, n0, m1, m0);
183 r0 = (n1 << b) | (n0 >> bm);
189 q[0] = q0; q[1] = q1;
190 r[0] = r0, r[1] = r1;