floatobject.c 38.5 KB
Newer Older
Guido van Rossum's avatar
Guido van Rossum committed
1

Guido van Rossum's avatar
Guido van Rossum committed
2 3
/* Float object implementation */

Guido van Rossum's avatar
Guido van Rossum committed
4 5 6
/* XXX There should be overflow checks here, but it's hard to check
   for any kind of float exception without losing portability. */

7
#include "Python.h"
Guido van Rossum's avatar
Guido van Rossum committed
8

Guido van Rossum's avatar
Guido van Rossum committed
9
#include <ctype.h>
Guido van Rossum's avatar
Guido van Rossum committed
10

11
#if !defined(__STDC__)
12 13
extern double fmod(double, double);
extern double pow(double, double);
14 15
#endif

16 17
/* Special free list -- see comments for same code in intobject.c. */
#define BLOCK_SIZE	1000	/* 1K less typical malloc overhead */
18
#define BHEAD_SIZE	8	/* Enough for a 64-bit pointer */
19
#define N_FLOATOBJECTS	((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyFloatObject))
20 21 22 23 24 25 26 27 28 29 30

struct _floatblock {
	struct _floatblock *next;
	PyFloatObject objects[N_FLOATOBJECTS];
};

typedef struct _floatblock PyFloatBlock;

static PyFloatBlock *block_list = NULL;
static PyFloatObject *free_list = NULL;

31
static PyFloatObject *
Fred Drake's avatar
Fred Drake committed
32
fill_free_list(void)
33 34
{
	PyFloatObject *p, *q;
35 36
	/* XXX Float blocks escape the object heap. Use PyObject_MALLOC ??? */
	p = (PyFloatObject *) PyMem_MALLOC(sizeof(PyFloatBlock));
37
	if (p == NULL)
38
		return (PyFloatObject *) PyErr_NoMemory();
39 40 41
	((PyFloatBlock *)p)->next = block_list;
	block_list = (PyFloatBlock *)p;
	p = &((PyFloatBlock *)p)->objects[0];
42 43
	q = p + N_FLOATOBJECTS;
	while (--q > p)
44 45
		Py_Type(q) = (struct _typeobject *)(q-1);
	Py_Type(q) = NULL;
46 47 48
	return p + N_FLOATOBJECTS - 1;
}

49 50
PyObject *
PyFloat_FromDouble(double fval)
Guido van Rossum's avatar
Guido van Rossum committed
51
{
52 53 54 55 56
	register PyFloatObject *op;
	if (free_list == NULL) {
		if ((free_list = fill_free_list()) == NULL)
			return NULL;
	}
57
	/* Inline PyObject_New */
58
	op = free_list;
59
	free_list = (PyFloatObject *)Py_Type(op);
60
	PyObject_INIT(op, &PyFloat_Type);
Guido van Rossum's avatar
Guido van Rossum committed
61
	op->ob_fval = fval;
62
	return (PyObject *) op;
Guido van Rossum's avatar
Guido van Rossum committed
63 64
}

65
PyObject *
66
PyFloat_FromString(PyObject *v)
67
{
68
	const char *s, *last, *end;
69
	double x;
70
	char buffer[256]; /* for errors */
71
	char *s_buffer = NULL;
Martin v. Löwis's avatar
Martin v. Löwis committed
72
	Py_ssize_t len;
73
	PyObject *result = NULL;
74

75 76 77 78
	if (PyString_Check(v)) {
		s = PyString_AS_STRING(v);
		len = PyString_GET_SIZE(v);
	}
79
	else if (PyUnicode_Check(v)) {
80 81 82
		s_buffer = (char *)PyMem_MALLOC(PyUnicode_GET_SIZE(v)+1);
		if (s_buffer == NULL)
			return PyErr_NoMemory();
83
		if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v),
84
					    PyUnicode_GET_SIZE(v),
85
					    s_buffer,
86
					    NULL))
Neal Norwitz's avatar
Neal Norwitz committed
87
			goto error;
88
		s = s_buffer;
Martin v. Löwis's avatar
Martin v. Löwis committed
89
		len = strlen(s);
90
	}
91 92
	else if (PyObject_AsCharBuffer(v, &s, &len)) {
		PyErr_SetString(PyExc_TypeError,
93
				"float() argument must be a string or a number");
94
		return NULL;
95
	}
96

97
	last = s + len;
98 99
	while (*s && isspace(Py_CHARMASK(*s)))
		s++;
100
	if (*s == '\0') {
101
		PyErr_SetString(PyExc_ValueError, "empty string for float()");
102
		goto error;
103
	}
104 105 106 107 108 109 110
	/* We don't care about overflow or underflow.  If the platform supports
	 * them, infinities and signed zeroes (on underflow) are fine.
	 * However, strtod can return 0 for denormalized numbers, where atof
	 * does not.  So (alas!) we special-case a zero result.  Note that
	 * whether strtod sets errno on underflow is not defined, so we can't
	 * key off errno.
         */
111
	PyFPE_START_PROTECT("strtod", goto error)
112
	x = PyOS_ascii_strtod(s, (char **)&end);
113
	PyFPE_END_PROTECT(x)
114 115
	errno = 0;
	/* Believe it or not, Solaris 2.6 can move end *beyond* the null
116
	   byte at the end of the string, when the input is inf(inity). */
117 118
	if (end > last)
		end = last;
119
	if (end == s) {
120 121
		PyOS_snprintf(buffer, sizeof(buffer),
			      "invalid literal for float(): %.200s", s);
122
		PyErr_SetString(PyExc_ValueError, buffer);
123
		goto error;
124 125 126
	}
	/* Since end != s, the platform made *some* kind of sense out
	   of the input.  Trust it. */
127 128 129
	while (*end && isspace(Py_CHARMASK(*end)))
		end++;
	if (*end != '\0') {
130 131
		PyOS_snprintf(buffer, sizeof(buffer),
			      "invalid literal for float(): %.200s", s);
132
		PyErr_SetString(PyExc_ValueError, buffer);
133
		goto error;
134
	}
135
	else if (end != last) {
136 137
		PyErr_SetString(PyExc_ValueError,
				"null byte in argument for float()");
138
		goto error;
139
	}
140 141 142
	if (x == 0.0) {
		/* See above -- may have been strtod being anal
		   about denorms. */
143
		PyFPE_START_PROTECT("atof", goto error)
144
		x = PyOS_ascii_atof(s);
145
		PyFPE_END_PROTECT(x)
146
		errno = 0;    /* whether atof ever set errno is undefined */
147
	}
148 149 150 151 152
	result = PyFloat_FromDouble(x);
  error:
	if (s_buffer)
		PyMem_FREE(s_buffer);
	return result;
153 154
}

155
static void
Fred Drake's avatar
Fred Drake committed
156
float_dealloc(PyFloatObject *op)
Guido van Rossum's avatar
Guido van Rossum committed
157
{
158
	if (PyFloat_CheckExact(op)) {
159
		Py_Type(op) = (struct _typeobject *)free_list;
160 161 162
		free_list = op;
	}
	else
163
		Py_Type(op)->tp_free((PyObject *)op);
Guido van Rossum's avatar
Guido van Rossum committed
164 165
}

Guido van Rossum's avatar
Guido van Rossum committed
166
double
Fred Drake's avatar
Fred Drake committed
167
PyFloat_AsDouble(PyObject *op)
Guido van Rossum's avatar
Guido van Rossum committed
168
{
169 170
	PyNumberMethods *nb;
	PyFloatObject *fo;
171
	double val;
172

173 174
	if (op && PyFloat_Check(op))
		return PyFloat_AS_DOUBLE((PyFloatObject*) op);
175

176
	if (op == NULL) {
177
		PyErr_BadArgument();
Guido van Rossum's avatar
Guido van Rossum committed
178 179
		return -1;
	}
180

181
	if ((nb = Py_Type(op)->tp_as_number) == NULL || nb->nb_float == NULL) {
182 183 184 185
		PyErr_SetString(PyExc_TypeError, "a float is required");
		return -1;
	}

186
	fo = (PyFloatObject*) (*nb->nb_float) (op);
187 188
	if (fo == NULL)
		return -1;
189 190 191
	if (!PyFloat_Check(fo)) {
		PyErr_SetString(PyExc_TypeError,
				"nb_float should return float object");
192 193
		return -1;
	}
194

195 196
	val = PyFloat_AS_DOUBLE(fo);
	Py_DECREF(fo);
197

198
	return val;
Guido van Rossum's avatar
Guido van Rossum committed
199 200 201 202
}

