sum.c revision 1.1.1.2 1 1.1 kleink /****************************************************************
2 1.1 kleink
3 1.1 kleink The author of this software is David M. Gay.
4 1.1 kleink
5 1.1 kleink Copyright (C) 1998 by Lucent Technologies
6 1.1 kleink All Rights Reserved
7 1.1 kleink
8 1.1 kleink Permission to use, copy, modify, and distribute this software and
9 1.1 kleink its documentation for any purpose and without fee is hereby
10 1.1 kleink granted, provided that the above copyright notice appear in all
11 1.1 kleink copies and that both that the copyright notice and this
12 1.1 kleink permission notice and warranty disclaimer appear in supporting
13 1.1 kleink documentation, and that the name of Lucent or any of its entities
14 1.1 kleink not be used in advertising or publicity pertaining to
15 1.1 kleink distribution of the software without specific, written prior
16 1.1 kleink permission.
17 1.1 kleink
18 1.1 kleink LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 1.1 kleink INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
20 1.1 kleink IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
21 1.1 kleink SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
22 1.1 kleink WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
23 1.1 kleink IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24 1.1 kleink ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
25 1.1 kleink THIS SOFTWARE.
26 1.1 kleink
27 1.1 kleink ****************************************************************/
28 1.1 kleink
29 1.1 kleink /* Please send bug reports to David M. Gay (dmg at acm dot org,
30 1.1 kleink * with " at " changed at "@" and " dot " changed to "."). */
31 1.1 kleink
32 1.1 kleink #include "gdtoaimp.h"
33 1.1 kleink
34 1.1 kleink Bigint *
35 1.1 kleink #ifdef KR_headers
36 1.1 kleink sum(a, b) Bigint *a; Bigint *b;
37 1.1 kleink #else
38 1.1 kleink sum(Bigint *a, Bigint *b)
39 1.1 kleink #endif
40 1.1 kleink {
41 1.1 kleink Bigint *c;
42 1.1 kleink ULong carry, *xc, *xa, *xb, *xe, y;
43 1.1 kleink #ifdef Pack_32
44 1.1 kleink ULong z;
45 1.1 kleink #endif
46 1.1 kleink
47 1.1 kleink if (a->wds < b->wds) {
48 1.1 kleink c = b; b = a; a = c;
49 1.1 kleink }
50 1.1 kleink c = Balloc(a->k);
51 1.1 kleink c->wds = a->wds;
52 1.1 kleink carry = 0;
53 1.1 kleink xa = a->x;
54 1.1 kleink xb = b->x;
55 1.1 kleink xc = c->x;
56 1.1 kleink xe = xc + b->wds;
57 1.1 kleink #ifdef Pack_32
58 1.1 kleink do {
59 1.1 kleink y = (*xa & 0xffff) + (*xb & 0xffff) + carry;
60 1.1 kleink carry = (y & 0x10000) >> 16;
61 1.1 kleink z = (*xa++ >> 16) + (*xb++ >> 16) + carry;
62 1.1 kleink carry = (z & 0x10000) >> 16;
63 1.1 kleink Storeinc(xc, z, y);
64 1.1 kleink }
65 1.1 kleink while(xc < xe);
66 1.1 kleink xe += a->wds - b->wds;
67 1.1 kleink while(xc < xe) {
68 1.1 kleink y = (*xa & 0xffff) + carry;
69 1.1 kleink carry = (y & 0x10000) >> 16;
70 1.1 kleink z = (*xa++ >> 16) + carry;
71 1.1 kleink carry = (z & 0x10000) >> 16;
72 1.1 kleink Storeinc(xc, z, y);
73 1.1 kleink }
74 1.1 kleink #else
75 1.1 kleink do {
76 1.1 kleink y = *xa++ + *xb++ + carry;
77 1.1 kleink carry = (y & 0x10000) >> 16;
78 1.1 kleink *xc++ = y & 0xffff;
79 1.1 kleink }
80 1.1 kleink while(xc < xe);
81 1.1 kleink xe += a->wds - b->wds;
82 1.1 kleink while(xc < xe) {
83 1.1 kleink y = *xa++ + carry;
84 1.1 kleink carry = (y & 0x10000) >> 16;
85 1.1 kleink *xc++ = y & 0xffff;
86 1.1 kleink }
87 1.1 kleink #endif
88 1.1 kleink if (carry) {
89 1.1 kleink if (c->wds == c->maxwds) {
90 1.1 kleink b = Balloc(c->k + 1);
91 1.1 kleink Bcopy(b, c);
92 1.1 kleink Bfree(c);
93 1.1 kleink c = b;
94 1.1 kleink }
95 1.1 kleink c->x[c->wds++] = 1;
96 1.1 kleink }
97 1.1 kleink return c;
98 1.1 kleink }
99