summaryrefslogtreecommitdiffstats
path: root/gnu/lib/libgmp/mpn_add.c
blob: 10502a831ab6b3a38ba6254cbe7ba2a97a24f730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* mpn_add -- Add two low-level integers.

Copyright (C) 1991 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

The GNU MP Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with the GNU MP Library; see the file COPYING.  If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */

#include "gmp.h"
#include "gmp-impl.h"

/* Add ADD1_PTR/ADD1_SIZE and ADD2_PTR/ADD2_SIZE and store the first
   ADD1_SIZE words of the result at SUM_PTR.

   Return 1 if carry out was generated, return 0 otherwise.

   Argument constraint: ADD1_SIZE >= ADD2_SIZE.

   The size of SUM can be calculated as ADD1_SIZE + the return value.  */

mp_limb
#ifdef __STDC__
mpn_add (mp_ptr sum_ptr,
	 mp_srcptr add1_ptr, mp_size add1_size,
	 mp_srcptr add2_ptr, mp_size add2_size)
#else
mpn_add (sum_ptr, add1_ptr, add1_size, add2_ptr, add2_size)
     mp_ptr sum_ptr;
     mp_srcptr add1_ptr;
     mp_size add1_size;
     mp_srcptr add2_ptr;
     mp_size add2_size;
#endif
{
  mp_limb a1, a2, sum;
  mp_size j;

  /* The loop counter and index J goes from some negative value to zero.
     This way the loops become faster.  Need to offset the base pointers
     to take care of the negative indices.  */

  j = -add2_size;
  if (j == 0)
    goto add2_finished;

  add1_ptr -= j;
  add2_ptr -= j;
  sum_ptr -= j;

  /* There are two do-loops, marked NON-CARRY LOOP and CARRY LOOP that
     jump between each other.  The first loop is for when the previous
     addition didn't produce a carry-out; the second is for the
     complementary case.  */

  /* NON-CARRY LOOP */
  do
    {
      a1 = add1_ptr[j];
      a2 = add2_ptr[j];
      sum = a1 + a2;
      sum_ptr[j] = sum;
      if (sum < a2)
	goto cy_loop;
    ncy_loop:
      j++;
    }
  while (j < 0);

  /* We have exhausted ADD2.  Just copy ADD1 to SUM, and return
     0 as an indication of no carry-out.  */

 add2_finished:
  /* Immediate return if the copy would be a no-op.  */
  if (sum_ptr == add1_ptr)
    return 0;

  j = add2_size - add1_size;
  add1_ptr -= j;
  sum_ptr -= j;

  while (j < 0)
    {
      sum_ptr[j] = add1_ptr[j];
      j++;
    }
  return 0;

  /* CARRY LOOP */
  do
    {
      a1 = add1_ptr[j];
      a2 = add2_ptr[j];
      sum = a1 + a2 + 1;
      sum_ptr[j] = sum;
      if (sum > a2)
	goto ncy_loop;
    cy_loop:
      j++;
    }
  while (j < 0);

  j = add2_size - add1_size;
  add1_ptr -= j;
  sum_ptr -= j;

  while (j < 0)
    {
      a1 = add1_ptr[j];
      sum = a1 + 1;
      sum_ptr[j] = sum;
      if (sum > 0)
	goto copy_add1;
      j++;
    }
  return 1;

 copy_add1:
  if (sum_ptr == add1_ptr)
    return 0;

  j++;
  while (j < 0)
    {
      sum_ptr[j] = add1_ptr[j];
      j++;
    }

  return 0;
}
OpenPOWER on IntegriCloud