/* Methods */

203
static void
204
format_double(char *buf, size_t buflen, double ob_fval, int precision)
Guido van Rossum's avatar
Guido van Rossum committed
205 206
{
	register char *cp;
207
	char format[32];
208
	/* Subroutine for float_repr, float_str, and others.
Guido van Rossum's avatar
Guido van Rossum committed
209 210 211 212
	   We want float numbers to be recognizable as such,
	   i.e., they should contain a decimal point or an exponent.
	   However, %g may print the number as an integer;
	   in such cases, we append ".0" to the string. */
213

214
	PyOS_snprintf(format, 32, "%%.%ig", precision);
215
	PyOS_ascii_formatd(buf, buflen, format, ob_fval);
Guido van Rossum's avatar
Guido van Rossum committed
216 217 218 219 220 221
	cp = buf;
	if (*cp == '-')
		cp++;
	for (; *cp != '\0'; cp++) {
		/* Any non-digit means it's not an integer;
		   this takes care of NAN and INF as well. */
222
		if (!isdigit(Py_CHARMASK(*cp)))
Guido van Rossum's avatar
Guido van Rossum committed
223 224 225 226 227 228 229 230 231
			break;
	}
	if (*cp == '\0') {
		*cp++ = '.';
		*cp++ = '0';
		*cp++ = '\0';
	}
}

232 233
static void
format_float(char *buf, size_t buflen, PyFloatObject *v, int precision)
234
{
235 236
	assert(PyFloat_Check(v));
	format_double(buf, buflen, PyFloat_AS_DOUBLE(v), precision);
237 238
}

239 240
/* Macro and helper that convert PyObject obj to a C double and store
   the value in dbl; this replaces the functionality of the coercion
241 242 243 244 245
   slot function.  If conversion to double raises an exception, obj is
   set to NULL, and the function invoking this macro returns NULL.  If
   obj is not of float, int or long type, Py_NotImplemented is incref'ed,
   stored in obj, and returned from the function invoking this macro.
*/
246 247 248 249 250 251 252
#define CONVERT_TO_DOUBLE(obj, dbl)			\
	if (PyFloat_Check(obj))				\
		dbl = PyFloat_AS_DOUBLE(obj);		\
	else if (convert_to_double(&(obj), &(dbl)) < 0)	\
		return obj;

static int
253
convert_to_double(PyObject **v, double *dbl)
254 255
{
	register PyObject *obj = *v;
256

257
	if (PyLong_Check(obj)) {
258
		*dbl = PyLong_AsDouble(obj);
259 260 261 262
		if (*dbl == -1.0 && PyErr_Occurred()) {
			*v = NULL;
			return -1;
		}
263 264 265 266 267 268 269 270 271
	}
	else {
		Py_INCREF(Py_NotImplemented);
		*v = Py_NotImplemented;
		return -1;
	}
	return 0;
}

272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
/* Precisions used by repr() and str(), respectively.

   The repr() precision (17 significant decimal digits) is the minimal number
   that is guaranteed to have enough precision so that if the number is read
   back in the exact same binary value is recreated.  This is true for IEEE
   floating point by design, and also happens to work for all other modern
   hardware.

   The str() precision is chosen so that in most cases, the rounding noise
   created by various operations is suppressed, while giving plenty of
   precision for practical use.

*/

#define PREC_REPR	17
#define PREC_STR	12

289
static PyObject *
Fred Drake's avatar
Fred Drake committed
290
float_repr(PyFloatObject *v)
Guido van Rossum's avatar
Guido van Rossum committed
291 292
{
	char buf[100];
293
	format_float(buf, sizeof(buf), v, PREC_REPR);
294
	return PyUnicode_FromString(buf);
295 296 297
}

static PyObject *
Fred Drake's avatar
Fred Drake committed
298
float_str(PyFloatObject *v)
299 300
{
	char buf[100];
301
	format_float(buf, sizeof(buf), v, PREC_STR);
302
	return PyUnicode_FromString(buf);
Guido van Rossum's avatar
Guido van Rossum committed
303 304
}

305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
/* Comparison is pretty much a nightmare.  When comparing float to float,
 * we do it as straightforwardly (and long-windedly) as conceivable, so
 * that, e.g., Python x == y delivers the same result as the platform
 * C x == y when x and/or y is a NaN.
 * When mixing float with an integer type, there's no good *uniform* approach.
 * Converting the double to an integer obviously doesn't work, since we
 * may lose info from fractional bits.  Converting the integer to a double
 * also has two failure modes:  (1) a long int may trigger overflow (too
 * large to fit in the dynamic range of a C double); (2) even a C long may have
 * more bits than fit in a C double (e.g., on a a 64-bit box long may have
 * 63 bits of precision, but a C double probably has only 53), and then
 * we can falsely claim equality when low-order integer bits are lost by
 * coercion to double.  So this part is painful too.
 */

