longintrepr.h 3.14 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
/***********************************************************
Guido van Rossum's avatar
Guido van Rossum committed
8 9
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
Guido van Rossum's avatar
Guido van Rossum committed
10 11 12

                        All Rights Reserved

13 14
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
Guido van Rossum's avatar
Guido van Rossum committed
15
provided that the above copyright notice appear in all copies and that
16
both that copyright notice and this permission notice appear in
Guido van Rossum's avatar
Guido van Rossum committed
17
supporting documentation, and that the names of Stichting Mathematisch
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.

While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.

STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum's avatar
Guido van Rossum committed
35 36 37

******************************************************************/

38 39
/* This is published for the benefit of "friend" marshal.c only. */

Guido van Rossum's avatar
Guido van Rossum committed
40 41 42 43 44 45 46 47 48 49 50
/* Parameters of the long integer representation.
   These shouldn't have to be changed as C should guarantee that a short
   contains at least 16 bits, but it's made changeable any way.
   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;
51
typedef unsigned int wdigit; /* digit widened to parameter size */
Guido van Rossum's avatar
Guido van Rossum committed
52
typedef unsigned long twodigits;
53
typedef long stwodigits; /* signed variant of twodigits */
Guido van Rossum's avatar
Guido van Rossum committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

#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.
   The allocation fuction takes care of allocating extra memory
   so that ob_digit[0] ... ob_digit[abs(ob_size)-1] are actually available. */

70
struct _longobject {
71
	PyObject_HEAD
72
	int ob_size;
Guido van Rossum's avatar
Guido van Rossum committed
73
	digit ob_digit[1];
74
};
Guido van Rossum's avatar
Guido van Rossum committed
75

76
DL_IMPORT(PyLongObject *) _PyLong_New Py_PROTO((int));
77 78 79 80 81

#ifdef __cplusplus
}
#endif
#endif /* !Py_LONGINTREPR_H */