Merge branch 'vendor/GMP' into gcc441
[dragonfly.git] / contrib / gmp / mpz / lcm.c
1 /* mpz_lcm -- mpz/mpz least common multiple.
2
3 Copyright 1996, 2000, 2001, 2005 Free Software Foundation, Inc.
4
5 This file is part of the GNU MP Library.
6
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15 License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
19
20 #include "gmp.h"
21 #include "gmp-impl.h"
22 #include "longlong.h"
23
24
25 void
26 mpz_lcm (mpz_ptr r, mpz_srcptr u, mpz_srcptr v)
27 {
28   mpz_t g;
29   mp_size_t usize, vsize, size;
30   TMP_DECL;
31
32   usize = SIZ (u);
33   vsize = SIZ (v);
34   if (usize == 0 || vsize == 0)
35     {
36       SIZ (r) = 0;
37       return;
38     }
39   usize = ABS (usize);
40   vsize = ABS (vsize);
41
42   if (vsize == 1)
43     {
44       mp_limb_t  vl, gl, c;
45       mp_srcptr  up;
46       mp_ptr     rp;
47
48     one:
49       MPZ_REALLOC (r, usize+1);
50
51       up = PTR(u);
52       vl = PTR(v)[0];
53       gl = mpn_gcd_1 (up, usize, vl);
54       vl /= gl;
55
56       rp = PTR(r);
57       c = mpn_mul_1 (rp, up, usize, vl);
58       rp[usize] = c;
59       usize += (c != 0);
60       SIZ(r) = usize;
61       return;
62     }
63
64   if (usize == 1)
65     {
66       usize = vsize;
67       MPZ_SRCPTR_SWAP (u, v);
68       goto one;
69     }
70
71   TMP_MARK;
72   size = MAX (usize, vsize);
73   MPZ_TMP_INIT (g, size);
74
75   mpz_gcd (g, u, v);
76   mpz_divexact (g, u, g);
77   mpz_mul (r, g, v);
78
79   SIZ (r) = ABS (SIZ (r));      /* result always positive */
80
81   TMP_FREE;
82 }