[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / sdiv.c
1 /* sdiv -- Divide a MINT by a short integer.  Produce a MINT quotient
2    and a short remainder.
3
4 Copyright (C) 1991 Free Software Foundation, Inc.
5
6 This file is part of the GNU MP Library.
7
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 The GNU MP Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with the GNU MP Library; see the file COPYING.  If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
21
22 #include "mp.h"
23 #include "gmp.h"
24 #include "gmp-impl.h"
25 #include "longlong.h"
26
27 void
28 #ifdef __STDC__
29 sdiv (const MINT *dividend, signed short int divisor_short, MINT *quot, short *rem_ptr)
30 #else
31 sdiv (dividend, divisor_short, quot, rem_ptr)
32      const MINT *dividend;
33      short int divisor_short;
34      MINT *quot;
35      short *rem_ptr;
36 #endif
37 {
38   mp_size sign_dividend;
39   signed long int sign_divisor;
40   mp_size dividend_size, quot_size;
41   mp_ptr dividend_ptr, quot_ptr;
42   mp_limb divisor_limb;
43   mp_limb remainder_limb;
44
45   sign_dividend = dividend->size;
46   dividend_size = ABS (dividend->size);
47
48   if (dividend_size == 0)
49     {
50       quot->size = 0;
51       *rem_ptr = 0;
52       return;
53     }
54
55   sign_divisor = divisor_short;
56   divisor_limb = ABS (divisor_short);
57
58   /* No need for temporary allocation and copying even if QUOT == DIVIDEND
59      as the divisor is just one limb, and thus no intermediate remainders
60      need to be stored.  */
61
62   if (quot->alloc < dividend_size)
63     _mpz_realloc (quot, dividend_size);
64
65   quot_ptr = quot->d;
66   dividend_ptr = dividend->d;
67
68   remainder_limb = mpn_divmod_1 (quot_ptr,
69                                  dividend_ptr, dividend_size, divisor_limb);
70
71   *rem_ptr = sign_dividend >= 0 ? remainder_limb : -remainder_limb;
72   /* The quotient is DIVIDEND_SIZE limbs, but the most significant
73      might be zero.  Set QUOT_SIZE properly. */
74   quot_size = dividend_size - (quot_ptr[dividend_size - 1] == 0);
75   quot->size = (sign_divisor ^ sign_dividend) >= 0 ? quot_size : -quot_size;
76 }