1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
|
|
|
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
|
|
|
|
Netherlands.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM 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.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Integer object implementation */
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
/* Standard Booleans */
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject FalseObject = {
|
|
|
|
OB_HEAD_INIT(&Inttype)
|
|
|
|
0
|
|
|
|
};
|
1990-12-20 11:06:42 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject TrueObject = {
|
|
|
|
OB_HEAD_INIT(&Inttype)
|
|
|
|
1
|
|
|
|
};
|
|
|
|
|
1990-10-14 17:02:26 -03:00
|
|
|
static object *
|
|
|
|
err_ovf()
|
|
|
|
{
|
1990-10-21 19:11:03 -03:00
|
|
|
err_setstr(OverflowError, "integer overflow");
|
1990-10-14 17:02:26 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
err_zdiv()
|
|
|
|
{
|
1990-10-21 19:11:03 -03:00
|
|
|
err_setstr(ZeroDivisionError, "integer division by zero");
|
1990-10-14 17:02:26 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
/* Integers are quite normal objects, to make object handling uniform.
|
|
|
|
(Using odd pointers to represent integers would save much space
|
|
|
|
but require extra checks for this special case throughout the code.)
|
|
|
|
Since, a typical Python program spends much of its time allocating
|
|
|
|
and deallocating integers, these operations should be very fast.
|
|
|
|
Therefore we use a dedicated allocation scheme with a much lower
|
|
|
|
overhead (in space and time) than straight malloc(): a simple
|
|
|
|
dedicated free list, filled when necessary with memory from malloc().
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BLOCK_SIZE 1000 /* 1K less typical malloc overhead */
|
|
|
|
#define N_INTOBJECTS (BLOCK_SIZE / sizeof(intobject))
|
|
|
|
|
|
|
|
static intobject *
|
|
|
|
fill_free_list()
|
|
|
|
{
|
|
|
|
intobject *p, *q;
|
|
|
|
p = NEW(intobject, N_INTOBJECTS);
|
|
|
|
if (p == NULL)
|
|
|
|
return (intobject *)err_nomem();
|
|
|
|
q = p + N_INTOBJECTS;
|
|
|
|
while (--q > p)
|
|
|
|
*(intobject **)q = q-1;
|
|
|
|
*(intobject **)q = NULL;
|
|
|
|
return p + N_INTOBJECTS - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static intobject *free_list = NULL;
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
object *
|
|
|
|
newintobject(ival)
|
|
|
|
long ival;
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
register intobject *v;
|
|
|
|
if (free_list == NULL) {
|
|
|
|
if ((free_list = fill_free_list()) == NULL)
|
|
|
|
return NULL;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1990-12-20 11:06:42 -04:00
|
|
|
v = free_list;
|
|
|
|
free_list = *(intobject **)free_list;
|
|
|
|
NEWREF(v);
|
|
|
|
v->ob_type = &Inttype;
|
|
|
|
v->ob_ival = ival;
|
|
|
|
return (object *) v;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
int_dealloc(v)
|
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
*(intobject **)v = free_list;
|
|
|
|
free_list = v;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
long
|
|
|
|
getintvalue(op)
|
|
|
|
register object *op;
|
|
|
|
{
|
|
|
|
if (!is_intobject(op)) {
|
1990-10-21 19:11:03 -03:00
|
|
|
err_badcall();
|
1990-10-14 09:07:46 -03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return ((intobject *)op) -> ob_ival;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
static void
|
1990-12-20 11:06:42 -04:00
|
|
|
int_print(v, fp, flags)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
FILE *fp;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
fprintf(fp, "%ld", v->ob_ival);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_repr(v)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
char buf[20];
|
|
|
|
sprintf(buf, "%ld", v->ob_ival);
|
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1990-12-20 11:06:42 -04:00
|
|
|
int_compare(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v, *w;
|
|
|
|
{
|
|
|
|
register long i = v->ob_ival;
|
|
|
|
register long j = w->ob_ival;
|
|
|
|
return (i < j) ? -1 : (i > j) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_add(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
register long a, b, x;
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
a = v->ob_ival;
|
|
|
|
b = ((intobject *)w) -> ob_ival;
|
|
|
|
x = a + b;
|
1990-10-14 17:02:26 -03:00
|
|
|
if ((x^a) < 0 && (x^b) < 0)
|
|
|
|
return err_ovf();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_sub(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
register long a, b, x;
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
a = v->ob_ival;
|
|
|
|
b = ((intobject *)w) -> ob_ival;
|
|
|
|
x = a - b;
|
1990-10-14 17:02:26 -03:00
|
|
|
if ((x^a) < 0 && (x^~b) < 0)
|
|
|
|
return err_ovf();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_mul(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
register long a, b;
|
|
|
|
double x;
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
a = v->ob_ival;
|
|
|
|
b = ((intobject *)w) -> ob_ival;
|
|
|
|
x = (double)a * (double)b;
|
1990-10-14 17:02:26 -03:00
|
|
|
if (x > 0x7fffffff || x < (double) (long) 0x80000000)
|
|
|
|
return err_ovf();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(a * b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_div(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-14 17:02:26 -03:00
|
|
|
if (((intobject *)w) -> ob_ival == 0)
|
1990-10-26 11:58:41 -03:00
|
|
|
return err_zdiv();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(v->ob_ival / ((intobject *)w) -> ob_ival);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_rem(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-14 17:02:26 -03:00
|
|
|
if (((intobject *)w) -> ob_ival == 0)
|
1990-10-26 11:58:41 -03:00
|
|
|
return err_zdiv();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(v->ob_ival % ((intobject *)w) -> ob_ival);
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:08:27 -03:00
|
|
|
static object *
|
|
|
|
int_divmod(x, y)
|
|
|
|
intobject *x;
|
|
|
|
register object *y;
|
|
|
|
{
|
|
|
|
object *v, *v0, *v1;
|
|
|
|
long xi, yi, xdivy, xmody;
|
|
|
|
if (!is_intobject(y)) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
xi = x->ob_ival;
|
|
|
|
yi = getintvalue(y);
|
|
|
|
if (yi == 0)
|
|
|
|
return err_zdiv();
|
|
|
|
if (yi < 0) {
|
|
|
|
xdivy = -xi / -yi;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
xdivy = xi / yi;
|
|
|
|
}
|
|
|
|
xmody = xi - xdivy*yi;
|
|
|
|
if (xmody < 0 && yi > 0 || xmody > 0 && yi < 0) {
|
|
|
|
xmody += yi;
|
|
|
|
xdivy -= 1;
|
|
|
|
}
|
|
|
|
v = newtupleobject(2);
|
|
|
|
v0 = newintobject(xdivy);
|
|
|
|
v1 = newintobject(xmody);
|
|
|
|
if (v == NULL || v0 == NULL || v1 == NULL ||
|
|
|
|
settupleitem(v, 0, v0) != 0 ||
|
|
|
|
settupleitem(v, 1, v1) != 0) {
|
|
|
|
XDECREF(v);
|
|
|
|
XDECREF(v0);
|
|
|
|
XDECREF(v1);
|
|
|
|
v = NULL;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_pow(v, w)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
register object *w;
|
|
|
|
{
|
|
|
|
register long iv, iw, ix;
|
|
|
|
if (!is_intobject(w)) {
|
1990-10-14 17:02:26 -03:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
iv = v->ob_ival;
|
|
|
|
iw = ((intobject *)w)->ob_ival;
|
1991-05-05 17:08:27 -03:00
|
|
|
if (iw < 0) {
|
|
|
|
err_setstr(RuntimeError, "integer to the negative power");
|
|
|
|
return NULL;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
ix = 1;
|
1991-05-05 17:08:27 -03:00
|
|
|
while (--iw >= 0) {
|
|
|
|
long prev = ix;
|
1990-10-14 09:07:46 -03:00
|
|
|
ix = ix * iv;
|
1991-05-05 17:08:27 -03:00
|
|
|
if (iv == 0)
|
|
|
|
break; /* 0 to some power -- avoid ix / 0 */
|
|
|
|
if (ix / iv != prev)
|
|
|
|
return err_ovf();
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
return newintobject(ix);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_neg(v)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
register long a, x;
|
|
|
|
a = v->ob_ival;
|
|
|
|
x = -a;
|
1990-10-14 17:02:26 -03:00
|
|
|
if (a < 0 && x < 0)
|
|
|
|
return err_ovf();
|
1990-10-14 09:07:46 -03:00
|
|
|
return newintobject(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
int_pos(v)
|
1990-10-14 09:07:46 -03:00
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
INCREF(v);
|
|
|
|
return (object *)v;
|
|
|
|
}
|
|
|
|
|
1991-05-05 17:08:27 -03:00
|
|
|
static object *
|
|
|
|
int_abs(v)
|
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
if (v->ob_ival >= 0)
|
|
|
|
return int_pos(v);
|
|
|
|
else
|
|
|
|
return int_neg(v);
|
|
|
|
}
|
|
|
|
|
1991-05-14 09:05:32 -03:00
|
|
|
static int
|
|
|
|
int_nonzero(v)
|
|
|
|
intobject *v;
|
|
|
|
{
|
|
|
|
return v->ob_ival != 0;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static number_methods int_as_number = {
|
1991-05-05 17:08:27 -03:00
|
|
|
int_add, /*nb_add*/
|
|
|
|
int_sub, /*nb_subtract*/
|
|
|
|
int_mul, /*nb_multiply*/
|
|
|
|
int_div, /*nb_divide*/
|
|
|
|
int_rem, /*nb_remainder*/
|
|
|
|
int_divmod, /*nb_divmod*/
|
|
|
|
int_pow, /*nb_power*/
|
|
|
|
int_neg, /*nb_negative*/
|
|
|
|
int_pos, /*nb_positive*/
|
|
|
|
int_abs, /*nb_absolute*/
|
1991-05-14 09:05:32 -03:00
|
|
|
int_nonzero, /*nb_nonzero*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
typeobject Inttype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0,
|
|
|
|
"int",
|
|
|
|
sizeof(intobject),
|
|
|
|
0,
|
1990-12-20 11:06:42 -04:00
|
|
|
int_dealloc, /*tp_dealloc*/
|
|
|
|
int_print, /*tp_print*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_getattr*/
|
|
|
|
0, /*tp_setattr*/
|
1990-12-20 11:06:42 -04:00
|
|
|
int_compare, /*tp_compare*/
|
|
|
|
int_repr, /*tp_repr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
&int_as_number, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
|
|
|
};
|