Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / include / python2.4 / floatobject.h
CommitLineData
86530b38
AT
1#ifndef Py_FLOATOBJECT_H
2#define Py_FLOATOBJECT_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7typedef struct {
8 PyObject_HEAD
9 double ob_fval;
10} PyFloatObject;
11
12PyAPI_DATA(PyTypeObject) PyFloat_Type;
13
14#define PyFloat_Check(op) PyObject_TypeCheck(op, &PyFloat_Type)
15#define PyFloat_CheckExact(op) ((op)->ob_type == &PyFloat_Type)
16
17/* Return Python float from string PyObject. Second argument ignored on
18 input, and, if non-NULL, NULL is stored into *junk (this tried to serve a
19 purpose once but can't be made to work as intended). */
20PyAPI_FUNC(PyObject *) PyFloat_FromString(PyObject*, char** junk);
21
22/* Return Python float from C double. */
23PyAPI_FUNC(PyObject *) PyFloat_FromDouble(double);
24
25/* Extract C double from Python float. The macro version trades safety for
26 speed. */
27PyAPI_FUNC(double) PyFloat_AsDouble(PyObject *);
28#define PyFloat_AS_DOUBLE(op) (((PyFloatObject *)(op))->ob_fval)
29
30/* Write repr(v) into the char buffer argument, followed by null byte. The
31 buffer must be "big enough"; >= 100 is very safe.
32 PyFloat_AsReprString(buf, x) strives to print enough digits so that
33 PyFloat_FromString(buf) then reproduces x exactly. */
34PyAPI_FUNC(void) PyFloat_AsReprString(char*, PyFloatObject *v);
35
36/* Write str(v) into the char buffer argument, followed by null byte. The
37 buffer must be "big enough"; >= 100 is very safe. Note that it's
38 unusual to be able to get back the float you started with from
39 PyFloat_AsString's result -- use PyFloat_AsReprString() if you want to
40 preserve precision across conversions. */
41PyAPI_FUNC(void) PyFloat_AsString(char*, PyFloatObject *v);
42
43/* _PyFloat_{Pack,Unpack}{4,8}
44 *
45 * The struct and pickle (at least) modules need an efficient platform-
46 * independent way to store floating-point values as byte strings.
47 * The Pack routines produce a string from a C double, and the Unpack
48 * routines produce a C double from such a string. The suffix (4 or 8)
49 * specifies the number of bytes in the string.
50 *
51 * Excepting NaNs and infinities (which aren't handled correctly), the 4-
52 * byte format is identical to the IEEE-754 single precision format, and
53 * the 8-byte format to the IEEE-754 double precision format. On non-
54 * IEEE platforms with more precision, or larger dynamic range, than
55 * 754 supports, not all values can be packed; on non-IEEE platforms with
56 * less precision, or smaller dynamic range, not all values can be
57 * unpacked. What happens in such cases is partly accidental (alas).
58 */
59
60/* The pack routines write 4 or 8 bytes, starting at p. le is a bool
61 * argument, true if you want the string in little-endian format (exponent
62 * last, at p+3 or p+7), false if you want big-endian format (exponent
63 * first, at p).
64 * Return value: 0 if all is OK, -1 if error (and an exception is
65 * set, most likely OverflowError).
66 * Bug: What this does is undefined if x is a NaN or infinity.
67 * Bug: -0.0 and +0.0 produce the same string.
68 */
69PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
70PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
71
72/* The unpack routines read 4 or 8 bytes, starting at p. le is a bool
73 * argument, true if the string is in little-endian format (exponent
74 * last, at p+3 or p+7), false if big-endian (exponent first, at p).
75 * Return value: The unpacked double. On error, this is -1.0 and
76 * PyErr_Occurred() is true (and an exception is set, most likely
77 * OverflowError).
78 * Bug: What this does is undefined if the string represents a NaN or
79 * infinity.
80 */
81PyAPI_FUNC(double) _PyFloat_Unpack4(const unsigned char *p, int le);
82PyAPI_FUNC(double) _PyFloat_Unpack8(const unsigned char *p, int le);
83
84
85#ifdef __cplusplus
86}
87#endif
88#endif /* !Py_FLOATOBJECT_H */