Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 1 | #ifndef Py_PYPORT_H |
Vladimir Marangozov | 14a4d88 | 2000-07-10 04:59:49 +0000 | [diff] [blame] | 2 | #define Py_PYPORT_H |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 3 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 4 | #include "pyconfig.h" /* include for defines */ |
Peter Schneider-Kamp | 25f6894 | 2000-07-31 22:19:30 +0000 | [diff] [blame] | 5 | |
Mark Dickinson | 835a6c8 | 2009-06-30 15:45:17 +0000 | [diff] [blame] | 6 | #include <inttypes.h> |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 7 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 8 | /************************************************************************** |
| 9 | Symbols and macros to supply platform-independent interfaces to basic |
Tim Peters | 1be4684 | 2000-07-23 18:10:18 +0000 | [diff] [blame] | 10 | C language & library operations whose spellings vary across platforms. |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 11 | |
| 12 | Please try to make documentation here as clear as possible: by definition, |
| 13 | the stuff here is trying to illuminate C's darkest corners. |
| 14 | |
| 15 | Config #defines referenced here: |
| 16 | |
| 17 | SIGNED_RIGHT_SHIFT_ZERO_FILLS |
| 18 | Meaning: To be defined iff i>>j does not extend the sign bit when i is a |
| 19 | signed integral type and i < 0. |
| 20 | Used in: Py_ARITHMETIC_RIGHT_SHIFT |
Tim Peters | 1be4684 | 2000-07-23 18:10:18 +0000 | [diff] [blame] | 21 | |
Tim Peters | 8315ea5 | 2000-07-23 19:28:35 +0000 | [diff] [blame] | 22 | Py_DEBUG |
| 23 | Meaning: Extra checks compiled in for debug mode. |
| 24 | Used in: Py_SAFE_DOWNCAST |
Barry Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 25 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 26 | **************************************************************************/ |
| 27 | |
Barry Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 28 | /* 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. parker | f7eda38 | 2017-03-08 19:24:22 +0100 | [diff] [blame] | 40 | /* long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. */ |
Benjamin Peterson | 0d5742d | 2016-12-07 23:54:28 -0800 | [diff] [blame] | 41 | #ifndef HAVE_LONG_LONG |
Victor Stinner | a251fb0 | 2017-01-05 22:58:53 +0100 | [diff] [blame] | 42 | #define HAVE_LONG_LONG 1 |
Benjamin Peterson | 0d5742d | 2016-12-07 23:54:28 -0800 | [diff] [blame] | 43 | #endif |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 44 | #ifndef PY_LONG_LONG |
| 45 | #define PY_LONG_LONG long long |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 46 | /* 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 Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 50 | #endif |
Barry Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 51 | |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 52 | #define PY_UINT32_T uint32_t |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 53 | #define PY_UINT64_T uint64_t |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 54 | |
| 55 | /* Signed variants of the above */ |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 56 | #define PY_INT32_T int32_t |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 57 | #define PY_INT64_T int64_t |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 58 | |
| 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 Peterson | 4fe5510 | 2016-09-06 11:58:01 -0700 | [diff] [blame] | 64 | #if SIZEOF_VOID_P >= 8 |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 65 | #define PYLONG_BITS_IN_DIGIT 30 |
| 66 | #else |
| 67 | #define PYLONG_BITS_IN_DIGIT 15 |
| 68 | #endif |
| 69 | #endif |
| 70 | |
Barry Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 71 | /* 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 Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 73 | * without loss of information. Similarly for intptr_t, wrt a signed |
| 74 | * integral type. |
Barry Warsaw | fd847b2 | 2000-08-18 04:48:18 +0000 | [diff] [blame] | 75 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 76 | typedef uintptr_t Py_uintptr_t; |
| 77 | typedef intptr_t Py_intptr_t; |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 78 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 79 | /* 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öwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 83 | #ifdef HAVE_SSIZE_T |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 84 | typedef ssize_t Py_ssize_t; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 85 | #elif SIZEOF_VOID_P == SIZEOF_SIZE_T |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | typedef Py_intptr_t Py_ssize_t; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 87 | #else |
| 88 | # error "Python needs a typedef for Py_ssize_t in pyport.h." |
| 89 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 90 | |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 91 | /* Py_hash_t is the same size as a pointer. */ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 92 | #define SIZEOF_PY_HASH_T SIZEOF_SIZE_T |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 93 | typedef Py_ssize_t Py_hash_t; |
Benjamin Peterson | 8035bc5 | 2010-10-23 16:20:50 +0000 | [diff] [blame] | 94 | /* Py_uhash_t is the unsigned equivalent needed to calculate numeric hash. */ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 95 | #define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T |
Benjamin Peterson | 8035bc5 | 2010-10-23 16:20:50 +0000 | [diff] [blame] | 96 | typedef size_t Py_uhash_t; |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 97 | |
Larry Hastings | ebdcb50 | 2013-11-23 14:54:00 -0800 | [diff] [blame] | 98 | /* Only used for compatibility with code that may not be PY_SSIZE_T_CLEAN. */ |
| 99 | #ifdef PY_SSIZE_T_CLEAN |
| 100 | typedef Py_ssize_t Py_ssize_clean_t; |
| 101 | #else |
| 102 | typedef int Py_ssize_clean_t; |
| 103 | #endif |
| 104 | |
Benjamin Peterson | 2f8bfef | 2016-09-07 09:26:18 -0700 | [diff] [blame] | 105 | /* Largest possible value of size_t. */ |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 106 | #define PY_SIZE_MAX SIZE_MAX |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 107 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 108 | /* Largest positive value of type Py_ssize_t. */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 109 | #define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1)) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 110 | /* 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 Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 122 | * PyBytes_FromFormat |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 123 | * PyErr_Format |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 124 | * PyBytes_FromFormatV |
Walter Dörwald | 7696ed7 | 2007-05-31 15:51:35 +0000 | [diff] [blame] | 125 | * PyUnicode_FromFormatV |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 126 | * |
| 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 Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 138 | # if SIZEOF_SIZE_T == SIZEOF_INT && !defined(__APPLE__) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 139 | # 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öwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 148 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 149 | /* 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 Peksag | 4882cac | 2015-04-14 09:30:01 +0300 | [diff] [blame] | 156 | * "aggressive" inlining/optimization is enabled for the entire module. This |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 157 | * 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 166 | #if defined(_MSC_VER) |
| 167 | #if defined(PY_LOCAL_AGGRESSIVE) |
| 168 | /* enable more aggressive optimization for visual studio */ |
| 169 | #pragma optimize("agtw", on) |
| 170 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 171 | /* ignore warnings if the compiler decides not to inline a function */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 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 Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 176 | #else |
| 177 | #define Py_LOCAL(type) static type |
Benjamin Peterson | 791dc83 | 2017-04-20 23:52:19 -0700 | [diff] [blame] | 178 | #define Py_LOCAL_INLINE(type) static inline type |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 179 | #endif |
| 180 | |
Christian Heimes | f051e43 | 2016-09-13 20:22:02 +0200 | [diff] [blame] | 181 | /* Py_MEMCPY is kept for backwards compatibility, |
| 182 | * see https://bugs.python.org/issue28126 */ |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 183 | #define Py_MEMCPY memcpy |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 184 | |
Peter Schneider-Kamp | 7e01890 | 2000-07-31 15:28:04 +0000 | [diff] [blame] | 185 | #include <stdlib.h> |
Peter Schneider-Kamp | 7e01890 | 2000-07-31 15:28:04 +0000 | [diff] [blame] | 186 | |
Mark Dickinson | a4962cb | 2009-11-28 12:35:42 +0000 | [diff] [blame] | 187 | #ifdef HAVE_IEEEFP_H |
| 188 | #include <ieeefp.h> /* needed for 'finite' declaration on some platforms */ |
| 189 | #endif |
| 190 | |
Vladimir Marangozov | 2c57e07 | 2000-08-11 11:48:33 +0000 | [diff] [blame] | 191 | #include <math.h> /* Moved here from the math section, before extern "C" */ |
| 192 | |
| 193 | /******************************************** |
| 194 | * WRAPPER FOR <time.h> and/or <sys/time.h> * |
| 195 | ********************************************/ |
| 196 | |
| 197 | #ifdef TIME_WITH_SYS_TIME |
| 198 | #include <sys/time.h> |
| 199 | #include <time.h> |
| 200 | #else /* !TIME_WITH_SYS_TIME */ |
| 201 | #ifdef HAVE_SYS_TIME_H |
| 202 | #include <sys/time.h> |
| 203 | #else /* !HAVE_SYS_TIME_H */ |
| 204 | #include <time.h> |
| 205 | #endif /* !HAVE_SYS_TIME_H */ |
| 206 | #endif /* !TIME_WITH_SYS_TIME */ |
| 207 | |
| 208 | |
| 209 | /****************************** |
| 210 | * WRAPPER FOR <sys/select.h> * |
| 211 | ******************************/ |
| 212 | |
| 213 | /* NB caller must include <sys/types.h> */ |
| 214 | |
| 215 | #ifdef HAVE_SYS_SELECT_H |
Vladimir Marangozov | 2c57e07 | 2000-08-11 11:48:33 +0000 | [diff] [blame] | 216 | #include <sys/select.h> |
Vladimir Marangozov | 2c57e07 | 2000-08-11 11:48:33 +0000 | [diff] [blame] | 217 | #endif /* !HAVE_SYS_SELECT_H */ |
| 218 | |
Tim Peters | 60f42b5 | 2001-01-18 03:03:16 +0000 | [diff] [blame] | 219 | /******************************* |
| 220 | * stat() and fstat() fiddling * |
| 221 | *******************************/ |
| 222 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 223 | #ifdef HAVE_SYS_STAT_H |
Tim Peters | 60f42b5 | 2001-01-18 03:03:16 +0000 | [diff] [blame] | 224 | #include <sys/stat.h> |
| 225 | #elif defined(HAVE_STAT_H) |
| 226 | #include <stat.h> |
| 227 | #endif |
| 228 | |
Christian Heimes | 99d6135 | 2013-06-23 23:56:05 +0200 | [diff] [blame] | 229 | #ifndef S_IFMT |
Martin v. Löwis | f9836ba | 2001-08-08 10:28:06 +0000 | [diff] [blame] | 230 | /* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */ |
Christian Heimes | 99d6135 | 2013-06-23 23:56:05 +0200 | [diff] [blame] | 231 | #define S_IFMT 0170000 |
| 232 | #endif |
| 233 | |
| 234 | #ifndef S_IFLNK |
| 235 | /* Windows doesn't define S_IFLNK but posixmodule.c maps |
| 236 | * IO_REPARSE_TAG_SYMLINK to S_IFLNK */ |
| 237 | # define S_IFLNK 0120000 |
Martin v. Löwis | f9836ba | 2001-08-08 10:28:06 +0000 | [diff] [blame] | 238 | #endif |
| 239 | |
| 240 | #ifndef S_ISREG |
| 241 | #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG) |
| 242 | #endif |
| 243 | |
| 244 | #ifndef S_ISDIR |
| 245 | #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR) |
| 246 | #endif |
| 247 | |
Victor Stinner | c6ebd16 | 2013-06-23 01:49:42 +0200 | [diff] [blame] | 248 | #ifndef S_ISCHR |
| 249 | #define S_ISCHR(x) (((x) & S_IFMT) == S_IFCHR) |
| 250 | #endif |
| 251 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 252 | #ifdef __cplusplus |
Peter Schneider-Kamp | 7e01890 | 2000-07-31 15:28:04 +0000 | [diff] [blame] | 253 | /* Move this down here since some C++ #include's don't like to be included |
| 254 | inside an extern "C" */ |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 255 | extern "C" { |
| 256 | #endif |
| 257 | |
Vladimir Marangozov | 2c57e07 | 2000-08-11 11:48:33 +0000 | [diff] [blame] | 258 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 259 | /* Py_ARITHMETIC_RIGHT_SHIFT |
| 260 | * C doesn't define whether a right-shift of a signed integer sign-extends |
| 261 | * or zero-fills. Here a macro to force sign extension: |
| 262 | * Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) |
Mark Dickinson | 16f966e | 2009-03-20 23:23:15 +0000 | [diff] [blame] | 263 | * Return I >> J, forcing sign extension. Arithmetically, return the |
| 264 | * floor of I/2**J. |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 265 | * Requirements: |
Mark Dickinson | 16f966e | 2009-03-20 23:23:15 +0000 | [diff] [blame] | 266 | * I should have signed integer type. In the terminology of C99, this can |
| 267 | * be either one of the five standard signed integer types (signed char, |
| 268 | * short, int, long, long long) or an extended signed integer type. |
| 269 | * J is an integer >= 0 and strictly less than the number of bits in the |
| 270 | * type of I (because C doesn't define what happens for J outside that |
| 271 | * range either). |
| 272 | * TYPE used to specify the type of I, but is now ignored. It's been left |
| 273 | * in for backwards compatibility with versions <= 2.6 or 3.0. |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 274 | * Caution: |
| 275 | * I may be evaluated more than once. |
| 276 | */ |
| 277 | #ifdef SIGNED_RIGHT_SHIFT_ZERO_FILLS |
| 278 | #define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 279 | ((I) < 0 ? -1-((-1-(I)) >> (J)) : (I) >> (J)) |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 280 | #else |
| 281 | #define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J)) |
| 282 | #endif |
| 283 | |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 284 | /* Py_FORCE_EXPANSION(X) |
Tim Peters | 1be4684 | 2000-07-23 18:10:18 +0000 | [diff] [blame] | 285 | * "Simply" returns its argument. However, macro expansions within the |
| 286 | * argument are evaluated. This unfortunate trickery is needed to get |
| 287 | * token-pasting to work as desired in some cases. |
| 288 | */ |
| 289 | #define Py_FORCE_EXPANSION(X) X |
| 290 | |
Tim Peters | 8315ea5 | 2000-07-23 19:28:35 +0000 | [diff] [blame] | 291 | /* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) |
| 292 | * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this |
| 293 | * assert-fails if any information is lost. |
| 294 | * Caution: |
| 295 | * VALUE may be evaluated more than once. |
| 296 | */ |
| 297 | #ifdef Py_DEBUG |
| 298 | #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 299 | (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE)) |
Tim Peters | 8315ea5 | 2000-07-23 19:28:35 +0000 | [diff] [blame] | 300 | #else |
| 301 | #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE) |
| 302 | #endif |
| 303 | |
Hye-Shik Chang | 77d9a3e | 2004-03-22 08:43:55 +0000 | [diff] [blame] | 304 | /* Py_SET_ERRNO_ON_MATH_ERROR(x) |
Tim Peters | a40c793 | 2001-09-05 22:36:56 +0000 | [diff] [blame] | 305 | * If a libm function did not set errno, but it looks like the result |
Hye-Shik Chang | 77d9a3e | 2004-03-22 08:43:55 +0000 | [diff] [blame] | 306 | * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno |
| 307 | * to 0 before calling a libm function, and invoke this macro after, |
| 308 | * passing the function result. |
Tim Peters | a40c793 | 2001-09-05 22:36:56 +0000 | [diff] [blame] | 309 | * Caution: |
| 310 | * This isn't reliable. See Py_OVERFLOWED comments. |
| 311 | * X is evaluated more than once. |
| 312 | */ |
Guido van Rossum | 539c662 | 2005-09-14 17:49:54 +0000 | [diff] [blame] | 313 | #if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__hpux) && defined(__ia64)) |
Hye-Shik Chang | 77d9a3e | 2004-03-22 08:43:55 +0000 | [diff] [blame] | 314 | #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM; |
| 315 | #else |
| 316 | #define _Py_SET_EDOM_FOR_NAN(X) ; |
| 317 | #endif |
| 318 | #define Py_SET_ERRNO_ON_MATH_ERROR(X) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 319 | do { \ |
| 320 | if (errno == 0) { \ |
| 321 | if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ |
| 322 | errno = ERANGE; \ |
| 323 | else _Py_SET_EDOM_FOR_NAN(X) \ |
| 324 | } \ |
| 325 | } while(0) |
Tim Peters | 57f282a | 2001-09-05 05:38:10 +0000 | [diff] [blame] | 326 | |
Hye-Shik Chang | 77d9a3e | 2004-03-22 08:43:55 +0000 | [diff] [blame] | 327 | /* Py_SET_ERANGE_ON_OVERFLOW(x) |
| 328 | * An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility. |
| 329 | */ |
| 330 | #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X) |
| 331 | |
Tim Peters | dc5a508 | 2002-03-09 04:58:24 +0000 | [diff] [blame] | 332 | /* Py_ADJUST_ERANGE1(x) |
| 333 | * Py_ADJUST_ERANGE2(x, y) |
| 334 | * Set errno to 0 before calling a libm function, and invoke one of these |
| 335 | * macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful |
| 336 | * for functions returning complex results). This makes two kinds of |
| 337 | * adjustments to errno: (A) If it looks like the platform libm set |
| 338 | * errno=ERANGE due to underflow, clear errno. (B) If it looks like the |
| 339 | * platform libm overflowed but didn't set errno, force errno to ERANGE. In |
| 340 | * effect, we're trying to force a useful implementation of C89 errno |
| 341 | * behavior. |
| 342 | * Caution: |
| 343 | * This isn't reliable. See Py_OVERFLOWED comments. |
| 344 | * X and Y may be evaluated more than once. |
| 345 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 346 | #define Py_ADJUST_ERANGE1(X) \ |
| 347 | do { \ |
| 348 | if (errno == 0) { \ |
| 349 | if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ |
| 350 | errno = ERANGE; \ |
| 351 | } \ |
| 352 | else if (errno == ERANGE && (X) == 0.0) \ |
| 353 | errno = 0; \ |
| 354 | } while(0) |
Tim Peters | dc5a508 | 2002-03-09 04:58:24 +0000 | [diff] [blame] | 355 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 356 | #define Py_ADJUST_ERANGE2(X, Y) \ |
| 357 | do { \ |
| 358 | if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || \ |
| 359 | (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) { \ |
| 360 | if (errno == 0) \ |
| 361 | errno = ERANGE; \ |
| 362 | } \ |
| 363 | else if (errno == ERANGE) \ |
| 364 | errno = 0; \ |
| 365 | } while(0) |
Tim Peters | dc5a508 | 2002-03-09 04:58:24 +0000 | [diff] [blame] | 366 | |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 367 | /* The functions _Py_dg_strtod and _Py_dg_dtoa in Python/dtoa.c (which are |
| 368 | * required to support the short float repr introduced in Python 3.1) require |
| 369 | * that the floating-point unit that's being used for arithmetic operations |
| 370 | * on C doubles is set to use 53-bit precision. It also requires that the |
| 371 | * FPU rounding mode is round-half-to-even, but that's less often an issue. |
| 372 | * |
| 373 | * If your FPU isn't already set to 53-bit precision/round-half-to-even, and |
| 374 | * you want to make use of _Py_dg_strtod and _Py_dg_dtoa, then you should |
| 375 | * |
| 376 | * #define HAVE_PY_SET_53BIT_PRECISION 1 |
| 377 | * |
| 378 | * and also give appropriate definitions for the following three macros: |
| 379 | * |
| 380 | * _PY_SET_53BIT_PRECISION_START : store original FPU settings, and |
| 381 | * set FPU to 53-bit precision/round-half-to-even |
| 382 | * _PY_SET_53BIT_PRECISION_END : restore original FPU settings |
| 383 | * _PY_SET_53BIT_PRECISION_HEADER : any variable declarations needed to |
| 384 | * use the two macros above. |
| 385 | * |
| 386 | * The macros are designed to be used within a single C function: see |
| 387 | * Python/pystrtod.c for an example of their use. |
| 388 | */ |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 389 | |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 390 | /* get and set x87 control word for gcc/x86 */ |
Mark Dickinson | 7abf8d4 | 2009-04-18 20:17:52 +0000 | [diff] [blame] | 391 | #ifdef HAVE_GCC_ASM_FOR_X87 |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 392 | #define HAVE_PY_SET_53BIT_PRECISION 1 |
| 393 | /* _Py_get/set_387controlword functions are defined in Python/pymath.c */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 394 | #define _Py_SET_53BIT_PRECISION_HEADER \ |
| 395 | unsigned short old_387controlword, new_387controlword |
| 396 | #define _Py_SET_53BIT_PRECISION_START \ |
| 397 | do { \ |
| 398 | old_387controlword = _Py_get_387controlword(); \ |
| 399 | new_387controlword = (old_387controlword & ~0x0f00) | 0x0200; \ |
| 400 | if (new_387controlword != old_387controlword) \ |
| 401 | _Py_set_387controlword(new_387controlword); \ |
| 402 | } while (0) |
| 403 | #define _Py_SET_53BIT_PRECISION_END \ |
| 404 | if (new_387controlword != old_387controlword) \ |
| 405 | _Py_set_387controlword(old_387controlword) |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 406 | #endif |
| 407 | |
Mark Dickinson | 18e3d81 | 2012-04-15 15:10:56 +0100 | [diff] [blame] | 408 | /* get and set x87 control word for VisualStudio/x86 */ |
| 409 | #if defined(_MSC_VER) && !defined(_WIN64) /* x87 not supported in 64-bit */ |
| 410 | #define HAVE_PY_SET_53BIT_PRECISION 1 |
| 411 | #define _Py_SET_53BIT_PRECISION_HEADER \ |
| 412 | unsigned int old_387controlword, new_387controlword, out_387controlword |
| 413 | /* We use the __control87_2 function to set only the x87 control word. |
| 414 | The SSE control word is unaffected. */ |
| 415 | #define _Py_SET_53BIT_PRECISION_START \ |
| 416 | do { \ |
| 417 | __control87_2(0, 0, &old_387controlword, NULL); \ |
| 418 | new_387controlword = \ |
| 419 | (old_387controlword & ~(_MCW_PC | _MCW_RC)) | (_PC_53 | _RC_NEAR); \ |
| 420 | if (new_387controlword != old_387controlword) \ |
| 421 | __control87_2(new_387controlword, _MCW_PC | _MCW_RC, \ |
| 422 | &out_387controlword, NULL); \ |
| 423 | } while (0) |
| 424 | #define _Py_SET_53BIT_PRECISION_END \ |
| 425 | do { \ |
| 426 | if (new_387controlword != old_387controlword) \ |
| 427 | __control87_2(old_387controlword, _MCW_PC | _MCW_RC, \ |
| 428 | &out_387controlword, NULL); \ |
| 429 | } while (0) |
| 430 | #endif |
| 431 | |
Benjamin Peterson | 8bdeb16 | 2014-04-17 00:00:31 -0400 | [diff] [blame] | 432 | #ifdef HAVE_GCC_ASM_FOR_MC68881 |
| 433 | #define HAVE_PY_SET_53BIT_PRECISION 1 |
| 434 | #define _Py_SET_53BIT_PRECISION_HEADER \ |
| 435 | unsigned int old_fpcr, new_fpcr |
Christian Heimes | f051e43 | 2016-09-13 20:22:02 +0200 | [diff] [blame] | 436 | #define _Py_SET_53BIT_PRECISION_START \ |
| 437 | do { \ |
| 438 | __asm__ ("fmove.l %%fpcr,%0" : "=g" (old_fpcr)); \ |
| 439 | /* Set double precision / round to nearest. */ \ |
| 440 | new_fpcr = (old_fpcr & ~0xf0) | 0x80; \ |
| 441 | if (new_fpcr != old_fpcr) \ |
| 442 | __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (new_fpcr)); \ |
Benjamin Peterson | 8bdeb16 | 2014-04-17 00:00:31 -0400 | [diff] [blame] | 443 | } while (0) |
Christian Heimes | f051e43 | 2016-09-13 20:22:02 +0200 | [diff] [blame] | 444 | #define _Py_SET_53BIT_PRECISION_END \ |
| 445 | do { \ |
| 446 | if (new_fpcr != old_fpcr) \ |
| 447 | __asm__ volatile ("fmove.l %0,%%fpcr" : : "g" (old_fpcr)); \ |
Benjamin Peterson | 8bdeb16 | 2014-04-17 00:00:31 -0400 | [diff] [blame] | 448 | } while (0) |
| 449 | #endif |
| 450 | |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 451 | /* default definitions are empty */ |
| 452 | #ifndef HAVE_PY_SET_53BIT_PRECISION |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 453 | #define _Py_SET_53BIT_PRECISION_HEADER |
| 454 | #define _Py_SET_53BIT_PRECISION_START |
| 455 | #define _Py_SET_53BIT_PRECISION_END |
| 456 | #endif |
| 457 | |
| 458 | /* If we can't guarantee 53-bit precision, don't use the code |
| 459 | in Python/dtoa.c, but fall back to standard code. This |
| 460 | means that repr of a float will be long (17 sig digits). |
| 461 | |
| 462 | Realistically, there are two things that could go wrong: |
| 463 | |
| 464 | (1) doubles aren't IEEE 754 doubles, or |
| 465 | (2) we're on x86 with the rounding precision set to 64-bits |
| 466 | (extended precision), and we don't know how to change |
| 467 | the rounding precision. |
| 468 | */ |
| 469 | |
| 470 | #if !defined(DOUBLE_IS_LITTLE_ENDIAN_IEEE754) && \ |
| 471 | !defined(DOUBLE_IS_BIG_ENDIAN_IEEE754) && \ |
| 472 | !defined(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754) |
| 473 | #define PY_NO_SHORT_FLOAT_REPR |
| 474 | #endif |
| 475 | |
Mark Dickinson | 60fd099 | 2009-04-18 10:16:35 +0000 | [diff] [blame] | 476 | /* double rounding is symptomatic of use of extended precision on x86. If |
| 477 | we're seeing double rounding, and we don't have any mechanism available for |
| 478 | changing the FPU rounding precision, then don't use Python/dtoa.c. */ |
Mark Dickinson | a4262b9 | 2009-04-19 11:35:55 +0000 | [diff] [blame] | 479 | #if defined(X87_DOUBLE_ROUNDING) && !defined(HAVE_PY_SET_53BIT_PRECISION) |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 480 | #define PY_NO_SHORT_FLOAT_REPR |
| 481 | #endif |
| 482 | |
| 483 | |
Neal Norwitz | 8029264 | 2002-12-19 15:12:26 +0000 | [diff] [blame] | 484 | /* Py_DEPRECATED(version) |
Neal Norwitz | 93344ab | 2002-12-19 15:24:11 +0000 | [diff] [blame] | 485 | * Declare a variable, type, or function deprecated. |
Neal Norwitz | 8029264 | 2002-12-19 15:12:26 +0000 | [diff] [blame] | 486 | * Usage: |
| 487 | * extern int old_var Py_DEPRECATED(2.3); |
| 488 | * typedef int T1 Py_DEPRECATED(2.4); |
| 489 | * extern int x() Py_DEPRECATED(2.5); |
| 490 | */ |
Victor Stinner | c6944e7 | 2016-11-11 02:13:35 +0100 | [diff] [blame] | 491 | #if defined(__GNUC__) \ |
| 492 | && ((__GNUC__ >= 4) || (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) |
Neal Norwitz | 8029264 | 2002-12-19 15:12:26 +0000 | [diff] [blame] | 493 | #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__)) |
| 494 | #else |
Tim Peters | 4643bd9 | 2002-12-28 21:56:08 +0000 | [diff] [blame] | 495 | #define Py_DEPRECATED(VERSION_UNUSED) |
Neal Norwitz | 8029264 | 2002-12-19 15:12:26 +0000 | [diff] [blame] | 496 | #endif |
| 497 | |
Victor Stinner | c6944e7 | 2016-11-11 02:13:35 +0100 | [diff] [blame] | 498 | |
Victor Stinner | c7a8f67 | 2016-11-15 15:13:40 +0100 | [diff] [blame] | 499 | /* _Py_HOT_FUNCTION |
Victor Stinner | c6944e7 | 2016-11-11 02:13:35 +0100 | [diff] [blame] | 500 | * The hot attribute on a function is used to inform the compiler that the |
| 501 | * function is a hot spot of the compiled program. The function is optimized |
| 502 | * more aggressively and on many target it is placed into special subsection of |
| 503 | * the text section so all hot functions appears close together improving |
| 504 | * locality. |
| 505 | * |
| 506 | * Usage: |
Victor Stinner | b915bc3 | 2017-01-11 01:07:03 +0100 | [diff] [blame] | 507 | * int _Py_HOT_FUNCTION x(void) { return 3; } |
Victor Stinner | c6944e7 | 2016-11-11 02:13:35 +0100 | [diff] [blame] | 508 | * |
| 509 | * Issue #28618: This attribute must not be abused, otherwise it can have a |
| 510 | * negative effect on performance. Only the functions were Python spend most of |
| 511 | * its time must use it. Use a profiler when running performance benchmark |
| 512 | * suite to find these functions. |
| 513 | */ |
| 514 | #if defined(__GNUC__) \ |
| 515 | && ((__GNUC__ >= 5) || (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)) |
| 516 | #define _Py_HOT_FUNCTION __attribute__((hot)) |
| 517 | #else |
| 518 | #define _Py_HOT_FUNCTION |
| 519 | #endif |
| 520 | |
Victor Stinner | b915bc3 | 2017-01-11 01:07:03 +0100 | [diff] [blame] | 521 | /* _Py_NO_INLINE |
| 522 | * Disable inlining on a function. For example, it helps to reduce the C stack |
| 523 | * consumption. |
| 524 | * |
| 525 | * Usage: |
| 526 | * int _Py_NO_INLINE x(void) { return 3; } |
| 527 | */ |
| 528 | #if defined(__GNUC__) || defined(__clang__) |
| 529 | # define _Py_NO_INLINE __attribute__((noinline)) |
| 530 | #else |
| 531 | # define _Py_NO_INLINE |
| 532 | #endif |
| 533 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 534 | /************************************************************************** |
| 535 | Prototypes that are missing from the standard include files on some systems |
| 536 | (and possibly only some versions of such systems.) |
| 537 | |
| 538 | Please be conservative with adding new ones, document them and enclose them |
| 539 | in platform-specific #ifdefs. |
| 540 | **************************************************************************/ |
| 541 | |
| 542 | #ifdef SOLARIS |
| 543 | /* Unchecked */ |
| 544 | extern int gethostname(char *, int); |
| 545 | #endif |
| 546 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 547 | #ifdef HAVE__GETPTY |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 548 | #include <sys/types.h> /* we need to import mode_t */ |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 549 | extern char * _getpty(int *, int, mode_t, int); |
| 550 | #endif |
| 551 | |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 552 | /* On QNX 6, struct termio must be declared by including sys/termio.h |
| 553 | if TCGETA, TCSETA, TCSETAW, or TCSETAF are used. sys/termio.h must |
| 554 | be included before termios.h or it will generate an error. */ |
Stefan Krah | 2cbbed6 | 2012-11-19 00:07:18 +0100 | [diff] [blame] | 555 | #if defined(HAVE_SYS_TERMIO_H) && !defined(__hpux) |
Georg Brandl | f78e02b | 2008-06-10 17:40:04 +0000 | [diff] [blame] | 556 | #include <sys/termio.h> |
| 557 | #endif |
| 558 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 559 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 560 | /* On 4.4BSD-descendants, ctype functions serves the whole range of |
| 561 | * wchar_t character set rather than single byte code points only. |
| 562 | * This characteristic can break some operations of string object |
| 563 | * including str.upper() and str.split() on UTF-8 locales. This |
| 564 | * workaround was provided by Tim Robbins of FreeBSD project. |
| 565 | */ |
Hye-Shik Chang | b5047fd | 2004-08-04 06:33:51 +0000 | [diff] [blame] | 566 | |
Ronald Oussoren | 501aeff | 2010-04-18 15:02:38 +0000 | [diff] [blame] | 567 | #if defined(__APPLE__) |
Victor Stinner | 13ff245 | 2018-01-22 18:32:50 +0100 | [diff] [blame] | 568 | # define _PY_PORT_CTYPE_UTF8_ISSUE |
Ronald Oussoren | 501aeff | 2010-04-18 15:02:38 +0000 | [diff] [blame] | 569 | #endif |
| 570 | |
| 571 | #ifdef _PY_PORT_CTYPE_UTF8_ISSUE |
Ned Deily | 7659aab | 2016-08-15 03:07:26 -0400 | [diff] [blame] | 572 | #ifndef __cplusplus |
| 573 | /* The workaround below is unsafe in C++ because |
| 574 | * the <locale> defines these symbols as real functions, |
| 575 | * with a slightly different signature. |
| 576 | * See issue #10910 |
| 577 | */ |
Hye-Shik Chang | b5047fd | 2004-08-04 06:33:51 +0000 | [diff] [blame] | 578 | #include <ctype.h> |
| 579 | #include <wctype.h> |
| 580 | #undef isalnum |
| 581 | #define isalnum(c) iswalnum(btowc(c)) |
| 582 | #undef isalpha |
| 583 | #define isalpha(c) iswalpha(btowc(c)) |
| 584 | #undef islower |
| 585 | #define islower(c) iswlower(btowc(c)) |
| 586 | #undef isspace |
| 587 | #define isspace(c) iswspace(btowc(c)) |
| 588 | #undef isupper |
| 589 | #define isupper(c) iswupper(btowc(c)) |
| 590 | #undef tolower |
| 591 | #define tolower(c) towlower(btowc(c)) |
| 592 | #undef toupper |
| 593 | #define toupper(c) towupper(btowc(c)) |
| 594 | #endif |
Ned Deily | 7659aab | 2016-08-15 03:07:26 -0400 | [diff] [blame] | 595 | #endif |
Hye-Shik Chang | b5047fd | 2004-08-04 06:33:51 +0000 | [diff] [blame] | 596 | |
| 597 | |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 598 | /* Declarations for symbol visibility. |
| 599 | |
| 600 | PyAPI_FUNC(type): Declares a public Python API function and return type |
Tim Peters | 4643bd9 | 2002-12-28 21:56:08 +0000 | [diff] [blame] | 601 | PyAPI_DATA(type): Declares public Python data and its type |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 602 | PyMODINIT_FUNC: A Python module init function. If these functions are |
Tim Peters | 4643bd9 | 2002-12-28 21:56:08 +0000 | [diff] [blame] | 603 | inside the Python core, they are private to the core. |
| 604 | If in an extension module, it may be declared with |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 605 | external linkage depending on the platform. |
| 606 | |
| 607 | As a number of platforms support/require "__declspec(dllimport/dllexport)", |
| 608 | we support a HAVE_DECLSPEC_DLL macro to save duplication. |
| 609 | */ |
| 610 | |
Tim Peters | 4643bd9 | 2002-12-28 21:56:08 +0000 | [diff] [blame] | 611 | /* |
Michael W. Hudson | f163d10 | 2003-02-10 19:36:46 +0000 | [diff] [blame] | 612 | All windows ports, except cygwin, are handled in PC/pyconfig.h. |
| 613 | |
Skip Montanaro | eb33e5a | 2007-08-17 12:57:41 +0000 | [diff] [blame] | 614 | Cygwin is the only other autoconf platform requiring special |
| 615 | linkage handling and it uses __declspec(). |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 616 | */ |
Skip Montanaro | eb33e5a | 2007-08-17 12:57:41 +0000 | [diff] [blame] | 617 | #if defined(__CYGWIN__) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 618 | # define HAVE_DECLSPEC_DLL |
Peter Schneider-Kamp | 7e01890 | 2000-07-31 15:28:04 +0000 | [diff] [blame] | 619 | #endif |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 620 | |
Jason Tishler | 3076559 | 2003-09-04 11:04:06 +0000 | [diff] [blame] | 621 | /* only get special linkage if built as shared or platform is Cygwin */ |
| 622 | #if defined(Py_ENABLE_SHARED) || defined(__CYGWIN__) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 623 | # if defined(HAVE_DECLSPEC_DLL) |
Eric Snow | fc1bf87 | 2017-09-11 18:30:43 -0700 | [diff] [blame] | 624 | # if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_BUILTIN) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 625 | # define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE |
| 626 | # define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE |
Daniel Stutzbach | 3861599 | 2010-09-14 16:02:01 +0000 | [diff] [blame] | 627 | /* module init functions inside the core need no external linkage */ |
| 628 | /* except for Cygwin to handle embedding */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 629 | # if defined(__CYGWIN__) |
| 630 | # define PyMODINIT_FUNC __declspec(dllexport) PyObject* |
| 631 | # else /* __CYGWIN__ */ |
| 632 | # define PyMODINIT_FUNC PyObject* |
| 633 | # endif /* __CYGWIN__ */ |
| 634 | # else /* Py_BUILD_CORE */ |
Daniel Stutzbach | 3861599 | 2010-09-14 16:02:01 +0000 | [diff] [blame] | 635 | /* Building an extension module, or an embedded situation */ |
| 636 | /* public Python functions and data are imported */ |
| 637 | /* Under Cygwin, auto-import functions to prevent compilation */ |
| 638 | /* failures similar to those described at the bottom of 4.1: */ |
| 639 | /* http://docs.python.org/extending/windows.html#a-cookbook-approach */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 640 | # if !defined(__CYGWIN__) |
| 641 | # define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE |
| 642 | # endif /* !__CYGWIN__ */ |
| 643 | # define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE |
Daniel Stutzbach | 3861599 | 2010-09-14 16:02:01 +0000 | [diff] [blame] | 644 | /* module init functions outside the core must be exported */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 645 | # if defined(__cplusplus) |
| 646 | # define PyMODINIT_FUNC extern "C" __declspec(dllexport) PyObject* |
| 647 | # else /* __cplusplus */ |
| 648 | # define PyMODINIT_FUNC __declspec(dllexport) PyObject* |
| 649 | # endif /* __cplusplus */ |
| 650 | # endif /* Py_BUILD_CORE */ |
Joseph Shen | 677ab99 | 2017-03-03 21:44:51 +0800 | [diff] [blame] | 651 | # endif /* HAVE_DECLSPEC_DLL */ |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 652 | #endif /* Py_ENABLE_SHARED */ |
| 653 | |
| 654 | /* If no external linkage macros defined by now, create defaults */ |
| 655 | #ifndef PyAPI_FUNC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 656 | # define PyAPI_FUNC(RTYPE) RTYPE |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 657 | #endif |
| 658 | #ifndef PyAPI_DATA |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 659 | # define PyAPI_DATA(RTYPE) extern RTYPE |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 660 | #endif |
| 661 | #ifndef PyMODINIT_FUNC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 662 | # if defined(__cplusplus) |
| 663 | # define PyMODINIT_FUNC extern "C" PyObject* |
| 664 | # else /* __cplusplus */ |
| 665 | # define PyMODINIT_FUNC PyObject* |
| 666 | # endif /* __cplusplus */ |
Mark Hammond | 8235ea1 | 2002-07-19 06:55:41 +0000 | [diff] [blame] | 667 | #endif |
| 668 | |
Fred Drake | d5fadf7 | 2000-09-26 05:46:01 +0000 | [diff] [blame] | 669 | /* limits.h constants that may be missing */ |
| 670 | |
| 671 | #ifndef INT_MAX |
| 672 | #define INT_MAX 2147483647 |
| 673 | #endif |
| 674 | |
| 675 | #ifndef LONG_MAX |
| 676 | #if SIZEOF_LONG == 4 |
| 677 | #define LONG_MAX 0X7FFFFFFFL |
| 678 | #elif SIZEOF_LONG == 8 |
| 679 | #define LONG_MAX 0X7FFFFFFFFFFFFFFFL |
| 680 | #else |
| 681 | #error "could not set LONG_MAX in pyport.h" |
| 682 | #endif |
| 683 | #endif |
| 684 | |
| 685 | #ifndef LONG_MIN |
| 686 | #define LONG_MIN (-LONG_MAX-1) |
| 687 | #endif |
| 688 | |
Tim Peters | d57731f | 2000-10-05 01:42:25 +0000 | [diff] [blame] | 689 | #ifndef LONG_BIT |
| 690 | #define LONG_BIT (8 * SIZEOF_LONG) |
| 691 | #endif |
| 692 | |
| 693 | #if LONG_BIT != 8 * SIZEOF_LONG |
| 694 | /* 04-Oct-2000 LONG_BIT is apparently (mis)defined as 64 on some recent |
| 695 | * 32-bit platforms using gcc. We try to catch that here at compile-time |
| 696 | * rather than waiting for integer multiplication to trigger bogus |
| 697 | * overflows. |
| 698 | */ |
Andrew M. Kuchling | 234fb63 | 2001-01-12 15:06:28 +0000 | [diff] [blame] | 699 | #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)." |
Tim Peters | d57731f | 2000-10-05 01:42:25 +0000 | [diff] [blame] | 700 | #endif |
| 701 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 702 | #ifdef __cplusplus |
| 703 | } |
| 704 | #endif |
| 705 | |
Neil Schemenauer | 1569108 | 2001-10-23 02:20:37 +0000 | [diff] [blame] | 706 | /* |
| 707 | * Hide GCC attributes from compilers that don't support them. |
| 708 | */ |
Guido van Rossum | bd67d6f | 2001-10-27 21:16:16 +0000 | [diff] [blame] | 709 | #if (!defined(__GNUC__) || __GNUC__ < 2 || \ |
Skip Montanaro | 7a98be2 | 2007-08-16 14:35:24 +0000 | [diff] [blame] | 710 | (__GNUC__ == 2 && __GNUC_MINOR__ < 7) ) |
Neil Schemenauer | 96aa0ac | 2002-09-15 14:09:54 +0000 | [diff] [blame] | 711 | #define Py_GCC_ATTRIBUTE(x) |
| 712 | #else |
| 713 | #define Py_GCC_ATTRIBUTE(x) __attribute__(x) |
Neil Schemenauer | 1569108 | 2001-10-23 02:20:37 +0000 | [diff] [blame] | 714 | #endif |
| 715 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 716 | /* |
Benjamin Peterson | 058e31e | 2009-01-16 03:54:08 +0000 | [diff] [blame] | 717 | * Specify alignment on compilers that support it. |
| 718 | */ |
| 719 | #if defined(__GNUC__) && __GNUC__ >= 3 |
| 720 | #define Py_ALIGNED(x) __attribute__((aligned(x))) |
| 721 | #else |
| 722 | #define Py_ALIGNED(x) |
| 723 | #endif |
| 724 | |
Nicholas Bastin | 9ba301e | 2004-07-15 15:54:05 +0000 | [diff] [blame] | 725 | /* Eliminate end-of-loop code not reached warnings from SunPro C |
| 726 | * when using do{...}while(0) macros |
| 727 | */ |
| 728 | #ifdef __SUNPRO_C |
| 729 | #pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED) |
| 730 | #endif |
| 731 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 732 | #ifndef Py_LL |
| 733 | #define Py_LL(x) x##LL |
| 734 | #endif |
| 735 | |
| 736 | #ifndef Py_ULL |
| 737 | #define Py_ULL(x) Py_LL(x##U) |
| 738 | #endif |
| 739 | |
Benjamin Peterson | 0c21214 | 2016-09-20 20:39:33 -0700 | [diff] [blame] | 740 | #define Py_VA_COPY va_copy |
Alexander Belopolsky | f0f4514 | 2010-08-11 17:31:17 +0000 | [diff] [blame] | 741 | |
Christian Heimes | 743e0cd | 2012-10-17 23:52:17 +0200 | [diff] [blame] | 742 | /* |
Georg Brandl | 3962d5e | 2012-10-28 08:48:28 +0100 | [diff] [blame] | 743 | * Convenient macros to deal with endianness of the platform. WORDS_BIGENDIAN is |
Christian Heimes | 743e0cd | 2012-10-17 23:52:17 +0200 | [diff] [blame] | 744 | * detected by configure and defined in pyconfig.h. The code in pyconfig.h |
Terry Jan Reedy | 8e7586b | 2013-03-11 18:38:13 -0400 | [diff] [blame] | 745 | * also takes care of Apple's universal builds. |
Christian Heimes | 743e0cd | 2012-10-17 23:52:17 +0200 | [diff] [blame] | 746 | */ |
| 747 | |
| 748 | #ifdef WORDS_BIGENDIAN |
| 749 | #define PY_BIG_ENDIAN 1 |
| 750 | #define PY_LITTLE_ENDIAN 0 |
| 751 | #else |
| 752 | #define PY_BIG_ENDIAN 0 |
| 753 | #define PY_LITTLE_ENDIAN 1 |
| 754 | #endif |
| 755 | |
Eric Snow | fc1bf87 | 2017-09-11 18:30:43 -0700 | [diff] [blame] | 756 | #if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_BUILTIN) |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 757 | /* |
| 758 | * Macros to protect CRT calls against instant termination when passed an |
| 759 | * invalid parameter (issue23524). |
| 760 | */ |
| 761 | #if defined _MSC_VER && _MSC_VER >= 1900 |
| 762 | |
| 763 | extern _invalid_parameter_handler _Py_silent_invalid_parameter_handler; |
| 764 | #define _Py_BEGIN_SUPPRESS_IPH { _invalid_parameter_handler _Py_old_handler = \ |
| 765 | _set_thread_local_invalid_parameter_handler(_Py_silent_invalid_parameter_handler); |
| 766 | #define _Py_END_SUPPRESS_IPH _set_thread_local_invalid_parameter_handler(_Py_old_handler); } |
| 767 | |
| 768 | #else |
| 769 | |
| 770 | #define _Py_BEGIN_SUPPRESS_IPH |
| 771 | #define _Py_END_SUPPRESS_IPH |
| 772 | |
| 773 | #endif /* _MSC_VER >= 1900 */ |
| 774 | #endif /* Py_BUILD_CORE */ |
| 775 | |
Stefan Krah | 1f9eb87 | 2016-05-22 17:35:34 +0200 | [diff] [blame] | 776 | #ifdef __ANDROID__ |
xdegaye | c06c22e | 2017-11-23 11:44:38 +0100 | [diff] [blame] | 777 | /* The Android langinfo.h header is not used. */ |
| 778 | #undef HAVE_LANGINFO_H |
| 779 | #undef CODESET |
Stefan Krah | 1f9eb87 | 2016-05-22 17:35:34 +0200 | [diff] [blame] | 780 | #endif |
| 781 | |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 782 | /* Maximum value of the Windows DWORD type */ |
| 783 | #define PY_DWORD_MAX 4294967295U |
| 784 | |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 785 | /* This macro used to tell whether Python was built with multithreading |
| 786 | * enabled. Now multithreading is always enabled, but keep the macro |
| 787 | * for compatibility. |
| 788 | */ |
| 789 | #ifndef WITH_THREAD |
| 790 | #define WITH_THREAD |
| 791 | #endif |
| 792 | |
Tim Peters | 7d3a511 | 2000-07-08 04:17:21 +0000 | [diff] [blame] | 793 | #endif /* Py_PYPORT_H */ |