Coverage Report

Created: 2025-12-31 06:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/gmp/mpz/aors.h
Line
Count
Source
1
/* mpz_add, mpz_sub -- add or subtract integers.
2
3
Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2011, 2012, 2020 Free
4
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 "gmp-impl.h"
33
34
35
#ifdef OPERATION_add
36
#define FUNCTION     mpz_add
37
#define VARIATION
38
#endif
39
#ifdef OPERATION_sub
40
#define FUNCTION     mpz_sub
41
8.60k
#define VARIATION    -
42
#endif
43
44
#ifndef FUNCTION
45
Error, need OPERATION_add or OPERATION_sub
46
#endif
47
48
49
void
50
FUNCTION (mpz_ptr w, mpz_srcptr u, mpz_srcptr v)
51
42.9k
{
52
42.9k
  mp_srcptr up, vp;
53
42.9k
  mp_ptr wp;
54
42.9k
  mp_size_t usize, vsize, wsize;
55
42.9k
  mp_size_t abs_usize;
56
42.9k
  mp_size_t abs_vsize;
57
58
42.9k
  usize = SIZ(u);
59
42.9k
  vsize = VARIATION SIZ(v);
60
42.9k
  abs_usize = ABS (usize);
61
42.9k
  abs_vsize = ABS (vsize);
62
63
42.9k
  if (abs_usize < abs_vsize)
64
10.1k
    {
65
      /* Swap U and V. */
66
10.1k
      MPZ_SRCPTR_SWAP (u, v);
67
10.1k
      MP_SIZE_T_SWAP (usize, vsize);
68
10.1k
      MP_SIZE_T_SWAP (abs_usize, abs_vsize);
69
10.1k
    }
70
71
  /* True: ABS_USIZE >= ABS_VSIZE.  */
72
73
  /* If not space for w (and possible carry), increase space.  */
74
42.9k
  wsize = abs_usize + 1;
75
42.9k
  wp = MPZ_REALLOC (w, wsize);
76
77
  /* These must be after realloc (u or v may be the same as w).  */
78
42.9k
  up = PTR(u);
79
42.9k
  vp = PTR(v);
80
81
42.9k
  if ((usize ^ vsize) < 0)
82
10.7k
    {
83
      /* U and V have different sign.  Need to compare them to determine
84
   which operand to subtract from which.  */
85
86
      /* This test is right since ABS_USIZE >= ABS_VSIZE.  */
87
10.7k
      if (abs_usize != abs_vsize)
88
4.97k
  {
89
4.97k
    mpn_sub (wp, up, abs_usize, vp, abs_vsize);
90
4.97k
    wsize = abs_usize;
91
4.97k
    MPN_NORMALIZE_NOT_ZERO (wp, wsize);
92
4.97k
    if (usize < 0)
93
4.37k
      wsize = -wsize;
94
4.97k
  }
95
5.73k
      else
96
5.73k
  {
97
5.73k
    int cmp = mpn_cmp (up, vp, abs_usize);
98
5.73k
    if (cmp < 0)
99
5.73k
      {
100
5.73k
        mpn_sub_n (wp, vp, up, abs_usize);
101
5.73k
        wsize = abs_usize;
102
5.73k
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
103
5.73k
        if (usize >= 0)
104
0
    wsize = -wsize;
105
5.73k
      }
106
0
    else if (cmp > 0)
107
0
      {
108
0
        mpn_sub_n (wp, up, vp, abs_usize);
109
0
        wsize = abs_usize;
110
0
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
111
0
        if (usize < 0)
112
0
    wsize = -wsize;
113
0
      }
114
0
    else
115
0
      wsize = 0;
116
5.73k
  }
117
10.7k
    }
118
32.2k
  else
119
32.2k
    {
120
      /* U and V have same sign.  Add them.  */
121
32.2k
      mp_limb_t cy_limb = mpn_add (wp, up, abs_usize, vp, abs_vsize);
122
32.2k
      wp[abs_usize] = cy_limb;
123
32.2k
      wsize = abs_usize + cy_limb;
124
32.2k
      if (usize < 0)
125
0
  wsize = -wsize;
126
32.2k
    }
127
128
42.9k
  SIZ(w) = wsize;
