| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1993-03-16 12:15:04 +00:00
										 |  |  | Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, | 
					
						
							|  |  |  | Amsterdam, The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         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 12:07:46 +00:00
										 |  |  | /* Integer object implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #include "allobjects.h"
 | 
					
						
							| 
									
										
										
										
											1993-03-16 12:15:04 +00:00
										 |  |  | #include "modsupport.h"
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Standard Booleans */ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | intobject FalseObject = { | 
					
						
							|  |  |  | 	OB_HEAD_INIT(&Inttype) | 
					
						
							|  |  |  | 	0 | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | intobject TrueObject = { | 
					
						
							|  |  |  | 	OB_HEAD_INIT(&Inttype) | 
					
						
							|  |  |  | 	1 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | static object * | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | err_ovf(msg) | 
					
						
							|  |  |  | 	char *msg; | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 	err_setstr(OverflowError, msg); | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00: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; | 
					
						
							| 
									
										
										
										
											1993-10-15 16:18:48 +00:00
										 |  |  | #ifndef NSMALLPOSINTS
 | 
					
						
							|  |  |  | #define NSMALLPOSINTS		100
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef NSMALLNEGINTS
 | 
					
						
							|  |  |  | #define NSMALLNEGINTS		1
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if NSMALLNEGINTS + NSMALLPOSINTS > 0
 | 
					
						
							|  |  |  | /* References to small integers are saved in this array so that they
 | 
					
						
							|  |  |  |    can be shared. | 
					
						
							|  |  |  |    The integers that are saved are those in the range | 
					
						
							|  |  |  |    -NSMALLNEGINTS (inclusive) to NSMALLPOSINTS (not inclusive). | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | static intobject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS]; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  | int quick_int_allocs, quick_neg_int_allocs; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | object * | 
					
						
							|  |  |  | newintobject(ival) | 
					
						
							|  |  |  | 	long ival; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	register intobject *v; | 
					
						
							| 
									
										
										
										
											1993-10-15 16:18:48 +00:00
										 |  |  | #if NSMALLNEGINTS + NSMALLPOSINTS > 0
 | 
					
						
							|  |  |  | 	if (-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS && | 
					
						
							|  |  |  | 	    (v = small_ints[ival + NSMALLNEGINTS]) != NULL) { | 
					
						
							|  |  |  | 		INCREF(v); | 
					
						
							|  |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  | 		if (ival >= 0) | 
					
						
							|  |  |  | 			quick_int_allocs++; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			quick_neg_int_allocs++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 		return (object *) v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	if (free_list == NULL) { | 
					
						
							|  |  |  | 		if ((free_list = fill_free_list()) == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	v = free_list; | 
					
						
							|  |  |  | 	free_list = *(intobject **)free_list; | 
					
						
							|  |  |  | 	v->ob_type = &Inttype; | 
					
						
							|  |  |  | 	v->ob_ival = ival; | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | 	NEWREF(v); | 
					
						
							| 
									
										
										
										
											1993-10-15 16:18:48 +00:00
										 |  |  | #if NSMALLNEGINTS + NSMALLPOSINTS > 0
 | 
					
						
							|  |  |  | 	if (-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS) { | 
					
						
							|  |  |  | 		/* save this one for a following allocation */ | 
					
						
							|  |  |  | 		INCREF(v); | 
					
						
							|  |  |  | 		small_ints[ival + NSMALLNEGINTS] = v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	return (object *) v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | int_dealloc(v) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	*(intobject **)v = free_list; | 
					
						
							|  |  |  | 	free_list = v; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | long | 
					
						
							|  |  |  | getintvalue(op) | 
					
						
							|  |  |  | 	register object *op; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!is_intobject(op)) { | 
					
						
							| 
									
										
										
										
											1990-10-21 22:11:03 +00:00
										 |  |  | 		err_badcall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return ((intobject *)op) -> ob_ival; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 17:31:02 +00:00
										 |  |  | /* ARGSUSED */ | 
					
						
							| 
									
										
										
										
											1991-06-07 16:10:43 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_print(v, fp, flags) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							| 
									
										
										
										
											1992-03-27 17:31:02 +00:00
										 |  |  | 	int flags; /* Not used but required by interface */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	fprintf(fp, "%ld", v->ob_ival); | 
					
						
							| 
									
										
										
										
											1991-06-07 16:10:43 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_repr(v) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char buf[20]; | 
					
						
							|  |  |  | 	sprintf(buf, "%ld", v->ob_ival); | 
					
						
							|  |  |  | 	return newstringobject(buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_compare(v, w) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	register long i = v->ob_ival; | 
					
						
							|  |  |  | 	register long j = w->ob_ival; | 
					
						
							|  |  |  | 	return (i < j) ? -1 : (i > j) ? 1 : 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static long | 
					
						
							|  |  |  | int_hash(v) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	long x = v -> ob_ival; | 
					
						
							|  |  |  | 	if (x == -1) | 
					
						
							|  |  |  | 		x = -2; | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_add(v, w) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b, x; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	x = a + b; | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | 	if ((x^a) < 0 && (x^b) < 0) | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 		return err_ovf("integer addition"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	return newintobject(x); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_sub(v, w) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b, x; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	x = a - b; | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | 	if ((x^a) < 0 && (x^~b) < 0) | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 		return err_ovf("integer subtraction"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	return newintobject(x); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_mul(v, w) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	double x; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	x = (double)a * (double)b; | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | 	if (x > 0x7fffffff || x < (double) (long) 0x80000000) | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 		return err_ovf("integer multiplication"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	return newintobject(a * b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | i_divmod(x, y, p_xdivy, p_xmody) | 
					
						
							|  |  |  | 	register intobject *x, *y; | 
					
						
							|  |  |  | 	long *p_xdivy, *p_xmody; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	long xi = x->ob_ival; | 
					
						
							|  |  |  | 	long yi = y->ob_ival; | 
					
						
							|  |  |  | 	long xdivy, xmody; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (yi == 0) { | 
					
						
							|  |  |  | 		err_setstr(ZeroDivisionError, "integer division or modulo"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	if (yi < 0) { | 
					
						
							|  |  |  | 		if (xi < 0) | 
					
						
							|  |  |  | 			xdivy = -xi / -yi; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 			xdivy = - (xi / -yi); | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 		if (xi < 0) | 
					
						
							|  |  |  | 			xdivy = - (-xi / yi); | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 			xdivy = xi / yi; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	xmody = xi - xdivy*yi; | 
					
						
							|  |  |  | 	if (xmody < 0 && yi > 0 || xmody > 0 && yi < 0) { | 
					
						
							|  |  |  | 		xmody += yi; | 
					
						
							|  |  |  | 		xdivy -= 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	*p_xdivy = xdivy; | 
					
						
							|  |  |  | 	*p_xmody = xmody; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | int_div(x, y) | 
					
						
							|  |  |  | 	intobject *x; | 
					
						
							|  |  |  | 	intobject *y; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	long d, m; | 
					
						
							|  |  |  | 	if (i_divmod(x, y, &d, &m) < 0) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	return newintobject(d); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_mod(x, y) | 
					
						
							|  |  |  | 	intobject *x; | 
					
						
							|  |  |  | 	intobject *y; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	long d, m; | 
					
						
							|  |  |  | 	if (i_divmod(x, y, &d, &m) < 0) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-03-27 17:31:02 +00:00
										 |  |  | 	return newintobject(m); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | static object * | 
					
						
							|  |  |  | int_divmod(x, y) | 
					
						
							|  |  |  | 	intobject *x; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *y; | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	object *v, *v0, *v1; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	long d, m; | 
					
						
							|  |  |  | 	if (i_divmod(x, y, &d, &m) < 0) | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1993-03-16 12:15:04 +00:00
										 |  |  | 	return mkvalue("(ll)", d, m); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_pow(v, w) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long iv, iw, ix; | 
					
						
							|  |  |  | 	iv = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	iw = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 	if (iw < 0) { | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 		err_setstr(ValueError, "integer to the negative power"); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	ix = 1; | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 	while (--iw >= 0) { | 
					
						
							|  |  |  | 		long prev = ix; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		ix = ix * iv; | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 		if (iv == 0) | 
					
						
							|  |  |  | 			break; /* 0 to some power -- avoid ix / 0 */ | 
					
						
							|  |  |  | 		if (ix / iv != prev) | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 			return err_ovf("integer pow()"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return newintobject(ix); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_neg(v) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	register long a, x; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							|  |  |  | 	x = -a; | 
					
						
							| 
									
										
										
										
											1990-10-14 20:02:26 +00:00
										 |  |  | 	if (a < 0 && x < 0) | 
					
						
							| 
									
										
										
										
											1991-12-10 13:57:36 +00:00
										 |  |  | 		return err_ovf("integer negation"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	return newintobject(x); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int_pos(v) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	INCREF(v); | 
					
						
							|  |  |  | 	return (object *)v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00: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 12:05:32 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | int_nonzero(v) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return v->ob_ival != 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | static object * | 
					
						
							|  |  |  | int_invert(v) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return newintobject(~v->ob_ival); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_lshift(v, w) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-14 18:33:22 +00:00
										 |  |  | 	if (b < 0) { | 
					
						
							|  |  |  | 		err_setstr(ValueError, "negative shift count"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (a == 0 || b == 0) { | 
					
						
							|  |  |  | 		INCREF(v); | 
					
						
							|  |  |  | 		return (object *) v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (b >= 32) { | 
					
						
							|  |  |  | 		return newintobject(0L); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	a = (unsigned long)a << b; | 
					
						
							|  |  |  | 	return newintobject(a); | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_rshift(v, w) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-14 18:33:22 +00:00
										 |  |  | 	if (b < 0) { | 
					
						
							|  |  |  | 		err_setstr(ValueError, "negative shift count"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (a == 0 || b == 0) { | 
					
						
							|  |  |  | 		INCREF(v); | 
					
						
							|  |  |  | 		return (object *) v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (b >= 32) { | 
					
						
							|  |  |  | 		if (a < 0) | 
					
						
							|  |  |  | 			a = -1; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			a = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (a < 0) | 
					
						
							|  |  |  | 			a = ~( ~(unsigned long)a >> b ); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			a = (unsigned long)a >> b; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return newintobject(a); | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_and(v, w) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	return newintobject(a & b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_xor(v, w) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	return newintobject(a ^ b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_or(v, w) | 
					
						
							|  |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	intobject *w; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	register long a, b; | 
					
						
							|  |  |  | 	a = v->ob_ival; | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	b = w->ob_ival; | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	return newintobject(a | b); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | static object * | 
					
						
							|  |  |  | int_int(v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	INCREF(v); | 
					
						
							| 
									
										
										
										
											1993-04-07 14:06:14 +00:00
										 |  |  | 	return (object *)v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_long(v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	return newlongobject((v -> ob_ival)); | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_float(v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	return newfloatobject((double)(v -> ob_ival)); | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_oct(v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char buf[20]; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	long x = v -> ob_ival; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | 	if (x == 0) | 
					
						
							|  |  |  | 		strcpy(buf, "0"); | 
					
						
							|  |  |  | 	else if (x > 0) | 
					
						
							|  |  |  | 		sprintf(buf, "0%lo", x); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		sprintf(buf, "-0%lo", -x); | 
					
						
							|  |  |  | 	return newstringobject(buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static object * | 
					
						
							|  |  |  | int_hex(v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	intobject *v; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char buf[20]; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	long x = v -> ob_ival; | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | 	if (x >= 0) | 
					
						
							|  |  |  | 		sprintf(buf, "0x%lx", x); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		sprintf(buf, "-0x%lx", -x); | 
					
						
							|  |  |  | 	return newstringobject(buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static number_methods int_as_number = { | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 	int_add,	/*nb_add*/ | 
					
						
							|  |  |  | 	int_sub,	/*nb_subtract*/ | 
					
						
							|  |  |  | 	int_mul,	/*nb_multiply*/ | 
					
						
							|  |  |  | 	int_div,	/*nb_divide*/ | 
					
						
							| 
									
										
										
										
											1992-01-19 16:28:51 +00:00
										 |  |  | 	int_mod,	/*nb_remainder*/ | 
					
						
							| 
									
										
										
										
											1991-05-05 20:08:27 +00:00
										 |  |  | 	int_divmod,	/*nb_divmod*/ | 
					
						
							|  |  |  | 	int_pow,	/*nb_power*/ | 
					
						
							|  |  |  | 	int_neg,	/*nb_negative*/ | 
					
						
							|  |  |  | 	int_pos,	/*nb_positive*/ | 
					
						
							|  |  |  | 	int_abs,	/*nb_absolute*/ | 
					
						
							| 
									
										
										
										
											1991-05-14 12:05:32 +00:00
										 |  |  | 	int_nonzero,	/*nb_nonzero*/ | 
					
						
							| 
									
										
										
										
											1991-10-24 14:59:31 +00:00
										 |  |  | 	int_invert,	/*nb_invert*/ | 
					
						
							|  |  |  | 	int_lshift,	/*nb_lshift*/ | 
					
						
							|  |  |  | 	int_rshift,	/*nb_rshift*/ | 
					
						
							|  |  |  | 	int_and,	/*nb_and*/ | 
					
						
							|  |  |  | 	int_xor,	/*nb_xor*/ | 
					
						
							|  |  |  | 	int_or,		/*nb_or*/ | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | 	0,		/*nb_coerce*/ | 
					
						
							|  |  |  | 	int_int,	/*nb_int*/ | 
					
						
							|  |  |  | 	int_long,	/*nb_long*/ | 
					
						
							|  |  |  | 	int_float,	/*nb_float*/ | 
					
						
							|  |  |  | 	int_oct,	/*nb_oct*/ | 
					
						
							|  |  |  | 	int_hex,	/*nb_hex*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typeobject Inttype = { | 
					
						
							|  |  |  | 	OB_HEAD_INIT(&Typetype) | 
					
						
							|  |  |  | 	0, | 
					
						
							|  |  |  | 	"int", | 
					
						
							|  |  |  | 	sizeof(intobject), | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	int_dealloc,	/*tp_dealloc*/ | 
					
						
							|  |  |  | 	int_print,	/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_getattr*/ | 
					
						
							|  |  |  | 	0,		/*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	int_compare,	/*tp_compare*/ | 
					
						
							|  |  |  | 	int_repr,	/*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	&int_as_number,	/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1993-04-07 14:06:14 +00:00
										 |  |  | 	int_hash,	/*tp_hash*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; |