320 321 322 323 324 325
static PyObject*
float_richcompare(PyObject *v, PyObject *w, int op)
{
	double i, j;
	int r = 0;

326 327 328 329 330 331 332 333 334
	assert(PyFloat_Check(v));
	i = PyFloat_AS_DOUBLE(v);

	/* Switch on the type of w.  Set i and j to doubles to be compared,
	 * and op to the richcomp to use.
	 */
	if (PyFloat_Check(w))
		j = PyFloat_AS_DOUBLE(w);

335
	else if (!Py_IS_FINITE(i)) {
336
		if (PyInt_Check(w) || PyLong_Check(w))
337 338 339
			/* If i is an infinity, its magnitude exceeds any
			 * finite integer, so it doesn't matter which int we
			 * compare i with.  If i is a NaN, similarly.
340 341 342 343 344
			 */
			j = 0.0;
		else
			goto Unimplemented;
	}
345

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
	else if (PyLong_Check(w)) {
		int vsign = i == 0.0 ? 0 : i < 0.0 ? -1 : 1;
		int wsign = _PyLong_Sign(w);
		size_t nbits;
		int exponent;

		if (vsign != wsign) {
			/* Magnitudes are irrelevant -- the signs alone
			 * determine the outcome.
			 */
			i = (double)vsign;
			j = (double)wsign;
			goto Compare;
		}
		/* The signs are the same. */
		/* Convert w to a double if it fits.  In particular, 0 fits. */
		nbits = _PyLong_NumBits(w);
		if (nbits == (size_t)-1 && PyErr_Occurred()) {
			/* This long is so large that size_t isn't big enough
365 366 367 368
			 * to hold the # of bits.  Replace with little doubles
			 * that give the same outcome -- w is so large that
			 * its magnitude must exceed the magnitude of any
			 * finite float.
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
			 */
			PyErr_Clear();
			i = (double)vsign;
			assert(wsign != 0);
			j = wsign * 2.0;
			goto Compare;
		}
		if (nbits <= 48) {
			j = PyLong_AsDouble(w);
			/* It's impossible that <= 48 bits overflowed. */
			assert(j != -1.0 || ! PyErr_Occurred());
			goto Compare;
		}
		assert(wsign != 0); /* else nbits was 0 */
		assert(vsign != 0); /* if vsign were 0, then since wsign is
		                     * not 0, we would have taken the
		                     * vsign != wsign branch at the start */
		/* We want to work with non-negative numbers. */
		if (vsign < 0) {
			/* "Multiply both sides" by -1; this also swaps the
			 * comparator.
			 */
			i = -i;
			op = _Py_SwappedOp[op];
		}
		assert(i > 0.0);
395
		(void) frexp(i, &exponent);
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
		/* exponent is the # of bits in v before the radix point;
		 * we know that nbits (the # of bits in w) > 48 at this point
		 */
		if (exponent < 0 || (size_t)exponent < nbits) {
			i = 1.0;
			j = 2.0;
			goto Compare;
		}
		if ((size_t)exponent > nbits) {
			i = 2.0;
			j = 1.0;
			goto Compare;
		}
		/* v and w have the same number of bits before the radix
		 * point.  Construct two longs that have the same comparison
		 * outcome.
		 */
		{
			double fracpart;
			double intpart;
			PyObject *result = NULL;
			PyObject *one = NULL;
			PyObject *vv = NULL;
			PyObject *ww = w;

			if (wsign < 0) {
				ww = PyNumber_Negative(w);
				if (ww == NULL)
					goto Error;
			}
			else
				Py_INCREF(ww);

			fracpart = modf(i, &intpart);
			vv = PyLong_FromDouble(intpart);
			if (vv == NULL)
				goto Error;

			if (fracpart != 0.0) {
				/* Shift left, and or a 1 bit into vv
				 * to represent the lost fraction.
				 */
				PyObject *temp;

				one = PyInt_FromLong(1);
				if (one == NULL)
					goto Error;

				temp = PyNumber_Lshift(ww, one);
				if (temp == NULL)
					goto Error;
				Py_DECREF(ww);
				ww = temp;

				temp = PyNumber_Lshift(vv, one);
				if (temp == NULL)
					goto Error;
				Py_DECREF(vv);
				vv = temp;

				temp = PyNumber_Or(vv, one);
				if (temp == NULL)
					goto Error;
				Py_DECREF(vv);
				vv = temp;
			}

			r = PyObject_RichCompareBool(vv, ww, op);
			if (r < 0)
				goto Error;
			result = PyBool_FromLong(r);
 		 Error:
 		 	Py_XDECREF(vv);
 		 	Py_XDECREF(ww);
 		 	Py_XDECREF(one);
 		 	return result;
		}
	} /* else if (PyLong_Check(w)) */

	else	/* w isn't float, int, or long */
		goto Unimplemented;

 Compare:
479 480 481
	PyFPE_START_PROTECT("richcompare", return NULL)
	switch (op) {
	case Py_EQ:
482
		r = i == j;
483 484
		break;
	case Py_NE:
485
		r = i != j;
486 487
		break;
	case Py_LE:
488
		r = i <= j;
489 490
		break;
	case Py_GE:
491
		r = i >= j;
492 493
		break;
	case Py_LT:
494
		r = i < j;
495 496
		break;
	case Py_GT:
497
		r = i > j;
498 499
		break;
	}
500
	PyFPE_END_PROTECT(r)
501
	return PyBool_FromLong(r);
502 503 504 505

 Unimplemented:
	Py_INCREF(Py_NotImplemented);
	return Py_NotImplemented;
506 507
}

508
static long
Fred Drake's avatar
Fred Drake committed
509
float_hash(PyFloatObject *v)
510
{
511
	return _Py_HashDouble(v->ob_fval);
512 513
}

514
static PyObject *
515
float_add(PyObject *v, PyObject *w)
Guido van Rossum's avatar
Guido van Rossum committed
516
{
517 518 519
	double a,b;
	CONVERT_TO_DOUBLE(v, a);
	CONVERT_TO_DOUBLE(w, b);
520
	PyFPE_START_PROTECT("add", return 0)
521 522 523
	a = a + b;
	PyFPE_END_PROTECT(a)
	return PyFloat_FromDouble(a);
Guido van Rossum's avatar
Guido van Rossum committed
524 525
}

526
static PyObject *
527
float_sub(PyObject *v, PyObject *w)
Guido van Rossum's avatar
Guido van Rossum committed
528
{
529 530 531
	double a,b;
	CONVERT_TO_DOUBLE(v, a);
	CONVERT_TO_DOUBLE(w, b);
532
	PyFPE_START_PROTECT("subtract", return 0)
533 534 535
	a = a - b;
	PyFPE_END_PROTECT(a)
	return PyFloat_FromDouble(a);
Guido van Rossum's avatar
Guido van Rossum committed
536 537
}

538
static PyObject *
539
float_mul(PyObject *v, PyObject *w)
Guido van Rossum's avatar
Guido van Rossum committed
540
{
541 542 543
	double a,b;
	CONVERT_TO_DOUBLE(v, a);
	CONVERT_TO_DOUBLE(w, b);
544
	PyFPE_START_PROTECT("multiply", return 0)
545 546 547
	a = a * b;
	PyFPE_END_PROTECT(a)
	return PyFloat_FromDouble(a);
Guido van Rossum's avatar
Guido van Rossum committed
548 549
}

550
static PyObject *
551
float_div(PyObject *v, PyObject *w)
Guido van Rossum's avatar
Guido van Rossum committed
552
{
553 554 555 556
	double a,b;
	CONVERT_TO_DOUBLE(v, a);
	CONVERT_TO_DOUBLE(w, b);
	if (b == 0.0) {
557
		PyErr_SetString(PyExc_ZeroDivisionError, "float division");
Guido van Rossum's avatar
Guido van Rossum committed
558 559
		return NULL;
	}
560
	PyFPE_START_PROTECT("divide", return 0)
561 562 563
	a = a / b;
	PyFPE_END_PROTECT(a)
	return PyFloat_FromDouble(a);
Guido van Rossum's avatar
Guido van Rossum committed
564 565
}

566
static PyObject *
567
float_rem(PyObject *v, PyObject *w)
Guido van Rossum's avatar
Guido van Rossum committed
568
{
569
	double vx, wx;
Guido van Rossum's avatar
Guido van Rossum committed
570
	double mod;
571 572
 	CONVERT_TO_DOUBLE(v, vx);
 	CONVERT_TO_DOUBLE(w, wx);
Guido van Rossum's avatar
Guido van Rossum committed
573
	if (wx == 0.0) {
574
		PyErr_SetString(PyExc_ZeroDivisionError, "float modulo");
Guido van Rossum's avatar
Guido van Rossum committed
575 576
		return NULL;
	}
577
	PyFPE_START_PROTECT("modulo", return 0)
578
	mod = fmod(vx, wx);
Guido van Rossum's avatar
Guido van Rossum committed
579 580 581
	/* note: checking mod*wx < 0 is incorrect -- underflows to
	   0 if wx < sqrt(smallest nonzero double) */
	if (mod && ((wx < 0) != (mod < 0))) {
582 583
		mod += wx;
	}
584
	PyFPE_END_PROTECT(mod)
585
	return PyFloat_FromDouble(mod);
Guido van Rossum's avatar
Guido van Rossum committed
586 587
}

588
static PyObject *
589
float_divmod(PyObject *v, PyObject *w)
590
{
591
	double vx, wx;
Guido van Rossum's avatar
Guido van Rossum committed
592
	double div, mod, floordiv;
593 594
 	CONVERT_TO_DOUBLE(v, vx);
 	CONVERT_TO_DOUBLE(w, wx);
595
	if (wx == 0.0) {
596
		PyErr_SetString(PyExc_ZeroDivisionError, "float divmod()");
597 598
		return NULL;
	}
599
	PyFPE_START_PROTECT("divmod", return 0)
600
	mod = fmod(vx, wx);
601
	/* fmod is typically exact, so vx-mod is *mathematically* an
Guido van Rossum's avatar
Guido van Rossum committed
602 603 604 605 606
	   exact multiple of wx.  But this is fp arithmetic, and fp
	   vx - mod is an approximation; the result is that div may
	   not be an exact integral value after the division, although
	   it will always be very close to one.
	*/
607
	div = (vx - mod) / wx;
608 609 610 611 612 613 614 615 616 617 618 619
	if (mod) {
		/* ensure the remainder has the same sign as the denominator */
		if ((wx < 0) != (mod < 0)) {
			mod += wx;
			div -= 1.0;
		}
	}
	else {
		/* the remainder is zero, and in the presence of signed zeroes
		   fmod returns different results across platforms; ensure
		   it has the same sign as the denominator; we'd like to do
		   "mod = wx * 0.0", but that may get optimized away */
620
		mod *= mod;  /* hide "mod = +0" from optimizer */
621 622
		if (wx < 0.0)
			mod = -mod;
623
	}
Guido van Rossum's avatar
Guido van Rossum committed
624
	/* snap quotient to nearest integral value */
625 626 627 628 629 630 631 632 633 634 635
	if (div) {
		floordiv = floor(div);
		if (div - floordiv > 0.5)
			floordiv += 1.0;
	}
	else {
		/* div is zero - get the same sign as the true quotient */
		div *= div;	/* hide "div = +0" from optimizers */
		floordiv = div * vx / wx; /* zero w/ sign of vx/wx */
	}
	PyFPE_END_PROTECT(floordiv)
Guido van Rossum's avatar
Guido van Rossum committed
636
	return Py_BuildValue("(dd)", floordiv, mod);
637 638
}

