blob: 2f87f53700afc3b81b4dbe03eb9b9ca7628adbaa [file] [log] [blame]
Tim Peters7d3a5112000-07-08 04:17:21 +00001#ifndef Py_PYPORT_H
Vladimir Marangozov14a4d882000-07-10 04:59:49 +00002#define Py_PYPORT_H
Tim Peters7d3a5112000-07-08 04:17:21 +00003
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00004#include "pyconfig.h" /* include for defines */
Peter Schneider-Kamp25f68942000-07-31 22:19:30 +00005
Mark Dickinson835a6c82009-06-30 15:45:17 +00006#include <inttypes.h>
Thomas Wouters89f507f2006-12-13 04:49:30 +00007
Tim Peters7d3a5112000-07-08 04:17:21 +00008/**************************************************************************
9Symbols and macros to supply platform-independent interfaces to basic
Tim Peters1be46842000-07-23 18:10:18 +000010C language & library operations whose spellings vary across platforms.
Tim Peters7d3a5112000-07-08 04:17:21 +000011
12Please try to make documentation here as clear as possible: by definition,
13the stuff here is trying to illuminate C's darkest corners.
14
15Config #defines referenced here:
16
17SIGNED_RIGHT_SHIFT_ZERO_FILLS
18Meaning: To be defined iff i>>j does not extend the sign bit when i is a
19 signed integral type and i < 0.
20Used in: Py_ARITHMETIC_RIGHT_SHIFT
Tim Peters1be46842000-07-23 18:10:18 +000021
Tim Peters8315ea52000-07-23 19:28:35 +000022Py_DEBUG
23Meaning: Extra checks compiled in for debug mode.
24Used in: Py_SAFE_DOWNCAST
Barry Warsawfd847b22000-08-18 04:48:18 +000025
Tim Peters7d3a5112000-07-08 04:17:21 +000026**************************************************************************/
27
Barry Warsawfd847b22000-08-18 04:48:18 +000028/* typedefs for some C9X-defined synonyms for integral types.
29 *
30 * The names in Python are exactly the same as the C9X names, except with a
31 * Py_ prefix. Until C9X is universally implemented, this is the only way
32 * to ensure that Python gets reliable names that don't conflict with names
33 * in non-Python code that are playing their own tricks to define the C9X
34 * names.
35 *
36 * NOTE: don't go nuts here! Python has no use for *most* of the C9X
37 * integral synonyms. Only define the ones we actually need.
38 */
39
n.d. parkerf7eda382017-03-08 19:24:22 +010040/* long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. */
Benjamin Peterson0d5742d2016-12-07 23:54:28 -080041#ifndef HAVE_LONG_LONG
Victor Stinnera251fb02017-01-05 22:58:53 +010042#define HAVE_LONG_LONG 1
Benjamin Peterson0d5742d2016-12-07 23:54:28 -080043#endif
Martin v. Löwisb9a0f912003-03-29 10:06:18 +000044#ifndef PY_LONG_LONG
45#define PY_LONG_LONG long long
Guido van Rossumcd16bf62007-06-13 18:07:49 +000046/* If LLONG_MAX is defined in limits.h, use that. */
47#define PY_LLONG_MIN LLONG_MIN
48#define PY_LLONG_MAX LLONG_MAX
49#define PY_ULLONG_MAX ULLONG_MAX
Barry Warsawfd847b22000-08-18 04:48:18 +000050#endif
Barry Warsawfd847b22000-08-18 04:48:18 +000051
Mark Dickinsonbd792642009-03-18 20:06:12 +000052#define PY_UINT32_T uint32_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000053#define PY_UINT64_T uint64_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000054
55/* Signed variants of the above */
Mark Dickinsonbd792642009-03-18 20:06:12 +000056#define PY_INT32_T int32_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000057#define PY_INT64_T int64_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000058
59/* If PYLONG_BITS_IN_DIGIT is not defined then we'll use 30-bit digits if all
60 the necessary integer types are available, and we're on a 64-bit platform
61 (as determined by SIZEOF_VOID_P); otherwise we use 15-bit digits. */
62
63#ifndef PYLONG_BITS_IN_DIGIT
Benjamin Peterson4fe55102016-09-06 11:58:01 -070064#if SIZEOF_VOID_P >= 8
Mark Dickinsonbd792642009-03-18 20:06:12 +000065#define PYLONG_BITS_IN_DIGIT 30
66#else
67#define PYLONG_BITS_IN_DIGIT 15
68#endif
69#endif
70
Barry Warsawfd847b22000-08-18 04:48:18 +000071/* uintptr_t is the C9X name for an unsigned integral type such that a
72 * legitimate void* can be cast to uintptr_t and then back to void* again
Tim Peters79248aa2001-08-29 21:37:10 +000073 * without loss of information. Similarly for intptr_t, wrt a signed
74 * integral type.
Barry Warsawfd847b22000-08-18 04:48:18 +000075 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000076typedef uintptr_t Py_uintptr_t;
77typedef intptr_t Py_intptr_t;
Tim Peters79248aa2001-08-29 21:37:10 +000078
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000079/* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
80 * sizeof(size_t). C99 doesn't define such a thing directly (size_t is an
81 * unsigned integral type). See PEP 353 for details.
82 */
Martin v. Löwis18e16552006-02-15 17:27:45 +000083#ifdef HAVE_SSIZE_T
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000084typedef ssize_t Py_ssize_t;
Martin v. Löwis18e16552006-02-15 17:27:45 +000085#elif SIZEOF_VOID_P == SIZEOF_SIZE_T
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086typedef Py_intptr_t Py_ssize_t;
Martin v. Löwis18e16552006-02-15 17:27:45 +000087#else
88# error "Python needs a typedef for Py_ssize_t in pyport.h."
89#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000090
Benjamin Peterson8f67d082010-10-17 20:54:53 +000091/* Py_hash_t is the same size as a pointer. */
Christian Heimes985ecdc2013-11-20 11:46:18 +010092#define SIZEOF_PY_HASH_T SIZEOF_SIZE_T
Benjamin Peterson8f67d082010-10-17 20:54:53 +000093typedef Py_ssize_t Py_hash_t;
Benjamin Peterson8035bc52010-10-23 16:20:50 +000094/* Py_uhash_t is the unsigned equivalent needed to calculate numeric hash. */
Christian Heimes985ecdc2013-11-20 11:46:18 +010095#define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T
Benjamin Peterson8035bc52010-10-23 16:20:50 +000096typedef size_t Py_uhash_t;
Benjamin Peterson8f67d082010-10-17 20:54:53 +000097
Larry Hastingsebdcb502013-11-23 14:54:00 -080098/* Only used for compatibility with code that may not be PY_SSIZE_T_CLEAN. */
99#ifdef PY_SSIZE_T_CLEAN
100typedef Py_ssize_t Py_ssize_clean_t;
101#else
102typedef int Py_ssize_clean_t;
103#endif
104
Benjamin Peterson2f8bfef2016-09-07 09:26:18 -0700105/* Largest possible value of size_t. */
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000106#define PY_SIZE_MAX SIZE_MAX
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000107
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000108/* Largest positive value of type Py_ssize_t. */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000109#define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000110/* Smallest negative value of type Py_ssize_t. */
111#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
112
113/* PY_FORMAT_SIZE_T is a platform-specific modifier for use in a printf
114 * format to convert an argument with the width of a size_t or Py_ssize_t.
115 * C99 introduced "z" for this purpose, but not all platforms support that;
116 * e.g., MS compilers use "I" instead.
117 *
118 * These "high level" Python format functions interpret "z" correctly on
119 * all platforms (Python interprets the format string itself, and does whatever
120 * the platform C requires to convert a size_t/Py_ssize_t argument):
121 *
Christian Heimes72b710a2008-05-26 13:28:38 +0000122 * PyBytes_FromFormat
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000123 * PyErr_Format
Christian Heimes72b710a2008-05-26 13:28:38 +0000124 * PyBytes_FromFormatV
Walter Dörwald7696ed72007-05-31 15:51:35 +0000125 * PyUnicode_FromFormatV
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000126 *
127 * Lower-level uses require that you interpolate the correct format modifier
128 * yourself (e.g., calling printf, fprintf, sprintf, PyOS_snprintf); for
129 * example,
130 *
131 * Py_ssize_t index;
132 * fprintf(stderr, "index %" PY_FORMAT_SIZE_T "d sucks\n", index);
133 *
134 * That will expand to %ld, or %Id, or to something else correct for a
135 * Py_ssize_t on the platform.
136 */
137#ifndef PY_FORMAT_SIZE_T
Thomas Wouters89f507f2006-12-13 04:49:30 +0000138# if SIZEOF_SIZE_T == SIZEOF_INT && !defined(__APPLE__)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000139# define PY_FORMAT_SIZE_T ""
140# elif SIZEOF_SIZE_T == SIZEOF_LONG
141# define PY_FORMAT_SIZE_T "l"
142# elif defined(MS_WINDOWS)
143# define PY_FORMAT_SIZE_T "I"
144# else
145# error "This platform's pyconfig.h needs to define PY_FORMAT_SIZE_T"
146# endif
147#endif
Martin v. Löwis18e16552006-02-15 17:27:45 +0000148
Thomas Wouters477c8d52006-05-27 19:21:47 +0000149/* Py_LOCAL can be used instead of static to get the fastest possible calling
150 * convention for functions that are local to a given module.
151 *
152 * Py_LOCAL_INLINE does the same thing, and also explicitly requests inlining,
153 * for platforms that support that.
154 *
155 * If PY_LOCAL_AGGRESSIVE is defined before python.h is included, more
Berker Peksag4882cac2015-04-14 09:30:01 +0300156 * "aggressive" inlining/optimization is enabled for the entire module. This
Thomas Wouters477c8d52006-05-27 19:21:47 +0000157 * may lead to code bloat, and may slow things down for those reasons. It may
158 * also lead to errors, if the code relies on pointer aliasing. Use with
159 * care.
160 *
161 * NOTE: You can only use this for functions that are entirely local to a
162 * module; functions that are exported via method tables, callbacks, etc,
163 * should keep using static.
164 */
165
Thomas Wouters477c8d52006-05-27 19:21:47 +0000166#if defined(_MSC_VER)
Victor Stinner18618e652018-10-25 17:28:11 +0200167# if defined(PY_LOCAL_AGGRESSIVE)
168 /* enable more aggressive optimization for visual studio */
169# pragma optimize("agtw", on)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000170#endif
Victor Stinner18618e652018-10-25 17:28:11 +0200171 /* ignore warnings if the compiler decides not to inline a function */
172# pragma warning(disable: 4710)
173 /* fastest possible local call under MSVC */
174# define Py_LOCAL(type) static type __fastcall
175# define Py_LOCAL_INLINE(type) static __inline type __fastcall
Thomas Wouters477c8d52006-05-27 19:21:47 +0000176#else
Victor Stinner18618e652018-10-25 17:28:11 +0200177# define Py_LOCAL(type) static type
178# define Py_LOCAL_INLINE(type) static inline type
Thomas Wouters477c8d52006-05-27 19:21:47 +0000179#endif
180
Victor Stinner18618e652018-10-25 17:28:11 +0200181/* Declare a "static inline" function. Typical usage:
182
183 Py_STATIC_INLINE(int) add(int a, int b) { return a + b; }
184
185 If the compiler supports it, try to always inline the function even if no
186 optimization level was specified. */
187#if defined(__GNUC__) || defined(__clang__)
188# define Py_STATIC_INLINE(TYPE) \
189 __attribute__((always_inline)) static inline TYPE
190#elif defined(_MSC_VER)
191# define Py_STATIC_INLINE(TYPE) \
192 static __forceinline TYPE
193#else
194# define Py_STATIC_INLINE(TYPE) static inline TYPE
195#endif
196
197
Christian Heimesf051e432016-09-13 20:22:02 +0200198/* Py_MEMCPY is kept for backwards compatibility,
199 * see https://bugs.python.org/issue28126 */
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000200#define Py_MEMCPY memcpy
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000201
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000202#include <stdlib.h>
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000203
Mark Dickinsona4962cb2009-11-28 12:35:42 +0000204#ifdef HAVE_IEEEFP_H
205#include <ieeefp.h> /* needed for 'finite' declaration on some platforms */
206#endif
207
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000208#include <math.h> /* Moved here from the math section, before extern "C" */
209
210/********************************************
211 * WRAPPER FOR <time.h> and/or <sys/time.h> *
212 ********************************************/
213
214#ifdef TIME_WITH_SYS_TIME
215#include <sys/time.h>
216#include <time.h>
217#else /* !TIME_WITH_SYS_TIME */
218#ifdef HAVE_SYS_TIME_H
219#include <sys/time.h>
220#else /* !HAVE_SYS_TIME_H */
221#include <time.h>
222#endif /* !HAVE_SYS_TIME_H */
223#endif /* !TIME_WITH_SYS_TIME */
224
225
226/******************************
227 * WRAPPER FOR <sys/select.h> *
228 ******************************/
229
230/* NB caller must include <sys/types.h> */
231
232#ifdef HAVE_SYS_SELECT_H
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000233#include <sys/select.h>
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000234#endif /* !HAVE_SYS_SELECT_H */
235
Tim Peters60f42b52001-01-18 03:03:16 +0000236/*******************************
237 * stat() and fstat() fiddling *
238 *******************************/
239
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000240#ifdef HAVE_SYS_STAT_H
Tim Peters60f42b52001-01-18 03:03:16 +0000241#include <sys/stat.h>
242#elif defined(HAVE_STAT_H)
243#include <stat.h>
244#endif
245
Christian Heimes99d61352013-06-23 23:56:05 +0200246#ifndef S_IFMT
Martin v. Löwisf9836ba2001-08-08 10:28:06 +0000247/* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */
Christian Heimes99d61352013-06-23 23:56:05 +0200248#define S_IFMT 0170000
249#endif
250
251#ifndef S_IFLNK
252/* Windows doesn't define S_IFLNK but posixmodule.c maps
253 * IO_REPARSE_TAG_SYMLINK to S_IFLNK */
254# define S_IFLNK 0120000
Martin v. Löwisf9836ba2001-08-08 10:28:06 +0000255#endif
256
257#ifndef S_ISREG
258#define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
259#endif
260
261#ifndef S_ISDIR
262#define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
263#endif
264
Victor Stinnerc6ebd162013-06-23 01:49:42 +0200265#ifndef S_ISCHR
266#define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR)
267#endif
268
Tim Peters7d3a5112000-07-08 04:17:21 +0000269#ifdef __cplusplus
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000270/* Move this down here since some C++ #include's don't like to be included
271 inside an extern "C" */
Tim Peters7d3a5112000-07-08 04:17:21 +0000272extern "C" {
273#endif
274
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000275
Tim Peters7d3a5112000-07-08 04:17:21 +0000276/* Py_ARITHMETIC_RIGHT_SHIFT
277 * C doesn't define whether a right-shift of a signed integer sign-extends
278 * or zero-fills. Here a macro to force sign extension:
279 * Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J)
Mark Dickinson16f966e2009-03-20 23:23:15 +0000280 * Return I >> J, forcing sign extension. Arithmetically, return the
281 * floor of I/2**J.
Tim Peters7d3a5112000-07-08 04:17:21 +0000282 * Requirements:
Mark Dickinson16f966e2009-03-20 23:23:15 +0000283 * I should have signed integer type. In the terminology of C99, this can
284 * be either one of the five standard signed integer types (signed char,
285 * short, int, long, long long) or an extended signed integer type.
286 * J is an integer >= 0 and strictly less than the number of bits in the
287 * type of I (because C doesn't define what happens for J outside that
288 * range either).
289 * TYPE used to specify the type of I, but is now ignored. It's been left
290 * in for backwards compatibility with versions <= 2.6 or 3.0.
Tim Peters7d3a5112000-07-08 04:17:21 +0000291 * Caution:
292 * I may be evaluated more than once.
293 */
294#ifdef SIGNED_RIGHT_SHIFT_ZERO_FILLS
295#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000296 ((I) < 0 ? -1-((-1-(I)) >> (J)) : (I) >> (J))
Tim Peters7d3a5112000-07-08 04:17:21 +0000297#else
298#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
299#endif
300
Tim Peters39dce292000-08-15 03:34:48 +0000301/* Py_FORCE_EXPANSION(X)
Tim Peters1be46842000-07-23 18:10:18 +0000302 * "Simply" returns its argument. However, macro expansions within the
303 * argument are evaluated. This unfortunate trickery is needed to get
304 * token-pasting to work as desired in some cases.
305 */
306#define Py_FORCE_EXPANSION(X) X
307
Tim Peters8315ea52000-07-23 19:28:35 +0000308/* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)
309 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
310 * assert-fails if any information is lost.
311 * Caution:
312 * VALUE may be evaluated more than once.
313 */
314#ifdef Py_DEBUG
315#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
Tim Peters8315ea52000-07-23 19:28:35 +0000317#else
318#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
319#endif
320
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000321/* Py_SET_ERRNO_ON_MATH_ERROR(x)
Tim Petersa40c7932001-09-05 22:36:56 +0000322 * If a libm function did not set errno, but it looks like the result
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000323 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
324 * to 0 before calling a libm function, and invoke this macro after,
325 * passing the function result.
Tim Petersa40c7932001-09-05 22:36:56 +0000326 * Caution:
327 * This isn't reliable. See Py_OVERFLOWED comments.
328 * X is evaluated more than once.
329 */
Guido van Rossum539c6622005-09-14 17:49:54 +0000330#if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__hpux) && defined(__ia64))
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000331#define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;
332#else
333#define _Py_SET_EDOM_FOR_NAN(X) ;
334#endif
335#define Py_SET_ERRNO_ON_MATH_ERROR(X) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 do { \
337 if (errno == 0) { \
338 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
339 errno = ERANGE; \
340 else _Py_SET_EDOM_FOR_NAN(X) \
341 } \
342 } while(0)
Tim Peters57f282a2001-09-05 05:38:10 +0000343
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000344/* Py_SET_ERANGE_ON_OVERFLOW(x)
345 * An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility.
346 */
347#define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
348
Tim Petersdc5a5082002-03-09 04:58:24 +0000349/* Py_ADJUST_ERANGE1(x)
350 * Py_ADJUST_ERANGE2(x, y)
351 * Set errno to 0 before calling a libm function, and invoke one of these
352 * macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful
353 * for functions returning complex results). This makes two kinds of
354 * adjustments to errno: (A) If it looks like the platform libm set
355 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
356 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
357 * effect, we're trying to force a useful implementation of C89 errno
358 * behavior.
359 * Caution:
360 * This isn't reliable. See Py_OVERFLOWED comments.
361 * X and Y may be evaluated more than once.
362 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000363#define Py_ADJUST_ERANGE1(X) \
364 do { \
365 if (errno == 0) { \
366 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
367 errno = ERANGE; \
368 } \
369 else if (errno == ERANGE && (X) == 0.0) \
370 errno = 0; \
371 } while(0)
Tim Petersdc5a5082002-03-09 04:58:24 +0000372
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000373#define Py_ADJUST_ERANGE2(X, Y) \
374 do { \
375 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || \
376 (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) { \
377 if (errno == 0) \
378 errno = ERANGE; \
379 } \
380 else if (errno == ERANGE) \
381 errno = 0; \
382 } while(0)
Tim Petersdc5a5082002-03-09 04:58:24 +0000383
Mark Dickinsona4262b92009-04-19 11:35:55 +0000384/* The functions _Py_dg_strtod and _Py_dg_dtoa in Python/dtoa.c (which are
385 * required to support the short float repr introduced in Python 3.1) require
386 * that the floating-point unit that's being used for arithmetic operations
387 * on C doubles is set to use 53-bit precision. It also requires that the
388 * FPU rounding mode is round-half-to-even, but that's less often an issue.
389 *
390 * If your FPU isn't already set to 53-bit precision/round-half-to-even, and
391 * you want to make use of _Py_dg_strtod and _Py_dg_dtoa, then you should
392 *
393 * #define HAVE_PY_SET_53BIT_PRECISION 1
394 *
395 * and also give appropriate definitions for the following three macros:
396 *
397 * _PY_SET_53BIT_PRECISION_START : store original FPU settings, and
398 * set FPU to 53-bit precision/round-half-to-even
399 * _PY_SET_53BIT_PRECISION_END : restore original FPU settings
400 * _PY_SET_53BIT_PRECISION_HEADER : any variable declarations needed to
401 * use the two macros above.
402 *
403 * The macros are designed to be used within a single C function: see
404 * Python/pystrtod.c for an example of their use.
405 */
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000406
Mark Dickinsona4262b92009-04-19 11:35:55 +0000407/* get and set x87 control word for gcc/x86 */
Mark Dickinson7abf8d42009-04-18 20:17:52 +0000408#ifdef HAVE_GCC_ASM_FOR_X87
Mark Dickinsona4262b92009-04-19 11:35:55 +0000409#define HAVE_PY_SET_53BIT_PRECISION 1
410/* _Py_get/set_387controlword functions are defined in Python/pymath.c */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411#define _Py_SET_53BIT_PRECISION_HEADER \
412 unsigned short old_387controlword, new_387controlword
413#define _Py_SET_53BIT_PRECISION_START \
414 do { \
415 old_387controlword = _Py_get_387controlword(); \
416 new_387controlword = (old_387controlword & ~0x0f00) | 0x0200; \
417 if (new_387controlword != old_387controlword) \
418 _Py_set_387controlword(new_387controlword); \
419 } while (0)
420#define _Py_SET_53BIT_PRECISION_END \
421 if (new_387controlword != old_387controlword) \
422 _Py_set_387controlword(old_387controlword)
Mark Dickinsona4262b92009-04-19 11:35:55 +0000423#endif
424
Mark Dickinson18e3d812012-04-15 15:10:56 +0100425/* get and set x87 control word for VisualStudio/x86 */
426#if defined(_MSC_VER) && !defined(_WIN64) /* x87 not supported in 64-bit */
427#define HAVE_PY_SET_53BIT_PRECISION 1
428#define _Py_SET_53BIT_PRECISION_HEADER \
429 unsigned int old_387controlword, new_387controlword, out_387controlword
430/* We use the __control87_2 function to set only the x87 control word.
431 The SSE control word is unaffected. */
432#define _Py_SET_53BIT_PRECISION_START \
433 do { \
434 __control87_2(0, 0, &old_387controlword, NULL); \
435 new_387controlword = \
436 (old_387controlword & ~(_MCW_PC | _MCW_RC)) | (_PC_53 | _RC_NEAR); \
437 if (new_387controlword != old_387controlword) \
438 __control87_2(new_387controlword, _MCW_PC | _MCW_RC, \
439 &out_387controlword, NULL); \
440 } while (0)
441#define _Py_SET_53BIT_PRECISION_END \
442 do { \
443 if (new_387controlword != old_387controlword) \
444 __control87_2(old_387controlword, _MCW_PC | _MCW_RC, \
445 &out_387controlword, NULL); \
446 } while (0)
447#endif
448
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400449#ifdef HAVE_GCC_ASM_FOR_MC68881
450#define HAVE_PY_SET_53BIT_PRECISION 1
451#define _Py_SET_53BIT_PRECISION_HEADER \
452 unsigned int old_fpcr, new_fpcr
Christian Heimesf051e432016-09-13 20:22:02 +0200453#define _Py_SET_53BIT_PRECISION_START \
454 do { \
455 __asm__ ("fmove.l %%fpcr,%0" : "=g" (old_fpcr)); \
456 /* Set double precision / round to nearest. */ \
457 new_fpcr = (old_fpcr & ~0xf0) | 0x80; \
458 if (new_fpcr != old_fpcr) \
459 __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (new_fpcr)); \
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400460 } while (0)
Christian Heimesf051e432016-09-13 20:22:02 +0200461#define _Py_SET_53BIT_PRECISION_END \
462 do { \
463 if (new_fpcr != old_fpcr) \
464 __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (old_fpcr)); \
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400465 } while (0)
466#endif
467
Mark Dickinsona4262b92009-04-19 11:35:55 +0000468/* default definitions are empty */
469#ifndef HAVE_PY_SET_53BIT_PRECISION
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000470#define _Py_SET_53BIT_PRECISION_HEADER
471#define _Py_SET_53BIT_PRECISION_START
472#define _Py_SET_53BIT_PRECISION_END
473#endif
474
475/* If we can't guarantee 53-bit precision, don't use the code
476 in Python/dtoa.c, but fall back to standard code. This
477 means that repr of a float will be long (17 sig digits).
478
479 Realistically, there are two things that could go wrong:
480
481 (1) doubles aren't IEEE 754 doubles, or
482 (2) we're on x86 with the rounding precision set to 64-bits
483 (extended precision), and we don't know how to change
484 the rounding precision.
485 */
486
487#if !defined(DOUBLE_IS_LITTLE_ENDIAN_IEEE754) && \
488 !defined(DOUBLE_IS_BIG_ENDIAN_IEEE754) && \
489 !defined(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754)
490#define PY_NO_SHORT_FLOAT_REPR
491#endif
492
Mark Dickinson60fd0992009-04-18 10:16:35 +0000493/* double rounding is symptomatic of use of extended precision on x86. If
494 we're seeing double rounding, and we don't have any mechanism available for
495 changing the FPU rounding precision, then don't use Python/dtoa.c. */
Mark Dickinsona4262b92009-04-19 11:35:55 +0000496#if defined(X87_DOUBLE_ROUNDING) && !defined(HAVE_PY_SET_53BIT_PRECISION)
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000497#define PY_NO_SHORT_FLOAT_REPR
498#endif
499
500
Neal Norwitz80292642002-12-19 15:12:26 +0000501/* Py_DEPRECATED(version)
Neal Norwitz93344ab2002-12-19 15:24:11 +0000502 * Declare a variable, type, or function deprecated.
Neal Norwitz80292642002-12-19 15:12:26 +0000503 * Usage:
504 * extern int old_var Py_DEPRECATED(2.3);
505 * typedef int T1 Py_DEPRECATED(2.4);
506 * extern int x() Py_DEPRECATED(2.5);
507 */
Victor Stinnerc6944e72016-11-11 02:13:35 +0100508#if defined(__GNUC__) \
509 && ((__GNUC__ >= 4) || (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))
Neal Norwitz80292642002-12-19 15:12:26 +0000510#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
511#else
Tim Peters4643bd92002-12-28 21:56:08 +0000512#define Py_DEPRECATED(VERSION_UNUSED)
Neal Norwitz80292642002-12-19 15:12:26 +0000513#endif
514
Victor Stinnerc6944e72016-11-11 02:13:35 +0100515
Victor Stinnerc7a8f672016-11-15 15:13:40 +0100516/* _Py_HOT_FUNCTION
Victor Stinnerc6944e72016-11-11 02:13:35 +0100517 * The hot attribute on a function is used to inform the compiler that the
518 * function is a hot spot of the compiled program. The function is optimized
519 * more aggressively and on many target it is placed into special subsection of
520 * the text section so all hot functions appears close together improving
521 * locality.
522 *
523 * Usage:
Victor Stinnerb915bc32017-01-11 01:07:03 +0100524 * int _Py_HOT_FUNCTION x(void) { return 3; }
Victor Stinnerc6944e72016-11-11 02:13:35 +0100525 *
526 * Issue #28618: This attribute must not be abused, otherwise it can have a
527 * negative effect on performance. Only the functions were Python spend most of
528 * its time must use it. Use a profiler when running performance benchmark
529 * suite to find these functions.
530 */
531#if defined(__GNUC__) \
532 && ((__GNUC__ >= 5) || (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))
533#define _Py_HOT_FUNCTION __attribute__((hot))
534#else
535#define _Py_HOT_FUNCTION
536#endif
537
Victor Stinnerb915bc32017-01-11 01:07:03 +0100538/* _Py_NO_INLINE
539 * Disable inlining on a function. For example, it helps to reduce the C stack
540 * consumption.
541 *
542 * Usage:
543 * int _Py_NO_INLINE x(void) { return 3; }
544 */
Serhiy Storchakac5734992018-07-24 10:55:47 +0300545#if defined(_MSC_VER)
546# define _Py_NO_INLINE __declspec(noinline)
547#elif defined(__GNUC__) || defined(__clang__)
548# define _Py_NO_INLINE __attribute__ ((noinline))
Victor Stinnerb915bc32017-01-11 01:07:03 +0100549#else
550# define _Py_NO_INLINE
551#endif
552
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000553/**************************************************************************
554Prototypes that are missing from the standard include files on some systems
555(and possibly only some versions of such systems.)
556
557Please be conservative with adding new ones, document them and enclose them
558in platform-specific #ifdefs.
559**************************************************************************/
560
561#ifdef SOLARIS
562/* Unchecked */
563extern int gethostname(char *, int);
564#endif
565
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000566#ifdef HAVE__GETPTY
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000567#include <sys/types.h> /* we need to import mode_t */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000568extern char * _getpty(int *, int, mode_t, int);
569#endif
570
Georg Brandlf78e02b2008-06-10 17:40:04 +0000571/* On QNX 6, struct termio must be declared by including sys/termio.h
572 if TCGETA, TCSETA, TCSETAW, or TCSETAF are used. sys/termio.h must
573 be included before termios.h or it will generate an error. */
Stefan Krah2cbbed62012-11-19 00:07:18 +0100574#if defined(HAVE_SYS_TERMIO_H) && !defined(__hpux)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000575#include <sys/termio.h>
576#endif
577
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000578
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000579/* On 4.4BSD-descendants, ctype functions serves the whole range of
580 * wchar_t character set rather than single byte code points only.
581 * This characteristic can break some operations of string object
582 * including str.upper() and str.split() on UTF-8 locales. This
583 * workaround was provided by Tim Robbins of FreeBSD project.
584 */
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000585
Ronald Oussoren501aeff2010-04-18 15:02:38 +0000586#if defined(__APPLE__)
Victor Stinner13ff2452018-01-22 18:32:50 +0100587# define _PY_PORT_CTYPE_UTF8_ISSUE
Ronald Oussoren501aeff2010-04-18 15:02:38 +0000588#endif
589
590#ifdef _PY_PORT_CTYPE_UTF8_ISSUE
Ned Deily7659aab2016-08-15 03:07:26 -0400591#ifndef __cplusplus
592 /* The workaround below is unsafe in C++ because
593 * the <locale> defines these symbols as real functions,
594 * with a slightly different signature.
595 * See issue #10910
596 */
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000597#include <ctype.h>
598#include <wctype.h>
599#undef isalnum
600#define isalnum(c) iswalnum(btowc(c))
601#undef isalpha
602#define isalpha(c) iswalpha(btowc(c))
603#undef islower
604#define islower(c) iswlower(btowc(c))
605#undef isspace
606#define isspace(c) iswspace(btowc(c))
607#undef isupper
608#define isupper(c) iswupper(btowc(c))
609#undef tolower
610#define tolower(c) towlower(btowc(c))
611#undef toupper
612#define toupper(c) towupper(btowc(c))
613#endif
Ned Deily7659aab2016-08-15 03:07:26 -0400614#endif
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000615
616
Mark Hammond8235ea12002-07-19 06:55:41 +0000617/* Declarations for symbol visibility.
618
619 PyAPI_FUNC(type): Declares a public Python API function and return type
Tim Peters4643bd92002-12-28 21:56:08 +0000620 PyAPI_DATA(type): Declares public Python data and its type
Mark Hammond8235ea12002-07-19 06:55:41 +0000621 PyMODINIT_FUNC: A Python module init function. If these functions are
Tim Peters4643bd92002-12-28 21:56:08 +0000622 inside the Python core, they are private to the core.
623 If in an extension module, it may be declared with
Mark Hammond8235ea12002-07-19 06:55:41 +0000624 external linkage depending on the platform.
625
626 As a number of platforms support/require "__declspec(dllimport/dllexport)",
627 we support a HAVE_DECLSPEC_DLL macro to save duplication.
628*/
629
Tim Peters4643bd92002-12-28 21:56:08 +0000630/*
Michael W. Hudsonf163d102003-02-10 19:36:46 +0000631 All windows ports, except cygwin, are handled in PC/pyconfig.h.
632
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000633 Cygwin is the only other autoconf platform requiring special
634 linkage handling and it uses __declspec().
Mark Hammond8235ea12002-07-19 06:55:41 +0000635*/
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000636#if defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000637# define HAVE_DECLSPEC_DLL
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000638#endif
Mark Hammond8235ea12002-07-19 06:55:41 +0000639
Jason Tishler30765592003-09-04 11:04:06 +0000640/* only get special linkage if built as shared or platform is Cygwin */
641#if defined(Py_ENABLE_SHARED) || defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000642# if defined(HAVE_DECLSPEC_DLL)
Eric Snowfc1bf872017-09-11 18:30:43 -0700643# if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_BUILTIN)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000644# define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE
645# define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE
Daniel Stutzbach38615992010-09-14 16:02:01 +0000646 /* module init functions inside the core need no external linkage */
647 /* except for Cygwin to handle embedding */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000648# if defined(__CYGWIN__)
649# define PyMODINIT_FUNC __declspec(dllexport) PyObject*
650# else /* __CYGWIN__ */
651# define PyMODINIT_FUNC PyObject*
652# endif /* __CYGWIN__ */
653# else /* Py_BUILD_CORE */
Daniel Stutzbach38615992010-09-14 16:02:01 +0000654 /* Building an extension module, or an embedded situation */
655 /* public Python functions and data are imported */
656 /* Under Cygwin, auto-import functions to prevent compilation */
657 /* failures similar to those described at the bottom of 4.1: */
658 /* http://docs.python.org/extending/windows.html#a-cookbook-approach */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659# if !defined(__CYGWIN__)
660# define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE
661# endif /* !__CYGWIN__ */
662# define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE
Daniel Stutzbach38615992010-09-14 16:02:01 +0000663 /* module init functions outside the core must be exported */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000664# if defined(__cplusplus)
665# define PyMODINIT_FUNC extern "C" __declspec(dllexport) PyObject*
666# else /* __cplusplus */
667# define PyMODINIT_FUNC __declspec(dllexport) PyObject*
668# endif /* __cplusplus */
669# endif /* Py_BUILD_CORE */
Joseph Shen677ab992017-03-03 21:44:51 +0800670# endif /* HAVE_DECLSPEC_DLL */
Mark Hammond8235ea12002-07-19 06:55:41 +0000671#endif /* Py_ENABLE_SHARED */
672
673/* If no external linkage macros defined by now, create defaults */
674#ifndef PyAPI_FUNC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000675# define PyAPI_FUNC(RTYPE) RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000676#endif
677#ifndef PyAPI_DATA
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000678# define PyAPI_DATA(RTYPE) extern RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000679#endif
680#ifndef PyMODINIT_FUNC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681# if defined(__cplusplus)
682# define PyMODINIT_FUNC extern "C" PyObject*
683# else /* __cplusplus */
684# define PyMODINIT_FUNC PyObject*
685# endif /* __cplusplus */
Mark Hammond8235ea12002-07-19 06:55:41 +0000686#endif
687
Fred Draked5fadf72000-09-26 05:46:01 +0000688/* limits.h constants that may be missing */
689
690#ifndef INT_MAX
691#define INT_MAX 2147483647
692#endif
693
694#ifndef LONG_MAX
695#if SIZEOF_LONG == 4
696#define LONG_MAX 0X7FFFFFFFL
697#elif SIZEOF_LONG == 8
698#define LONG_MAX 0X7FFFFFFFFFFFFFFFL
699#else
700#error "could not set LONG_MAX in pyport.h"
701#endif
702#endif
703
704#ifndef LONG_MIN
705#define LONG_MIN (-LONG_MAX-1)
706#endif
707
Tim Petersd57731f2000-10-05 01:42:25 +0000708#ifndef LONG_BIT
709#define LONG_BIT (8 * SIZEOF_LONG)
710#endif
711
712#if LONG_BIT != 8 * SIZEOF_LONG
713/* 04-Oct-2000 LONG_BIT is apparently (mis)defined as 64 on some recent
714 * 32-bit platforms using gcc. We try to catch that here at compile-time
715 * rather than waiting for integer multiplication to trigger bogus
716 * overflows.
717 */
Andrew M. Kuchling234fb632001-01-12 15:06:28 +0000718#error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
Tim Petersd57731f2000-10-05 01:42:25 +0000719#endif
720
Tim Peters7d3a5112000-07-08 04:17:21 +0000721#ifdef __cplusplus
722}
723#endif
724
Neil Schemenauer15691082001-10-23 02:20:37 +0000725/*
726 * Hide GCC attributes from compilers that don't support them.
727 */
Guido van Rossumbd67d6f2001-10-27 21:16:16 +0000728#if (!defined(__GNUC__) || __GNUC__ < 2 || \
Skip Montanaro7a98be22007-08-16 14:35:24 +0000729 (__GNUC__ == 2 && __GNUC_MINOR__ < 7) )
Neil Schemenauer96aa0ac2002-09-15 14:09:54 +0000730#define Py_GCC_ATTRIBUTE(x)
731#else
732#define Py_GCC_ATTRIBUTE(x) __attribute__(x)
Neil Schemenauer15691082001-10-23 02:20:37 +0000733#endif
734
Thomas Wouters89f507f2006-12-13 04:49:30 +0000735/*
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000736 * Specify alignment on compilers that support it.
737 */
738#if defined(__GNUC__) && __GNUC__ >= 3
739#define Py_ALIGNED(x) __attribute__((aligned(x)))
740#else
741#define Py_ALIGNED(x)
742#endif
743
Nicholas Bastin9ba301e2004-07-15 15:54:05 +0000744/* Eliminate end-of-loop code not reached warnings from SunPro C
745 * when using do{...}while(0) macros
746 */
747#ifdef __SUNPRO_C
748#pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
749#endif
750
Thomas Wouters477c8d52006-05-27 19:21:47 +0000751#ifndef Py_LL
752#define Py_LL(x) x##LL
753#endif
754
755#ifndef Py_ULL
756#define Py_ULL(x) Py_LL(x##U)
757#endif
758
Benjamin Peterson0c212142016-09-20 20:39:33 -0700759#define Py_VA_COPY va_copy
Alexander Belopolskyf0f45142010-08-11 17:31:17 +0000760
Christian Heimes743e0cd2012-10-17 23:52:17 +0200761/*
Georg Brandl3962d5e2012-10-28 08:48:28 +0100762 * Convenient macros to deal with endianness of the platform. WORDS_BIGENDIAN is
Christian Heimes743e0cd2012-10-17 23:52:17 +0200763 * detected by configure and defined in pyconfig.h. The code in pyconfig.h
Terry Jan Reedy8e7586b2013-03-11 18:38:13 -0400764 * also takes care of Apple's universal builds.
Christian Heimes743e0cd2012-10-17 23:52:17 +0200765 */
766
767#ifdef WORDS_BIGENDIAN
768#define PY_BIG_ENDIAN 1
769#define PY_LITTLE_ENDIAN 0
770#else
771#define PY_BIG_ENDIAN 0
772#define PY_LITTLE_ENDIAN 1
773#endif
774
Eric Snowfc1bf872017-09-11 18:30:43 -0700775#if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_BUILTIN)
Steve Dower8fc89802015-04-12 00:26:27 -0400776/*
777 * Macros to protect CRT calls against instant termination when passed an
778 * invalid parameter (issue23524).
779 */
780#if defined _MSC_VER && _MSC_VER >= 1900
781
782extern _invalid_parameter_handler _Py_silent_invalid_parameter_handler;
783#define _Py_BEGIN_SUPPRESS_IPH { _invalid_parameter_handler _Py_old_handler = \
784 _set_thread_local_invalid_parameter_handler(_Py_silent_invalid_parameter_handler);
785#define _Py_END_SUPPRESS_IPH _set_thread_local_invalid_parameter_handler(_Py_old_handler); }
786
787#else
788
789#define _Py_BEGIN_SUPPRESS_IPH
790#define _Py_END_SUPPRESS_IPH
791
792#endif /* _MSC_VER >= 1900 */
793#endif /* Py_BUILD_CORE */
794
Stefan Krah1f9eb872016-05-22 17:35:34 +0200795#ifdef __ANDROID__
xdegayec06c22e2017-11-23 11:44:38 +0100796/* The Android langinfo.h header is not used. */
797#undef HAVE_LANGINFO_H
798#undef CODESET
Stefan Krah1f9eb872016-05-22 17:35:34 +0200799#endif
800
Victor Stinner850a18e2017-10-24 16:53:32 -0700801/* Maximum value of the Windows DWORD type */
802#define PY_DWORD_MAX 4294967295U
803
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200804/* This macro used to tell whether Python was built with multithreading
805 * enabled. Now multithreading is always enabled, but keep the macro
806 * for compatibility.
807 */
808#ifndef WITH_THREAD
809#define WITH_THREAD
810#endif
811
Tim Peters7d3a5112000-07-08 04:17:21 +0000812#endif /* Py_PYPORT_H */