[Python-checkins] CVS: python/dist/src/Include pyport.h,2.44,2.45

Tim Peters tim_one@users.sourceforge.net
Fri, 08 Mar 2002 20:58:26 -0800


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv1957/python/Include

Modified Files:
	pyport.h 
Log Message:
SF bug 525705:  [2.2] underflow raise OverflowException.
Another year in the quest to out-guess random C behavior.

Added macros Py_ADJUST_ERANGE1(X) and Py_ADJUST_ERANGE2(X, Y).  The latter
is useful for functions with complex results.  Two corrections to errno-
after-libm-call are attempted:

1. If the platform set errno to ERANGE due to underflow, clear errno.
   Some unknown subset of libm versions and link options do this.  It's
   allowed by C89, but I never figured anyone would do it.

2. If the platform did not set errno but overflow occurred, force
   errno to ERANGE.  C89 required setting errno to ERANGE, but C99
   doesn't.  Some unknown subset of libm versions and link options do
   it the C99 way now.

Bugfix candidate, but hold off until some Linux people actually try it,
with and without -lieee.  I'll send a help plea to Python-Dev.


Index: pyport.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyport.h,v
retrieving revision 2.44
retrieving revision 2.45
diff -C2 -d -r2.44 -r2.45
*** pyport.h	2 Mar 2002 08:43:19 -0000	2.44
--- pyport.h	9 Mar 2002 04:58:24 -0000	2.45
***************
*** 288,291 ****
--- 288,326 ----
  	} while(0)
  
+ /* Py_ADJUST_ERANGE1(x)
+  * Py_ADJUST_ERANGE2(x, y)
+  * Set errno to 0 before calling a libm function, and invoke one of these
+  * macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful
+  * for functions returning complex results).  This makes two kinds of
+  * adjustments to errno:  (A) If it looks like the platform libm set
+  * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
+  * platform libm overflowed but didn't set errno, force errno to ERANGE.  In
+  * effect, we're trying to force a useful implementation of C89 errno
+  * behavior.
+  * Caution:
+  *    This isn't reliable.  See Py_OVERFLOWED comments.
+  *    X and Y may be evaluated more than once.
+  */
+ #define Py_ADJUST_ERANGE1(X)						\
+ 	do {								\
+ 		if (errno == 0) {					\
+ 			if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL)	\
+ 				errno = ERANGE;				\
+ 		}							\
+ 		else if (errno == ERANGE && (X) == 0.0)			\
+ 			errno = 0;					\
+ 	} while(0)
+ 
+ #define Py_ADJUST_ERANGE2(X, Y)						\
+ 	do {								\
+ 		if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL ||	\
+ 		    (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) {	\
+ 				if (errno == 0)				\
+ 					errno = ERANGE;			\
+ 		}							\
+ 		else if (errno == ERANGE)				\
+ 			errno = 0;					\
+ 	} while(0)
+ 
  /**************************************************************************
  Prototypes that are missing from the standard include files on some systems