639 640 641 642 643 644
static PyObject *
float_floor_div(PyObject *v, PyObject *w)
{
	PyObject *t, *r;

	t = float_divmod(v, w);
645 646 647 648 649 650 651
	if (t == NULL || t == Py_NotImplemented)
		return t;
	assert(PyTuple_CheckExact(t));
	r = PyTuple_GET_ITEM(t, 0);
	Py_INCREF(r);
	Py_DECREF(t);
	return r;
652 653
}

654
static PyObject *
655
float_pow(PyObject *v, PyObject *w, PyObject *z)
Guido van Rossum's avatar
Guido van Rossum committed
656 657
{
	double iv, iw, ix;
658 659

	if ((PyObject *)z != Py_None) {
660
		PyErr_SetString(PyExc_TypeError, "pow() 3rd argument not "
661
			"allowed unless all arguments are integers");
662 663 664
		return NULL;
	}

665 666
	CONVERT_TO_DOUBLE(v, iv);
	CONVERT_TO_DOUBLE(w, iw);
667 668

	/* Sort out special cases here instead of relying on pow() */
669
	if (iw == 0) { 		/* v**0 is 1, even 0**0 */
670
		return PyFloat_FromDouble(1.0);
671
	}
672
	if (iv == 0.0) {  /* 0**w is error if w<0, else 1 */
673 674
		if (iw < 0.0) {
			PyErr_SetString(PyExc_ZeroDivisionError,
Fred Drake's avatar
Fred Drake committed
675
					"0.0 cannot be raised to a negative power");
676 677 678 679
			return NULL;
		}
		return PyFloat_FromDouble(0.0);
	}
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
	if (iv < 0.0) {
		/* Whether this is an error is a mess, and bumps into libm
		 * bugs so we have to figure it out ourselves.
		 */
		if (iw != floor(iw)) {
			PyErr_SetString(PyExc_ValueError, "negative number "
				"cannot be raised to a fractional power");
			return NULL;
		}
		/* iw is an exact integer, albeit perhaps a very large one.
		 * -1 raised to an exact integer should never be exceptional.
		 * Alas, some libms (chiefly glibc as of early 2003) return
		 * NaN and set EDOM on pow(-1, large_int) if the int doesn't
		 * happen to be representable in a *C* integer.  That's a
		 * bug; we let that slide in math.pow() (which currently
		 * reflects all platform accidents), but not for Python's **.
		 */
697
		 if (iv == -1.0 && Py_IS_FINITE(iw)) {
698 699 700 701 702 703 704 705 706 707 708 709
		 	/* Return 1 if iw is even, -1 if iw is odd; there's
		 	 * no guarantee that any C integral type is big
		 	 * enough to hold iw, so we have to check this
		 	 * indirectly.
		 	 */
		 	ix = floor(iw * 0.5) * 2.0;
			return PyFloat_FromDouble(ix == iw ? 1.0 : -1.0);
		}
		/* Else iv != -1.0, and overflow or underflow are possible.
		 * Unless we're to write pow() ourselves, we have to trust
		 * the platform to do this correctly.
		 */
Guido van Rossum's avatar
Guido van Rossum committed
710
	}
711 712 713 714
	errno = 0;
	PyFPE_START_PROTECT("pow", return NULL)
	ix = pow(iv, iw);
	PyFPE_END_PROTECT(ix)
715
	Py_ADJUST_ERANGE1(ix);
Guido van Rossum's avatar
Guido van Rossum committed
716
	if (errno != 0) {
717 718 719 720 721
		/* We don't expect any errno value other than ERANGE, but
		 * the range of libm bugs appears unbounded.
		 */
		PyErr_SetFromErrno(errno == ERANGE ? PyExc_OverflowError :
						     PyExc_ValueError);
Guido van Rossum's avatar
Guido van Rossum committed
722
		return NULL;
Guido van Rossum's avatar
Guido van Rossum committed
723
	}
724
	return PyFloat_FromDouble(ix);
Guido van Rossum's avatar
Guido van Rossum committed
725 726
}

727
static PyObject *
Fred Drake's avatar
Fred Drake committed
728
float_neg(PyFloatObject *v)
Guido van Rossum's avatar
Guido van Rossum committed
729
{
730
	return PyFloat_FromDouble(-v->ob_fval);
Guido van Rossum's avatar
Guido van Rossum committed
731 732
}

733
static PyObject *
Fred Drake's avatar
Fred Drake committed
734
float_abs(PyFloatObject *v)
735
{
736
	return PyFloat_FromDouble(fabs(v->ob_fval));
Guido van Rossum's avatar
Guido van Rossum committed
737 738
}

Guido van Rossum's avatar
Guido van Rossum committed
739
static int
740
float_bool(PyFloatObject *v)
Guido van Rossum's avatar
Guido van Rossum committed
741 742 743 744
{
	return v->ob_fval != 0.0;
}

745
static PyObject *
746
float_trunc(PyObject *v)
747
{
748
	double x = PyFloat_AsDouble(v);
749 750 751
	double wholepart;	/* integral portion of x, rounded toward 0 */

	(void)modf(x, &wholepart);
752 753 754 755 756 757 758 759 760 761 762 763 764 765
	/* Try to get out cheap if this fits in a Python int.  The attempt
	 * to cast to long must be protected, as C doesn't define what
	 * happens if the double is too big to fit in a long.  Some rare
	 * systems raise an exception then (RISCOS was mentioned as one,
	 * and someone using a non-default option on Sun also bumped into
	 * that).  Note that checking for >= and <= LONG_{MIN,MAX} would
	 * still be vulnerable:  if a long has more bits of precision than
	 * a double, casting MIN/MAX to double may yield an approximation,
	 * and if that's rounded up, then, e.g., wholepart=LONG_MAX+1 would
	 * yield true from the C expression wholepart<=LONG_MAX, despite
	 * that wholepart is actually greater than LONG_MAX.
	 */
	if (LONG_MIN < wholepart && wholepart < LONG_MAX) {
		const long aslong = (long)wholepart;
766
		return PyInt_FromLong(aslong);
767 768
	}
	return PyLong_FromDouble(wholepart);
769 770
}

771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
static PyObject *
float_round(PyObject *v, PyObject *args)
{
#define UNDEF_NDIGITS (-0x7fffffff) /* Unlikely ndigits value */
	double x;
	double f;
	double flr, cil;
	double rounded;
	int i;
	int ndigits = UNDEF_NDIGITS;

	if (!PyArg_ParseTuple(args, "|i", &ndigits))
		return NULL;

	x = PyFloat_AsDouble(v);

	if (ndigits != UNDEF_NDIGITS) {
		f = 1.0;
		i = abs(ndigits);
		while  (--i >= 0)
			f = f*10.0;
		if (ndigits < 0)
			x /= f;
		else
			x *= f;
	}

	flr = floor(x);
	cil = ceil(x);

	if (x-flr > 0.5)
		rounded = cil;
	else if (x-flr == 0.5) 
		rounded = fmod(flr, 2) == 0 ? flr : cil;
	else
		rounded = flr;

	if (ndigits != UNDEF_NDIGITS) {
		if (ndigits < 0)
			rounded *= f;
		else
			rounded /= f;
		return PyFloat_FromDouble(rounded);
	}

	return PyLong_FromDouble(rounded);
#undef UNDEF_NDIGITS
}

