4 #if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
8 /* Convert a possibly signed character to a nonnegative int */
9 /* XXX This assumes characters are 8 bits wide */
10 #ifdef __CHAR_UNSIGNED__
11 #define Py_CHARMASK(c) (c)
13 #define Py_CHARMASK(c) ((c) & 0xff)
16 /* strtol and strtoul, renamed to avoid conflicts */
24 /* Static overflow check values for bases 2 through 36.
25 * smallmax[base] is the largest unsigned long i such that
26 * i * base doesn't overflow unsigned long.
28 static unsigned long smallmax
[] = {
29 0, /* bases 0 and 1 are invalid */
68 /* maximum digits that can't ever overflow for bases 2 through 36,
69 * calculated by [int(math.floor(math.log(2**32, i))) for i in range(2, 37)].
70 * Note that this is pessimistic if sizeof(long) > 4.
72 static int digitlimit
[] = {
73 0, 0, 32, 20, 16, 13, 12, 11, 10, 10, /* 0 - 9 */
74 9, 9, 8, 8, 8, 8, 8, 7, 7, 7, /* 10 - 19 */
75 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, /* 20 - 29 */
76 6, 6, 6, 6, 6, 6, 6}; /* 30 - 36 */
80 ** This is a general purpose routine for converting
81 ** an ascii string to an integer in an arbitrary base.
82 ** Leading white space is ignored. If 'base' is zero
83 ** it looks for a leading 0, 0x or 0X to tell which
84 ** base. If these are absent it defaults to 10.
85 ** Base must be 0 or between 2 and 36 (inclusive).
86 ** If 'ptr' is non-NULL it will contain a pointer to
87 ** the end of the scan.
88 ** Errors due to bad pointers will probably result in
89 ** exceptions - we don't check for them.
92 PyOS_strtoul(register char *str
, char **ptr
, int base
)
94 register unsigned long result
= 0; /* return value of the function */
95 register int c
; /* current input character */
96 register int ovlimit
; /* required digits to overflow */
98 /* skip leading white space */
99 while (*str
&& isspace(Py_CHARMASK(*str
)))
102 /* check for leading 0 or 0x for auto-base or base 16 */
104 case 0: /* look for leading 0, 0x or 0X */
107 if (*str
== 'x' || *str
== 'X') {
118 case 16: /* skip leading 0x or 0X */
121 if (*str
== 'x' || *str
== 'X')
127 /* catch silly bases */
128 if (base
< 2 || base
> 36) {
134 /* skip leading zeroes */
138 /* base is guaranteed to be in [2, 36] at this point */
139 ovlimit
= digitlimit
[base
];
141 /* do the conversion until non-digit character encountered */
142 while ((c
= _PyLong_DigitValue
[Py_CHARMASK(*str
)]) < base
) {
143 if (ovlimit
> 0) /* no overflow check required */
144 result
= result
* base
+ c
;
145 else { /* requires overflow check */
146 register unsigned long temp_result
;
148 if (ovlimit
< 0) /* guaranteed overflow */
151 /* there could be an overflow */
152 /* check overflow just from shifting */
153 if (result
> smallmax
[base
])
158 /* check overflow from the digit's value */
159 temp_result
= result
+ c
;
160 if (temp_result
< result
)
163 result
= temp_result
;
170 /* set pointer to point to the last character scanned */
178 /* spool through remaining digit characters */
179 while (_PyLong_DigitValue
[Py_CHARMASK(*str
)] < base
)
184 return (unsigned long)-1;
188 PyOS_strtol(char *str
, char **ptr
, int base
)
193 while (*str
&& isspace(Py_CHARMASK(*str
)))
197 if (sign
== '+' || sign
== '-')
200 result
= (long) PyOS_strtoul(str
, ptr
, base
);
202 /* Signal overflow if the result appears negative,
203 except for the largest negative integer */
204 if (result
< 0 && !(sign
== '-' && result
== -result
)) {