129
42.9k
}
__gmpz_add
Line
Count
Source
51
34.3k
{
52
34.3k
  mp_srcptr up, vp;
53
34.3k
  mp_ptr wp;
54
34.3k
  mp_size_t usize, vsize, wsize;
55
34.3k
  mp_size_t abs_usize;
56
34.3k
  mp_size_t abs_vsize;
57
58
34.3k
  usize = SIZ(u);
59
34.3k
  vsize = VARIATION SIZ(v);
60
34.3k
  abs_usize = ABS (usize);
61
34.3k
  abs_vsize = ABS (vsize);
62
63
34.3k
  if (abs_usize < abs_vsize)
64
1.65k
    {
65
      /* Swap U and V. */
66
1.65k
      MPZ_SRCPTR_SWAP (u, v);
67
1.65k
      MP_SIZE_T_SWAP (usize, vsize);
68
1.65k
      MP_SIZE_T_SWAP (abs_usize, abs_vsize);
69
1.65k
    }
70
71
  /* True: ABS_USIZE >= ABS_VSIZE.  */
72
73
  /* If not space for w (and possible carry), increase space.  */
74
34.3k
  wsize = abs_usize + 1;
75
34.3k
  wp = MPZ_REALLOC (w, wsize);
76
77
  /* These must be after realloc (u or v may be the same as w).  */
78
34.3k
  up = PTR(u);
79
34.3k
  vp = PTR(v);
80
81
34.3k
  if ((usize ^ vsize) < 0)
82
6.34k
    {
83
      /* U and V have different sign.  Need to compare them to determine
84
   which operand to subtract from which.  */
85
86
      /* This test is right since ABS_USIZE >= ABS_VSIZE.  */
87
6.34k
      if (abs_usize != abs_vsize)
88
604
  {
89
604
    mpn_sub (wp, up, abs_usize, vp, abs_vsize);
90
604
    wsize = abs_usize;
91
604
    MPN_NORMALIZE_NOT_ZERO (wp, wsize);
92
604
    if (usize < 0)
93
0
      wsize = -wsize;
94
604
  }
95
5.73k
      else
96
5.73k
  {
97
5.73k
    int cmp = mpn_cmp (up, vp, abs_usize);
98
5.73k
    if (cmp < 0)
99
5.73k
      {
100
5.73k
        mpn_sub_n (wp, vp, up, abs_usize);
101
5.73k
        wsize = abs_usize;
102
5.73k
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
103
5.73k
        if (usize >= 0)
104
0
    wsize = -wsize;
105
5.73k
      }
106
0
    else if (cmp > 0)
107
0
      {
108
0
        mpn_sub_n (wp, up, vp, abs_usize);
109
0
        wsize = abs_usize;
110
0
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
111
0
        if (usize < 0)
112
0
    wsize = -wsize;
113
0
      }
114
0
    else
115
0
      wsize = 0;
116
5.73k
  }
117
6.34k
    }
118
28.0k
  else
119
28.0k
    {
120
      /* U and V have same sign.  Add them.  */
121
28.0k
      mp_limb_t cy_limb = mpn_add (wp, up, abs_usize, vp, abs_vsize);
122
28.0k
      wp[abs_usize] = cy_limb;
123
28.0k
      wsize = abs_usize + cy_limb;
124
28.0k
      if (usize < 0)
125
0
  wsize = -wsize;
126
28.0k
    }
127
128
34.3k
  SIZ(w) = wsize;
129
34.3k
}
__gmpz_sub
Line
Count
Source
51
8.60k
{
52
8.60k
  mp_srcptr up, vp;
53
8.60k
  mp_ptr wp;
54
8.60k
  mp_size_t usize, vsize, wsize;
55
8.60k
  mp_size_t abs_usize;
56
8.60k
  mp_size_t abs_vsize;
57
58
8.60k
  usize = SIZ(u);
59
8.60k
  vsize = VARIATION SIZ(v);
60
8.60k
  abs_usize = ABS (usize);
61
8.60k
  abs_vsize = ABS (vsize);
62
63
8.60k
  if (abs_usize < abs_vsize)
64
8.54k
    {
65
      /* Swap U and V. */
66
8.54k
      MPZ_SRCPTR_SWAP (u, v);
67
8.54k
      MP_SIZE_T_SWAP (usize, vsize);
68
8.54k
      MP_SIZE_T_SWAP (abs_usize, abs_vsize);
69
8.54k
    }
70
71
  /* True: ABS_USIZE >= ABS_VSIZE.  */
72
73
  /* If not space for w (and possible carry), increase space.  */
74
8.60k
  wsize = abs_usize + 1;
75
8.60k
  wp = MPZ_REALLOC (w, wsize);
76
77
  /* These must be after realloc (u or v may be the same as w).  */
78
8.60k
  up = PTR(u);
79
8.60k
  vp = PTR(v);
80
81
8.60k
  if ((usize ^ vsize) < 0)
82
4.37k
    {
83
      /* U and V have different sign.  Need to compare them to determine
84
   which operand to subtract from which.  */
85
86
      /* This test is right since ABS_USIZE >= ABS_VSIZE.  */
87
4.37k
      if (abs_usize != abs_vsize)
88
4.37k
  {
89
4.37k
    mpn_sub (wp, up, abs_usize, vp, abs_vsize);
90
4.37k
    wsize = abs_usize;
91
4.37k
    MPN_NORMALIZE_NOT_ZERO (wp, wsize);
92
4.37k
    if (usize < 0)
93
4.37k
      wsize = -wsize;
94
4.37k
  }
95
0
      else
96
0
  {
97
0
    int cmp = mpn_cmp (up, vp, abs_usize);
98
0
    if (cmp < 0)
99
0
      {
100
0
        mpn_sub_n (wp, vp, up, abs_usize);
101
0
        wsize = abs_usize;
102
0
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
103
0
        if (usize >= 0)
104
0
    wsize = -wsize;
105
0
      }
106
0
    else if (cmp > 0)
107
0
      {
108
0
        mpn_sub_n (wp, up, vp, abs_usize);
109
0
        wsize = abs_usize;
110
0
        MPN_NORMALIZE_NOT_ZERO (wp, wsize);
111
0
        if (usize < 0)
112
0
    wsize = -wsize;
113
0
      }
114
0
    else
115
0
      wsize = 0;
116
0
  }
117
4.37k
    }
118
4.22k
  else
119
4.22k
    {
120
      /* U and V have same sign.  Add them.  */
121
4.22k
      mp_limb_t cy_limb = mpn_add (wp, up, abs_usize, vp, abs_vsize);
122
4.22k
      wp[abs_usize] = cy_limb;
123
4.22k
      wsize = abs_usize + cy_limb;
124
4.22k
      if (usize < 0)
125
0
  wsize = -wsize;
126
4.22k
    }
127
128
8.60k
  SIZ(w) = wsize;
129
8.60k
}