820
static PyObject *
Fred Drake's avatar
Fred Drake committed
821
float_float(PyObject *v)
822
{
823 824 825 826
	if (PyFloat_CheckExact(v))
		Py_INCREF(v);
	else
		v = PyFloat_FromDouble(((PyFloatObject *)v)->ob_fval);
827 828 829 830
	return v;
}


Jeremy Hylton's avatar
Jeremy Hylton committed
831
static PyObject *
832 833
float_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);

834 835 836 837
static PyObject *
float_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
	PyObject *x = Py_False; /* Integer zero */
838
	static char *kwlist[] = {"x", 0};
839

840 841
	if (type != &PyFloat_Type)
		return float_subtype_new(type, args, kwds); /* Wimp out */
842 843 844
	if (!PyArg_ParseTupleAndKeywords(args, kwds, "|O:float", kwlist, &x))
		return NULL;
	if (PyString_Check(x))
845
		return PyFloat_FromString(x);
846 847 848
	return PyNumber_Float(x);
}

849 850 851 852 853 854 855 856
/* Wimpy, slow approach to tp_new calls for subtypes of float:
   first create a regular float from whatever arguments we got,
   then allocate a subtype instance and initialize its ob_fval
   from the regular float.  The regular float is then thrown away.
*/
static PyObject *
float_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
857
	PyObject *tmp, *newobj;
858 859 860 861 862

	assert(PyType_IsSubtype(type, &PyFloat_Type));
	tmp = float_new(&PyFloat_Type, args, kwds);
	if (tmp == NULL)
		return NULL;
863
	assert(PyFloat_CheckExact(tmp));
864 865
	newobj = type->tp_alloc(type, 0);
	if (newobj == NULL) {
866
		Py_DECREF(tmp);
867
		return NULL;
868
	}
869
	((PyFloatObject *)newobj)->ob_fval = ((PyFloatObject *)tmp)->ob_fval;
870
	Py_DECREF(tmp);
871
	return newobj;
872 873
}

874 875 876 877 878 879
static PyObject *
float_getnewargs(PyFloatObject *v)
{
	return Py_BuildValue("(d)", v->ob_fval);
}

Michael W. Hudson's avatar
Michael W. Hudson committed
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
/* this is for the benefit of the pack/unpack routines below */

typedef enum {
	unknown_format, ieee_big_endian_format, ieee_little_endian_format
} float_format_type;

static float_format_type double_format, float_format;
static float_format_type detected_double_format, detected_float_format;

static PyObject *
float_getformat(PyTypeObject *v, PyObject* arg)
{
	char* s;
	float_format_type r;

895 896 897 898 899
	if (PyUnicode_Check(arg)) {
		arg = _PyUnicode_AsDefaultEncodedString(arg, NULL);
		if (arg == NULL)
			return NULL;
	}
Michael W. Hudson's avatar
Michael W. Hudson committed
900 901 902
	if (!PyString_Check(arg)) {
		PyErr_Format(PyExc_TypeError,
	     "__getformat__() argument must be string, not %.500s",
903
			     Py_Type(arg)->tp_name);
Michael W. Hudson's avatar
Michael W. Hudson committed
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
		return NULL;
	}
	s = PyString_AS_STRING(arg);
	if (strcmp(s, "double") == 0) {
		r = double_format;
	}
	else if (strcmp(s, "float") == 0) {
		r = float_format;
	}
	else {
		PyErr_SetString(PyExc_ValueError,
				"__getformat__() argument 1 must be "
				"'double' or 'float'");
		return NULL;
	}
	
	switch (r) {
	case unknown_format:
922
		return PyUnicode_FromString("unknown");
Michael W. Hudson's avatar
Michael W. Hudson committed
923
	case ieee_little_endian_format:
924
		return PyUnicode_FromString("IEEE, little-endian");
Michael W. Hudson's avatar
Michael W. Hudson committed
925
	case ieee_big_endian_format:
926
		return PyUnicode_FromString("IEEE, big-endian");
Michael W. Hudson's avatar
Michael W. Hudson committed
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
	default:
		Py_FatalError("insane float_format or double_format");
		return NULL;
	}
}

PyDoc_STRVAR(float_getformat_doc,
"float.__getformat__(typestr) -> string\n"
"\n"
"You probably don't want to use this function.  It exists mainly to be\n"
"used in Python's test suite.\n"
"\n"
"typestr must be 'double' or 'float'.  This function returns whichever of\n"
"'unknown', 'IEEE, big-endian' or 'IEEE, little-endian' best describes the\n"
"format of floating point numbers used by the C type named by typestr.");

static PyObject *
float_setformat(PyTypeObject *v, PyObject* args)
{
	char* typestr;
	char* format;
	float_format_type f;
	float_format_type detected;
	float_format_type *p;

	if (!PyArg_ParseTuple(args, "ss:__setformat__", &typestr, &format))
		return NULL;

	if (strcmp(typestr, "double") == 0) {
		p = &double_format;
		detected = detected_double_format;
	}
	else if (strcmp(typestr, "float") == 0) {
		p = &float_format;
		detected = detected_float_format;
	}
	else {
		PyErr_SetString(PyExc_ValueError,
				"__setformat__() argument 1 must "
				"be 'double' or 'float'");
		return NULL;
	}
	
	if (strcmp(format, "unknown") == 0) {
		f = unknown_format;
	}
	else if (strcmp(format, "IEEE, little-endian") == 0) {
		f = ieee_little_endian_format;
	}
	else if (strcmp(format, "IEEE, big-endian") == 0) {
		f = ieee_big_endian_format;
	}
	else {
		PyErr_SetString(PyExc_ValueError,
				"__setformat__() argument 2 must be "
				"'unknown', 'IEEE, little-endian' or "
				"'IEEE, big-endian'");
		return NULL;

	}

	if (f != unknown_format && f != detected) {
		PyErr_Format(PyExc_ValueError,
			     "can only set %s format to 'unknown' or the "
			     "detected platform value", typestr);
		return NULL;
	}

	*p = f;
	Py_RETURN_NONE;
}

PyDoc_STRVAR(float_setformat_doc,
"float.__setformat__(typestr, fmt) -> None\n"
"\n"
"You probably don't want to use this function.  It exists mainly to be\n"
"used in Python's test suite.\n"
"\n"
"typestr must be 'double' or 'float'.  fmt must be one of 'unknown',\n"
"'IEEE, big-endian' or 'IEEE, little-endian', and in addition can only be\n"
"one of the latter two if it appears to match the underlying C reality.\n"
"\n"
"Overrides the automatic determination of C-level floating point type.\n"
"This affects how floats are converted to and from binary strings.");

1012 1013 1014 1015 1016 1017
static PyObject *
float_getzero(PyObject *v, void *closure)
{
	return PyFloat_FromDouble(0.0);
}

1018
static PyMethodDef float_methods[] = {
1019 1020
  	{"conjugate",	(PyCFunction)float_float,	METH_NOARGS,
	 "Returns self, the complex conjugate of any float."},
1021 1022 1023 1024 1025
	{"__trunc__",	(PyCFunction)float_trunc, METH_NOARGS,
         "Returns the Integral closest to x between 0 and x."},
	{"__round__",	(PyCFunction)float_round, METH_VARARGS,
         "Returns the Integral closest to x, rounding half toward even.\n"
         "When an argument is passed, works like built-in round(x, ndigits)."},
1026
	{"__getnewargs__",	(PyCFunction)float_getnewargs,	METH_NOARGS},
Michael W. Hudson's avatar
Michael W. Hudson committed
1027 1028 1029 1030
	{"__getformat__",	(PyCFunction)float_getformat,	
	 METH_O|METH_CLASS,		float_getformat_doc},
	{"__setformat__",	(PyCFunction)float_setformat,	
	 METH_VARARGS|METH_CLASS,	float_setformat_doc},
1031 1032 1033
	{NULL,		NULL}		/* sentinel */
};

