Coverage Report

Created: 2026-02-09 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/gmp/mpz/mul.c
Line
Count
Source
1
/* mpz_mul -- Multiply two integers.
2
3
Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005, 2009, 2011, 2012,
4
2015 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 either:
10
11
  * the GNU Lesser General Public License as published by the Free
12
    Software Foundation; either version 3 of the License, or (at your
13
    option) any later version.
14
15
or
16
17
  * the GNU General Public License as published by the Free Software
18
    Foundation; either version 2 of the License, or (at your option) any
19
    later version.
20
21
or both in parallel, as here.
22
23
The GNU MP Library is distributed in the hope that it will be useful, but
24
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
25
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26
for more details.
27
28
You should have received copies of the GNU General Public License and the
29
GNU Lesser General Public License along with the GNU MP Library.  If not,
30
see https://www.gnu.org/licenses/.  */
31
32
#include <stdio.h> /* for NULL */
33
#include "gmp-impl.h"
34
35
36
void
37
mpz_mul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v)
38
91.3k
{
39
91.3k
  mp_size_t usize;
40
91.3k
  mp_size_t vsize;
41
91.3k
  mp_size_t wsize;
42
91.3k
  mp_size_t sign_product;
43
91.3k
  mp_ptr up, vp;
44
91.3k
  mp_ptr wp;
45
91.3k
  mp_ptr free_me;
46
91.3k
  size_t free_me_size;
47
91.3k
  mp_limb_t cy_limb;
48
91.3k
  TMP_DECL;
49
50
91.3k
  usize = SIZ (u);
51
91.3k
  vsize = SIZ (v);
52
91.3k
  sign_product = usize ^ vsize;
53
91.3k
  usize = ABS (usize);
54
91.3k
  vsize = ABS (vsize);
55
56
91.3k
  if (usize < vsize)
57
10.2k
    {
58
10.2k
      MPZ_SRCPTR_SWAP (u, v);
59
10.2k
      MP_SIZE_T_SWAP (usize, vsize);
60
10.2k
    }
61
62
91.3k
  if (vsize == 0)
63
130
    {
64
130
      SIZ (w) = 0;
65
130
      return;
66
130
    }
67
68
#if HAVE_NATIVE_mpn_mul_2
69
  if (vsize <= 2)
70
    {
71
      wp = MPZ_REALLOC (w, usize+vsize);
72
      if (vsize == 1)
73
  cy_limb = mpn_mul_1 (wp, PTR (u), usize, PTR (v)[0]);
74
      else
75
  {
76
    cy_limb = mpn_mul_2 (wp, PTR (u), usize, PTR (v));
77
    usize++;
78
  }
79
      wp[usize] = cy_limb;
80
      usize += (cy_limb != 0);
81
      SIZ (w) = (sign_product >= 0 ? usize : -usize);
82
      return;
83
    }
84
#else
85
91.1k
  if (vsize == 1)
86
7.89k
    {
87
7.89k
      wp = MPZ_REALLOC (w, usize+1);
88
7.89k
      cy_limb = mpn_mul_1 (wp, PTR (u), usize, PTR (v)[0]);
89
7.89k
      wp[usize] = cy_limb;
90
7.89k
      usize += (cy_limb != 0);
91
7.89k
      SIZ (w) = (sign_product >= 0 ? usize : -usize);
92
7.89k
      return;
93
7.89k
    }
94
83.2k
#endif
95
96
83.2k
  TMP_MARK;
97
83.2k
  free_me = NULL;
98
83.2k
  up = PTR (u);
99
83.2k
  vp = PTR (v);
100
83.2k
  wp = PTR (w);
101
102
  /* Ensure W has space enough to store the result.  */
103
83.2k
  wsize = usize + vsize;
104
83.2k
  if (ALLOC (w) < wsize)
105
77.6k
    {
106
77.6k
      if (ALLOC (w) != 0)
107
16.3k
  {
108
16.3k
    if (wp == up || wp == vp)
109
16.3k
      {
110
16.3k
        free_me = wp;
111
16.3k
        free_me_size = ALLOC (w);
112
16.3k
      }
113
0
    else
114
0
      (*__gmp_free_func) (wp, (size_t) ALLOC (w) * GMP_LIMB_BYTES);
115
16.3k
  }
116
117
77.6k
      ALLOC (w) = wsize;
118
77.6k
      wp = __GMP_ALLOCATE_FUNC_LIMBS (wsize);
119
77.6k
      PTR (w) = wp;
120
77.6k
    }
121
5.60k
  else
122
5.60k
    {
123
      /* Make U and V not overlap with W.  */
124
5.60k
      if (wp == up)
125
8
  {
126
    /* W and U are identical.  Allocate temporary space for U.  */
127
8
    up = TMP_ALLOC_LIMBS (usize);
128
    /* Is V identical too?  Keep it identical with U.  */
129
8
    if (wp == vp)
130
0
      vp = up;
131
    /* Copy to the temporary space.  */
132
8
    MPN_COPY (up, wp, usize);
133
8
  }
134
5.59k
      else if (wp == vp)
135
0
  {
136
    /* W and V are identical.  Allocate temporary space for V.  */
137
0
    vp = TMP_ALLOC_LIMBS (vsize);
138
    /* Copy to the temporary space.  */
139
0
    MPN_COPY (vp, wp, vsize);
140
0
  }
141
5.60k
    }
142
143
83.2k
  if (up == vp)
144
33.5k
    {
145
33.5k
      mpn_sqr (wp, up, usize);
146
33.5k
      cy_limb = wp[wsize - 1];
147
33.5k
    }
148
49.7k
  else
149
49.7k
    {
150
49.7k
      cy_limb = mpn_mul (wp, up, usize, vp, vsize);
151
49.7k
    }
152
153
83.2k
  wsize -= cy_limb == 0;
154
155
83.2k
  SIZ (w) = sign_product < 0 ? -wsize : wsize;
156
83.2k
  if (free_me != NULL)
157
16.3k
    (*__gmp_free_func) (free_me, free_me_size * GMP_LIMB_BYTES);
158
83.2k
  TMP_FREE;
159
83.2k
}