longintrepr.h 1.92 KB
Newer Older
1 2 3 4 5 6
#ifndef Py_LONGINTREPR_H
#define Py_LONGINTREPR_H
#ifdef __cplusplus
extern "C" {
#endif

Guido van Rossum's avatar
Guido van Rossum committed
7

8 9
/* This is published for the benefit of "friend" marshal.c only. */

Guido van Rossum's avatar
Guido van Rossum committed
10 11
/* Parameters of the long integer representation.
   These shouldn't have to be changed as C should guarantee that a short
12
   contains at least 16 bits, but it's made changeable anyway.
Guido van Rossum's avatar
Guido van Rossum committed
13 14 15 16 17 18 19 20
   Note: 'digit' should be able to hold 2*MASK+1, and 'twodigits'
   should be able to hold the intermediate results in 'mul'
   (at most MASK << SHIFT).
   Also, x_sub assumes that 'digit' is an unsigned type, and overflow
   is handled by taking the result mod 2**N for some N > SHIFT.
   And, at some places it is assumed that MASK fits in an int, as well. */

typedef unsigned short digit;
21
typedef unsigned int wdigit; /* digit widened to parameter size */
22 23 24
#define BASE_TWODIGITS_TYPE long
typedef unsigned BASE_TWODIGITS_TYPE twodigits;
typedef BASE_TWODIGITS_TYPE stwodigits; /* signed variant of twodigits */
Guido van Rossum's avatar
Guido van Rossum committed
25 26 27 28 29 30 31 32 33 34 35 36 37

#define SHIFT	15
#define BASE	((digit)1 << SHIFT)
#define MASK	((int)(BASE - 1))

/* Long integer representation.
   The absolute value of a number is equal to
   	SUM(for i=0 through abs(ob_size)-1) ob_digit[i] * 2**(SHIFT*i)
   Negative numbers are represented with ob_size < 0;
   zero is represented by ob_size == 0.
   In a normalized number, ob_digit[abs(ob_size)-1] (the most significant
   digit) is never zero.  Also, in all cases, for all valid i,
   	0 <= ob_digit[i] <= MASK.
38
   The allocation function takes care of allocating extra memory
39 40 41 42 43
   so that ob_digit[0] ... ob_digit[abs(ob_size)-1] are actually available.

   CAUTION:  Generic code manipulating subtypes of PyVarObject has to
   aware that longs abuse  ob_size's sign bit.
*/
Guido van Rossum's avatar
Guido van Rossum committed
44

45
struct _longobject {
46
	PyObject_VAR_HEAD
Guido van Rossum's avatar
Guido van Rossum committed
47
	digit ob_digit[1];
48
};
Guido van Rossum's avatar
Guido van Rossum committed
49

50
DL_IMPORT(PyLongObject *) _PyLong_New(int);
51

52 53 54
/* Return a copy of src. */
DL_IMPORT(PyObject *) _PyLong_Copy(PyLongObject *src);

55 56 57 58
#ifdef __cplusplus
}
#endif
#endif /* !Py_LONGINTREPR_H */