Upgrade GMP from 4.3.2 to 5.0.2 on the vendor branch
[dragonfly.git] / contrib / gmp / mpf / mul.c
1 /* mpf_mul -- Multiply two floats.
2
3 Copyright 1993, 1994, 1996, 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
23 void
24 mpf_mul (mpf_ptr r, mpf_srcptr u, mpf_srcptr v)
25 {
26   mp_srcptr up, vp;
27   mp_size_t usize, vsize;
28   mp_size_t sign_product;
29   mp_size_t prec = r->_mp_prec;
30   TMP_DECL;
31
32   TMP_MARK;
33   usize = u->_mp_size;
34   vsize = v->_mp_size;
35   sign_product = usize ^ vsize;
36
37   usize = ABS (usize);
38   vsize = ABS (vsize);
39
40   up = u->_mp_d;
41   vp = v->_mp_d;
42   if (usize > prec)
43     {
44       up += usize - prec;
45       usize = prec;
46     }
47   if (vsize > prec)
48     {
49       vp += vsize - prec;
50       vsize = prec;
51     }
52
53   if (usize == 0 || vsize == 0)
54     {
55       r->_mp_size = 0;
56       r->_mp_exp = 0;           /* ??? */
57     }
58   else
59     {
60       mp_size_t rsize;
61       mp_limb_t cy_limb;
62       mp_ptr rp, tp;
63       mp_size_t adj;
64
65       rsize = usize + vsize;
66       tp = TMP_ALLOC_LIMBS (rsize);
67       cy_limb = (usize >= vsize
68                  ? mpn_mul (tp, up, usize, vp, vsize)
69                  : mpn_mul (tp, vp, vsize, up, usize));
70
71       adj = cy_limb == 0;
72       rsize -= adj;
73       prec++;
74       if (rsize > prec)
75         {
76           tp += rsize - prec;
77           rsize = prec;
78         }
79       rp = r->_mp_d;
80       MPN_COPY (rp, tp, rsize);
81       r->_mp_exp = u->_mp_exp + v->_mp_exp - adj;
82       r->_mp_size = sign_product >= 0 ? rsize : -rsize;
83     }
84   TMP_FREE;
85 }