1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
static PyGetSetDef float_getset[] = {
    {"real", 
     (getter)float_float, (setter)NULL,
     "the real part of a complex number",
     NULL},
    {"imag", 
     (getter)float_getzero, (setter)NULL,
     "the imaginary part of a complex number",
     NULL},
    {NULL}  /* Sentinel */
};

1046
PyDoc_STRVAR(float_doc,
1047 1048
"float(x) -> floating point number\n\
\n\
1049
Convert a string or number to a floating point number, if possible.");
1050 1051


1052
static PyNumberMethods float_as_number = {
1053 1054 1055 1056 1057 1058
	float_add, 	/*nb_add*/
	float_sub, 	/*nb_subtract*/
	float_mul, 	/*nb_multiply*/
	float_rem, 	/*nb_remainder*/
	float_divmod, 	/*nb_divmod*/
	float_pow, 	/*nb_power*/
1059
	(unaryfunc)float_neg, /*nb_negative*/
1060
	(unaryfunc)float_float, /*nb_positive*/
1061
	(unaryfunc)float_abs, /*nb_absolute*/
1062
	(inquiry)float_bool, /*nb_bool*/
1063 1064 1065 1066 1067 1068
	0,		/*nb_invert*/
	0,		/*nb_lshift*/
	0,		/*nb_rshift*/
	0,		/*nb_and*/
	0,		/*nb_xor*/
	0,		/*nb_or*/
1069
	(coercion)0,	/*nb_coerce*/
1070 1071
	float_trunc,	/*nb_int*/
	float_trunc,	/*nb_long*/
1072
	float_float,	/*nb_float*/
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
	0,		/* nb_oct */
	0,		/* nb_hex */
	0,		/* nb_inplace_add */
	0,		/* nb_inplace_subtract */
	0,		/* nb_inplace_multiply */
	0,		/* nb_inplace_remainder */
	0, 		/* nb_inplace_power */
	0,		/* nb_inplace_lshift */
	0,		/* nb_inplace_rshift */
	0,		/* nb_inplace_and */
	0,		/* nb_inplace_xor */
	0,		/* nb_inplace_or */
1085
	float_floor_div, /* nb_floor_divide */
1086 1087 1088
	float_div,	/* nb_true_divide */
	0,		/* nb_inplace_floor_divide */
	0,		/* nb_inplace_true_divide */
Guido van Rossum's avatar
Guido van Rossum committed
1089 1090
};

1091
PyTypeObject PyFloat_Type = {
1092
	PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossum's avatar
Guido van Rossum committed
1093
	"float",
1094
	sizeof(PyFloatObject),
Guido van Rossum's avatar
Guido van Rossum committed
1095
	0,
1096
	(destructor)float_dealloc,		/* tp_dealloc */
1097
	0,			 		/* tp_print */
1098 1099
	0,					/* tp_getattr */
	0,					/* tp_setattr */
1100
	0,			 		/* tp_compare */
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
	(reprfunc)float_repr,			/* tp_repr */
	&float_as_number,			/* tp_as_number */
	0,					/* tp_as_sequence */
	0,					/* tp_as_mapping */
	(hashfunc)float_hash,			/* tp_hash */
	0,					/* tp_call */
	(reprfunc)float_str,			/* tp_str */
	PyObject_GenericGetAttr,		/* tp_getattro */
	0,					/* tp_setattro */
	0,					/* tp_as_buffer */
1111
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
1112 1113 1114
	float_doc,				/* tp_doc */
 	0,					/* tp_traverse */
	0,					/* tp_clear */
1115
	float_richcompare,			/* tp_richcompare */
1116 1117 1118
	0,					/* tp_weaklistoffset */
	0,					/* tp_iter */
	0,					/* tp_iternext */
1119
	float_methods,				/* tp_methods */
1120
	0,					/* tp_members */
1121
	float_getset,				/* tp_getset */
1122 1123 1124 1125 1126 1127 1128 1129
	0,					/* tp_base */
	0,					/* tp_dict */
	0,					/* tp_descr_get */
	0,					/* tp_descr_set */
	0,					/* tp_dictoffset */
	0,					/* tp_init */
	0,					/* tp_alloc */
	float_new,				/* tp_new */
Guido van Rossum's avatar
Guido van Rossum committed
1130
};
1131

Michael W. Hudson's avatar
Michael W. Hudson committed
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
void
_PyFloat_Init(void)
{
	/* We attempt to determine if this machine is using IEEE
	   floating point formats by peering at the bits of some
	   carefully chosen values.  If it looks like we are on an
	   IEEE platform, the float packing/unpacking routines can
	   just copy bits, if not they resort to arithmetic & shifts
	   and masks.  The shifts & masks approach works on all finite
	   values, but what happens to infinities, NaNs and signed
	   zeroes on packing is an accident, and attempting to unpack
	   a NaN or an infinity will raise an exception.

	   Note that if we're on some whacked-out platform which uses
	   IEEE formats but isn't strictly little-endian or big-
	   endian, we will fall back to the portable shifts & masks
	   method. */

#if SIZEOF_DOUBLE == 8
	{
		double x = 9006104071832581.0;
		if (memcmp(&x, "\x43\x3f\xff\x01\x02\x03\x04\x05", 8) == 0)
			detected_double_format = ieee_big_endian_format;
		else if (memcmp(&x, "\x05\x04\x03\x02\x01\xff\x3f\x43", 8) == 0)
			detected_double_format = ieee_little_endian_format;
		else 
			detected_double_format = unknown_format;
	}
#else
	detected_double_format = unknown_format;
#endif

#if SIZEOF_FLOAT == 4
	{
		float y = 16711938.0;
		if (memcmp(&y, "\x4b\x7f\x01\x02", 4) == 0)
			detected_float_format = ieee_big_endian_format;
		else if (memcmp(&y, "\x02\x01\x7f\x4b", 4) == 0)
			detected_float_format = ieee_little_endian_format;
		else 
			detected_float_format = unknown_format;
	}
#else
	detected_float_format = unknown_format;
#endif

	double_format = detected_double_format;
	float_format = detected_float_format;
}

1182
void
Fred Drake's avatar
Fred Drake committed
1183
PyFloat_Fini(void)
1184
{
1185 1186
	PyFloatObject *p;
	PyFloatBlock *list, *next;
1187
	unsigned i;
1188 1189 1190 1191 1192 1193 1194 1195
	int bc, bf;	/* block count, number of freed blocks */
	int frem, fsum;	/* remaining unfreed floats per block, total */

	bc = 0;
	bf = 0;
	fsum = 0;
	list = block_list;
	block_list = NULL;
1196
	free_list = NULL;
1197 1198 1199
	while (list != NULL) {
		bc++;
		frem = 0;
1200 1201 1202
		for (i = 0, p = &list->objects[0];
		     i < N_FLOATOBJECTS;
		     i++, p++) {
1203
			if (PyFloat_CheckExact(p) && Py_Refcnt(p) != 0)
1204 1205
				frem++;
		}
1206
		next = list->next;
1207
		if (frem) {
1208 1209
			list->next = block_list;
			block_list = list;
1210 1211 1212
			for (i = 0, p = &list->objects[0];
			     i < N_FLOATOBJECTS;
			     i++, p++) {
1213
				if (!PyFloat_CheckExact(p) ||
1214 1215
				    Py_Refcnt(p) == 0) {
					Py_Type(p) = (struct _typeobject *)
1216 1217 1218 1219
						free_list;
					free_list = p;
				}
			}
1220 1221
		}
		else {
1222
			PyMem_FREE(list); /* XXX PyObject_FREE ??? */
1223 1224 1225
			bf++;
		}
		fsum += frem;
1226
		list = next;
1227
	}
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
	if (!Py_VerboseFlag)
		return;
	fprintf(stderr, "# cleanup floats");
	if (!fsum) {
		fprintf(stderr, "\n");
	}
	else {
		fprintf(stderr,
			": %d unfreed float%s in %d out of %d block%s\n",
			fsum, fsum == 1 ? "" : "s",
			bc - bf, bc, bc == 1 ? "" : "s");
	}
	if (Py_VerboseFlag > 1) {
		list = block_list;
		while (list != NULL) {
1243 1244 1245
			for (i = 0, p = &list->objects[0];
			     i < N_FLOATOBJECTS;
			     i++, p++) {
1246
				if (PyFloat_CheckExact(p) &&
1247
				    Py_Refcnt(p) != 0) {
1248
					char buf[100];
1249
					format_float(buf, sizeof(buf), p, PREC_STR);
1250 1251 1252 1253
					/* XXX(twouters) cast refcount to
					   long until %zd is universally
					   available
					 */
1254
					fprintf(stderr,
1255
			     "#   <float at %p, refcnt=%ld, val=%s>\n",
1256
						p, (long)Py_Refcnt(p), buf);
1257 1258 1259
				}
			}
			list = list->next;
1260 1261
		}
	}
1262
}
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272

/*----------------------------------------------------------------------------
 * _PyFloat_{Pack,Unpack}{4,8}.  See floatobject.h.
 *
 * TODO:  On platforms that use the standard IEEE-754 single and double
 * formats natively, these routines could simply copy the bytes.
 */
int
_PyFloat_Pack4(double x, unsigned char *p, int le)
{
Michael W. Hudson's avatar
Michael W. Hudson committed
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
	if (float_format == unknown_format) {
		unsigned char sign;
		int e;
		double f;
		unsigned int fbits;
		int incr = 1;

		if (le) {
			p += 3;
			incr = -1;
		}
1284

Michael W. Hudson's avatar
Michael W. Hudson committed
1285 1286 1287 1288 1289 1290
		if (x < 0) {
			sign = 1;
			x = -x;
		}
		else
			sign = 0;
1291

Michael W. Hudson's avatar
Michael W. Hudson committed
1292
		f = frexp(x, &e);
1293

Michael W. Hudson's avatar
Michael W. Hudson committed
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
		/* Normalize f to be in the range [1.0, 2.0) */
		if (0.5 <= f && f < 1.0) {
			f *= 2.0;
			e--;
		}
		else if (f == 0.0)
			e = 0;
		else {
			PyErr_SetString(PyExc_SystemError,
					"frexp() result out of range");
			return -1;
		}
1306

Michael W. Hudson's avatar
Michael W. Hudson committed
1307
		if (e >= 128)
1308
			goto Overflow;
Michael W. Hudson's avatar
Michael W. Hudson committed
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
		else if (e < -126) {
			/* Gradual underflow */
			f = ldexp(f, 126 + e);
			e = 0;
		}
		else if (!(e == 0 && f == 0.0)) {
			e += 127;
			f -= 1.0; /* Get rid of leading 1 */
		}

		f *= 8388608.0; /* 2**23 */
		fbits = (unsigned int)(f + 0.5); /* Round */
		assert(fbits <= 8388608);
		if (fbits >> 23) {
			/* The carry propagated out of a string of 23 1 bits. */
			fbits = 0;
			++e;
			if (e >= 255)
				goto Overflow;
		}
1329

Michael W. Hudson's avatar
Michael W. Hudson committed
1330 1331 1332
		/* First byte */
		*p = (sign << 7) | (e >> 1);
		p += incr;
1333

Michael W. Hudson's avatar
Michael W. Hudson committed
1334 1335 1336
		/* Second byte */
		*p = (char) (((e & 1) << 7) | (fbits >> 16));
		p += incr;
1337

Michael W. Hudson's avatar
Michael W. Hudson committed
1338 1339 1340
		/* Third byte */
		*p = (fbits >> 8) & 0xFF;
		p += incr;
1341

Michael W. Hudson's avatar
Michael W. Hudson committed
1342 1343
		/* Fourth byte */
		*p = fbits & 0xFF;
1344

Michael W. Hudson's avatar
Michael W. Hudson committed
1345 1346
		/* Done */
		return 0;
1347

Michael W. Hudson's avatar
Michael W. Hudson committed
1348 1349 1350 1351 1352 1353
	  Overflow:
		PyErr_SetString(PyExc_OverflowError,
				"float too large to pack with f format");
		return -1;
	}
	else {
1354
		float y = (float)x;
Michael W. Hudson's avatar
Michael W. Hudson committed
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
		const char *s = (char*)&y;
		int i, incr = 1;

		if ((float_format == ieee_little_endian_format && !le)
		    || (float_format == ieee_big_endian_format && le)) {
			p += 3;
			incr = -1;
		}
		
		for (i = 0; i < 4; i++) {
			*p = *s++;
			p += incr;
		}
		return 0;
	}
1370 1371 1372 1373 1374
}

int
_PyFloat_Pack8(double x, unsigned char *p, int le)
{
Michael W. Hudson's avatar
Michael W. Hudson committed
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
	if (double_format == unknown_format) {
		unsigned char sign;
		int e;
		double f;
		unsigned int fhi, flo;
		int incr = 1;

		if (le) {
			p += 7;
			incr = -1;
		}
1386

Michael W. Hudson's avatar
Michael W. Hudson committed
1387 1388 1389 1390 1391 1392
		if (x < 0) {
			sign = 1;
			x = -x;
		}
		else
			sign = 0;
1393

Michael W. Hudson's avatar
Michael W. Hudson committed
1394
		f = frexp(x, &e);
1395

Michael W. Hudson's avatar
Michael W. Hudson committed
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
		/* Normalize f to be in the range [1.0, 2.0) */
		if (0.5 <= f && f < 1.0) {
			f *= 2.0;
			e--;
		}
		else if (f == 0.0)
			e = 0;
		else {
			PyErr_SetString(PyExc_SystemError,
					"frexp() result out of range");
			return -1;
		}
1408

Michael W. Hudson's avatar
Michael W. Hudson committed
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
		if (e >= 1024)
			goto Overflow;
		else if (e < -1022) {
			/* Gradual underflow */
			f = ldexp(f, 1022 + e);
			e = 0;
		}
		else if (!(e == 0 && f == 0.0)) {
			e += 1023;
			f -= 1.0; /* Get rid of leading 1 */
		}
1420

Michael W. Hudson's avatar
Michael W. Hudson committed
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
		/* fhi receives the high 28 bits; flo the low 24 bits (== 52 bits) */
		f *= 268435456.0; /* 2**28 */
		fhi = (unsigned int)f; /* Truncate */
		assert(fhi < 268435456);

		f -= (double)fhi;
		f *= 16777216.0; /* 2**24 */
		flo = (unsigned int)(f + 0.5); /* Round */
		assert(flo <= 16777216);
		if (flo >> 24) {
			/* The carry propagated out of a string of 24 1 bits. */
			flo = 0;
			++fhi;
			if (fhi >> 28) {
				/* And it also progagated out of the next 28 bits. */
				fhi = 0;
				++e;
				if (e >= 2047)
					goto Overflow;
			}
1441 1442
		}

Michael W. Hudson's avatar
Michael W. Hudson committed
1443 1444 1445
		/* First byte */
		*p = (sign << 7) | (e >> 4);
		p += incr;
1446

Michael W. Hudson's avatar
Michael W. Hudson committed
1447 1448 1449
		/* Second byte */
		*p = (unsigned char) (((e & 0xF) << 4) | (fhi >> 24));
		p += incr;
1450

Michael W. Hudson's avatar
Michael W. Hudson committed
1451 1452 1453
		/* Third byte */
		*p = (fhi >> 16) & 0xFF;
		p += incr;
1454

Michael W. Hudson's avatar
Michael W. Hudson committed
1455 1456 1457
		/* Fourth byte */
		*p = (fhi >> 8) & 0xFF;
		p += incr;
1458

Michael W. Hudson's avatar
Michael W. Hudson committed
1459 1460 1461
		/* Fifth byte */
		*p = fhi & 0xFF;
		p += incr;
1462

Michael W. Hudson's avatar
Michael W. Hudson committed
1463 1464 1465
		/* Sixth byte */
		*p = (flo >> 16) & 0xFF;
		p += incr;
1466

Michael W. Hudson's avatar
Michael W. Hudson committed
1467 1468 1469
		/* Seventh byte */
		*p = (flo >> 8) & 0xFF;
		p += incr;
1470

Michael W. Hudson's avatar
Michael W. Hudson committed
1471 1472 1473
		/* Eighth byte */
		*p = flo & 0xFF;
		p += incr;
1474

Michael W. Hudson's avatar
Michael W. Hudson committed
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
		/* Done */
		return 0;

	  Overflow:
		PyErr_SetString(PyExc_OverflowError,
				"float too large to pack with d format");
		return -1;
	}
	else {
		const char *s = (char*)&x;
		int i, incr = 1;
1486

Michael W. Hudson's avatar
Michael W. Hudson committed
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
		if ((double_format == ieee_little_endian_format && !le)
		    || (double_format == ieee_big_endian_format && le)) {
			p += 7;
			incr = -1;
		}
		
		for (i = 0; i < 8; i++) {
			*p = *s++;
			p += incr;
		}
		return 0;
	}
1499 1500
}

1501 1502 1503 1504 1505 1506 1507 1508
/* Should only be used by marshal. */
int
_PyFloat_Repr(double x, char *p, size_t len)
{
	format_double(p, len, x, PREC_REPR);
	return (int)strlen(p);
}

1509 1510 1511
double
_PyFloat_Unpack4(const unsigned char *p, int le)
{
Michael W. Hudson's avatar
Michael W. Hudson committed
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
	if (float_format == unknown_format) {
		unsigned char sign;
		int e;
		unsigned int f;
		double x;
		int incr = 1;

		if (le) {
			p += 3;
			incr = -1;
		}
1523

Michael W. Hudson's avatar
Michael W. Hudson committed
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
		/* First byte */
		sign = (*p >> 7) & 1;
		e = (*p & 0x7F) << 1;
		p += incr;

		/* Second byte */
		e |= (*p >> 7) & 1;
		f = (*p & 0x7F) << 16;
		p += incr;

		if (e == 255) {
			PyErr_SetString(
				PyExc_ValueError,
				"can't unpack IEEE 754 special value "
				"on non-IEEE platform");
			return -1;
		}
1541

Michael W. Hudson's avatar
Michael W. Hudson committed
1542 1543 1544
		/* Third byte */
		f |= *p << 8;
		p += incr;
1545

Michael W. Hudson's avatar
Michael W. Hudson committed
1546 1547
		/* Fourth byte */
		f |= *p;
1548

Michael W. Hudson's avatar
Michael W. Hudson committed
1549
		x = (double)f / 8388608.0;
1550

Michael W. Hudson's avatar
Michael W. Hudson committed
1551 1552 1553 1554 1555 1556 1557 1558
		/* XXX This sadly ignores Inf/NaN issues */
		if (e == 0)
			e = -126;
		else {
			x += 1.0;
			e -= 127;
		}
		x = ldexp(x, e);
1559

Michael W. Hudson's avatar
Michael W. Hudson committed
1560 1561
		if (sign)
			x = -x;
1562

Michael W. Hudson's avatar
Michael W. Hudson committed
1563
		return x;
1564
	}
Michael W. Hudson's avatar
Michael W. Hudson committed
1565
	else {
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1566 1567
		float x;

Michael W. Hudson's avatar
Michael W. Hudson committed
1568 1569
		if ((float_format == ieee_little_endian_format && !le)
		    || (float_format == ieee_big_endian_format && le)) {
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1570
			char buf[4];
Michael W. Hudson's avatar
Michael W. Hudson committed
1571 1572 1573 1574 1575 1576
			char *d = &buf[3];
			int i;

			for (i = 0; i < 4; i++) {
				*d-- = *p++;
			}
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1577
			memcpy(&x, buf, 4);
Michael W. Hudson's avatar
Michael W. Hudson committed
1578 1579
		}
		else {
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1580
			memcpy(&x, p, 4);
Michael W. Hudson's avatar
Michael W. Hudson committed
1581
		}
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1582 1583

		return x;
Michael W. Hudson's avatar
Michael W. Hudson committed
1584
	}		
1585 1586 1587 1588 1589
}

double
_PyFloat_Unpack8(const unsigned char *p, int le)
{
Michael W. Hudson's avatar
Michael W. Hudson committed
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
	if (double_format == unknown_format) {
		unsigned char sign;
		int e;
		unsigned int fhi, flo;
		double x;
		int incr = 1;

		if (le) {
			p += 7;
			incr = -1;
		}
1601

Michael W. Hudson's avatar
Michael W. Hudson committed
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
		/* First byte */
		sign = (*p >> 7) & 1;
		e = (*p & 0x7F) << 4;
		
		p += incr;

		/* Second byte */
		e |= (*p >> 4) & 0xF;
		fhi = (*p & 0xF) << 24;
		p += incr;

		if (e == 2047) {
			PyErr_SetString(
				PyExc_ValueError,
				"can't unpack IEEE 754 special value "
				"on non-IEEE platform");
			return -1.0;
		}
1620

Michael W. Hudson's avatar
Michael W. Hudson committed
1621 1622 1623
		/* Third byte */
		fhi |= *p << 16;
		p += incr;
1624

Michael W. Hudson's avatar
Michael W. Hudson committed
1625 1626 1627
		/* Fourth byte */
		fhi |= *p  << 8;
		p += incr;
1628

Michael W. Hudson's avatar
Michael W. Hudson committed
1629 1630 1631
		/* Fifth byte */
		fhi |= *p;
		p += incr;
1632

Michael W. Hudson's avatar
Michael W. Hudson committed
1633 1634 1635
		/* Sixth byte */
		flo = *p << 16;
		p += incr;
1636

Michael W. Hudson's avatar
Michael W. Hudson committed
1637 1638 1639
		/* Seventh byte */
		flo |= *p << 8;
		p += incr;
1640

Michael W. Hudson's avatar
Michael W. Hudson committed
1641 1642
		/* Eighth byte */
		flo |= *p;
1643

Michael W. Hudson's avatar
Michael W. Hudson committed
1644 1645
		x = (double)fhi + (double)flo / 16777216.0; /* 2**24 */
		x /= 268435456.0; /* 2**28 */
1646

Michael W. Hudson's avatar
Michael W. Hudson committed
1647 1648 1649 1650 1651 1652 1653
		if (e == 0)
			e = -1022;
		else {
			x += 1.0;
			e -= 1023;
		}
		x = ldexp(x, e);
1654

Michael W. Hudson's avatar
Michael W. Hudson committed
1655 1656
		if (sign)
			x = -x;
1657

Michael W. Hudson's avatar
Michael W. Hudson committed
1658 1659
		return x;
	}
1660
	else {
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1661 1662
		double x;

Michael W. Hudson's avatar
Michael W. Hudson committed
1663 1664 1665 1666 1667 1668 1669 1670 1671
		if ((double_format == ieee_little_endian_format && !le)
		    || (double_format == ieee_big_endian_format && le)) {
			char buf[8];
			char *d = &buf[7];
			int i;
			
			for (i = 0; i < 8; i++) {
				*d-- = *p++;
			}
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1672
			memcpy(&x, buf, 8);
Michael W. Hudson's avatar
Michael W. Hudson committed
1673 1674
		}
		else {
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1675
			memcpy(&x, p, 8);
Michael W. Hudson's avatar
Michael W. Hudson committed
1676
		}
Michael W. Hudson's avatar
Fix bug  
Michael W. Hudson committed
1677 1678

		return x;
1679 1680
	}
}