blob: e51517f3c8935e0152314bbab63aadfe37bd044d [file] [log] [blame]
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00002
Guido van Rossumedcc38a1991-05-05 20:09:44 +00003/* Long (arbitrary precision) integer object implementation */
4
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00005/* XXX The functional organization of this file is terrible */
6
Guido van Rossumc0b618a1997-05-02 03:12:38 +00007#include "Python.h"
Guido van Rossumedcc38a1991-05-05 20:09:44 +00008#include "longintrepr.h"
Guido van Rossumc0b618a1997-05-02 03:12:38 +00009
Guido van Rossumeb1fafc1994-08-29 12:47:19 +000010#include <ctype.h>
Guido van Rossumedcc38a1991-05-05 20:09:44 +000011
Tim Peters5af4e6c2002-08-12 02:31:19 +000012/* For long multiplication, use the O(N**2) school algorithm unless
13 * both operands contain more than KARATSUBA_CUTOFF digits (this
14 * being an internal Python long digit, in base BASE).
15 */
Tim Peters0973b992004-08-29 22:16:50 +000016#define KARATSUBA_CUTOFF 70
17#define KARATSUBA_SQUARE_CUTOFF (2 * KARATSUBA_CUTOFF)
Tim Peters5af4e6c2002-08-12 02:31:19 +000018
Tim Peters47e52ee2004-08-30 02:44:38 +000019/* For exponentiation, use the binary left-to-right algorithm
20 * unless the exponent contains more than FIVEARY_CUTOFF digits.
21 * In that case, do 5 bits at a time. The potential drawback is that
22 * a table of 2**5 intermediate results is computed.
23 */
24#define FIVEARY_CUTOFF 8
25
Guido van Rossume32e0141992-01-19 16:31:05 +000026#define ABS(x) ((x) < 0 ? -(x) : (x))
27
Tim Peters5af4e6c2002-08-12 02:31:19 +000028#undef MIN
29#undef MAX
30#define MAX(x, y) ((x) < (y) ? (y) : (x))
31#define MIN(x, y) ((x) > (y) ? (y) : (x))
32
Guido van Rossume32e0141992-01-19 16:31:05 +000033/* Forward */
Tim Peters9f688bf2000-07-07 15:53:28 +000034static PyLongObject *long_normalize(PyLongObject *);
35static PyLongObject *mul1(PyLongObject *, wdigit);
36static PyLongObject *muladd1(PyLongObject *, wdigit, wdigit);
Tim Peters212e6142001-07-14 12:23:19 +000037static PyLongObject *divrem1(PyLongObject *, digit, digit *);
Tim Peters9f688bf2000-07-07 15:53:28 +000038static PyObject *long_format(PyObject *aa, int base, int addL);
Guido van Rossume32e0141992-01-19 16:31:05 +000039
Guido van Rossumc0b618a1997-05-02 03:12:38 +000040#define SIGCHECK(PyTryBlock) \
Skip Montanarod581d772002-09-03 20:10:45 +000041 if (--_Py_Ticker < 0) { \
42 _Py_Ticker = _Py_CheckInterval; \
Tim Petersd89fc222006-05-25 22:28:46 +000043 if (PyErr_CheckSignals()) PyTryBlock \
Guido van Rossum23d6f0e1991-05-14 12:06:49 +000044 }
45
Guido van Rossumedcc38a1991-05-05 20:09:44 +000046/* Normalize (remove leading zeros from) a long int object.
47 Doesn't attempt to free the storage--in most cases, due to the nature
48 of the algorithms used, this could save at most be one word anyway. */
49
Guido van Rossumc0b618a1997-05-02 03:12:38 +000050static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +000051long_normalize(register PyLongObject *v)
Guido van Rossumedcc38a1991-05-05 20:09:44 +000052{
Martin v. Löwis18e16552006-02-15 17:27:45 +000053 Py_ssize_t j = ABS(v->ob_size);
54 Py_ssize_t i = j;
Tim Peters5af4e6c2002-08-12 02:31:19 +000055
Guido van Rossumedcc38a1991-05-05 20:09:44 +000056 while (i > 0 && v->ob_digit[i-1] == 0)
57 --i;
58 if (i != j)
Guido van Rossum4c260ff1992-01-14 18:36:43 +000059 v->ob_size = (v->ob_size < 0) ? -(i) : i;
Guido van Rossumedcc38a1991-05-05 20:09:44 +000060 return v;
61}
62
63/* Allocate a new long int object with size digits.
64 Return NULL and set exception if we run out of memory. */
65
Guido van Rossumc0b618a1997-05-02 03:12:38 +000066PyLongObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +000067_PyLong_New(Py_ssize_t size)
Guido van Rossumedcc38a1991-05-05 20:09:44 +000068{
Neal Norwitzc6a989a2006-05-10 06:57:58 +000069 if (size > PY_SSIZE_T_MAX) {
Martin v. Löwis18e16552006-02-15 17:27:45 +000070 PyErr_NoMemory();
71 return NULL;
72 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +000073 return PyObject_NEW_VAR(PyLongObject, &PyLong_Type, size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +000074}
75
Tim Peters64b5ce32001-09-10 20:52:51 +000076PyObject *
77_PyLong_Copy(PyLongObject *src)
78{
79 PyLongObject *result;
Martin v. Löwis18e16552006-02-15 17:27:45 +000080 Py_ssize_t i;
Tim Peters64b5ce32001-09-10 20:52:51 +000081
82 assert(src != NULL);
83 i = src->ob_size;
84 if (i < 0)
85 i = -(i);
86 result = _PyLong_New(i);
87 if (result != NULL) {
Tim Peters5329cdb2002-03-02 04:18:04 +000088 result->ob_size = src->ob_size;
Tim Peters64b5ce32001-09-10 20:52:51 +000089 while (--i >= 0)
90 result->ob_digit[i] = src->ob_digit[i];
91 }
92 return (PyObject *)result;
93}
94
Guido van Rossumedcc38a1991-05-05 20:09:44 +000095/* Create a new long int object from a C long int */
96
Guido van Rossumc0b618a1997-05-02 03:12:38 +000097PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +000098PyLong_FromLong(long ival)
Guido van Rossumedcc38a1991-05-05 20:09:44 +000099{
Tim Petersce9de2f2001-06-14 04:56:19 +0000100 PyLongObject *v;
101 unsigned long t; /* unsigned so >> doesn't propagate sign bit */
102 int ndigits = 0;
103 int negative = 0;
104
105 if (ival < 0) {
106 ival = -ival;
107 negative = 1;
108 }
109
110 /* Count the number of Python digits.
111 We used to pick 5 ("big enough for anything"), but that's a
112 waste of time and space given that 5*15 = 75 bits are rarely
113 needed. */
114 t = (unsigned long)ival;
115 while (t) {
116 ++ndigits;
117 t >>= SHIFT;
118 }
119 v = _PyLong_New(ndigits);
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000120 if (v != NULL) {
Tim Petersce9de2f2001-06-14 04:56:19 +0000121 digit *p = v->ob_digit;
122 v->ob_size = negative ? -ndigits : ndigits;
123 t = (unsigned long)ival;
124 while (t) {
125 *p++ = (digit)(t & MASK);
Guido van Rossum472c04f1996-12-05 21:57:21 +0000126 t >>= SHIFT;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000127 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000128 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000129 return (PyObject *)v;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000130}
131
Guido van Rossum53756b11997-01-03 17:14:46 +0000132/* Create a new long int object from a C unsigned long int */
133
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000134PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +0000135PyLong_FromUnsignedLong(unsigned long ival)
Guido van Rossum53756b11997-01-03 17:14:46 +0000136{
Tim Petersce9de2f2001-06-14 04:56:19 +0000137 PyLongObject *v;
138 unsigned long t;
139 int ndigits = 0;
140
141 /* Count the number of Python digits. */
142 t = (unsigned long)ival;
143 while (t) {
144 ++ndigits;
145 t >>= SHIFT;
146 }
147 v = _PyLong_New(ndigits);
Guido van Rossum53756b11997-01-03 17:14:46 +0000148 if (v != NULL) {
Tim Petersce9de2f2001-06-14 04:56:19 +0000149 digit *p = v->ob_digit;
150 v->ob_size = ndigits;
151 while (ival) {
152 *p++ = (digit)(ival & MASK);
153 ival >>= SHIFT;
Guido van Rossum53756b11997-01-03 17:14:46 +0000154 }
Guido van Rossum53756b11997-01-03 17:14:46 +0000155 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000156 return (PyObject *)v;
Guido van Rossum53756b11997-01-03 17:14:46 +0000157}
158
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000159/* Create a new long int object from a C double */
160
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000161PyObject *
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000162PyLong_FromDouble(double dval)
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000163{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000164 PyLongObject *v;
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000165 double frac;
166 int i, ndig, expo, neg;
167 neg = 0;
Tim Peters39dce292000-08-15 03:34:48 +0000168 if (Py_IS_INFINITY(dval)) {
Guido van Rossum1a23c241999-09-27 17:11:52 +0000169 PyErr_SetString(PyExc_OverflowError,
170 "cannot convert float infinity to long");
171 return NULL;
172 }
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000173 if (dval < 0.0) {
174 neg = 1;
175 dval = -dval;
176 }
177 frac = frexp(dval, &expo); /* dval = frac*2**expo; 0.0 <= frac < 1.0 */
178 if (expo <= 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000179 return PyLong_FromLong(0L);
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000180 ndig = (expo-1) / SHIFT + 1; /* Number of 'digits' in result */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000181 v = _PyLong_New(ndig);
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000182 if (v == NULL)
183 return NULL;
184 frac = ldexp(frac, (expo-1) % SHIFT + 1);
185 for (i = ndig; --i >= 0; ) {
186 long bits = (long)frac;
Guido van Rossum2095d241997-04-09 19:41:24 +0000187 v->ob_digit[i] = (digit) bits;
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000188 frac = frac - (double)bits;
189 frac = ldexp(frac, SHIFT);
190 }
191 if (neg)
Guido van Rossum4c260ff1992-01-14 18:36:43 +0000192 v->ob_size = -(v->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000193 return (PyObject *)v;
Guido van Rossum149e9ea1991-06-03 10:58:24 +0000194}
195
Armin Rigo4b63c212006-10-04 11:44:06 +0000196/* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define
197 * anything about what happens when a signed integer operation overflows,
198 * and some compilers think they're doing you a favor by being "clever"
199 * then. The bit pattern for the largest postive signed long is
200 * (unsigned long)LONG_MAX, and for the smallest negative signed long
201 * it is abs(LONG_MIN), which we could write -(unsigned long)LONG_MIN.
202 * However, some other compilers warn about applying unary minus to an
203 * unsigned operand. Hence the weird "0-".
204 */
205#define PY_ABS_LONG_MIN (0-(unsigned long)LONG_MIN)
206#define PY_ABS_SSIZE_T_MIN (0-(size_t)PY_SSIZE_T_MIN)
207
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000208/* Get a C long int from a long int object.
209 Returns -1 and sets an error condition if overflow occurs. */
210
211long
Tim Peters9f688bf2000-07-07 15:53:28 +0000212PyLong_AsLong(PyObject *vv)
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000213{
Guido van Rossumf7531811998-05-26 14:33:37 +0000214 /* This version by Tim Peters */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000215 register PyLongObject *v;
Guido van Rossumf7531811998-05-26 14:33:37 +0000216 unsigned long x, prev;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000217 Py_ssize_t i;
218 int sign;
Guido van Rossumf7531811998-05-26 14:33:37 +0000219
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000220 if (vv == NULL || !PyLong_Check(vv)) {
Guido van Rossum7e35d572001-09-15 03:14:32 +0000221 if (vv != NULL && PyInt_Check(vv))
222 return PyInt_AsLong(vv);
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000223 PyErr_BadInternalCall();
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000224 return -1;
225 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000226 v = (PyLongObject *)vv;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000227 i = v->ob_size;
228 sign = 1;
229 x = 0;
230 if (i < 0) {
231 sign = -1;
Guido van Rossum4c260ff1992-01-14 18:36:43 +0000232 i = -(i);
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000233 }
234 while (--i >= 0) {
235 prev = x;
236 x = (x << SHIFT) + v->ob_digit[i];
Guido van Rossumf7531811998-05-26 14:33:37 +0000237 if ((x >> SHIFT) != prev)
238 goto overflow;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000239 }
Armin Rigo4b63c212006-10-04 11:44:06 +0000240 /* Haven't lost any bits, but casting to long requires extra care
241 * (see comment above).
242 */
243 if (x <= (unsigned long)LONG_MAX) {
244 return (long)x * sign;
245 }
246 else if (sign < 0 && x == PY_ABS_LONG_MIN) {
247 return LONG_MIN;
248 }
249 /* else overflow */
Guido van Rossumf7531811998-05-26 14:33:37 +0000250
251 overflow:
252 PyErr_SetString(PyExc_OverflowError,
Skip Montanarobafedec2001-09-13 19:05:30 +0000253 "long int too large to convert to int");
Guido van Rossumf7531811998-05-26 14:33:37 +0000254 return -1;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000255}
256
Neal Norwitz8a87f5d2006-08-12 17:03:09 +0000257/* Get a Py_ssize_t from a long int object.
258 Returns -1 and sets an error condition if overflow occurs. */
259
260Py_ssize_t
261_PyLong_AsSsize_t(PyObject *vv) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000262 register PyLongObject *v;
263 size_t x, prev;
264 Py_ssize_t i;
265 int sign;
266
267 if (vv == NULL || !PyLong_Check(vv)) {
268 PyErr_BadInternalCall();
269 return -1;
270 }
271 v = (PyLongObject *)vv;
272 i = v->ob_size;
273 sign = 1;
274 x = 0;
275 if (i < 0) {
276 sign = -1;
277 i = -(i);
278 }
279 while (--i >= 0) {
280 prev = x;
281 x = (x << SHIFT) + v->ob_digit[i];
282 if ((x >> SHIFT) != prev)
283 goto overflow;
284 }
Armin Rigo4b63c212006-10-04 11:44:06 +0000285 /* Haven't lost any bits, but casting to a signed type requires
286 * extra care (see comment above).
Martin v. Löwis18e16552006-02-15 17:27:45 +0000287 */
Armin Rigo4b63c212006-10-04 11:44:06 +0000288 if (x <= (size_t)PY_SSIZE_T_MAX) {
289 return (Py_ssize_t)x * sign;
290 }
291 else if (sign < 0 && x == PY_ABS_SSIZE_T_MIN) {
292 return PY_SSIZE_T_MIN;
293 }
294 /* else overflow */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000295
296 overflow:
297 PyErr_SetString(PyExc_OverflowError,
298 "long int too large to convert to int");
Neal Norwitz8a87f5d2006-08-12 17:03:09 +0000299 return -1;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000300}
301
Guido van Rossumd8c80482002-08-13 00:24:58 +0000302/* Get a C unsigned long int from a long int object.
Guido van Rossum53756b11997-01-03 17:14:46 +0000303 Returns -1 and sets an error condition if overflow occurs. */
304
305unsigned long
Tim Peters9f688bf2000-07-07 15:53:28 +0000306PyLong_AsUnsignedLong(PyObject *vv)
Guido van Rossum53756b11997-01-03 17:14:46 +0000307{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000308 register PyLongObject *v;
Guido van Rossum53756b11997-01-03 17:14:46 +0000309 unsigned long x, prev;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000310 Py_ssize_t i;
Tim Peters5af4e6c2002-08-12 02:31:19 +0000311
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000312 if (vv == NULL || !PyLong_Check(vv)) {
Martin v. Löwis729d47d2004-09-20 06:17:46 +0000313 if (vv != NULL && PyInt_Check(vv)) {
314 long val = PyInt_AsLong(vv);
315 if (val < 0) {
316 PyErr_SetString(PyExc_OverflowError,
317 "can't convert negative value to unsigned long");
318 return (unsigned long) -1;
319 }
320 return val;
321 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000322 PyErr_BadInternalCall();
Guido van Rossum53756b11997-01-03 17:14:46 +0000323 return (unsigned long) -1;
324 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000325 v = (PyLongObject *)vv;
Guido van Rossum53756b11997-01-03 17:14:46 +0000326 i = v->ob_size;
327 x = 0;
328 if (i < 0) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000329 PyErr_SetString(PyExc_OverflowError,
Guido van Rossum53756b11997-01-03 17:14:46 +0000330 "can't convert negative value to unsigned long");
331 return (unsigned long) -1;
332 }
333 while (--i >= 0) {
334 prev = x;
335 x = (x << SHIFT) + v->ob_digit[i];
336 if ((x >> SHIFT) != prev) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000337 PyErr_SetString(PyExc_OverflowError,
Fred Drake661ea262000-10-24 19:57:45 +0000338 "long int too large to convert");
Guido van Rossum53756b11997-01-03 17:14:46 +0000339 return (unsigned long) -1;
340 }
341 }
342 return x;
343}
344
Thomas Hellera4ea6032003-04-17 18:55:45 +0000345/* Get a C unsigned long int from a long int object, ignoring the high bits.
346 Returns -1 and sets an error condition if an error occurs. */
347
348unsigned long
349PyLong_AsUnsignedLongMask(PyObject *vv)
350{
351 register PyLongObject *v;
352 unsigned long x;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000353 Py_ssize_t i;
354 int sign;
Thomas Hellera4ea6032003-04-17 18:55:45 +0000355
356 if (vv == NULL || !PyLong_Check(vv)) {
Martin v. Löwis729d47d2004-09-20 06:17:46 +0000357 if (vv != NULL && PyInt_Check(vv))
358 return PyInt_AsUnsignedLongMask(vv);
Thomas Hellera4ea6032003-04-17 18:55:45 +0000359 PyErr_BadInternalCall();
360 return (unsigned long) -1;
361 }
362 v = (PyLongObject *)vv;
363 i = v->ob_size;
364 sign = 1;
365 x = 0;
366 if (i < 0) {
367 sign = -1;
368 i = -i;
369 }
370 while (--i >= 0) {
371 x = (x << SHIFT) + v->ob_digit[i];
372 }
373 return x * sign;
374}
375
Tim Peters5b8132f2003-01-31 15:52:05 +0000376int
377_PyLong_Sign(PyObject *vv)
378{
379 PyLongObject *v = (PyLongObject *)vv;
Tim Peters5b8132f2003-01-31 15:52:05 +0000380
381 assert(v != NULL);
382 assert(PyLong_Check(v));
Tim Peters5b8132f2003-01-31 15:52:05 +0000383
Tim Petersee1a53c2003-02-02 02:57:53 +0000384 return v->ob_size == 0 ? 0 : (v->ob_size < 0 ? -1 : 1);
Tim Peters5b8132f2003-01-31 15:52:05 +0000385}
386
Tim Petersbaefd9e2003-01-28 20:37:45 +0000387size_t
388_PyLong_NumBits(PyObject *vv)
389{
390 PyLongObject *v = (PyLongObject *)vv;
Tim Peters5b8132f2003-01-31 15:52:05 +0000391 size_t result = 0;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000392 Py_ssize_t ndigits;
Tim Petersbaefd9e2003-01-28 20:37:45 +0000393
394 assert(v != NULL);
395 assert(PyLong_Check(v));
Guido van Rossum004a65c2003-02-03 15:28:19 +0000396 ndigits = ABS(v->ob_size);
Tim Petersbaefd9e2003-01-28 20:37:45 +0000397 assert(ndigits == 0 || v->ob_digit[ndigits - 1] != 0);
398 if (ndigits > 0) {
Tim Petersbaefd9e2003-01-28 20:37:45 +0000399 digit msd = v->ob_digit[ndigits - 1];
400
Tim Peters5b8132f2003-01-31 15:52:05 +0000401 result = (ndigits - 1) * SHIFT;
Skip Montanaro429433b2006-04-18 00:35:43 +0000402 if (result / SHIFT != (size_t)(ndigits - 1))
Tim Petersbaefd9e2003-01-28 20:37:45 +0000403 goto Overflow;
404 do {
405 ++result;
406 if (result == 0)
407 goto Overflow;
408 msd >>= 1;
409 } while (msd);
410 }
411 return result;
412
413Overflow:
414 PyErr_SetString(PyExc_OverflowError, "long has too many bits "
415 "to express in a platform size_t");
416 return (size_t)-1;
417}
418
Tim Peters2a9b3672001-06-11 21:23:58 +0000419PyObject *
420_PyLong_FromByteArray(const unsigned char* bytes, size_t n,
421 int little_endian, int is_signed)
422{
423 const unsigned char* pstartbyte;/* LSB of bytes */
424 int incr; /* direction to move pstartbyte */
425 const unsigned char* pendbyte; /* MSB of bytes */
426 size_t numsignificantbytes; /* number of bytes that matter */
427 size_t ndigits; /* number of Python long digits */
428 PyLongObject* v; /* result */
429 int idigit = 0; /* next free index in v->ob_digit */
430
431 if (n == 0)
432 return PyLong_FromLong(0L);
433
434 if (little_endian) {
435 pstartbyte = bytes;
436 pendbyte = bytes + n - 1;
437 incr = 1;
438 }
439 else {
440 pstartbyte = bytes + n - 1;
441 pendbyte = bytes;
442 incr = -1;
443 }
444
445 if (is_signed)
446 is_signed = *pendbyte >= 0x80;
447
448 /* Compute numsignificantbytes. This consists of finding the most
449 significant byte. Leading 0 bytes are insignficant if the number
450 is positive, and leading 0xff bytes if negative. */
451 {
452 size_t i;
453 const unsigned char* p = pendbyte;
454 const int pincr = -incr; /* search MSB to LSB */
455 const unsigned char insignficant = is_signed ? 0xff : 0x00;
456
457 for (i = 0; i < n; ++i, p += pincr) {
458 if (*p != insignficant)
459 break;
460 }
461 numsignificantbytes = n - i;
462 /* 2's-comp is a bit tricky here, e.g. 0xff00 == -0x0100, so
463 actually has 2 significant bytes. OTOH, 0xff0001 ==
464 -0x00ffff, so we wouldn't *need* to bump it there; but we
465 do for 0xffff = -0x0001. To be safe without bothering to
466 check every case, bump it regardless. */
467 if (is_signed && numsignificantbytes < n)
468 ++numsignificantbytes;
469 }
470
471 /* How many Python long digits do we need? We have
472 8*numsignificantbytes bits, and each Python long digit has SHIFT
473 bits, so it's the ceiling of the quotient. */
474 ndigits = (numsignificantbytes * 8 + SHIFT - 1) / SHIFT;
475 if (ndigits > (size_t)INT_MAX)
476 return PyErr_NoMemory();
477 v = _PyLong_New((int)ndigits);
478 if (v == NULL)
479 return NULL;
480
481 /* Copy the bits over. The tricky parts are computing 2's-comp on
482 the fly for signed numbers, and dealing with the mismatch between
483 8-bit bytes and (probably) 15-bit Python digits.*/
484 {
485 size_t i;
Tim Petersf251d062001-06-13 21:09:15 +0000486 twodigits carry = 1; /* for 2's-comp calculation */
Tim Peters2a9b3672001-06-11 21:23:58 +0000487 twodigits accum = 0; /* sliding register */
488 unsigned int accumbits = 0; /* number of bits in accum */
489 const unsigned char* p = pstartbyte;
490
491 for (i = 0; i < numsignificantbytes; ++i, p += incr) {
Tim Peters8bc84b42001-06-12 19:17:03 +0000492 twodigits thisbyte = *p;
Tim Peters2a9b3672001-06-11 21:23:58 +0000493 /* Compute correction for 2's comp, if needed. */
494 if (is_signed) {
495 thisbyte = (0xff ^ thisbyte) + carry;
496 carry = thisbyte >> 8;
497 thisbyte &= 0xff;
498 }
499 /* Because we're going LSB to MSB, thisbyte is
500 more significant than what's already in accum,
501 so needs to be prepended to accum. */
502 accum |= thisbyte << accumbits;
503 accumbits += 8;
504 if (accumbits >= SHIFT) {
505 /* There's enough to fill a Python digit. */
506 assert(idigit < (int)ndigits);
507 v->ob_digit[idigit] = (digit)(accum & MASK);
508 ++idigit;
509 accum >>= SHIFT;
510 accumbits -= SHIFT;
511 assert(accumbits < SHIFT);
512 }
513 }
514 assert(accumbits < SHIFT);
515 if (accumbits) {
516 assert(idigit < (int)ndigits);
517 v->ob_digit[idigit] = (digit)accum;
518 ++idigit;
519 }
520 }
521
522 v->ob_size = is_signed ? -idigit : idigit;
523 return (PyObject *)long_normalize(v);
524}
525
526int
527_PyLong_AsByteArray(PyLongObject* v,
528 unsigned char* bytes, size_t n,
529 int little_endian, int is_signed)
530{
531 int i; /* index into v->ob_digit */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000532 Py_ssize_t ndigits; /* |v->ob_size| */
Tim Peters2a9b3672001-06-11 21:23:58 +0000533 twodigits accum; /* sliding register */
534 unsigned int accumbits; /* # bits in accum */
535 int do_twos_comp; /* store 2's-comp? is_signed and v < 0 */
536 twodigits carry; /* for computing 2's-comp */
537 size_t j; /* # bytes filled */
538 unsigned char* p; /* pointer to next byte in bytes */
539 int pincr; /* direction to move p */
540
541 assert(v != NULL && PyLong_Check(v));
542
543 if (v->ob_size < 0) {
544 ndigits = -(v->ob_size);
545 if (!is_signed) {
546 PyErr_SetString(PyExc_TypeError,
547 "can't convert negative long to unsigned");
548 return -1;
549 }
550 do_twos_comp = 1;
551 }
552 else {
553 ndigits = v->ob_size;
554 do_twos_comp = 0;
555 }
556
557 if (little_endian) {
558 p = bytes;
559 pincr = 1;
560 }
561 else {
562 p = bytes + n - 1;
563 pincr = -1;
564 }
565
Tim Peters898cf852001-06-13 20:50:08 +0000566 /* Copy over all the Python digits.
567 It's crucial that every Python digit except for the MSD contribute
568 exactly SHIFT bits to the total, so first assert that the long is
569 normalized. */
570 assert(ndigits == 0 || v->ob_digit[ndigits - 1] != 0);
Tim Peters2a9b3672001-06-11 21:23:58 +0000571 j = 0;
572 accum = 0;
573 accumbits = 0;
574 carry = do_twos_comp ? 1 : 0;
575 for (i = 0; i < ndigits; ++i) {
576 twodigits thisdigit = v->ob_digit[i];
577 if (do_twos_comp) {
578 thisdigit = (thisdigit ^ MASK) + carry;
579 carry = thisdigit >> SHIFT;
580 thisdigit &= MASK;
581 }
Tim Peters8bc84b42001-06-12 19:17:03 +0000582 /* Because we're going LSB to MSB, thisdigit is more
583 significant than what's already in accum, so needs to be
584 prepended to accum. */
585 accum |= thisdigit << accumbits;
Tim Petersede05092001-06-14 08:53:38 +0000586 accumbits += SHIFT;
Tim Peters8bc84b42001-06-12 19:17:03 +0000587
Tim Petersede05092001-06-14 08:53:38 +0000588 /* The most-significant digit may be (probably is) at least
589 partly empty. */
Tim Peters8bc84b42001-06-12 19:17:03 +0000590 if (i == ndigits - 1) {
Tim Petersede05092001-06-14 08:53:38 +0000591 /* Count # of sign bits -- they needn't be stored,
592 * although for signed conversion we need later to
593 * make sure at least one sign bit gets stored.
594 * First shift conceptual sign bit to real sign bit.
595 */
596 stwodigits s = (stwodigits)(thisdigit <<
597 (8*sizeof(stwodigits) - SHIFT));
Tim Peters7a3bfc32001-06-12 01:22:22 +0000598 unsigned int nsignbits = 0;
Tim Petersede05092001-06-14 08:53:38 +0000599 while ((s < 0) == do_twos_comp && nsignbits < SHIFT) {
Tim Peters7a3bfc32001-06-12 01:22:22 +0000600 ++nsignbits;
Tim Petersede05092001-06-14 08:53:38 +0000601 s <<= 1;
Tim Peters7a3bfc32001-06-12 01:22:22 +0000602 }
Tim Petersede05092001-06-14 08:53:38 +0000603 accumbits -= nsignbits;
Tim Peters7a3bfc32001-06-12 01:22:22 +0000604 }
Tim Peters8bc84b42001-06-12 19:17:03 +0000605
Tim Peters2a9b3672001-06-11 21:23:58 +0000606 /* Store as many bytes as possible. */
Tim Peters7a3bfc32001-06-12 01:22:22 +0000607 while (accumbits >= 8) {
Tim Peters2a9b3672001-06-11 21:23:58 +0000608 if (j >= n)
609 goto Overflow;
610 ++j;
611 *p = (unsigned char)(accum & 0xff);
612 p += pincr;
613 accumbits -= 8;
614 accum >>= 8;
Tim Peters7a3bfc32001-06-12 01:22:22 +0000615 }
Tim Peters2a9b3672001-06-11 21:23:58 +0000616 }
617
618 /* Store the straggler (if any). */
619 assert(accumbits < 8);
620 assert(carry == 0); /* else do_twos_comp and *every* digit was 0 */
Tim Peters7a3bfc32001-06-12 01:22:22 +0000621 if (accumbits > 0) {
Tim Peters2a9b3672001-06-11 21:23:58 +0000622 if (j >= n)
623 goto Overflow;
624 ++j;
625 if (do_twos_comp) {
626 /* Fill leading bits of the byte with sign bits
627 (appropriately pretending that the long had an
628 infinite supply of sign bits). */
629 accum |= (~(twodigits)0) << accumbits;
630 }
631 *p = (unsigned char)(accum & 0xff);
632 p += pincr;
633 }
Tim Peters05607ad2001-06-13 21:01:27 +0000634 else if (j == n && n > 0 && is_signed) {
635 /* The main loop filled the byte array exactly, so the code
636 just above didn't get to ensure there's a sign bit, and the
637 loop below wouldn't add one either. Make sure a sign bit
638 exists. */
Tim Peters2a9b3672001-06-11 21:23:58 +0000639 unsigned char msb = *(p - pincr);
Tim Peters05607ad2001-06-13 21:01:27 +0000640 int sign_bit_set = msb >= 0x80;
641 assert(accumbits == 0);
642 if (sign_bit_set == do_twos_comp)
643 return 0;
644 else
Tim Peters2a9b3672001-06-11 21:23:58 +0000645 goto Overflow;
646 }
Tim Peters05607ad2001-06-13 21:01:27 +0000647
648 /* Fill remaining bytes with copies of the sign bit. */
649 {
650 unsigned char signbyte = do_twos_comp ? 0xffU : 0U;
651 for ( ; j < n; ++j, p += pincr)
652 *p = signbyte;
653 }
654
Tim Peters2a9b3672001-06-11 21:23:58 +0000655 return 0;
656
657Overflow:
658 PyErr_SetString(PyExc_OverflowError, "long too big to convert");
659 return -1;
Tim Peters5af4e6c2002-08-12 02:31:19 +0000660
Tim Peters2a9b3672001-06-11 21:23:58 +0000661}
662
Tim Petersa1c1b0f2001-09-04 02:50:49 +0000663double
664_PyLong_AsScaledDouble(PyObject *vv, int *exponent)
665{
666/* NBITS_WANTED should be > the number of bits in a double's precision,
667 but small enough so that 2**NBITS_WANTED is within the normal double
668 range. nbitsneeded is set to 1 less than that because the most-significant
669 Python digit contains at least 1 significant bit, but we don't want to
670 bother counting them (catering to the worst case cheaply).
671
672 57 is one more than VAX-D double precision; I (Tim) don't know of a double
673 format with more precision than that; it's 1 larger so that we add in at
674 least one round bit to stand in for the ignored least-significant bits.
675*/
676#define NBITS_WANTED 57
677 PyLongObject *v;
678 double x;
679 const double multiplier = (double)(1L << SHIFT);
Martin v. Löwis18e16552006-02-15 17:27:45 +0000680 Py_ssize_t i;
681 int sign;
Tim Petersa1c1b0f2001-09-04 02:50:49 +0000682 int nbitsneeded;
683
684 if (vv == NULL || !PyLong_Check(vv)) {
685 PyErr_BadInternalCall();
686 return -1;
687 }
688 v = (PyLongObject *)vv;
689 i = v->ob_size;
690 sign = 1;
691 if (i < 0) {
692 sign = -1;
693 i = -(i);
694 }
695 else if (i == 0) {
696 *exponent = 0;
697 return 0.0;
698 }
699 --i;
700 x = (double)v->ob_digit[i];
701 nbitsneeded = NBITS_WANTED - 1;
702 /* Invariant: i Python digits remain unaccounted for. */
703 while (i > 0 && nbitsneeded > 0) {
704 --i;
705 x = x * multiplier + (double)v->ob_digit[i];
706 nbitsneeded -= SHIFT;
707 }
708 /* There are i digits we didn't shift in. Pretending they're all
709 zeroes, the true value is x * 2**(i*SHIFT). */
710 *exponent = i;
711 assert(x > 0.0);
712 return x * sign;
713#undef NBITS_WANTED
714}
715
Guido van Rossum09e6ad01997-02-14 22:54:21 +0000716/* Get a C double from a long int object. */
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000717
718double
Tim Peters9f688bf2000-07-07 15:53:28 +0000719PyLong_AsDouble(PyObject *vv)
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000720{
Thomas Wouters553489a2006-02-01 21:32:04 +0000721 int e = -1;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000722 double x;
Tim Peters9fffa3e2001-09-04 05:14:19 +0000723
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000724 if (vv == NULL || !PyLong_Check(vv)) {
725 PyErr_BadInternalCall();
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000726 return -1;
727 }
Tim Peters9fffa3e2001-09-04 05:14:19 +0000728 x = _PyLong_AsScaledDouble(vv, &e);
729 if (x == -1.0 && PyErr_Occurred())
730 return -1.0;
Thomas Wouters553489a2006-02-01 21:32:04 +0000731 /* 'e' initialized to -1 to silence gcc-4.0.x, but it should be
732 set correctly after a successful _PyLong_AsScaledDouble() call */
733 assert(e >= 0);
Tim Peters9fffa3e2001-09-04 05:14:19 +0000734 if (e > INT_MAX / SHIFT)
735 goto overflow;
736 errno = 0;
737 x = ldexp(x, e * SHIFT);
Tim Peters57f282a2001-09-05 05:38:10 +0000738 if (Py_OVERFLOWED(x))
Tim Peters9fffa3e2001-09-04 05:14:19 +0000739 goto overflow;
740 return x;
741
742overflow:
743 PyErr_SetString(PyExc_OverflowError,
744 "long int too large to convert to float");
745 return -1.0;
Guido van Rossumedcc38a1991-05-05 20:09:44 +0000746}
747
Guido van Rossum78694d91998-09-18 14:14:13 +0000748/* Create a new long (or int) object from a C pointer */
749
750PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +0000751PyLong_FromVoidPtr(void *p)
Guido van Rossum78694d91998-09-18 14:14:13 +0000752{
Tim Peters70128a12001-06-16 08:48:40 +0000753#if SIZEOF_VOID_P <= SIZEOF_LONG
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000754 if ((long)p < 0)
755 return PyLong_FromUnsignedLong((unsigned long)p);
Guido van Rossum78694d91998-09-18 14:14:13 +0000756 return PyInt_FromLong((long)p);
757#else
Guido van Rossum78694d91998-09-18 14:14:13 +0000758
Tim Peters70128a12001-06-16 08:48:40 +0000759#ifndef HAVE_LONG_LONG
760# error "PyLong_FromVoidPtr: sizeof(void*) > sizeof(long), but no long long"
761#endif
762#if SIZEOF_LONG_LONG < SIZEOF_VOID_P
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000763# error "PyLong_FromVoidPtr: sizeof(PY_LONG_LONG) < sizeof(void*)"
Tim Peters70128a12001-06-16 08:48:40 +0000764#endif
765 /* optimize null pointers */
766 if (p == NULL)
767 return PyInt_FromLong(0);
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000768 return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)p);
Tim Peters70128a12001-06-16 08:48:40 +0000769
770#endif /* SIZEOF_VOID_P <= SIZEOF_LONG */
Guido van Rossum78694d91998-09-18 14:14:13 +0000771}
772
773/* Get a C pointer from a long object (or an int object in some cases) */
774
775void *
Tim Peters9f688bf2000-07-07 15:53:28 +0000776PyLong_AsVoidPtr(PyObject *vv)
Guido van Rossum78694d91998-09-18 14:14:13 +0000777{
778 /* This function will allow int or long objects. If vv is neither,
779 then the PyLong_AsLong*() functions will raise the exception:
780 PyExc_SystemError, "bad argument to internal function"
781 */
Tim Peters70128a12001-06-16 08:48:40 +0000782#if SIZEOF_VOID_P <= SIZEOF_LONG
Guido van Rossum78694d91998-09-18 14:14:13 +0000783 long x;
784
Tim Peters70128a12001-06-16 08:48:40 +0000785 if (PyInt_Check(vv))
Guido van Rossum78694d91998-09-18 14:14:13 +0000786 x = PyInt_AS_LONG(vv);
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000787 else if (PyLong_Check(vv) && _PyLong_Sign(vv) < 0)
Guido van Rossum78694d91998-09-18 14:14:13 +0000788 x = PyLong_AsLong(vv);
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000789 else
790 x = PyLong_AsUnsignedLong(vv);
Guido van Rossum78694d91998-09-18 14:14:13 +0000791#else
Tim Peters70128a12001-06-16 08:48:40 +0000792
793#ifndef HAVE_LONG_LONG
794# error "PyLong_AsVoidPtr: sizeof(void*) > sizeof(long), but no long long"
795#endif
796#if SIZEOF_LONG_LONG < SIZEOF_VOID_P
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000797# error "PyLong_AsVoidPtr: sizeof(PY_LONG_LONG) < sizeof(void*)"
Tim Peters70128a12001-06-16 08:48:40 +0000798#endif
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000799 PY_LONG_LONG x;
Guido van Rossum78694d91998-09-18 14:14:13 +0000800
Tim Peters70128a12001-06-16 08:48:40 +0000801 if (PyInt_Check(vv))
Guido van Rossum78694d91998-09-18 14:14:13 +0000802 x = PyInt_AS_LONG(vv);
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000803 else if (PyLong_Check(vv) && _PyLong_Sign(vv) < 0)
Guido van Rossum78694d91998-09-18 14:14:13 +0000804 x = PyLong_AsLongLong(vv);
Martin v. Löwis0bc2ab92006-04-10 20:28:17 +0000805 else
806 x = PyLong_AsUnsignedLongLong(vv);
Tim Peters70128a12001-06-16 08:48:40 +0000807
808#endif /* SIZEOF_VOID_P <= SIZEOF_LONG */
Guido van Rossum78694d91998-09-18 14:14:13 +0000809
810 if (x == -1 && PyErr_Occurred())
811 return NULL;
812 return (void *)x;
813}
814
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000815#ifdef HAVE_LONG_LONG
Tim Petersd1a7da62001-06-13 00:35:57 +0000816
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000817/* Initial PY_LONG_LONG support by Chris Herborth (chrish@qnx.com), later
Tim Petersd1a7da62001-06-13 00:35:57 +0000818 * rewritten to use the newer PyLong_{As,From}ByteArray API.
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000819 */
820
Tim Peterscf37dfc2001-06-14 18:42:50 +0000821#define IS_LITTLE_ENDIAN (int)*(unsigned char*)&one
Tim Petersd1a7da62001-06-13 00:35:57 +0000822
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000823/* Create a new long int object from a C PY_LONG_LONG int. */
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000824
825PyObject *
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000826PyLong_FromLongLong(PY_LONG_LONG ival)
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000827{
Bob Ippolitoa85bf202006-05-25 18:20:23 +0000828 PyLongObject *v;
829 unsigned PY_LONG_LONG t; /* unsigned so >> doesn't propagate sign bit */
830 int ndigits = 0;
831 int negative = 0;
832
833 if (ival < 0) {
834 ival = -ival;
835 negative = 1;
836 }
837
838 /* Count the number of Python digits.
839 We used to pick 5 ("big enough for anything"), but that's a
840 waste of time and space given that 5*15 = 75 bits are rarely
841 needed. */
842 t = (unsigned PY_LONG_LONG)ival;
843 while (t) {
844 ++ndigits;
845 t >>= SHIFT;
846 }
847 v = _PyLong_New(ndigits);
848 if (v != NULL) {
849 digit *p = v->ob_digit;
850 v->ob_size = negative ? -ndigits : ndigits;
851 t = (unsigned PY_LONG_LONG)ival;
852 while (t) {
853 *p++ = (digit)(t & MASK);
854 t >>= SHIFT;
855 }
856 }
857 return (PyObject *)v;
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000858}
859
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000860/* Create a new long int object from a C unsigned PY_LONG_LONG int. */
Tim Petersd1a7da62001-06-13 00:35:57 +0000861
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000862PyObject *
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000863PyLong_FromUnsignedLongLong(unsigned PY_LONG_LONG ival)
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000864{
Bob Ippolitoa85bf202006-05-25 18:20:23 +0000865 PyLongObject *v;
866 unsigned PY_LONG_LONG t;
867 int ndigits = 0;
868
869 /* Count the number of Python digits. */
870 t = (unsigned PY_LONG_LONG)ival;
871 while (t) {
872 ++ndigits;
873 t >>= SHIFT;
874 }
875 v = _PyLong_New(ndigits);
876 if (v != NULL) {
877 digit *p = v->ob_digit;
878 v->ob_size = ndigits;
879 while (ival) {
880 *p++ = (digit)(ival & MASK);
881 ival >>= SHIFT;
882 }
883 }
884 return (PyObject *)v;
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000885}
886
Martin v. Löwis18e16552006-02-15 17:27:45 +0000887/* Create a new long int object from a C Py_ssize_t. */
888
889PyObject *
890_PyLong_FromSsize_t(Py_ssize_t ival)
891{
892 Py_ssize_t bytes = ival;
893 int one = 1;
894 return _PyLong_FromByteArray(
895 (unsigned char *)&bytes,
Kristján Valur Jónssonf4601d82007-05-07 18:30:48 +0000896 SIZEOF_SIZE_T, IS_LITTLE_ENDIAN, 1);
Martin v. Löwis18e16552006-02-15 17:27:45 +0000897}
898
899/* Create a new long int object from a C size_t. */
900
901PyObject *
902_PyLong_FromSize_t(size_t ival)
903{
904 size_t bytes = ival;
905 int one = 1;
906 return _PyLong_FromByteArray(
907 (unsigned char *)&bytes,
908 SIZEOF_SIZE_T, IS_LITTLE_ENDIAN, 0);
909}
910
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000911/* Get a C PY_LONG_LONG int from a long int object.
Tim Petersd1a7da62001-06-13 00:35:57 +0000912 Return -1 and set an error if overflow occurs. */
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000913
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000914PY_LONG_LONG
Tim Peters9f688bf2000-07-07 15:53:28 +0000915PyLong_AsLongLong(PyObject *vv)
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000916{
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000917 PY_LONG_LONG bytes;
Tim Petersd1a7da62001-06-13 00:35:57 +0000918 int one = 1;
919 int res;
920
Tim Petersd38b1c72001-09-30 05:09:37 +0000921 if (vv == NULL) {
922 PyErr_BadInternalCall();
923 return -1;
924 }
925 if (!PyLong_Check(vv)) {
Martin v. Löwis6ce7ed22005-03-03 12:26:35 +0000926 PyNumberMethods *nb;
927 PyObject *io;
Tim Petersd38b1c72001-09-30 05:09:37 +0000928 if (PyInt_Check(vv))
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000929 return (PY_LONG_LONG)PyInt_AsLong(vv);
Martin v. Löwis6ce7ed22005-03-03 12:26:35 +0000930 if ((nb = vv->ob_type->tp_as_number) == NULL ||
931 nb->nb_int == NULL) {
932 PyErr_SetString(PyExc_TypeError, "an integer is required");
933 return -1;
934 }
935 io = (*nb->nb_int) (vv);
936 if (io == NULL)
937 return -1;
938 if (PyInt_Check(io)) {
939 bytes = PyInt_AsLong(io);
940 Py_DECREF(io);
941 return bytes;
942 }
943 if (PyLong_Check(io)) {
944 bytes = PyLong_AsLongLong(io);
945 Py_DECREF(io);
946 return bytes;
947 }
948 Py_DECREF(io);
949 PyErr_SetString(PyExc_TypeError, "integer conversion failed");
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000950 return -1;
951 }
952
Tim Petersd1a7da62001-06-13 00:35:57 +0000953 res = _PyLong_AsByteArray(
954 (PyLongObject *)vv, (unsigned char *)&bytes,
955 SIZEOF_LONG_LONG, IS_LITTLE_ENDIAN, 1);
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000956
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000957 /* Plan 9 can't handle PY_LONG_LONG in ? : expressions */
Martin v. Löwisc8bb9eb2002-03-09 12:02:59 +0000958 if (res < 0)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000959 return (PY_LONG_LONG)-1;
Martin v. Löwisc8bb9eb2002-03-09 12:02:59 +0000960 else
961 return bytes;
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000962}
963
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000964/* Get a C unsigned PY_LONG_LONG int from a long int object.
Tim Petersd1a7da62001-06-13 00:35:57 +0000965 Return -1 and set an error if overflow occurs. */
966
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000967unsigned PY_LONG_LONG
Tim Peters9f688bf2000-07-07 15:53:28 +0000968PyLong_AsUnsignedLongLong(PyObject *vv)
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000969{
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000970 unsigned PY_LONG_LONG bytes;
Tim Petersd1a7da62001-06-13 00:35:57 +0000971 int one = 1;
972 int res;
973
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000974 if (vv == NULL || !PyLong_Check(vv)) {
975 PyErr_BadInternalCall();
Skip Montanaro429433b2006-04-18 00:35:43 +0000976 return (unsigned PY_LONG_LONG)-1;
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000977 }
978
Tim Petersd1a7da62001-06-13 00:35:57 +0000979 res = _PyLong_AsByteArray(
980 (PyLongObject *)vv, (unsigned char *)&bytes,
981 SIZEOF_LONG_LONG, IS_LITTLE_ENDIAN, 0);
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000982
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000983 /* Plan 9 can't handle PY_LONG_LONG in ? : expressions */
Martin v. Löwisc8bb9eb2002-03-09 12:02:59 +0000984 if (res < 0)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +0000985 return (unsigned PY_LONG_LONG)res;
Martin v. Löwisc8bb9eb2002-03-09 12:02:59 +0000986 else
987 return bytes;
Guido van Rossum1a8791e1998-08-04 22:46:29 +0000988}
Tim Petersd1a7da62001-06-13 00:35:57 +0000989
Thomas Hellera4ea6032003-04-17 18:55:45 +0000990/* Get a C unsigned long int from a long int object, ignoring the high bits.
991 Returns -1 and sets an error condition if an error occurs. */
992
993unsigned PY_LONG_LONG
994PyLong_AsUnsignedLongLongMask(PyObject *vv)
995{
996 register PyLongObject *v;
997 unsigned PY_LONG_LONG x;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000998 Py_ssize_t i;
999 int sign;
Thomas Hellera4ea6032003-04-17 18:55:45 +00001000
1001 if (vv == NULL || !PyLong_Check(vv)) {
1002 PyErr_BadInternalCall();
1003 return (unsigned long) -1;
1004 }
1005 v = (PyLongObject *)vv;
1006 i = v->ob_size;
1007 sign = 1;
1008 x = 0;
1009 if (i < 0) {
1010 sign = -1;
1011 i = -i;
1012 }
1013 while (--i >= 0) {
1014 x = (x << SHIFT) + v->ob_digit[i];
1015 }
1016 return x * sign;
1017}
Tim Petersd1a7da62001-06-13 00:35:57 +00001018#undef IS_LITTLE_ENDIAN
1019
Guido van Rossum1a8791e1998-08-04 22:46:29 +00001020#endif /* HAVE_LONG_LONG */
1021
Neil Schemenauerba872e22001-01-04 01:46:03 +00001022
1023static int
1024convert_binop(PyObject *v, PyObject *w, PyLongObject **a, PyLongObject **b) {
Tim Peters5af4e6c2002-08-12 02:31:19 +00001025 if (PyLong_Check(v)) {
Neil Schemenauerba872e22001-01-04 01:46:03 +00001026 *a = (PyLongObject *) v;
1027 Py_INCREF(v);
1028 }
1029 else if (PyInt_Check(v)) {
1030 *a = (PyLongObject *) PyLong_FromLong(PyInt_AS_LONG(v));
1031 }
1032 else {
1033 return 0;
1034 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00001035 if (PyLong_Check(w)) {
Neil Schemenauerba872e22001-01-04 01:46:03 +00001036 *b = (PyLongObject *) w;
1037 Py_INCREF(w);
1038 }
1039 else if (PyInt_Check(w)) {
1040 *b = (PyLongObject *) PyLong_FromLong(PyInt_AS_LONG(w));
1041 }
1042 else {
1043 Py_DECREF(*a);
1044 return 0;
1045 }
1046 return 1;
1047}
1048
1049#define CONVERT_BINOP(v, w, a, b) \
1050 if (!convert_binop(v, w, a, b)) { \
1051 Py_INCREF(Py_NotImplemented); \
1052 return Py_NotImplemented; \
1053 }
1054
Tim Peters877a2122002-08-12 05:09:36 +00001055/* x[0:m] and y[0:n] are digit vectors, LSD first, m >= n required. x[0:n]
1056 * is modified in place, by adding y to it. Carries are propagated as far as
1057 * x[m-1], and the remaining carry (0 or 1) is returned.
1058 */
1059static digit
Martin v. Löwis18e16552006-02-15 17:27:45 +00001060v_iadd(digit *x, Py_ssize_t m, digit *y, Py_ssize_t n)
Tim Peters877a2122002-08-12 05:09:36 +00001061{
1062 int i;
1063 digit carry = 0;
1064
1065 assert(m >= n);
1066 for (i = 0; i < n; ++i) {
1067 carry += x[i] + y[i];
1068 x[i] = carry & MASK;
1069 carry >>= SHIFT;
1070 assert((carry & 1) == carry);
1071 }
1072 for (; carry && i < m; ++i) {
1073 carry += x[i];
1074 x[i] = carry & MASK;
1075 carry >>= SHIFT;
1076 assert((carry & 1) == carry);
1077 }
1078 return carry;
1079}
1080
1081/* x[0:m] and y[0:n] are digit vectors, LSD first, m >= n required. x[0:n]
1082 * is modified in place, by subtracting y from it. Borrows are propagated as
1083 * far as x[m-1], and the remaining borrow (0 or 1) is returned.
1084 */
1085static digit
Martin v. Löwis18e16552006-02-15 17:27:45 +00001086v_isub(digit *x, Py_ssize_t m, digit *y, Py_ssize_t n)
Tim Peters877a2122002-08-12 05:09:36 +00001087{
1088 int i;
1089 digit borrow = 0;
1090
1091 assert(m >= n);
1092 for (i = 0; i < n; ++i) {
1093 borrow = x[i] - y[i] - borrow;
1094 x[i] = borrow & MASK;
1095 borrow >>= SHIFT;
1096 borrow &= 1; /* keep only 1 sign bit */
1097 }
1098 for (; borrow && i < m; ++i) {
1099 borrow = x[i] - borrow;
1100 x[i] = borrow & MASK;
1101 borrow >>= SHIFT;
1102 borrow &= 1;
1103 }
1104 return borrow;
1105}
Neil Schemenauerba872e22001-01-04 01:46:03 +00001106
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001107/* Multiply by a single digit, ignoring the sign. */
1108
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001109static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001110mul1(PyLongObject *a, wdigit n)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001111{
1112 return muladd1(a, n, (digit)0);
1113}
1114
1115/* Multiply by a single digit and add a single digit, ignoring the sign. */
1116
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001117static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001118muladd1(PyLongObject *a, wdigit n, wdigit extra)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001119{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001120 Py_ssize_t size_a = ABS(a->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001121 PyLongObject *z = _PyLong_New(size_a+1);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001122 twodigits carry = extra;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001123 Py_ssize_t i;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001124
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001125 if (z == NULL)
1126 return NULL;
1127 for (i = 0; i < size_a; ++i) {
1128 carry += (twodigits)a->ob_digit[i] * n;
Guido van Rossum2095d241997-04-09 19:41:24 +00001129 z->ob_digit[i] = (digit) (carry & MASK);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001130 carry >>= SHIFT;
1131 }
Guido van Rossum2095d241997-04-09 19:41:24 +00001132 z->ob_digit[i] = (digit) carry;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001133 return long_normalize(z);
1134}
1135
Tim Peters212e6142001-07-14 12:23:19 +00001136/* Divide long pin, w/ size digits, by non-zero digit n, storing quotient
1137 in pout, and returning the remainder. pin and pout point at the LSD.
1138 It's OK for pin == pout on entry, which saves oodles of mallocs/frees in
1139 long_format, but that should be done with great care since longs are
1140 immutable. */
1141
1142static digit
Martin v. Löwis18e16552006-02-15 17:27:45 +00001143inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n)
Tim Peters212e6142001-07-14 12:23:19 +00001144{
1145 twodigits rem = 0;
1146
1147 assert(n > 0 && n <= MASK);
1148 pin += size;
1149 pout += size;
1150 while (--size >= 0) {
1151 digit hi;
1152 rem = (rem << SHIFT) + *--pin;
1153 *--pout = hi = (digit)(rem / n);
1154 rem -= hi * n;
1155 }
1156 return (digit)rem;
1157}
1158
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001159/* Divide a long integer by a digit, returning both the quotient
1160 (as function result) and the remainder (through *prem).
1161 The sign of a is ignored; n should not be zero. */
1162
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001163static PyLongObject *
Tim Peters212e6142001-07-14 12:23:19 +00001164divrem1(PyLongObject *a, digit n, digit *prem)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001165{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001166 const Py_ssize_t size = ABS(a->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001167 PyLongObject *z;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001168
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001169 assert(n > 0 && n <= MASK);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001170 z = _PyLong_New(size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001171 if (z == NULL)
1172 return NULL;
Tim Peters212e6142001-07-14 12:23:19 +00001173 *prem = inplace_divrem1(z->ob_digit, a->ob_digit, size, n);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001174 return long_normalize(z);
1175}
1176
1177/* Convert a long int object to a string, using a given conversion base.
Guido van Rossum3d3037d1991-10-24 14:55:57 +00001178 Return a string object.
Fred Drake121ee271999-12-23 15:41:28 +00001179 If base is 8 or 16, add the proper prefix '0' or '0x'. */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001180
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001181static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001182long_format(PyObject *aa, int base, int addL)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001183{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001184 register PyLongObject *a = (PyLongObject *)aa;
1185 PyStringObject *str;
Armin Rigo4b63c212006-10-04 11:44:06 +00001186 Py_ssize_t i, j, sz;
Neal Norwitzc09efa82006-07-23 07:53:14 +00001187 Py_ssize_t size_a;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001188 char *p;
1189 int bits;
1190 char sign = '\0';
Guido van Rossume32e0141992-01-19 16:31:05 +00001191
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001192 if (a == NULL || !PyLong_Check(a)) {
1193 PyErr_BadInternalCall();
Guido van Rossume32e0141992-01-19 16:31:05 +00001194 return NULL;
1195 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001196 assert(base >= 2 && base <= 36);
Neal Norwitzc09efa82006-07-23 07:53:14 +00001197 size_a = ABS(a->ob_size);
Tim Peters5af4e6c2002-08-12 02:31:19 +00001198
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001199 /* Compute a rough upper bound for the length of the string */
1200 i = base;
1201 bits = 0;
1202 while (i > 1) {
1203 ++bits;
1204 i >>= 1;
1205 }
Armin Rigo4b63c212006-10-04 11:44:06 +00001206 i = 5 + (addL ? 1 : 0);
1207 j = size_a*SHIFT + bits-1;
1208 sz = i + j / bits;
1209 if (j / SHIFT < size_a || sz < i) {
1210 PyErr_SetString(PyExc_OverflowError,
1211 "long is too large to format");
1212 return NULL;
1213 }
1214 str = (PyStringObject *) PyString_FromStringAndSize((char *)0, sz);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001215 if (str == NULL)
1216 return NULL;
Armin Rigo4b63c212006-10-04 11:44:06 +00001217 p = PyString_AS_STRING(str) + sz;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001218 *p = '\0';
Fred Drake121ee271999-12-23 15:41:28 +00001219 if (addL)
1220 *--p = 'L';
Guido van Rossum4c260ff1992-01-14 18:36:43 +00001221 if (a->ob_size < 0)
1222 sign = '-';
Tim Peters5af4e6c2002-08-12 02:31:19 +00001223
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001224 if (a->ob_size == 0) {
1225 *--p = '0';
1226 }
1227 else if ((base & (base - 1)) == 0) {
1228 /* JRH: special case for power-of-2 bases */
Tim Peters586b2e32001-07-15 09:11:14 +00001229 twodigits accum = 0;
1230 int accumbits = 0; /* # of bits in accum */
1231 int basebits = 1; /* # of bits in base-1 */
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001232 i = base;
Tim Peters7d3a5112000-07-08 04:17:21 +00001233 while ((i >>= 1) > 1)
1234 ++basebits;
Tim Peters586b2e32001-07-15 09:11:14 +00001235
1236 for (i = 0; i < size_a; ++i) {
Tim Peters0d2d87d2002-08-20 19:00:22 +00001237 accum |= (twodigits)a->ob_digit[i] << accumbits;
Tim Peters586b2e32001-07-15 09:11:14 +00001238 accumbits += SHIFT;
1239 assert(accumbits >= basebits);
1240 do {
Martin v. Löwisa5854c22002-02-16 23:39:10 +00001241 char cdigit = (char)(accum & (base - 1));
Raymond Hettinger3296e692005-06-29 23:29:56 +00001242 cdigit += (cdigit < 10) ? '0' : 'a'-10;
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001243 assert(p > PyString_AS_STRING(str));
Martin v. Löwisa5854c22002-02-16 23:39:10 +00001244 *--p = cdigit;
Tim Peters586b2e32001-07-15 09:11:14 +00001245 accumbits -= basebits;
1246 accum >>= basebits;
1247 } while (i < size_a-1 ? accumbits >= basebits :
1248 accum > 0);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001249 }
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001250 }
1251 else {
Tim Petersfad225f2001-07-13 02:59:26 +00001252 /* Not 0, and base not a power of 2. Divide repeatedly by
1253 base, but for speed use the highest power of base that
1254 fits in a digit. */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001255 Py_ssize_t size = size_a;
Tim Peters212e6142001-07-14 12:23:19 +00001256 digit *pin = a->ob_digit;
1257 PyLongObject *scratch;
1258 /* powbasw <- largest power of base that fits in a digit. */
Tim Petersfad225f2001-07-13 02:59:26 +00001259 digit powbase = base; /* powbase == base ** power */
1260 int power = 1;
1261 for (;;) {
1262 unsigned long newpow = powbase * (unsigned long)base;
1263 if (newpow >> SHIFT) /* doesn't fit in a digit */
1264 break;
1265 powbase = (digit)newpow;
1266 ++power;
1267 }
Tim Peters212e6142001-07-14 12:23:19 +00001268
1269 /* Get a scratch area for repeated division. */
1270 scratch = _PyLong_New(size);
1271 if (scratch == NULL) {
1272 Py_DECREF(str);
1273 return NULL;
1274 }
1275
1276 /* Repeatedly divide by powbase. */
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001277 do {
Tim Petersfad225f2001-07-13 02:59:26 +00001278 int ntostore = power;
Tim Peters212e6142001-07-14 12:23:19 +00001279 digit rem = inplace_divrem1(scratch->ob_digit,
1280 pin, size, powbase);
1281 pin = scratch->ob_digit; /* no need to use a again */
1282 if (pin[size - 1] == 0)
1283 --size;
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001284 SIGCHECK({
Tim Peters212e6142001-07-14 12:23:19 +00001285 Py_DECREF(scratch);
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001286 Py_DECREF(str);
1287 return NULL;
1288 })
Tim Peters212e6142001-07-14 12:23:19 +00001289
1290 /* Break rem into digits. */
Tim Petersc8a6b9b2001-07-14 11:01:28 +00001291 assert(ntostore > 0);
1292 do {
Tim Petersfad225f2001-07-13 02:59:26 +00001293 digit nextrem = (digit)(rem / base);
1294 char c = (char)(rem - nextrem * base);
1295 assert(p > PyString_AS_STRING(str));
Raymond Hettinger3296e692005-06-29 23:29:56 +00001296 c += (c < 10) ? '0' : 'a'-10;
Tim Petersfad225f2001-07-13 02:59:26 +00001297 *--p = c;
1298 rem = nextrem;
Tim Petersc8a6b9b2001-07-14 11:01:28 +00001299 --ntostore;
1300 /* Termination is a bit delicate: must not
1301 store leading zeroes, so must get out if
Tim Peters212e6142001-07-14 12:23:19 +00001302 remaining quotient and rem are both 0. */
1303 } while (ntostore && (size || rem));
1304 } while (size != 0);
1305 Py_DECREF(scratch);
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001306 }
1307
Guido van Rossum2c475421992-08-14 15:13:07 +00001308 if (base == 8) {
1309 if (size_a != 0)
1310 *--p = '0';
1311 }
Guido van Rossum3d3037d1991-10-24 14:55:57 +00001312 else if (base == 16) {
1313 *--p = 'x';
1314 *--p = '0';
1315 }
Guido van Rossumc6913e71991-11-19 20:26:46 +00001316 else if (base != 10) {
1317 *--p = '#';
1318 *--p = '0' + base%10;
1319 if (base > 10)
1320 *--p = '0' + base/10;
1321 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001322 if (sign)
1323 *--p = sign;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001324 if (p != PyString_AS_STRING(str)) {
1325 char *q = PyString_AS_STRING(str);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001326 assert(p > q);
1327 do {
1328 } while ((*q++ = *p++) != '\0');
Guido van Rossumc7ec9c91991-05-28 21:58:16 +00001329 q--;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001330 _PyString_Resize((PyObject **)&str,
Armin Rigo4b63c212006-10-04 11:44:06 +00001331 (Py_ssize_t) (q - PyString_AS_STRING(str)));
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001332 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001333 return (PyObject *)str;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001334}
1335
Tim Petersda53afa2006-05-25 17:34:03 +00001336/* Table of digit values for 8-bit string -> integer conversion.
1337 * '0' maps to 0, ..., '9' maps to 9.
1338 * 'a' and 'A' map to 10, ..., 'z' and 'Z' map to 35.
1339 * All other indices map to 37.
1340 * Note that when converting a base B string, a char c is a legitimate
1341 * base B digit iff _PyLong_DigitValue[Py_CHARMASK(c)] < B.
1342 */
1343int _PyLong_DigitValue[256] = {
Tim Peters696cf432006-05-24 21:10:40 +00001344 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1345 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1346 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1347 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 37, 37, 37, 37, 37, 37,
1348 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1349 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 37, 37, 37, 37,
1350 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1351 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 37, 37, 37, 37,
1352 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1353 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1354 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1355 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1356 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1357 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1358 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
1359 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37,
Tim Peters696cf432006-05-24 21:10:40 +00001360};
1361
1362/* *str points to the first digit in a string of base `base` digits. base
Tim Petersbf2674b2003-02-02 07:51:32 +00001363 * is a power of 2 (2, 4, 8, 16, or 32). *str is set to point to the first
1364 * non-digit (which may be *str!). A normalized long is returned.
1365 * The point to this routine is that it takes time linear in the number of
1366 * string characters.
1367 */
1368static PyLongObject *
1369long_from_binary_base(char **str, int base)
1370{
1371 char *p = *str;
1372 char *start = p;
1373 int bits_per_char;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001374 Py_ssize_t n;
Tim Petersbf2674b2003-02-02 07:51:32 +00001375 PyLongObject *z;
1376 twodigits accum;
1377 int bits_in_accum;
1378 digit *pdigit;
1379
1380 assert(base >= 2 && base <= 32 && (base & (base - 1)) == 0);
1381 n = base;
1382 for (bits_per_char = -1; n; ++bits_per_char)
1383 n >>= 1;
1384 /* n <- total # of bits needed, while setting p to end-of-string */
1385 n = 0;
Tim Petersda53afa2006-05-25 17:34:03 +00001386 while (_PyLong_DigitValue[Py_CHARMASK(*p)] < base)
Tim Petersbf2674b2003-02-02 07:51:32 +00001387 ++p;
Tim Petersbf2674b2003-02-02 07:51:32 +00001388 *str = p;
Armin Rigo4b63c212006-10-04 11:44:06 +00001389 /* n <- # of Python digits needed, = ceiling(n/SHIFT). */
1390 n = (p - start) * bits_per_char + SHIFT - 1;
1391 if (n / bits_per_char < p - start) {
Tim Peters1a3b19a2003-02-02 17:33:53 +00001392 PyErr_SetString(PyExc_ValueError,
1393 "long string too large to convert");
1394 return NULL;
1395 }
Armin Rigo4b63c212006-10-04 11:44:06 +00001396 n = n / SHIFT;
Tim Petersbf2674b2003-02-02 07:51:32 +00001397 z = _PyLong_New(n);
1398 if (z == NULL)
1399 return NULL;
1400 /* Read string from right, and fill in long from left; i.e.,
1401 * from least to most significant in both.
1402 */
1403 accum = 0;
1404 bits_in_accum = 0;
1405 pdigit = z->ob_digit;
1406 while (--p >= start) {
Tim Petersda53afa2006-05-25 17:34:03 +00001407 int k = _PyLong_DigitValue[Py_CHARMASK(*p)];
Tim Petersc7bc0b92003-05-05 20:39:43 +00001408 assert(k >= 0 && k < base);
1409 accum |= (twodigits)(k << bits_in_accum);
Tim Petersbf2674b2003-02-02 07:51:32 +00001410 bits_in_accum += bits_per_char;
1411 if (bits_in_accum >= SHIFT) {
1412 *pdigit++ = (digit)(accum & MASK);
Martin v. Löwis18e16552006-02-15 17:27:45 +00001413 assert(pdigit - z->ob_digit <= (int)n);
Tim Petersbf2674b2003-02-02 07:51:32 +00001414 accum >>= SHIFT;
1415 bits_in_accum -= SHIFT;
1416 assert(bits_in_accum < SHIFT);
1417 }
1418 }
1419 if (bits_in_accum) {
1420 assert(bits_in_accum <= SHIFT);
1421 *pdigit++ = (digit)accum;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001422 assert(pdigit - z->ob_digit <= (int)n);
Tim Petersbf2674b2003-02-02 07:51:32 +00001423 }
1424 while (pdigit - z->ob_digit < n)
1425 *pdigit++ = 0;
1426 return long_normalize(z);
1427}
1428
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001429PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001430PyLong_FromString(char *str, char **pend, int base)
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001431{
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001432 int sign = 1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00001433 char *start, *orig_str = str;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001434 PyLongObject *z;
Thomas Wouters9cb28bea2006-04-11 23:50:33 +00001435 PyObject *strobj, *strrepr;
1436 Py_ssize_t slen;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001437
Guido van Rossum472c04f1996-12-05 21:57:21 +00001438 if ((base != 0 && base < 2) || base > 36) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001439 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00001440 "long() arg 2 must be >= 2 and <= 36");
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001441 return NULL;
1442 }
Guido van Rossum9fa2c111995-02-10 17:00:37 +00001443 while (*str != '\0' && isspace(Py_CHARMASK(*str)))
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001444 str++;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001445 if (*str == '+')
1446 ++str;
1447 else if (*str == '-') {
1448 ++str;
1449 sign = -1;
1450 }
Guido van Rossum9fa2c111995-02-10 17:00:37 +00001451 while (*str != '\0' && isspace(Py_CHARMASK(*str)))
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001452 str++;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001453 if (base == 0) {
1454 if (str[0] != '0')
1455 base = 10;
1456 else if (str[1] == 'x' || str[1] == 'X')
1457 base = 16;
1458 else
1459 base = 8;
1460 }
1461 if (base == 16 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
1462 str += 2;
Tim Peters696cf432006-05-24 21:10:40 +00001463
Guido van Rossume6762971998-06-22 03:54:46 +00001464 start = str;
Tim Petersbf2674b2003-02-02 07:51:32 +00001465 if ((base & (base - 1)) == 0)
1466 z = long_from_binary_base(&str, base);
1467 else {
Tim Peters696cf432006-05-24 21:10:40 +00001468/***
1469Binary bases can be converted in time linear in the number of digits, because
1470Python's representation base is binary. Other bases (including decimal!) use
1471the simple quadratic-time algorithm below, complicated by some speed tricks.
Tim Peters5af4e6c2002-08-12 02:31:19 +00001472
Tim Peters696cf432006-05-24 21:10:40 +00001473First some math: the largest integer that can be expressed in N base-B digits
1474is B**N-1. Consequently, if we have an N-digit input in base B, the worst-
1475case number of Python digits needed to hold it is the smallest integer n s.t.
1476
1477 BASE**n-1 >= B**N-1 [or, adding 1 to both sides]
1478 BASE**n >= B**N [taking logs to base BASE]
1479 n >= log(B**N)/log(BASE) = N * log(B)/log(BASE)
1480
1481The static array log_base_BASE[base] == log(base)/log(BASE) so we can compute
1482this quickly. A Python long with that much space is reserved near the start,
1483and the result is computed into it.
1484
1485The input string is actually treated as being in base base**i (i.e., i digits
1486are processed at a time), where two more static arrays hold:
1487
1488 convwidth_base[base] = the largest integer i such that base**i <= BASE
1489 convmultmax_base[base] = base ** convwidth_base[base]
1490
1491The first of these is the largest i such that i consecutive input digits
1492must fit in a single Python digit. The second is effectively the input
1493base we're really using.
1494
1495Viewing the input as a sequence <c0, c1, ..., c_n-1> of digits in base
1496convmultmax_base[base], the result is "simply"
1497
1498 (((c0*B + c1)*B + c2)*B + c3)*B + ... ))) + c_n-1
1499
1500where B = convmultmax_base[base].
Tim Peters9faa3ed2006-05-30 15:53:34 +00001501
1502Error analysis: as above, the number of Python digits `n` needed is worst-
1503case
1504
1505 n >= N * log(B)/log(BASE)
1506
1507where `N` is the number of input digits in base `B`. This is computed via
1508
1509 size_z = (Py_ssize_t)((scan - str) * log_base_BASE[base]) + 1;
1510
1511below. Two numeric concerns are how much space this can waste, and whether
1512the computed result can be too small. To be concrete, assume BASE = 2**15,
1513which is the default (and it's unlikely anyone changes that).
1514
1515Waste isn't a problem: provided the first input digit isn't 0, the difference
1516between the worst-case input with N digits and the smallest input with N
1517digits is about a factor of B, but B is small compared to BASE so at most
1518one allocated Python digit can remain unused on that count. If
1519N*log(B)/log(BASE) is mathematically an exact integer, then truncating that
1520and adding 1 returns a result 1 larger than necessary. However, that can't
1521happen: whenever B is a power of 2, long_from_binary_base() is called
1522instead, and it's impossible for B**i to be an integer power of 2**15 when
1523B is not a power of 2 (i.e., it's impossible for N*log(B)/log(BASE) to be
1524an exact integer when B is not a power of 2, since B**i has a prime factor
1525other than 2 in that case, but (2**15)**j's only prime factor is 2).
1526
1527The computed result can be too small if the true value of N*log(B)/log(BASE)
1528is a little bit larger than an exact integer, but due to roundoff errors (in
1529computing log(B), log(BASE), their quotient, and/or multiplying that by N)
1530yields a numeric result a little less than that integer. Unfortunately, "how
1531close can a transcendental function get to an integer over some range?"
1532questions are generally theoretically intractable. Computer analysis via
1533continued fractions is practical: expand log(B)/log(BASE) via continued
1534fractions, giving a sequence i/j of "the best" rational approximations. Then
1535j*log(B)/log(BASE) is approximately equal to (the integer) i. This shows that
1536we can get very close to being in trouble, but very rarely. For example,
153776573 is a denominator in one of the continued-fraction approximations to
1538log(10)/log(2**15), and indeed:
1539
1540 >>> log(10)/log(2**15)*76573
1541 16958.000000654003
1542
1543is very close to an integer. If we were working with IEEE single-precision,
1544rounding errors could kill us. Finding worst cases in IEEE double-precision
1545requires better-than-double-precision log() functions, and Tim didn't bother.
1546Instead the code checks to see whether the allocated space is enough as each
1547new Python digit is added, and copies the whole thing to a larger long if not.
1548This should happen extremely rarely, and in fact I don't have a test case
1549that triggers it(!). Instead the code was tested by artificially allocating
1550just 1 digit at the start, so that the copying code was exercised for every
1551digit beyond the first.
Tim Peters696cf432006-05-24 21:10:40 +00001552***/
1553 register twodigits c; /* current input character */
1554 Py_ssize_t size_z;
1555 int i;
1556 int convwidth;
1557 twodigits convmultmax, convmult;
1558 digit *pz, *pzstop;
1559 char* scan;
1560
1561 static double log_base_BASE[37] = {0.0e0,};
1562 static int convwidth_base[37] = {0,};
1563 static twodigits convmultmax_base[37] = {0,};
1564
1565 if (log_base_BASE[base] == 0.0) {
1566 twodigits convmax = base;
1567 int i = 1;
1568
1569 log_base_BASE[base] = log((double)base) /
1570 log((double)BASE);
1571 for (;;) {
1572 twodigits next = convmax * base;
1573 if (next > BASE)
1574 break;
1575 convmax = next;
1576 ++i;
1577 }
1578 convmultmax_base[base] = convmax;
1579 assert(i > 0);
1580 convwidth_base[base] = i;
1581 }
1582
1583 /* Find length of the string of numeric characters. */
1584 scan = str;
Tim Petersda53afa2006-05-25 17:34:03 +00001585 while (_PyLong_DigitValue[Py_CHARMASK(*scan)] < base)
Tim Peters696cf432006-05-24 21:10:40 +00001586 ++scan;
1587
1588 /* Create a long object that can contain the largest possible
1589 * integer with this base and length. Note that there's no
1590 * need to initialize z->ob_digit -- no slot is read up before
1591 * being stored into.
1592 */
1593 size_z = (Py_ssize_t)((scan - str) * log_base_BASE[base]) + 1;
Tim Peters9faa3ed2006-05-30 15:53:34 +00001594 /* Uncomment next line to test exceedingly rare copy code */
1595 /* size_z = 1; */
Tim Peters696cf432006-05-24 21:10:40 +00001596 assert(size_z > 0);
1597 z = _PyLong_New(size_z);
1598 if (z == NULL)
1599 return NULL;
1600 z->ob_size = 0;
1601
1602 /* `convwidth` consecutive input digits are treated as a single
1603 * digit in base `convmultmax`.
1604 */
1605 convwidth = convwidth_base[base];
1606 convmultmax = convmultmax_base[base];
1607
1608 /* Work ;-) */
1609 while (str < scan) {
1610 /* grab up to convwidth digits from the input string */
Tim Petersda53afa2006-05-25 17:34:03 +00001611 c = (digit)_PyLong_DigitValue[Py_CHARMASK(*str++)];
Tim Peters696cf432006-05-24 21:10:40 +00001612 for (i = 1; i < convwidth && str != scan; ++i, ++str) {
1613 c = (twodigits)(c * base +
Tim Petersda53afa2006-05-25 17:34:03 +00001614 _PyLong_DigitValue[Py_CHARMASK(*str)]);
Tim Peters696cf432006-05-24 21:10:40 +00001615 assert(c < BASE);
1616 }
1617
1618 convmult = convmultmax;
1619 /* Calculate the shift only if we couldn't get
1620 * convwidth digits.
1621 */
1622 if (i != convwidth) {
1623 convmult = base;
1624 for ( ; i > 1; --i)
1625 convmult *= base;
1626 }
1627
1628 /* Multiply z by convmult, and add c. */
1629 pz = z->ob_digit;
1630 pzstop = pz + z->ob_size;
1631 for (; pz < pzstop; ++pz) {
1632 c += (twodigits)*pz * convmult;
1633 *pz = (digit)(c & MASK);
1634 c >>= SHIFT;
1635 }
1636 /* carry off the current end? */
1637 if (c) {
1638 assert(c < BASE);
Tim Peters9faa3ed2006-05-30 15:53:34 +00001639 if (z->ob_size < size_z) {
1640 *pz = (digit)c;
1641 ++z->ob_size;
1642 }
1643 else {
1644 PyLongObject *tmp;
1645 /* Extremely rare. Get more space. */
1646 assert(z->ob_size == size_z);
1647 tmp = _PyLong_New(size_z + 1);
1648 if (tmp == NULL) {
1649 Py_DECREF(z);
1650 return NULL;
1651 }
1652 memcpy(tmp->ob_digit,
1653 z->ob_digit,
1654 sizeof(digit) * size_z);
1655 Py_DECREF(z);
1656 z = tmp;
1657 z->ob_digit[size_z] = (digit)c;
1658 ++size_z;
1659 }
Tim Peters696cf432006-05-24 21:10:40 +00001660 }
Tim Petersbf2674b2003-02-02 07:51:32 +00001661 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001662 }
Guido van Rossumac6a37a1998-08-04 15:04:06 +00001663 if (z == NULL)
1664 return NULL;
Guido van Rossum9e896b32000-04-05 20:11:21 +00001665 if (str == start)
1666 goto onError;
Tim Peters696cf432006-05-24 21:10:40 +00001667 if (sign < 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00001668 z->ob_size = -(z->ob_size);
Guido van Rossum9e896b32000-04-05 20:11:21 +00001669 if (*str == 'L' || *str == 'l')
1670 str++;
1671 while (*str && isspace(Py_CHARMASK(*str)))
1672 str++;
1673 if (*str != '\0')
1674 goto onError;
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001675 if (pend)
1676 *pend = str;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001677 return (PyObject *) z;
Guido van Rossum9e896b32000-04-05 20:11:21 +00001678
1679 onError:
Guido van Rossum9e896b32000-04-05 20:11:21 +00001680 Py_XDECREF(z);
Thomas Wouters9cb28bea2006-04-11 23:50:33 +00001681 slen = strlen(orig_str) < 200 ? strlen(orig_str) : 200;
1682 strobj = PyString_FromStringAndSize(orig_str, slen);
1683 if (strobj == NULL)
1684 return NULL;
1685 strrepr = PyObject_Repr(strobj);
1686 Py_DECREF(strobj);
1687 if (strrepr == NULL)
1688 return NULL;
1689 PyErr_Format(PyExc_ValueError,
1690 "invalid literal for long() with base %d: %s",
1691 base, PyString_AS_STRING(strrepr));
1692 Py_DECREF(strrepr);
Guido van Rossum9e896b32000-04-05 20:11:21 +00001693 return NULL;
1694}
1695
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001696#ifdef Py_USING_UNICODE
Guido van Rossum9e896b32000-04-05 20:11:21 +00001697PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001698PyLong_FromUnicode(Py_UNICODE *u, Py_ssize_t length, int base)
Guido van Rossum9e896b32000-04-05 20:11:21 +00001699{
Walter Dörwald07e14762002-11-06 16:15:14 +00001700 PyObject *result;
Anthony Baxter377be112006-04-11 06:54:30 +00001701 char *buffer = (char *)PyMem_MALLOC(length+1);
Guido van Rossum9e896b32000-04-05 20:11:21 +00001702
Walter Dörwald07e14762002-11-06 16:15:14 +00001703 if (buffer == NULL)
1704 return NULL;
1705
1706 if (PyUnicode_EncodeDecimal(u, length, buffer, NULL)) {
1707 PyMem_FREE(buffer);
Guido van Rossum9e896b32000-04-05 20:11:21 +00001708 return NULL;
1709 }
Walter Dörwald07e14762002-11-06 16:15:14 +00001710 result = PyLong_FromString(buffer, NULL, base);
1711 PyMem_FREE(buffer);
1712 return result;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001713}
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001714#endif
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001715
Tim Peters9f688bf2000-07-07 15:53:28 +00001716/* forward */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001717static PyLongObject *x_divrem
Tim Peters9f688bf2000-07-07 15:53:28 +00001718 (PyLongObject *, PyLongObject *, PyLongObject **);
1719static PyObject *long_pos(PyLongObject *);
1720static int long_divrem(PyLongObject *, PyLongObject *,
1721 PyLongObject **, PyLongObject **);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001722
1723/* Long division with remainder, top-level routine */
1724
Guido van Rossume32e0141992-01-19 16:31:05 +00001725static int
Tim Peters9f688bf2000-07-07 15:53:28 +00001726long_divrem(PyLongObject *a, PyLongObject *b,
1727 PyLongObject **pdiv, PyLongObject **prem)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001728{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001729 Py_ssize_t size_a = ABS(a->ob_size), size_b = ABS(b->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001730 PyLongObject *z;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001731
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001732 if (size_b == 0) {
Guido van Rossumbd3a5271998-08-11 15:04:47 +00001733 PyErr_SetString(PyExc_ZeroDivisionError,
Fred Drake661ea262000-10-24 19:57:45 +00001734 "long division or modulo by zero");
Guido van Rossume32e0141992-01-19 16:31:05 +00001735 return -1;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001736 }
1737 if (size_a < size_b ||
Guido van Rossum472c04f1996-12-05 21:57:21 +00001738 (size_a == size_b &&
1739 a->ob_digit[size_a-1] < b->ob_digit[size_b-1])) {
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001740 /* |a| < |b|. */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001741 *pdiv = _PyLong_New(0);
Georg Brandl1dfa8ac2007-04-21 07:22:57 +00001742 if (*pdiv == NULL)
1743 return -1;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001744 Py_INCREF(a);
1745 *prem = (PyLongObject *) a;
Guido van Rossume32e0141992-01-19 16:31:05 +00001746 return 0;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001747 }
1748 if (size_b == 1) {
1749 digit rem = 0;
1750 z = divrem1(a, b->ob_digit[0], &rem);
Guido van Rossume32e0141992-01-19 16:31:05 +00001751 if (z == NULL)
1752 return -1;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001753 *prem = (PyLongObject *) PyLong_FromLong((long)rem);
Georg Brandl1dfa8ac2007-04-21 07:22:57 +00001754 if (*prem == NULL) {
1755 Py_DECREF(z);
1756 return -1;
1757 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001758 }
Guido van Rossume32e0141992-01-19 16:31:05 +00001759 else {
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001760 z = x_divrem(a, b, prem);
Guido van Rossume32e0141992-01-19 16:31:05 +00001761 if (z == NULL)
1762 return -1;
1763 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001764 /* Set the signs.
1765 The quotient z has the sign of a*b;
1766 the remainder r has the sign of a,
1767 so a = b*z + r. */
Guido van Rossume32e0141992-01-19 16:31:05 +00001768 if ((a->ob_size < 0) != (b->ob_size < 0))
1769 z->ob_size = -(z->ob_size);
1770 if (a->ob_size < 0 && (*prem)->ob_size != 0)
1771 (*prem)->ob_size = -((*prem)->ob_size);
1772 *pdiv = z;
1773 return 0;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001774}
1775
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00001776/* Unsigned long division with remainder -- the algorithm */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001777
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001778static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001779x_divrem(PyLongObject *v1, PyLongObject *w1, PyLongObject **prem)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001780{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001781 Py_ssize_t size_v = ABS(v1->ob_size), size_w = ABS(w1->ob_size);
Guido van Rossum2095d241997-04-09 19:41:24 +00001782 digit d = (digit) ((twodigits)BASE / (w1->ob_digit[size_w-1] + 1));
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001783 PyLongObject *v = mul1(v1, d);
1784 PyLongObject *w = mul1(w1, d);
1785 PyLongObject *a;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001786 Py_ssize_t j, k;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001787
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001788 if (v == NULL || w == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001789 Py_XDECREF(v);
1790 Py_XDECREF(w);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001791 return NULL;
1792 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00001793
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001794 assert(size_v >= size_w && size_w > 1); /* Assert checks by div() */
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00001795 assert(v->ob_refcnt == 1); /* Since v will be used as accumulator! */
Guido van Rossum4c260ff1992-01-14 18:36:43 +00001796 assert(size_w == ABS(w->ob_size)); /* That's how d was calculated */
Tim Peters5af4e6c2002-08-12 02:31:19 +00001797
Guido van Rossum4c260ff1992-01-14 18:36:43 +00001798 size_v = ABS(v->ob_size);
Neal Norwitzc6a989a2006-05-10 06:57:58 +00001799 k = size_v - size_w;
1800 a = _PyLong_New(k + 1);
Tim Peters5af4e6c2002-08-12 02:31:19 +00001801
Neal Norwitzc6a989a2006-05-10 06:57:58 +00001802 for (j = size_v; a != NULL && k >= 0; --j, --k) {
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001803 digit vj = (j >= size_v) ? 0 : v->ob_digit[j];
1804 twodigits q;
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00001805 stwodigits carry = 0;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001806 int i;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001807
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00001808 SIGCHECK({
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001809 Py_DECREF(a);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001810 a = NULL;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001811 break;
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00001812 })
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001813 if (vj == w->ob_digit[size_w-1])
1814 q = MASK;
1815 else
1816 q = (((twodigits)vj << SHIFT) + v->ob_digit[j-1]) /
1817 w->ob_digit[size_w-1];
Tim Peters5af4e6c2002-08-12 02:31:19 +00001818
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001819 while (w->ob_digit[size_w-2]*q >
1820 ((
1821 ((twodigits)vj << SHIFT)
1822 + v->ob_digit[j-1]
1823 - q*w->ob_digit[size_w-1]
1824 ) << SHIFT)
1825 + v->ob_digit[j-2])
1826 --q;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001827
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001828 for (i = 0; i < size_w && i+k < size_v; ++i) {
1829 twodigits z = w->ob_digit[i] * q;
Guido van Rossum2095d241997-04-09 19:41:24 +00001830 digit zz = (digit) (z >> SHIFT);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001831 carry += v->ob_digit[i+k] - z
1832 + ((twodigits)zz << SHIFT);
Jeremy Hyltonfc61f9a2003-05-01 21:31:53 +00001833 v->ob_digit[i+k] = (digit)(carry & MASK);
Tim Peters7d3a5112000-07-08 04:17:21 +00001834 carry = Py_ARITHMETIC_RIGHT_SHIFT(BASE_TWODIGITS_TYPE,
1835 carry, SHIFT);
1836 carry -= zz;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001837 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00001838
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001839 if (i+k < size_v) {
1840 carry += v->ob_digit[i+k];
1841 v->ob_digit[i+k] = 0;
1842 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00001843
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001844 if (carry == 0)
Guido van Rossum2095d241997-04-09 19:41:24 +00001845 a->ob_digit[k] = (digit) q;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001846 else {
1847 assert(carry == -1);
Guido van Rossum2095d241997-04-09 19:41:24 +00001848 a->ob_digit[k] = (digit) q-1;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001849 carry = 0;
1850 for (i = 0; i < size_w && i+k < size_v; ++i) {
1851 carry += v->ob_digit[i+k] + w->ob_digit[i];
Jeremy Hyltonfc61f9a2003-05-01 21:31:53 +00001852 v->ob_digit[i+k] = (digit)(carry & MASK);
Tim Peters7d3a5112000-07-08 04:17:21 +00001853 carry = Py_ARITHMETIC_RIGHT_SHIFT(
1854 BASE_TWODIGITS_TYPE,
1855 carry, SHIFT);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001856 }
1857 }
1858 } /* for j, k */
Tim Peters5af4e6c2002-08-12 02:31:19 +00001859
Guido van Rossumc206c761995-01-10 15:23:19 +00001860 if (a == NULL)
1861 *prem = NULL;
1862 else {
Guido van Rossumc6913e71991-11-19 20:26:46 +00001863 a = long_normalize(a);
Guido van Rossume32e0141992-01-19 16:31:05 +00001864 *prem = divrem1(v, d, &d);
1865 /* d receives the (unused) remainder */
1866 if (*prem == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001867 Py_DECREF(a);
Guido van Rossume32e0141992-01-19 16:31:05 +00001868 a = NULL;
Guido van Rossumc6913e71991-11-19 20:26:46 +00001869 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001870 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001871 Py_DECREF(v);
1872 Py_DECREF(w);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001873 return a;
1874}
1875
1876/* Methods */
1877
1878static void
Tim Peters9f688bf2000-07-07 15:53:28 +00001879long_dealloc(PyObject *v)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001880{
Guido van Rossum9475a232001-10-05 20:51:39 +00001881 v->ob_type->tp_free(v);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001882}
1883
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001884static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001885long_repr(PyObject *v)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001886{
Fred Drake121ee271999-12-23 15:41:28 +00001887 return long_format(v, 10, 1);
1888}
1889
1890static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001891long_str(PyObject *v)
Fred Drake121ee271999-12-23 15:41:28 +00001892{
1893 return long_format(v, 10, 0);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001894}
1895
1896static int
Tim Peters9f688bf2000-07-07 15:53:28 +00001897long_compare(PyLongObject *a, PyLongObject *b)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001898{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001899 Py_ssize_t sign;
Tim Peters5af4e6c2002-08-12 02:31:19 +00001900
Guido van Rossumc6913e71991-11-19 20:26:46 +00001901 if (a->ob_size != b->ob_size) {
Guido van Rossum4c260ff1992-01-14 18:36:43 +00001902 if (ABS(a->ob_size) == 0 && ABS(b->ob_size) == 0)
Guido van Rossumc6913e71991-11-19 20:26:46 +00001903 sign = 0;
1904 else
1905 sign = a->ob_size - b->ob_size;
1906 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001907 else {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001908 Py_ssize_t i = ABS(a->ob_size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001909 while (--i >= 0 && a->ob_digit[i] == b->ob_digit[i])
1910 ;
1911 if (i < 0)
1912 sign = 0;
Guido van Rossum0b0db8e1993-01-21 16:07:51 +00001913 else {
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001914 sign = (int)a->ob_digit[i] - (int)b->ob_digit[i];
Guido van Rossum0b0db8e1993-01-21 16:07:51 +00001915 if (a->ob_size < 0)
1916 sign = -sign;
1917 }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001918 }
Guido van Rossumc6913e71991-11-19 20:26:46 +00001919 return sign < 0 ? -1 : sign > 0 ? 1 : 0;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001920}
1921
Guido van Rossum9bfef441993-03-29 10:43:31 +00001922static long
Tim Peters9f688bf2000-07-07 15:53:28 +00001923long_hash(PyLongObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001924{
1925 long x;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001926 Py_ssize_t i;
1927 int sign;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001928
1929 /* This is designed so that Python ints and longs with the
1930 same value hash to the same value, otherwise comparisons
1931 of mapping keys will turn out weird */
1932 i = v->ob_size;
1933 sign = 1;
1934 x = 0;
1935 if (i < 0) {
1936 sign = -1;
1937 i = -(i);
1938 }
Neal Norwitzd5a65a72003-02-23 23:11:41 +00001939#define LONG_BIT_SHIFT (8*sizeof(long) - SHIFT)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001940 while (--i >= 0) {
Neal Norwitzd5a65a72003-02-23 23:11:41 +00001941 /* Force a native long #-bits (32 or 64) circular shift */
1942 x = ((x << SHIFT) & ~MASK) | ((x >> LONG_BIT_SHIFT) & MASK);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001943 x += v->ob_digit[i];
1944 }
Neal Norwitzd5a65a72003-02-23 23:11:41 +00001945#undef LONG_BIT_SHIFT
Guido van Rossum9bfef441993-03-29 10:43:31 +00001946 x = x * sign;
1947 if (x == -1)
1948 x = -2;
1949 return x;
1950}
1951
1952
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001953/* Add the absolute values of two long integers. */
1954
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001955static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001956x_add(PyLongObject *a, PyLongObject *b)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001957{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001958 Py_ssize_t size_a = ABS(a->ob_size), size_b = ABS(b->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001959 PyLongObject *z;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001960 int i;
1961 digit carry = 0;
Tim Peters69c2de32001-09-11 22:31:33 +00001962
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001963 /* Ensure a is the larger of the two: */
1964 if (size_a < size_b) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001965 { PyLongObject *temp = a; a = b; b = temp; }
Martin v. Löwis18e16552006-02-15 17:27:45 +00001966 { Py_ssize_t size_temp = size_a;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001967 size_a = size_b;
1968 size_b = size_temp; }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001969 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001970 z = _PyLong_New(size_a+1);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001971 if (z == NULL)
1972 return NULL;
1973 for (i = 0; i < size_b; ++i) {
1974 carry += a->ob_digit[i] + b->ob_digit[i];
1975 z->ob_digit[i] = carry & MASK;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001976 carry >>= SHIFT;
1977 }
1978 for (; i < size_a; ++i) {
1979 carry += a->ob_digit[i];
1980 z->ob_digit[i] = carry & MASK;
1981 carry >>= SHIFT;
1982 }
1983 z->ob_digit[i] = carry;
1984 return long_normalize(z);
1985}
1986
1987/* Subtract the absolute values of two integers. */
1988
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001989static PyLongObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00001990x_sub(PyLongObject *a, PyLongObject *b)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001991{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001992 Py_ssize_t size_a = ABS(a->ob_size), size_b = ABS(b->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001993 PyLongObject *z;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001994 Py_ssize_t i;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001995 int sign = 1;
1996 digit borrow = 0;
Tim Peters69c2de32001-09-11 22:31:33 +00001997
Guido van Rossumedcc38a1991-05-05 20:09:44 +00001998 /* Ensure a is the larger of the two: */
1999 if (size_a < size_b) {
2000 sign = -1;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002001 { PyLongObject *temp = a; a = b; b = temp; }
Martin v. Löwis18e16552006-02-15 17:27:45 +00002002 { Py_ssize_t size_temp = size_a;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002003 size_a = size_b;
2004 size_b = size_temp; }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002005 }
2006 else if (size_a == size_b) {
2007 /* Find highest digit where a and b differ: */
2008 i = size_a;
2009 while (--i >= 0 && a->ob_digit[i] == b->ob_digit[i])
2010 ;
2011 if (i < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002012 return _PyLong_New(0);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002013 if (a->ob_digit[i] < b->ob_digit[i]) {
2014 sign = -1;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002015 { PyLongObject *temp = a; a = b; b = temp; }
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002016 }
2017 size_a = size_b = i+1;
2018 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002019 z = _PyLong_New(size_a);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002020 if (z == NULL)
2021 return NULL;
2022 for (i = 0; i < size_b; ++i) {
2023 /* The following assumes unsigned arithmetic
2024 works module 2**N for some N>SHIFT. */
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00002025 borrow = a->ob_digit[i] - b->ob_digit[i] - borrow;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002026 z->ob_digit[i] = borrow & MASK;
2027 borrow >>= SHIFT;
2028 borrow &= 1; /* Keep only one sign bit */
2029 }
2030 for (; i < size_a; ++i) {
2031 borrow = a->ob_digit[i] - borrow;
2032 z->ob_digit[i] = borrow & MASK;
2033 borrow >>= SHIFT;
Tim Peters43f04a32000-07-08 02:26:47 +00002034 borrow &= 1; /* Keep only one sign bit */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002035 }
2036 assert(borrow == 0);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002037 if (sign < 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002038 z->ob_size = -(z->ob_size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002039 return long_normalize(z);
2040}
2041
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002042static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002043long_add(PyLongObject *v, PyLongObject *w)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002044{
Neil Schemenauerba872e22001-01-04 01:46:03 +00002045 PyLongObject *a, *b, *z;
Tim Peters69c2de32001-09-11 22:31:33 +00002046
Neil Schemenauerba872e22001-01-04 01:46:03 +00002047 CONVERT_BINOP((PyObject *)v, (PyObject *)w, &a, &b);
2048
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002049 if (a->ob_size < 0) {
2050 if (b->ob_size < 0) {
2051 z = x_add(a, b);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002052 if (z != NULL && z->ob_size != 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002053 z->ob_size = -(z->ob_size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002054 }
2055 else
2056 z = x_sub(b, a);
2057 }
2058 else {
2059 if (b->ob_size < 0)
2060 z = x_sub(a, b);
2061 else
2062 z = x_add(a, b);
2063 }
Neil Schemenauerba872e22001-01-04 01:46:03 +00002064 Py_DECREF(a);
2065 Py_DECREF(b);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002066 return (PyObject *)z;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002067}
2068
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002069static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002070long_sub(PyLongObject *v, PyLongObject *w)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002071{
Neil Schemenauerba872e22001-01-04 01:46:03 +00002072 PyLongObject *a, *b, *z;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002073
Neil Schemenauerba872e22001-01-04 01:46:03 +00002074 CONVERT_BINOP((PyObject *)v, (PyObject *)w, &a, &b);
2075
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002076 if (a->ob_size < 0) {
2077 if (b->ob_size < 0)
2078 z = x_sub(a, b);
2079 else
2080 z = x_add(a, b);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002081 if (z != NULL && z->ob_size != 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002082 z->ob_size = -(z->ob_size);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002083 }
2084 else {
2085 if (b->ob_size < 0)
2086 z = x_add(a, b);
2087 else
2088 z = x_sub(a, b);
2089 }
Neil Schemenauerba872e22001-01-04 01:46:03 +00002090 Py_DECREF(a);
2091 Py_DECREF(b);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002092 return (PyObject *)z;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002093}
2094
Tim Peters5af4e6c2002-08-12 02:31:19 +00002095/* Grade school multiplication, ignoring the signs.
2096 * Returns the absolute value of the product, or NULL if error.
2097 */
2098static PyLongObject *
2099x_mul(PyLongObject *a, PyLongObject *b)
Neil Schemenauerba872e22001-01-04 01:46:03 +00002100{
Tim Peters5af4e6c2002-08-12 02:31:19 +00002101 PyLongObject *z;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002102 Py_ssize_t size_a = ABS(a->ob_size);
2103 Py_ssize_t size_b = ABS(b->ob_size);
2104 Py_ssize_t i;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002105
Tim Peters5af4e6c2002-08-12 02:31:19 +00002106 z = _PyLong_New(size_a + size_b);
2107 if (z == NULL)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002108 return NULL;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002109
2110 memset(z->ob_digit, 0, z->ob_size * sizeof(digit));
Tim Peters0973b992004-08-29 22:16:50 +00002111 if (a == b) {
2112 /* Efficient squaring per HAC, Algorithm 14.16:
2113 * http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf
2114 * Gives slightly less than a 2x speedup when a == b,
2115 * via exploiting that each entry in the multiplication
2116 * pyramid appears twice (except for the size_a squares).
2117 */
2118 for (i = 0; i < size_a; ++i) {
2119 twodigits carry;
2120 twodigits f = a->ob_digit[i];
2121 digit *pz = z->ob_digit + (i << 1);
2122 digit *pa = a->ob_digit + i + 1;
2123 digit *paend = a->ob_digit + size_a;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002124
Tim Peters0973b992004-08-29 22:16:50 +00002125 SIGCHECK({
2126 Py_DECREF(z);
2127 return NULL;
2128 })
2129
2130 carry = *pz + f * f;
2131 *pz++ = (digit)(carry & MASK);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002132 carry >>= SHIFT;
Tim Peters0973b992004-08-29 22:16:50 +00002133 assert(carry <= MASK);
2134
2135 /* Now f is added in twice in each column of the
2136 * pyramid it appears. Same as adding f<<1 once.
2137 */
2138 f <<= 1;
2139 while (pa < paend) {
2140 carry += *pz + *pa++ * f;
2141 *pz++ = (digit)(carry & MASK);
2142 carry >>= SHIFT;
2143 assert(carry <= (MASK << 1));
2144 }
2145 if (carry) {
2146 carry += *pz;
2147 *pz++ = (digit)(carry & MASK);
2148 carry >>= SHIFT;
2149 }
2150 if (carry)
2151 *pz += (digit)(carry & MASK);
2152 assert((carry >> SHIFT) == 0);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002153 }
Tim Peters0973b992004-08-29 22:16:50 +00002154 }
2155 else { /* a is not the same as b -- gradeschool long mult */
2156 for (i = 0; i < size_a; ++i) {
2157 twodigits carry = 0;
2158 twodigits f = a->ob_digit[i];
2159 digit *pz = z->ob_digit + i;
2160 digit *pb = b->ob_digit;
2161 digit *pbend = b->ob_digit + size_b;
2162
2163 SIGCHECK({
2164 Py_DECREF(z);
2165 return NULL;
2166 })
2167
2168 while (pb < pbend) {
2169 carry += *pz + *pb++ * f;
2170 *pz++ = (digit)(carry & MASK);
2171 carry >>= SHIFT;
2172 assert(carry <= MASK);
2173 }
2174 if (carry)
2175 *pz += (digit)(carry & MASK);
2176 assert((carry >> SHIFT) == 0);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002177 }
2178 }
Tim Peters44121a62002-08-12 06:17:58 +00002179 return long_normalize(z);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002180}
2181
2182/* A helper for Karatsuba multiplication (k_mul).
2183 Takes a long "n" and an integer "size" representing the place to
2184 split, and sets low and high such that abs(n) == (high << size) + low,
2185 viewing the shift as being by digits. The sign bit is ignored, and
2186 the return values are >= 0.
2187 Returns 0 on success, -1 on failure.
2188*/
2189static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00002190kmul_split(PyLongObject *n, Py_ssize_t size, PyLongObject **high, PyLongObject **low)
Tim Peters5af4e6c2002-08-12 02:31:19 +00002191{
2192 PyLongObject *hi, *lo;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002193 Py_ssize_t size_lo, size_hi;
2194 const Py_ssize_t size_n = ABS(n->ob_size);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002195
2196 size_lo = MIN(size_n, size);
2197 size_hi = size_n - size_lo;
2198
2199 if ((hi = _PyLong_New(size_hi)) == NULL)
2200 return -1;
2201 if ((lo = _PyLong_New(size_lo)) == NULL) {
2202 Py_DECREF(hi);
2203 return -1;
2204 }
2205
2206 memcpy(lo->ob_digit, n->ob_digit, size_lo * sizeof(digit));
2207 memcpy(hi->ob_digit, n->ob_digit + size_lo, size_hi * sizeof(digit));
2208
2209 *high = long_normalize(hi);
2210 *low = long_normalize(lo);
2211 return 0;
2212}
2213
Tim Peters60004642002-08-12 22:01:34 +00002214static PyLongObject *k_lopsided_mul(PyLongObject *a, PyLongObject *b);
2215
Tim Peters5af4e6c2002-08-12 02:31:19 +00002216/* Karatsuba multiplication. Ignores the input signs, and returns the
2217 * absolute value of the product (or NULL if error).
2218 * See Knuth Vol. 2 Chapter 4.3.3 (Pp. 294-295).
2219 */
2220static PyLongObject *
2221k_mul(PyLongObject *a, PyLongObject *b)
2222{
Martin v. Löwis18e16552006-02-15 17:27:45 +00002223 Py_ssize_t asize = ABS(a->ob_size);
2224 Py_ssize_t bsize = ABS(b->ob_size);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002225 PyLongObject *ah = NULL;
2226 PyLongObject *al = NULL;
2227 PyLongObject *bh = NULL;
2228 PyLongObject *bl = NULL;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002229 PyLongObject *ret = NULL;
Tim Peters738eda72002-08-12 15:08:20 +00002230 PyLongObject *t1, *t2, *t3;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002231 Py_ssize_t shift; /* the number of digits we split off */
2232 Py_ssize_t i;
Tim Peters738eda72002-08-12 15:08:20 +00002233
Tim Peters5af4e6c2002-08-12 02:31:19 +00002234 /* (ah*X+al)(bh*X+bl) = ah*bh*X*X + (ah*bl + al*bh)*X + al*bl
2235 * Let k = (ah+al)*(bh+bl) = ah*bl + al*bh + ah*bh + al*bl
2236 * Then the original product is
Tim Peters18c15b92002-08-12 02:43:58 +00002237 * ah*bh*X*X + (k - ah*bh - al*bl)*X + al*bl
Tim Peters5af4e6c2002-08-12 02:31:19 +00002238 * By picking X to be a power of 2, "*X" is just shifting, and it's
2239 * been reduced to 3 multiplies on numbers half the size.
2240 */
2241
Tim Petersfc07e562002-08-12 02:54:10 +00002242 /* We want to split based on the larger number; fiddle so that b
Tim Peters5af4e6c2002-08-12 02:31:19 +00002243 * is largest.
2244 */
Tim Peters738eda72002-08-12 15:08:20 +00002245 if (asize > bsize) {
Tim Peters5af4e6c2002-08-12 02:31:19 +00002246 t1 = a;
2247 a = b;
2248 b = t1;
Tim Peters738eda72002-08-12 15:08:20 +00002249
2250 i = asize;
2251 asize = bsize;
2252 bsize = i;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002253 }
2254
2255 /* Use gradeschool math when either number is too small. */
Tim Peters0973b992004-08-29 22:16:50 +00002256 i = a == b ? KARATSUBA_SQUARE_CUTOFF : KARATSUBA_CUTOFF;
2257 if (asize <= i) {
Tim Peters738eda72002-08-12 15:08:20 +00002258 if (asize == 0)
Tim Peters44121a62002-08-12 06:17:58 +00002259 return _PyLong_New(0);
2260 else
2261 return x_mul(a, b);
2262 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00002263
Tim Peters60004642002-08-12 22:01:34 +00002264 /* If a is small compared to b, splitting on b gives a degenerate
2265 * case with ah==0, and Karatsuba may be (even much) less efficient
2266 * than "grade school" then. However, we can still win, by viewing
2267 * b as a string of "big digits", each of width a->ob_size. That
2268 * leads to a sequence of balanced calls to k_mul.
2269 */
2270 if (2 * asize <= bsize)
2271 return k_lopsided_mul(a, b);
2272
Tim Petersd6974a52002-08-13 20:37:51 +00002273 /* Split a & b into hi & lo pieces. */
Tim Peters738eda72002-08-12 15:08:20 +00002274 shift = bsize >> 1;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002275 if (kmul_split(a, shift, &ah, &al) < 0) goto fail;
Tim Petersd6974a52002-08-13 20:37:51 +00002276 assert(ah->ob_size > 0); /* the split isn't degenerate */
2277
Tim Peters0973b992004-08-29 22:16:50 +00002278 if (a == b) {
2279 bh = ah;
2280 bl = al;
2281 Py_INCREF(bh);
2282 Py_INCREF(bl);
2283 }
2284 else if (kmul_split(b, shift, &bh, &bl) < 0) goto fail;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002285
Tim Petersd64c1de2002-08-12 17:36:03 +00002286 /* The plan:
2287 * 1. Allocate result space (asize + bsize digits: that's always
2288 * enough).
2289 * 2. Compute ah*bh, and copy into result at 2*shift.
2290 * 3. Compute al*bl, and copy into result at 0. Note that this
2291 * can't overlap with #2.
2292 * 4. Subtract al*bl from the result, starting at shift. This may
2293 * underflow (borrow out of the high digit), but we don't care:
2294 * we're effectively doing unsigned arithmetic mod
2295 * BASE**(sizea + sizeb), and so long as the *final* result fits,
2296 * borrows and carries out of the high digit can be ignored.
2297 * 5. Subtract ah*bh from the result, starting at shift.
2298 * 6. Compute (ah+al)*(bh+bl), and add it into the result starting
2299 * at shift.
2300 */
2301
2302 /* 1. Allocate result space. */
Tim Peters70b041b2002-08-12 19:38:01 +00002303 ret = _PyLong_New(asize + bsize);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002304 if (ret == NULL) goto fail;
2305#ifdef Py_DEBUG
2306 /* Fill with trash, to catch reference to uninitialized digits. */
2307 memset(ret->ob_digit, 0xDF, ret->ob_size * sizeof(digit));
2308#endif
Tim Peters44121a62002-08-12 06:17:58 +00002309
Tim Petersd64c1de2002-08-12 17:36:03 +00002310 /* 2. t1 <- ah*bh, and copy into high digits of result. */
Tim Peters738eda72002-08-12 15:08:20 +00002311 if ((t1 = k_mul(ah, bh)) == NULL) goto fail;
2312 assert(t1->ob_size >= 0);
2313 assert(2*shift + t1->ob_size <= ret->ob_size);
2314 memcpy(ret->ob_digit + 2*shift, t1->ob_digit,
2315 t1->ob_size * sizeof(digit));
2316
2317 /* Zero-out the digits higher than the ah*bh copy. */
2318 i = ret->ob_size - 2*shift - t1->ob_size;
Tim Peters44121a62002-08-12 06:17:58 +00002319 if (i)
Tim Peters738eda72002-08-12 15:08:20 +00002320 memset(ret->ob_digit + 2*shift + t1->ob_size, 0,
Tim Peters44121a62002-08-12 06:17:58 +00002321 i * sizeof(digit));
Tim Peters5af4e6c2002-08-12 02:31:19 +00002322
Tim Petersd64c1de2002-08-12 17:36:03 +00002323 /* 3. t2 <- al*bl, and copy into the low digits. */
Tim Peters738eda72002-08-12 15:08:20 +00002324 if ((t2 = k_mul(al, bl)) == NULL) {
2325 Py_DECREF(t1);
2326 goto fail;
2327 }
2328 assert(t2->ob_size >= 0);
2329 assert(t2->ob_size <= 2*shift); /* no overlap with high digits */
2330 memcpy(ret->ob_digit, t2->ob_digit, t2->ob_size * sizeof(digit));
Tim Peters5af4e6c2002-08-12 02:31:19 +00002331
2332 /* Zero out remaining digits. */
Tim Peters738eda72002-08-12 15:08:20 +00002333 i = 2*shift - t2->ob_size; /* number of uninitialized digits */
Tim Peters5af4e6c2002-08-12 02:31:19 +00002334 if (i)
Tim Peters738eda72002-08-12 15:08:20 +00002335 memset(ret->ob_digit + t2->ob_size, 0, i * sizeof(digit));
Tim Peters5af4e6c2002-08-12 02:31:19 +00002336
Tim Petersd64c1de2002-08-12 17:36:03 +00002337 /* 4 & 5. Subtract ah*bh (t1) and al*bl (t2). We do al*bl first
2338 * because it's fresher in cache.
2339 */
Tim Peters738eda72002-08-12 15:08:20 +00002340 i = ret->ob_size - shift; /* # digits after shift */
Tim Petersd64c1de2002-08-12 17:36:03 +00002341 (void)v_isub(ret->ob_digit + shift, i, t2->ob_digit, t2->ob_size);
Tim Peters738eda72002-08-12 15:08:20 +00002342 Py_DECREF(t2);
2343
Tim Petersd64c1de2002-08-12 17:36:03 +00002344 (void)v_isub(ret->ob_digit + shift, i, t1->ob_digit, t1->ob_size);
Tim Peters738eda72002-08-12 15:08:20 +00002345 Py_DECREF(t1);
2346
Tim Petersd64c1de2002-08-12 17:36:03 +00002347 /* 6. t3 <- (ah+al)(bh+bl), and add into result. */
Tim Peters5af4e6c2002-08-12 02:31:19 +00002348 if ((t1 = x_add(ah, al)) == NULL) goto fail;
2349 Py_DECREF(ah);
2350 Py_DECREF(al);
2351 ah = al = NULL;
2352
Tim Peters0973b992004-08-29 22:16:50 +00002353 if (a == b) {
2354 t2 = t1;
2355 Py_INCREF(t2);
2356 }
2357 else if ((t2 = x_add(bh, bl)) == NULL) {
Tim Peters5af4e6c2002-08-12 02:31:19 +00002358 Py_DECREF(t1);
2359 goto fail;
2360 }
2361 Py_DECREF(bh);
2362 Py_DECREF(bl);
2363 bh = bl = NULL;
2364
Tim Peters738eda72002-08-12 15:08:20 +00002365 t3 = k_mul(t1, t2);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002366 Py_DECREF(t1);
2367 Py_DECREF(t2);
Tim Peters738eda72002-08-12 15:08:20 +00002368 if (t3 == NULL) goto fail;
Tim Peters547607c2002-08-12 19:43:49 +00002369 assert(t3->ob_size >= 0);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002370
Tim Petersd6974a52002-08-13 20:37:51 +00002371 /* Add t3. It's not obvious why we can't run out of room here.
2372 * See the (*) comment after this function.
Tim Petersd8b21732002-08-12 19:30:26 +00002373 */
Tim Petersd64c1de2002-08-12 17:36:03 +00002374 (void)v_iadd(ret->ob_digit + shift, i, t3->ob_digit, t3->ob_size);
Tim Peters738eda72002-08-12 15:08:20 +00002375 Py_DECREF(t3);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002376
Tim Peters5af4e6c2002-08-12 02:31:19 +00002377 return long_normalize(ret);
2378
2379 fail:
2380 Py_XDECREF(ret);
2381 Py_XDECREF(ah);
2382 Py_XDECREF(al);
2383 Py_XDECREF(bh);
2384 Py_XDECREF(bl);
Tim Peters5af4e6c2002-08-12 02:31:19 +00002385 return NULL;
2386}
2387
Tim Petersd6974a52002-08-13 20:37:51 +00002388/* (*) Why adding t3 can't "run out of room" above.
2389
Tim Petersab86c2b2002-08-15 20:06:00 +00002390Let f(x) mean the floor of x and c(x) mean the ceiling of x. Some facts
2391to start with:
Tim Petersd6974a52002-08-13 20:37:51 +00002392
Tim Petersab86c2b2002-08-15 20:06:00 +000023931. For any integer i, i = c(i/2) + f(i/2). In particular,
2394 bsize = c(bsize/2) + f(bsize/2).
23952. shift = f(bsize/2)
23963. asize <= bsize
23974. Since we call k_lopsided_mul if asize*2 <= bsize, asize*2 > bsize in this
2398 routine, so asize > bsize/2 >= f(bsize/2) in this routine.
Tim Petersd6974a52002-08-13 20:37:51 +00002399
Tim Petersab86c2b2002-08-15 20:06:00 +00002400We allocated asize + bsize result digits, and add t3 into them at an offset
2401of shift. This leaves asize+bsize-shift allocated digit positions for t3
2402to fit into, = (by #1 and #2) asize + f(bsize/2) + c(bsize/2) - f(bsize/2) =
2403asize + c(bsize/2) available digit positions.
Tim Petersd6974a52002-08-13 20:37:51 +00002404
Tim Petersab86c2b2002-08-15 20:06:00 +00002405bh has c(bsize/2) digits, and bl at most f(size/2) digits. So bh+hl has
2406at most c(bsize/2) digits + 1 bit.
Tim Petersd6974a52002-08-13 20:37:51 +00002407
Tim Petersab86c2b2002-08-15 20:06:00 +00002408If asize == bsize, ah has c(bsize/2) digits, else ah has at most f(bsize/2)
2409digits, and al has at most f(bsize/2) digits in any case. So ah+al has at
2410most (asize == bsize ? c(bsize/2) : f(bsize/2)) digits + 1 bit.
Tim Petersd6974a52002-08-13 20:37:51 +00002411
Tim Petersab86c2b2002-08-15 20:06:00 +00002412The product (ah+al)*(bh+bl) therefore has at most
Tim Petersd6974a52002-08-13 20:37:51 +00002413
Tim Petersab86c2b2002-08-15 20:06:00 +00002414 c(bsize/2) + (asize == bsize ? c(bsize/2) : f(bsize/2)) digits + 2 bits
Tim Petersd6974a52002-08-13 20:37:51 +00002415
Tim Petersab86c2b2002-08-15 20:06:00 +00002416and we have asize + c(bsize/2) available digit positions. We need to show
2417this is always enough. An instance of c(bsize/2) cancels out in both, so
2418the question reduces to whether asize digits is enough to hold
2419(asize == bsize ? c(bsize/2) : f(bsize/2)) digits + 2 bits. If asize < bsize,
2420then we're asking whether asize digits >= f(bsize/2) digits + 2 bits. By #4,
2421asize is at least f(bsize/2)+1 digits, so this in turn reduces to whether 1
2422digit is enough to hold 2 bits. This is so since SHIFT=15 >= 2. If
2423asize == bsize, then we're asking whether bsize digits is enough to hold
Tim Peterse417de02002-08-15 20:10:45 +00002424c(bsize/2) digits + 2 bits, or equivalently (by #1) whether f(bsize/2) digits
2425is enough to hold 2 bits. This is so if bsize >= 2, which holds because
2426bsize >= KARATSUBA_CUTOFF >= 2.
Tim Peters8e966ee2002-08-14 16:36:23 +00002427
Tim Peters48d52c02002-08-14 17:07:32 +00002428Note that since there's always enough room for (ah+al)*(bh+bl), and that's
2429clearly >= each of ah*bh and al*bl, there's always enough room to subtract
2430ah*bh and al*bl too.
Tim Petersd6974a52002-08-13 20:37:51 +00002431*/
2432
Tim Peters60004642002-08-12 22:01:34 +00002433/* b has at least twice the digits of a, and a is big enough that Karatsuba
2434 * would pay off *if* the inputs had balanced sizes. View b as a sequence
2435 * of slices, each with a->ob_size digits, and multiply the slices by a,
2436 * one at a time. This gives k_mul balanced inputs to work with, and is
2437 * also cache-friendly (we compute one double-width slice of the result
2438 * at a time, then move on, never bactracking except for the helpful
2439 * single-width slice overlap between successive partial sums).
2440 */
2441static PyLongObject *
2442k_lopsided_mul(PyLongObject *a, PyLongObject *b)
2443{
Martin v. Löwis18e16552006-02-15 17:27:45 +00002444 const Py_ssize_t asize = ABS(a->ob_size);
2445 Py_ssize_t bsize = ABS(b->ob_size);
2446 Py_ssize_t nbdone; /* # of b digits already multiplied */
Tim Peters60004642002-08-12 22:01:34 +00002447 PyLongObject *ret;
2448 PyLongObject *bslice = NULL;
2449
2450 assert(asize > KARATSUBA_CUTOFF);
2451 assert(2 * asize <= bsize);
2452
2453 /* Allocate result space, and zero it out. */
2454 ret = _PyLong_New(asize + bsize);
2455 if (ret == NULL)
2456 return NULL;
2457 memset(ret->ob_digit, 0, ret->ob_size * sizeof(digit));
2458
2459 /* Successive slices of b are copied into bslice. */
Tim Peters12034032002-08-12 22:10:00 +00002460 bslice = _PyLong_New(asize);
Tim Peters60004642002-08-12 22:01:34 +00002461 if (bslice == NULL)
2462 goto fail;
2463
2464 nbdone = 0;
2465 while (bsize > 0) {
2466 PyLongObject *product;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002467 const Py_ssize_t nbtouse = MIN(bsize, asize);
Tim Peters60004642002-08-12 22:01:34 +00002468
2469 /* Multiply the next slice of b by a. */
2470 memcpy(bslice->ob_digit, b->ob_digit + nbdone,
2471 nbtouse * sizeof(digit));
2472 bslice->ob_size = nbtouse;
2473 product = k_mul(a, bslice);
2474 if (product == NULL)
2475 goto fail;
2476
2477 /* Add into result. */
2478 (void)v_iadd(ret->ob_digit + nbdone, ret->ob_size - nbdone,
2479 product->ob_digit, product->ob_size);
2480 Py_DECREF(product);
2481
2482 bsize -= nbtouse;
2483 nbdone += nbtouse;
2484 }
2485
2486 Py_DECREF(bslice);
2487 return long_normalize(ret);
2488
2489 fail:
2490 Py_DECREF(ret);
2491 Py_XDECREF(bslice);
2492 return NULL;
2493}
Tim Peters5af4e6c2002-08-12 02:31:19 +00002494
2495static PyObject *
2496long_mul(PyLongObject *v, PyLongObject *w)
2497{
2498 PyLongObject *a, *b, *z;
2499
2500 if (!convert_binop((PyObject *)v, (PyObject *)w, &a, &b)) {
Tim Peters5af4e6c2002-08-12 02:31:19 +00002501 Py_INCREF(Py_NotImplemented);
2502 return Py_NotImplemented;
2503 }
2504
Tim Petersd64c1de2002-08-12 17:36:03 +00002505 z = k_mul(a, b);
Tim Peters9973d742002-08-15 19:41:06 +00002506 /* Negate if exactly one of the inputs is negative. */
2507 if (((a->ob_size ^ b->ob_size) < 0) && z)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002508 z->ob_size = -(z->ob_size);
Neil Schemenauerba872e22001-01-04 01:46:03 +00002509 Py_DECREF(a);
2510 Py_DECREF(b);
Tim Peters9973d742002-08-15 19:41:06 +00002511 return (PyObject *)z;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002512}
2513
Guido van Rossume32e0141992-01-19 16:31:05 +00002514/* The / and % operators are now defined in terms of divmod().
2515 The expression a mod b has the value a - b*floor(a/b).
2516 The long_divrem function gives the remainder after division of
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002517 |a| by |b|, with the sign of a. This is also expressed
2518 as a - b*trunc(a/b), if trunc truncates towards zero.
2519 Some examples:
2520 a b a rem b a mod b
2521 13 10 3 3
2522 -13 10 -3 7
2523 13 -10 3 -7
2524 -13 -10 -3 -3
2525 So, to get from rem to mod, we have to add b if a and b
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00002526 have different signs. We then subtract one from the 'div'
2527 part of the outcome to keep the invariant intact. */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002528
Tim Peters47e52ee2004-08-30 02:44:38 +00002529/* Compute
2530 * *pdiv, *pmod = divmod(v, w)
2531 * NULL can be passed for pdiv or pmod, in which case that part of
2532 * the result is simply thrown away. The caller owns a reference to
2533 * each of these it requests (does not pass NULL for).
2534 */
Guido van Rossume32e0141992-01-19 16:31:05 +00002535static int
Tim Peters5af4e6c2002-08-12 02:31:19 +00002536l_divmod(PyLongObject *v, PyLongObject *w,
Tim Peters9f688bf2000-07-07 15:53:28 +00002537 PyLongObject **pdiv, PyLongObject **pmod)
Guido van Rossume32e0141992-01-19 16:31:05 +00002538{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002539 PyLongObject *div, *mod;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002540
Guido van Rossume32e0141992-01-19 16:31:05 +00002541 if (long_divrem(v, w, &div, &mod) < 0)
2542 return -1;
Guido van Rossum472c04f1996-12-05 21:57:21 +00002543 if ((mod->ob_size < 0 && w->ob_size > 0) ||
2544 (mod->ob_size > 0 && w->ob_size < 0)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002545 PyLongObject *temp;
2546 PyLongObject *one;
2547 temp = (PyLongObject *) long_add(mod, w);
2548 Py_DECREF(mod);
Guido van Rossume32e0141992-01-19 16:31:05 +00002549 mod = temp;
2550 if (mod == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002551 Py_DECREF(div);
Guido van Rossume32e0141992-01-19 16:31:05 +00002552 return -1;
2553 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002554 one = (PyLongObject *) PyLong_FromLong(1L);
Guido van Rossume32e0141992-01-19 16:31:05 +00002555 if (one == NULL ||
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002556 (temp = (PyLongObject *) long_sub(div, one)) == NULL) {
2557 Py_DECREF(mod);
2558 Py_DECREF(div);
2559 Py_XDECREF(one);
Guido van Rossume32e0141992-01-19 16:31:05 +00002560 return -1;
2561 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002562 Py_DECREF(one);
2563 Py_DECREF(div);
Guido van Rossume32e0141992-01-19 16:31:05 +00002564 div = temp;
2565 }
Tim Peters47e52ee2004-08-30 02:44:38 +00002566 if (pdiv != NULL)
2567 *pdiv = div;
2568 else
2569 Py_DECREF(div);
2570
2571 if (pmod != NULL)
2572 *pmod = mod;
2573 else
2574 Py_DECREF(mod);
2575
Guido van Rossume32e0141992-01-19 16:31:05 +00002576 return 0;
2577}
2578
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002579static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002580long_div(PyObject *v, PyObject *w)
Guido van Rossume32e0141992-01-19 16:31:05 +00002581{
Tim Peters47e52ee2004-08-30 02:44:38 +00002582 PyLongObject *a, *b, *div;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002583
2584 CONVERT_BINOP(v, w, &a, &b);
Tim Peters47e52ee2004-08-30 02:44:38 +00002585 if (l_divmod(a, b, &div, NULL) < 0)
2586 div = NULL;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002587 Py_DECREF(a);
2588 Py_DECREF(b);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002589 return (PyObject *)div;
Guido van Rossume32e0141992-01-19 16:31:05 +00002590}
2591
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002592static PyObject *
Guido van Rossum393661d2001-08-31 17:40:15 +00002593long_classic_div(PyObject *v, PyObject *w)
2594{
Tim Peters47e52ee2004-08-30 02:44:38 +00002595 PyLongObject *a, *b, *div;
Guido van Rossum393661d2001-08-31 17:40:15 +00002596
2597 CONVERT_BINOP(v, w, &a, &b);
Guido van Rossum393661d2001-08-31 17:40:15 +00002598 if (Py_DivisionWarningFlag &&
2599 PyErr_Warn(PyExc_DeprecationWarning, "classic long division") < 0)
2600 div = NULL;
Tim Peters47e52ee2004-08-30 02:44:38 +00002601 else if (l_divmod(a, b, &div, NULL) < 0)
Guido van Rossum393661d2001-08-31 17:40:15 +00002602 div = NULL;
Guido van Rossum393661d2001-08-31 17:40:15 +00002603 Py_DECREF(a);
2604 Py_DECREF(b);
2605 return (PyObject *)div;
2606}
2607
2608static PyObject *
Tim Peters20dab9f2001-09-04 05:31:47 +00002609long_true_divide(PyObject *v, PyObject *w)
2610{
Tim Peterse2a60002001-09-04 06:17:36 +00002611 PyLongObject *a, *b;
2612 double ad, bd;
Thomas Wouters553489a2006-02-01 21:32:04 +00002613 int failed, aexp = -1, bexp = -1;
Tim Peterse2a60002001-09-04 06:17:36 +00002614
2615 CONVERT_BINOP(v, w, &a, &b);
2616 ad = _PyLong_AsScaledDouble((PyObject *)a, &aexp);
2617 bd = _PyLong_AsScaledDouble((PyObject *)b, &bexp);
Tim Peters6f97e492001-11-04 23:09:40 +00002618 failed = (ad == -1.0 || bd == -1.0) && PyErr_Occurred();
2619 Py_DECREF(a);
2620 Py_DECREF(b);
2621 if (failed)
Tim Peterse2a60002001-09-04 06:17:36 +00002622 return NULL;
Thomas Wouters553489a2006-02-01 21:32:04 +00002623 /* 'aexp' and 'bexp' were initialized to -1 to silence gcc-4.0.x,
2624 but should really be set correctly after sucessful calls to
2625 _PyLong_AsScaledDouble() */
2626 assert(aexp >= 0 && bexp >= 0);
Tim Peterse2a60002001-09-04 06:17:36 +00002627
2628 if (bd == 0.0) {
2629 PyErr_SetString(PyExc_ZeroDivisionError,
2630 "long division or modulo by zero");
2631 return NULL;
2632 }
2633
2634 /* True value is very close to ad/bd * 2**(SHIFT*(aexp-bexp)) */
2635 ad /= bd; /* overflow/underflow impossible here */
2636 aexp -= bexp;
2637 if (aexp > INT_MAX / SHIFT)
2638 goto overflow;
Tim Peterse56ed9b2001-09-06 21:59:14 +00002639 else if (aexp < -(INT_MAX / SHIFT))
2640 return PyFloat_FromDouble(0.0); /* underflow to 0 */
Tim Peterse2a60002001-09-04 06:17:36 +00002641 errno = 0;
2642 ad = ldexp(ad, aexp * SHIFT);
Tim Peters57f282a2001-09-05 05:38:10 +00002643 if (Py_OVERFLOWED(ad)) /* ignore underflow to 0.0 */
Tim Peterse2a60002001-09-04 06:17:36 +00002644 goto overflow;
2645 return PyFloat_FromDouble(ad);
2646
2647overflow:
2648 PyErr_SetString(PyExc_OverflowError,
2649 "long/long too large for a float");
2650 return NULL;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002651
Tim Peters20dab9f2001-09-04 05:31:47 +00002652}
2653
2654static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002655long_mod(PyObject *v, PyObject *w)
Guido van Rossume32e0141992-01-19 16:31:05 +00002656{
Tim Peters47e52ee2004-08-30 02:44:38 +00002657 PyLongObject *a, *b, *mod;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002658
2659 CONVERT_BINOP(v, w, &a, &b);
2660
Tim Peters47e52ee2004-08-30 02:44:38 +00002661 if (l_divmod(a, b, NULL, &mod) < 0)
2662 mod = NULL;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002663 Py_DECREF(a);
2664 Py_DECREF(b);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002665 return (PyObject *)mod;
Guido van Rossume32e0141992-01-19 16:31:05 +00002666}
2667
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002668static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002669long_divmod(PyObject *v, PyObject *w)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002670{
Neil Schemenauerba872e22001-01-04 01:46:03 +00002671 PyLongObject *a, *b, *div, *mod;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002672 PyObject *z;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002673
2674 CONVERT_BINOP(v, w, &a, &b);
2675
2676 if (l_divmod(a, b, &div, &mod) < 0) {
2677 Py_DECREF(a);
2678 Py_DECREF(b);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002679 return NULL;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002680 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002681 z = PyTuple_New(2);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002682 if (z != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002683 PyTuple_SetItem(z, 0, (PyObject *) div);
2684 PyTuple_SetItem(z, 1, (PyObject *) mod);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002685 }
2686 else {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002687 Py_DECREF(div);
2688 Py_DECREF(mod);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002689 }
Neil Schemenauerba872e22001-01-04 01:46:03 +00002690 Py_DECREF(a);
2691 Py_DECREF(b);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002692 return z;
2693}
2694
Tim Peters47e52ee2004-08-30 02:44:38 +00002695/* pow(v, w, x) */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002696static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002697long_pow(PyObject *v, PyObject *w, PyObject *x)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002698{
Tim Peters47e52ee2004-08-30 02:44:38 +00002699 PyLongObject *a, *b, *c; /* a,b,c = v,w,x */
2700 int negativeOutput = 0; /* if x<0 return negative output */
Neil Schemenauerba872e22001-01-04 01:46:03 +00002701
Tim Peters47e52ee2004-08-30 02:44:38 +00002702 PyLongObject *z = NULL; /* accumulated result */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002703 Py_ssize_t i, j, k; /* counters */
Tim Peters47e52ee2004-08-30 02:44:38 +00002704 PyLongObject *temp = NULL;
2705
2706 /* 5-ary values. If the exponent is large enough, table is
2707 * precomputed so that table[i] == a**i % c for i in range(32).
2708 */
2709 PyLongObject *table[32] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2710 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
2711
2712 /* a, b, c = v, w, x */
Neil Schemenauerba872e22001-01-04 01:46:03 +00002713 CONVERT_BINOP(v, w, &a, &b);
Tim Peters47e52ee2004-08-30 02:44:38 +00002714 if (PyLong_Check(x)) {
2715 c = (PyLongObject *)x;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002716 Py_INCREF(x);
2717 }
Tim Petersde7990b2005-07-17 23:45:23 +00002718 else if (PyInt_Check(x)) {
Tim Peters47e52ee2004-08-30 02:44:38 +00002719 c = (PyLongObject *)PyLong_FromLong(PyInt_AS_LONG(x));
Tim Petersde7990b2005-07-17 23:45:23 +00002720 if (c == NULL)
2721 goto Error;
2722 }
Tim Peters47e52ee2004-08-30 02:44:38 +00002723 else if (x == Py_None)
2724 c = NULL;
Neil Schemenauerba872e22001-01-04 01:46:03 +00002725 else {
2726 Py_DECREF(a);
2727 Py_DECREF(b);
2728 Py_INCREF(Py_NotImplemented);
2729 return Py_NotImplemented;
2730 }
Tim Peters4c483c42001-09-05 06:24:58 +00002731
Tim Peters47e52ee2004-08-30 02:44:38 +00002732 if (b->ob_size < 0) { /* if exponent is negative */
2733 if (c) {
Tim Peters4c483c42001-09-05 06:24:58 +00002734 PyErr_SetString(PyExc_TypeError, "pow() 2nd argument "
Tim Peters47e52ee2004-08-30 02:44:38 +00002735 "cannot be negative when 3rd argument specified");
Tim Peterscd97da32004-08-30 02:58:59 +00002736 goto Error;
Tim Peters32f453e2001-09-03 08:35:41 +00002737 }
Guido van Rossum2c7b8fe1999-10-11 22:34:41 +00002738 else {
Tim Peters47e52ee2004-08-30 02:44:38 +00002739 /* else return a float. This works because we know
2740 that this calls float_pow() which converts its
2741 arguments to double. */
2742 Py_DECREF(a);
2743 Py_DECREF(b);
2744 return PyFloat_Type.tp_as_number->nb_power(v, w, x);
Guido van Rossum2c7b8fe1999-10-11 22:34:41 +00002745 }
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00002746 }
Tim Peters47e52ee2004-08-30 02:44:38 +00002747
2748 if (c) {
2749 /* if modulus == 0:
2750 raise ValueError() */
2751 if (c->ob_size == 0) {
2752 PyErr_SetString(PyExc_ValueError,
2753 "pow() 3rd argument cannot be 0");
Tim Peterscd97da32004-08-30 02:58:59 +00002754 goto Error;
Tim Peters47e52ee2004-08-30 02:44:38 +00002755 }
2756
2757 /* if modulus < 0:
2758 negativeOutput = True
2759 modulus = -modulus */
2760 if (c->ob_size < 0) {
2761 negativeOutput = 1;
2762 temp = (PyLongObject *)_PyLong_Copy(c);
2763 if (temp == NULL)
2764 goto Error;
2765 Py_DECREF(c);
2766 c = temp;
2767 temp = NULL;
2768 c->ob_size = - c->ob_size;
2769 }
2770
2771 /* if modulus == 1:
2772 return 0 */
2773 if ((c->ob_size == 1) && (c->ob_digit[0] == 1)) {
2774 z = (PyLongObject *)PyLong_FromLong(0L);
2775 goto Done;
2776 }
2777
2778 /* if base < 0:
2779 base = base % modulus
2780 Having the base positive just makes things easier. */
2781 if (a->ob_size < 0) {
2782 if (l_divmod(a, c, NULL, &temp) < 0)
Tim Peterscd97da32004-08-30 02:58:59 +00002783 goto Error;
Tim Peters47e52ee2004-08-30 02:44:38 +00002784 Py_DECREF(a);
2785 a = temp;
2786 temp = NULL;
2787 }
2788 }
2789
2790 /* At this point a, b, and c are guaranteed non-negative UNLESS
2791 c is NULL, in which case a may be negative. */
2792
2793 z = (PyLongObject *)PyLong_FromLong(1L);
2794 if (z == NULL)
2795 goto Error;
2796
2797 /* Perform a modular reduction, X = X % c, but leave X alone if c
2798 * is NULL.
2799 */
2800#define REDUCE(X) \
2801 if (c != NULL) { \
2802 if (l_divmod(X, c, NULL, &temp) < 0) \
2803 goto Error; \
2804 Py_XDECREF(X); \
2805 X = temp; \
2806 temp = NULL; \
2807 }
2808
2809 /* Multiply two values, then reduce the result:
2810 result = X*Y % c. If c is NULL, skip the mod. */
2811#define MULT(X, Y, result) \
2812{ \
2813 temp = (PyLongObject *)long_mul(X, Y); \
2814 if (temp == NULL) \
2815 goto Error; \
2816 Py_XDECREF(result); \
2817 result = temp; \
2818 temp = NULL; \
2819 REDUCE(result) \
2820}
2821
2822 if (b->ob_size <= FIVEARY_CUTOFF) {
2823 /* Left-to-right binary exponentiation (HAC Algorithm 14.79) */
2824 /* http://www.cacr.math.uwaterloo.ca/hac/about/chap14.pdf */
2825 for (i = b->ob_size - 1; i >= 0; --i) {
2826 digit bi = b->ob_digit[i];
2827
2828 for (j = 1 << (SHIFT-1); j != 0; j >>= 1) {
2829 MULT(z, z, z)
2830 if (bi & j)
2831 MULT(z, a, z)
2832 }
2833 }
2834 }
2835 else {
2836 /* Left-to-right 5-ary exponentiation (HAC Algorithm 14.82) */
2837 Py_INCREF(z); /* still holds 1L */
2838 table[0] = z;
2839 for (i = 1; i < 32; ++i)
2840 MULT(table[i-1], a, table[i])
2841
2842 for (i = b->ob_size - 1; i >= 0; --i) {
2843 const digit bi = b->ob_digit[i];
2844
2845 for (j = SHIFT - 5; j >= 0; j -= 5) {
2846 const int index = (bi >> j) & 0x1f;
2847 for (k = 0; k < 5; ++k)
2848 MULT(z, z, z)
2849 if (index)
2850 MULT(z, table[index], z)
2851 }
2852 }
2853 }
2854
2855 if (negativeOutput && (z->ob_size != 0)) {
2856 temp = (PyLongObject *)long_sub(z, c);
2857 if (temp == NULL)
2858 goto Error;
2859 Py_DECREF(z);
2860 z = temp;
2861 temp = NULL;
2862 }
2863 goto Done;
2864
2865 Error:
2866 if (z != NULL) {
2867 Py_DECREF(z);
2868 z = NULL;
2869 }
2870 /* fall through */
2871 Done:
Tim Peters47e52ee2004-08-30 02:44:38 +00002872 if (b->ob_size > FIVEARY_CUTOFF) {
2873 for (i = 0; i < 32; ++i)
2874 Py_XDECREF(table[i]);
2875 }
Tim Petersde7990b2005-07-17 23:45:23 +00002876 Py_DECREF(a);
2877 Py_DECREF(b);
2878 Py_XDECREF(c);
2879 Py_XDECREF(temp);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002880 return (PyObject *)z;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002881}
2882
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002883static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00002884long_invert(PyLongObject *v)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002885{
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002886 /* Implement ~x as -(x+1) */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002887 PyLongObject *x;
2888 PyLongObject *w;
2889 w = (PyLongObject *)PyLong_FromLong(1L);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002890 if (w == NULL)
2891 return NULL;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002892 x = (PyLongObject *) long_add(v, w);
2893 Py_DECREF(w);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002894 if (x == NULL)
2895 return NULL;
Tim Peters40c397d2001-09-11 23:24:22 +00002896 x->ob_size = -(x->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002897 return (PyObject *)x;
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002898}
2899
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002900static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00002901long_pos(PyLongObject *v)
Guido van Rossumc6913e71991-11-19 20:26:46 +00002902{
Tim Peters69c2de32001-09-11 22:31:33 +00002903 if (PyLong_CheckExact(v)) {
2904 Py_INCREF(v);
2905 return (PyObject *)v;
2906 }
2907 else
2908 return _PyLong_Copy(v);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002909}
2910
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002911static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00002912long_neg(PyLongObject *v)
Guido van Rossumc6913e71991-11-19 20:26:46 +00002913{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002914 PyLongObject *z;
Tim Peters69c2de32001-09-11 22:31:33 +00002915 if (v->ob_size == 0 && PyLong_CheckExact(v)) {
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002916 /* -0 == 0 */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002917 Py_INCREF(v);
2918 return (PyObject *) v;
Guido van Rossumc6913e71991-11-19 20:26:46 +00002919 }
Tim Peters69c2de32001-09-11 22:31:33 +00002920 z = (PyLongObject *)_PyLong_Copy(v);
2921 if (z != NULL)
2922 z->ob_size = -(v->ob_size);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002923 return (PyObject *)z;
Guido van Rossumc6913e71991-11-19 20:26:46 +00002924}
2925
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002926static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00002927long_abs(PyLongObject *v)
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002928{
2929 if (v->ob_size < 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002930 return long_neg(v);
Tim Peters69c2de32001-09-11 22:31:33 +00002931 else
2932 return long_pos(v);
Guido van Rossumedcc38a1991-05-05 20:09:44 +00002933}
2934
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00002935static int
Tim Peters9f688bf2000-07-07 15:53:28 +00002936long_nonzero(PyLongObject *v)
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00002937{
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002938 return ABS(v->ob_size) != 0;
Guido van Rossumc6913e71991-11-19 20:26:46 +00002939}
2940
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002941static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00002942long_rshift(PyLongObject *v, PyLongObject *w)
Guido van Rossumc6913e71991-11-19 20:26:46 +00002943{
Neil Schemenauerba872e22001-01-04 01:46:03 +00002944 PyLongObject *a, *b;
2945 PyLongObject *z = NULL;
Guido van Rossumc6913e71991-11-19 20:26:46 +00002946 long shiftby;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002947 Py_ssize_t newsize, wordshift, loshift, hishift, i, j;
Guido van Rossumc6913e71991-11-19 20:26:46 +00002948 digit lomask, himask;
Tim Peters5af4e6c2002-08-12 02:31:19 +00002949
Neil Schemenauerba872e22001-01-04 01:46:03 +00002950 CONVERT_BINOP((PyObject *)v, (PyObject *)w, &a, &b);
2951
Guido van Rossum4c260ff1992-01-14 18:36:43 +00002952 if (a->ob_size < 0) {
2953 /* Right shifting negative numbers is harder */
Neil Schemenauerba872e22001-01-04 01:46:03 +00002954 PyLongObject *a1, *a2;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002955 a1 = (PyLongObject *) long_invert(a);
Neil Schemenauerba872e22001-01-04 01:46:03 +00002956 if (a1 == NULL)
2957 goto rshift_error;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002958 a2 = (PyLongObject *) long_rshift(a1, b);
2959 Py_DECREF(a1);
Neil Schemenauerba872e22001-01-04 01:46:03 +00002960 if (a2 == NULL)
2961 goto rshift_error;
2962 z = (PyLongObject *) long_invert(a2);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002963 Py_DECREF(a2);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002964 }
Neil Schemenauerba872e22001-01-04 01:46:03 +00002965 else {
Tim Peters5af4e6c2002-08-12 02:31:19 +00002966
Neil Schemenauerba872e22001-01-04 01:46:03 +00002967 shiftby = PyLong_AsLong((PyObject *)b);
2968 if (shiftby == -1L && PyErr_Occurred())
2969 goto rshift_error;
2970 if (shiftby < 0) {
2971 PyErr_SetString(PyExc_ValueError,
2972 "negative shift count");
2973 goto rshift_error;
2974 }
2975 wordshift = shiftby / SHIFT;
2976 newsize = ABS(a->ob_size) - wordshift;
2977 if (newsize <= 0) {
2978 z = _PyLong_New(0);
2979 Py_DECREF(a);
2980 Py_DECREF(b);
2981 return (PyObject *)z;
2982 }
2983 loshift = shiftby % SHIFT;
2984 hishift = SHIFT - loshift;
2985 lomask = ((digit)1 << hishift) - 1;
2986 himask = MASK ^ lomask;
2987 z = _PyLong_New(newsize);
2988 if (z == NULL)
2989 goto rshift_error;
2990 if (a->ob_size < 0)
2991 z->ob_size = -(z->ob_size);
2992 for (i = 0, j = wordshift; i < newsize; i++, j++) {
2993 z->ob_digit[i] = (a->ob_digit[j] >> loshift) & lomask;
2994 if (i+1 < newsize)
2995 z->ob_digit[i] |=
2996 (a->ob_digit[j+1] << hishift) & himask;
2997 }
2998 z = long_normalize(z);
Guido van Rossumc6913e71991-11-19 20:26:46 +00002999 }
Neil Schemenauerba872e22001-01-04 01:46:03 +00003000rshift_error:
3001 Py_DECREF(a);
3002 Py_DECREF(b);
3003 return (PyObject *) z;
3004
Guido van Rossumc6913e71991-11-19 20:26:46 +00003005}
3006
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003007static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00003008long_lshift(PyObject *v, PyObject *w)
Guido van Rossumc6913e71991-11-19 20:26:46 +00003009{
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003010 /* This version due to Tim Peters */
Neil Schemenauerba872e22001-01-04 01:46:03 +00003011 PyLongObject *a, *b;
3012 PyLongObject *z = NULL;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003013 long shiftby;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003014 Py_ssize_t oldsize, newsize, wordshift, remshift, i, j;
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003015 twodigits accum;
Tim Peters5af4e6c2002-08-12 02:31:19 +00003016
Neil Schemenauerba872e22001-01-04 01:46:03 +00003017 CONVERT_BINOP(v, w, &a, &b);
3018
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003019 shiftby = PyLong_AsLong((PyObject *)b);
3020 if (shiftby == -1L && PyErr_Occurred())
Neil Schemenauerba872e22001-01-04 01:46:03 +00003021 goto lshift_error;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003022 if (shiftby < 0) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003023 PyErr_SetString(PyExc_ValueError, "negative shift count");
Neil Schemenauerba872e22001-01-04 01:46:03 +00003024 goto lshift_error;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003025 }
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003026 if ((long)(int)shiftby != shiftby) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003027 PyErr_SetString(PyExc_ValueError,
3028 "outrageous left shift count");
Neil Schemenauerba872e22001-01-04 01:46:03 +00003029 goto lshift_error;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003030 }
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003031 /* wordshift, remshift = divmod(shiftby, SHIFT) */
3032 wordshift = (int)shiftby / SHIFT;
3033 remshift = (int)shiftby - wordshift * SHIFT;
3034
3035 oldsize = ABS(a->ob_size);
3036 newsize = oldsize + wordshift;
3037 if (remshift)
3038 ++newsize;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003039 z = _PyLong_New(newsize);
Guido van Rossumc6913e71991-11-19 20:26:46 +00003040 if (z == NULL)
Neil Schemenauerba872e22001-01-04 01:46:03 +00003041 goto lshift_error;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003042 if (a->ob_size < 0)
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003043 z->ob_size = -(z->ob_size);
Guido van Rossumc6913e71991-11-19 20:26:46 +00003044 for (i = 0; i < wordshift; i++)
3045 z->ob_digit[i] = 0;
Tim Peters5af4e6c2002-08-12 02:31:19 +00003046 accum = 0;
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003047 for (i = wordshift, j = 0; j < oldsize; i++, j++) {
Tim Peters0d2d87d2002-08-20 19:00:22 +00003048 accum |= (twodigits)a->ob_digit[j] << remshift;
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003049 z->ob_digit[i] = (digit)(accum & MASK);
3050 accum >>= SHIFT;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003051 }
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003052 if (remshift)
3053 z->ob_digit[newsize-1] = (digit)accum;
Tim Peters5af4e6c2002-08-12 02:31:19 +00003054 else
Guido van Rossumf2e499b1997-03-16 00:37:59 +00003055 assert(!accum);
Neil Schemenauerba872e22001-01-04 01:46:03 +00003056 z = long_normalize(z);
3057lshift_error:
3058 Py_DECREF(a);
3059 Py_DECREF(b);
3060 return (PyObject *) z;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003061}
3062
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003063
3064/* Bitwise and/xor/or operations */
3065
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003066static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00003067long_bitwise(PyLongObject *a,
3068 int op, /* '&', '|', '^' */
3069 PyLongObject *b)
Guido van Rossumc6913e71991-11-19 20:26:46 +00003070{
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003071 digit maska, maskb; /* 0 or MASK */
3072 int negz;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003073 Py_ssize_t size_a, size_b, size_z;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003074 PyLongObject *z;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003075 int i;
Guido van Rossum8b27d921992-03-27 17:27:05 +00003076 digit diga, digb;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003077 PyObject *v;
Tim Peters5af4e6c2002-08-12 02:31:19 +00003078
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003079 if (a->ob_size < 0) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003080 a = (PyLongObject *) long_invert(a);
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00003081 if (a == NULL)
3082 return NULL;
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003083 maska = MASK;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003084 }
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003085 else {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003086 Py_INCREF(a);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003087 maska = 0;
Guido van Rossumafbb8db1991-12-31 13:14:13 +00003088 }
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003089 if (b->ob_size < 0) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003090 b = (PyLongObject *) long_invert(b);
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00003091 if (b == NULL) {
3092 Py_DECREF(a);
3093 return NULL;
3094 }
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003095 maskb = MASK;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003096 }
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003097 else {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003098 Py_INCREF(b);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003099 maskb = 0;
3100 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00003101
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003102 negz = 0;
3103 switch (op) {
3104 case '^':
3105 if (maska != maskb) {
3106 maska ^= MASK;
3107 negz = -1;
3108 }
3109 break;
Guido van Rossumeb1fafc1994-08-29 12:47:19 +00003110 case '&':
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003111 if (maska && maskb) {
3112 op = '|';
3113 maska ^= MASK;
3114 maskb ^= MASK;
3115 negz = -1;
3116 }
3117 break;
3118 case '|':
3119 if (maska || maskb) {
3120 op = '&';
3121 maska ^= MASK;
3122 maskb ^= MASK;
3123 negz = -1;
3124 }
3125 break;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003126 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00003127
Guido van Rossumbd3a5271998-08-11 15:04:47 +00003128 /* JRH: The original logic here was to allocate the result value (z)
3129 as the longer of the two operands. However, there are some cases
3130 where the result is guaranteed to be shorter than that: AND of two
3131 positives, OR of two negatives: use the shorter number. AND with
3132 mixed signs: use the positive number. OR with mixed signs: use the
3133 negative number. After the transformations above, op will be '&'
3134 iff one of these cases applies, and mask will be non-0 for operands
3135 whose length should be ignored.
3136 */
3137
3138 size_a = a->ob_size;
3139 size_b = b->ob_size;
3140 size_z = op == '&'
3141 ? (maska
3142 ? size_b
3143 : (maskb ? size_a : MIN(size_a, size_b)))
3144 : MAX(size_a, size_b);
3145 z = _PyLong_New(size_z);
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00003146 if (z == NULL) {
Neal Norwitzef02b9e2006-07-16 02:00:32 +00003147 Py_DECREF(a);
3148 Py_DECREF(b);
Guido van Rossumbd3a5271998-08-11 15:04:47 +00003149 return NULL;
3150 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00003151
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003152 for (i = 0; i < size_z; ++i) {
3153 diga = (i < size_a ? a->ob_digit[i] : 0) ^ maska;
3154 digb = (i < size_b ? b->ob_digit[i] : 0) ^ maskb;
3155 switch (op) {
3156 case '&': z->ob_digit[i] = diga & digb; break;
3157 case '|': z->ob_digit[i] = diga | digb; break;
3158 case '^': z->ob_digit[i] = diga ^ digb; break;
3159 }
Guido van Rossumafbb8db1991-12-31 13:14:13 +00003160 }
Tim Peters5af4e6c2002-08-12 02:31:19 +00003161
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003162 Py_DECREF(a);
3163 Py_DECREF(b);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003164 z = long_normalize(z);
3165 if (negz == 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003166 return (PyObject *) z;
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003167 v = long_invert(z);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003168 Py_DECREF(z);
Guido van Rossum4c260ff1992-01-14 18:36:43 +00003169 return v;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003170}
3171
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003172static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00003173long_and(PyObject *v, PyObject *w)
Guido van Rossumc6913e71991-11-19 20:26:46 +00003174{
Neil Schemenauerba872e22001-01-04 01:46:03 +00003175 PyLongObject *a, *b;
3176 PyObject *c;
3177 CONVERT_BINOP(v, w, &a, &b);
3178 c = long_bitwise(a, '&', b);
3179 Py_DECREF(a);
3180 Py_DECREF(b);
3181 return c;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003182}
3183
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003184static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00003185long_xor(PyObject *v, PyObject *w)
Guido van Rossumc6913e71991-11-19 20:26:46 +00003186{
Neil Schemenauerba872e22001-01-04 01:46:03 +00003187 PyLongObject *a, *b;
3188 PyObject *c;
3189 CONVERT_BINOP(v, w, &a, &b);
3190 c = long_bitwise(a, '^', b);
3191 Py_DECREF(a);
3192 Py_DECREF(b);
3193 return c;
Guido van Rossumc6913e71991-11-19 20:26:46 +00003194}
3195
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003196static PyObject *
Neil Schemenauerba872e22001-01-04 01:46:03 +00003197long_or(PyObject *v, PyObject *w)
Guido van Rossumc6913e71991-11-19 20:26:46 +00003198{
Neil Schemenauerba872e22001-01-04 01:46:03 +00003199 PyLongObject *a, *b;
3200 PyObject *c;
3201 CONVERT_BINOP(v, w, &a, &b);
3202 c = long_bitwise(a, '|', b);
3203 Py_DECREF(a);
3204 Py_DECREF(b);
3205 return c;
Guido van Rossum23d6f0e1991-05-14 12:06:49 +00003206}
3207
Guido van Rossum234f9421993-06-17 12:35:49 +00003208static int
Tim Peters9f688bf2000-07-07 15:53:28 +00003209long_coerce(PyObject **pv, PyObject **pw)
Guido van Rossume6eefc21992-08-14 12:06:52 +00003210{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003211 if (PyInt_Check(*pw)) {
Neil Schemenauerba872e22001-01-04 01:46:03 +00003212 *pw = PyLong_FromLong(PyInt_AS_LONG(*pw));
Georg Brandl1dfa8ac2007-04-21 07:22:57 +00003213 if (*pw == NULL)
3214 return -1;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003215 Py_INCREF(*pv);
Guido van Rossume6eefc21992-08-14 12:06:52 +00003216 return 0;
3217 }
Guido van Rossum1952e382001-09-19 01:25:16 +00003218 else if (PyLong_Check(*pw)) {
3219 Py_INCREF(*pv);
3220 Py_INCREF(*pw);
3221 return 0;
3222 }
Guido van Rossume6eefc21992-08-14 12:06:52 +00003223 return 1; /* Can't do it */
3224}
3225
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003226static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00003227long_long(PyObject *v)
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003228{
Brett Cannonc3647ac2005-04-26 03:45:26 +00003229 if (PyLong_CheckExact(v))
3230 Py_INCREF(v);
3231 else
3232 v = _PyLong_Copy((PyLongObject *)v);
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003233 return v;
3234}
3235
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003236static PyObject *
Walter Dörwaldf1715402002-11-19 20:49:15 +00003237long_int(PyObject *v)
3238{
3239 long x;
3240 x = PyLong_AsLong(v);
3241 if (PyErr_Occurred()) {
3242 if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
3243 PyErr_Clear();
3244 if (PyLong_CheckExact(v)) {
3245 Py_INCREF(v);
3246 return v;
3247 }
3248 else
3249 return _PyLong_Copy((PyLongObject *)v);
3250 }
3251 else
3252 return NULL;
3253 }
3254 return PyInt_FromLong(x);
3255}
3256
3257static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00003258long_float(PyObject *v)
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003259{
Guido van Rossum09e6ad01997-02-14 22:54:21 +00003260 double result;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003261 result = PyLong_AsDouble(v);
Tim Peters9fffa3e2001-09-04 05:14:19 +00003262 if (result == -1.0 && PyErr_Occurred())
3263 return NULL;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003264 return PyFloat_FromDouble(result);
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003265}
3266
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003267static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00003268long_oct(PyObject *v)
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003269{
Fred Drake121ee271999-12-23 15:41:28 +00003270 return long_format(v, 8, 1);
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003271}
3272
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003273static PyObject *
Tim Peters9f688bf2000-07-07 15:53:28 +00003274long_hex(PyObject *v)
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003275{
Fred Drake121ee271999-12-23 15:41:28 +00003276 return long_format(v, 16, 1);
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003277}
Jeremy Hylton938ace62002-07-17 16:30:39 +00003278
3279static PyObject *
Guido van Rossumbef14172001-08-29 15:47:46 +00003280long_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
Guido van Rossum1899c2e1992-09-12 11:09:23 +00003281
Tim Peters6d6c1a32001-08-02 04:15:00 +00003282static PyObject *
3283long_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
3284{
3285 PyObject *x = NULL;
3286 int base = -909; /* unlikely! */
Martin v. Löwis15e62742006-02-27 16:46:16 +00003287 static char *kwlist[] = {"x", "base", 0};
Tim Peters6d6c1a32001-08-02 04:15:00 +00003288
Guido van Rossumbef14172001-08-29 15:47:46 +00003289 if (type != &PyLong_Type)
3290 return long_subtype_new(type, args, kwds); /* Wimp out */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003291 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oi:long", kwlist,
3292 &x, &base))
3293 return NULL;
3294 if (x == NULL)
3295 return PyLong_FromLong(0L);
3296 if (base == -909)
3297 return PyNumber_Long(x);
Georg Brandlffb0a802007-03-06 18:44:35 +00003298 else if (PyString_Check(x)) {
3299 /* Since PyLong_FromString doesn't have a length parameter,
3300 * check here for possible NULs in the string. */
3301 char *string = PyString_AS_STRING(x);
3302 if (strlen(string) != PyString_Size(x)) {
3303 /* create a repr() of the input string,
3304 * just like PyLong_FromString does. */
3305 PyObject *srepr;
3306 srepr = PyObject_Repr(x);
3307 if (srepr == NULL)
3308 return NULL;
3309 PyErr_Format(PyExc_ValueError,
3310 "invalid literal for long() with base %d: %s",
3311 base, PyString_AS_STRING(srepr));
3312 Py_DECREF(srepr);
3313 return NULL;
3314 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00003315 return PyLong_FromString(PyString_AS_STRING(x), NULL, base);
Georg Brandlffb0a802007-03-06 18:44:35 +00003316 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +00003317#ifdef Py_USING_UNICODE
Tim Peters6d6c1a32001-08-02 04:15:00 +00003318 else if (PyUnicode_Check(x))
3319 return PyLong_FromUnicode(PyUnicode_AS_UNICODE(x),
3320 PyUnicode_GET_SIZE(x),
3321 base);
Martin v. Löwis339d0f72001-08-17 18:39:25 +00003322#endif
Tim Peters6d6c1a32001-08-02 04:15:00 +00003323 else {
3324 PyErr_SetString(PyExc_TypeError,
3325 "long() can't convert non-string with explicit base");
3326 return NULL;
3327 }
3328}
3329
Guido van Rossumbef14172001-08-29 15:47:46 +00003330/* Wimpy, slow approach to tp_new calls for subtypes of long:
3331 first create a regular long from whatever arguments we got,
3332 then allocate a subtype instance and initialize it from
3333 the regular long. The regular long is then thrown away.
3334*/
3335static PyObject *
3336long_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
3337{
Anthony Baxter377be112006-04-11 06:54:30 +00003338 PyLongObject *tmp, *newobj;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003339 Py_ssize_t i, n;
Guido van Rossumbef14172001-08-29 15:47:46 +00003340
3341 assert(PyType_IsSubtype(type, &PyLong_Type));
3342 tmp = (PyLongObject *)long_new(&PyLong_Type, args, kwds);
3343 if (tmp == NULL)
3344 return NULL;
Tim Peters64b5ce32001-09-10 20:52:51 +00003345 assert(PyLong_CheckExact(tmp));
Guido van Rossumbef14172001-08-29 15:47:46 +00003346 n = tmp->ob_size;
3347 if (n < 0)
3348 n = -n;
Anthony Baxter377be112006-04-11 06:54:30 +00003349 newobj = (PyLongObject *)type->tp_alloc(type, n);
3350 if (newobj == NULL) {
Raymond Hettingerf4667932003-06-28 20:04:25 +00003351 Py_DECREF(tmp);
Guido van Rossumbef14172001-08-29 15:47:46 +00003352 return NULL;
Raymond Hettingerf4667932003-06-28 20:04:25 +00003353 }
Anthony Baxter377be112006-04-11 06:54:30 +00003354 assert(PyLong_Check(newobj));
3355 newobj->ob_size = tmp->ob_size;
Guido van Rossumbef14172001-08-29 15:47:46 +00003356 for (i = 0; i < n; i++)
Anthony Baxter377be112006-04-11 06:54:30 +00003357 newobj->ob_digit[i] = tmp->ob_digit[i];
Guido van Rossumbef14172001-08-29 15:47:46 +00003358 Py_DECREF(tmp);
Anthony Baxter377be112006-04-11 06:54:30 +00003359 return (PyObject *)newobj;
Guido van Rossumbef14172001-08-29 15:47:46 +00003360}
3361
Guido van Rossum5d9113d2003-01-29 17:58:45 +00003362static PyObject *
3363long_getnewargs(PyLongObject *v)
3364{
3365 return Py_BuildValue("(N)", _PyLong_Copy(v));
3366}
3367
3368static PyMethodDef long_methods[] = {
3369 {"__getnewargs__", (PyCFunction)long_getnewargs, METH_NOARGS},
3370 {NULL, NULL} /* sentinel */
3371};
3372
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003373PyDoc_STRVAR(long_doc,
Tim Peters6d6c1a32001-08-02 04:15:00 +00003374"long(x[, base]) -> integer\n\
3375\n\
3376Convert a string or number to a long integer, if possible. A floating\n\
3377point argument will be truncated towards zero (this does not include a\n\
3378string representation of a floating point number!) When converting a\n\
3379string, use the optional base. It is an error to supply a base when\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003380converting a non-string.");
Tim Peters6d6c1a32001-08-02 04:15:00 +00003381
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003382static PyNumberMethods long_as_number = {
Tim Peters9f688bf2000-07-07 15:53:28 +00003383 (binaryfunc) long_add, /*nb_add*/
3384 (binaryfunc) long_sub, /*nb_subtract*/
3385 (binaryfunc) long_mul, /*nb_multiply*/
Georg Brandl347b3002006-03-30 11:57:00 +00003386 long_classic_div, /*nb_divide*/
3387 long_mod, /*nb_remainder*/
3388 long_divmod, /*nb_divmod*/
3389 long_pow, /*nb_power*/
Tim Peters9f688bf2000-07-07 15:53:28 +00003390 (unaryfunc) long_neg, /*nb_negative*/
3391 (unaryfunc) long_pos, /*tp_positive*/
3392 (unaryfunc) long_abs, /*tp_absolute*/
3393 (inquiry) long_nonzero, /*tp_nonzero*/
3394 (unaryfunc) long_invert, /*nb_invert*/
Georg Brandl347b3002006-03-30 11:57:00 +00003395 long_lshift, /*nb_lshift*/
Tim Peters9f688bf2000-07-07 15:53:28 +00003396 (binaryfunc) long_rshift, /*nb_rshift*/
Georg Brandl347b3002006-03-30 11:57:00 +00003397 long_and, /*nb_and*/
3398 long_xor, /*nb_xor*/
3399 long_or, /*nb_or*/
3400 long_coerce, /*nb_coerce*/
3401 long_int, /*nb_int*/
3402 long_long, /*nb_long*/
3403 long_float, /*nb_float*/
3404 long_oct, /*nb_oct*/
3405 long_hex, /*nb_hex*/
Guido van Rossum4668b002001-08-08 05:00:18 +00003406 0, /* nb_inplace_add */
3407 0, /* nb_inplace_subtract */
3408 0, /* nb_inplace_multiply */
3409 0, /* nb_inplace_divide */
3410 0, /* nb_inplace_remainder */
3411 0, /* nb_inplace_power */
3412 0, /* nb_inplace_lshift */
3413 0, /* nb_inplace_rshift */
3414 0, /* nb_inplace_and */
3415 0, /* nb_inplace_xor */
3416 0, /* nb_inplace_or */
Georg Brandl347b3002006-03-30 11:57:00 +00003417 long_div, /* nb_floor_divide */
Guido van Rossum4668b002001-08-08 05:00:18 +00003418 long_true_divide, /* nb_true_divide */
3419 0, /* nb_inplace_floor_divide */
3420 0, /* nb_inplace_true_divide */
Neal Norwitz8a87f5d2006-08-12 17:03:09 +00003421 long_long, /* nb_index */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00003422};
3423
Guido van Rossumc0b618a1997-05-02 03:12:38 +00003424PyTypeObject PyLong_Type = {
3425 PyObject_HEAD_INIT(&PyType_Type)
Tim Peters6d6c1a32001-08-02 04:15:00 +00003426 0, /* ob_size */
3427 "long", /* tp_name */
3428 sizeof(PyLongObject) - sizeof(digit), /* tp_basicsize */
3429 sizeof(digit), /* tp_itemsize */
Georg Brandl347b3002006-03-30 11:57:00 +00003430 long_dealloc, /* tp_dealloc */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003431 0, /* tp_print */
3432 0, /* tp_getattr */
3433 0, /* tp_setattr */
3434 (cmpfunc)long_compare, /* tp_compare */
Georg Brandl347b3002006-03-30 11:57:00 +00003435 long_repr, /* tp_repr */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003436 &long_as_number, /* tp_as_number */
3437 0, /* tp_as_sequence */
3438 0, /* tp_as_mapping */
3439 (hashfunc)long_hash, /* tp_hash */
3440 0, /* tp_call */
Georg Brandl347b3002006-03-30 11:57:00 +00003441 long_str, /* tp_str */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003442 PyObject_GenericGetAttr, /* tp_getattro */
3443 0, /* tp_setattro */
3444 0, /* tp_as_buffer */
Guido van Rossumbef14172001-08-29 15:47:46 +00003445 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES |
3446 Py_TPFLAGS_BASETYPE, /* tp_flags */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003447 long_doc, /* tp_doc */
3448 0, /* tp_traverse */
3449 0, /* tp_clear */
3450 0, /* tp_richcompare */
3451 0, /* tp_weaklistoffset */
3452 0, /* tp_iter */
3453 0, /* tp_iternext */
Guido van Rossum5d9113d2003-01-29 17:58:45 +00003454 long_methods, /* tp_methods */
Tim Peters6d6c1a32001-08-02 04:15:00 +00003455 0, /* tp_members */
3456 0, /* tp_getset */
3457 0, /* tp_base */
3458 0, /* tp_dict */
3459 0, /* tp_descr_get */
3460 0, /* tp_descr_set */
3461 0, /* tp_dictoffset */
3462 0, /* tp_init */
3463 0, /* tp_alloc */
3464 long_new, /* tp_new */
Neil Schemenaueraa769ae2002-04-12 02:44:10 +00003465 PyObject_Del, /* tp_free */
Guido van Rossumedcc38a1991-05-05 20:09:44 +00003466};