Merge branch 'vendor/GMP' into gcc441
[dragonfly.git] / contrib / gmp / mpz / fdiv_r_ui.c
1 /* mpz_fdiv_r_ui -- Division rounding the quotient towards -infinity.
2    The remainder gets the same sign as the denominator.
3
4 Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005 Free Software Foundation,
5 Inc.
6
7 This file is part of the GNU MP Library.
8
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or (at your
12 option) any later version.
13
14 The GNU MP Library is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
17 License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
21
22 #include "gmp.h"
23 #include "gmp-impl.h"
24
25 unsigned long int
26 mpz_fdiv_r_ui (mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor)
27 {
28   mp_size_t ns, nn;
29   mp_ptr np;
30   mp_limb_t rl;
31
32   if (divisor == 0)
33     DIVIDE_BY_ZERO;
34
35   ns = SIZ(dividend);
36   if (ns == 0)
37     {
38       SIZ(rem) = 0;
39       return 0;
40     }
41
42   nn = ABS(ns);
43   np = PTR(dividend);
44 #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
45   if (divisor > GMP_NUMB_MAX)
46     {
47       mp_limb_t dp[2];
48       mp_ptr rp, qp;
49       mp_size_t rn;
50       TMP_DECL;
51
52       MPZ_REALLOC (rem, 2);
53       rp = PTR(rem);
54
55       if (nn == 1)              /* tdiv_qr requirements; tested above for 0 */
56         {
57           rl = np[0];
58           rp[0] = rl;
59         }
60       else
61         {
62           TMP_MARK;
63           dp[0] = divisor & GMP_NUMB_MASK;
64           dp[1] = divisor >> GMP_NUMB_BITS;
65           qp = TMP_ALLOC_LIMBS (nn - 2 + 1);
66           mpn_tdiv_qr (qp, rp, (mp_size_t) 0, np, nn, dp, (mp_size_t) 2);
67           TMP_FREE;
68           rl = rp[0] + (rp[1] << GMP_NUMB_BITS);
69         }
70
71       if (rl != 0 && ns < 0)
72         {
73           rl = divisor - rl;
74           rp[0] = rl & GMP_NUMB_MASK;
75           rp[1] = rl >> GMP_NUMB_BITS;
76         }
77
78       rn = 1 + (rl > GMP_NUMB_MAX);  rn -= (rp[rn - 1] == 0);
79       SIZ(rem) = rn;
80     }
81   else
82 #endif
83     {
84       rl = mpn_mod_1 (np, nn, (mp_limb_t) divisor);
85       if (rl == 0)
86         SIZ(rem) = 0;
87       else
88         {
89           if (ns < 0)
90             rl = divisor - rl;
91
92           PTR(rem)[0] = rl;
93           SIZ(rem) = 1;
94         }
95     }
96
97   return rl;
98 }