blob: 3c71f30bce16fe0cea570e4cdfef83bb15f74813 [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
Victor Stinner5c75f372019-04-17 23:02:26 +02008
9/* Defines to build Python and its standard library:
10 *
11 * - Py_BUILD_CORE: Build Python core. Give access to Python internals, but
12 * should not be used by third-party modules.
13 * - Py_BUILD_CORE_BUILTIN: Build a Python stdlib module as a built-in module.
14 * - Py_BUILD_CORE_MODULE: Build a Python stdlib module as a dynamic library.
15 *
16 * Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE imply Py_BUILD_CORE.
17 *
18 * On Windows, Py_BUILD_CORE_MODULE exports "PyInit_xxx" symbol, whereas
19 * Py_BUILD_CORE_BUILTIN does not.
20 */
21#if defined(Py_BUILD_CORE_BUILTIN) && !defined(Py_BUILD_CORE)
22# define Py_BUILD_CORE
23#endif
24#if defined(Py_BUILD_CORE_MODULE) && !defined(Py_BUILD_CORE)
25# define Py_BUILD_CORE
26#endif
27
28
Tim Peters7d3a5112000-07-08 04:17:21 +000029/**************************************************************************
30Symbols and macros to supply platform-independent interfaces to basic
Tim Peters1be46842000-07-23 18:10:18 +000031C language & library operations whose spellings vary across platforms.
Tim Peters7d3a5112000-07-08 04:17:21 +000032
33Please try to make documentation here as clear as possible: by definition,
34the stuff here is trying to illuminate C's darkest corners.
35
36Config #defines referenced here:
37
38SIGNED_RIGHT_SHIFT_ZERO_FILLS
39Meaning: To be defined iff i>>j does not extend the sign bit when i is a
40 signed integral type and i < 0.
41Used in: Py_ARITHMETIC_RIGHT_SHIFT
Tim Peters1be46842000-07-23 18:10:18 +000042
Tim Peters8315ea52000-07-23 19:28:35 +000043Py_DEBUG
44Meaning: Extra checks compiled in for debug mode.
45Used in: Py_SAFE_DOWNCAST
Barry Warsawfd847b22000-08-18 04:48:18 +000046
Tim Peters7d3a5112000-07-08 04:17:21 +000047**************************************************************************/
48
Barry Warsawfd847b22000-08-18 04:48:18 +000049/* typedefs for some C9X-defined synonyms for integral types.
50 *
51 * The names in Python are exactly the same as the C9X names, except with a
52 * Py_ prefix. Until C9X is universally implemented, this is the only way
53 * to ensure that Python gets reliable names that don't conflict with names
54 * in non-Python code that are playing their own tricks to define the C9X
55 * names.
56 *
57 * NOTE: don't go nuts here! Python has no use for *most* of the C9X
58 * integral synonyms. Only define the ones we actually need.
59 */
60
n.d. parkerf7eda382017-03-08 19:24:22 +010061/* long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. */
Benjamin Peterson0d5742d2016-12-07 23:54:28 -080062#ifndef HAVE_LONG_LONG
Victor Stinnera251fb02017-01-05 22:58:53 +010063#define HAVE_LONG_LONG 1
Benjamin Peterson0d5742d2016-12-07 23:54:28 -080064#endif
Martin v. Löwisb9a0f912003-03-29 10:06:18 +000065#ifndef PY_LONG_LONG
66#define PY_LONG_LONG long long
Guido van Rossumcd16bf62007-06-13 18:07:49 +000067/* If LLONG_MAX is defined in limits.h, use that. */
68#define PY_LLONG_MIN LLONG_MIN
69#define PY_LLONG_MAX LLONG_MAX
70#define PY_ULLONG_MAX ULLONG_MAX
Barry Warsawfd847b22000-08-18 04:48:18 +000071#endif
Barry Warsawfd847b22000-08-18 04:48:18 +000072
Mark Dickinsonbd792642009-03-18 20:06:12 +000073#define PY_UINT32_T uint32_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000074#define PY_UINT64_T uint64_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000075
76/* Signed variants of the above */
Mark Dickinsonbd792642009-03-18 20:06:12 +000077#define PY_INT32_T int32_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000078#define PY_INT64_T int64_t
Mark Dickinsonbd792642009-03-18 20:06:12 +000079
80/* If PYLONG_BITS_IN_DIGIT is not defined then we'll use 30-bit digits if all
81 the necessary integer types are available, and we're on a 64-bit platform
82 (as determined by SIZEOF_VOID_P); otherwise we use 15-bit digits. */
83
84#ifndef PYLONG_BITS_IN_DIGIT
Benjamin Peterson4fe55102016-09-06 11:58:01 -070085#if SIZEOF_VOID_P >= 8
Mark Dickinsonbd792642009-03-18 20:06:12 +000086#define PYLONG_BITS_IN_DIGIT 30
87#else
88#define PYLONG_BITS_IN_DIGIT 15
89#endif
90#endif
91
Barry Warsawfd847b22000-08-18 04:48:18 +000092/* uintptr_t is the C9X name for an unsigned integral type such that a
93 * legitimate void* can be cast to uintptr_t and then back to void* again
Tim Peters79248aa2001-08-29 21:37:10 +000094 * without loss of information. Similarly for intptr_t, wrt a signed
95 * integral type.
Barry Warsawfd847b22000-08-18 04:48:18 +000096 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000097typedef uintptr_t Py_uintptr_t;
98typedef intptr_t Py_intptr_t;
Tim Peters79248aa2001-08-29 21:37:10 +000099
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000100/* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
101 * sizeof(size_t). C99 doesn't define such a thing directly (size_t is an
102 * unsigned integral type). See PEP 353 for details.
103 */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000104#ifdef HAVE_SSIZE_T
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105typedef ssize_t Py_ssize_t;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000106#elif SIZEOF_VOID_P == SIZEOF_SIZE_T
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000107typedef Py_intptr_t Py_ssize_t;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000108#else
109# error "Python needs a typedef for Py_ssize_t in pyport.h."
110#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000111
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000112/* Py_hash_t is the same size as a pointer. */
Christian Heimes985ecdc2013-11-20 11:46:18 +0100113#define SIZEOF_PY_HASH_T SIZEOF_SIZE_T
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000114typedef Py_ssize_t Py_hash_t;
Benjamin Peterson8035bc52010-10-23 16:20:50 +0000115/* Py_uhash_t is the unsigned equivalent needed to calculate numeric hash. */
Christian Heimes985ecdc2013-11-20 11:46:18 +0100116#define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T
Benjamin Peterson8035bc52010-10-23 16:20:50 +0000117typedef size_t Py_uhash_t;
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000118
Larry Hastingsebdcb502013-11-23 14:54:00 -0800119/* Only used for compatibility with code that may not be PY_SSIZE_T_CLEAN. */
120#ifdef PY_SSIZE_T_CLEAN
121typedef Py_ssize_t Py_ssize_clean_t;
122#else
123typedef int Py_ssize_clean_t;
124#endif
125
Benjamin Peterson2f8bfef2016-09-07 09:26:18 -0700126/* Largest possible value of size_t. */
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000127#define PY_SIZE_MAX SIZE_MAX
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000128
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000129/* Largest positive value of type Py_ssize_t. */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000130#define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000131/* Smallest negative value of type Py_ssize_t. */
132#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
133
Victor Stinnerd36cf5f2020-06-10 18:38:05 +0200134/* Macro kept for backward compatibility: use "z" in new code.
135 *
136 * PY_FORMAT_SIZE_T is a platform-specific modifier for use in a printf
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000137 * format to convert an argument with the width of a size_t or Py_ssize_t.
Inada Naokid765d812019-08-31 08:48:12 +0900138 * C99 introduced "z" for this purpose, but old MSVCs had not supported it.
139 * Since MSVC supports "z" since (at least) 2015, we can just use "z"
140 * for new code.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000141 *
142 * These "high level" Python format functions interpret "z" correctly on
143 * all platforms (Python interprets the format string itself, and does whatever
144 * the platform C requires to convert a size_t/Py_ssize_t argument):
145 *
Christian Heimes72b710a2008-05-26 13:28:38 +0000146 * PyBytes_FromFormat
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000147 * PyErr_Format
Christian Heimes72b710a2008-05-26 13:28:38 +0000148 * PyBytes_FromFormatV
Walter Dörwald7696ed72007-05-31 15:51:35 +0000149 * PyUnicode_FromFormatV
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000150 *
151 * Lower-level uses require that you interpolate the correct format modifier
152 * yourself (e.g., calling printf, fprintf, sprintf, PyOS_snprintf); for
153 * example,
154 *
155 * Py_ssize_t index;
156 * fprintf(stderr, "index %" PY_FORMAT_SIZE_T "d sucks\n", index);
157 *
Inada Naokid765d812019-08-31 08:48:12 +0900158 * That will expand to %zd or to something else correct for a Py_ssize_t on
159 * the platform.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000160 */
161#ifndef PY_FORMAT_SIZE_T
Inada Naokid765d812019-08-31 08:48:12 +0900162# define PY_FORMAT_SIZE_T "z"
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000163#endif
Martin v. Löwis18e16552006-02-15 17:27:45 +0000164
Thomas Wouters477c8d52006-05-27 19:21:47 +0000165/* Py_LOCAL can be used instead of static to get the fastest possible calling
166 * convention for functions that are local to a given module.
167 *
168 * Py_LOCAL_INLINE does the same thing, and also explicitly requests inlining,
169 * for platforms that support that.
170 *
171 * If PY_LOCAL_AGGRESSIVE is defined before python.h is included, more
Berker Peksag4882cac2015-04-14 09:30:01 +0300172 * "aggressive" inlining/optimization is enabled for the entire module. This
Thomas Wouters477c8d52006-05-27 19:21:47 +0000173 * may lead to code bloat, and may slow things down for those reasons. It may
174 * also lead to errors, if the code relies on pointer aliasing. Use with
175 * care.
176 *
177 * NOTE: You can only use this for functions that are entirely local to a
178 * module; functions that are exported via method tables, callbacks, etc,
179 * should keep using static.
180 */
181
Thomas Wouters477c8d52006-05-27 19:21:47 +0000182#if defined(_MSC_VER)
Victor Stinner18618e652018-10-25 17:28:11 +0200183# if defined(PY_LOCAL_AGGRESSIVE)
184 /* enable more aggressive optimization for visual studio */
185# pragma optimize("agtw", on)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000186#endif
Victor Stinner18618e652018-10-25 17:28:11 +0200187 /* ignore warnings if the compiler decides not to inline a function */
188# pragma warning(disable: 4710)
189 /* fastest possible local call under MSVC */
190# define Py_LOCAL(type) static type __fastcall
191# define Py_LOCAL_INLINE(type) static __inline type __fastcall
Thomas Wouters477c8d52006-05-27 19:21:47 +0000192#else
Victor Stinner18618e652018-10-25 17:28:11 +0200193# define Py_LOCAL(type) static type
194# define Py_LOCAL_INLINE(type) static inline type
Thomas Wouters477c8d52006-05-27 19:21:47 +0000195#endif
196
Christian Heimesf051e432016-09-13 20:22:02 +0200197/* Py_MEMCPY is kept for backwards compatibility,
198 * see https://bugs.python.org/issue28126 */
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000199#define Py_MEMCPY memcpy
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000200
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000201#include <stdlib.h>
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000202
Mark Dickinsona4962cb2009-11-28 12:35:42 +0000203#ifdef HAVE_IEEEFP_H
204#include <ieeefp.h> /* needed for 'finite' declaration on some platforms */
205#endif
206
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000207#include <math.h> /* Moved here from the math section, before extern "C" */
208
209/********************************************
210 * WRAPPER FOR <time.h> and/or <sys/time.h> *
211 ********************************************/
212
213#ifdef TIME_WITH_SYS_TIME
214#include <sys/time.h>
215#include <time.h>
216#else /* !TIME_WITH_SYS_TIME */
217#ifdef HAVE_SYS_TIME_H
218#include <sys/time.h>
219#else /* !HAVE_SYS_TIME_H */
220#include <time.h>
221#endif /* !HAVE_SYS_TIME_H */
222#endif /* !TIME_WITH_SYS_TIME */
223
224
225/******************************
226 * WRAPPER FOR <sys/select.h> *
227 ******************************/
228
229/* NB caller must include <sys/types.h> */
230
231#ifdef HAVE_SYS_SELECT_H
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000232#include <sys/select.h>
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000233#endif /* !HAVE_SYS_SELECT_H */
234
Tim Peters60f42b52001-01-18 03:03:16 +0000235/*******************************
236 * stat() and fstat() fiddling *
237 *******************************/
238
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000239#ifdef HAVE_SYS_STAT_H
Tim Peters60f42b52001-01-18 03:03:16 +0000240#include <sys/stat.h>
241#elif defined(HAVE_STAT_H)
242#include <stat.h>
243#endif
244
Christian Heimes99d61352013-06-23 23:56:05 +0200245#ifndef S_IFMT
Martin v. Löwisf9836ba2001-08-08 10:28:06 +0000246/* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */
Christian Heimes99d61352013-06-23 23:56:05 +0200247#define S_IFMT 0170000
248#endif
249
250#ifndef S_IFLNK
251/* Windows doesn't define S_IFLNK but posixmodule.c maps
252 * IO_REPARSE_TAG_SYMLINK to S_IFLNK */
253# define S_IFLNK 0120000
Martin v. Löwisf9836ba2001-08-08 10:28:06 +0000254#endif
255
256#ifndef S_ISREG
257#define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
258#endif
259
260#ifndef S_ISDIR
261#define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
262#endif
263
Victor Stinnerc6ebd162013-06-23 01:49:42 +0200264#ifndef S_ISCHR
265#define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR)
266#endif
267
Tim Peters7d3a5112000-07-08 04:17:21 +0000268#ifdef __cplusplus
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000269/* Move this down here since some C++ #include's don't like to be included
270 inside an extern "C" */
Tim Peters7d3a5112000-07-08 04:17:21 +0000271extern "C" {
272#endif
273
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000274
Tim Peters7d3a5112000-07-08 04:17:21 +0000275/* Py_ARITHMETIC_RIGHT_SHIFT
276 * C doesn't define whether a right-shift of a signed integer sign-extends
277 * or zero-fills. Here a macro to force sign extension:
278 * Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J)
Mark Dickinson16f966e2009-03-20 23:23:15 +0000279 * Return I >> J, forcing sign extension. Arithmetically, return the
280 * floor of I/2**J.
Tim Peters7d3a5112000-07-08 04:17:21 +0000281 * Requirements:
Mark Dickinson16f966e2009-03-20 23:23:15 +0000282 * I should have signed integer type. In the terminology of C99, this can
283 * be either one of the five standard signed integer types (signed char,
284 * short, int, long, long long) or an extended signed integer type.
285 * J is an integer >= 0 and strictly less than the number of bits in the
286 * type of I (because C doesn't define what happens for J outside that
287 * range either).
288 * TYPE used to specify the type of I, but is now ignored. It's been left
289 * in for backwards compatibility with versions <= 2.6 or 3.0.
Tim Peters7d3a5112000-07-08 04:17:21 +0000290 * Caution:
291 * I may be evaluated more than once.
292 */
293#ifdef SIGNED_RIGHT_SHIFT_ZERO_FILLS
294#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 ((I) < 0 ? -1-((-1-(I)) >> (J)) : (I) >> (J))
Tim Peters7d3a5112000-07-08 04:17:21 +0000296#else
297#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
298#endif
299
Tim Peters39dce292000-08-15 03:34:48 +0000300/* Py_FORCE_EXPANSION(X)
Tim Peters1be46842000-07-23 18:10:18 +0000301 * "Simply" returns its argument. However, macro expansions within the
302 * argument are evaluated. This unfortunate trickery is needed to get
303 * token-pasting to work as desired in some cases.
304 */
305#define Py_FORCE_EXPANSION(X) X
306
Tim Peters8315ea52000-07-23 19:28:35 +0000307/* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)
308 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
309 * assert-fails if any information is lost.
310 * Caution:
311 * VALUE may be evaluated more than once.
312 */
313#ifdef Py_DEBUG
314#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
Tim Peters8315ea52000-07-23 19:28:35 +0000316#else
317#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
318#endif
319
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000320/* Py_SET_ERRNO_ON_MATH_ERROR(x)
Tim Petersa40c7932001-09-05 22:36:56 +0000321 * If a libm function did not set errno, but it looks like the result
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000322 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
323 * to 0 before calling a libm function, and invoke this macro after,
324 * passing the function result.
Tim Petersa40c7932001-09-05 22:36:56 +0000325 * Caution:
326 * This isn't reliable. See Py_OVERFLOWED comments.
327 * X is evaluated more than once.
328 */
Guido van Rossum539c6622005-09-14 17:49:54 +0000329#if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__hpux) && defined(__ia64))
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000330#define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;
331#else
332#define _Py_SET_EDOM_FOR_NAN(X) ;
333#endif
334#define Py_SET_ERRNO_ON_MATH_ERROR(X) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000335 do { \
336 if (errno == 0) { \
337 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
338 errno = ERANGE; \
339 else _Py_SET_EDOM_FOR_NAN(X) \
340 } \
341 } while(0)
Tim Peters57f282a2001-09-05 05:38:10 +0000342
Hai Shi4346bad2019-09-23 21:20:47 -0500343/* Py_SET_ERANGE_IF_OVERFLOW(x)
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000344 * An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility.
345 */
346#define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
347
Tim Petersdc5a5082002-03-09 04:58:24 +0000348/* Py_ADJUST_ERANGE1(x)
349 * Py_ADJUST_ERANGE2(x, y)
350 * Set errno to 0 before calling a libm function, and invoke one of these
351 * macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful
352 * for functions returning complex results). This makes two kinds of
353 * adjustments to errno: (A) If it looks like the platform libm set
354 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
355 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
356 * effect, we're trying to force a useful implementation of C89 errno
357 * behavior.
358 * Caution:
359 * This isn't reliable. See Py_OVERFLOWED comments.
360 * X and Y may be evaluated more than once.
361 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362#define Py_ADJUST_ERANGE1(X) \
363 do { \
364 if (errno == 0) { \
365 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
366 errno = ERANGE; \
367 } \
368 else if (errno == ERANGE && (X) == 0.0) \
369 errno = 0; \
370 } while(0)
Tim Petersdc5a5082002-03-09 04:58:24 +0000371
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000372#define Py_ADJUST_ERANGE2(X, Y) \
373 do { \
374 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || \
375 (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) { \
376 if (errno == 0) \
377 errno = ERANGE; \
378 } \
379 else if (errno == ERANGE) \
380 errno = 0; \
381 } while(0)
Tim Petersdc5a5082002-03-09 04:58:24 +0000382
Mark Dickinsona4262b92009-04-19 11:35:55 +0000383/* The functions _Py_dg_strtod and _Py_dg_dtoa in Python/dtoa.c (which are
384 * required to support the short float repr introduced in Python 3.1) require
385 * that the floating-point unit that's being used for arithmetic operations
386 * on C doubles is set to use 53-bit precision. It also requires that the
387 * FPU rounding mode is round-half-to-even, but that's less often an issue.
388 *
389 * If your FPU isn't already set to 53-bit precision/round-half-to-even, and
390 * you want to make use of _Py_dg_strtod and _Py_dg_dtoa, then you should
391 *
392 * #define HAVE_PY_SET_53BIT_PRECISION 1
393 *
394 * and also give appropriate definitions for the following three macros:
395 *
396 * _PY_SET_53BIT_PRECISION_START : store original FPU settings, and
397 * set FPU to 53-bit precision/round-half-to-even
398 * _PY_SET_53BIT_PRECISION_END : restore original FPU settings
399 * _PY_SET_53BIT_PRECISION_HEADER : any variable declarations needed to
400 * use the two macros above.
401 *
402 * The macros are designed to be used within a single C function: see
403 * Python/pystrtod.c for an example of their use.
404 */
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000405
Mark Dickinsona4262b92009-04-19 11:35:55 +0000406/* get and set x87 control word for gcc/x86 */
Mark Dickinson7abf8d42009-04-18 20:17:52 +0000407#ifdef HAVE_GCC_ASM_FOR_X87
Mark Dickinsona4262b92009-04-19 11:35:55 +0000408#define HAVE_PY_SET_53BIT_PRECISION 1
409/* _Py_get/set_387controlword functions are defined in Python/pymath.c */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410#define _Py_SET_53BIT_PRECISION_HEADER \
411 unsigned short old_387controlword, new_387controlword
412#define _Py_SET_53BIT_PRECISION_START \
413 do { \
414 old_387controlword = _Py_get_387controlword(); \
415 new_387controlword = (old_387controlword & ~0x0f00) | 0x0200; \
416 if (new_387controlword != old_387controlword) \
417 _Py_set_387controlword(new_387controlword); \
418 } while (0)
419#define _Py_SET_53BIT_PRECISION_END \
420 if (new_387controlword != old_387controlword) \
421 _Py_set_387controlword(old_387controlword)
Mark Dickinsona4262b92009-04-19 11:35:55 +0000422#endif
423
Mark Dickinson18e3d812012-04-15 15:10:56 +0100424/* get and set x87 control word for VisualStudio/x86 */
Paul Monson11efd792019-04-17 18:09:16 -0700425#if defined(_MSC_VER) && !defined(_WIN64) && !defined(_M_ARM) /* x87 not supported in 64-bit or ARM */
Mark Dickinson18e3d812012-04-15 15:10:56 +0100426#define HAVE_PY_SET_53BIT_PRECISION 1
427#define _Py_SET_53BIT_PRECISION_HEADER \
428 unsigned int old_387controlword, new_387controlword, out_387controlword
429/* We use the __control87_2 function to set only the x87 control word.
430 The SSE control word is unaffected. */
431#define _Py_SET_53BIT_PRECISION_START \
432 do { \
433 __control87_2(0, 0, &old_387controlword, NULL); \
434 new_387controlword = \
435 (old_387controlword & ~(_MCW_PC | _MCW_RC)) | (_PC_53 | _RC_NEAR); \
436 if (new_387controlword != old_387controlword) \
437 __control87_2(new_387controlword, _MCW_PC | _MCW_RC, \
438 &out_387controlword, NULL); \
439 } while (0)
440#define _Py_SET_53BIT_PRECISION_END \
441 do { \
442 if (new_387controlword != old_387controlword) \
443 __control87_2(old_387controlword, _MCW_PC | _MCW_RC, \
444 &out_387controlword, NULL); \
445 } while (0)
446#endif
447
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400448#ifdef HAVE_GCC_ASM_FOR_MC68881
449#define HAVE_PY_SET_53BIT_PRECISION 1
450#define _Py_SET_53BIT_PRECISION_HEADER \
451 unsigned int old_fpcr, new_fpcr
Christian Heimesf051e432016-09-13 20:22:02 +0200452#define _Py_SET_53BIT_PRECISION_START \
453 do { \
454 __asm__ ("fmove.l %%fpcr,%0" : "=g" (old_fpcr)); \
455 /* Set double precision / round to nearest. */ \
456 new_fpcr = (old_fpcr & ~0xf0) | 0x80; \
457 if (new_fpcr != old_fpcr) \
458 __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (new_fpcr)); \
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400459 } while (0)
Christian Heimesf051e432016-09-13 20:22:02 +0200460#define _Py_SET_53BIT_PRECISION_END \
461 do { \
462 if (new_fpcr != old_fpcr) \
463 __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (old_fpcr)); \
Benjamin Peterson8bdeb162014-04-17 00:00:31 -0400464 } while (0)
465#endif
466
Mark Dickinsona4262b92009-04-19 11:35:55 +0000467/* default definitions are empty */
468#ifndef HAVE_PY_SET_53BIT_PRECISION
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000469#define _Py_SET_53BIT_PRECISION_HEADER
470#define _Py_SET_53BIT_PRECISION_START
471#define _Py_SET_53BIT_PRECISION_END
472#endif
473
474/* If we can't guarantee 53-bit precision, don't use the code
475 in Python/dtoa.c, but fall back to standard code. This
476 means that repr of a float will be long (17 sig digits).
477
478 Realistically, there are two things that could go wrong:
479
480 (1) doubles aren't IEEE 754 doubles, or
481 (2) we're on x86 with the rounding precision set to 64-bits
482 (extended precision), and we don't know how to change
483 the rounding precision.
484 */
485
486#if !defined(DOUBLE_IS_LITTLE_ENDIAN_IEEE754) && \
487 !defined(DOUBLE_IS_BIG_ENDIAN_IEEE754) && \
488 !defined(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754)
489#define PY_NO_SHORT_FLOAT_REPR
490#endif
491
Mark Dickinson60fd0992009-04-18 10:16:35 +0000492/* double rounding is symptomatic of use of extended precision on x86. If
493 we're seeing double rounding, and we don't have any mechanism available for
494 changing the FPU rounding precision, then don't use Python/dtoa.c. */
Mark Dickinsona4262b92009-04-19 11:35:55 +0000495#if defined(X87_DOUBLE_ROUNDING) && !defined(HAVE_PY_SET_53BIT_PRECISION)
Mark Dickinsonb08a53a2009-04-16 19:52:09 +0000496#define PY_NO_SHORT_FLOAT_REPR
497#endif
498
499
Neal Norwitz80292642002-12-19 15:12:26 +0000500/* Py_DEPRECATED(version)
Neal Norwitz93344ab2002-12-19 15:24:11 +0000501 * Declare a variable, type, or function deprecated.
Zackery Spytz3c8724f2019-05-28 09:16:33 -0600502 * The macro must be placed before the declaration.
Neal Norwitz80292642002-12-19 15:12:26 +0000503 * Usage:
Zackery Spytz3c8724f2019-05-28 09:16:33 -0600504 * Py_DEPRECATED(3.3) extern int old_var;
505 * Py_DEPRECATED(3.4) typedef int T1;
506 * Py_DEPRECATED(3.8) PyAPI_FUNC(int) Py_OldFunction(void);
Neal Norwitz80292642002-12-19 15:12:26 +0000507 */
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__))
Zackery Spytz3c8724f2019-05-28 09:16:33 -0600511#elif defined(_MSC_VER)
512#define Py_DEPRECATED(VERSION) __declspec(deprecated( \
513 "deprecated in " #VERSION))
Neal Norwitz80292642002-12-19 15:12:26 +0000514#else
Tim Peters4643bd92002-12-28 21:56:08 +0000515#define Py_DEPRECATED(VERSION_UNUSED)
Neal Norwitz80292642002-12-19 15:12:26 +0000516#endif
517
Victor Stinnerc6944e72016-11-11 02:13:35 +0100518
Victor Stinnerc7a8f672016-11-15 15:13:40 +0100519/* _Py_HOT_FUNCTION
Victor Stinnerc6944e72016-11-11 02:13:35 +0100520 * The hot attribute on a function is used to inform the compiler that the
521 * function is a hot spot of the compiled program. The function is optimized
522 * more aggressively and on many target it is placed into special subsection of
523 * the text section so all hot functions appears close together improving
524 * locality.
525 *
526 * Usage:
Victor Stinnerb915bc32017-01-11 01:07:03 +0100527 * int _Py_HOT_FUNCTION x(void) { return 3; }
Victor Stinnerc6944e72016-11-11 02:13:35 +0100528 *
529 * Issue #28618: This attribute must not be abused, otherwise it can have a
530 * negative effect on performance. Only the functions were Python spend most of
531 * its time must use it. Use a profiler when running performance benchmark
532 * suite to find these functions.
533 */
534#if defined(__GNUC__) \
535 && ((__GNUC__ >= 5) || (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))
536#define _Py_HOT_FUNCTION __attribute__((hot))
537#else
538#define _Py_HOT_FUNCTION
539#endif
540
Victor Stinnerb915bc32017-01-11 01:07:03 +0100541/* _Py_NO_INLINE
542 * Disable inlining on a function. For example, it helps to reduce the C stack
543 * consumption.
544 *
545 * Usage:
546 * int _Py_NO_INLINE x(void) { return 3; }
547 */
Serhiy Storchakac5734992018-07-24 10:55:47 +0300548#if defined(_MSC_VER)
549# define _Py_NO_INLINE __declspec(noinline)
550#elif defined(__GNUC__) || defined(__clang__)
551# define _Py_NO_INLINE __attribute__ ((noinline))
Victor Stinnerb915bc32017-01-11 01:07:03 +0100552#else
553# define _Py_NO_INLINE
554#endif
555
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000556/**************************************************************************
557Prototypes that are missing from the standard include files on some systems
558(and possibly only some versions of such systems.)
559
560Please be conservative with adding new ones, document them and enclose them
561in platform-specific #ifdefs.
562**************************************************************************/
563
564#ifdef SOLARIS
565/* Unchecked */
566extern int gethostname(char *, int);
567#endif
568
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000569#ifdef HAVE__GETPTY
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000570#include <sys/types.h> /* we need to import mode_t */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000571extern char * _getpty(int *, int, mode_t, int);
572#endif
573
Georg Brandlf78e02b2008-06-10 17:40:04 +0000574/* On QNX 6, struct termio must be declared by including sys/termio.h
575 if TCGETA, TCSETA, TCSETAW, or TCSETAF are used. sys/termio.h must
576 be included before termios.h or it will generate an error. */
Stefan Krah2cbbed62012-11-19 00:07:18 +0100577#if defined(HAVE_SYS_TERMIO_H) && !defined(__hpux)
Georg Brandlf78e02b2008-06-10 17:40:04 +0000578#include <sys/termio.h>
579#endif
580
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000581
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000582/* On 4.4BSD-descendants, ctype functions serves the whole range of
583 * wchar_t character set rather than single byte code points only.
584 * This characteristic can break some operations of string object
585 * including str.upper() and str.split() on UTF-8 locales. This
586 * workaround was provided by Tim Robbins of FreeBSD project.
587 */
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000588
Ronald Oussoren501aeff2010-04-18 15:02:38 +0000589#if defined(__APPLE__)
Victor Stinner13ff2452018-01-22 18:32:50 +0100590# define _PY_PORT_CTYPE_UTF8_ISSUE
Ronald Oussoren501aeff2010-04-18 15:02:38 +0000591#endif
592
593#ifdef _PY_PORT_CTYPE_UTF8_ISSUE
Ned Deily7659aab2016-08-15 03:07:26 -0400594#ifndef __cplusplus
595 /* The workaround below is unsafe in C++ because
596 * the <locale> defines these symbols as real functions,
597 * with a slightly different signature.
598 * See issue #10910
599 */
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000600#include <ctype.h>
601#include <wctype.h>
602#undef isalnum
603#define isalnum(c) iswalnum(btowc(c))
604#undef isalpha
605#define isalpha(c) iswalpha(btowc(c))
606#undef islower
607#define islower(c) iswlower(btowc(c))
608#undef isspace
609#define isspace(c) iswspace(btowc(c))
610#undef isupper
611#define isupper(c) iswupper(btowc(c))
612#undef tolower
613#define tolower(c) towlower(btowc(c))
614#undef toupper
615#define toupper(c) towupper(btowc(c))
616#endif
Ned Deily7659aab2016-08-15 03:07:26 -0400617#endif
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000618
619
Mark Hammond8235ea12002-07-19 06:55:41 +0000620/* Declarations for symbol visibility.
621
622 PyAPI_FUNC(type): Declares a public Python API function and return type
Tim Peters4643bd92002-12-28 21:56:08 +0000623 PyAPI_DATA(type): Declares public Python data and its type
Mark Hammond8235ea12002-07-19 06:55:41 +0000624 PyMODINIT_FUNC: A Python module init function. If these functions are
Tim Peters4643bd92002-12-28 21:56:08 +0000625 inside the Python core, they are private to the core.
626 If in an extension module, it may be declared with
Mark Hammond8235ea12002-07-19 06:55:41 +0000627 external linkage depending on the platform.
628
629 As a number of platforms support/require "__declspec(dllimport/dllexport)",
630 we support a HAVE_DECLSPEC_DLL macro to save duplication.
631*/
632
Tim Peters4643bd92002-12-28 21:56:08 +0000633/*
Michael W. Hudsonf163d102003-02-10 19:36:46 +0000634 All windows ports, except cygwin, are handled in PC/pyconfig.h.
635
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000636 Cygwin is the only other autoconf platform requiring special
637 linkage handling and it uses __declspec().
Mark Hammond8235ea12002-07-19 06:55:41 +0000638*/
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000639#if defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000640# define HAVE_DECLSPEC_DLL
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000641#endif
Mark Hammond8235ea12002-07-19 06:55:41 +0000642
Vinay Sajip0b60f642019-10-15 08:26:12 +0100643#include "exports.h"
644
Jason Tishler30765592003-09-04 11:04:06 +0000645/* only get special linkage if built as shared or platform is Cygwin */
646#if defined(Py_ENABLE_SHARED) || defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000647# if defined(HAVE_DECLSPEC_DLL)
Victor Stinner5c75f372019-04-17 23:02:26 +0200648# if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
Vinay Sajip0b60f642019-10-15 08:26:12 +0100649# define PyAPI_FUNC(RTYPE) Py_EXPORTED_SYMBOL RTYPE
650# define PyAPI_DATA(RTYPE) extern Py_EXPORTED_SYMBOL RTYPE
Daniel Stutzbach38615992010-09-14 16:02:01 +0000651 /* module init functions inside the core need no external linkage */
652 /* except for Cygwin to handle embedding */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000653# if defined(__CYGWIN__)
Vinay Sajip0b60f642019-10-15 08:26:12 +0100654# define PyMODINIT_FUNC Py_EXPORTED_SYMBOL PyObject*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000655# else /* __CYGWIN__ */
656# define PyMODINIT_FUNC PyObject*
657# endif /* __CYGWIN__ */
658# else /* Py_BUILD_CORE */
Daniel Stutzbach38615992010-09-14 16:02:01 +0000659 /* Building an extension module, or an embedded situation */
660 /* public Python functions and data are imported */
661 /* Under Cygwin, auto-import functions to prevent compilation */
662 /* failures similar to those described at the bottom of 4.1: */
663 /* http://docs.python.org/extending/windows.html#a-cookbook-approach */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000664# if !defined(__CYGWIN__)
Vinay Sajip0b60f642019-10-15 08:26:12 +0100665# define PyAPI_FUNC(RTYPE) Py_IMPORTED_SYMBOL RTYPE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000666# endif /* !__CYGWIN__ */
Vinay Sajip0b60f642019-10-15 08:26:12 +0100667# define PyAPI_DATA(RTYPE) extern Py_IMPORTED_SYMBOL RTYPE
Daniel Stutzbach38615992010-09-14 16:02:01 +0000668 /* module init functions outside the core must be exported */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000669# if defined(__cplusplus)
Vinay Sajip0b60f642019-10-15 08:26:12 +0100670# define PyMODINIT_FUNC extern "C" Py_EXPORTED_SYMBOL PyObject*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000671# else /* __cplusplus */
Vinay Sajip0b60f642019-10-15 08:26:12 +0100672# define PyMODINIT_FUNC Py_EXPORTED_SYMBOL PyObject*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673# endif /* __cplusplus */
674# endif /* Py_BUILD_CORE */
Joseph Shen677ab992017-03-03 21:44:51 +0800675# endif /* HAVE_DECLSPEC_DLL */
Mark Hammond8235ea12002-07-19 06:55:41 +0000676#endif /* Py_ENABLE_SHARED */
677
678/* If no external linkage macros defined by now, create defaults */
679#ifndef PyAPI_FUNC
Vinay Sajip0b60f642019-10-15 08:26:12 +0100680# define PyAPI_FUNC(RTYPE) Py_EXPORTED_SYMBOL RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000681#endif
682#ifndef PyAPI_DATA
Vinay Sajip0b60f642019-10-15 08:26:12 +0100683# define PyAPI_DATA(RTYPE) extern Py_EXPORTED_SYMBOL RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000684#endif
685#ifndef PyMODINIT_FUNC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000686# if defined(__cplusplus)
Vinay Sajip0b60f642019-10-15 08:26:12 +0100687# define PyMODINIT_FUNC extern "C" Py_EXPORTED_SYMBOL PyObject*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000688# else /* __cplusplus */
Vinay Sajip0b60f642019-10-15 08:26:12 +0100689# define PyMODINIT_FUNC Py_EXPORTED_SYMBOL PyObject*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000690# endif /* __cplusplus */
Mark Hammond8235ea12002-07-19 06:55:41 +0000691#endif
692
Fred Draked5fadf72000-09-26 05:46:01 +0000693/* limits.h constants that may be missing */
694
695#ifndef INT_MAX
696#define INT_MAX 2147483647
697#endif
698
699#ifndef LONG_MAX
700#if SIZEOF_LONG == 4
701#define LONG_MAX 0X7FFFFFFFL
702#elif SIZEOF_LONG == 8
703#define LONG_MAX 0X7FFFFFFFFFFFFFFFL
704#else
705#error "could not set LONG_MAX in pyport.h"
706#endif
707#endif
708
709#ifndef LONG_MIN
710#define LONG_MIN (-LONG_MAX-1)
711#endif
712
Tim Petersd57731f2000-10-05 01:42:25 +0000713#ifndef LONG_BIT
714#define LONG_BIT (8 * SIZEOF_LONG)
715#endif
716
717#if LONG_BIT != 8 * SIZEOF_LONG
718/* 04-Oct-2000 LONG_BIT is apparently (mis)defined as 64 on some recent
719 * 32-bit platforms using gcc. We try to catch that here at compile-time
720 * rather than waiting for integer multiplication to trigger bogus
721 * overflows.
722 */
Andrew M. Kuchling234fb632001-01-12 15:06:28 +0000723#error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
Tim Petersd57731f2000-10-05 01:42:25 +0000724#endif
725
Tim Peters7d3a5112000-07-08 04:17:21 +0000726#ifdef __cplusplus
727}
728#endif
729
Neil Schemenauer15691082001-10-23 02:20:37 +0000730/*
731 * Hide GCC attributes from compilers that don't support them.
732 */
Guido van Rossumbd67d6f2001-10-27 21:16:16 +0000733#if (!defined(__GNUC__) || __GNUC__ < 2 || \
Skip Montanaro7a98be22007-08-16 14:35:24 +0000734 (__GNUC__ == 2 && __GNUC_MINOR__ < 7) )
Neil Schemenauer96aa0ac2002-09-15 14:09:54 +0000735#define Py_GCC_ATTRIBUTE(x)
736#else
737#define Py_GCC_ATTRIBUTE(x) __attribute__(x)
Neil Schemenauer15691082001-10-23 02:20:37 +0000738#endif
739
Thomas Wouters89f507f2006-12-13 04:49:30 +0000740/*
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000741 * Specify alignment on compilers that support it.
742 */
743#if defined(__GNUC__) && __GNUC__ >= 3
744#define Py_ALIGNED(x) __attribute__((aligned(x)))
745#else
746#define Py_ALIGNED(x)
747#endif
748
Nicholas Bastin9ba301e2004-07-15 15:54:05 +0000749/* Eliminate end-of-loop code not reached warnings from SunPro C
750 * when using do{...}while(0) macros
751 */
752#ifdef __SUNPRO_C
753#pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
754#endif
755
Thomas Wouters477c8d52006-05-27 19:21:47 +0000756#ifndef Py_LL
757#define Py_LL(x) x##LL
758#endif
759
760#ifndef Py_ULL
761#define Py_ULL(x) Py_LL(x##U)
762#endif
763
Benjamin Peterson0c212142016-09-20 20:39:33 -0700764#define Py_VA_COPY va_copy
Alexander Belopolskyf0f45142010-08-11 17:31:17 +0000765
Christian Heimes743e0cd2012-10-17 23:52:17 +0200766/*
Georg Brandl3962d5e2012-10-28 08:48:28 +0100767 * Convenient macros to deal with endianness of the platform. WORDS_BIGENDIAN is
Christian Heimes743e0cd2012-10-17 23:52:17 +0200768 * detected by configure and defined in pyconfig.h. The code in pyconfig.h
Terry Jan Reedy8e7586b2013-03-11 18:38:13 -0400769 * also takes care of Apple's universal builds.
Christian Heimes743e0cd2012-10-17 23:52:17 +0200770 */
771
772#ifdef WORDS_BIGENDIAN
Victor Stinner1ae035b2020-04-17 17:47:20 +0200773# define PY_BIG_ENDIAN 1
774# define PY_LITTLE_ENDIAN 0
Christian Heimes743e0cd2012-10-17 23:52:17 +0200775#else
Victor Stinner1ae035b2020-04-17 17:47:20 +0200776# define PY_BIG_ENDIAN 0
777# define PY_LITTLE_ENDIAN 1
Christian Heimes743e0cd2012-10-17 23:52:17 +0200778#endif
779
Victor Stinner5c75f372019-04-17 23:02:26 +0200780#ifdef Py_BUILD_CORE
Steve Dower8fc89802015-04-12 00:26:27 -0400781/*
782 * Macros to protect CRT calls against instant termination when passed an
783 * invalid parameter (issue23524).
784 */
785#if defined _MSC_VER && _MSC_VER >= 1900
786
787extern _invalid_parameter_handler _Py_silent_invalid_parameter_handler;
788#define _Py_BEGIN_SUPPRESS_IPH { _invalid_parameter_handler _Py_old_handler = \
789 _set_thread_local_invalid_parameter_handler(_Py_silent_invalid_parameter_handler);
790#define _Py_END_SUPPRESS_IPH _set_thread_local_invalid_parameter_handler(_Py_old_handler); }
791
792#else
793
794#define _Py_BEGIN_SUPPRESS_IPH
795#define _Py_END_SUPPRESS_IPH
796
797#endif /* _MSC_VER >= 1900 */
798#endif /* Py_BUILD_CORE */
799
Stefan Krah1f9eb872016-05-22 17:35:34 +0200800#ifdef __ANDROID__
Victor Stinner6d13e5b2019-04-26 18:56:19 +0200801 /* The Android langinfo.h header is not used. */
802# undef HAVE_LANGINFO_H
803# undef CODESET
Stefan Krah1f9eb872016-05-22 17:35:34 +0200804#endif
805
Victor Stinner850a18e2017-10-24 16:53:32 -0700806/* Maximum value of the Windows DWORD type */
807#define PY_DWORD_MAX 4294967295U
808
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200809/* This macro used to tell whether Python was built with multithreading
810 * enabled. Now multithreading is always enabled, but keep the macro
811 * for compatibility.
812 */
813#ifndef WITH_THREAD
Victor Stinner6d13e5b2019-04-26 18:56:19 +0200814# define WITH_THREAD
815#endif
816
817/* Check that ALT_SOABI is consistent with Py_TRACE_REFS:
818 ./configure --with-trace-refs should must be used to define Py_TRACE_REFS */
819#if defined(ALT_SOABI) && defined(Py_TRACE_REFS)
820# error "Py_TRACE_REFS ABI is not compatible with release and debug ABI"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +0200821#endif
822
Victor Stinnere2510952019-05-02 11:28:57 -0400823#if defined(__ANDROID__) || defined(__VXWORKS__)
824 /* Ignore the locale encoding: force UTF-8 */
825# define _Py_FORCE_UTF8_LOCALE
826#endif
827
828#if defined(_Py_FORCE_UTF8_LOCALE) || defined(__APPLE__)
829 /* Use UTF-8 as filesystem encoding */
830# define _Py_FORCE_UTF8_FS_ENCODING
831#endif
832
Victor Stinnerc664b342019-05-04 11:48:05 -0400833/* Mark a function which cannot return. Example:
Batuhan Taskaya033d10b2020-06-02 11:19:52 +0300834 PyAPI_FUNC(void) _Py_NO_RETURN PyThread_exit_thread(void);
Victor Stinnerc664b342019-05-04 11:48:05 -0400835
Batuhan Taskaya033d10b2020-06-02 11:19:52 +0300836 XLC support is intentionally omitted due to bpo-40244 */
Victor Stinnerc664b342019-05-04 11:48:05 -0400837#if defined(__clang__) || \
838 (defined(__GNUC__) && \
839 ((__GNUC__ >= 3) || \
840 (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5)))
841# define _Py_NO_RETURN __attribute__((__noreturn__))
842#elif defined(_MSC_VER)
843# define _Py_NO_RETURN __declspec(noreturn)
844#else
845# define _Py_NO_RETURN
846#endif
847
Tim Peters7d3a5112000-07-08 04:17:21 +0000848#endif /* Py_PYPORT_H */