This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
t/re/reg_mesg.t: Add test for [perl #132055]
[perl5.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
1129b882 3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
5cd3f21a 4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
a687059c 5 *
352d5a3a
LW
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8d063cd8 8 *
8d063cd8 9 */
d6376244 10
85e6fe83
LW
11#ifndef H_PERL
12#define H_PERL 1
8d063cd8 13
760ac839
LW
14#ifdef PERL_FOR_X2P
15/*
d460ef45 16 * This file is being used for x2p stuff.
760ac839 17 * Above symbol is defined via -D in 'x2p/Makefile.SH'
d460ef45 18 * Decouple x2p stuff from some of perls more extreme eccentricities.
760ac839 19 */
55497cff 20#undef MULTIPLICITY
760ac839
LW
21#undef USE_STDIO
22#define USE_STDIO
23#endif /* PERL_FOR_X2P */
24
d460ef45 25#ifdef PERL_MICRO
12ae5dfc
JH
26# include "uconfig.h"
27#else
611cf957 28# include "config.h"
12ae5dfc 29#endif
0cb96387 30
70febf4f
CB
31/* this is used for functions which take a depth trailing
32 * argument under debugging */
33#ifdef DEBUGGING
34#define _pDEPTH ,U32 depth
35#define _aDEPTH ,depth
36#else
37#define _pDEPTH
38#define _aDEPTH
39#endif
40
7dc3eb73 41/* NOTE 1: that with gcc -std=c89 the __STDC_VERSION__ is *not* defined
9267464d 42 * because the __STDC_VERSION__ became a thing only with C90. Therefore,
7dc3eb73
JH
43 * with gcc, HAS_C99 will never become true as long as we use -std=c89.
44
45 * NOTE 2: headers lie. Do not expect that if HAS_C99 gets to be true,
46 * all the C99 features are there and are correct. */
9267464d 47#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
996959af 48 defined(_STDC_C99) || defined(__c99)
86a3cabf 49# define HAS_C99 1
86a3cabf
JH
50#endif
51
2c2d71f5
JH
52/* See L<perlguts/"The Perl API"> for detailed notes on
53 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
54
7ee02ac1 55/* XXX NOTE that from here --> to <-- the same logic is
ac6bedea
JH
56 * repeated in makedef.pl, so be certain to update
57 * both places when editing. */
58
6f4183fe 59#ifdef USE_ITHREADS
acfe0abc 60# if !defined(MULTIPLICITY)
6f4183fe
GS
61# define MULTIPLICITY
62# endif
63#endif
64
27da23d5
JH
65#ifdef PERL_GLOBAL_STRUCT_PRIVATE
66# ifndef PERL_GLOBAL_STRUCT
67# define PERL_GLOBAL_STRUCT
68# endif
69#endif
97aff369 70
27da23d5
JH
71#ifdef PERL_GLOBAL_STRUCT
72# ifndef MULTIPLICITY
73# define MULTIPLICITY
74# endif
75#endif
76
97aff369
JH
77#ifdef MULTIPLICITY
78# ifndef PERL_IMPLICIT_CONTEXT
79# define PERL_IMPLICIT_CONTEXT
80# endif
81#endif
82
026fd48b
GH
83/* undef WIN32 when building on Cygwin (for libwin32) - gph */
84#ifdef __CYGWIN__
85# undef WIN32
86# undef _WIN32
87#endif
88
27da23d5
JH
89#if defined(__SYMBIAN32__) || (defined(__VC32__) && defined(WINS))
90# ifndef SYMBIAN
91# define SYMBIAN
92# endif
93#endif
94
a0fd4948 95#ifdef __SYMBIAN32__
27da23d5
JH
96# include "symbian/symbian_proto.h"
97#endif
98
99/* Any stack-challenged places. The limit varies (and often
100 * is configurable), but using more than a kilobyte of stack
101 * is usually dubious in these systems. */
739a0b84
NC
102#if defined(__SYMBIAN32__)
103/* Symbian: need to work around the SDK features. *
27da23d5
JH
104 * On WINS: MS VC5 generates calls to _chkstk, *
105 * if a "large" stack frame is allocated. *
106 * gcc on MARM does not generate calls like these. */
107# define USE_HEAP_INSTEAD_OF_STACK
108#endif
109
dd134d2c 110/* Use the reentrant APIs like localtime_r and getpwent_r */
7ee02ac1
KW
111/* Win32 has naturally threadsafe libraries, no need to use any _r variants.
112 * XXX KEEP makedef.pl copy of this code in sync */
14795193 113#if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(NETWARE) && !defined(WIN32)
10bc17b6
JH
114# define USE_REENTRANT_API
115#endif
116
ac6bedea
JH
117/* <--- here ends the logic shared by perl.h and makedef.pl */
118
9ea40801
SH
119/* Microsoft Visual C++ 6.0 needs special treatment in numerous places */
120#if defined(WIN32) && defined(_MSC_VER) && _MSC_VER >= 1200 && _MSC_VER < 1300
121# define USING_MSVC6
122#endif
123
cf5a8da6
MHM
124#undef START_EXTERN_C
125#undef END_EXTERN_C
126#undef EXTERN_C
127#ifdef __cplusplus
128# define START_EXTERN_C extern "C" {
129# define END_EXTERN_C }
130# define EXTERN_C extern "C"
131#else
132# define START_EXTERN_C
133# define END_EXTERN_C
134# define EXTERN_C extern
135#endif
136
17a6c8e3
AD
137/* Fallback definitions in case we don't have definitions from config.h.
138 This should only matter for systems that don't use Configure and
139 haven't been modified to define PERL_STATIC_INLINE yet.
140*/
141#if !defined(PERL_STATIC_INLINE)
142# ifdef HAS_STATIC_INLINE
143# define PERL_STATIC_INLINE static inline
144# else
145# define PERL_STATIC_INLINE static
146# endif
147#endif
148
da5fdda8 149#if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GET_VARS)
27da23d5 150# ifdef PERL_GLOBAL_STRUCT_PRIVATE
cf5a8da6 151 EXTERN_C struct perl_vars* Perl_GetVarsPrivate();
27da23d5 152# define PERL_GET_VARS() Perl_GetVarsPrivate() /* see miniperlmain.c */
27da23d5
JH
153# else
154# define PERL_GET_VARS() PL_VarsPtr
155# endif
27da23d5
JH
156#endif
157
f0e5c859
DD
158/* this used to be off by default, now its on, see perlio.h */
159#define PERLIO_FUNCS_CONST
160
5aaab254 161#define pVAR struct perl_vars* my_vars PERL_UNUSED_DECL
27da23d5
JH
162
163#ifdef PERL_GLOBAL_STRUCT
164# define dVAR pVAR = (struct perl_vars*)PERL_GET_VARS()
165#else
166# define dVAR dNOOP
167#endif
168
c5be433b 169#ifdef PERL_IMPLICIT_CONTEXT
3db8f154
MB
170# ifndef MULTIPLICITY
171# define MULTIPLICITY
c5be433b 172# endif
e8dda941 173# define tTHX PerlInterpreter*
5aaab254 174# define pTHX tTHX my_perl PERL_UNUSED_DECL
3db8f154 175# define aTHX my_perl
9399a70c 176# define aTHXa(a) aTHX = (tTHX)a
27da23d5 177# ifdef PERL_GLOBAL_STRUCT
e8dda941 178# define dTHXa(a) dVAR; pTHX = (tTHX)a
27da23d5 179# else
e8dda941 180# define dTHXa(a) pTHX = (tTHX)a
27da23d5
JH
181# endif
182# ifdef PERL_GLOBAL_STRUCT
183# define dTHX dVAR; pTHX = PERL_GET_THX
184# else
185# define dTHX pTHX = PERL_GET_THX
186# endif
c5be433b 187# define pTHX_ pTHX,
c5be433b 188# define aTHX_ aTHX,
4373e329 189# define pTHX_1 2
894356b3
GS
190# define pTHX_2 3
191# define pTHX_3 4
192# define pTHX_4 5
4373e329
AL
193# define pTHX_5 6
194# define pTHX_6 7
a3b680e6
AL
195# define pTHX_7 8
196# define pTHX_8 9
197# define pTHX_9 10
a6fc70e5 198# define pTHX_12 13
e8dda941
JD
199# if defined(DEBUGGING) && !defined(PERL_TRACK_MEMPOOL)
200# define PERL_TRACK_MEMPOOL
201# endif
202#else
203# undef PERL_TRACK_MEMPOOL
c5be433b
GS
204#endif
205
2d17fb74
KW
206#ifdef DEBUGGING
207# define dTHX_DEBUGGING dTHX
208#else
209# define dTHX_DEBUGGING dNOOP
210#endif
211
76e3520e 212#define STATIC static
16c91539
BM
213
214#ifndef PERL_CORE
215/* Do not use these macros. They were part of PERL_OBJECT, which was an
216 * implementation of multiplicity using C++ objects. They have been left
217 * here solely for the sake of XS code which has incorrectly
218 * cargo-culted them.
219 */
76e3520e 220#define CPERLscope(x) x
565764a8 221#define CPERLarg void
76e3520e 222#define CPERLarg_
e3b8966e 223#define _CPERLarg
1d583055
GS
224#define PERL_OBJECT_THIS
225#define _PERL_OBJECT_THIS
226#define PERL_OBJECT_THIS_
312caa8e 227#define CALL_FPTR(fptr) (*fptr)
ef69c8fc 228#define MEMBER_TO_FPTR(name) name
16c91539 229#endif /* !PERL_CORE */
76e3520e 230
16c91539 231#define CALLRUNOPS PL_runops
f9f4320a 232
3ab4a224 233#define CALLREGCOMP(sv, flags) Perl_pregcomp(aTHX_ (sv),(flags))
f9f4320a 234
16c91539 235#define CALLREGCOMP_ENG(prog, sv, flags) (prog)->comp(aTHX_ sv, flags)
a340edde 236#define CALLREGEXEC(prog,stringarg,strend,strbeg,minend,sv,data,flags) \
16c91539 237 RX_ENGINE(prog)->exec(aTHX_ (prog),(stringarg),(strend), \
a340edde 238 (strbeg),(minend),(sv),(data),(flags))
52a21eb3
DM
239#define CALLREG_INTUIT_START(prog,sv,strbeg,strpos,strend,flags,data) \
240 RX_ENGINE(prog)->intuit(aTHX_ (prog), (sv), (strbeg), (strpos), \
f9f4320a
YO
241 (strend),(flags),(data))
242#define CALLREG_INTUIT_STRING(prog) \
16c91539 243 RX_ENGINE(prog)->checkstr(aTHX_ (prog))
f8149455 244
f8149455
YO
245#define CALLREGFREE(prog) \
246 Perl_pregfree(aTHX_ (prog))
247
248#define CALLREGFREE_PVT(prog) \
fc6bde6f 249 if(prog) RX_ENGINE(prog)->rxfree(aTHX_ (prog))
f8149455 250
2fdbfb4d 251#define CALLREG_NUMBUF_FETCH(rx,paren,usesv) \
16c91539 252 RX_ENGINE(rx)->numbered_buff_FETCH(aTHX_ (rx),(paren),(usesv))
93b32b6d 253
2fdbfb4d 254#define CALLREG_NUMBUF_STORE(rx,paren,value) \
16c91539 255 RX_ENGINE(rx)->numbered_buff_STORE(aTHX_ (rx),(paren),(value))
2fdbfb4d
AB
256
257#define CALLREG_NUMBUF_LENGTH(rx,sv,paren) \
16c91539 258 RX_ENGINE(rx)->numbered_buff_LENGTH(aTHX_ (rx),(sv),(paren))
2fdbfb4d 259
192b9cd1 260#define CALLREG_NAMED_BUFF_FETCH(rx, key, flags) \
16c91539 261 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), NULL, ((flags) | RXapif_FETCH))
192b9cd1
AB
262
263#define CALLREG_NAMED_BUFF_STORE(rx, key, value, flags) \
16c91539 264 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), (value), ((flags) | RXapif_STORE))
192b9cd1
AB
265
266#define CALLREG_NAMED_BUFF_DELETE(rx, key, flags) \
16c91539 267 RX_ENGINE(rx)->named_buff(aTHX_ (rx),(key), NULL, ((flags) | RXapif_DELETE))
192b9cd1
AB
268
269#define CALLREG_NAMED_BUFF_CLEAR(rx, flags) \
16c91539 270 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, ((flags) | RXapif_CLEAR))
192b9cd1
AB
271
272#define CALLREG_NAMED_BUFF_EXISTS(rx, key, flags) \
16c91539 273 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), NULL, ((flags) | RXapif_EXISTS))
192b9cd1
AB
274
275#define CALLREG_NAMED_BUFF_FIRSTKEY(rx, flags) \
16c91539 276 RX_ENGINE(rx)->named_buff_iter(aTHX_ (rx), NULL, ((flags) | RXapif_FIRSTKEY))
192b9cd1
AB
277
278#define CALLREG_NAMED_BUFF_NEXTKEY(rx, lastkey, flags) \
16c91539 279 RX_ENGINE(rx)->named_buff_iter(aTHX_ (rx), (lastkey), ((flags) | RXapif_NEXTKEY))
192b9cd1
AB
280
281#define CALLREG_NAMED_BUFF_SCALAR(rx, flags) \
16c91539 282 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, ((flags) | RXapif_SCALAR))
192b9cd1
AB
283
284#define CALLREG_NAMED_BUFF_COUNT(rx) \
16c91539 285 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, RXapif_REGNAMES_COUNT)
192b9cd1
AB
286
287#define CALLREG_NAMED_BUFF_ALL(rx, flags) \
16c91539 288 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, flags)
93b32b6d 289
49d7dfbc 290#define CALLREG_PACKAGE(rx) \
16c91539 291 RX_ENGINE(rx)->qr_package(aTHX_ (rx))
93b32b6d 292
00f254e2 293#if defined(USE_ITHREADS)
f9f4320a 294#define CALLREGDUPE(prog,param) \
f8149455
YO
295 Perl_re_dup(aTHX_ (prog),(param))
296
297#define CALLREGDUPE_PVT(prog,param) \
16c91539 298 (prog ? RX_ENGINE(prog)->dupe(aTHX_ (prog),(param)) \
00f254e2 299 : (REGEXP *)NULL)
f9f4320a 300#endif
14dd3ad8 301
a20207d7 302
bcdf7404 303
a20207d7
YO
304
305
5ba4cab2
SH
306/*
307 * Because of backward compatibility reasons the PERL_UNUSED_DECL
308 * cannot be changed from postfix to PERL_UNUSED_DECL(x). Sigh.
309 *
310 * Note that there are C compilers such as MetroWerks CodeWarrior
1266ad8c 311 * which do not have an "inlined" way (like the gcc __attribute__) of
5ba4cab2
SH
312 * marking unused variables (they need e.g. a #pragma) and therefore
313 * cpp macros like PERL_UNUSED_DECL cannot work for this purpose, even
314 * if it were PERL_UNUSED_DECL(x), which it cannot be (see above).
315 *
316 */
1266ad8c 317
9969cdde 318#if defined(__SYMBIAN32__) && defined(__GNUC__)
5b2bd0a5 319# ifdef __cplusplus
5ba4cab2 320# define PERL_UNUSED_DECL
5b2bd0a5 321# else
5ba4cab2 322# define PERL_UNUSED_DECL __attribute__((unused))
5b2bd0a5
AMS
323# endif
324#endif
44dbb695 325
5b2bd0a5 326#ifndef PERL_UNUSED_DECL
98d1c64e 327# if defined(HASATTRIBUTE_UNUSED) && (!defined(__cplusplus) || __GNUC__ >= 4)
5ba4cab2 328# define PERL_UNUSED_DECL __attribute__unused__
b79c357a 329# else
5ba4cab2 330# define PERL_UNUSED_DECL
b79c357a 331# endif
5b2bd0a5 332#endif
00f254e2 333
349b520e
DM
334/* gcc -Wall:
335 * for silencing unused variables that are actually used most of the time,
a730e3f2
JH
336 * but we cannot quite get rid of, such as "ax" in PPCODE+noargs xsubs,
337 * or variables/arguments that are used only in certain configurations.
349b520e 338 */
53c1dcc0 339#ifndef PERL_UNUSED_ARG
c707756e 340# define PERL_UNUSED_ARG(x) ((void)sizeof(x))
ad73156c 341#endif
53c1dcc0 342#ifndef PERL_UNUSED_VAR
a730e3f2 343# define PERL_UNUSED_VAR(x) ((void)sizeof(x))
53c1dcc0 344#endif
ad73156c 345
23491f1d 346#if defined(USE_ITHREADS) || defined(PERL_GLOBAL_STRUCT)
96a5add6
AL
347# define PERL_UNUSED_CONTEXT PERL_UNUSED_ARG(my_perl)
348#else
349# define PERL_UNUSED_CONTEXT
350#endif
351
24e7ff4e
JH
352/* gcc (-ansi) -pedantic doesn't allow gcc statement expressions,
353 * g++ allows them but seems to have problems with them
354 * (insane errors ensue).
355 * g++ does not give insane errors now (RMB 2008-01-30, gcc 4.2.2).
356 */
357#if defined(PERL_GCC_PEDANTIC) || \
358 (defined(__GNUC__) && defined(__cplusplus) && \
359 ((__GNUC__ < 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ < 2))))
360# ifndef PERL_GCC_BRACE_GROUPS_FORBIDDEN
361# define PERL_GCC_BRACE_GROUPS_FORBIDDEN
362# endif
363#endif
364
ffea512f 365/* Use PERL_UNUSED_RESULT() to suppress the warnings about unused results
b469f1e0
JH
366 * of function calls, e.g. PERL_UNUSED_RESULT(foo(a, b)).
367 *
368 * The main reason for this is that the combination of gcc -Wunused-result
369 * (part of -Wall) and the __attribute__((warn_unused_result)) cannot
370 * be silenced with casting to void. This causes trouble when the system
371 * header files use the attribute.
372 *
373 * Use PERL_UNUSED_RESULT sparingly, though, since usually the warning
374 * is there for a good reason: you might lose success/failure information,
375 * or leak resources, or changes in resources.
ffea512f
JH
376 *
377 * But sometimes you just want to ignore the return value, e.g. on
b469f1e0
JH
378 * codepaths soon ending up in abort, or in "best effort" attempts,
379 * or in situations where there is no good way to handle failures.
ffea512f 380 *
b469f1e0
JH
381 * Sometimes PERL_UNUSED_RESULT might not be the most natural way:
382 * another possibility is that you can capture the return value
383 * and use PERL_UNUSED_VAR on that.
ffea512f 384 *
b469f1e0
JH
385 * The __typeof__() is used instead of typeof() since typeof() is not
386 * available under strict C89, and because of compilers masquerading
387 * as gcc (clang and icc), we want exactly the gcc extension
388 * __typeof__ and nothing else.
ffea512f
JH
389 */
390#ifndef PERL_UNUSED_RESULT
b469f1e0
JH
391# if defined(__GNUC__) && defined(HASATTRIBUTE_WARN_UNUSED_RESULT)
392# define PERL_UNUSED_RESULT(v) STMT_START { __typeof__(v) z = (v); (void)sizeof(z); } STMT_END
ffea512f
JH
393# else
394# define PERL_UNUSED_RESULT(v) ((void)(v))
395# endif
396#endif
397
b56aac20
DM
398/* on gcc (and clang), specify that a warning should be temporarily
399 * ignored; e.g.
400 *
7347ee54 401 * GCC_DIAG_IGNORE_DECL(-Wmultichar);
b56aac20 402 * char b = 'ab';
7347ee54 403 * GCC_DIAG_RESTORE_DECL;
b56aac20
DM
404 *
405 * based on http://dbp-consulting.com/tutorials/SuppressingGCCWarnings.html
406 *
407 * Note that "pragma GCC diagnostic push/pop" was added in GCC 4.6, Mar 2011;
408 * clang only pretends to be GCC 4.2, but still supports push/pop.
c1d6452f 409 *
7347ee54
Z
410 * Note on usage: all macros must be used at a place where a declaration
411 * or statement can occur, i.e., not in the middle of an expression.
412 * *_DIAG_IGNORE() and *_DIAG_RESTORE can be used in any such place, but
413 * must be used without a following semicolon. *_DIAG_IGNORE_DECL() and
414 * *_DIAG_RESTORE_DECL must be used with a following semicolon, and behave
415 * syntactically as declarations (like dNOOP). *_DIAG_IGNORE_STMT()
416 * and *_DIAG_RESTORE_STMT must be used with a following semicolon,
417 * and behave syntactically as statements (like NOOP).
c1d6452f 418 *
b56aac20
DM
419 */
420
57d4b8c5 421#if defined(__clang__) || defined(__clang) || \
d28ce8b4 422 (defined( __GNUC__) && ((__GNUC__ * 100) + __GNUC_MINOR__) >= 406)
c1d6452f
JH
423# define GCC_DIAG_PRAGMA(x) _Pragma (#x)
424/* clang has "clang diagnostic" pragmas, but also understands gcc. */
b56aac20 425# define GCC_DIAG_IGNORE(x) _Pragma("GCC diagnostic push") \
c1d6452f 426 GCC_DIAG_PRAGMA(GCC diagnostic ignored #x)
b56aac20
DM
427# define GCC_DIAG_RESTORE _Pragma("GCC diagnostic pop")
428#else
8ce6f80a
JH
429# define GCC_DIAG_IGNORE(w)
430# define GCC_DIAG_RESTORE
b56aac20 431#endif
7347ee54
Z
432#define GCC_DIAG_IGNORE_DECL(x) GCC_DIAG_IGNORE(x) dNOOP
433#define GCC_DIAG_RESTORE_DECL GCC_DIAG_RESTORE dNOOP
434#define GCC_DIAG_IGNORE_STMT(x) GCC_DIAG_IGNORE(x) NOOP
435#define GCC_DIAG_RESTORE_STMT GCC_DIAG_RESTORE NOOP
337458b1
JH
436/* for clang specific pragmas */
437#if defined(__clang__) || defined(__clang)
438# define CLANG_DIAG_PRAGMA(x) _Pragma (#x)
439# define CLANG_DIAG_IGNORE(x) _Pragma("clang diagnostic push") \
440 CLANG_DIAG_PRAGMA(clang diagnostic ignored #x)
441# define CLANG_DIAG_RESTORE _Pragma("clang diagnostic pop")
442#else
443# define CLANG_DIAG_IGNORE(w)
444# define CLANG_DIAG_RESTORE
445#endif
7347ee54
Z
446#define CLANG_DIAG_IGNORE_DECL(x) CLANG_DIAG_IGNORE(x) dNOOP
447#define CLANG_DIAG_RESTORE_DECL CLANG_DIAG_RESTORE dNOOP
448#define CLANG_DIAG_IGNORE_STMT(x) CLANG_DIAG_IGNORE(x) NOOP
449#define CLANG_DIAG_RESTORE_STMT CLANG_DIAG_RESTORE NOOP
b56aac20 450
6f207bd3 451#define NOOP /*EMPTY*/(void)0
91ca80c3 452#define dNOOP struct Perl___notused_struct
71be2cbc 453
0cb96387 454#ifndef pTHX
a78adc84 455/* Don't bother defining tTHX ; using it outside
e8dda941
JD
456 * code guarded by PERL_IMPLICIT_CONTEXT is an error.
457 */
0cb96387
GS
458# define pTHX void
459# define pTHX_
0cb96387
GS
460# define aTHX
461# define aTHX_
9399a70c 462# define aTHXa(a) NOOP
0cb96387
GS
463# define dTHXa(a) dNOOP
464# define dTHX dNOOP
894356b3
GS
465# define pTHX_1 1
466# define pTHX_2 2
467# define pTHX_3 3
468# define pTHX_4 4
3d42dc86
RGS
469# define pTHX_5 5
470# define pTHX_6 6
a3b680e6
AL
471# define pTHX_7 7
472# define pTHX_8 8
473# define pTHX_9 9
a6fc70e5 474# define pTHX_12 12
0cb96387
GS
475#endif
476
27da23d5
JH
477#ifndef dVAR
478# define dVAR dNOOP
479#endif
480
b4f7f263
GS
481/* these are only defined for compatibility; should not be used internally */
482#if !defined(pTHXo) && !defined(PERL_CORE)
0cb96387
GS
483# define pTHXo pTHX
484# define pTHXo_ pTHX_
0cb96387
GS
485# define aTHXo aTHX
486# define aTHXo_ aTHX_
c5be433b 487# define dTHXo dTHX
71d280e3 488# define dTHXoa(x) dTHXa(x)
0cb96387
GS
489#endif
490
491#ifndef pTHXx
5aaab254 492# define pTHXx PerlInterpreter *my_perl
0cb96387 493# define pTHXx_ pTHXx,
0cb96387
GS
494# define aTHXx my_perl
495# define aTHXx_ aTHXx,
c5be433b 496# define dTHXx dTHX
22c35a8c 497#endif
71be2cbc 498
1de7c2ac
GS
499/* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
500 * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
501 * dTHXs is therefore needed for all functions using PerlIO_foo(). */
502#ifdef PERL_IMPLICIT_SYS
27da23d5
JH
503# ifdef PERL_GLOBAL_STRUCT_PRIVATE
504# define dTHXs dVAR; dTHX
505# else
506# define dTHXs dTHX
507# endif
1de7c2ac 508#else
27da23d5
JH
509# ifdef PERL_GLOBAL_STRUCT_PRIVATE
510# define dTHXs dVAR
511# else
512# define dTHXs dNOOP
513# endif
1de7c2ac
GS
514#endif
515
5b692037
JH
516#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN) && !defined(__cplusplus)
517# ifndef PERL_USE_GCC_BRACE_GROUPS
518# define PERL_USE_GCC_BRACE_GROUPS
519# endif
520#endif
521
728e2803 522/*
523 * STMT_START { statements; } STMT_END;
524 * can be used as a single statement, as in
525 * if (x) STMT_START { ... } STMT_END; else ...
526 *
527 * Trying to select a version that gives no warnings...
528 */
529#if !(defined(STMT_START) && defined(STMT_END))
5b692037 530# ifdef PERL_USE_GCC_BRACE_GROUPS
a0288114 531# define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
728e2803 532# define STMT_END )
533# else
728e2803 534# define STMT_START do
535# define STMT_END while (0)
728e2803 536# endif
537#endif
538
d6f9c181
JH
539#ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
540# define BYTEORDER 0x1234
79072805
LW
541#endif
542
543/* Overall memory policy? */
544#ifndef CONSERVATIVE
545# define LIBERAL 1
546#endif
547
8ada0baa
JH
548#if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
549#define ASCIIish
550#else
551#undef ASCIIish
552#endif
553
79072805
LW
554/*
555 * The following contortions are brought to you on behalf of all the
556 * standards, semi-standards, de facto standards, not-so-de-facto standards
557 * of the world, as well as all the other botches anyone ever thought of.
558 * The basic theory is that if we work hard enough here, the rest of the
559 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
560 */
ac58e20f 561
ee0007ab 562/* define this once if either system, instead of cluttering up the src */
7c458fae 563#if defined(MSDOS) || defined(WIN32) || defined(NETWARE)
ee0007ab
LW
564#define DOSISH 1
565#endif
566
3d97541c 567/* These exist only for back-compat with XS modules. */
8162b70e 568#ifndef PERL_CORE
516e10a9 569#define VOL volatile
3d97541c 570#define CAN_PROTOTYPE
ae75e3d0 571#define _(args) args
6c2ae642 572#define I_LIMITS
36a113ce 573#define I_STDARG
6c2ae642 574#define STANDARD_C
8162b70e 575#endif
663a0e37 576
284167a5
S
577/* By compiling a perl with -DNO_TAINT_SUPPORT or -DSILENT_NO_TAINT_SUPPORT,
578 * you get a perl without taint support, but doubtlessly with a lesser
579 * degree of support. Do not do so unless you know exactly what it means
580 * technically, have a good reason to do so, and know exactly how the
581 * perl will be used. perls with -DSILENT_NO_TAINT_SUPPORT are considered
582 * a potential security risk due to flat out ignoring the security-relevant
583 * taint flags. This being said, a perl without taint support compiled in
584 * has marginal run-time performance benefits.
585 * SILENT_NO_TAINT_SUPPORT implies NO_TAINT_SUPPORT.
586 * SILENT_NO_TAINT_SUPPORT is the same as NO_TAINT_SUPPORT except it
587 * silently ignores -t/-T instead of throwing an exception.
053a3618
S
588 *
589 * DANGER! Using NO_TAINT_SUPPORT or SILENT_NO_TAINT_SUPPORT
6ecb40c7 590 * voids your nonexistent warranty!
284167a5 591 */
dc6d7f5c 592#if defined(SILENT_NO_TAINT_SUPPORT) && !defined(NO_TAINT_SUPPORT)
284167a5
S
593# define NO_TAINT_SUPPORT 1
594#endif
595
596/* NO_TAINT_SUPPORT can be set to transform virtually all taint-related
597 * operations into no-ops for a very modest speed-up. Enable only if you
598 * know what you're doing: tests and CPAN modules' tests are bound to fail.
599 */
dc6d7f5c 600#ifdef NO_TAINT_SUPPORT
284167a5
S
601# define TAINT NOOP
602# define TAINT_NOT NOOP
603# define TAINT_IF(c) NOOP
604# define TAINT_ENV() NOOP
605# define TAINT_PROPER(s) NOOP
606# define TAINT_set(s) NOOP
607# define TAINT_get 0
608# define TAINTING_get 0
609# define TAINTING_set(s) NOOP
610# define TAINT_WARN_get 0
611# define TAINT_WARN_set(s) NOOP
612#else
d48c660d 613# define TAINT (PL_tainted = PL_tainting)
284167a5 614# define TAINT_NOT (PL_tainted = FALSE)
d48c660d 615# define TAINT_IF(c) if (UNLIKELY(c)) { PL_tainted = PL_tainting; }
2439e033
S
616# define TAINT_ENV() if (UNLIKELY(PL_tainting)) { taint_env(); }
617# define TAINT_PROPER(s) if (UNLIKELY(PL_tainting)) { taint_proper(NULL, s); }
284167a5
S
618# define TAINT_set(s) (PL_tainted = (s))
619# define TAINT_get (PL_tainted)
620# define TAINTING_get (PL_tainting)
621# define TAINTING_set(s) (PL_tainting = (s))
622# define TAINT_WARN_get (PL_taint_warn)
623# define TAINT_WARN_set(s) (PL_taint_warn = (s))
624#endif
a687059c 625
20be6587
DM
626/* flags used internally only within pp_subst and pp_substcont */
627#ifdef PERL_CORE
628# define SUBST_TAINT_STR 1 /* string tainted */
629# define SUBST_TAINT_PAT 2 /* pattern tainted */
630# define SUBST_TAINT_REPL 4 /* replacement tainted */
631# define SUBST_TAINT_RETAINT 8 /* use re'taint' in scope */
632# define SUBST_TAINT_BOOLRET 16 /* return is boolean (don't taint) */
633#endif
634
d460ef45 635/* XXX All process group stuff is handled in pp_sys.c. Should these
a6e633de 636 defines move there? If so, I could simplify this a lot. --AD 9/96.
637*/
638/* Process group stuff changed from traditional BSD to POSIX.
639 perlfunc.pod documents the traditional BSD-style syntax, so we'll
640 try to preserve that, if possible.
641*/
642#ifdef HAS_SETPGID
643# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
da5fdda8
AC
644#elif defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
645# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
646#elif defined(HAS_SETPGRP2)
647# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
a6e633de 648#endif
649#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
650# define HAS_SETPGRP /* Well, effectively it does . . . */
651#endif
652
653/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
654 our life easier :-) so we'll try it.
655*/
656#ifdef HAS_GETPGID
657# define BSD_GETPGRP(pid) getpgid((pid))
da5fdda8
AC
658#elif defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
659# define BSD_GETPGRP(pid) getpgrp((pid))
660#elif defined(HAS_GETPGRP2)
661# define BSD_GETPGRP(pid) getpgrp2((pid))
a6e633de 662#endif
663#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
664# define HAS_GETPGRP /* Well, effectively it does . . . */
665#endif
666
d460ef45 667/* These are not exact synonyms, since setpgrp() and getpgrp() may
a6e633de 668 have different behaviors, but perl.h used to define USE_BSDPGRP
669 (prior to 5.003_05) so some extension might depend on it.
670*/
671#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
672# ifndef USE_BSDPGRP
673# define USE_BSDPGRP
674# endif
663a0e37
LW
675#endif
676
486ec47a 677/* HP-UX 10.X CMA (Common Multithreaded Architecture) insists that
8ac5a1fe
MH
678 pthread.h must be included before all other header files.
679*/
3db8f154 680#if defined(USE_ITHREADS) && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
8ac5a1fe
MH
681# include <pthread.h>
682#endif
683
58ab9e8b 684#include <sys/types.h>
663a0e37 685
c7925a5e
DD
686/* EVC 4 SDK headers includes a bad definition of MB_CUR_MAX in stdlib.h
687 which is included from stdarg.h. Bad definition not present in SD 2008
688 SDK headers. wince.h is not yet included, so we cant fix this from there
689 since by then MB_CUR_MAX will be defined from stdlib.h.
690 cewchar.h includes a correct definition of MB_CUR_MAX and it is copied here
691 since cewchar.h can't be included this early */
692#if defined(UNDER_CE) && (_MSC_VER < 1300)
5703b8ce 693# define MB_CUR_MAX 1uL
c7925a5e 694#endif
9d82a2b7
AC
695
696# include <stdarg.h>
760ac839 697
27db2737
JH
698#ifdef I_STDINT
699# include <stdint.h>
700#endif
701
fe14fcc3 702#include <ctype.h>
63b481b9
AC
703#include <float.h>
704#include <limits.h>
a0d0e21e
LW
705
706#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
707#undef METHOD
a0d0e21e
LW
708#endif
709
12ae5dfc
JH
710#ifdef PERL_MICRO
711# define NO_LOCALE
712#endif
713
4633a7c4 714#ifdef I_LOCALE
36477c24 715# include <locale.h>
4633a7c4
LW
716#endif
717
6ebbc862
KW
718#ifdef I_XLOCALE
719# include <xlocale.h>
720#endif
721
36477c24 722#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
723# define USE_LOCALE
ccd65d51
KW
724# define HAS_SKIP_LOCALE_INIT /* Solely for XS code to test for this
725 capability */
36477c24 726# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
727 && defined(HAS_STRXFRM)
728# define USE_LOCALE_COLLATE
729# endif
730# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
731# define USE_LOCALE_CTYPE
732# endif
733# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
734# define USE_LOCALE_NUMERIC
735# endif
fa9b773e
KW
736# if !defined(NO_LOCALE_MESSAGES) && defined(LC_MESSAGES)
737# define USE_LOCALE_MESSAGES
738# endif
739# if !defined(NO_LOCALE_MONETARY) && defined(LC_MONETARY)
740# define USE_LOCALE_MONETARY
741# endif
56e45410
KW
742# if !defined(NO_LOCALE_TIME) && defined(LC_TIME)
743# define USE_LOCALE_TIME
744# endif
9821811f
KW
745# if !defined(NO_LOCALE_ADDRESS) && defined(LC_ADDRESS)
746# define USE_LOCALE_ADDRESS
747# endif
748# if !defined(NO_LOCALE_IDENTIFICATION) && defined(LC_IDENTIFICATION)
749# define USE_LOCALE_IDENTIFICATION
750# endif
751# if !defined(NO_LOCALE_MEASUREMENT) && defined(LC_MEASUREMENT)
752# define USE_LOCALE_MEASUREMENT
753# endif
754# if !defined(NO_LOCALE_PAPER) && defined(LC_PAPER)
755# define USE_LOCALE_PAPER
756# endif
757# if !defined(NO_LOCALE_TELEPHONE) && defined(LC_TELEPHONE)
758# define USE_LOCALE_TELEPHONE
759# endif
36477c24 760#endif /* !NO_LOCALE && HAS_SETLOCALE */
a0d0e21e 761
5a53bf38
KW
762/* XXX The next few defines are unfortunately duplicated in makedef.pl, and
763 * changes here MUST also be made there */
764
7f9e9632 765#ifdef USE_LOCALE /* These locale things are all subject to change */
7f9e9632
KW
766# if defined(HAS_NEWLOCALE) \
767 && defined(LC_ALL_MASK) \
768 && defined(HAS_FREELOCALE) \
769 && defined(HAS_USELOCALE) \
770 && ! defined(NO_POSIX_2008_LOCALE)
771
772 /* For simplicity, the code is written to assume that any platform advanced
773 * enough to have the Posix 2008 locale functions has LC_ALL. The test
774 * above makes sure that assumption is valid */
775
776# define HAS_POSIX_2008_LOCALE
777# endif
e9bc6d6b
KW
778# if defined(USE_ITHREADS) \
779 && ( defined(HAS_POSIX_2008_LOCALE) \
780 || (defined(WIN32) && defined(_MSC_VER) && _MSC_VER >= 1400)) \
781 && ! defined(NO_THREAD_SAFE_LOCALE)
782# define USE_THREAD_SAFE_LOCALE
783# ifdef HAS_POSIX_2008_LOCALE
784# define USE_POSIX_2008_LOCALE
785# endif
786# endif
7f9e9632
KW
787#endif
788
69c5e0db
KW
789/* Microsoft documentation reads in the change log for VS 2015:
790 * "The localeconv function declared in locale.h now works correctly when
791 * per-thread locale is enabled. In previous versions of the library, this
792 * function would return the lconv data for the global locale, not the
793 * thread's locale."
794 */
795#if defined(WIN32) && defined(USE_THREAD_SAFE_LOCALE) && _MSC_VER < 1900
796# define TS_W32_BROKEN_LOCALECONV
797#endif
798
fe14fcc3 799#include <setjmp.h>
79072805 800
a0d0e21e 801#ifdef I_SYS_PARAM
79072805
LW
802# ifdef PARAM_NEEDS_TYPES
803# include <sys/types.h>
804# endif
805# include <sys/param.h>
352d5a3a 806#endif
79072805 807
ce3470dc
AD
808/* On BSD-derived systems, <sys/param.h> defines BSD to a year-month
809 value something like 199306. This may be useful if no more-specific
810 feature test is available.
811*/
812#if defined(BSD)
813# ifndef BSDish
814# define BSDish
815# endif
816#endif
817
dd512de3
AC
818/* Use all the "standard" definitions */
819#include <stdlib.h>
03a14243 820
3f270f98
JH
821/* If this causes problems, set i_unistd=undef in the hint file. */
822#ifdef I_UNISTD
763ee752
AB
823# if defined(__amigaos4__)
824# ifdef I_NETINET_IN
825# include <netinet/in.h>
826# endif
827# endif
3f270f98 828# include <unistd.h>
6e3136a6
AB
829# if defined(__amigaos4__)
830/* Under AmigaOS 4 newlib.library provides an environ. However using
831 * it doesn't give us enough control over inheritance of variables by
832 * subshells etc. so replace with custom version based on abc-shell
833 * code. */
834extern char **myenviron;
835# undef environ
836# define environ myenviron
837# endif
3f270f98
JH
838#endif
839
de8ca8af
NT
840/* for WCOREDUMP */
841#ifdef I_SYS_WAIT
842# include <sys/wait.h>
843#endif
844
9969cdde 845#ifdef __SYMBIAN32__
27da23d5
JH
846# undef _SC_ARG_MAX /* Symbian has _SC_ARG_MAX but no sysconf() */
847#endif
848
21e89b5f 849#if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO)
c45598c5 850EXTERN_C int syscall(int, ...);
2ef53570
JH
851#endif
852
21e89b5f 853#if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO)
c45598c5 854EXTERN_C int usleep(unsigned int);
2ef53570
JH
855#endif
856
f2f9e01d
KW
857/* macros for correct constant construction. These are in C99 <stdint.h>
858 * (so they will not be available in strict C89 mode), but they are nice, so
859 * let's define them if necessary. */
860#ifndef UINT16_C
861# if INTSIZE >= 2
862# define UINT16_C(x) ((U16_TYPE)x##U)
863# else
864# define UINT16_C(x) ((U16_TYPE)x##UL)
865# endif
866#endif
1109a392 867
f2f9e01d
KW
868#ifndef UINT32_C
869# if INTSIZE >= 4
870# define UINT32_C(x) ((U32_TYPE)x##U)
871# else
872# define UINT32_C(x) ((U32_TYPE)x##UL)
873# endif
874#endif
1109a392 875
f2f9e01d
KW
876#ifdef I_STDINT
877 typedef intmax_t PERL_INTMAX_T;
878 typedef uintmax_t PERL_UINTMAX_T;
879#endif
880
881/* N.B. We use QUADKIND here instead of HAS_QUAD here, because that doesn't
882 * actually mean what it has always been documented to mean (see RT #119753)
883 * and is explicitly turned off outside of core with dire warnings about
884 * removing the undef. */
885
886#if defined(QUADKIND)
887# undef PeRl_INT64_C
888# undef PeRl_UINT64_C
889/* Prefer the native integer types (int and long) over long long
890 * (which is not C89) and Win32-specific __int64. */
891# if QUADKIND == QUAD_IS_INT && INTSIZE == 8
892# define PeRl_INT64_C(c) (c)
893# define PeRl_UINT64_C(c) CAT2(c,U)
894# endif
895# if QUADKIND == QUAD_IS_LONG && LONGSIZE == 8
896# define PeRl_INT64_C(c) CAT2(c,L)
897# define PeRl_UINT64_C(c) CAT2(c,UL)
898# endif
899# if QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LONG_LONG)
900# define PeRl_INT64_C(c) CAT2(c,LL)
901# define PeRl_UINT64_C(c) CAT2(c,ULL)
902# endif
903# if QUADKIND == QUAD_IS___INT64
904# define PeRl_INT64_C(c) CAT2(c,I64)
905# define PeRl_UINT64_C(c) CAT2(c,UI64)
906# endif
907# ifndef PeRl_INT64_C
908# define PeRl_INT64_C(c) ((I64)(c)) /* last resort */
909# define PeRl_UINT64_C(c) ((U64TYPE)(c))
910# endif
911/* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will
912 * not fly with C89-pedantic gcc, so let's undefine them first so that
913 * we can redefine them with our native integer preferring versions. */
914# if defined(PERL_DARWIN) && defined(PERL_GCC_PEDANTIC)
915# undef INT64_C
916# undef UINT64_C
917# endif
918# ifndef INT64_C
919# define INT64_C(c) PeRl_INT64_C(c)
920# endif
921# ifndef UINT64_C
922# define UINT64_C(c) PeRl_UINT64_C(c)
923# endif
1109a392 924
f2f9e01d
KW
925# ifndef I_STDINT
926 typedef I64TYPE PERL_INTMAX_T;
927 typedef U64TYPE PERL_UINTMAX_T;
1109a392 928# endif
f2f9e01d
KW
929# ifndef INTMAX_C
930# define INTMAX_C(c) INT64_C(c)
931# endif
932# ifndef UINTMAX_C
933# define UINTMAX_C(c) UINT64_C(c)
934# endif
935
936#else /* below QUADKIND is undefined */
937
938/* Perl doesn't work on 16 bit systems, so must be 32 bit */
939# ifndef I_STDINT
940 typedef I32TYPE PERL_INTMAX_T;
941 typedef U32TYPE PERL_UINTMAX_T;
942# endif
943# ifndef INTMAX_C
944# define INTMAX_C(c) INT32_C(c)
945# endif
946# ifndef UINTMAX_C
947# define UINTMAX_C(c) UINT32_C(c)
948# endif
949
950#endif /* no QUADKIND */
951
952#ifdef PERL_CORE
1109a392
MHM
953
954/* byte-swapping functions for big-/little-endian conversion */
955# define _swab_16_(x) ((U16)( \
f2f9e01d
KW
956 (((U16)(x) & UINT16_C(0x00ff)) << 8) | \
957 (((U16)(x) & UINT16_C(0xff00)) >> 8) ))
1109a392
MHM
958
959# define _swab_32_(x) ((U32)( \
f2f9e01d
KW
960 (((U32)(x) & UINT32_C(0x000000ff)) << 24) | \
961 (((U32)(x) & UINT32_C(0x0000ff00)) << 8) | \
962 (((U32)(x) & UINT32_C(0x00ff0000)) >> 8) | \
963 (((U32)(x) & UINT32_C(0xff000000)) >> 24) ))
1109a392
MHM
964
965# ifdef HAS_QUAD
966# define _swab_64_(x) ((U64)( \
f2f9e01d
KW
967 (((U64)(x) & UINT64_C(0x00000000000000ff)) << 56) | \
968 (((U64)(x) & UINT64_C(0x000000000000ff00)) << 40) | \
969 (((U64)(x) & UINT64_C(0x0000000000ff0000)) << 24) | \
970 (((U64)(x) & UINT64_C(0x00000000ff000000)) << 8) | \
971 (((U64)(x) & UINT64_C(0x000000ff00000000)) >> 8) | \
972 (((U64)(x) & UINT64_C(0x0000ff0000000000)) >> 24) | \
973 (((U64)(x) & UINT64_C(0x00ff000000000000)) >> 40) | \
974 (((U64)(x) & UINT64_C(0xff00000000000000)) >> 56) ))
1109a392
MHM
975# endif
976
9c17f24a
NC
977/* The old value was hard coded at 1008. (4096-16) seems to be a bit faster,
978 at least on FreeBSD. YMMV, so experiment. */
979#ifndef PERL_ARENA_SIZE
980#define PERL_ARENA_SIZE 4080
981#endif
982
ccb2c8b8 983/* Maximum level of recursion */
2b9dff67
RGS
984#ifndef PERL_SUB_DEPTH_WARN
985#define PERL_SUB_DEPTH_WARN 100
ccb2c8b8
RGS
986#endif
987
1109a392
MHM
988#endif /* PERL_CORE */
989
e839e6ed
DM
990/* Maximum number of args that may be passed to an OP_MULTICONCAT op.
991 * It determines the size of local arrays in S_maybe_multiconcat() and
992 * pp_multiconcat().
993 */
994#define PERL_MULTICONCAT_MAXARG 64
995
996/* The indexes of fields of a multiconcat aux struct.
997 * The fixed fields are followed by nargs+1 const segment lengths,
998 * and if utf8 and non-utf8 differ, a second nargs+1 set for utf8.
999 */
1000
1001#define PERL_MULTICONCAT_IX_NARGS 0 /* number of arguments */
1002#define PERL_MULTICONCAT_IX_PLAIN_PV 1 /* non-utf8 constant string */
1003#define PERL_MULTICONCAT_IX_PLAIN_LEN 2 /* non-utf8 constant string length */
1004#define PERL_MULTICONCAT_IX_UTF8_PV 3 /* utf8 constant string */
1005#define PERL_MULTICONCAT_IX_UTF8_LEN 4 /* utf8 constant string length */
1006#define PERL_MULTICONCAT_IX_LENGTHS 5 /* first of nargs+1 const segment lens */
1007#define PERL_MULTICONCAT_HEADER_SIZE 5 /* The number of fields of a
1008 multiconcat header */
1009
bdf3085f
NC
1010/* We no longer default to creating a new SV for GvSV.
1011 Do this before embed. */
1012#ifndef PERL_CREATE_GVSV
7459f06b
NC
1013# ifndef PERL_DONT_CREATE_GVSV
1014# define PERL_DONT_CREATE_GVSV
1015# endif
bdf3085f
NC
1016#endif
1017
ca0c25f6
NC
1018#if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
1019#define PERL_USES_PL_PIDSTATUS
1020#endif
1021
739a0b84 1022#if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(__SYMBIAN32__)
a62746fa
RGS
1023#define PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
1024#endif
1025
c31fac66
GS
1026#define MEM_SIZE Size_t
1027
1936d2a7
NC
1028/* Round all values passed to malloc up, by default to a multiple of
1029 sizeof(size_t)
1030*/
1031#ifndef PERL_STRLEN_ROUNDUP_QUANTUM
1032#define PERL_STRLEN_ROUNDUP_QUANTUM Size_t_size
1033#endif
1034
f1200559
WH
1035/* sv_grow() will expand strings by at least a certain percentage of
1036 the previously *used* length to avoid excessive calls to realloc().
1037 The default is 25% of the current length.
1038*/
1039#ifndef PERL_STRLEN_EXPAND_SHIFT
1040# define PERL_STRLEN_EXPAND_SHIFT 2
1041#endif
1042
346712be
AC
1043#include <stddef.h>
1044#define STRUCT_OFFSET(s,m) offsetof(s,m)
d0b86e2f
BF
1045
1046/* ptrdiff_t is C11, so undef it under pedantic builds */
1047#ifdef PERL_GCC_PEDANTIC
1048# undef HAS_PTRDIFF_T
51371543
GS
1049#endif
1050
9969cdde 1051#ifndef __SYMBIAN32__
d54fbe84 1052# include <string.h>
51371543
GS
1053#endif
1054
55497cff 1055/* This comes after <stdlib.h> so we don't try to change the standard
1056 * library prototypes; we'll use our own in proto.h instead. */
03a14243 1057
4633a7c4 1058#ifdef MYMALLOC
86058a2d 1059# ifdef PERL_POLLUTE_MALLOC
ee13e175 1060# ifndef PERL_EXTMALLOC_DEF
86058a2d
GS
1061# define Perl_malloc malloc
1062# define Perl_calloc calloc
1063# define Perl_realloc realloc
1064# define Perl_mfree free
ee13e175 1065# endif
86058a2d
GS
1066# else
1067# define EMBEDMYMALLOC /* for compatibility */
1068# endif
827e134a 1069
651b9576
GS
1070# define safemalloc Perl_malloc
1071# define safecalloc Perl_calloc
1072# define saferealloc Perl_realloc
1073# define safefree Perl_mfree
22f7c9c9
JH
1074# define CHECK_MALLOC_TOO_LATE_FOR_(code) STMT_START { \
1075 if (!PL_tainting && MallocCfg_ptr[MallocCfg_cfg_env_read]) \
1076 code; \
1077 } STMT_END
1078# define CHECK_MALLOC_TOO_LATE_FOR(ch) \
1079 CHECK_MALLOC_TOO_LATE_FOR_(MALLOC_TOO_LATE_FOR(ch))
1080# define panic_write2(s) write(2, s, strlen(s))
1081# define CHECK_MALLOC_TAINT(newval) \
1082 CHECK_MALLOC_TOO_LATE_FOR_( \
1083 if (newval) { \
acfd4d8e 1084 PERL_UNUSED_RESULT(panic_write2("panic: tainting with $ENV{PERL_MALLOC_OPT}\n"));\
22f7c9c9 1085 exit(1); })
22f7c9c9 1086# define MALLOC_CHECK_TAINT(argc,argv,env) STMT_START { \
b0891165 1087 if (doing_taint(argc,argv,env)) { \
22f7c9c9
JH
1088 MallocCfg_ptr[MallocCfg_skip_cfg_env] = 1; \
1089 }} STMT_END;
f2517201
GS
1090#else /* MYMALLOC */
1091# define safemalloc safesysmalloc
1092# define safecalloc safesyscalloc
1093# define saferealloc safesysrealloc
1094# define safefree safesysfree
22f7c9c9
JH
1095# define CHECK_MALLOC_TOO_LATE_FOR(ch) ((void)0)
1096# define CHECK_MALLOC_TAINT(newval) ((void)0)
1097# define MALLOC_CHECK_TAINT(argc,argv,env)
55497cff 1098#endif /* MYMALLOC */
4633a7c4 1099
fe13d51d 1100/* diag_listed_as: "-T" is on the #! line, it must also be used on the command line */
27da23d5 1101#define TOO_LATE_FOR_(ch,what) Perl_croak(aTHX_ "\"-%c\" is on the #! line, it must also be used on the command line%s", (char)(ch), what)
22f7c9c9
JH
1102#define TOO_LATE_FOR(ch) TOO_LATE_FOR_(ch, "")
1103#define MALLOC_TOO_LATE_FOR(ch) TOO_LATE_FOR_(ch, " with $ENV{PERL_MALLOC_OPT}")
1104#define MALLOC_CHECK_TAINT2(argc,argv) MALLOC_CHECK_TAINT(argc,argv,NULL)
1105
fc36a67e 1106#ifndef memzero
04322328 1107# define memzero(d,l) memset(d,0,l)
d9d8d8de 1108#endif
378cc40b 1109
ae986130 1110#ifdef I_NETINET_IN
79072805 1111# include <netinet/in.h>
ae986130
LW
1112#endif
1113
28e8609d
JH
1114#ifdef I_ARPA_INET
1115# include <arpa/inet.h>
1116#endif
1117
1aef975c 1118#ifdef I_SYS_STAT
84902520 1119# include <sys/stat.h>
1aef975c 1120#endif
79072805 1121
287a962e
JD
1122/* Microsoft VC's sys/stat.h defines all S_Ixxx macros except S_IFIFO.
1123 This definition should ideally go into win32/win32.h, but S_IFIFO is
1124 used later here in perl.h before win32/win32.h is being included. */
1125#if !defined(S_IFIFO) && defined(_S_IFIFO)
1126# define S_IFIFO _S_IFIFO
1127#endif
1128
cc3315ba 1129/* The stat macros for Unisoft System V/88 (and derivatives
a0d0e21e
LW
1130 like UTekV) are broken, sometimes giving false positives. Undefine
1131 them here and let the code below set them to proper values.
1132
1133 The ghs macro stands for GreenHills Software C-1.8.5 which
1134 is the C compiler for sysV88 and the various derivatives.
1135 This header file bug is corrected in gcc-2.5.8 and later versions.
1136 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
1137
cc3315ba 1138#if defined(m88k) && defined(ghs)
79072805
LW
1139# undef S_ISDIR
1140# undef S_ISCHR
1141# undef S_ISBLK
1142# undef S_ISREG
1143# undef S_ISFIFO
1144# undef S_ISLNK
ee0007ab 1145#endif
135863df 1146
9245da2a 1147#include <time.h>
663a0e37 1148
fe14fcc3 1149#ifdef I_SYS_TIME
85e6fe83 1150# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
1151# define KERNEL
1152# endif
1153# include <sys/time.h>
85e6fe83 1154# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
1155# undef KERNEL
1156# endif
a687059c 1157#endif
135863df 1158
55497cff 1159#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 1160# include <sys/times.h>
d9d8d8de 1161#endif
8d063cd8 1162
663a0e37 1163#include <errno.h>
1e743fda 1164
acfe0abc 1165#if defined(WIN32) && defined(PERL_IMPLICIT_SYS)
b4748376
NIS
1166# define WIN32SCK_IS_STDSCK /* don't pull in custom wsock layer */
1167#endif
1168
da70cfc6 1169#if defined(HAS_SOCKET) && !defined(WIN32) /* WIN32 handles sockets via win32.h */
1e743fda
JH
1170# include <sys/socket.h>
1171# if defined(USE_SOCKS) && defined(I_SOCKS)
1172# if !defined(INCLUDE_PROTOTYPES)
1173# define INCLUDE_PROTOTYPES /* for <socks.h> */
1174# define PERL_SOCKS_NEED_PROTOTYPES
1175# endif
1176# include <socks.h>
1177# ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
1178# undef INCLUDE_PROTOTYPES
1179# undef PERL_SOCKS_NEED_PROTOTYPES
ed6116ce 1180# endif
d460ef45 1181# endif
1e743fda 1182# ifdef I_NETDB
2986a63f
JH
1183# ifdef NETWARE
1184# include<stdio.h>
1185# endif
1e743fda
JH
1186# include <netdb.h>
1187# endif
1188# ifndef ENOTSOCK
1189# ifdef I_NET_ERRNO
1190# include <net/errno.h>
1191# endif
1192# endif
1193#endif
1194
fa0a29af 1195/* sockatmark() is so new (2001) that many places might have it hidden
29820b6d
MHM
1196 * behind some -D_BLAH_BLAH_SOURCE guard. The __THROW magic is required
1197 * e.g. in Gentoo, see http://bugs.gentoo.org/show_bug.cgi?id=12605 */
fa0a29af 1198#if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
29820b6d
MHM
1199# if defined(__THROW) && defined(__GLIBC__)
1200int sockatmark(int) __THROW;
1201# else
2ef53570 1202int sockatmark(int);
29820b6d 1203# endif
2ef53570
JH
1204#endif
1205
7e827271 1206#if defined(__osf__) && defined(__cplusplus) && !defined(_XOPEN_SOURCE_EXTENDED) /* Tru64 "cxx" (C++), see hints/dec_osf.sh for why the _XOPEN_SOURCE_EXTENDED cannot be defined. */
45d3b546
JH
1207EXTERN_C int fchdir(int);
1208EXTERN_C int flock(int, int);
1209EXTERN_C int fseeko(FILE *, off_t, int);
1210EXTERN_C off_t ftello(FILE *);
1211#endif
1212
7e827271 1213#if defined(__SUNPRO_CC) /* SUNWspro CC (C++) */
1ccb7c8d
JH
1214EXTERN_C char *crypt(const char *, const char *);
1215#endif
1216
a54aca4b 1217#if defined(__cplusplus) && defined(__CYGWIN__)
667e2948
SP
1218EXTERN_C char *crypt(const char *, const char *);
1219#endif
1220
1e743fda
JH
1221#ifdef SETERRNO
1222# undef SETERRNO /* SOCKS might have defined this */
ed6116ce 1223#endif
f86702cc 1224
1225#ifdef VMS
1226# define SETERRNO(errcode,vmserrcode) \
1227 STMT_START { \
1228 set_errno(errcode); \
1229 set_vaxc_errno(vmserrcode); \
1230 } STMT_END
4ee39169
CS
1231# define dSAVEDERRNO int saved_errno; unsigned saved_vms_errno
1232# define dSAVE_ERRNO int saved_errno = errno; unsigned saved_vms_errno = vaxc$errno
1233# define SAVE_ERRNO ( saved_errno = errno, saved_vms_errno = vaxc$errno )
1234# define RESTORE_ERRNO SETERRNO(saved_errno, saved_vms_errno)
1235
93189314
JH
1236# define LIB_INVARG LIB$_INVARG
1237# define RMS_DIR RMS$_DIR
1238# define RMS_FAC RMS$_FAC
1239# define RMS_FEX RMS$_FEX
1240# define RMS_FNF RMS$_FNF
1241# define RMS_IFI RMS$_IFI
1242# define RMS_ISI RMS$_ISI
1243# define RMS_PRV RMS$_PRV
1244# define SS_ACCVIO SS$_ACCVIO
1245# define SS_DEVOFFLINE SS$_DEVOFFLINE
1246# define SS_IVCHAN SS$_IVCHAN
1247# define SS_NORMAL SS$_NORMAL
8a9f18be 1248# define SS_NOPRIV SS$_NOPRIV
4388f261 1249# define SS_BUFFEROVF SS$_BUFFEROVF
748a9306 1250#else
93189314
JH
1251# define LIB_INVARG 0
1252# define RMS_DIR 0
1253# define RMS_FAC 0
1254# define RMS_FEX 0
1255# define RMS_FNF 0
1256# define RMS_IFI 0
1257# define RMS_ISI 0
1258# define RMS_PRV 0
1259# define SS_ACCVIO 0
1260# define SS_DEVOFFLINE 0
1261# define SS_IVCHAN 0
1262# define SS_NORMAL 0
8a9f18be 1263# define SS_NOPRIV 0
4388f261 1264# define SS_BUFFEROVF 0
748a9306 1265#endif
ed6116ce 1266
6ca940a9
TC
1267#ifdef WIN32
1268# define dSAVEDERRNO int saved_errno; DWORD saved_win32_errno
1269# define dSAVE_ERRNO int saved_errno = errno; DWORD saved_win32_errno = GetLastError()
1270# define SAVE_ERRNO ( saved_errno = errno, saved_win32_errno = GetLastError() )
1271# define RESTORE_ERRNO ( errno = saved_errno, SetLastError(saved_win32_errno) )
1272#endif
1273
1274#ifdef OS2
1275# define dSAVEDERRNO int saved_errno; unsigned long saved_os2_errno
1276# define dSAVE_ERRNO int saved_errno = errno; unsigned long saved_os2_errno = Perl_rc
1277# define SAVE_ERRNO ( saved_errno = errno, saved_os2_errno = Perl_rc )
1278# define RESTORE_ERRNO ( errno = saved_errno, Perl_rc = saved_os2_errno )
1279#endif
1280
1281#ifndef SETERRNO
1282# define SETERRNO(errcode,vmserrcode) (errno = (errcode))
1283#endif
1284
1285#ifndef dSAVEDERRNO
1286# define dSAVEDERRNO int saved_errno
1287# define dSAVE_ERRNO int saved_errno = errno
1288# define SAVE_ERRNO (saved_errno = errno)
1289# define RESTORE_ERRNO (errno = saved_errno)
1290#endif
1291
f5fa9033 1292#define ERRSV GvSVn(PL_errgv)
dfd167e9 1293
b4f8d149 1294/* contains inlined gv_add_by_type */
dfd167e9 1295#define CLEAR_ERRSV() STMT_START { \
b4f8d149
DD
1296 SV ** const svp = &GvSV(PL_errgv); \
1297 if (!*svp) { \
a1b60c8d 1298 *svp = newSVpvs(""); \
b4f8d149
DD
1299 } else if (SvREADONLY(*svp)) { \
1300 SvREFCNT_dec_NN(*svp); \
b4f8d149 1301 *svp = newSVpvs(""); \
dfd167e9 1302 } else { \
b4f8d149 1303 SV *const errsv = *svp; \
a1b60c8d 1304 SvPVCLEAR(errsv); \
b4f8d149 1305 SvPOK_only(errsv); \
dfd167e9
NC
1306 if (SvMAGICAL(errsv)) { \
1307 mg_free(errsv); \
1308 } \
dfd167e9
NC
1309 } \
1310 } STMT_END
1311
1312
414bf5ae
MHM
1313#ifdef PERL_CORE
1314# define DEFSV (0 + GvSVn(PL_defgv))
55b5114f
FC
1315# define DEFSV_set(sv) \
1316 (SvREFCNT_dec(GvSV(PL_defgv)), GvSV(PL_defgv) = SvREFCNT_inc(sv))
1317# define SAVE_DEFSV \
1318 ( \
1319 save_gp(PL_defgv, 0), \
1320 GvINTRO_off(PL_defgv), \
1321 SAVEGENERICSV(GvSV(PL_defgv)), \
1322 GvSV(PL_defgv) = NULL \
1323 )
414bf5ae
MHM
1324#else
1325# define DEFSV GvSVn(PL_defgv)
55b5114f
FC
1326# define DEFSV_set(sv) (GvSV(PL_defgv) = (sv))
1327# define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
414bf5ae 1328#endif
38a03e6e 1329
55497cff 1330#ifndef errno
5ff3f7a4
GS
1331 extern int errno; /* ANSI allows errno to be an lvalue expr.
1332 * For example in multithreaded environments
1333 * something like this might happen:
1334 * extern int *_errno(void);
1335 * #define errno (*_errno()) */
d9d8d8de 1336#endif
663a0e37 1337
7e996671
KW
1338#define UNKNOWN_ERRNO_MSG "(unknown)"
1339
b21d8587
AC
1340#if VMS
1341#define Strerror(e) strerror((e), vaxc$errno)
1342#else
1343#define Strerror(e) strerror(e)
35c8bce7 1344#endif
663a0e37 1345
2304df62 1346#ifdef I_SYS_IOCTL
79072805
LW
1347# ifndef _IOCTL_
1348# include <sys/ioctl.h>
1349# endif
a687059c
LW
1350#endif
1351
ee0007ab 1352#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805
LW
1353# ifdef HAS_SOCKETPAIR
1354# undef HAS_SOCKETPAIR
1355# endif
2304df62
AD
1356# ifdef I_NDBM
1357# undef I_NDBM
79072805 1358# endif
a687059c
LW
1359#endif
1360
02fc2eee
NC
1361#ifndef HAS_SOCKETPAIR
1362# ifdef HAS_SOCKET
1363# define socketpair Perl_my_socketpair
1364# endif
1365#endif
1366
a687059c 1367#if INTSIZE == 2
79072805
LW
1368# define htoni htons
1369# define ntohi ntohs
a687059c 1370#else
79072805
LW
1371# define htoni htonl
1372# define ntohi ntohl
a687059c
LW
1373#endif
1374
a0d0e21e 1375/* Configure already sets Direntry_t */
35c8bce7 1376#if defined(I_DIRENT)
da5fdda8
AC
1377# include <dirent.h>
1378#elif defined(I_SYS_NDIR)
1379# include <sys/ndir.h>
1380#elif defined(I_SYS_DIR)
1381# include <sys/dir.h>
4633a7c4 1382#endif
a687059c 1383
c623bd54
LW
1384/*
1385 * The following gobbledygook brought to you on behalf of __STDC__.
1386 * (I could just use #ifndef __STDC__, but this is more bulletproof
1387 * in the face of half-implementations.)
1388 */
1389
21e89b5f 1390#if defined(I_SYSMODE)
ca6e1c26
JH
1391#include <sys/mode.h>
1392#endif
1393
c623bd54
LW
1394#ifndef S_IFMT
1395# ifdef _S_IFMT
1396# define S_IFMT _S_IFMT
1397# else
1398# define S_IFMT 0170000
1399# endif
1400#endif
1401
1402#ifndef S_ISDIR
1403# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
1404#endif
1405
1406#ifndef S_ISCHR
1407# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
1408#endif
1409
1410#ifndef S_ISBLK
fe14fcc3
LW
1411# ifdef S_IFBLK
1412# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
1413# else
1414# define S_ISBLK(m) (0)
1415# endif
c623bd54
LW
1416#endif
1417
1418#ifndef S_ISREG
1419# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
1420#endif
1421
1422#ifndef S_ISFIFO
fe14fcc3
LW
1423# ifdef S_IFIFO
1424# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
1425# else
1426# define S_ISFIFO(m) (0)
1427# endif
c623bd54
LW
1428#endif
1429
1430#ifndef S_ISLNK
da5fdda8
AC
1431# ifdef _S_ISLNK
1432# define S_ISLNK(m) _S_ISLNK(m)
1433# elif defined(_S_IFLNK)
1434# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
1435# elif defined(S_IFLNK)
1436# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
1437# else
1438# define S_ISLNK(m) (0)
1439# endif
c623bd54
LW
1440#endif
1441
1442#ifndef S_ISSOCK
da5fdda8
AC
1443# ifdef _S_ISSOCK
1444# define S_ISSOCK(m) _S_ISSOCK(m)
1445# elif defined(_S_IFSOCK)
1446# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
1447# elif defined(S_IFSOCK)
1448# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
1449# else
1450# define S_ISSOCK(m) (0)
1451# endif
c623bd54
LW
1452#endif
1453
1454#ifndef S_IRUSR
1455# ifdef S_IREAD
1456# define S_IRUSR S_IREAD
1457# define S_IWUSR S_IWRITE
1458# define S_IXUSR S_IEXEC
1459# else
1460# define S_IRUSR 0400
1461# define S_IWUSR 0200
1462# define S_IXUSR 0100
1463# endif
fac7cdfc
JS
1464#endif
1465
1466#ifndef S_IRGRP
1467# ifdef S_IRUSR
1468# define S_IRGRP (S_IRUSR>>3)
1469# define S_IWGRP (S_IWUSR>>3)
1470# define S_IXGRP (S_IXUSR>>3)
1471# else
1472# define S_IRGRP 0040
1473# define S_IWGRP 0020
1474# define S_IXGRP 0010
1475# endif
1476#endif
1477
1478#ifndef S_IROTH
1479# ifdef S_IRUSR
1480# define S_IROTH (S_IRUSR>>6)
1481# define S_IWOTH (S_IWUSR>>6)
1482# define S_IXOTH (S_IXUSR>>6)
1483# else
1484# define S_IROTH 0040
1485# define S_IWOTH 0020
1486# define S_IXOTH 0010
1487# endif
c623bd54
LW
1488#endif
1489
1490#ifndef S_ISUID
1491# define S_ISUID 04000
1492#endif
1493
1494#ifndef S_ISGID
1495# define S_ISGID 02000
1496#endif
1497
ca6e1c26
JH
1498#ifndef S_IRWXU
1499# define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
d460ef45 1500#endif
ca6e1c26
JH
1501
1502#ifndef S_IRWXG
1503# define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
d460ef45 1504#endif
ca6e1c26
JH
1505
1506#ifndef S_IRWXO
1507# define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
d460ef45 1508#endif
ca6e1c26 1509
b6c36746 1510/* Haiku R1 seems to define S_IREAD and S_IWRITE in <posix/fcntl.h>
c21fb2b8
JH
1511 * which would get included through <sys/file.h >, but that is 3000
1512 * lines in the future. --jhi */
1513
b6c36746 1514#if !defined(S_IREAD) && !defined(__HAIKU__)
ca6e1c26
JH
1515# define S_IREAD S_IRUSR
1516#endif
1517
b6c36746 1518#if !defined(S_IWRITE) && !defined(__HAIKU__)
ca6e1c26
JH
1519# define S_IWRITE S_IWUSR
1520#endif
1521
1522#ifndef S_IEXEC
1523# define S_IEXEC S_IXUSR
1524#endif
1525
a0d0e21e 1526#if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
45d8adaa
LW
1527# define SLOPPYDIVIDE
1528#endif
1529
748a9306
LW
1530#ifdef UV
1531#undef UV
1532#endif
1533
f1519f70
AC
1534/* This used to be conditionally defined based on whether we had a sprintf()
1535 * that correctly returns the string length (as required by C89), but we no
1536 * longer need that. XS modules can (and do) use this name, so it must remain
1537 * a part of the API that's visible to modules. But we no longer document it
1538 * either (because using sprintf() rather than snprintf() is almost always
1539 * a bad idea). */
1540#define my_sprintf sprintf
ce582cee 1541
5b692037
JH
1542/*
1543 * If we have v?snprintf() and the C99 variadic macros, we can just
1544 * use just the v?snprintf(). It is nice to try to trap the buffer
1545 * overflow, however, so if we are DEBUGGING, and we cannot use the
e5afc1ae
DD
1546 * gcc statement expressions, then use the function wrappers which try
1547 * to trap the overflow. If we can use the gcc statement expressions,
1548 * we can try that even with the version that uses the C99 variadic
1549 * macros.
5b692037
JH
1550 */
1551
1208b3dd 1552/* Note that we do not check against snprintf()/vsnprintf() returning
4059ba87
AC
1553 * negative values because that is non-standard behaviour and we use
1554 * snprintf/vsnprintf only iff HAS_VSNPRINTF has been defined, and
1555 * that should be true only if the snprintf()/vsnprintf() are true
1556 * to the standard. */
1208b3dd 1557
571ee10c 1558#define PERL_SNPRINTF_CHECK(len, max, api) STMT_START { if ((max) > 0 && (Size_t)len > (max)) Perl_croak_nocontext("panic: %s buffer overflow", STRINGIFY(api)); } STMT_END
e8549682 1559
a4eca1d4
JH
1560#ifdef USE_QUADMATH
1561# define my_snprintf Perl_my_snprintf
1562# define PERL_MY_SNPRINTF_GUARDED
4059ba87 1563#elif defined(HAS_SNPRINTF) && defined(HAS_C99_VARIADIC_MACROS) && !(defined(DEBUGGING) && !defined(PERL_USE_GCC_BRACE_GROUPS)) && !defined(PERL_GCC_PEDANTIC)
5b692037 1564# ifdef PERL_USE_GCC_BRACE_GROUPS
e8549682 1565# define my_snprintf(buffer, max, ...) ({ int len = snprintf(buffer, max, __VA_ARGS__); PERL_SNPRINTF_CHECK(len, max, snprintf); len; })
1208b3dd 1566# define PERL_MY_SNPRINTF_GUARDED
5b692037 1567# else
e8549682 1568# define my_snprintf(buffer, max, ...) snprintf(buffer, max, __VA_ARGS__)
5b692037
JH
1569# endif
1570#else
1571# define my_snprintf Perl_my_snprintf
1208b3dd 1572# define PERL_MY_SNPRINTF_GUARDED
5b692037
JH
1573#endif
1574
a4eca1d4
JH
1575/* There is no quadmath_vsnprintf, and therefore my_vsnprintf()
1576 * dies if called under USE_QUADMATH. */
4059ba87 1577#if defined(HAS_VSNPRINTF) && defined(HAS_C99_VARIADIC_MACROS) && !(defined(DEBUGGING) && !defined(PERL_USE_GCC_BRACE_GROUPS)) && !defined(PERL_GCC_PEDANTIC)
5b692037 1578# ifdef PERL_USE_GCC_BRACE_GROUPS
e8549682 1579# define my_vsnprintf(buffer, max, ...) ({ int len = vsnprintf(buffer, max, __VA_ARGS__); PERL_SNPRINTF_CHECK(len, max, vsnprintf); len; })
1208b3dd 1580# define PERL_MY_VSNPRINTF_GUARDED
5b692037 1581# else
e8549682 1582# define my_vsnprintf(buffer, max, ...) vsnprintf(buffer, max, __VA_ARGS__)
5b692037
JH
1583# endif
1584#else
1585# define my_vsnprintf Perl_my_vsnprintf
1208b3dd 1586# define PERL_MY_VSNPRINTF_GUARDED
5b692037 1587#endif
d9fad198 1588
e8549682
JH
1589/* You will definitely need to use the PERL_MY_SNPRINTF_POST_GUARD()
1590 * or PERL_MY_VSNPRINTF_POST_GUARD() if you otherwise decide to ignore
1591 * the result of my_snprintf() or my_vsnprintf(). (No, you should not
1592 * completely ignore it: otherwise you cannot know whether your output
1593 * was too long.)
1594 *
1595 * int len = my_sprintf(buf, max, ...);
1596 * PERL_MY_SNPRINTF_POST_GUARD(len, max);
1597 *
1598 * The trick is that in certain platforms [a] the my_sprintf() already
1599 * contains the sanity check, while in certain platforms [b] it needs
1600 * to be done as a separate step. The POST_GUARD is that step-- in [a]
1601 * platforms the POST_GUARD actually does nothing since the check has
1602 * already been done. Watch out for the max being the same in both calls.
1603 *
1604 * If you actually use the snprintf/vsnprintf return value already,
1605 * you assumedly are checking its validity somehow. But you can
1606 * insert the POST_GUARD() also in that case. */
1607
1608#ifndef PERL_MY_SNPRINTF_GUARDED
1609# define PERL_MY_SNPRINTF_POST_GUARD(len, max) PERL_SNPRINTF_CHECK(len, max, snprintf)
1610#else
1611# define PERL_MY_SNPRINTF_POST_GUARD(len, max) PERL_UNUSED_VAR(len)
1612#endif
1613
1614#ifndef PERL_MY_VSNPRINTF_GUARDED
1615# define PERL_MY_VSNPRINTF_POST_GUARD(len, max) PERL_SNPRINTF_CHECK(len, max, vsnprintf)
1616#else
1617# define PERL_MY_VSNPRINTF_POST_GUARD(len, max) PERL_UNUSED_VAR(len)
1618#endif
1619
a6cc4119
SP
1620#ifdef HAS_STRLCAT
1621# define my_strlcat strlcat
1622#else
1623# define my_strlcat Perl_my_strlcat
1624#endif
1625
6dba01e2
KW
1626#if defined(PERL_CORE) || defined(PERL_EXT)
1627# ifdef HAS_MEMRCHR
1628# define my_memrchr memrchr
1629# else
1630# define my_memrchr S_my_memrchr
1631# endif
1632#endif
1633
a6cc4119
SP
1634#ifdef HAS_STRLCPY
1635# define my_strlcpy strlcpy
1636#else
1637# define my_strlcpy Perl_my_strlcpy
1638#endif
1639
aefb3fa0
DIM
1640#ifdef HAS_STRNLEN
1641# define my_strnlen strnlen
1642#else
1643# define my_strnlen Perl_my_strnlen
1644#endif
1645
05f13f53 1646/*
27d4fb96 1647 The IV type is supposed to be long enough to hold any integral
1648 value or a pointer.
1649 --Andy Dougherty August 1996
1650*/
1651
a22e52b9
JH
1652typedef IVTYPE IV;
1653typedef UVTYPE UV;
8175356b 1654
10cc9d2a 1655#if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
6b8eaf93 1656# if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
5ff3f7a4
GS
1657# define IV_MAX INT64_MAX
1658# define IV_MIN INT64_MIN
1659# define UV_MAX UINT64_MAX
cae7ae48
JH
1660# ifndef UINT64_MIN
1661# define UINT64_MIN 0
1662# endif
5ff3f7a4
GS
1663# define UV_MIN UINT64_MIN
1664# else
1665# define IV_MAX PERL_QUAD_MAX
1666# define IV_MIN PERL_QUAD_MIN
1667# define UV_MAX PERL_UQUAD_MAX
1668# define UV_MIN PERL_UQUAD_MIN
1669# endif
cf2093f6
JH
1670# define IV_IS_QUAD
1671# define UV_IS_QUAD
79072805 1672#else
8175356b 1673# if defined(INT32_MAX) && IVSIZE == 4
5ff3f7a4
GS
1674# define IV_MAX INT32_MAX
1675# define IV_MIN INT32_MIN
716026f9
DL
1676# ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1677# define UV_MAX UINT32_MAX
1678# else
1679# define UV_MAX 4294967295U
1680# endif
cae7ae48
JH
1681# ifndef UINT32_MIN
1682# define UINT32_MIN 0
1683# endif
5ff3f7a4
GS
1684# define UV_MIN UINT32_MIN
1685# else
1686# define IV_MAX PERL_LONG_MAX
1687# define IV_MIN PERL_LONG_MIN
1688# define UV_MAX PERL_ULONG_MAX
1689# define UV_MIN PERL_ULONG_MIN
1690# endif
8175356b 1691# if IVSIZE == 8
cf2093f6
JH
1692# define IV_IS_QUAD
1693# define UV_IS_QUAD
de1c2614
JH
1694# ifndef HAS_QUAD
1695# define HAS_QUAD
1696# endif
cf2093f6
JH
1697# else
1698# undef IV_IS_QUAD
1699# undef UV_IS_QUAD
9ea40801 1700#if !defined(PERL_CORE) || defined(USING_MSVC6)
e25d460c
NC
1701/* We think that removing this decade-old undef this will cause too much
1702 breakage on CPAN for too little gain. (See RT #119753)
9ea40801
SH
1703 However, we do need HAS_QUAD in the core for use by the drand48 code,
1704 but not for Win32 VC6 because it has poor __int64 support. */
cb4b14d5 1705# undef HAS_QUAD
e25d460c 1706#endif
cf2093f6 1707# endif
79072805 1708#endif
d7d93a81 1709
6313e544
JH
1710#define Size_t_MAX (~(Size_t)0)
1711#define SSize_t_MAX (SSize_t)(~(Size_t)0 >> 1)
9a543cee 1712
cae7ae48 1713#define IV_DIG (BIT_DIGITS(IVSIZE * 8))
22ec83e3 1714#define UV_DIG (BIT_DIGITS(UVSIZE * 8))
56431972 1715
28e5dec8 1716#ifndef NO_PERL_PRESERVE_IVUV
f5c03d33 1717#define PERL_PRESERVE_IVUV /* We like our integers to stay integers. */
28e5dec8
JH
1718#endif
1719
d460ef45 1720/*
26bb67e2
JH
1721 * The macros INT2PTR and NUM2PTR are (despite their names)
1722 * bi-directional: they will convert int/float to or from pointers.
1723 * However the conversion to int/float are named explicitly:
1724 * PTR2IV, PTR2UV, PTR2NV.
1725 *
1726 * For int conversions we do not need two casts if pointers are
1727 * the same size as IV and UV. Otherwise we need an explicit
1728 * cast (PTRV) to avoid compiler warnings.
1729 */
56431972
RB
1730#if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1731# define PTRV UV
1732# define INT2PTR(any,d) (any)(d)
da5fdda8
AC
1733#elif PTRSIZE == LONGSIZE
1734# define PTRV unsigned long
1735# define PTR2ul(p) (unsigned long)(p)
56431972 1736#else
da5fdda8 1737# define PTRV unsigned
e91e3b10
RB
1738#endif
1739
1740#ifndef INT2PTR
56431972 1741# define INT2PTR(any,d) (any)(PTRV)(d)
42718184 1742#endif
e91e3b10
RB
1743
1744#ifndef PTR2ul
1745# define PTR2ul(p) INT2PTR(unsigned long,p)
1746#endif
1747
56431972
RB
1748#define NUM2PTR(any,d) (any)(PTRV)(d)
1749#define PTR2IV(p) INT2PTR(IV,p)
1750#define PTR2UV(p) INT2PTR(UV,p)
1751#define PTR2NV(p) NUM2PTR(NV,p)
e91e3b10 1752#define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */
d460ef45 1753
8141890a
JH
1754/* According to strict ANSI C89 one cannot freely cast between
1755 * data pointers and function (code) pointers. There are at least
1756 * two ways around this. One (used below) is to do two casts,
1757 * first the other pointer to an (unsigned) integer, and then
1758 * the integer to the other pointer. The other way would be
1759 * to use unions to "overlay" the pointers. For an example of
1760 * the latter technique, see union dirpu in struct xpvio in sv.h.
1761 * The only feasible use is probably temporarily storing
1762 * function pointers in a data pointer (such as a void pointer). */
1763
e91e3b10
RB
1764#define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */
1765#define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */
8141890a 1766
65202027 1767#ifdef USE_LONG_DOUBLE
f3654d06
JH
1768# if LONG_DOUBLESIZE == DOUBLESIZE
1769# define LONG_DOUBLE_EQUALS_DOUBLE
1770# undef USE_LONG_DOUBLE /* Ouch! */
65202027
DS
1771# endif
1772#endif
1773
2d4389e4
JH
1774/* The following is all to get LDBL_DIG, in order to pick a nice
1775 default value for printing floating point numbers in Gconvert.
1776 (see config.h)
1777*/
63b481b9 1778#ifndef HAS_LDBL_DIG
68d4903c 1779# if LONG_DOUBLESIZE == 10
63b481b9
AC
1780# define LDBL_DIG 18 /* assume IEEE */
1781# elif LONG_DOUBLESIZE == 12
68d4903c 1782# define LDBL_DIG 18 /* gcc? */
63b481b9
AC
1783# elif LONG_DOUBLESIZE == 16
1784# define LDBL_DIG 33 /* assume IEEE */
1785# elif LONG_DOUBLESIZE == DOUBLESIZE
1786# define LDBL_DIG DBL_DIG /* bummer */
68d4903c 1787# endif
2d4389e4
JH
1788#endif
1789
a22e52b9 1790typedef NVTYPE NV;
8175356b 1791
792d8dab
JH
1792#ifdef I_IEEEFP
1793# include <ieeefp.h>
1794#endif
923fc586 1795
c32c3de1
JH
1796#ifdef USING_MSVC6
1797/* VC6 has broken NaN semantics: NaN == NaN returns true instead of false,
1798 * and for example NaN < IV_MIN. */
bcd8bfa9
JH
1799# define NAN_COMPARE_BROKEN
1800#endif
1801#if defined(__DECC) && defined(__osf__)
1802/* Also Tru64 cc has broken NaN comparisons. */
1803# define NAN_COMPARE_BROKEN
c32c3de1 1804#endif
6504068e
JH
1805#if defined(__sgi)
1806# define NAN_COMPARE_BROKEN
1807#endif
c32c3de1 1808
65202027 1809#ifdef USE_LONG_DOUBLE
923fc586
JH
1810# ifdef I_SUNMATH
1811# include <sunmath.h>
1812# endif
84e6cb05 1813# if defined(LDBL_DIG)
05b4a618
JH
1814# define NV_DIG LDBL_DIG
1815# ifdef LDBL_MANT_DIG
1816# define NV_MANT_DIG LDBL_MANT_DIG
1817# endif
1818# ifdef LDBL_MIN
1819# define NV_MIN LDBL_MIN
1820# endif
1821# ifdef LDBL_MAX
1822# define NV_MAX LDBL_MAX
1823# endif
1824# ifdef LDBL_MIN_EXP
1825# define NV_MIN_EXP LDBL_MIN_EXP
1826# endif
1827# ifdef LDBL_MAX_EXP
1828# define NV_MAX_EXP LDBL_MAX_EXP
1829# endif
1830# ifdef LDBL_MIN_10_EXP
1831# define NV_MIN_10_EXP LDBL_MIN_10_EXP
1832# endif
1833# ifdef LDBL_MAX_10_EXP
1834# define NV_MAX_10_EXP LDBL_MAX_10_EXP
1835# endif
1836# ifdef LDBL_EPSILON
1837# define NV_EPSILON LDBL_EPSILON
1838# endif
1839# ifdef LDBL_MAX
1840# define NV_MAX LDBL_MAX
20f6aaab 1841/* Having LDBL_MAX doesn't necessarily mean that we have LDBL_MIN... -Allen */
da5fdda8
AC
1842# elif defined(HUGE_VALL)
1843# define NV_MAX HUGE_VALL
f4a14a62
JH
1844# endif
1845# endif
84e6cb05 1846# if defined(HAS_SQRTL)
8a00eddc
JH
1847# define Perl_acos acosl
1848# define Perl_asin asinl
1849# define Perl_atan atanl
940e3d56
JH
1850# define Perl_atan2 atan2l
1851# define Perl_ceil ceill
1852# define Perl_cos cosl
8a00eddc 1853# define Perl_cosh coshl
940e3d56 1854# define Perl_exp expl
55da5e5b 1855/* no Perl_fabs, but there's PERL_ABS */
940e3d56
JH
1856# define Perl_floor floorl
1857# define Perl_fmod fmodl
1858# define Perl_log logl
8a00eddc 1859# define Perl_log10 log10l
940e3d56
JH
1860# define Perl_pow powl
1861# define Perl_sin sinl
8a00eddc 1862# define Perl_sinh sinhl
940e3d56 1863# define Perl_sqrt sqrtl
8a00eddc
JH
1864# define Perl_tan tanl
1865# define Perl_tanh tanhl
68d4903c 1866# endif
a3540c92 1867/* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
05b4a618
JH
1868# ifndef Perl_modf
1869# ifdef HAS_MODFL
1870# define Perl_modf(x,y) modfl(x,y)
51997bc3
NC
1871/* eg glibc 2.2 series seems to provide modfl on ppc and arm, but has no
1872 prototype in <math.h> */
05b4a618 1873# ifndef HAS_MODFL_PROTO
a221a8a5 1874EXTERN_C long double modfl(long double, long double *);
05b4a618
JH
1875# endif
1876# elif (defined(HAS_TRUNCL) || defined(HAS_AINTL)) && defined(HAS_COPYSIGNL)
55954f19 1877 extern long double Perl_my_modfl(long double x, long double *ip);
03476e8e 1878# define Perl_modf(x,y) Perl_my_modfl(x,y)
05b4a618 1879# endif
a3540c92 1880# endif
05b4a618
JH
1881# ifndef Perl_frexp
1882# ifdef HAS_FREXPL
1883# define Perl_frexp(x,y) frexpl(x,y)
da5fdda8 1884# elif defined(HAS_ILOGBL) && defined(HAS_SCALBNL)
05b4a618 1885extern long double Perl_my_frexpl(long double x, int *e);
da5fdda8 1886# define Perl_frexp(x,y) Perl_my_frexpl(x,y)
03476e8e 1887# endif
a3540c92 1888# endif
05b4a618
JH
1889# ifndef Perl_ldexp
1890# ifdef HAS_LDEXPL
1891# define Perl_ldexp(x, y) ldexpl(x,y)
da5fdda8
AC
1892# elif defined(HAS_SCALBNL) && FLT_RADIX == 2
1893# define Perl_ldexp(x,y) scalbnl(x,y)
98181445
JH
1894# endif
1895# endif
38dbb4c5 1896# ifndef Perl_isnan
e4c957f4 1897# if defined(HAS_ISNANL) && !(defined(isnan) && defined(HAS_C99))
758a5d79 1898# define Perl_isnan(x) isnanl(x)
a1115378
JH
1899# elif defined(__sgi) && defined(__c99) /* XXX Configure test needed */
1900# define Perl_isnan(x) isnan(x)
758a5d79
JH
1901# endif
1902# endif
1903# ifndef Perl_isinf
e4c957f4 1904# if defined(HAS_ISINFL) && !(defined(isinf) && defined(HAS_C99))
87190886 1905# define Perl_isinf(x) isinfl(x)
a1115378
JH
1906# elif defined(__sgi) && defined(__c99) /* XXX Configure test needed */
1907# define Perl_isinf(x) isinf(x)
bcd8bfa9 1908# elif defined(LDBL_MAX) && !defined(NAN_COMPARE_BROKEN)
efcbf317 1909# define Perl_isinf(x) ((x) > LDBL_MAX || (x) < -LDBL_MAX)
a3540c92
JH
1910# endif
1911# endif
e38461cc
JH
1912# ifndef Perl_isfinite
1913# define Perl_isfinite(x) Perl_isfinitel(x)
1914# endif
84e6cb05
JH
1915#elif defined(USE_QUADMATH) && defined(I_QUADMATH)
1916# include <quadmath.h>
1917# define NV_DIG FLT128_DIG
1918# define NV_MANT_DIG FLT128_MANT_DIG
1919# define NV_MIN FLT128_MIN
1920# define NV_MAX FLT128_MAX
1921# define NV_MIN_EXP FLT128_MIN_EXP
1922# define NV_MAX_EXP FLT128_MAX_EXP
1923# define NV_EPSILON FLT128_EPSILON
1924# define NV_MIN_10_EXP FLT128_MIN_10_EXP
1925# define NV_MAX_10_EXP FLT128_MAX_10_EXP
84e6cb05
JH
1926# define Perl_acos acosq
1927# define Perl_asin asinq
1928# define Perl_atan atanq
1929# define Perl_atan2 atan2q
1930# define Perl_ceil ceilq
1931# define Perl_cos cosq
1932# define Perl_cosh coshq
1933# define Perl_exp expq
1934/* no Perl_fabs, but there's PERL_ABS */
1935# define Perl_floor floorq
1936# define Perl_fmod fmodq
1937# define Perl_log logq
1938# define Perl_log10 log10q
1939# define Perl_pow powq
1940# define Perl_sin sinq
1941# define Perl_sinh sinhq
1942# define Perl_sqrt sqrtq
1943# define Perl_tan tanq
1944# define Perl_tanh tanhq
1945# define Perl_modf(x,y) modfq(x,y)
1946# define Perl_frexp(x,y) frexpq(x,y)
1947# define Perl_ldexp(x, y) ldexpq(x,y)
1948# define Perl_isinf(x) isinfq(x)
1949# define Perl_isnan(x) isnanq(x)
1950# define Perl_isfinite(x) !(isnanq(x) || isinfq(x))
b28053d1
JH
1951# define Perl_fp_class(x) ((x) == 0.0Q ? 0 : isinfq(x) ? 3 : isnanq(x) ? 4 : PERL_ABS(x) < FLT128_MIN ? 2 : 1)
1952# define Perl_fp_class_inf(x) (Perl_fp_class(x) == 3)
1953# define Perl_fp_class_nan(x) (Perl_fp_class(x) == 4)
1954# define Perl_fp_class_norm(x) (Perl_fp_class(x) == 1)
1955# define Perl_fp_class_denorm(x) (Perl_fp_class(x) == 2)
1956# define Perl_fp_class_zero(x) (Perl_fp_class(x) == 0)
65202027 1957#else
2d4389e4 1958# define NV_DIG DBL_DIG
63b481b9
AC
1959# define NV_MANT_DIG DBL_MANT_DIG
1960# define NV_MIN DBL_MIN
1961# define NV_MAX DBL_MAX
1962# define NV_MIN_EXP DBL_MIN_EXP
1963# define NV_MAX_EXP DBL_MAX_EXP
1964# define NV_MIN_10_EXP DBL_MIN_10_EXP
1965# define NV_MAX_10_EXP DBL_MAX_10_EXP
1966# define NV_EPSILON DBL_EPSILON
1967# define NV_MAX DBL_MAX
1968# define NV_MIN DBL_MIN
940e3d56 1969
55da5e5b 1970/* These math interfaces are C89. */
8a00eddc
JH
1971# define Perl_acos acos
1972# define Perl_asin asin
1973# define Perl_atan atan
940e3d56
JH
1974# define Perl_atan2 atan2
1975# define Perl_ceil ceil
1976# define Perl_cos cos
8a00eddc 1977# define Perl_cosh cosh
940e3d56 1978# define Perl_exp exp
55da5e5b 1979/* no Perl_fabs, but there's PERL_ABS */
940e3d56
JH
1980# define Perl_floor floor
1981# define Perl_fmod fmod
1982# define Perl_log log
8a00eddc 1983# define Perl_log10 log10
940e3d56
JH
1984# define Perl_pow pow
1985# define Perl_sin sin
8a00eddc 1986# define Perl_sinh sinh
940e3d56 1987# define Perl_sqrt sqrt
8a00eddc
JH
1988# define Perl_tan tan
1989# define Perl_tanh tanh
940e3d56
JH
1990
1991# define Perl_modf(x,y) modf(x,y)
1992# define Perl_frexp(x,y) frexp(x,y)
1993# define Perl_ldexp(x,y) ldexp(x,y)
1994
1a322af2
JH
1995# ifndef Perl_isnan
1996# ifdef HAS_ISNAN
1997# define Perl_isnan(x) isnan(x)
1998# endif
1999# endif
2000# ifndef Perl_isinf
2001# if defined(HAS_ISINF)
2002# define Perl_isinf(x) isinf(x)
bcd8bfa9 2003# elif defined(DBL_MAX) && !defined(NAN_COMPARE_BROKEN)
efcbf317 2004# define Perl_isinf(x) ((x) > DBL_MAX || (x) < -DBL_MAX)
1a322af2
JH
2005# endif
2006# endif
2007# ifndef Perl_isfinite
2008# ifdef HAS_ISFINITE
2009# define Perl_isfinite(x) isfinite(x)
2010# elif defined(HAS_FINITE)
2011# define Perl_isfinite(x) finite(x)
2012# endif
2013# endif
758a5d79
JH
2014#endif
2015
30404d48
JH
2016/* fpclassify(): C99. It is supposed to be a macro that switches on
2017* the sizeof() of its argument, so there's no need for e.g. fpclassifyl().*/
2018#if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
2019# include <math.h>
25c46df8
JH
2020# if defined(FP_INFINITE) && defined(FP_NAN)
2021# define Perl_fp_class(x) fpclassify(x)
2022# define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_INFINITE)
2023# define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_NAN)
2024# define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_NORMAL)
2025# define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_SUBNORMAL)
2026# define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_ZERO)
2027# elif defined(FP_PLUS_INF) && defined(FP_QNAN)
2028/* Some versions of HP-UX (10.20) have (only) fpclassify() but which is
2029 * actually not the C99 fpclassify, with its own set of return defines. */
2030# define Perl_fp_class(x) fpclassify(x)
2031# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PLUS_INF)
2032# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_MINUS_INF)
82947af8 2033# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
25c46df8
JH
2034# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2035# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM)
1ae51000 2036# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM)
25c46df8
JH
2037# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM)
2038# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM)
2039# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
2040# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_MINUS_ZERO)
2041# else
2042# undef Perl_fp_class /* Unknown set of defines */
2043# endif
30404d48
JH
2044#endif
2045
25c46df8
JH
2046/* fp_classify(): Legacy: VMS, maybe Unicos? The values, however,
2047 * are identical to the C99 fpclassify(). */
2048#if !defined(Perl_fp_class) && defined(HAS_FP_CLASSIFY)
2049# include <math.h>
558f3e66
CB
2050# ifdef __VMS
2051 /* FP_INFINITE and others are here rather than in math.h as C99 stipulates */
2052# include <fp.h>
56610b8f
CB
2053 /* oh, and the isnormal macro has a typo in it! */
2054# undef isnormal
2055# define isnormal(x) Perl_fp_class_norm(x)
558f3e66 2056# endif
25c46df8
JH
2057# if defined(FP_INFINITE) && defined(FP_NAN)
2058# define Perl_fp_class(x) fp_classify(x)
2059# define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_INFINITE)
2060# define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_NAN)
2061# define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_NORMAL)
2062# define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_SUBNORMAL)
2063# define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_ZERO)
2064# else
2065# undef Perl_fp_class /* Unknown set of defines */
2066# endif
f279e099 2067#endif
205f51d8 2068
30404d48
JH
2069/* Feel free to check with me for the SGI manpages, SGI testing,
2070 * etcetera, if you want to try getting this to work with IRIX.
2071 *
2072 * - Allen <allens@cpan.org> */
2073
2074/* fpclass(): SysV, at least Solaris and some versions of IRIX. */
758a5d79 2075#if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
25c46df8
JH
2076/* Solaris and IRIX have fpclass/fpclassl, but they are using
2077 * an enum typedef, not cpp symbols, and Configure doesn't detect that.
2078 * Define some symbols also as cpp symbols so we can detect them. */
033a6f7a 2079# if defined(__sun) || defined(__sgi) /* XXX Configure test instead */
25c46df8
JH
2080# define FP_PINF FP_PINF
2081# define FP_QNAN FP_QNAN
2082# endif
f279e099 2083# include <math.h>
758a5d79
JH
2084# ifdef I_IEEFP
2085# include <ieeefp.h>
2086# endif
2087# ifdef I_FP
2088# include <fp.h>
2089# endif
2090# if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
f279e099 2091# define Perl_fp_class(x) fpclassl(x)
758a5d79 2092# else
f279e099
JH
2093# define Perl_fp_class(x) fpclass(x)
2094# endif
25c46df8 2095# if defined(FP_CLASS_PINF) && defined(FP_CLASS_SNAN)
f279e099
JH
2096# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_CLASS_SNAN)
2097# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_CLASS_QNAN)
2098# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_CLASS_NINF)
2099# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_CLASS_PINF)
2100# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_CLASS_NNORM)
2101# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_CLASS_PNORM)
2102# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_CLASS_NDENORM)
2103# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_CLASS_PDENORM)
2104# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_CLASS_NZERO)
2105# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_CLASS_PZERO)
25c46df8 2106# elif defined(FP_PINF) && defined(FP_QNAN)
f279e099
JH
2107# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
2108# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2109# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_NINF)
2110# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PINF)
2111# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_NNORM)
2112# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PNORM)
2113# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_NDENORM)
2114# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PDENORM)
2115# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_NZERO)
2116# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PZERO)
25c46df8
JH
2117# else
2118# undef Perl_fp_class /* Unknown set of defines */
758a5d79 2119# endif
758a5d79
JH
2120#endif
2121
30404d48
JH
2122/* fp_class(): Legacy: at least Tru64, some versions of IRIX. */
2123#if !defined(Perl_fp_class) && (defined(HAS_FP_CLASS)||defined(HAS_FP_CLASSL))
758a5d79
JH
2124# include <math.h>
2125# if !defined(FP_SNAN) && defined(I_FP_CLASS)
2126# include <fp_class.h>
2127# endif
25c46df8 2128# if defined(FP_POS_INF) && defined(FP_QNAN)
033a6f7a 2129# ifdef __sgi /* XXX Configure test instead */
25c46df8
JH
2130# ifdef USE_LONG_DOUBLE
2131# define Perl_fp_class(x) fp_class_l(x)
2132# else
2133# define Perl_fp_class(x) fp_class_d(x)
2134# endif
f279e099 2135# else
25c46df8
JH
2136# if defined(USE_LONG_DOUBLE) && defined(HAS_FP_CLASSL)
2137# define Perl_fp_class(x) fp_classl(x)
2138# else
2139# define Perl_fp_class(x) fp_class(x)
2140# endif
f279e099 2141# endif
25c46df8
JH
2142# if defined(FP_POS_INF) && defined(FP_QNAN)
2143# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
2144# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2145# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_NEG_INF)
2146# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_POS_INF)
2147# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_NEG_NORM)
2148# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_POS_NORM)
2149# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_NEG_DENORM)
2150# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_POS_DENORM)
2151# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_NEG_ZERO)
2152# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_POS_ZERO)
30404d48 2153# else
25c46df8 2154# undef Perl_fp_class /* Unknown set of defines */
30404d48 2155# endif
f279e099 2156# endif
30404d48
JH
2157#endif
2158
052758ae 2159/* class(), _class(): Legacy: AIX. */
758a5d79
JH
2160#if !defined(Perl_fp_class) && defined(HAS_CLASS)
2161# include <math.h>
25c46df8
JH
2162# if defined(FP_PLUS_NORM) && defined(FP_PLUS_INF)
2163# ifndef _cplusplus
2164# define Perl_fp_class(x) class(x)
2165# else
2166# define Perl_fp_class(x) _class(x)
2167# endif
2168# if defined(FP_PLUS_INF) && defined(FP_NANQ)
2169# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_NANS)
2170# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_NANQ)
2171# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_MINUS_INF)
2172# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PLUS_INF)
2173# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM)
2174# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM)
2175# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM)
2176# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM)
2177# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_MINUS_ZERO)
2178# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
2179# else
2180# undef Perl_fp_class /* Unknown set of defines */
2181# endif
758a5d79 2182# endif
30404d48
JH
2183#endif
2184
2185/* Win32: _fpclass(), _isnan(), _finite(). */
796ea9ea
JH
2186#ifdef WIN32
2187# ifndef Perl_isnan
2188# define Perl_isnan(x) _isnan(x)
2189# endif
2190# ifndef Perl_isfinite
2191# define Perl_isfinite(x) _finite(x)
2192# endif
2193# ifndef Perl_fp_class_snan
25c46df8
JH
2194/* No simple way to #define Perl_fp_class because _fpclass()
2195 * returns a set of bits. */
796ea9ea
JH
2196# define Perl_fp_class_snan(x) (_fpclass(x) & _FPCLASS_SNAN)
2197# define Perl_fp_class_qnan(x) (_fpclass(x) & _FPCLASS_QNAN)
82947af8 2198# define Perl_fp_class_nan(x) (_fpclass(x) & (_FPCLASS_SNAN|_FPCLASS_QNAN))
796ea9ea
JH
2199# define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF))
2200# define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF))
2201# define Perl_fp_class_inf(x) (_fpclass(x) & (_FPCLASS_NINF|_FPCLASS_PINF))
2202# define Perl_fp_class_nnorm(x) (_fpclass(x) & _FPCLASS_NN)
2203# define Perl_fp_class_pnorm(x) (_fpclass(x) & _FPCLASS_PN)
2204# define Perl_fp_class_norm(x) (_fpclass(x) & (_FPCLASS_NN|_FPCLASS_PN))
2205# define Perl_fp_class_ndenorm(x) (_fpclass(x) & _FPCLASS_ND)
2206# define Perl_fp_class_pdenorm(x) (_fpclass(x) & _FPCLASS_PD)
2207# define Perl_fp_class_denorm(x) (_fpclass(x) & (_FPCLASS_ND|_FPCLASS_PD))
2208# define Perl_fp_class_nzero(x) (_fpclass(x) & _FPCLASS_NZ)
2209# define Perl_fp_class_pzero(x) (_fpclass(x) & _FPCLASS_PZ)
2210# define Perl_fp_class_zero(x) (_fpclass(x) & (_FPCLASS_NZ|_FPCLASS_PZ))
2211# endif
f279e099
JH
2212#endif
2213
2214#if !defined(Perl_fp_class_inf) && \
2215 defined(Perl_fp_class_pinf) && defined(Perl_fp_class_ninf)
2216# define Perl_fp_class_inf(x) \
2217 (Perl_fp_class_pinf(x) || Perl_fp_class_ninf(x))
2218#endif
2219
2220#if !defined(Perl_fp_class_nan) && \
2221 defined(Perl_fp_class_snan) && defined(Perl_fp_class_qnan)
2222# define Perl_fp_class_nan(x) \
2223 (Perl_fp_class_snan(x) || Perl_fp_class_qnan(x))
2224#endif
2225
2226#if !defined(Perl_fp_class_zero) && \
2227 defined(Perl_fp_class_pzero) && defined(Perl_fp_class_nzero)
2228# define Perl_fp_class_zero(x) \
2229 (Perl_fp_class_pzero(x) || Perl_fp_class_nzero(x))
2230#endif
2231
2232#if !defined(Perl_fp_class_norm) && \
2233 defined(Perl_fp_class_pnorm) && defined(Perl_fp_class_nnorm)
2234# define Perl_fp_class_norm(x) \
2235 (Perl_fp_class_pnorm(x) || Perl_fp_class_nnorm(x))
2236#endif
2237
2238#if !defined(Perl_fp_class_denorm) && \
2239 defined(Perl_fp_class_pdenorm) && defined(Perl_fp_class_ndenorm)
2240# define Perl_fp_class_denorm(x) \
2241 (Perl_fp_class_pdenorm(x) || Perl_fp_class_ndenorm(x))
796ea9ea 2242#endif
758a5d79 2243
1a322af2
JH
2244#ifdef UNDER_CE
2245int isnan(double d);
2246#endif
2247
758a5d79 2248#ifndef Perl_isnan
1a322af2
JH
2249# ifdef Perl_fp_class_nan
2250# define Perl_isnan(x) Perl_fp_class_nan(x)
da5fdda8
AC
2251# elif defined(HAS_UNORDERED)
2252# define Perl_isnan(x) unordered((x), 0.0)
758a5d79 2253# else
da5fdda8 2254# define Perl_isnan(x) ((x)!=(x))
758a5d79
JH
2255# endif
2256#endif
2257
1a322af2
JH
2258#ifndef Perl_isinf
2259# ifdef Perl_fp_class_inf
2260# define Perl_isinf(x) Perl_fp_class_inf(x)
2261# endif
ca6c63e1
JH
2262#endif
2263
758a5d79 2264#ifndef Perl_isfinite
25c46df8 2265# if defined(HAS_ISFINITE) && !defined(isfinite)
c496ca58 2266# define Perl_isfinite(x) isfinite((double)(x))
4efd38a4 2267# elif defined(HAS_FINITE)
c496ca58 2268# define Perl_isfinite(x) finite((double)(x))
4efd38a4
JH
2269# elif defined(Perl_fp_class_finite)
2270# define Perl_isfinite(x) Perl_fp_class_finite(x)
758a5d79 2271# else
c496ca58
JH
2272/* For the infinities the multiplication returns nan,
2273 * for the nan the multiplication also returns nan,
2274 * for everything else (that is, finite) zero should be returned. */
4efd38a4 2275# define Perl_isfinite(x) (((x) * 0) == 0)
a3540c92 2276# endif
65202027
DS
2277#endif
2278
25c46df8
JH
2279#ifndef Perl_isinf
2280# if defined(Perl_isfinite) && defined(Perl_isnan)
2281# define Perl_isinf(x) !(Perl_isfinite(x)||Perl_isnan(x))
2282# endif
2283#endif
2284
d3685250
JH
2285/* We need Perl_isfinitel (ends with ell) (if available) even when
2286 * not USE_LONG_DOUBLE because the printf code (sv_catpvfn_flags)
2287 * needs that. */
2288#if defined(HAS_LONG_DOUBLE) && !defined(Perl_isfinitel)
2289/* If isfinite() is a macro and looks like we have C99,
2290 * we assume it's the type-aware C99 isfinite(). */
c06e9e3e 2291# if defined(HAS_ISFINITE) && defined(isfinite) && defined(HAS_C99)
d3685250
JH
2292# define Perl_isfinitel(x) isfinite(x)
2293# elif defined(HAS_ISFINITEL)
2294# define Perl_isfinitel(x) isfinitel(x)
2295# elif defined(HAS_FINITEL)
2296# define Perl_isfinitel(x) finitel(x)
2297# elif defined(HAS_INFL) && defined(HAS_NANL)
2298# define Perl_isfinitel(x) !(isinfl(x)||isnanl(x))
16334e6e 2299# else
99bf9e32 2300# define Perl_isfinitel(x) ((x) * 0 == 0) /* See Perl_isfinite. */
d3685250
JH
2301# endif
2302#endif
2303
a36244b7
JH
2304/* The default is to use Perl's own atof() implementation (in numeric.c).
2305 * Usually that is the one to use but for some platforms (e.g. UNICOS)
2306 * it is however best to use the native implementation of atof.
2307 * You can experiment with using your native one by -DUSE_PERL_ATOF=0.
2308 * Some good tests to try out with either setting are t/base/num.t,
205f51d8
AS
2309 * t/op/numconvert.t, and t/op/pack.t. Note that if using long doubles
2310 * you may need to be using a different function than atof! */
a36244b7
JH
2311
2312#ifndef USE_PERL_ATOF
2313# ifndef _UNICOS
2314# define USE_PERL_ATOF
2315# endif
2316#else
2317# if USE_PERL_ATOF == 0
2318# undef USE_PERL_ATOF
2319# endif
2320#endif
2321
2322#ifdef USE_PERL_ATOF
2323# define Perl_atof(s) Perl_my_atof(s)
2324# define Perl_atof2(s, n) Perl_my_atof2(aTHX_ (s), &(n))
2325#else
2326# define Perl_atof(s) (NV)atof(s)
2327# define Perl_atof2(s, n) ((n) = atof(s))
2328#endif
cf2093f6 2329
99abf803 2330/*
2331 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
2332 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
2333 * depending on local options. Until Configure detects this (or at least
2334 * detects whether the "signed" keyword is available) the CHAR ranges
2335 * will not be included. UCHAR functions normally.
2336 * - kja
2337 */
27d4fb96 2338
6ec488b3
AC
2339#define PERL_UCHAR_MIN ((unsigned char)0)
2340#define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 2341
6ec488b3
AC
2342#define PERL_USHORT_MIN ((unsigned short)0)
2343#define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
27d4fb96 2344
6ec488b3
AC
2345#define PERL_SHORT_MAX ((short)SHRT_MAX)
2346#define PERL_SHORT_MIN ((short)SHRT_MIN)
27d4fb96 2347
6ec488b3 2348#define PERL_UINT_MAX ((unsigned int)UINT_MAX)
99abf803 2349#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 2350
6ec488b3
AC
2351#define PERL_INT_MAX ((int)INT_MAX)
2352#define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 2353
6ec488b3 2354#define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
99abf803 2355#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 2356
6ec488b3
AC
2357#define PERL_LONG_MAX ((long)LONG_MAX)
2358#define PERL_LONG_MIN ((long)LONG_MIN)
760ac839 2359
d7d93a81 2360#ifdef UV_IS_QUAD
99abf803 2361# define PERL_UQUAD_MAX (~(UV)0)
f1c3b19a 2362# define PERL_UQUAD_MIN ((UV)0)
99abf803 2363# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
a6e633de 2364# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
79072805
LW
2365#endif
2366
ee0007ab 2367typedef MEM_SIZE STRLEN;
450a55e4 2368
79072805
LW
2369typedef struct op OP;
2370typedef struct cop COP;
2371typedef struct unop UNOP;
2f7c6295 2372typedef struct unop_aux UNOP_AUX;
79072805
LW
2373typedef struct binop BINOP;
2374typedef struct listop LISTOP;
2375typedef struct logop LOGOP;
79072805
LW
2376typedef struct pmop PMOP;
2377typedef struct svop SVOP;
7934575e 2378typedef struct padop PADOP;
79072805 2379typedef struct pvop PVOP;
79072805 2380typedef struct loop LOOP;
b46e009d 2381typedef struct methop METHOP;
79072805 2382
7aef8e5b 2383#ifdef PERL_CORE
8be227ab
FC
2384typedef struct opslab OPSLAB;
2385typedef struct opslot OPSLOT;
2386#endif
2387
52db365a 2388typedef struct block_hooks BHK;
1830b3d9 2389typedef struct custom_op XOP;
52db365a 2390
cd1541b2
NC
2391typedef struct interpreter PerlInterpreter;
2392
d2b3f365 2393/* SGI's <sys/sema.h> has struct sv */
cc3315ba 2394#if defined(__sgi)
d2b3f365 2395# define STRUCT_SV perl_sv
b8d3c5db
JH
2396#else
2397# define STRUCT_SV sv
2398#endif
2399typedef struct STRUCT_SV SV;
79072805
LW
2400typedef struct av AV;
2401typedef struct hv HV;
2402typedef struct cv CV;
d2f13c59 2403typedef struct p5rx REGEXP;
79072805 2404typedef struct gp GP;
0c30d9ec 2405typedef struct gv GV;
8990e307 2406typedef struct io IO;
c09156bb 2407typedef struct context PERL_CONTEXT;
79072805
LW
2408typedef struct block BLOCK;
2409
2410typedef struct magic MAGIC;
2411typedef struct xpv XPV;
2412typedef struct xpviv XPVIV;
ff68c719 2413typedef struct xpvuv XPVUV;
79072805
LW
2414typedef struct xpvnv XPVNV;
2415typedef struct xpvmg XPVMG;
2416typedef struct xpvlv XPVLV;
d361b004 2417typedef struct xpvinvlist XINVLIST;
79072805
LW
2418typedef struct xpvav XPVAV;
2419typedef struct xpvhv XPVHV;
2420typedef struct xpvgv XPVGV;
2421typedef struct xpvcv XPVCV;
2422typedef struct xpvbm XPVBM;
2423typedef struct xpvfm XPVFM;
8990e307 2424typedef struct xpvio XPVIO;
79072805
LW
2425typedef struct mgvtbl MGVTBL;
2426typedef union any ANY;
5f7fde29
GS
2427typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
2428typedef struct ptr_tbl PTR_TBL_t;
8cf8f3d1
NIS
2429typedef struct clone_params CLONE_PARAMS;
2430
0f94cb1f 2431/* a pad is currently just an AV; but that might change,
7261499d
FC
2432 * so hide the type. */
2433typedef struct padlist PADLIST;
67634234 2434typedef AV PAD;
9b7476d7 2435typedef struct padnamelist PADNAMELIST;
0f94cb1f 2436typedef struct padname PADNAME;
67634234 2437
5a736967
DM
2438/* always enable PERL_OP_PARENT */
2439#if !defined(PERL_OP_PARENT)
5d32d268
DM
2440# define PERL_OP_PARENT
2441#endif
2442
93c10d60
FC
2443/* enable PERL_COPY_ON_WRITE by default */
2444#if !defined(PERL_COPY_ON_WRITE) && !defined(PERL_NO_COW)
2445# define PERL_COPY_ON_WRITE
13b0f67d 2446#endif
07d01d6e 2447
93c10d60 2448#ifdef PERL_COPY_ON_WRITE
db2c6cb3 2449# define PERL_ANY_COW
9f351b45
DM
2450#else
2451# define PERL_SAWAMPERSAND
db2c6cb3
FC
2452#endif
2453
40653c20
FC
2454#if defined(PERL_DEBUG_READONLY_OPS) && !defined(USE_ITHREADS)
2455# error PERL_DEBUG_READONLY_OPS only works with ithreads
2456#endif
2457
378cc40b 2458#include "handy.h"
64935bc6 2459#include "charclass_invlists.h"
a0d0e21e 2460
6b8eaf93 2461#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
6b8eaf93
JH
2462# if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
2463# define USE_64_BIT_RAWIO /* implicit */
2464# endif
4564133c
JH
2465#endif
2466
6b8eaf93
JH
2467/* Notice the use of HAS_FSEEKO: now we are obligated to always use
2468 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
2469 * however, because operating systems like to do that themself. */
2470#ifndef FSEEKSIZE
2471# ifdef HAS_FSEEKO
2472# define FSEEKSIZE LSEEKSIZE
2473# else
2474# define FSEEKSIZE LONGSIZE
d460ef45 2475# endif
6b8eaf93
JH
2476#endif
2477
2478#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
6b8eaf93
JH
2479# if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
2480# define USE_64_BIT_STDIO /* implicit */
2481# endif
2482#endif
4564133c 2483
09458382 2484#ifdef USE_64_BIT_RAWIO
d9b3e12d
JH
2485# ifdef HAS_OFF64_T
2486# undef Off_t
2487# define Off_t off64_t
2488# undef LSEEKSIZE
2489# define LSEEKSIZE 8
5ff3f7a4 2490# endif
d9b3e12d
JH
2491/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2492 * will trigger defines like the ones below. Some 64-bit environments,
09458382 2493 * however, do not. Therefore we have to explicitly mix and match. */
d9b3e12d
JH
2494# if defined(USE_OPEN64)
2495# define open open64
5ff3f7a4 2496# endif
d9b3e12d
JH
2497# if defined(USE_LSEEK64)
2498# define lseek lseek64
6b8eaf93
JH
2499# else
2500# if defined(USE_LLSEEK)
2501# define lseek llseek
2502# endif
d9b3e12d
JH
2503# endif
2504# if defined(USE_STAT64)
2505# define stat stat64
2506# endif
2507# if defined(USE_FSTAT64)
2508# define fstat fstat64
2509# endif
2510# if defined(USE_LSTAT64)
2511# define lstat lstat64
2512# endif
2513# if defined(USE_FLOCK64)
2514# define flock flock64
2515# endif
2516# if defined(USE_LOCKF64)
2517# define lockf lockf64
2518# endif
2519# if defined(USE_FCNTL64)
2520# define fcntl fcntl64
2521# endif
2522# if defined(USE_TRUNCATE64)
2523# define truncate truncate64
2524# endif
2525# if defined(USE_FTRUNCATE64)
2526# define ftruncate ftruncate64
2527# endif
2528#endif
2529
2530#ifdef USE_64_BIT_STDIO
2531# ifdef HAS_FPOS64_T
2532# undef Fpos_t
2533# define Fpos_t fpos64_t
2534# endif
2535/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2536 * will trigger defines like the ones below. Some 64-bit environments,
2537 * however, do not. */
2538# if defined(USE_FOPEN64)
2539# define fopen fopen64
2540# endif
2541# if defined(USE_FSEEK64)
6b8eaf93 2542# define fseek fseek64 /* don't do fseeko here, see perlio.c */
d9b3e12d
JH
2543# endif
2544# if defined(USE_FTELL64)
6b8eaf93 2545# define ftell ftell64 /* don't do ftello here, see perlio.c */
d9b3e12d
JH
2546# endif
2547# if defined(USE_FSETPOS64)
2548# define fsetpos fsetpos64
2549# endif
2550# if defined(USE_FGETPOS64)
2551# define fgetpos fgetpos64
2552# endif
2553# if defined(USE_TMPFILE64)
2554# define tmpfile tmpfile64
2555# endif
2556# if defined(USE_FREOPEN64)
2557# define freopen freopen64
5ff3f7a4
GS
2558# endif
2559#endif
2560
e37778c2 2561#if defined(OS2)
2c2d71f5
JH
2562# include "iperlsys.h"
2563#endif
2564
748a9306 2565#ifdef DOSISH
19848b3f
JH
2566# if defined(OS2)
2567# include "os2ish.h"
2568# else
2569# include "dosish.h"
2570# endif
009819bb 2571#elif defined(VMS)
748a9306 2572# include "vmsish.h"
009819bb 2573#elif defined(PLAN9)
19848b3f 2574# include "./plan9/plan9ish.h"
009819bb 2575#elif defined(__VOS__)
196918b0
PG
2576# ifdef __GNUC__
2577# include "./vos/vosish.h"
2578# else
2579# include "vos/vosish.h"
2580# endif
009819bb 2581#elif defined(__SYMBIAN32__)
27da23d5 2582# include "symbian/symbianish.h"
009819bb 2583#elif defined(__HAIKU__)
df00ff3b 2584# include "haiku/haikuish.h"
009819bb 2585#else
19848b3f 2586# include "unixish.h"
13b6e58c
JH
2587#endif
2588
ea34f6bd 2589#ifdef __amigaos4__
3c0208ad
AB
2590# include "amigaos.h"
2591# undef FD_CLOEXEC /* a lie in AmigaOS */
2592#endif
2593
2946a158 2594/* NSIG logic from Configure --> */
2946a158
JH
2595#ifndef NSIG
2596# ifdef _NSIG
2597# define NSIG (_NSIG)
da5fdda8 2598# elif defined(SIGMAX)
2946a158 2599# define NSIG (SIGMAX+1)
da5fdda8 2600# elif defined(SIG_MAX)
2946a158 2601# define NSIG (SIG_MAX+1)
da5fdda8 2602# elif defined(_SIG_MAX)
2946a158 2603# define NSIG (_SIG_MAX+1)
da5fdda8 2604# elif defined(MAXSIG)
2946a158 2605# define NSIG (MAXSIG+1)
da5fdda8 2606# elif defined(MAX_SIG)
2946a158 2607# define NSIG (MAX_SIG+1)
da5fdda8 2608# elif defined(SIGARRAYSIZE)
2946a158 2609# define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
da5fdda8 2610# elif defined(_sys_nsig)
2946a158 2611# define NSIG (_sys_nsig) /* Solaris 2.5 */
da5fdda8
AC
2612# else
2613 /* Default to some arbitrary number that's big enough to get most
2614 * of the common signals. */
2946a158 2615# define NSIG 50
da5fdda8 2616# endif
2946a158
JH
2617#endif
2618/* <-- NSIG logic from Configure */
2619
13b6e58c
JH
2620#ifndef NO_ENVIRON_ARRAY
2621# define USE_ENVIRON_ARRAY
2622#endif
32f822de 2623
c77b533b
JH
2624/*
2625 * initialise to avoid floating-point exceptions from overflow, etc
2626 */
2627#ifndef PERL_FPU_INIT
2628# ifdef HAS_FPSETMASK
2629# if HAS_FLOATINGPOINT_H
2630# include <floatingpoint.h>
2631# endif
ad3a8c67
NC
2632/* Some operating systems have this as a macro, which in turn expands to a comma
2633 expression, and the last sub-expression is something that gets calculated,
2634 and then they have the gall to warn that a value computed is not used. Hence
2635 cast to void. */
2636# define PERL_FPU_INIT (void)fpsetmask(0)
da5fdda8
AC
2637# elif defined(SIGFPE) && defined(SIG_IGN) && !defined(PERL_MICRO)
2638# define PERL_FPU_INIT PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN)
2639# define PERL_FPU_PRE_EXEC { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe);
2640# define PERL_FPU_POST_EXEC rsignal_restore(SIGFPE, &xfpe); }
c77b533b 2641# else
da5fdda8 2642# define PERL_FPU_INIT
c77b533b
JH
2643# endif
2644#endif
b35112e7
CS
2645#ifndef PERL_FPU_PRE_EXEC
2646# define PERL_FPU_PRE_EXEC {
2647# define PERL_FPU_POST_EXEC }
2648#endif
c77b533b 2649
a308b05a
JH
2650/* In Tru64 the cc -ieee enables the IEEE math but disables traps.
2651 * We need to reenable the "invalid" trap because otherwise generation
2652 * of NaN values leaves the IEEE fp flags in bad state, leaving any further
2653 * fp ops behaving strangely (Inf + 1 resulting in zero, for example). */
2654#ifdef __osf__
2655# include <machine/fpu.h>
2656# define PERL_SYS_FPU_INIT \
2657 STMT_START { \
2658 ieee_set_fp_control(IEEE_TRAP_ENABLE_INV); \
2659 signal(SIGFPE, SIG_IGN); \
2660 } STMT_END
2661#endif
94a08944
JH
2662/* In IRIX the default for Flush to Zero bit is true,
2663 * which means that results going below the minimum of normal
2664 * floating points go to zero, instead of going denormal/subnormal.
2665 * This is unlike almost any other system running Perl, so let's clear it.
2666 * [perl #123767] IRIX64 blead (ddce084a) opbasic/arith.t failure, originally
2667 * [perl #120426] small numbers shouldn't round to zero if they have extra floating digits
2668 *
2669 * XXX The flush-to-zero behaviour should be a Configure scan.
2670 * To change the behaviour usually requires some system-specific
2671 * incantation, though, like the below. */
2672#ifdef __sgi
2673# include <sys/fpu.h>
2674# define PERL_SYS_FPU_INIT \
2675 STMT_START { \
2676 union fpc_csr csr; \
2677 csr.fc_word = get_fpc_csr(); \
2678 csr.fc_struct.flush = 0; \
2679 set_fpc_csr(csr.fc_word); \
2680 } STMT_END
2681#endif
a308b05a
JH
2682
2683#ifndef PERL_SYS_FPU_INIT
2684# define PERL_SYS_FPU_INIT NOOP
2685#endif
2686
cbec8ebe
DM
2687#ifndef PERL_SYS_INIT3_BODY
2688# define PERL_SYS_INIT3_BODY(argvp,argcp,envp) PERL_SYS_INIT_BODY(argvp,argcp)
ed344e4f
IZ
2689#endif
2690
eb533572 2691/*
dcccc8ff
KW
2692=head1 Miscellaneous Functions
2693
4ad9e498 2694=for apidoc Am|void|PERL_SYS_INIT|int *argc|char*** argv
eb533572 2695Provides system-specific tune up of the C runtime environment necessary to
72d33970 2696run Perl interpreters. This should be called only once, before creating
eb533572
DM
2697any Perl interpreters.
2698
4ad9e498 2699=for apidoc Am|void|PERL_SYS_INIT3|int *argc|char*** argv|char*** env
eb533572 2700Provides system-specific tune up of the C runtime environment necessary to
72d33970 2701run Perl interpreters. This should be called only once, before creating
eb533572
DM
2702any Perl interpreters.
2703
2704=for apidoc Am|void|PERL_SYS_TERM|
2705Provides system-specific clean up of the C runtime environment after
72d33970 2706running Perl interpreters. This should be called only once, after
eb533572
DM
2707freeing any remaining Perl interpreters.
2708
2709=cut
2710 */
2711
cbec8ebe
DM
2712#define PERL_SYS_INIT(argc, argv) Perl_sys_init(argc, argv)
2713#define PERL_SYS_INIT3(argc, argv, env) Perl_sys_init3(argc, argv, env)
d0820ef1 2714#define PERL_SYS_TERM() Perl_sys_term()
cbec8ebe 2715
be708cc0
JH
2716#ifndef PERL_WRITE_MSG_TO_CONSOLE
2717# define PERL_WRITE_MSG_TO_CONSOLE(io, msg, len) PerlIO_write(io, msg, len)
2718#endif
2719
0f31cffe
GS
2720#ifndef MAXPATHLEN
2721# ifdef PATH_MAX
b990c8b2
JH
2722# ifdef _POSIX_PATH_MAX
2723# if PATH_MAX > _POSIX_PATH_MAX
09448d78
JH
2724/* POSIX 1990 (and pre) was ambiguous about whether PATH_MAX
2725 * included the null byte or not. Later amendments of POSIX,
2726 * XPG4, the Austin Group, and the Single UNIX Specification
2727 * all explicitly include the null byte in the PATH_MAX.
2728 * Ditto for _POSIX_PATH_MAX. */
2729# define MAXPATHLEN PATH_MAX
b990c8b2 2730# else
09448d78 2731# define MAXPATHLEN _POSIX_PATH_MAX
b990c8b2
JH
2732# endif
2733# else
2734# define MAXPATHLEN (PATH_MAX+1)
2735# endif
0f31cffe 2736# else
d552bce8 2737# define MAXPATHLEN 1024 /* Err on the large side. */
0f31cffe
GS
2738# endif
2739#endif
2740
c80263a8
SH
2741/* In case Configure was not used (we are using a "canned config"
2742 * such as Win32, or a cross-compilation setup, for example) try going
2743 * by the gcc major and minor versions. One useful URL is
2744 * http://www.ohse.de/uwe/articles/gcc-attributes.html,
2745 * but contrary to this information warn_unused_result seems
2746 * not to be in gcc 3.3.5, at least. --jhi
42bf5550
AD
2747 * Also, when building extensions with an installed perl, this allows
2748 * the user to upgrade gcc and get the right attributes, rather than
2749 * relying on the list generated at Configure time. --AD
c80263a8
SH
2750 * Set these up now otherwise we get confused when some of the <*thread.h>
2751 * includes below indirectly pull in <perlio.h> (which needs to know if we
2752 * have HASATTRIBUTE_FORMAT).
2753 */
2754
4d7c7898 2755#ifndef PERL_MICRO
fc2007d4 2756#if defined __GNUC__ && !defined(__INTEL_COMPILER)
6a387721
RGS
2757# if __GNUC__ == 3 && __GNUC_MINOR__ >= 1 || __GNUC__ > 3 /* 3.1 -> */
2758# define HASATTRIBUTE_DEPRECATED
2759# endif
c80263a8
SH
2760# if __GNUC__ >= 3 /* 3.0 -> */ /* XXX Verify this version */
2761# define HASATTRIBUTE_FORMAT
63cdf24b
SH
2762# if defined __MINGW32__
2763# define PRINTF_FORMAT_NULL_OK
2764# endif
c80263a8
SH
2765# endif
2766# if __GNUC__ >= 3 /* 3.0 -> */
2767# define HASATTRIBUTE_MALLOC
2768# endif
2769# if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || __GNUC__ > 3 /* 3.3 -> */
2770# define HASATTRIBUTE_NONNULL
2771# endif
2772# if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 || __GNUC__ > 2 /* 2.5 -> */
2773# define HASATTRIBUTE_NORETURN
2774# endif
2775# if __GNUC__ >= 3 /* gcc 3.0 -> */
2776# define HASATTRIBUTE_PURE
2777# endif
42bf5550 2778# if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
c80263a8
SH
2779# define HASATTRIBUTE_UNUSED
2780# endif
d324fe49
AD
2781# if __GNUC__ == 3 && __GNUC_MINOR__ == 3 && !defined(__cplusplus)
2782# define HASATTRIBUTE_UNUSED /* gcc-3.3, but not g++-3.3. */
2783# endif
c80263a8
SH
2784# if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
2785# define HASATTRIBUTE_WARN_UNUSED_RESULT
2786# endif
2787#endif
00f254e2 2788#endif /* #ifndef PERL_MICRO */
c80263a8 2789
3db8f154 2790/* USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
dd96f567 2791 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
2792 * this results in many functions being undeclared which bothers C++
2793 * May make sense to have threads after "*ish.h" anyway
2794 */
2795
3baee7cc
JH
2796/* clang Thread Safety Analysis/Annotations/Attributes
2797 * http://clang.llvm.org/docs/ThreadSafetyAnalysis.html
2798 *
bdc795f4 2799 * Available since clang 3.6-ish (appeared in 3.4, but shaky still in 3.5).
3baee7cc 2800 * Apple XCode hijacks __clang_major__ and __clang_minor__
bdc795f4
JH
2801 * (6.1 means really clang 3.6), so needs extra hijinks
2802 * (could probably also test the contents of __apple_build_version__).
3baee7cc
JH
2803 */
2804#if defined(USE_ITHREADS) && defined(I_PTHREAD) && \
2805 defined(__clang__) && \
ab0fe36e
DM
2806 !defined(PERL_GLOBAL_STRUCT) && \
2807 !defined(PERL_GLOBAL_STRUCT_PRIVATE) && \
3baee7cc
JH
2808 !defined(SWIG) && \
2809 ((!defined(__apple_build_version__) && \
bdc795f4 2810 ((__clang_major__ == 3 && __clang_minor__ >= 6) || \
8412ccf9 2811 (__clang_major__ >= 4))) || \
3baee7cc 2812 (defined(__apple_build_version__) && \
bdc795f4
JH
2813 ((__clang_major__ == 6 && __clang_minor__ >= 1) || \
2814 (__clang_major__ >= 7))))
3baee7cc
JH
2815# define PERL_TSA__(x) __attribute__((x))
2816# define PERL_TSA_ACTIVE
2817#else
2818# define PERL_TSA__(x) /* No TSA, make TSA attributes no-ops. */
2819# undef PERL_TSA_ACTIVE
2820#endif
2821
2822/* PERL_TSA_CAPABILITY() is used to annotate typedefs.
2823 * typedef old_type PERL_TSA_CAPABILITY("mutex") new_type;
2824 */
2825#define PERL_TSA_CAPABILITY(x) \
2826 PERL_TSA__(capability(x))
2827
2828/* In the below examples the mutex must be lexically visible, usually
2829 * either as global variables, or as function arguments. */
2830
2831/* PERL_TSA_GUARDED_BY() is used to annotate global variables.
2832 *
2833 * Foo foo PERL_TSA_GUARDED_BY(mutex);
2834 */
2835#define PERL_TSA_GUARDED_BY(x) \
2836 PERL_TSA__(guarded_by(x))
2837
2838/* PERL_TSA_PT_GUARDED_BY() is used to annotate global pointers.
2839 * The data _behind_ the pointer is guarded.
2840 *
2841 * Foo* ptr PERL_TSA_PT_GUARDED_BY(mutex);
2842 */
2843#define PERL_TSA_PT_GUARDED_BY(x) \
2844 PERL_TSA__(pt_guarded_by(x))
2845
2846/* PERL_TSA_REQUIRES() is used to annotate functions.
2847 * The caller MUST hold the resource when calling the function.
2848 *
2849 * void Foo() PERL_TSA_REQUIRES(mutex);
2850 */
2851#define PERL_TSA_REQUIRES(x) \
2852 PERL_TSA__(requires_capability(x))
2853
2854/* PERL_TSA_EXCLUDES() is used to annotate functions.
2855 * The caller MUST NOT hold resource when calling the function.
2856 *
2857 * EXCLUDES should be used when the function first acquires
2858 * the resource and then releases it. Use to avoid deadlock.
2859 *
2860 * void Foo() PERL_TSA_EXCLUDES(mutex);
2861 */
2862#define PERL_TSA_EXCLUDES(x) \
2863 PERL_TSA__(locks_excluded(x))
2864
2865/* PERL_TSA_ACQUIRE() is used to annotate functions.
2866 * The caller MUST NOT hold the resource when calling the function,
2867 * and the function will acquire the resource.
2868 *
2869 * void Foo() PERL_TSA_ACQUIRE(mutex);
2870 */
2871#define PERL_TSA_ACQUIRE(x) \
2872 PERL_TSA__(acquire_capability(x))
2873
2874/* PERL_TSA_RELEASE() is used to annotate functions.
2875 * The caller MUST hold the resource when calling the function,
2876 * and the function will release the resource.
2877 *
2878 * void Foo() PERL_TSA_RELEASE(mutex);
2879 */
2880#define PERL_TSA_RELEASE(x) \
2881 PERL_TSA__(release_capability(x))
2882
2883/* PERL_TSA_NO_TSA is used to annotate functions.
2884 * Used when being intentionally unsafe, or when the code is too
2885 * complicated for the analysis. Use sparingly.
2886 *
2887 * void Foo() PERL_TSA_NO_TSA;
2888 */
2889#define PERL_TSA_NO_TSA \
2890 PERL_TSA__(no_thread_safety_analysis)
2891
2892/* There are more annotations/attributes available, see the clang
2893 * documentation for details. */
2894
3db8f154 2895#if defined(USE_ITHREADS)
2986a63f 2896# ifdef NETWARE
da5fdda8
AC
2897# include <nw5thread.h>
2898# elif defined(WIN32)
2899# include <win32thread.h>
2900# elif defined(OS2)
2901# include "os2thread.h"
2902# elif defined(I_MACH_CTHREADS)
2903# include <mach/cthreads.h>
7f3d1cf1
BH
2904typedef cthread_t perl_os_thread;
2905typedef mutex_t perl_mutex;
2906typedef condition_t perl_cond;
2907typedef void * perl_key;
da5fdda8
AC
2908# elif defined(I_PTHREAD) /* Posix threads */
2909# include <pthread.h>
7f3d1cf1 2910typedef pthread_t perl_os_thread;
3baee7cc 2911typedef pthread_mutex_t PERL_TSA_CAPABILITY("mutex") perl_mutex;
7f3d1cf1
BH
2912typedef pthread_cond_t perl_cond;
2913typedef pthread_key_t perl_key;
da5fdda8 2914# endif
3db8f154 2915#endif /* USE_ITHREADS */
c5be433b 2916
3baee7cc
JH
2917#ifdef PERL_TSA_ACTIVE
2918/* Since most pthread mutex interfaces have not been annotated, we
2919 * need to have these wrappers. The NO_TSA annotation is quite ugly
2920 * but it cannot be avoided in plain C, unlike in C++, where one could
2921 * e.g. use ACQUIRE() with no arg on a mutex lock method.
2922 *
2923 * The bodies of these wrappers are in util.c
2924 *
2925 * TODO: however, some platforms are starting to get these clang
2926 * thread safety annotations for pthreads, for example FreeBSD.
2927 * Do we need a way to a bypass these wrappers? */
67083b7b 2928EXTERN_C int perl_tsa_mutex_lock(perl_mutex* mutex)
3baee7cc
JH
2929 PERL_TSA_ACQUIRE(*mutex)
2930 PERL_TSA_NO_TSA;
67083b7b 2931EXTERN_C int perl_tsa_mutex_unlock(perl_mutex* mutex)
3baee7cc
JH
2932 PERL_TSA_RELEASE(*mutex)
2933 PERL_TSA_NO_TSA;
2934#endif
2935
66a93824 2936#if defined(WIN32)
1feb2720 2937# include "win32.h"
c5be433b
GS
2938#endif
2939
2986a63f
JH
2940#ifdef NETWARE
2941# include "netware.h"
2942#endif
2943
e5218da5 2944#define STATUS_UNIX PL_statusvalue
68dc0745 2945#ifdef VMS
6b88bc9c 2946# define STATUS_NATIVE PL_statusvalue_vms
7a7fd8e0
JM
2947/*
2948 * vaxc$errno is only guaranteed to be valid if errno == EVMSERR, otherwise
ff7298cb 2949 * its contents can not be trusted. Unfortunately, Perl seems to check
7a7fd8e0
JM
2950 * it on exit, so it when PL_statusvalue_vms is updated, vaxc$errno should
2951 * be updated also.
2952 */
2953# include <stsdef.h>
2954# include <ssdef.h>
2955/* Presume this because if VMS changes it, it will require a new
2956 * set of APIs for waiting on children for binary compatibility.
2957 */
2958# define child_offset_bits (8)
2959# ifndef C_FAC_POSIX
2960# define C_FAC_POSIX 0x35A000
2961# endif
2962
2963/* STATUS_EXIT - validates and returns a NATIVE exit status code for the
2964 * platform from the existing UNIX or Native status values.
2965 */
2966
37038d91 2967# define STATUS_EXIT \
7a7fd8e0
JM
2968 (((I32)PL_statusvalue_vms == -1 ? SS$_ABORT : PL_statusvalue_vms) | \
2969 (VMSISH_HUSHED ? STS$M_INHIB_MSG : 0))
2970
7a7fd8e0 2971
fb38d079
JM
2972/* STATUS_NATIVE_CHILD_SET - Calculate UNIX status that matches the child
2973 * exit code and shifts the UNIX value over the correct number of bits to
2974 * be a child status. Usually the number of bits is 8, but that could be
2975 * platform dependent. The NATIVE status code is presumed to have either
2976 * from a child process.
7a7fd8e0
JM
2977 */
2978
fb38d079
JM
2979/* This is complicated. The child processes return a true native VMS
2980 status which must be saved. But there is an assumption in Perl that
2981 the UNIX child status has some relationship to errno values, so
00f254e2 2982 Perl tries to translate it to text in some of the tests.
fb38d079
JM
2983 In order to get the string translation correct, for the error, errno
2984 must be EVMSERR, but that generates a different text message
2985 than what the test programs are expecting. So an errno value must
2986 be derived from the native status value when an error occurs.
2987 That will hide the true native status message. With this version of
2988 perl, the true native child status can always be retrieved so that
2989 is not a problem. But in this case, Pl_statusvalue and errno may
2990 have different values in them.
2991 */
7a7fd8e0 2992
fb38d079 2993# define STATUS_NATIVE_CHILD_SET(n) \
68dc0745 2994 STMT_START { \
2fbb330f
JM
2995 I32 evalue = (I32)n; \
2996 if (evalue == EVMSERR) { \
2997 PL_statusvalue_vms = vaxc$errno; \
2998 PL_statusvalue = evalue; \
7a7fd8e0 2999 } else { \
2fbb330f 3000 PL_statusvalue_vms = evalue; \
fb38d079 3001 if (evalue == -1) { \
3280af22 3002 PL_statusvalue = -1; \
7a7fd8e0
JM
3003 PL_statusvalue_vms = SS$_ABORT; /* Should not happen */ \
3004 } else \
fb38d079 3005 PL_statusvalue = Perl_vms_status_to_unix(evalue, 1); \
2fbb330f 3006 set_vaxc_errno(evalue); \
fb38d079
JM
3007 if ((PL_statusvalue_vms & C_FAC_POSIX) == C_FAC_POSIX) \
3008 set_errno(EVMSERR); \
3009 else set_errno(Perl_vms_status_to_unix(evalue, 0)); \
3010 PL_statusvalue = PL_statusvalue << child_offset_bits; \
2fbb330f 3011 } \
68dc0745 3012 } STMT_END
7a7fd8e0 3013
68dc0745 3014# ifdef VMSISH_STATUS
e5218da5 3015# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_UNIX)
68dc0745 3016# else
e5218da5 3017# define STATUS_CURRENT STATUS_UNIX
68dc0745 3018# endif
7a7fd8e0
JM
3019
3020 /* STATUS_UNIX_SET - takes a UNIX/POSIX errno value and attempts to update
3021 * the NATIVE status to an equivalent value. Can not be used to translate
3022 * exit code values as exit code values are not guaranteed to have any
3023 * relationship at all to errno values.
3024 * This is used when Perl is forcing errno to have a specific value.
3025 */
e5218da5 3026# define STATUS_UNIX_SET(n) \
68dc0745 3027 STMT_START { \
7a7fd8e0 3028 I32 evalue = (I32)n; \
0968cdad 3029 PL_statusvalue = evalue; \
3280af22 3030 if (PL_statusvalue != -1) { \
0968cdad
JM
3031 if (PL_statusvalue != EVMSERR) { \
3032 PL_statusvalue &= 0xFFFF; \
3033 if (MY_POSIX_EXIT) \
3034 PL_statusvalue_vms=PL_statusvalue ? SS$_ABORT : SS$_NORMAL;\
3035 else PL_statusvalue_vms = Perl_unix_status_to_vms(evalue); \
3036 } \
3037 else { \
3038 PL_statusvalue_vms = vaxc$errno; \
3039 } \
68dc0745 3040 } \
0968cdad
JM
3041 else PL_statusvalue_vms = SS$_ABORT; \
3042 set_vaxc_errno(PL_statusvalue_vms); \
7a7fd8e0
JM
3043 } STMT_END
3044
3045 /* STATUS_UNIX_EXIT_SET - Takes a UNIX/POSIX exit code and sets
e08e1e1d
JM
3046 * the NATIVE error status based on it.
3047 *
3048 * When in the default mode to comply with the Perl VMS documentation,
3049 * 0 is a success and any other code sets the NATIVE status to a failure
3050 * code of SS$_ABORT.
fb38d079
JM
3051 *
3052 * In the new POSIX EXIT mode, native status will be set so that the
3053 * actual exit code will can be retrieved by the calling program or
3054 * shell.
3055 *
3056 * If the exit code is not clearly a UNIX parent or child exit status,
3057 * it will be passed through as a VMS status.
7a7fd8e0
JM
3058 */
3059
fb38d079 3060# define STATUS_UNIX_EXIT_SET(n) \
7a7fd8e0
JM
3061 STMT_START { \
3062 I32 evalue = (I32)n; \
3063 PL_statusvalue = evalue; \
e08e1e1d
JM
3064 if (MY_POSIX_EXIT) { \
3065 if (evalue <= 0xFF00) { \
3066 if (evalue > 0xFF) \
3067 evalue = (evalue >> child_offset_bits) & 0xFF; \
3068 PL_statusvalue_vms = \
3069 (C_FAC_POSIX | (evalue << 3 ) | \
3070 ((evalue == 1) ? (STS$K_ERROR | STS$M_INHIB_MSG) : 1)); \
3071 } else /* forgive them Perl, for they have sinned */ \
3072 PL_statusvalue_vms = evalue; \
3073 } else { \
3074 if (evalue == 0) \
3075 PL_statusvalue_vms = SS$_NORMAL; \
3076 else if (evalue <= 0xFF00) \
3077 PL_statusvalue_vms = SS$_ABORT; \
3078 else { /* forgive them Perl, for they have sinned */ \
3079 if (evalue != EVMSERR) PL_statusvalue_vms = evalue; \
3080 else PL_statusvalue_vms = vaxc$errno; \
3081 /* And obviously used a VMS status value instead of UNIX */ \
3082 PL_statusvalue = EVMSERR; \
3083 } \
3084 set_vaxc_errno(PL_statusvalue_vms); \
3085 } \
68dc0745 3086 } STMT_END
fb38d079 3087
e08e1e1d 3088
6ac6a52b
JM
3089 /* STATUS_EXIT_SET - Takes a NATIVE/UNIX/POSIX exit code
3090 * and sets the NATIVE error status based on it. This special case
3091 * is needed to maintain compatibility with past VMS behavior.
3092 *
3093 * In the default mode on VMS, this number is passed through as
3094 * both the NATIVE and UNIX status. Which makes it different
3095 * that the STATUS_UNIX_EXIT_SET.
3096 *
3097 * In the new POSIX EXIT mode, native status will be set so that the
3098 * actual exit code will can be retrieved by the calling program or
3099 * shell.
3100 *
1a3aec58
JM
3101 * A POSIX exit code is from 0 to 255. If the exit code is higher
3102 * than this, it needs to be assumed that it is a VMS exit code and
3103 * passed through.
6ac6a52b
JM
3104 */
3105
3106# define STATUS_EXIT_SET(n) \
3107 STMT_START { \
3108 I32 evalue = (I32)n; \
3109 PL_statusvalue = evalue; \
3110 if (MY_POSIX_EXIT) \
1a3aec58
JM
3111 if (evalue > 255) PL_statusvalue_vms = evalue; else { \
3112 PL_statusvalue_vms = \
3113 (C_FAC_POSIX | (evalue << 3 ) | \
3114 ((evalue == 1) ? (STS$K_ERROR | STS$M_INHIB_MSG) : 1));} \
6ac6a52b
JM
3115 else \
3116 PL_statusvalue_vms = evalue ? evalue : SS$_NORMAL; \
3117 set_vaxc_errno(PL_statusvalue_vms); \
3118 } STMT_END
3119
fb38d079
JM
3120
3121 /* This macro forces a success status */
7a7fd8e0
JM
3122# define STATUS_ALL_SUCCESS \
3123 (PL_statusvalue = 0, PL_statusvalue_vms = SS$_NORMAL)
fb38d079
JM
3124
3125 /* This macro forces a failure status */
7a7fd8e0
JM
3126# define STATUS_ALL_FAILURE (PL_statusvalue = 1, \
3127 vaxc$errno = PL_statusvalue_vms = MY_POSIX_EXIT ? \
3128 (C_FAC_POSIX | (1 << 3) | STS$K_ERROR | STS$M_INHIB_MSG) : SS$_ABORT)
fb38d079 3129
738ab09f
AB
3130#elif defined(__amigaos4__)
3131 /* A somewhat experimental attempt to simulate posix return code values */
3132# define STATUS_NATIVE PL_statusvalue_posix
3133# define STATUS_NATIVE_CHILD_SET(n) \
3134 STMT_START { \
3135 PL_statusvalue_posix = (n); \
3136 if (PL_statusvalue_posix < 0) { \
3137 PL_statusvalue = -1; \
3138 } \
3139 else { \
3140 PL_statusvalue = n << 8; \
3141 } \
3142 } STMT_END
3143# define STATUS_UNIX_SET(n) \
3144 STMT_START { \
3145 PL_statusvalue = (n); \
3146 if (PL_statusvalue != -1) \
3147 PL_statusvalue &= 0xFFFF; \
3148 } STMT_END
3149# define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
3150# define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
3151# define STATUS_CURRENT STATUS_UNIX
3152# define STATUS_EXIT STATUS_UNIX
3153# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_posix = 0)
3154# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_posix = 1)
3155
68dc0745 3156#else
e5218da5 3157# define STATUS_NATIVE PL_statusvalue_posix
e5218da5 3158# if defined(WCOREDUMP)
37038d91 3159# define STATUS_NATIVE_CHILD_SET(n) \
e5218da5
GA
3160 STMT_START { \
3161 PL_statusvalue_posix = (n); \
3162 if (PL_statusvalue_posix == -1) \
3163 PL_statusvalue = -1; \
3164 else { \
3165 PL_statusvalue = \
3166 (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) | \
3167 (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0) | \
3168 (WIFSIGNALED(PL_statusvalue_posix) && WCOREDUMP(PL_statusvalue_posix) ? 0x80 : 0); \
3169 } \
3170 } STMT_END
3171# elif defined(WIFEXITED)
37038d91 3172# define STATUS_NATIVE_CHILD_SET(n) \
e5218da5
GA
3173 STMT_START { \
3174 PL_statusvalue_posix = (n); \
3175 if (PL_statusvalue_posix == -1) \
3176 PL_statusvalue = -1; \
3177 else { \
3178 PL_statusvalue = \
3179 (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) | \
3180 (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0); \
3181 } \
3182 } STMT_END
3183# else
37038d91 3184# define STATUS_NATIVE_CHILD_SET(n) \
e5218da5
GA
3185 STMT_START { \
3186 PL_statusvalue_posix = (n); \
3187 if (PL_statusvalue_posix == -1) \
3188 PL_statusvalue = -1; \
3189 else { \
3190 PL_statusvalue = \
3191 PL_statusvalue_posix & 0xFFFF; \
3192 } \
3193 } STMT_END
3194# endif
3195# define STATUS_UNIX_SET(n) \
68dc0745 3196 STMT_START { \
3280af22
NIS
3197 PL_statusvalue = (n); \
3198 if (PL_statusvalue != -1) \
3199 PL_statusvalue &= 0xFFFF; \
68dc0745 3200 } STMT_END
7a7fd8e0 3201# define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
6ac6a52b 3202# define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
e5218da5 3203# define STATUS_CURRENT STATUS_UNIX
37038d91 3204# define STATUS_EXIT STATUS_UNIX
e5218da5
GA
3205# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_posix = 0)
3206# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_posix = 1)
68dc0745 3207#endif
3208
cc3604b1
GS
3209/* flags in PL_exit_flags for nature of exit() */
3210#define PERL_EXIT_EXPECTED 0x01
31d77e54 3211#define PERL_EXIT_DESTRUCT_END 0x02 /* Run END in perl_destruct */
6136213b
JGM
3212#define PERL_EXIT_WARN 0x04 /* Warn if Perl_my_exit() or Perl_my_failure_exit() called */
3213#define PERL_EXIT_ABORT 0x08 /* Call abort() if Perl_my_exit() or Perl_my_failure_exit() called */
cc3604b1 3214
b79b76e0 3215#ifndef PERL_CORE
a7cb1f99 3216/* format to use for version numbers in file/directory names */
273cf8d1 3217/* XXX move to Configure? */
b79b76e0
NC
3218/* This was only ever used for the current version, and that can be done at
3219 compile time, as PERL_FS_VERSION, so should we just delete it? */
3220# ifndef PERL_FS_VER_FMT
3221# define PERL_FS_VER_FMT "%d.%d.%d"
3222# endif
3223#endif
3224
3225#ifndef PERL_FS_VERSION
3226# define PERL_FS_VERSION PERL_VERSION_STRING
0b94c7bb
GS
3227#endif
3228
45bc9206 3229/* This defines a way to flush all output buffers. This may be a
76549fef
JH
3230 * performance issue, so we allow people to disable it. Also, if
3231 * we are using stdio, there are broken implementations of fflush(NULL)
3232 * out there, Solaris being the most prominent.
45bc9206
GS
3233 */
3234#ifndef PERL_FLUSHALL_FOR_CHILD
97cb92d6 3235# if defined(USE_PERLIO) || defined(FFLUSH_NULL)
66fe083f 3236# define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
da5fdda8
AC
3237# elif defined(FFLUSH_ALL)
3238# define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
767df6a1 3239# else
da5fdda8 3240# define PERL_FLUSHALL_FOR_CHILD NOOP
66fe083f 3241# endif
45bc9206
GS
3242#endif
3243
7766f137
GS
3244#ifndef PERL_WAIT_FOR_CHILDREN
3245# define PERL_WAIT_FOR_CHILDREN NOOP
3246#endif
3247
ba869deb 3248/* the traditional thread-unsafe notion of "current interpreter". */
c5be433b
GS
3249#ifndef PERL_SET_INTERP
3250# define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
3251#endif
3252
3253#ifndef PERL_GET_INTERP
3254# define PERL_GET_INTERP (PL_curinterp)
3255#endif
3256
54aff467 3257#if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
54aff467 3258# ifdef MULTIPLICITY
ba869deb 3259# define PERL_GET_THX ((PerlInterpreter *)PERL_GET_CONTEXT)
54aff467 3260# endif
ba869deb
GS
3261# define PERL_SET_THX(t) PERL_SET_CONTEXT(t)
3262#endif
3263
00f254e2 3264/*
8896765a 3265 This replaces the previous %_ "hack" by the "%p" hacks.
0dbb1585 3266 All that is required is that the perl source does not
00f254e2
KW
3267 use "%-p" or "%-<number>p" or "%<number>p" formats.
3268 These formats will still work in perl code.
486ec47a 3269 See comments in sv.c for further details.
8896765a 3270
8896765a 3271 Robin Barker 2005-07-14
f46d31f2 3272
00f254e2 3273 No longer use %1p for VDf = %vd. RMB 2007-10-19
0dbb1585 3274*/
8896765a
RB
3275
3276#ifndef SVf_
63ce7bf0 3277# define SVf_(n) "-" STRINGIFY(n) "p"
894356b3
GS
3278#endif
3279
8896765a 3280#ifndef SVf
104abab4 3281# define SVf "-p"
d2560b70
RB
3282#endif
3283
014ead4b 3284#ifndef SVf32
8896765a 3285# define SVf32 SVf_(32)
014ead4b
RB
3286#endif
3287
3288#ifndef SVf256
8896765a
RB
3289# define SVf256 SVf_(256)
3290#endif
3291
be2597df
MHM
3292#define SVfARG(p) ((void*)(p))
3293
20023040
FC
3294#ifndef HEKf
3295# define HEKf "2p"
3296#endif
3297
b8fa5213
FC
3298/* Not ideal, but we cannot easily include a number in an already-numeric
3299 * format sequence. */
3300#ifndef HEKf256
3301# define HEKf256 "3p"
3302#endif
3303
20023040
FC
3304#define HEKfARG(p) ((void*)(p))
3305
b17a0679
FC
3306/* Takes three arguments: is_utf8, length, str */
3307#ifndef UTF8f
61608bb7 3308# define UTF8f "d%" UVuf "%4p"
b17a0679
FC
3309#endif
3310#define UTF8fARG(u,l,p) (int)cBOOL(u), (UV)(l), (void*)(p)
3311
0f94cb1f
FC
3312#define PNf UTF8f
3313#define PNfARG(pn) (int)1, (UV)PadnameLEN(pn), (void *)PadnamePV(pn)
0d1e9135 3314
f46d31f2 3315#ifdef PERL_CORE
486ec47a 3316/* not used; but needed for backward compatibility with XS code? - RMB */
7776bb98 3317# undef UVf
da5fdda8
AC
3318#elif !defined(UVf)
3319# define UVf UVuf
d2560b70
RB
3320#endif
3321
fcdf39cf
RGS
3322#ifdef HASATTRIBUTE_DEPRECATED
3323# define __attribute__deprecated__ __attribute__((deprecated))
3324#endif
0dbb1585
AL
3325#ifdef HASATTRIBUTE_FORMAT
3326# define __attribute__format__(x,y,z) __attribute__((format(x,y,z)))
3327#endif
3328#ifdef HASATTRIBUTE_MALLOC
77785eea 3329# define __attribute__malloc__ __attribute__((__malloc__))
f22be1b8 3330#endif
0dbb1585 3331#ifdef HASATTRIBUTE_NONNULL
abb2c242 3332# define __attribute__nonnull__(a) __attribute__((nonnull(a)))
f22be1b8 3333#endif
0dbb1585 3334#ifdef HASATTRIBUTE_NORETURN
abb2c242 3335# define __attribute__noreturn__ __attribute__((noreturn))
f22be1b8 3336#endif
0dbb1585 3337#ifdef HASATTRIBUTE_PURE
abb2c242 3338# define __attribute__pure__ __attribute__((pure))
f22be1b8 3339#endif
0dbb1585
AL
3340#ifdef HASATTRIBUTE_UNUSED
3341# define __attribute__unused__ __attribute__((unused))
3342#endif
3343#ifdef HASATTRIBUTE_WARN_UNUSED_RESULT
abb2c242 3344# define __attribute__warn_unused_result__ __attribute__((warn_unused_result))
f22be1b8
JH
3345#endif
3346
0dbb1585 3347/* If we haven't defined the attributes yet, define them to blank. */
fcdf39cf
RGS
3348#ifndef __attribute__deprecated__
3349# define __attribute__deprecated__
3350#endif
0dbb1585
AL
3351#ifndef __attribute__format__
3352# define __attribute__format__(x,y,z)
3353#endif
f22be1b8 3354#ifndef __attribute__malloc__
abb2c242 3355# define __attribute__malloc__
f22be1b8
JH
3356#endif
3357#ifndef __attribute__nonnull__
abb2c242 3358# define __attribute__nonnull__(a)
f22be1b8
JH
3359#endif
3360#ifndef __attribute__noreturn__
abb2c242 3361# define __attribute__noreturn__
f22be1b8
JH
3362#endif
3363#ifndef __attribute__pure__
abb2c242 3364# define __attribute__pure__
f22be1b8 3365#endif
0dbb1585
AL
3366#ifndef __attribute__unused__
3367# define __attribute__unused__
3368#endif
f22be1b8 3369#ifndef __attribute__warn_unused_result__
abb2c242
JH
3370# define __attribute__warn_unused_result__
3371#endif
3372
6ff2ec7d
AC
3373#if !defined(DEBUGGING) && !defined(NDEBUG)
3374# define NDEBUG 1
cd13e623 3375#endif
6ff2ec7d 3376#include <assert.h>
cd13e623 3377
0dbb1585
AL
3378/* For functions that are marked as __attribute__noreturn__, it's not
3379 appropriate to call return. In either case, include the lint directive.
3380 */
3381#ifdef HASATTRIBUTE_NORETURN
bc3d2941 3382# define NORETURN_FUNCTION_END NOT_REACHED;
0dbb1585 3383#else
bc3d2941 3384# define NORETURN_FUNCTION_END NOT_REACHED; return 0
abb2c242
JH
3385#endif
3386
cdfeb707
RB
3387/* Some OS warn on NULL format to printf */
3388#ifdef PRINTF_FORMAT_NULL_OK
3389# define __attribute__format__null_ok__(x,y,z) __attribute__format__(x,y,z)
3390#else
00f254e2 3391# define __attribute__format__null_ok__(x,y,z)
cdfeb707
RB
3392#endif
3393
635aebb7 3394#ifdef HAS_BUILTIN_EXPECT
b37c2d43
AL
3395# define EXPECT(expr,val) __builtin_expect(expr,val)
3396#else
3397# define EXPECT(expr,val) (expr)
3398#endif
6d5abc62
NC
3399#define LIKELY(cond) EXPECT(cBOOL(cond),TRUE)
3400#define UNLIKELY(cond) EXPECT(cBOOL(cond),FALSE)
635aebb7
AL
3401#ifdef HAS_BUILTIN_CHOOSE_EXPR
3402/* placeholder */
3403#endif
b37c2d43 3404
a36ca6de 3405/* STATIC_ASSERT_DECL/STATIC_ASSERT_STMT are like assert(), but for compile
5074d4c5
LM
3406 time invariants. That is, their argument must be a constant expression that
3407 can be verified by the compiler. This expression can contain anything that's
3408 known to the compiler, e.g. #define constants, enums, or sizeof (...). If
3409 the expression evaluates to 0, compilation fails.
3410 Because they generate no runtime code (i.e. their use is "free"), they're
3411 always active, even under non-DEBUGGING builds.
a36ca6de 3412 STATIC_ASSERT_DECL expands to a declaration and is suitable for use at
5074d4c5
LM
3413 file scope (outside of any function).
3414 STATIC_ASSERT_STMT expands to a statement and is suitable for use inside a
3415 function.
3416*/
7ea096df 3417#if (defined(static_assert) || (defined(__cplusplus) && __cplusplus >= 201103L)) && (!defined(__IBMC__) || __IBMC__ >= 1210)
6d59e610 3418/* static_assert is a macro defined in <assert.h> in C11 or a compiler
a36ca6de
LM
3419 builtin in C++11. But IBM XL C V11 does not support _Static_assert, no
3420 matter what <assert.h> says.
6d59e610 3421*/
a36ca6de 3422# define STATIC_ASSERT_DECL(COND) static_assert(COND, #COND)
6d59e610
LM
3423#else
3424/* We use a bit-field instead of an array because gcc accepts
3425 'typedef char x[n]' where n is not a compile-time constant.
3426 We want to enforce constantness.
3427*/
3428# define STATIC_ASSERT_2(COND, SUFFIX) \
3429 typedef struct { \
3430 unsigned int _static_assertion_failed_##SUFFIX : (COND) ? 1 : -1; \
3431 } _static_assertion_failed_##SUFFIX PERL_UNUSED_DECL
3432# define STATIC_ASSERT_1(COND, SUFFIX) STATIC_ASSERT_2(COND, SUFFIX)
a36ca6de 3433# define STATIC_ASSERT_DECL(COND) STATIC_ASSERT_1(COND, __LINE__)
6d59e610
LM
3434#endif
3435/* We need this wrapper even in C11 because 'case X: static_assert(...);' is an
3436 error (static_assert is a declaration, and only statements can have labels).
3437*/
21aae866 3438#define STATIC_ASSERT_STMT(COND) STMT_START { STATIC_ASSERT_DECL(COND); } STMT_END
ae103e09
DD
3439
3440#ifndef __has_builtin
3441# define __has_builtin(x) 0 /* not a clang style compiler */
3442#endif
3443
3444/* ASSUME is like assert(), but it has a benefit in a release build. It is a
3445 hint to a compiler about a statement of fact in a function call free
3446 expression, which allows the compiler to generate better machine code.
3447 In a debug build, ASSUME(x) is a synonym for assert(x). ASSUME(0) means
3448 the control path is unreachable. In a for loop, ASSUME can be used to hint
b8fda935 3449 that a loop will run at least X times. ASSUME is based off MSVC's __assume
ae103e09
DD
3450 intrinsic function, see its documents for more details.
3451*/
3452
3453#ifndef DEBUGGING
3454# if __has_builtin(__builtin_unreachable) \
d1020b40 3455 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 4) /* 4.5 -> */
ae103e09
DD
3456# define ASSUME(x) ((x) ? (void) 0 : __builtin_unreachable())
3457# elif defined(_MSC_VER)
3458# define ASSUME(x) __assume(x)
3459# elif defined(__ARMCC_VERSION) /* untested */
3460# define ASSUME(x) __promise(x)
3461# else
3462/* a random compiler might define assert to its own special optimization token
3463 so pass it through to C lib as a last resort */
3464# define ASSUME(x) assert(x)
3465# endif
3466#else
3467# define ASSUME(x) assert(x)
3468#endif
3469
dbc47c6f
KW
3470#if defined(__sun) /* ASSUME() generates warnings on Solaris */
3471# define NOT_REACHED
2145f4b6
LM
3472#elif defined(DEBUGGING) && (__has_builtin(__builtin_unreachable) \
3473 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 4)) /* 4.5 -> */
3474# define NOT_REACHED STMT_START { ASSUME(0); __builtin_unreachable(); } STMT_END
dbc47c6f
KW
3475#else
3476# define NOT_REACHED ASSUME(0)
3477#endif
ae103e09 3478
3fc1aec6 3479/* Some unistd.h's give a prototype for pause() even though
3480 HAS_PAUSE ends up undefined. This causes the #define
d2560b70 3481 below to be rejected by the compiler. Sigh.
3fc1aec6 3482*/
3483#ifdef HAS_PAUSE
3484#define Pause pause
3485#else
3486#define Pause() sleep((32767<<16)+32767)
748a9306
LW
3487#endif
3488
3489#ifndef IOCPARM_LEN
3490# ifdef IOCPARM_MASK
61f1c44b 3491 /* on BSDish systems we're safe */
748a9306 3492# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
da5fdda8 3493# elif defined(_IOC_SIZE) && defined(__GLIBC__)
301eb2f0 3494 /* on Linux systems we're safe; except when we're not [perl #38223] */
da5fdda8
AC
3495# define IOCPARM_LEN(x) (_IOC_SIZE(x) < 256 ? 256 : _IOC_SIZE(x))
3496# else
748a9306 3497 /* otherwise guess at what's safe */
da5fdda8 3498# define IOCPARM_LEN(x) 256
748a9306 3499# endif
a0d0e21e
LW
3500#endif
3501
1761cee5 3502#if defined(__CYGWIN__)
521e0776
GS
3503/* USEMYBINMODE
3504 * This symbol, if defined, indicates that the program should
16fe6d59 3505 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
521e0776
GS
3506 * that a file is in "binary" mode -- that is, that no translation
3507 * of bytes occurs on read or write operations.
3508 */
36894f0b 3509# define USEMYBINMODE /**/
77a40698 3510# include <io.h> /* for setmode() prototype */
16fe6d59 3511# define my_binmode(fp, iotype, mode) \
8298454c 3512 cBOOL(PerlLIO_setmode(fileno(fp), mode) != -1)
5aabfad6 3513#endif
3514
88d10794
JH
3515#ifdef __CYGWIN__
3516void init_os_extras(void);
3517#endif
3518
cea2e8a9
GS
3519#ifdef UNION_ANY_DEFINITION
3520UNION_ANY_DEFINITION;
3521#else
3522union any {
3523 void* any_ptr;
c9728782
DM
3524 SV* any_sv;
3525 SV** any_svp;
3526 GV* any_gv;
3527 AV* any_av;
3528 HV* any_hv;
6ffb8402 3529 OP* any_op;
c9728782
DM
3530 char* any_pv;
3531 char** any_pvp;
cea2e8a9 3532 I32 any_i32;
ae103e09 3533 U32 any_u32;
cea2e8a9 3534 IV any_iv;
c6bf6a65 3535 UV any_uv;
cea2e8a9 3536 long any_long;
9febdf04 3537 bool any_bool;
c76ac1ee 3538 void (*any_dptr) (void*);
acfe0abc 3539 void (*any_dxptr) (pTHX_ void*);
cea2e8a9
GS
3540};
3541#endif
3542
acfe0abc 3543typedef I32 (*filter_t) (pTHX_ int, SV *, int);
cea2e8a9
GS
3544
3545#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
5486870f
DM
3546#define FILTER_DATA(idx) \
3547 (PL_parser ? AvARRAY(PL_parser->rsfp_filters)[idx] : NULL)
3548#define FILTER_ISREADER(idx) \
3549 (PL_parser && PL_parser->rsfp_filters \
3550 && idx >= AvFILLp(PL_parser->rsfp_filters))
3551#define PERL_FILTER_EXISTS(i) \
3552 (PL_parser && PL_parser->rsfp_filters \
b9f2b683 3553 && (i) <= av_tindex(PL_parser->rsfp_filters))
cea2e8a9 3554
c5078cac
JH
3555#if defined(_AIX) && !defined(_AIX43)
3556#if defined(USE_REENTRANT) || defined(_REENTRANT) || defined(_THREAD_SAFE)
3557/* We cannot include <crypt.h> to get the struct crypt_data
3558 * because of setkey prototype problems when threading */
3559typedef struct crypt_data { /* straight from /usr/include/crypt.h */
3560 /* From OSF, Not needed in AIX
3561 char C[28], D[28];
3562 */
3563 char E[48];
3564 char KS[16][48];
3565 char block[66];
3566 char iobuf[16];
3567} CRYPTD;
3568#endif /* threading */
3569#endif /* AIX */
3570
fc6bde6f
DD
3571#ifndef PERL_CALLCONV
3572# ifdef __cplusplus
3573# define PERL_CALLCONV extern "C"
3574# else
3575# define PERL_CALLCONV
3576# endif
3577#endif
3578#ifndef PERL_CALLCONV_NO_RET
3579# define PERL_CALLCONV_NO_RET PERL_CALLCONV
3580#endif
3581
3582/* PERL_STATIC_NO_RET is supposed to be equivalent to STATIC on builds that
3583 dont have a noreturn as a declaration specifier
3584*/
3585#ifndef PERL_STATIC_NO_RET
3586# define PERL_STATIC_NO_RET STATIC
3587#endif
3588/* PERL_STATIC_NO_RET is supposed to be equivalent to PERL_STATIC_INLINE on
3589 builds that dont have a noreturn as a declaration specifier
3590*/
3591#ifndef PERL_STATIC_INLINE_NO_RET
3592# define PERL_STATIC_INLINE_NO_RET PERL_STATIC_INLINE
3593#endif
3594
e37778c2 3595#if !defined(OS2)
2c2d71f5
JH
3596# include "iperlsys.h"
3597#endif
504f80c1 3598
9c12f1e5 3599#ifdef __LIBCATAMOUNT__
00f254e2 3600#undef HAS_PASSWD /* unixish.h but not unixish enough. */
9c12f1e5
RGS
3601#undef HAS_GROUP
3602#define FAKE_BIT_BUCKET
3603#endif
3604
d10dc2ae 3605/* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0.
1a237f4f
YO
3606 * Note that the USE_HASH_SEED and similar defines are *NOT* defined by
3607 * Configure, despite their names being similar to other defines like
3608 * USE_ITHREADS. Configure in fact knows nothing about the randomised
3609 * hashes. Therefore to enable/disable the hash randomisation defines
3610 * use the Configure -Accflags=... instead. */
3611#if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED)
4546b9e6 3612# define USE_HASH_SEED
504f80c1
JH
3613#endif
3614
598921a7
NC
3615#include "perly.h"
3616
598921a7 3617
654eccd5
JD
3618/* macros to define bit-fields in structs. */
3619#ifndef PERL_BITFIELD8
3620# define PERL_BITFIELD8 unsigned
3621#endif
3622#ifndef PERL_BITFIELD16
3623# define PERL_BITFIELD16 unsigned
3624#endif
3625#ifndef PERL_BITFIELD32
3626# define PERL_BITFIELD32 unsigned
3627#endif
3628
79072805 3629#include "sv.h"
288b8c02 3630#include "regexp.h"
378cc40b 3631#include "util.h"
8d063cd8 3632#include "form.h"
79072805 3633#include "gv.h"
dd2155a4 3634#include "pad.h"
79072805 3635#include "cv.h"
abdd5c84 3636#include "opnames.h"
79072805 3637#include "op.h"
b3ca2e83 3638#include "hv.h"
79072805
LW
3639#include "cop.h"
3640#include "av.h"
79072805
LW
3641#include "mg.h"
3642#include "scope.h"
4438c4b7 3643#include "warnings.h"
a0ed51b3 3644#include "utf8.h"
8d063cd8 3645
0d7d409d
DM
3646/* these would be in doio.h if there was such a file */
3647#define my_stat() my_stat_flags(SV_GMAGIC)
3648#define my_lstat() my_lstat_flags(SV_GMAGIC)
3649
20f4945e 3650/* defined in sv.c, but also used in [ach]v.c */
20f4945e
MHM
3651#undef _XPV_HEAD
3652#undef _XPVMG_HEAD
3653#undef _XPVCV_COMMON
7fae4e64 3654
199e78b7
DM
3655#include "parser.h"
3656
455ece5e 3657typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
76e3520e 3658
2260ab51
KW
3659#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
3660
3661/* These have to be predeclared, as they are used in proto.h which is #included
3662 * before their definitions in regcomp.h. */
3663
3664struct scan_data_t;
7dcac5f6
KW
3665typedef struct regnode_charclass regnode_charclass;
3666
2260ab51 3667struct regnode_charclass_class;
d1d040e5
KW
3668
3669/* A hopefully less confusing name. The sub-classes are all Posix classes only
3670 * used under /l matching */
3671typedef struct regnode_charclass_class regnode_charclass_posixl;
3672
b8f7bb16 3673typedef struct regnode_ssc regnode_ssc;
09b2b2e6
KW
3674typedef struct RExC_state_t RExC_state_t;
3675struct _reg_trie_data;
76e3520e 3676
2260ab51
KW
3677#endif
3678
5f7fde29
GS
3679struct ptr_tbl_ent {
3680 struct ptr_tbl_ent* next;
53c1dcc0 3681 const void* oldval;
5f7fde29 3682 void* newval;
d18c6117
GS
3683};
3684
5f7fde29
GS
3685struct ptr_tbl {
3686 struct ptr_tbl_ent** tbl_ary;
3687 UV tbl_max;
3688 UV tbl_items;
db93c0c4
NC
3689 struct ptr_tbl_arena *tbl_arena;
3690 struct ptr_tbl_ent *tbl_arena_next;
3691 struct ptr_tbl_ent *tbl_arena_end;
d18c6117
GS
3692};
3693
fe14fcc3
LW
3694#if defined(htonl) && !defined(HAS_HTONL)
3695#define HAS_HTONL
ae986130 3696#endif
fe14fcc3
LW
3697#if defined(htons) && !defined(HAS_HTONS)
3698#define HAS_HTONS
ae986130 3699#endif
fe14fcc3
LW
3700#if defined(ntohl) && !defined(HAS_NTOHL)
3701#define HAS_NTOHL
ae986130 3702#endif
fe14fcc3
LW
3703#if defined(ntohs) && !defined(HAS_NTOHS)
3704#define HAS_NTOHS
ae986130 3705#endif
fe14fcc3 3706#ifndef HAS_HTONL
fe14fcc3
LW
3707#define HAS_HTONS
3708#define HAS_HTONL
3709#define HAS_NTOHS
3710#define HAS_NTOHL
8e2d7c44
NC
3711# if (BYTEORDER & 0xffff) == 0x4321
3712/* Big endian system, so ntohl, ntohs, htonl and htons do not need to
3713 re-order their values. However, to behave identically to the alternative
3714 implementations, they should truncate to the correct size. */
3715# define ntohl(x) ((x)&0xFFFFFFFF)
3716# define htonl(x) ntohl(x)
3717# define ntohs(x) ((x)&0xFFFF)
3718# define htons(x) ntohs(x)
e4b03fed
NC
3719# elif BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
3720
3721/* Note that we can't straight out declare our own htonl and htons because
3722 the Win32 build process forcibly undefines HAS_HTONL etc for its miniperl,
3723 to avoid the overhead of initialising the socket subsystem, but the headers
3724 that *declare* the various functions are still seen. If we declare our own
3725 htonl etc they will clash with the declarations in the Win32 headers. */
3726
3727PERL_STATIC_INLINE U32
3728my_swap32(const U32 x) {
3729 return ((x & 0xFF) << 24) | ((x >> 24) & 0xFF)
3730 | ((x & 0x0000FF00) << 8) | ((x & 0x00FF0000) >> 8);
3731}
3732
3733PERL_STATIC_INLINE U16
3734my_swap16(const U16 x) {
3735 return ((x & 0xFF) << 8) | ((x >> 8) & 0xFF);
3736}
3737
3738# define htonl(x) my_swap32(x)
3739# define ntohl(x) my_swap32(x)
3740# define ntohs(x) my_swap16(x)
3741# define htons(x) my_swap16(x)
8e2d7c44 3742# else
691a44df
NC
3743# error "Unsupported byteorder"
3744/* The C pre-processor doesn't let us return the value of BYTEORDER as part of
3745 the error message. Please check the value of the macro BYTEORDER, as defined
3746 in config.h. The values of BYTEORDER we expect are
3747
3748 big endian little endian
3749 32 bit 0x4321 0x1234
3750 64 bit 0x87654321 0x12345678
3751
3752 If you have a system with a different byte order, please see
3753 pod/perlhack.pod for how to submit a patch to add supporting code.
3754*/
3755# endif
a687059c
LW
3756#endif
3757
988174c1
LW
3758/*
3759 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
3760 * -DWS
3761 */
5ae72479 3762#if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
260c6fee
NC
3763/* Little endian system, so vtohl, vtohs, htovl and htovs do not need to
3764 re-order their values. However, to behave identically to the alternative
3765 implementations, they should truncate to the correct size. */
3766# define vtohl(x) ((x)&0xFFFFFFFF)
3767# define vtohs(x) ((x)&0xFFFF)
3768# define htovl(x) vtohl(x)
3769# define htovs(x) vtohs(x)
545872c5 3770#elif BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
988174c1
LW
3771# define vtohl(x) ((((x)&0xFF)<<24) \
3772 +(((x)>>24)&0xFF) \
3773 +(((x)&0x0000FF00)<<8) \
3774 +(((x)&0x00FF0000)>>8) )
3775# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
3776# define htovl(x) vtohl(x)
3777# define htovs(x) vtohs(x)
545872c5
NC
3778#else
3779# error "Unsupported byteorder"
3780/* If you have need for current perl on PDP-11 or similar, and can help test
3781 that blead keeps working on a mixed-endian system, then see
3782 pod/perlhack.pod for how to submit patches to things working again. */
2a8c3029 3783#endif
988174c1 3784
3bb7c1b4
JH
3785/* *MAX Plus 1. A floating point value.
3786 Hopefully expressed in a way that dodgy floating point can't mess up.
3787 >> 2 rather than 1, so that value is safely less than I32_MAX after 1
3788 is added to it
3789 May find that some broken compiler will want the value cast to I32.
3790 [after the shift, as signed >> may not be as secure as unsigned >>]
3791*/
3792#define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
3793#define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
3794/* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
3795 0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
3796 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
3797*/
3798#define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
ee0007ab 3799
3bb7c1b4
JH
3800#define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
3801#define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
3802#define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
3803
3804/* This may look like unnecessary jumping through hoops, but converting
3805 out of range floating point values to integers *is* undefined behaviour,
3806 and it is starting to bite.
3807*/
3808#ifndef CAST_INLINE
65202027 3809#define I_32(what) (cast_i32((NV)(what)))
3bb7c1b4 3810#define U_32(what) (cast_ulong((NV)(what)))
65202027
DS
3811#define I_V(what) (cast_iv((NV)(what)))
3812#define U_V(what) (cast_uv((NV)(what)))
3bb7c1b4
JH
3813#else
3814#define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
3815 : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
3816 : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
3817#define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
3818 : ((n) < U32_MAX_P1 ? (U32) (n) \
3819 : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
5d9574c1
DM
3820#define I_V(n) (LIKELY((n) < IV_MAX_P1) ? (UNLIKELY((n) < IV_MIN) ? IV_MIN : (IV) (n)) \
3821 : (LIKELY((n) < UV_MAX_P1) ? (IV)(UV) (n) \
3bb7c1b4 3822 : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
5d9574c1
DM
3823#define U_V(n) ((n) < 0.0 ? (UNLIKELY((n) < IV_MIN) ? (UV) IV_MIN : (UV)(IV) (n)) \
3824 : (LIKELY((n) < UV_MAX_P1) ? (UV) (n) \
3bb7c1b4
JH
3825 : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
3826#endif
3827
3828#define U_S(what) ((U16)U_32(what))
3829#define U_I(what) ((unsigned int)U_32(what))
3830#define U_L(what) U_32(what)
ed6116ce 3831
ed140128
AD
3832#ifdef HAS_SIGNBIT
3833# define Perl_signbit signbit
3834#endif
3835
2d4389e4
JH
3836/* These do not care about the fractional part, only about the range. */
3837#define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
24db6c0d 3838#define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2d4389e4 3839
25da4f38
IZ
3840/* Used with UV/IV arguments: */
3841 /* XXXX: need to speed it up */
3842#define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
3843#define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
3844
352d5a3a
LW
3845#ifndef MAXSYSFD
3846# define MAXSYSFD 2
3847#endif
ee0007ab 3848
79072805 3849#ifndef __cplusplus
e37d7e38 3850#if !(defined(WIN32) || defined(UNDER_CE) || defined(SYMBIAN))
20ce7b12
GS
3851Uid_t getuid (void);
3852Uid_t geteuid (void);
3853Gid_t getgid (void);
3854Gid_t getegid (void);
79072805 3855#endif
e1caacb4 3856#endif
8d063cd8 3857
0c30d9ec 3858#ifndef Perl_debug_log
bf49b057
GS
3859# define Perl_debug_log PerlIO_stderr()
3860#endif
3861
3862#ifndef Perl_error_log
3863# define Perl_error_log (PL_stderrgv \
6b78add2 3864 && isGV(PL_stderrgv) \
01bb7c6d 3865 && GvIOp(PL_stderrgv) \
42de951c 3866 && IoOFP(GvIOp(PL_stderrgv)) \
bf49b057
GS
3867 ? IoOFP(GvIOp(PL_stderrgv)) \
3868 : PerlIO_stderr())
0c30d9ec 3869#endif
3967c732 3870
aea4f609
DM
3871
3872#define DEBUG_p_FLAG 0x00000001 /* 1 */
3873#define DEBUG_s_FLAG 0x00000002 /* 2 */
3874#define DEBUG_l_FLAG 0x00000004 /* 4 */
3875#define DEBUG_t_FLAG 0x00000008 /* 8 */
3876#define DEBUG_o_FLAG 0x00000010 /* 16 */
3877#define DEBUG_c_FLAG 0x00000020 /* 32 */
3878#define DEBUG_P_FLAG 0x00000040 /* 64 */
3879#define DEBUG_m_FLAG 0x00000080 /* 128 */
3880#define DEBUG_f_FLAG 0x00000100 /* 256 */
3881#define DEBUG_r_FLAG 0x00000200 /* 512 */
3882#define DEBUG_x_FLAG 0x00000400 /* 1024 */
3883#define DEBUG_u_FLAG 0x00000800 /* 2048 */
88d2d28a
JC
3884/* U is reserved for Unofficial, exploratory hacking */
3885#define DEBUG_U_FLAG 0x00001000 /* 4096 */
fcd573e7 3886/* spare 8192 */
aea4f609
DM
3887#define DEBUG_X_FLAG 0x00004000 /* 16384 */
3888#define DEBUG_D_FLAG 0x00008000 /* 32768 */
56967202 3889#define DEBUG_S_FLAG 0x00010000 /* 65536 */
aea4f609 3890#define DEBUG_T_FLAG 0x00020000 /* 131072 */
04932ac8 3891#define DEBUG_R_FLAG 0x00040000 /* 262144 */
1045810a 3892#define DEBUG_J_FLAG 0x00080000 /* 524288 */
d6721266 3893#define DEBUG_v_FLAG 0x00100000 /*1048576 */
46187eeb 3894#define DEBUG_C_FLAG 0x00200000 /*2097152 */
ecae49c0 3895#define DEBUG_A_FLAG 0x00400000 /*4194304 */
a3c98653 3896#define DEBUG_q_FLAG 0x00800000 /*8388608 */
7896dde7 3897#define DEBUG_M_FLAG 0x01000000 /*16777216*/
cc8773c0 3898#define DEBUG_B_FLAG 0x02000000 /*33554432*/
69014004 3899#define DEBUG_L_FLAG 0x04000000 /*67108864*/
e17bc05a
TC
3900#define DEBUG_i_FLAG 0x08000000 /*134217728*/
3901#define DEBUG_MASK 0x0FFFEFFF /* mask of all the standard flags */
aea4f609
DM
3902
3903#define DEBUG_DB_RECURSE_FLAG 0x40000000
31ada1fb 3904#define DEBUG_TOP_FLAG 0x80000000 /* -D was given --> PL_debug |= FLAG */
aea4f609 3905
36195052
KW
3906# define DEBUG_p_TEST_ UNLIKELY(PL_debug & DEBUG_p_FLAG)
3907# define DEBUG_s_TEST_ UNLIKELY(PL_debug & DEBUG_s_FLAG)
3908# define DEBUG_l_TEST_ UNLIKELY(PL_debug & DEBUG_l_FLAG)
3909# define DEBUG_t_TEST_ UNLIKELY(PL_debug & DEBUG_t_FLAG)
3910# define DEBUG_o_TEST_ UNLIKELY(PL_debug & DEBUG_o_FLAG)
3911# define DEBUG_c_TEST_ UNLIKELY(PL_debug & DEBUG_c_FLAG)
3912# define DEBUG_P_TEST_ UNLIKELY(PL_debug & DEBUG_P_FLAG)
3913# define DEBUG_m_TEST_ UNLIKELY(PL_debug & DEBUG_m_FLAG)
3914# define DEBUG_f_TEST_ UNLIKELY(PL_debug & DEBUG_f_FLAG)
3915# define DEBUG_r_TEST_ UNLIKELY(PL_debug & DEBUG_r_FLAG)
3916# define DEBUG_x_TEST_ UNLIKELY(PL_debug & DEBUG_x_FLAG)
3917# define DEBUG_u_TEST_ UNLIKELY(PL_debug & DEBUG_u_FLAG)
3918# define DEBUG_U_TEST_ UNLIKELY(PL_debug & DEBUG_U_FLAG)
36195052
KW
3919# define DEBUG_X_TEST_ UNLIKELY(PL_debug & DEBUG_X_FLAG)
3920# define DEBUG_D_TEST_ UNLIKELY(PL_debug & DEBUG_D_FLAG)
3921# define DEBUG_S_TEST_ UNLIKELY(PL_debug & DEBUG_S_FLAG)
3922# define DEBUG_T_TEST_ UNLIKELY(PL_debug & DEBUG_T_FLAG)
3923# define DEBUG_R_TEST_ UNLIKELY(PL_debug & DEBUG_R_FLAG)
3924# define DEBUG_J_TEST_ UNLIKELY(PL_debug & DEBUG_J_FLAG)
3925# define DEBUG_v_TEST_ UNLIKELY(PL_debug & DEBUG_v_FLAG)
3926# define DEBUG_C_TEST_ UNLIKELY(PL_debug & DEBUG_C_FLAG)
3927# define DEBUG_A_TEST_ UNLIKELY(PL_debug & DEBUG_A_FLAG)
3928# define DEBUG_q_TEST_ UNLIKELY(PL_debug & DEBUG_q_FLAG)
7896dde7 3929# define DEBUG_M_TEST_ UNLIKELY(PL_debug & DEBUG_M_FLAG)
36195052
KW
3930# define DEBUG_B_TEST_ UNLIKELY(PL_debug & DEBUG_B_FLAG)
3931# define DEBUG_L_TEST_ UNLIKELY(PL_debug & DEBUG_L_FLAG)
3932# define DEBUG_i_TEST_ UNLIKELY(PL_debug & DEBUG_i_FLAG)
dd2155a4 3933# define DEBUG_Xv_TEST_ (DEBUG_X_TEST_ && DEBUG_v_TEST_)
7949c6f5 3934# define DEBUG_Uv_TEST_ (DEBUG_U_TEST_ && DEBUG_v_TEST_)
ad9e76a8 3935# define DEBUG_Pv_TEST_ (DEBUG_P_TEST_ && DEBUG_v_TEST_)
bbc98134 3936# define DEBUG_Lv_TEST_ (DEBUG_L_TEST_ && DEBUG_v_TEST_)
bd16a5f0 3937
3967c732 3938#ifdef DEBUGGING
aea4f609 3939
bd16a5f0
IZ
3940# define DEBUG_p_TEST DEBUG_p_TEST_
3941# define DEBUG_s_TEST DEBUG_s_TEST_
3942# define DEBUG_l_TEST DEBUG_l_TEST_
3943# define DEBUG_t_TEST DEBUG_t_TEST_
3944# define DEBUG_o_TEST DEBUG_o_TEST_
3945# define DEBUG_c_TEST DEBUG_c_TEST_
3946# define DEBUG_P_TEST DEBUG_P_TEST_
3947# define DEBUG_m_TEST DEBUG_m_TEST_
3948# define DEBUG_f_TEST DEBUG_f_TEST_
3949# define DEBUG_r_TEST DEBUG_r_TEST_
3950# define DEBUG_x_TEST DEBUG_x_TEST_
3951# define DEBUG_u_TEST DEBUG_u_TEST_
88d2d28a 3952# define DEBUG_U_TEST DEBUG_U_TEST_
bd16a5f0
IZ
3953# define DEBUG_X_TEST DEBUG_X_TEST_
3954# define DEBUG_D_TEST DEBUG_D_TEST_
56967202 3955# define DEBUG_S_TEST DEBUG_S_TEST_
bd16a5f0
IZ
3956# define DEBUG_T_TEST DEBUG_T_TEST_
3957# define DEBUG_R_TEST DEBUG_R_TEST_
1045810a 3958# define DEBUG_J_TEST DEBUG_J_TEST_
d6721266 3959# define DEBUG_v_TEST DEBUG_v_TEST_
46187eeb 3960# define DEBUG_C_TEST DEBUG_C_TEST_
ecae49c0 3961# define DEBUG_A_TEST DEBUG_A_TEST_
a3c98653 3962# define DEBUG_q_TEST DEBUG_q_TEST_
7896dde7 3963# define DEBUG_M_TEST DEBUG_M_TEST_
cc8773c0 3964# define DEBUG_B_TEST DEBUG_B_TEST_
69014004 3965# define DEBUG_L_TEST DEBUG_L_TEST_
e17bc05a 3966# define DEBUG_i_TEST DEBUG_i_TEST_
7949c6f5
JC
3967# define DEBUG_Xv_TEST DEBUG_Xv_TEST_
3968# define DEBUG_Uv_TEST DEBUG_Uv_TEST_
ad9e76a8 3969# define DEBUG_Pv_TEST DEBUG_Pv_TEST_
bbc98134 3970# define DEBUG_Lv_TEST DEBUG_Lv_TEST_
aea4f609 3971
488b0c7a 3972# define PERL_DEB(a) a
11f9ab1a 3973# define PERL_DEB2(a,b) a
488b0c7a 3974# define PERL_DEBUG(a) if (PL_debug) a
aea4f609
DM
3975# define DEBUG_p(a) if (DEBUG_p_TEST) a
3976# define DEBUG_s(a) if (DEBUG_s_TEST) a
3977# define DEBUG_l(a) if (DEBUG_l_TEST) a
3978# define DEBUG_t(a) if (DEBUG_t_TEST) a
3979# define DEBUG_o(a) if (DEBUG_o_TEST) a
3980# define DEBUG_c(a) if (DEBUG_c_TEST) a
3981# define DEBUG_P(a) if (DEBUG_P_TEST) a
3982
969058bb
VK
3983 /* Temporarily turn off memory debugging in case the a
3984 * does memory allocation, either directly or indirectly. */
acfe0abc 3985# define DEBUG_m(a) \
f60d22a6
KW
3986 STMT_START { \
3987 if (PERL_GET_INTERP) { \
3988 dTHX; \
3989 if (DEBUG_m_TEST) { \
3990 PL_debug &= ~DEBUG_m_FLAG; \
3991 a; \
3992 PL_debug |= DEBUG_m_FLAG; \
3993 } \
3994 } \
0b250b9e 3995 } STMT_END
aea4f609 3996
f60d22a6
KW
3997# define DEBUG__(t, a) \
3998 STMT_START { \
3999 if (t) STMT_START {a;} STMT_END; \
4000 } STMT_END
5f80b19c
AMS
4001
4002# define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
f60d22a6 4003
f9f4320a 4004#ifndef PERL_EXT_RE_BUILD
5f80b19c 4005# define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
f9f4320a
YO
4006#else
4007# define DEBUG_r(a) STMT_START {a;} STMT_END
4008#endif /* PERL_EXT_RE_BUILD */
f60d22a6 4009
5f80b19c
AMS
4010# define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
4011# define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
88d2d28a 4012# define DEBUG_U(a) DEBUG__(DEBUG_U_TEST, a)
5f80b19c
AMS
4013# define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
4014# define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
7949c6f5
JC
4015# define DEBUG_Xv(a) DEBUG__(DEBUG_Xv_TEST, a)
4016# define DEBUG_Uv(a) DEBUG__(DEBUG_Uv_TEST, a)
ad9e76a8 4017# define DEBUG_Pv(a) DEBUG__(DEBUG_Pv_TEST, a)
bbc98134 4018# define DEBUG_Lv(a) DEBUG__(DEBUG_Lv_TEST, a)
aea4f609 4019
56967202 4020# define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
5f80b19c
AMS
4021# define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
4022# define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
d6721266 4023# define DEBUG_v(a) DEBUG__(DEBUG_v_TEST, a)
46187eeb 4024# define DEBUG_C(a) DEBUG__(DEBUG_C_TEST, a)
ecae49c0
NC
4025# define DEBUG_A(a) DEBUG__(DEBUG_A_TEST, a)
4026# define DEBUG_q(a) DEBUG__(DEBUG_q_TEST, a)
7896dde7 4027# define DEBUG_M(a) DEBUG__(DEBUG_M_TEST, a)
cc8773c0 4028# define DEBUG_B(a) DEBUG__(DEBUG_B_TEST, a)
69014004 4029# define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
e17bc05a 4030# define DEBUG_i(a) DEBUG__(DEBUG_i_TEST, a)
aea4f609
DM
4031
4032#else /* DEBUGGING */
4033
4034# define DEBUG_p_TEST (0)
4035# define DEBUG_s_TEST (0)
4036# define DEBUG_l_TEST (0)
4037# define DEBUG_t_TEST (0)
4038# define DEBUG_o_TEST (0)
4039# define DEBUG_c_TEST (0)
4040# define DEBUG_P_TEST (0)
4041# define DEBUG_m_TEST (0)
4042# define DEBUG_f_TEST (0)
4043# define DEBUG_r_TEST (0)
4044# define DEBUG_x_TEST (0)
4045# define DEBUG_u_TEST (0)
88d2d28a 4046# define DEBUG_U_TEST (0)
aea4f609
DM
4047# define DEBUG_X_TEST (0)
4048# define DEBUG_D_TEST (0)
56967202 4049# define DEBUG_S_TEST (0)
aea4f609 4050# define DEBUG_T_TEST (0)
04932ac8 4051# define DEBUG_R_TEST (0)
1045810a 4052# define DEBUG_J_TEST (0)
d6721266 4053# define DEBUG_v_TEST (0)
46187eeb 4054# define DEBUG_C_TEST (0)
ecae49c0
NC
4055# define DEBUG_A_TEST (0)
4056# define DEBUG_q_TEST (0)
7896dde7 4057# define DEBUG_M_TEST (0)
cc8773c0 4058# define DEBUG_B_TEST (0)
69014004 4059# define DEBUG_L_TEST (0)
e17bc05a 4060# define DEBUG_i_TEST (0)
7949c6f5
JC
4061# define DEBUG_Xv_TEST (0)
4062# define DEBUG_Uv_TEST (0)
ad9e76a8 4063# define DEBUG_Pv_TEST (0)
bbc98134 4064# define DEBUG_Lv_TEST (0)
aea4f609 4065
488b0c7a 4066# define PERL_DEB(a)
11f9ab1a 4067# define PERL_DEB2(a,b) b
488b0c7a 4068# define PERL_DEBUG(a)
aea4f609
DM
4069# define DEBUG_p(a)
4070# define DEBUG_s(a)
4071# define DEBUG_l(a)
4072# define DEBUG_t(a)
4073# define DEBUG_o(a)
4074# define DEBUG_c(a)
4075# define DEBUG_P(a)
4076# define DEBUG_m(a)
4077# define DEBUG_f(a)
4078# define DEBUG_r(a)
4079# define DEBUG_x(a)
4080# define DEBUG_u(a)
88d2d28a 4081# define DEBUG_U(a)
aea4f609
DM
4082# define DEBUG_X(a)
4083# define DEBUG_D(a)
56967202 4084# define DEBUG_S(a)
aea4f609 4085# define DEBUG_T(a)
04932ac8 4086# define DEBUG_R(a)
d6721266 4087# define DEBUG_v(a)
46187eeb 4088# define DEBUG_C(a)
ecae49c0
NC
4089# define DEBUG_A(a)
4090# define DEBUG_q(a)
7896dde7 4091# define DEBUG_M(a)
cc8773c0 4092# define DEBUG_B(a)
69014004 4093# define DEBUG_L(a)
e17bc05a 4094# define DEBUG_i(a)
7949c6f5
JC
4095# define DEBUG_Xv(a)
4096# define DEBUG_Uv(a)
ad9e76a8 4097# define DEBUG_Pv(a)
bbc98134 4098# define DEBUG_Lv(a)
aea4f609
DM
4099#endif /* DEBUGGING */
4100
4101
b4ab917c 4102#define DEBUG_SCOPE(where) \
d9f81b50 4103 DEBUG_l( \
1c98cc53
DM
4104 Perl_deb(aTHX_ "%s scope %ld (savestack=%ld) at %s:%d\n", \
4105 where, (long)PL_scopestack_ix, (long)PL_savestack_ix, \
d9f81b50 4106 __FILE__, __LINE__));
b4ab917c 4107
de84dc04 4108/* Keep the old croak based assert for those who want it, and as a fallback if
27ceb597 4109 the platform is so heretically non-ANSI that it can't assert. */
14befaf4 4110
11f9ab1a 4111#define Perl_assert(what) PERL_DEB2( \
2b057284 4112 ((what) ? ((void) 0) : \
67eb4d30 4113 (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
60b9f5a7 4114 "\", line %d", STRINGIFY(what), __LINE__), \
11f9ab1a 4115 (void) 0)), ((void)0))
de84dc04 4116
6ff2ec7d 4117/* assert() gets defined if DEBUGGING.
81d52ecd 4118 * If no DEBUGGING, the <assert.h> has not been included. */
de84dc04
NC
4119#ifndef assert
4120# define assert(what) Perl_assert(what)
a446a88f 4121#endif
c7724415
FC
4122#ifdef DEBUGGING
4123# define assert_(what) assert(what),
4124#else
4125# define assert_(what)
4126#endif
8d063cd8 4127
450a55e4 4128struct ufuncs {
24f81a43
DM
4129 I32 (*uf_val)(pTHX_ IV, SV*);
4130 I32 (*uf_set)(pTHX_ IV, SV*);
a0d0e21e 4131 IV uf_index;
450a55e4
LW
4132};
4133
14befaf4 4134/* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
24f81a43
DM
4135 * XS code wanting to be backward compatible can do something
4136 * like the following:
c745e42c 4137
24f81a43 4138#ifndef PERL_MG_UFUNC
24f81a43
DM
4139#define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
4140#endif
4141
4142static PERL_MG_UFUNC(foo_get, index, val)
4143{
4144 sv_setsv(val, ...);
4145 return TRUE;
4146}
4147
4148-- Doug MacEachern
4149
4150*/
4151
fc9c74e6 4152#ifndef PERL_MG_UFUNC
24f81a43 4153#define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
fc9c74e6 4154#endif
24f81a43 4155
7e034659
AC
4156#include <math.h>
4157#ifdef __VMS
a80f53e7 4158 /* isfinite and others are here rather than in math.h as C99 stipulates */
7e034659 4159# include <fp.h>
79072805
LW
4160#endif
4161
a0d0e21e 4162#ifndef __cplusplus
f05550c0 4163# if !defined(WIN32) && !defined(VMS)
10bc17b6 4164#ifndef crypt
20ce7b12 4165char *crypt (const char*, const char*);
10bc17b6 4166#endif
f05550c0 4167# endif /* !WIN32 */
e37d7e38
SH
4168# ifndef WIN32
4169# ifndef getlogin
20ce7b12 4170char *getlogin (void);
e37d7e38
SH
4171# endif
4172# endif /* !WIN32 */
26618a56 4173#endif /* !__cplusplus */
79072805 4174
7a7fd8e0
JM
4175/* Fixme on VMS. This needs to be a run-time, not build time options */
4176/* Also rename() is affected by this */
16d20bd9 4177#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 4178#define UNLINK unlnk
083639a9 4179I32 unlnk (pTHX_ const char*);
8d063cd8 4180#else
80252599 4181#define UNLINK PerlLIO_unlink
8d063cd8 4182#endif
a687059c 4183
fa0a29af
JH
4184/* some versions of glibc are missing the setresuid() proto */
4185#if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
640374d0
JH
4186int setresuid(uid_t ruid, uid_t euid, uid_t suid);
4187#endif
fa0a29af
JH
4188/* some versions of glibc are missing the setresgid() proto */
4189#if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
640374d0
JH
4190int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
4191#endif
4192
fe14fcc3 4193#ifndef HAS_SETREUID
85e6fe83
LW
4194# ifdef HAS_SETRESUID
4195# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
4196# define HAS_SETREUID
4197# endif
a687059c 4198#endif
fe14fcc3 4199#ifndef HAS_SETREGID
85e6fe83
LW
4200# ifdef HAS_SETRESGID
4201# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
4202# define HAS_SETREGID
4203# endif
a687059c 4204#endif
ee0007ab 4205
d543acb6 4206/* Sighandler_t defined in iperlsys.h */
ff68c719 4207
4208#ifdef HAS_SIGACTION
4209typedef struct sigaction Sigsave_t;
4210#else
4211typedef Sighandler_t Sigsave_t;
4212#endif
4213
ee0007ab
LW
4214#define SCAN_DEF 0
4215#define SCAN_TR 1
4216#define SCAN_REPL 2
79072805
LW
4217
4218#ifdef DEBUGGING
4633a7c4 4219# ifndef register
a0d0e21e
LW
4220# define register
4221# endif
cea2e8a9 4222# define RUNOPS_DEFAULT Perl_runops_debug
79072805 4223#else
cea2e8a9 4224# define RUNOPS_DEFAULT Perl_runops_standard
79072805
LW
4225#endif
4226
97cb92d6 4227#if defined(USE_PERLIO)
0934c9d9 4228EXTERN_C void PerlIO_teardown(void);
2f44961c 4229# ifdef USE_ITHREADS
6cb8cb21
RGS
4230# define PERLIO_INIT MUTEX_INIT(&PL_perlio_mutex)
4231# define PERLIO_TERM \
4232 STMT_START { \
d0820ef1 4233 PerlIO_teardown(); \
6cb8cb21
RGS
4234 MUTEX_DESTROY(&PL_perlio_mutex);\
4235 } STMT_END
4236# else
4237# define PERLIO_INIT
d0820ef1 4238# define PERLIO_TERM PerlIO_teardown()
6cb8cb21 4239# endif
6b29934b
NC
4240#else
4241# define PERLIO_INIT
4242# define PERLIO_TERM
6cb8cb21
RGS
4243#endif
4244
18f739ee 4245#ifdef MYMALLOC
772fe5b3 4246# ifdef MUTEX_INIT_CALLS_MALLOC
3541dd58
HM
4247# define MALLOC_INIT \
4248 STMT_START { \
4249 PL_malloc_mutex = NULL; \
4250 MUTEX_INIT(&PL_malloc_mutex); \
4251 } STMT_END
4252# define MALLOC_TERM \
4253 STMT_START { \
4254 perl_mutex tmp = PL_malloc_mutex; \
4255 PL_malloc_mutex = NULL; \
4256 MUTEX_DESTROY(&tmp); \
4257 } STMT_END
4258# else
4259# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
4260# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
4261# endif
18f739ee
IZ
4262#else
4263# define MALLOC_INIT
4264# define MALLOC_TERM
4265#endif
4266
cd1541b2 4267#if defined(PERL_IMPLICIT_CONTEXT)
7cb608b5
NC
4268
4269struct perl_memory_debug_header;
cd1541b2
NC
4270struct perl_memory_debug_header {
4271 tTHX interpreter;
b001a0d1 4272# if defined(PERL_POISON) || defined(PERL_DEBUG_READONLY_COW)
cd1541b2 4273 MEM_SIZE size;
cd1541b2 4274# endif
7cb608b5
NC
4275 struct perl_memory_debug_header *prev;
4276 struct perl_memory_debug_header *next;
b001a0d1
FC
4277# ifdef PERL_DEBUG_READONLY_COW
4278 bool readonly;
4279# endif
4280};
4281
4282#elif defined(PERL_DEBUG_READONLY_COW)
4283
4284struct perl_memory_debug_header;
4285struct perl_memory_debug_header {
4286 MEM_SIZE size;
cd1541b2
NC
4287};
4288
b001a0d1
FC
4289#endif
4290
60175f94 4291#if defined (PERL_TRACK_MEMPOOL) || defined (PERL_DEBUG_READONLY_COW)
b001a0d1 4292
a78adc84
DM
4293# define PERL_MEMORY_DEBUG_HEADER_SIZE \
4294 (sizeof(struct perl_memory_debug_header) + \
cd1541b2
NC
4295 (MEM_ALIGNBYTES - sizeof(struct perl_memory_debug_header) \
4296 %MEM_ALIGNBYTES) % MEM_ALIGNBYTES)
4297
d8fca402 4298#else
a78adc84 4299# define PERL_MEMORY_DEBUG_HEADER_SIZE 0
cd1541b2
NC
4300#endif
4301
7cb608b5 4302#ifdef PERL_TRACK_MEMPOOL
b001a0d1 4303# ifdef PERL_DEBUG_READONLY_COW
7cb608b5
NC
4304# define INIT_TRACK_MEMPOOL(header, interp) \
4305 STMT_START { \
4306 (header).interpreter = (interp); \
4307 (header).prev = (header).next = &(header); \
b001a0d1 4308 (header).readonly = 0; \
7cb608b5 4309 } STMT_END
b001a0d1
FC
4310# else
4311# define INIT_TRACK_MEMPOOL(header, interp) \
4312 STMT_START { \
4313 (header).interpreter = (interp); \
4314 (header).prev = (header).next = &(header); \
4315 } STMT_END
4316# endif
4317# else
7cb608b5
NC
4318# define INIT_TRACK_MEMPOOL(header, interp)
4319#endif
4320
1cd66f7c
DD
4321#ifdef I_MALLOCMALLOC
4322/* Needed for malloc_size(), malloc_good_size() on some systems */
4323# include <malloc/malloc.h>
4324#endif
4325
ca7c1a29
NC
4326#ifdef MYMALLOC
4327# define Perl_safesysmalloc_size(where) Perl_malloced_size(where)
cfe52898 4328#else
b001a0d1 4329# if defined(HAS_MALLOC_SIZE) && !defined(PERL_DEBUG_READONLY_COW)
e82be400 4330# ifdef PERL_TRACK_MEMPOOL
cfe52898 4331# define Perl_safesysmalloc_size(where) \
a78adc84 4332 (malloc_size(((char *)(where)) - PERL_MEMORY_DEBUG_HEADER_SIZE) - PERL_MEMORY_DEBUG_HEADER_SIZE)
e82be400
NC
4333# else
4334# define Perl_safesysmalloc_size(where) malloc_size(where)
4335# endif
4336# endif
4337# ifdef HAS_MALLOC_GOOD_SIZE
4338# ifdef PERL_TRACK_MEMPOOL
d8fca402 4339# define Perl_malloc_good_size(how_much) \
a78adc84 4340 (malloc_good_size((how_much) + PERL_MEMORY_DEBUG_HEADER_SIZE) - PERL_MEMORY_DEBUG_HEADER_SIZE)
e82be400
NC
4341# else
4342# define Perl_malloc_good_size(how_much) malloc_good_size(how_much)
4343# endif
4344# else
d8fca402
NC
4345/* Having this as the identity operation makes some code simpler. */
4346# define Perl_malloc_good_size(how_much) (how_much)
e82be400 4347# endif
ca7c1a29 4348#endif
b6d9d515 4349
16c91539
BM
4350typedef int (*runops_proc_t)(pTHX);
4351typedef void (*share_proc_t) (pTHX_ SV *sv);
4352typedef int (*thrhook_proc_t) (pTHX);
4353typedef OP* (*PPADDR_t[]) (pTHX);
4354typedef bool (*destroyable_proc_t) (pTHX_ SV *sv);
4355typedef void (*despatch_signals_proc_t) (pTHX);
22c35a8c 4356
f05550c0
BF
4357#if defined(__DYNAMIC__) && defined(PERL_DARWIN) && defined(PERL_CORE)
4358# include <crt_externs.h> /* for the env array */
4359# define environ (*_NSGetEnviron())
a54aca4b 4360#elif defined(USE_ENVIRON_ARRAY) && !defined(environ)
8f1f23e8 4361 /* VMS and some other platforms don't use the environ array */
a54aca4b 4362EXTERN_C char **environ; /* environment variables supplied via exec */
8f1f23e8 4363#endif
79072805 4364
457c5385
NC
4365#define PERL_PATCHLEVEL_H_IMPLICIT
4366#include "patchlevel.h"
4367#undef PERL_PATCHLEVEL_H_IMPLICIT
4368
4369#define PERL_VERSION_STRING STRINGIFY(PERL_REVISION) "." \
4370 STRINGIFY(PERL_VERSION) "." \
4371 STRINGIFY(PERL_SUBVERSION)
4372
4373#define PERL_API_VERSION_STRING STRINGIFY(PERL_API_REVISION) "." \
4374 STRINGIFY(PERL_API_VERSION) "." \
4375 STRINGIFY(PERL_API_SUBVERSION)
4376
73c4f7a1
GS
4377START_EXTERN_C
4378
79072805 4379/* handy constants */
22c35a8c 4380EXTCONST char PL_warn_uninit[]
29489e7c 4381 INIT("Use of uninitialized value%s%s%s");
fef7e7a0 4382EXTCONST char PL_warn_uninit_sv[]
61608bb7 4383 INIT("Use of uninitialized value%" SVf "%s%s");
22c35a8c 4384EXTCONST char PL_warn_nosemi[]
463ee0b2 4385 INIT("Semicolon seems to be missing");
22c35a8c 4386EXTCONST char PL_warn_reserved[]
463ee0b2 4387 INIT("Unquoted string \"%s\" may clash with future reserved word");
22c35a8c 4388EXTCONST char PL_warn_nl[]
93a17b20 4389 INIT("Unsuccessful %s on filename containing newline");
22c35a8c 4390EXTCONST char PL_no_wrongref[]
a0d0e21e 4391 INIT("Can't use %s ref as %s ref");
fedf30e1 4392/* The core no longer needs this here. If you require the string constant,
def89bff 4393 please inline a copy into your own code. */
973a7615
NC
4394EXTCONST char PL_no_symref[] __attribute__deprecated__
4395 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
fedf30e1
DM
4396EXTCONST char PL_no_symref_sv[]
4397 INIT("Can't use string (\"%" SVf32 "\"%s) as %s ref while \"strict refs\" in use");
4398
22c35a8c 4399EXTCONST char PL_no_usym[]
8990e307 4400 INIT("Can't use an undefined value as %s reference");
22c35a8c 4401EXTCONST char PL_no_aelem[]
93a17b20 4402 INIT("Modification of non-creatable array value attempted, subscript %d");
ce5030a2 4403EXTCONST char PL_no_helem_sv[]
61608bb7 4404 INIT("Modification of non-creatable hash value attempted, subscript \"%" SVf "\"");
22c35a8c 4405EXTCONST char PL_no_modify[]
93a17b20 4406 INIT("Modification of a read-only value attempted");
4cbe3a7d 4407EXTCONST char PL_no_mem[sizeof("Out of memory!\n")]
93a17b20 4408 INIT("Out of memory!\n");
22c35a8c 4409EXTCONST char PL_no_security[]
463ee0b2 4410 INIT("Insecure dependency in %s%s");
22c35a8c 4411EXTCONST char PL_no_sock_func[]
93a17b20 4412 INIT("Unsupported socket function \"%s\" called");
22c35a8c 4413EXTCONST char PL_no_dir_func[]
93a17b20 4414 INIT("Unsupported directory function \"%s\" called");
22c35a8c 4415EXTCONST char PL_no_func[]
93a17b20 4416 INIT("The %s function is unimplemented");
22c35a8c 4417EXTCONST char PL_no_myglob[]
a21eb52b 4418 INIT("\"%s\" %se %s can't be in a package");
82d03984
RGS
4419EXTCONST char PL_no_localize_ref[]
4420 INIT("Can't localize through a reference");
27d5b266
JH
4421EXTCONST char PL_memory_wrap[]
4422 INIT("panic: memory wrap");
93a17b20 4423
58f645e2
NC
4424EXTCONST char PL_Yes[]
4425 INIT("1");
4426EXTCONST char PL_No[]
4427 INIT("");
5a6c2837
DM
4428EXTCONST char PL_Zero[]
4429 INIT("0");
58f645e2
NC
4430EXTCONST char PL_hexdigit[]
4431 INIT("0123456789abcdef0123456789ABCDEF");
4432
0447859b
NC
4433/* This is constant on most architectures, a global on OS/2 */
4434#ifndef OS2
4435EXTCONST char PL_sh_path[]
4436 INIT(SH_PATH); /* full path of shell */
4437#endif
4438
618b9757
NC
4439#ifdef CSH
4440EXTCONST char PL_cshname[]
4441 INIT(CSH);
4442# define PL_cshlen (sizeof(CSH "") - 1)
4443#endif
4444
457c5385
NC
4445/* These are baked at compile time into any shared perl library.
4446 In future releases this will allow us in main() to sanity test the
4447 library we're linking against. */
4448
4449EXTCONST U8 PL_revision
4450 INIT(PERL_REVISION);
4451EXTCONST U8 PL_version
4452 INIT(PERL_VERSION);
4453EXTCONST U8 PL_subversion
4454 INIT(PERL_SUBVERSION);
4455
7575fa06 4456EXTCONST char PL_uuemap[65]
80252599
GS
4457 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
4458
7bfe3bfd
DM
4459/* a special string address whose value is "isa", but which perl knows
4460 * to treat as if it were really "DOES" when printing the method name in
4461 * the "Can't call method '%s'" error message */
4462EXTCONST char PL_isa_DOES[]
4463 INIT("isa");
4464
79072805 4465#ifdef DOINIT
9444d213 4466EXTCONST char PL_uudmap[256] =
dde5ec2c
NC
4467# ifdef PERL_MICRO
4468# include "uuudmap.h"
4469# else
4470# include "uudmap.h"
4471# endif
9444d213 4472;
efa50c51 4473EXTCONST char PL_bitcount[256] =
dde5ec2c
NC
4474# ifdef PERL_MICRO
4475# include "ubitcount.h"
4476#else
4477# include "bitcount.h"
4478# endif
efa50c51 4479;
27da23d5
JH
4480EXTCONST char* const PL_sig_name[] = { SIG_NAME };
4481EXTCONST int PL_sig_num[] = { SIG_NUM };
79072805 4482#else
9444d213 4483EXTCONST char PL_uudmap[256];
efa50c51 4484EXTCONST char PL_bitcount[256];
27da23d5
JH
4485EXTCONST char* const PL_sig_name[];
4486EXTCONST int PL_sig_num[];
79072805
LW
4487#endif
4488
6d8e7a01
KW
4489/* fast conversion and case folding tables. The folding tables complement the
4490 * fold, so that 'a' maps to 'A' and 'A' maps to 'a', ignoring more complicated
4491 * folds such as outside the range or to multiple characters. */
bbce6d69 4492
79072805 4493#ifdef DOINIT
d02f4dad
KW
4494#ifndef EBCDIC
4495
4496/* The EBCDIC fold table depends on the code page, and hence is found in
4497 * utfebcdic.h */
4498
22c35a8c 4499EXTCONST unsigned char PL_fold[] = {
79072805
LW
4500 0, 1, 2, 3, 4, 5, 6, 7,
4501 8, 9, 10, 11, 12, 13, 14, 15,
4502 16, 17, 18, 19, 20, 21, 22, 23,
4503 24, 25, 26, 27, 28, 29, 30, 31,
4504 32, 33, 34, 35, 36, 37, 38, 39,
4505 40, 41, 42, 43, 44, 45, 46, 47,
4506 48, 49, 50, 51, 52, 53, 54, 55,
4507 56, 57, 58, 59, 60, 61, 62, 63,
4508 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4509 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4510 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4511 'x', 'y', 'z', 91, 92, 93, 94, 95,
4512 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4513 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4514 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4515 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4516 128, 129, 130, 131, 132, 133, 134, 135,
4517 136, 137, 138, 139, 140, 141, 142, 143,
4518 144, 145, 146, 147, 148, 149, 150, 151,
4519 152, 153, 154, 155, 156, 157, 158, 159,
4520 160, 161, 162, 163, 164, 165, 166, 167,
4521 168, 169, 170, 171, 172, 173, 174, 175,
4522 176, 177, 178, 179, 180, 181, 182, 183,
4523 184, 185, 186, 187, 188, 189, 190, 191,
4524 192, 193, 194, 195, 196, 197, 198, 199,
4525 200, 201, 202, 203, 204, 205, 206, 207,
4526 208, 209, 210, 211, 212, 213, 214, 215,
4527 216, 217, 218, 219, 220, 221, 222, 223,
4528 224, 225, 226, 227, 228, 229, 230, 231,
4529 232, 233, 234, 235, 236, 237, 238, 239,
4530 240, 241, 242, 243, 244, 245, 246, 247,
4531 248, 249, 250, 251, 252, 253, 254, 255
4532};
3871f40b
KW
4533EXTCONST unsigned char PL_fold_latin1[] = {
4534 /* Full latin1 complement folding, except for three problematic code points:
4535 * Micro sign (181 = 0xB5) and y with diearesis (255 = 0xFF) have their
4536 * fold complements outside the Latin1 range, so can't match something
4537 * that isn't in utf8.
4538 * German lower case sharp s (223 = 0xDF) folds to two characters, 'ss',
4539 * not one, so can't be represented in this table.
4540 *
4541 * All have to be specially handled */
4542 0, 1, 2, 3, 4, 5, 6, 7,
4543 8, 9, 10, 11, 12, 13, 14, 15,
4544 16, 17, 18, 19, 20, 21, 22, 23,
4545 24, 25, 26, 27, 28, 29, 30, 31,
4546 32, 33, 34, 35, 36, 37, 38, 39,
4547 40, 41, 42, 43, 44, 45, 46, 47,
4548 48, 49, 50, 51, 52, 53, 54, 55,
4549 56, 57, 58, 59, 60, 61, 62, 63,
4550 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4551 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4552 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4553 'x', 'y', 'z', 91, 92, 93, 94, 95,
4554 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4555 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4556 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4557 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4558 128, 129, 130, 131, 132, 133, 134, 135,
4559 136, 137, 138, 139, 140, 141, 142, 143,
4560 144, 145, 146, 147, 148, 149, 150, 151,
4561 152, 153, 154, 155, 156, 157, 158, 159,
4562 160, 161, 162, 163, 164, 165, 166, 167,
4563 168, 169, 170, 171, 172, 173, 174, 175,
4564 176, 177, 178, 179, 180, 181 /*micro */, 182, 183,
4565 184, 185, 186, 187, 188, 189, 190, 191,
4566 192+32, 193+32, 194+32, 195+32, 196+32, 197+32, 198+32, 199+32,
4567 200+32, 201+32, 202+32, 203+32, 204+32, 205+32, 206+32, 207+32,
4568 208+32, 209+32, 210+32, 211+32, 212+32, 213+32, 214+32, 215,
4569 216+32, 217+32, 218+32, 219+32, 220+32, 221+32, 222+32, 223 /* ss */,
4570 224-32, 225-32, 226-32, 227-32, 228-32, 229-32, 230-32, 231-32,
4571 232-32, 233-32, 234-32, 235-32, 236-32, 237-32, 238-32, 239-32,
4572 240-32, 241-32, 242-32, 243-32, 244-32, 245-32, 246-32, 247,
4573 248-32, 249-32, 250-32, 251-32, 252-32, 253-32, 254-32,
4574 255 /* y with diaeresis */
4575};
00f254e2
KW
4576
4577/* If these tables are accessed through ebcdic, the access will be converted to
4578 * latin1 first */
4579EXTCONST unsigned char PL_latin1_lc[] = { /* lowercasing */
4580 0, 1, 2, 3, 4, 5, 6, 7,
4581 8, 9, 10, 11, 12, 13, 14, 15,
4582 16, 17, 18, 19, 20, 21, 22, 23,
4583 24, 25, 26, 27, 28, 29, 30, 31,
4584 32, 33, 34, 35, 36, 37, 38, 39,
4585 40, 41, 42, 43, 44, 45, 46, 47,
4586 48, 49, 50, 51, 52, 53, 54, 55,
4587 56, 57, 58, 59, 60, 61, 62, 63,
4588 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4589 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4590 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4591 'x', 'y', 'z', 91, 92, 93, 94, 95,
4592 96, 97, 98, 99, 100, 101, 102, 103,
4593 104, 105, 106, 107, 108, 109, 110, 111,
4594 112, 113, 114, 115, 116, 117, 118, 119,
4595 120, 121, 122, 123, 124, 125, 126, 127,
4596 128, 129, 130, 131, 132, 133, 134, 135,
4597 136, 137, 138, 139, 140, 141, 142, 143,
4598 144, 145, 146, 147, 148, 149, 150, 151,
4599 152, 153, 154, 155, 156, 157, 158, 159,
4600 160, 161, 162, 163, 164, 165, 166, 167,
4601 168, 169, 170, 171, 172, 173, 174, 175,
4602 176, 177, 178, 179, 180, 181, 182, 183,
4603 184, 185, 186, 187, 188, 189, 190, 191,
4604 192+32, 193+32, 194+32, 195+32, 196+32, 197+32, 198+32, 199+32,
4605 200+32, 201+32, 202+32, 203+32, 204+32, 205+32, 206+32, 207+32,
4606 208+32, 209+32, 210+32, 211+32, 212+32, 213+32, 214+32, 215,
4607 216+32, 217+32, 218+32, 219+32, 220+32, 221+32, 222+32, 223,
4608 224, 225, 226, 227, 228, 229, 230, 231,
4609 232, 233, 234, 235, 236, 237, 238, 239,
4610 240, 241, 242, 243, 244, 245, 246, 247,
4611 248, 249, 250, 251, 252, 253, 254, 255
4612};
4613
4614/* upper and title case of latin1 characters, modified so that the three tricky
4615 * ones are mapped to 255 (which is one of the three) */
4616EXTCONST unsigned char PL_mod_latin1_uc[] = {
4617 0, 1, 2, 3, 4, 5, 6, 7,
4618 8, 9, 10, 11, 12, 13, 14, 15,
4619 16, 17, 18, 19, 20, 21, 22, 23,
4620 24, 25, 26, 27, 28, 29, 30, 31,
4621 32, 33, 34, 35, 36, 37, 38, 39,
4622 40, 41, 42, 43, 44, 45, 46, 47,
4623 48, 49, 50, 51, 52, 53, 54, 55,
4624 56, 57, 58, 59, 60, 61, 62, 63,
4625 64, 65, 66, 67, 68, 69, 70, 71,
4626 72, 73, 74, 75, 76, 77, 78, 79,
4627 80, 81, 82, 83, 84, 85, 86, 87,
4628 88, 89, 90, 91, 92, 93, 94, 95,
4629 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4630 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4631 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4632 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4633 128, 129, 130, 131, 132, 133, 134, 135,
4634 136, 137, 138, 139, 140, 141, 142, 143,
4635 144, 145, 146, 147, 148, 149, 150, 151,
4636 152, 153, 154, 155, 156, 157, 158, 159,
4637 160, 161, 162, 163, 164, 165, 166, 167,
4638 168, 169, 170, 171, 172, 173, 174, 175,
4639 176, 177, 178, 179, 180, 255 /*micro*/, 182, 183,
4640 184, 185, 186, 187, 188, 189, 190, 191,
4641 192, 193, 194, 195, 196, 197, 198, 199,
4642 200, 201, 202, 203, 204, 205, 206, 207,
4643 208, 209, 210, 211, 212, 213, 214, 215,
79e064b9
KW
4644 216, 217, 218, 219, 220, 221, 222,
4645#if UNICODE_MAJOR_VERSION > 2 \
4646 || (UNICODE_MAJOR_VERSION == 2 && UNICODE_DOT_VERSION >= 1 \
4647 && UNICODE_DOT_DOT_VERSION >= 8)
4648 255 /*sharp s*/,
92ffb4f8 4649#else /* uc(sharp s) is 'sharp s' itself in early unicode */
79e064b9
KW
4650 223,
4651#endif
00f254e2
KW
4652 224-32, 225-32, 226-32, 227-32, 228-32, 229-32, 230-32, 231-32,
4653 232-32, 233-32, 234-32, 235-32, 236-32, 237-32, 238-32, 239-32,
4654 240-32, 241-32, 242-32, 243-32, 244-32, 245-32, 246-32, 247,
4655 248-32, 249-32, 250-32, 251-32, 252-32, 253-32, 254-32, 255
4656};
1248eb9d 4657#endif /* !EBCDIC, but still in DOINIT */
00f254e2 4658#else /* ! DOINIT */
1248eb9d 4659# ifndef EBCDIC
22c35a8c 4660EXTCONST unsigned char PL_fold[];
3871f40b 4661EXTCONST unsigned char PL_fold_latin1[];
00f254e2
KW
4662EXTCONST unsigned char PL_mod_latin1_uc[];
4663EXTCONST unsigned char PL_latin1_lc[];
1248eb9d 4664# endif
79072805
LW
4665#endif
4666
27da23d5 4667#ifndef PERL_GLOBAL_STRUCT /* or perlvars.h */
79072805 4668#ifdef DOINIT
27da23d5 4669EXT unsigned char PL_fold_locale[] = { /* Unfortunately not EXTCONST. */
79072805
LW
4670 0, 1, 2, 3, 4, 5, 6, 7,
4671 8, 9, 10, 11, 12, 13, 14, 15,
4672 16, 17, 18, 19, 20, 21, 22, 23,
4673 24, 25, 26, 27, 28, 29, 30, 31,
4674 32, 33, 34, 35, 36, 37, 38, 39,
4675 40, 41, 42, 43, 44, 45, 46, 47,
4676 48, 49, 50, 51, 52, 53, 54, 55,
4677 56, 57, 58, 59, 60, 61, 62, 63,
4678 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4679 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4680 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4681 'x', 'y', 'z', 91, 92, 93, 94, 95,
4682 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4683 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4684 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4685 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4686 128, 129, 130, 131, 132, 133, 134, 135,
4687 136, 137, 138, 139, 140, 141, 142, 143,
4688 144, 145, 146, 147, 148, 149, 150, 151,
4689 152, 153, 154, 155, 156, 157, 158, 159,
4690 160, 161, 162, 163, 164, 165, 166, 167,
4691 168, 169, 170, 171, 172, 173, 174, 175,
4692 176, 177, 178, 179, 180, 181, 182, 183,
4693 184, 185, 186, 187, 188, 189, 190, 191,
4694 192, 193, 194, 195, 196, 197, 198, 199,
4695 200, 201, 202, 203, 204, 205, 206, 207,
4696 208, 209, 210, 211, 212, 213, 214, 215,
4697 216, 217, 218, 219, 220, 221, 222, 223,
4698 224, 225, 226, 227, 228, 229, 230, 231,
4699 232, 233, 234, 235, 236, 237, 238, 239,
4700 240, 241, 242, 243, 244, 245, 246, 247,
4701 248, 249, 250, 251, 252, 253, 254, 255
4702};
4703#else
27da23d5 4704EXT unsigned char PL_fold_locale[]; /* Unfortunately not EXTCONST. */
79072805 4705#endif
27da23d5 4706#endif /* !PERL_GLOBAL_STRUCT */
79072805
LW
4707
4708#ifdef DOINIT
9d116dd7 4709#ifdef EBCDIC
27da23d5 4710EXTCONST unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
9d116dd7
JH
4711 1, 2, 84, 151, 154, 155, 156, 157,
4712 165, 246, 250, 3, 158, 7, 18, 29,
4713 40, 51, 62, 73, 85, 96, 107, 118,
4714 129, 140, 147, 148, 149, 150, 152, 153,
4715 255, 6, 8, 9, 10, 11, 12, 13,
4716 14, 15, 24, 25, 26, 27, 28, 226,
4717 29, 30, 31, 32, 33, 43, 44, 45,
4718 46, 47, 48, 49, 50, 76, 77, 78,
4719 79, 80, 81, 82, 83, 84, 85, 86,
4720 87, 94, 95, 234, 181, 233, 187, 190,
4721 180, 96, 97, 98, 99, 100, 101, 102,
4722 104, 112, 182, 174, 236, 232, 229, 103,
4723 228, 226, 114, 115, 116, 117, 118, 119,
4724 120, 121, 122, 235, 176, 230, 194, 162,
4725 130, 131, 132, 133, 134, 135, 136, 137,
4726 138, 139, 201, 205, 163, 217, 220, 224,
4727 5, 248, 227, 244, 242, 255, 241, 231,
4728 240, 253, 16, 197, 19, 20, 21, 187,
4729 23, 169, 210, 245, 237, 249, 247, 239,
4730 168, 252, 34, 196, 36, 37, 38, 39,
4731 41, 42, 251, 254, 238, 223, 221, 213,
4732 225, 177, 52, 53, 54, 55, 56, 57,
4733 58, 59, 60, 61, 63, 64, 65, 66,
4734 67, 68, 69, 70, 71, 72, 74, 75,
4735 205, 208, 186, 202, 200, 218, 198, 179,
4736 178, 214, 88, 89, 90, 91, 92, 93,
4737 217, 166, 170, 207, 199, 209, 206, 204,
4738 160, 212, 105, 106, 108, 109, 110, 111,
4739 203, 113, 216, 215, 192, 175, 193, 243,
4740 172, 161, 123, 124, 125, 126, 127, 128,
4741 222, 219, 211, 195, 188, 193, 185, 184,
4742 191, 183, 141, 142, 143, 144, 145, 146
4743};
4744#else /* ascii rather than ebcdic */
22c35a8c 4745EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
4746 1, 2, 84, 151, 154, 155, 156, 157,
4747 165, 246, 250, 3, 158, 7, 18, 29,
4748 40, 51, 62, 73, 85, 96, 107, 118,
4749 129, 140, 147, 148, 149, 150, 152, 153,
4750 255, 182, 224, 205, 174, 176, 180, 217,
4751 233, 232, 236, 187, 235, 228, 234, 226,
4752 222, 219, 211, 195, 188, 193, 185, 184,
4753 191, 183, 201, 229, 181, 220, 194, 162,
4754 163, 208, 186, 202, 200, 218, 198, 179,
4755 178, 214, 166, 170, 207, 199, 209, 206,
4756 204, 160, 212, 216, 215, 192, 175, 173,
4757 243, 172, 161, 190, 203, 189, 164, 230,
4758 167, 248, 227, 244, 242, 255, 241, 231,
4759 240, 253, 169, 210, 245, 237, 249, 247,
4760 239, 168, 252, 251, 254, 238, 223, 221,
4761 213, 225, 177, 197, 171, 196, 159, 4,
4762 5, 6, 8, 9, 10, 11, 12, 13,
4763 14, 15, 16, 17, 19, 20, 21, 22,
4764 23, 24, 25, 26, 27, 28, 30, 31,
4765 32, 33, 34, 35, 36, 37, 38, 39,
4766 41, 42, 43, 44, 45, 46, 47, 48,
4767 49, 50, 52, 53, 54, 55, 56, 57,
4768 58, 59, 60, 61, 63, 64, 65, 66,
4769 67, 68, 69, 70, 71, 72, 74, 75,
4770 76, 77, 78, 79, 80, 81, 82, 83,
4771 86, 87, 88, 89, 90, 91, 92, 93,
4772 94, 95, 97, 98, 99, 100, 101, 102,
4773 103, 104, 105, 106, 108, 109, 110, 111,
4774 112, 113, 114, 115, 116, 117, 119, 120,
4775 121, 122, 123, 124, 125, 126, 127, 128,
4776 130, 131, 132, 133, 134, 135, 136, 137,
4777 138, 139, 141, 142, 143, 144, 145, 146
4778};
9d116dd7 4779#endif
79072805 4780#else
22c35a8c 4781EXTCONST unsigned char PL_freq[];
79072805
LW
4782#endif
4783
b0812ba3
DM
4784/* Although only used for debugging, these constants must be available in
4785 * non-debugging builds too, since they're used in ext/re/re_exec.c,
4786 * which has DEBUGGING enabled always */
8990e307 4787#ifdef DOINIT
27da23d5 4788EXTCONST char* const PL_block_type[] = {
8990e307 4789 "NULL",
7896dde7 4790 "WHEN",
8990e307 4791 "BLOCK",
7896dde7 4792 "GIVEN",
1611176f 4793 "LOOP_ARY",
93661e56 4794 "LOOP_LAZYSV",
1611176f 4795 "LOOP_LAZYIV",
93661e56 4796 "LOOP_LIST",
1611176f 4797 "LOOP_PLAIN",
76753e7f
NC
4798 "SUB",
4799 "FORMAT",
4800 "EVAL",
4801 "SUBST"
8990e307
LW
4802};
4803#else
22c35a8c 4804EXTCONST char* PL_block_type[];
8990e307 4805#endif
8990e307 4806
b75885fd
NC
4807/* These are all the compile time options that affect binary compatibility.
4808 Other compile time options that are binary compatible are in perl.c
e23397c2 4809 (in S_Internals_V()). Both are combined for the output of perl -V
b75885fd
NC
4810 However, this string will be embedded in any shared perl library, which will
4811 allow us add a comparison check in perlmain.c in the near future. */
4812#ifdef DOINIT
4813EXTCONST char PL_bincompat_options[] =
4814# ifdef DEBUG_LEAKING_SCALARS
4815 " DEBUG_LEAKING_SCALARS"
4816# endif
4817# ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
4818 " DEBUG_LEAKING_SCALARS_FORK_DUMP"
4819# endif
eba804b9
NC
4820# ifdef FCRYPT
4821 " FCRYPT"
4822# endif
4823# ifdef HAS_TIMES
4824 " HAS_TIMES"
4825# endif
4826# ifdef HAVE_INTERP_INTERN
426f6eb2 4827 " HAVE_INTERP_INTERN"
eba804b9 4828# endif
b75885fd
NC
4829# ifdef MULTIPLICITY
4830 " MULTIPLICITY"
4831# endif
4832# ifdef MYMALLOC
4833 " MYMALLOC"
4834# endif
eba804b9
NC
4835# ifdef PERLIO_LAYERS
4836 " PERLIO_LAYERS"
4837# endif
cb26ef7a
MB
4838# ifdef PERL_DEBUG_READONLY_COW
4839 " PERL_DEBUG_READONLY_COW"
4840# endif
b75885fd
NC
4841# ifdef PERL_DEBUG_READONLY_OPS
4842 " PERL_DEBUG_READONLY_OPS"
4843# endif
4844# ifdef PERL_GLOBAL_STRUCT
4845 " PERL_GLOBAL_STRUCT"
4846# endif
59dba841
JH
4847# ifdef PERL_GLOBAL_STRUCT_PRIVATE
4848 " PERL_GLOBAL_STRUCT_PRIVATE"
4849# endif
b75885fd
NC
4850# ifdef PERL_IMPLICIT_CONTEXT
4851 " PERL_IMPLICIT_CONTEXT"
4852# endif
4853# ifdef PERL_IMPLICIT_SYS
4854 " PERL_IMPLICIT_SYS"
4855# endif
eba804b9
NC
4856# ifdef PERL_MICRO
4857 " PERL_MICRO"
4858# endif
b75885fd
NC
4859# ifdef PERL_NEED_APPCTX
4860 " PERL_NEED_APPCTX"
4861# endif
4862# ifdef PERL_NEED_TIMESBASE
4863 " PERL_NEED_TIMESBASE"
4864# endif
b75885fd
NC
4865# ifdef PERL_POISON
4866 " PERL_POISON"
4867# endif
5b50f57e
FC
4868# ifdef PERL_SAWAMPERSAND
4869 " PERL_SAWAMPERSAND"
4870# endif
b75885fd
NC
4871# ifdef PERL_TRACK_MEMPOOL
4872 " PERL_TRACK_MEMPOOL"
4873# endif
4874# ifdef PERL_USES_PL_PIDSTATUS
4875 " PERL_USES_PL_PIDSTATUS"
4876# endif
b75885fd
NC
4877# ifdef USE_64_BIT_ALL
4878 " USE_64_BIT_ALL"
4879# endif
4880# ifdef USE_64_BIT_INT
4881 " USE_64_BIT_INT"
4882# endif
c7b392fa
NC
4883# ifdef USE_IEEE
4884 " USE_IEEE"
4885# endif
b75885fd
NC
4886# ifdef USE_ITHREADS
4887 " USE_ITHREADS"
4888# endif
4889# ifdef USE_LARGE_FILES
4890 " USE_LARGE_FILES"
4891# endif
eba804b9
NC
4892# ifdef USE_LOCALE_COLLATE
4893 " USE_LOCALE_COLLATE"
4894# endif
4895# ifdef USE_LOCALE_NUMERIC
4896 " USE_LOCALE_NUMERIC"
4897# endif
56e45410
KW
4898# ifdef USE_LOCALE_TIME
4899 " USE_LOCALE_TIME"
4900# endif
b75885fd
NC
4901# ifdef USE_LONG_DOUBLE
4902 " USE_LONG_DOUBLE"
4903# endif
4904# ifdef USE_PERLIO
4905 " USE_PERLIO"
4906# endif
05b4a618
JH
4907# ifdef USE_QUADMATH
4908 " USE_QUADMATH"
4909# endif
b75885fd
NC
4910# ifdef USE_REENTRANT_API
4911 " USE_REENTRANT_API"
4912# endif
b75885fd
NC
4913# ifdef USE_SOCKS
4914 " USE_SOCKS"
4915# endif
4f575702
CB
4916# ifdef VMS_DO_SOCKETS
4917 " VMS_DO_SOCKETS"
4f575702 4918# endif
e8b231c6
CB
4919# ifdef VMS_SHORTEN_LONG_SYMBOLS
4920 " VMS_SHORTEN_LONG_SYMBOLS"
4921# endif
ad5e438d
NC
4922# ifdef VMS_WE_ARE_CASE_SENSITIVE
4923 " VMS_SYMBOL_CASE_AS_IS"
4924# endif
a68dd89e 4925 "";
b75885fd
NC
4926#else
4927EXTCONST char PL_bincompat_options[];
4928#endif
4929
ca7b837b
SM
4930#ifndef PERL_SET_PHASE
4931# define PERL_SET_PHASE(new_phase) \
3f6bd23a 4932 PERL_DTRACE_PROBE_PHASE(new_phase); \
ca7b837b
SM
4933 PL_phase = new_phase;
4934#endif
4935
9ebf26ad
FR
4936/* The interpreter phases. If these ever change, PL_phase_names right below will
4937 * need to be updated accordingly. */
4938enum perl_phase {
4939 PERL_PHASE_CONSTRUCT = 0,
4940 PERL_PHASE_START = 1,
4941 PERL_PHASE_CHECK = 2,
4942 PERL_PHASE_INIT = 3,
4943 PERL_PHASE_RUN = 4,
4944 PERL_PHASE_END = 5,
4945 PERL_PHASE_DESTRUCT = 6
4946};
4947
4948#ifdef DOINIT
4949EXTCONST char *const PL_phase_names[] = {
4950 "CONSTRUCT",
4951 "START",
4952 "CHECK",
4953 "INIT",
4954 "RUN",
4955 "END",
4956 "DESTRUCT"
4957};
4958#else
4959EXTCONST char *const PL_phase_names[];
4960#endif
4961
627364f1
FR
4962#ifndef PERL_CORE
4963/* Do not use this macro. It only exists for extensions that rely on PL_dirty
4964 * instead of using the newer PL_phase, which provides everything PL_dirty
4965 * provided, and more. */
9d990559 4966# define PL_dirty cBOOL(PL_phase == PERL_PHASE_DESTRUCT)
66978156
FC
4967
4968# define PL_amagic_generation PL_na
8bfa1b58 4969# define PL_encoding ((SV *)NULL)
627364f1
FR
4970#endif /* !PERL_CORE */
4971
823ac2c8 4972#define PL_hints PL_compiling.cop_hints
8d89205a 4973#define PL_maxo MAXO
823ac2c8 4974
73c4f7a1
GS
4975END_EXTERN_C
4976
79072805
LW
4977/*****************************************************************************/
4978/* This lexer/parser stuff is currently global since yacc is hard to reenter */
4979/*****************************************************************************/
8990e307 4980/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 4981
d4c3c482 4982#ifdef __Lynx__
9cffb111
OS
4983/* LynxOS defines these in scsi.h which is included via ioctl.h */
4984#ifdef FORMAT
4985#undef FORMAT
4986#endif
4987#ifdef SPACE
4988#undef SPACE
4989#endif
d4c3c482 4990#endif
9cffb111 4991
fb73857a 4992#define LEX_NOTPARSING 11 /* borrowed from toke.c */
4993
79072805
LW
4994typedef enum {
4995 XOPERATOR,
4996 XTERM,
79072805 4997 XREF,
8990e307 4998 XSTATE,
a0d0e21e 4999 XBLOCK,
86ae8d9a
DM
5000 XATTRBLOCK, /* next token should be an attribute or block */
5001 XATTRTERM, /* next token should be an attribute, or block in a term */
6f33ba73 5002 XTERMBLOCK,
b5b6210a 5003 XBLOCKTERM,
89f35911 5004 XPOSTDEREF,
6f33ba73 5005 XTERMORDORDOR /* evil hack */
27308ded 5006 /* update exp_name[] in toke.c if adding to this enum */
79072805
LW
5007} expectation;
5008
49fb8620
DM
5009#define KEY_sigvar 0xFFFF /* fake keyword representing a signature var */
5010
d5ec2987
NC
5011/* Hints are now stored in a dedicated U32, so the bottom 8 bits are no longer
5012 special and there is no need for HINT_PRIVATE_MASK for COPs
538e84ed
KW
5013 However, bitops store HINT_INTEGER in their op_private.
5014
5015 NOTE: The typical module using these has the bit value hard-coded, so don't
d6ded950
KW
5016 blindly change the values of these.
5017
5018 If we run out of bits, the 2 locale ones could be combined. The PARTIAL one
5019 is for "use locale 'FOO'" which excludes some categories. It requires going
5020 to %^H to find out which are in and which are out. This could be extended
5021 for the normal case of a plain HINT_LOCALE, so that %^H would be used for
5022 any locale form. */
9cfe5470
RGS
5023#define HINT_INTEGER 0x00000001 /* integer pragma */
5024#define HINT_STRICT_REFS 0x00000002 /* strict pragma */
5025#define HINT_LOCALE 0x00000004 /* locale pragma */
5026#define HINT_BYTES 0x00000008 /* bytes pragma */
d6ded950 5027#define HINT_LOCALE_PARTIAL 0x00000010 /* locale, but a subset of categories */
894ea76b
FC
5028
5029#define HINT_EXPLICIT_STRICT_REFS 0x00000020 /* strict.pm */
5030#define HINT_EXPLICIT_STRICT_SUBS 0x00000040 /* strict.pm */
5031#define HINT_EXPLICIT_STRICT_VARS 0x00000080 /* strict.pm */
85e6fe83
LW
5032
5033#define HINT_BLOCK_SCOPE 0x00000100
9cfe5470
RGS
5034#define HINT_STRICT_SUBS 0x00000200 /* strict pragma */
5035#define HINT_STRICT_VARS 0x00000400 /* strict pragma */
1863b879 5036#define HINT_UNI_8_BIT 0x00000800 /* unicode_strings feature */
85e6fe83 5037
9cfe5470 5038/* The HINT_NEW_* constants are used by the overload pragma */
b3ac6de7
IZ
5039#define HINT_NEW_INTEGER 0x00001000
5040#define HINT_NEW_FLOAT 0x00002000
5041#define HINT_NEW_BINARY 0x00004000
5042#define HINT_NEW_STRING 0x00008000
5043#define HINT_NEW_RE 0x00010000
5044#define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
8b850bd5
NC
5045#define HINT_LEXICAL_IO_IN 0x00040000 /* ${^OPEN} is set for input */
5046#define HINT_LEXICAL_IO_OUT 0x00080000 /* ${^OPEN} is set for output */
b3ac6de7 5047
9cfe5470
RGS
5048#define HINT_RE_TAINT 0x00100000 /* re pragma */
5049#define HINT_RE_EVAL 0x00200000 /* re pragma */
b3eb6a9b 5050
9cfe5470
RGS
5051#define HINT_FILETEST_ACCESS 0x00400000 /* filetest pragma */
5052#define HINT_UTF8 0x00800000 /* utf8 pragma */
5ff3f7a4 5053
e46c382e
YK
5054#define HINT_NO_AMAGIC 0x01000000 /* overloading pragma */
5055
1e215989
FC
5056#define HINT_RE_FLAGS 0x02000000 /* re '/xism' pragma */
5057
a803b9b4
FC
5058#define HINT_FEATURE_MASK 0x1c000000 /* 3 bits for feature bundles */
5059
15da1ccf
FC
5060 /* Note: Used for HINT_M_VMSISH_*,
5061 currently defined by vms/vmsish.h:
894ea76b
FC
5062 0x40000000
5063 0x80000000
5064 */
d1718a7c 5065
0239f47c 5066/* The following are stored in $^H{sort}, not in PL_hints */
afe59f35
FC
5067#define HINT_SORT_STABLE 0x00000100 /* sort styles */
5068#define HINT_SORT_UNSTABLE 0x00000200
84d4ea48 5069
d3b97530
DM
5070/* flags for PL_sawampersand */
5071
5072#define SAWAMPERSAND_LEFT 1 /* saw $` */
5073#define SAWAMPERSAND_MIDDLE 2 /* saw $& */
5074#define SAWAMPERSAND_RIGHT 4 /* saw $' */
5075
1a904fc8
FC
5076#ifndef PERL_SAWAMPERSAND
5077# define PL_sawampersand \
5078 (SAWAMPERSAND_LEFT|SAWAMPERSAND_MIDDLE|SAWAMPERSAND_RIGHT)
5079#endif
5080
a6d69523
TC
5081/* Used for debugvar magic */
5082#define DBVARMG_SINGLE 0
5083#define DBVARMG_TRACE 1
5084#define DBVARMG_SIGNAL 2
5085#define DBVARMG_COUNT 3
5086
5087#define PL_DBsingle_iv (PL_DBcontrol[DBVARMG_SINGLE])
5088#define PL_DBtrace_iv (PL_DBcontrol[DBVARMG_TRACE])
5089#define PL_DBsignal_iv (PL_DBcontrol[DBVARMG_SIGNAL])
5090
8bfdd7d9 5091/* Various states of the input record separator SV (rs) */
d4cce5f1 5092#define RsSNARF(sv) (! SvOK(sv))
af7d13df
MG
5093#define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
5094#define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
5b2b9c68 5095#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
79072805 5096
128e8167 5097/* A struct for keeping various DEBUGGING related stuff,
ce333219 5098 * neatly packed. Currently only scratch variables for
128e8167
JH
5099 * constructing debug output are included. Needed always,
5100 * not just when DEBUGGING, though, because of the re extension. c*/
ce333219
JH
5101struct perl_debug_pad {
5102 SV pad[3];
5103};
5104
5105#define PERL_DEBUG_PAD(i) &(PL_debug_pad.pad[i])
a5c57919
RGS
5106#define PERL_DEBUG_PAD_ZERO(i) (SvPVX(PERL_DEBUG_PAD(i))[0] = 0, \
5107 (((XPV*) SvANY(PERL_DEBUG_PAD(i)))->xpv_cur = 0), \
5108 PERL_DEBUG_PAD(i))
ce333219 5109
56953603 5110/* Enable variables which are pointers to functions */
16c91539
BM
5111typedef void (*peep_t)(pTHX_ OP* o);
5112typedef regexp* (*regcomp_t) (pTHX_ char* exp, char* xend, PMOP* pm);
5113typedef I32 (*regexec_t) (pTHX_ regexp* prog, char* stringarg,
0cb96387
GS
5114 char* strend, char* strbeg, I32 minend,
5115 SV* screamer, void* data, U32 flags);
16c91539 5116typedef char* (*re_intuit_start_t) (pTHX_ regexp *prog, SV *sv,
f722798b
IZ
5117 char *strpos, char *strend,
5118 U32 flags,
9f61653a 5119 re_scream_pos_data *d);
16c91539
BM
5120typedef SV* (*re_intuit_string_t) (pTHX_ regexp *prog);
5121typedef void (*regfree_t) (pTHX_ struct regexp* r);
5122typedef regexp* (*regdupe_t) (pTHX_ const regexp* r, CLONE_PARAMS *param);
a932d541 5123typedef I32 (*re_fold_t)(const char *, char const *, I32);
56953603 5124
c76ac1ee 5125typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
acfe0abc 5126typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
f30de749 5127typedef void (*SVFUNC_t) (pTHX_ SV* const);
31e9e0a3 5128typedef I32 (*SVCOMPARE_t) (pTHX_ SV* const, SV* const);
acfe0abc
GS
5129typedef void (*XSINIT_t) (pTHX);
5130typedef void (*ATEXIT_t) (pTHX_ void*);
5131typedef void (*XSUBADDR_t) (pTHX_ CV *);
15e52e56 5132
16c91539
BM
5133typedef OP* (*Perl_ppaddr_t)(pTHX);
5134typedef OP* (*Perl_check_t) (pTHX_ OP*);
5135typedef void(*Perl_ophook_t)(pTHX_ OP*);
5136typedef int (*Perl_keyword_plugin_t)(pTHX_ char*, STRLEN, OP**);
1830b3d9 5137typedef void(*Perl_cpeep_t)(pTHX_ OP *, OP *);
88e1f1a2 5138
d67594ff
FC
5139typedef void(*globhook_t)(pTHX);
5140
88e1f1a2
JV
5141#define KEYWORD_PLUGIN_DECLINE 0
5142#define KEYWORD_PLUGIN_STMT 1
5143#define KEYWORD_PLUGIN_EXPR 2
22239a37 5144
58a50f62
GS
5145/* Interpreter exitlist entry */
5146typedef struct exitlistentry {
acfe0abc 5147 void (*fn) (pTHX_ void*);
58a50f62
GS
5148 void *ptr;
5149} PerlExitListEntry;
5150
aadb217d
JH
5151/* if you only have signal() and it resets on each signal, FAKE_PERSISTENT_SIGNAL_HANDLERS fixes */
5152/* These have to be before perlvars.h */
5153#if !defined(HAS_SIGACTION) && defined(VMS)
5154# define FAKE_PERSISTENT_SIGNAL_HANDLERS
5155#endif
5156/* if we're doing kill() with sys$sigprc on VMS, FAKE_DEFAULT_SIGNAL_HANDLERS */
5157#if defined(KILL_BY_SIGPRC)
5158# define FAKE_DEFAULT_SIGNAL_HANDLERS
5159#endif
5160
8c1cc017
NC
5161#if !defined(MULTIPLICITY)
5162
5163struct interpreter {
5164 char broiled;
22239a37
NIS
5165};
5166
8c1cc017 5167#else
22239a37 5168
d460ef45 5169/* If we have multiple interpreters define a struct
d4cce5f1 5170 holding variables which must be per-interpreter
d460ef45 5171 If we don't have threads anything that would have
d4cce5f1
NIS
5172 be per-thread is per-interpreter.
5173*/
5174
8c1cc017 5175/* Set up PERLVAR macros for populating structs */
115ff745 5176# define PERLVAR(prefix,var,type) type prefix##var;
eb42f199
KW
5177
5178/* 'var' is an array of length 'n' */
115ff745 5179# define PERLVARA(prefix,var,n,type) type prefix##var[n];
eb42f199
KW
5180
5181/* initialize 'var' to init' */
115ff745 5182# define PERLVARI(prefix,var,type,init) type prefix##var;
eb42f199
KW
5183
5184/* like PERLVARI, but make 'var' a const */
115ff745 5185# define PERLVARIC(prefix,var,type,init) type prefix##var;
8c1cc017 5186
79072805 5187struct interpreter {
7766f137 5188# include "intrpvar.h"
49f531da 5189};
d4cce5f1 5190
724cf8d6
NC
5191EXTCONST U16 PL_interp_size
5192 INIT(sizeof(struct interpreter));
5193
5194# define PERL_INTERPRETER_SIZE_UPTO_MEMBER(member) \
5195 STRUCT_OFFSET(struct interpreter, member) + \
5196 sizeof(((struct interpreter*)0)->member)
5197
5198/* This will be useful for subsequent releases, because this has to be the
5199 same in your libperl as in main(), else you have a mismatch and must abort.
5200*/
d399cf59
NC
5201EXTCONST U16 PL_interp_size_5_18_0
5202 INIT(PERL_INTERPRETER_SIZE_UPTO_MEMBER(PERL_LAST_5_18_0_INTERP_MEMBER));
724cf8d6
NC
5203
5204
8c1cc017
NC
5205# ifdef PERL_GLOBAL_STRUCT
5206/* MULTIPLICITY is automatically defined when PERL_GLOBAL_STRUCT is defined,
5207 hence it's safe and sane to nest this within #ifdef MULTIPLICITY */
5208
5209struct perl_vars {
5210# include "perlvars.h"
49f531da 5211};
8c1cc017 5212
724cf8d6
NC
5213EXTCONST U16 PL_global_struct_size
5214 INIT(sizeof(struct perl_vars));
5215
8c1cc017
NC
5216# ifdef PERL_CORE
5217# ifndef PERL_GLOBAL_STRUCT_PRIVATE
5218EXT struct perl_vars PL_Vars;
5219EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
5220# undef PERL_GET_VARS
5221# define PERL_GET_VARS() PL_VarsPtr
5222# endif /* !PERL_GLOBAL_STRUCT_PRIVATE */
5223# else /* PERL_CORE */
5224# if !defined(__GNUC__) || !defined(WIN32)
5225EXT
5226# endif /* WIN32 */
5227struct perl_vars *PL_VarsPtr;
5228# define PL_Vars (*((PL_VarsPtr) \
5229 ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
5230# endif /* PERL_CORE */
5231# endif /* PERL_GLOBAL_STRUCT */
79072805 5232
22239a37 5233/* Done with PERLVAR macros for now ... */
8c1cc017
NC
5234# undef PERLVAR
5235# undef PERLVARA
5236# undef PERLVARI
5237# undef PERLVARIC
8c1cc017
NC
5238
5239#endif /* MULTIPLICITY */
79072805 5240
f7fe979e 5241struct tempsym; /* defined in pp_pack.c */
49704364 5242
22239a37 5243#include "thread.h"
79072805 5244#include "pp.h"
864dbfa3 5245
0cb96387
GS
5246#undef PERL_CKDEF
5247#undef PERL_PPDEF
0159f81b
JH
5248#define PERL_CKDEF(s) PERL_CALLCONV OP *s (pTHX_ OP *o);
5249#define PERL_PPDEF(s) PERL_CALLCONV OP *s (pTHX);
0cb96387 5250
158cfab6
JD
5251#ifdef MYMALLOC
5252# include "malloc_ctl.h"
5253#endif
5254
fc6bde6f
DD
5255/*
5256 * This provides a layer of functions and macros to ensure extensions will
5257 * get to use the same RTL functions as the core.
5258 */
5259#if defined(WIN32)
5260# include "win32iop.h"
5261#endif
5262
839a9f02 5263
7766f137 5264#include "proto.h"
864dbfa3 5265
0cb96387 5266/* this has structure inits, so it cannot be included before here */
acfe0abc 5267#include "opcode.h"
864dbfa3 5268
d4cce5f1
NIS
5269/* The following must follow proto.h as #defines mess up syntax */
5270
22c35a8c
GS
5271#if !defined(PERL_FOR_X2P)
5272# include "embedvar.h"
5273#endif
d4cce5f1 5274
d460ef45 5275/* Now include all the 'global' variables
d4cce5f1 5276 * If we don't have threads or multiple interpreters
d460ef45 5277 * these include variables that would have been their struct-s
d4cce5f1 5278 */
d460ef45 5279
115ff745
NC
5280#define PERLVAR(prefix,var,type) EXT type PL_##var;
5281#define PERLVARA(prefix,var,n,type) EXT type PL_##var[n];
5282#define PERLVARI(prefix,var,type,init) EXT type PL_##var INIT(init);
5283#define PERLVARIC(prefix,var,type,init) EXTCONST type PL_##var INIT(init);
d4cce5f1 5284
acfe0abc 5285#if !defined(MULTIPLICITY)
7766f137 5286START_EXTERN_C
066ef5b5 5287# include "intrpvar.h"
7766f137 5288END_EXTERN_C
7c123f9d
DM
5289# define PL_sv_yes (PL_sv_immortals[0])
5290# define PL_sv_undef (PL_sv_immortals[1])
5291# define PL_sv_no (PL_sv_immortals[2])
5292# define PL_sv_zero (PL_sv_immortals[3])
22239a37
NIS
5293#endif
5294
24792b8d
NC
5295#ifdef PERL_CORE
5296/* All core uses now exterminated. Ensure no zombies can return: */
5297# undef PL_na
5298#endif
5299
f9293c5b
NC
5300/* Now all the config stuff is setup we can include embed.h
5301 In particular, need the relevant *ish file included already, as it may
5302 define HAVE_INTERP_INTERN */
5303#include "embed.h"
22239a37 5304
c5be433b
GS
5305#ifndef PERL_GLOBAL_STRUCT
5306START_EXTERN_C
5307
5308# include "perlvars.h"
5309
5310END_EXTERN_C
5311#endif
5312
d4cce5f1 5313#undef PERLVAR
51371543 5314#undef PERLVARA
d4cce5f1 5315#undef PERLVARI
0f3f18a6 5316#undef PERLVARIC
79072805 5317
db6e00bd
DD
5318#if !defined(MULTIPLICITY)
5319/* Set up PERLVAR macros for populating structs */
5320# define PERLVAR(prefix,var,type) type prefix##var;
5321/* 'var' is an array of length 'n' */
5322# define PERLVARA(prefix,var,n,type) type prefix##var[n];
5323/* initialize 'var' to init' */
5324# define PERLVARI(prefix,var,type,init) type prefix##var;
5325/* like PERLVARI, but make 'var' a const */
5326# define PERLVARIC(prefix,var,type,init) type prefix##var;
5327
5328/* this is never instantiated, is it just used for sizeof(struct PerlHandShakeInterpreter) */
5329struct PerlHandShakeInterpreter {
5330# include "intrpvar.h"
5331};
5332# undef PERLVAR
5333# undef PERLVARA
5334# undef PERLVARI
5335# undef PERLVARIC
5336#endif
5337
73c4f7a1
GS
5338START_EXTERN_C
5339
af2f0da9
NC
5340/* dummy variables that hold pointers to both runops functions, thus forcing
5341 * them *both* to get linked in (useful for Peek.xs, debugging etc) */
5342
5343EXTCONST runops_proc_t PL_runops_std
5344 INIT(Perl_runops_standard);
5345EXTCONST runops_proc_t PL_runops_dbg
5346 INIT(Perl_runops_debug);
5347
c910fead 5348#define EXT_MGVTBL EXTCONST MGVTBL
bc028b6b 5349
82ff486e 5350#define PERL_MAGIC_READONLY_ACCEPTABLE 0x40
e0a73de4
NC
5351#define PERL_MAGIC_VALUE_MAGIC 0x80
5352#define PERL_MAGIC_VTABLE_MASK 0x3F
82ff486e
NC
5353#define PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(t) \
5354 (PL_magic_data[(U8)(t)] & PERL_MAGIC_READONLY_ACCEPTABLE)
e0a73de4
NC
5355#define PERL_MAGIC_TYPE_IS_VALUE_MAGIC(t) \
5356 (PL_magic_data[(U8)(t)] & PERL_MAGIC_VALUE_MAGIC)
5357
8b09643d 5358#include "mg_vtable.h"
6f83ef0e
NC
5359
5360#ifdef DOINIT
5361EXTCONST U8 PL_magic_data[256] =
dde5ec2c
NC
5362# ifdef PERL_MICRO
5363# include "umg_data.h"
5364# else
5365# include "mg_data.h"
5366# endif
6f83ef0e
NC
5367;
5368#else
5369EXTCONST U8 PL_magic_data[256];
5370#endif
5371
f1fb8741 5372#ifdef DOINIT
e94d9b54 5373 /* NL IV NV PV INV PI PN MG RX GV LV AV HV CV FM IO */
f1fb8741 5374EXTCONST bool
e94d9b54 5375PL_valid_types_IVX[] = { 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0 };
f1fb8741 5376EXTCONST bool
e94d9b54 5377PL_valid_types_NVX[] = { 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0 };
f1fb8741 5378EXTCONST bool
df6b4bd5 5379PL_valid_types_PVX[] = { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1 };
f1fb8741 5380EXTCONST bool
e94d9b54 5381PL_valid_types_RV[] = { 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1 };
f1fb8741 5382EXTCONST bool
e94d9b54 5383PL_valid_types_IV_set[] = { 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1 };
f1fb8741 5384EXTCONST bool
e94d9b54 5385PL_valid_types_NV_set[] = { 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 };
f1fb8741
DM
5386
5387#else
5388
5389EXTCONST bool PL_valid_types_IVX[];
5390EXTCONST bool PL_valid_types_NVX[];
5391EXTCONST bool PL_valid_types_PVX[];
5392EXTCONST bool PL_valid_types_RV[];
5393EXTCONST bool PL_valid_types_IV_set[];
5394EXTCONST bool PL_valid_types_NV_set[];
5395
5396#endif
5397
9e76e8dd
JH
5398/* In C99 we could use designated (named field) union initializers.
5399 * In C89 we need to initialize the member declared first.
0879cd66 5400 * In C++ we need extern C initializers.
9e76e8dd
JH
5401 *
5402 * With the U8_NV version you will want to have inner braces,
9ee3aea9 5403 * while with the NV_U8 use just the NV. */
0879cd66
JH
5404
5405#ifdef __cplusplus
5406#define INFNAN_U8_NV_DECL EXTERN_C const union { U8 u8[NVSIZE]; NV nv; }
5407#define INFNAN_NV_U8_DECL EXTERN_C const union { NV nv; U8 u8[NVSIZE]; }
5408#else
9e76e8dd
JH
5409#define INFNAN_U8_NV_DECL EXTCONST union { U8 u8[NVSIZE]; NV nv; }
5410#define INFNAN_NV_U8_DECL EXTCONST union { NV nv; U8 u8[NVSIZE]; }
0879cd66 5411#endif
9e76e8dd 5412
cf6e31e9
DM
5413/* if these never got defined, they need defaults */
5414#ifndef PERL_SET_CONTEXT
5415# define PERL_SET_CONTEXT(i) PERL_SET_INTERP(i)
5416#endif
5417
5418#ifndef PERL_GET_CONTEXT
5419# define PERL_GET_CONTEXT PERL_GET_INTERP
5420#endif
5421
5422#ifndef PERL_GET_THX
5423# define PERL_GET_THX ((void*)NULL)
5424#endif
5425
5426#ifndef PERL_SET_THX
5427# define PERL_SET_THX(t) NOOP
5428#endif
5429
5430
c7627e6d
NC
5431#ifndef PERL_NO_INLINE_FUNCTIONS
5432/* Static inline funcs that depend on includes and declarations above.
5433 Some of these reference functions in the perl object files, and some
5434 compilers aren't smart enough to eliminate unused static inline
5435 functions, so including this file in source code can cause link errors
5436 even if the source code uses none of the functions. Hence including these
5437 can be be suppressed by setting PERL_NO_INLINE_FUNCTIONS. Doing this will
5438 (obviously) result in unworkable XS code, but allows simple probing code
5439 to continue to work, because it permits tests to include the perl headers
5440 for definitions without creating a link dependency on the perl library
5441 (which may not exist yet).
5442*/
5443
5444# include "inline.h"
5445#endif
f1fb8741 5446
bab3dc31 5447#include "overload.h"
a0d0e21e 5448
73c4f7a1
GS
5449END_EXTERN_C
5450
a6006777 5451struct am_table {
8978b4ac
NC
5452 U8 flags;
5453 U8 fallback;
5454 U16 spare;
eb160463 5455 U32 was_ok_sub;
9bd87817 5456 CV* table[NofAMmeth];
a0d0e21e 5457};
a6006777 5458struct am_table_short {
8978b4ac
NC
5459 U8 flags;
5460 U8 fallback;
5461 U16 spare;
eb160463 5462 U32 was_ok_sub;
a6006777 5463};
a0d0e21e 5464typedef struct am_table AMT;
a6006777 5465typedef struct am_table_short AMTS;
a0d0e21e
LW
5466
5467#define AMGfallNEVER 1
5468#define AMGfallNO 2
5469#define AMGfallYES 3
5470
a6006777 5471#define AMTf_AMAGIC 1
5472#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
5473#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
5474#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
5475
32251b26 5476#define StashHANDLER(stash,meth) gv_handler((stash),CAT2(meth,_amg))
c0315cdf
JH
5477
5478/*
5479 * some compilers like to redefine cos et alia as faster
5480 * (and less accurate?) versions called F_cos et cetera (Quidquid
5481 * latine dictum sit, altum viditur.) This trick collides with
5482 * the Perl overloading (amg). The following #defines fool both.
5483 */
5484
5485#ifdef _FASTMATH
5486# ifdef atan2
5487# define F_atan2_amg atan2_amg
5488# endif
5489# ifdef cos
5490# define F_cos_amg cos_amg
5491# endif
5492# ifdef exp
5493# define F_exp_amg exp_amg
5494# endif
5495# ifdef log
5496# define F_log_amg log_amg
5497# endif
5498# ifdef pow
5499# define F_pow_amg pow_amg
5500# endif
5501# ifdef sin
5502# define F_sin_amg sin_amg
5503# endif
5504# ifdef sqrt
5505# define F_sqrt_amg sqrt_amg
5506# endif
5507#endif /* _FASTMATH */
5508
83ee9e09
GS
5509#define PERLDB_ALL (PERLDBf_SUB | PERLDBf_LINE | \
5510 PERLDBf_NOOPT | PERLDBf_INTER | \
5511 PERLDBf_SUBLINE| PERLDBf_SINGLE| \
b8fcbefe
NC
5512 PERLDBf_NAMEEVAL| PERLDBf_NAMEANON | \
5513 PERLDBf_SAVESRC)
925cfbb8 5514 /* No _NONAME, _GOTO */
83ee9e09
GS
5515#define PERLDBf_SUB 0x01 /* Debug sub enter/exit */
5516#define PERLDBf_LINE 0x02 /* Keep line # */
5517#define PERLDBf_NOOPT 0x04 /* Switch off optimizations */
5518#define PERLDBf_INTER 0x08 /* Preserve more data for
5519 later inspections */
5520#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines */
5521#define PERLDBf_SINGLE 0x20 /* Start with single-step on */
5522#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr */
5523#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto */
5524#define PERLDBf_NAMEEVAL 0x100 /* Informative names for evals */
5525#define PERLDBf_NAMEANON 0x200 /* Informative names for anon subs */
b8fcbefe 5526#define PERLDBf_SAVESRC 0x400 /* Save source lines into @{"_<$filename"} */
486ec47a 5527#define PERLDBf_SAVESRC_NOSUBS 0x800 /* Including evals that generate no subroutines */
c30d8139 5528#define PERLDBf_SAVESRC_INVALID 0x1000 /* Save source that did not compile */
84902520 5529
8bd38399
DD
5530#define PERLDB_SUB (PL_perldb & PERLDBf_SUB)
5531#define PERLDB_LINE (PL_perldb & PERLDBf_LINE)
5532#define PERLDB_NOOPT (PL_perldb & PERLDBf_NOOPT)
5533#define PERLDB_INTER (PL_perldb & PERLDBf_INTER)
5534#define PERLDB_SUBLINE (PL_perldb & PERLDBf_SUBLINE)
5535#define PERLDB_SINGLE (PL_perldb & PERLDBf_SINGLE)
5536#define PERLDB_SUB_NN (PL_perldb & PERLDBf_NONAME)
5537#define PERLDB_GOTO (PL_perldb & PERLDBf_GOTO)
5538#define PERLDB_NAMEEVAL (PL_perldb & PERLDBf_NAMEEVAL)
5539#define PERLDB_NAMEANON (PL_perldb & PERLDBf_NAMEANON)
5540#define PERLDB_SAVESRC (PL_perldb & PERLDBf_SAVESRC)
5541#define PERLDB_SAVESRC_NOSUBS (PL_perldb & PERLDBf_SAVESRC_NOSUBS)
5542#define PERLDB_SAVESRC_INVALID (PL_perldb & PERLDBf_SAVESRC_INVALID)
bbce6d69 5543
c7a622b3
DD
5544#define PERLDB_LINE_OR_SAVESRC (PL_perldb & (PERLDBf_LINE | PERLDBf_SAVESRC))
5545
1e5c5f69
LM
5546#ifdef USE_ITHREADS
5547# define KEYWORD_PLUGIN_MUTEX_INIT MUTEX_INIT(&PL_keyword_plugin_mutex)
5548# define KEYWORD_PLUGIN_MUTEX_LOCK MUTEX_LOCK(&PL_keyword_plugin_mutex)
5549# define KEYWORD_PLUGIN_MUTEX_UNLOCK MUTEX_UNLOCK(&PL_keyword_plugin_mutex)
5550# define KEYWORD_PLUGIN_MUTEX_TERM MUTEX_DESTROY(&PL_keyword_plugin_mutex)
5551#else
5552# define KEYWORD_PLUGIN_MUTEX_INIT NOOP
5553# define KEYWORD_PLUGIN_MUTEX_LOCK NOOP
5554# define KEYWORD_PLUGIN_MUTEX_UNLOCK NOOP
5555# define KEYWORD_PLUGIN_MUTEX_TERM NOOP
5556#endif
5557
7f9e9632 5558#ifdef USE_LOCALE /* These locale things are all subject to change */
d269de98 5559
1b6cb30e
KW
5560 /* Returns TRUE if the plain locale pragma without a parameter is in effect.
5561 * */
5562# define IN_LOCALE_RUNTIME (PL_curcop \
5563 && CopHINTS_get(PL_curcop) & HINT_LOCALE)
5564
5565 /* Returns TRUE if either form of the locale pragma is in effect */
5566# define IN_SOME_LOCALE_FORM_RUNTIME \
5567 cBOOL(CopHINTS_get(PL_curcop) & (HINT_LOCALE|HINT_LOCALE_PARTIAL))
5568
5569# define IN_LOCALE_COMPILETIME cBOOL(PL_hints & HINT_LOCALE)
5570# define IN_SOME_LOCALE_FORM_COMPILETIME \
5571 cBOOL(PL_hints & (HINT_LOCALE|HINT_LOCALE_PARTIAL))
5572
5573# define IN_LOCALE \
5574 (IN_PERL_COMPILETIME ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
5575# define IN_SOME_LOCALE_FORM \
5576 (IN_PERL_COMPILETIME ? IN_SOME_LOCALE_FORM_COMPILETIME \
5577 : IN_SOME_LOCALE_FORM_RUNTIME)
5578
5579# define IN_LC_ALL_COMPILETIME IN_LOCALE_COMPILETIME
5580# define IN_LC_ALL_RUNTIME IN_LOCALE_RUNTIME
5581
5582# define IN_LC_PARTIAL_COMPILETIME cBOOL(PL_hints & HINT_LOCALE_PARTIAL)
5583# define IN_LC_PARTIAL_RUNTIME \
5584 (PL_curcop && CopHINTS_get(PL_curcop) & HINT_LOCALE_PARTIAL)
5585
5586# define IN_LC_COMPILETIME(category) \
5587 ( IN_LC_ALL_COMPILETIME \
5588 || ( IN_LC_PARTIAL_COMPILETIME \
5589 && Perl__is_in_locale_category(aTHX_ TRUE, (category))))
5590# define IN_LC_RUNTIME(category) \
5591 (IN_LC_ALL_RUNTIME || (IN_LC_PARTIAL_RUNTIME \
5592 && Perl__is_in_locale_category(aTHX_ FALSE, (category))))
5593# define IN_LC(category) \
5594 (IN_LC_COMPILETIME(category) || IN_LC_RUNTIME(category))
5595
5596# if defined (PERL_CORE) || defined (PERL_IN_XSUB_RE)
5597
5598 /* This internal macro should be called from places that operate under
5599 * locale rules. It there is a problem with the current locale that
5600 * hasn't been raised yet, it will output a warning this time. Because
5601 * this will so rarely be true, there is no point to optimize for time;
5602 * instead it makes sense to minimize space used and do all the work in
5603 * the rarely called function */
5604# ifdef USE_LOCALE_CTYPE
5605# define _CHECK_AND_WARN_PROBLEMATIC_LOCALE \
5606 STMT_START { \
5607 if (UNLIKELY(PL_warn_locale)) { \
5608 Perl__warn_problematic_locale(); \
5609 } \
5610 } STMT_END
5611# else
5612# define _CHECK_AND_WARN_PROBLEMATIC_LOCALE
5613# endif
5614
5615
5616 /* These two internal macros are called when a warning should be raised,
5617 * and will do so if enabled. The first takes a single code point
5618 * argument; the 2nd, is a pointer to the first byte of the UTF-8 encoded
5619 * string, and an end position which it won't try to read past */
5620# define _CHECK_AND_OUTPUT_WIDE_LOCALE_CP_MSG(cp) \
5621 STMT_START { \
5622 if (! PL_in_utf8_CTYPE_locale && ckWARN(WARN_LOCALE)) { \
5623 Perl_warner(aTHX_ packWARN(WARN_LOCALE), \
5624 "Wide character (U+%" UVXf ") in %s",\
5625 (UV) cp, OP_DESC(PL_op)); \
5626 } \
5627 } STMT_END
5628
5629# define _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(s, send) \
5630 STMT_START { /* Check if to warn before doing the conversion work */\
5631 if (! PL_in_utf8_CTYPE_locale && ckWARN(WARN_LOCALE)) { \
5632 UV cp = utf8_to_uvchr_buf((U8 *) s, (U8 *) send, NULL); \
5633 Perl_warner(aTHX_ packWARN(WARN_LOCALE), \
5634 "Wide character (U+%" UVXf ") in %s", \
5635 (cp == 0) \
5636 ? UNICODE_REPLACEMENT \
5637 : (UV) cp, \
5638 OP_DESC(PL_op)); \
5639 } \
5640 } STMT_END
5641
5642# endif /* PERL_CORE or PERL_IN_XSUB_RE */
5643#else /* No locale usage */
5644# define IN_LOCALE_RUNTIME 0
5645# define IN_SOME_LOCALE_FORM_RUNTIME 0
5646# define IN_LOCALE_COMPILETIME 0
5647# define IN_SOME_LOCALE_FORM_COMPILETIME 0
5648# define IN_LOCALE 0
5649# define IN_SOME_LOCALE_FORM 0
5650# define IN_LC_ALL_COMPILETIME 0
5651# define IN_LC_ALL_RUNTIME 0
5652# define IN_LC_PARTIAL_COMPILETIME 0
5653# define IN_LC_PARTIAL_RUNTIME 0
5654# define IN_LC_COMPILETIME(category) 0
5655# define IN_LC_RUNTIME(category) 0
5656# define IN_LC(category) 0
5657#endif
5658
69c5e0db 5659
2972341c 5660/* Locale/thread synchronization macros. These aren't needed if using
69c5e0db 5661 * thread-safe locale operations, except if something is broken */
2972341c
KW
5662#if defined(USE_LOCALE) \
5663 && defined(USE_ITHREADS) \
69c5e0db 5664 && (! defined(USE_THREAD_SAFE_LOCALE) || defined(TS_W32_BROKEN_LOCALECONV))
2972341c
KW
5665
5666/* We have a locale object holding the 'C' locale for Posix 2008 */
5667#ifndef USE_POSIX_2008_LOCALE
5acc3fa5
KW
5668# define _LOCALE_TERM_POSIX_2008 NOOP
5669# else
5670# define _LOCALE_TERM_POSIX_2008 \
ffdde306 5671 STMT_START { \
ffdde306
KW
5672 if (PL_C_locale_obj) { \
5673 /* Make sure we aren't using the locale \
5674 * space we are about to free */ \
5675 uselocale(LC_GLOBAL_LOCALE); \
5676 freelocale(PL_C_locale_obj); \
5677 PL_C_locale_obj = (locale_t) NULL; \
5678 } \
5acc3fa5
KW
5679 } STMT_END
5680# endif
6470dfd2
KW
5681
5682/* This is used as a generic lock for locale operations. For example this is
5683 * used when calling nl_langinfo() so that another thread won't zap the
5684 * contents of its buffer before it gets saved; and it's called when changing
5685 * the locale of LC_MESSAGES. On some systems the latter can cause the
5686 * nl_langinfo buffer to be zapped under a race condition.
5687 *
5688 * If combined with LC_NUMERIC_LOCK, calls to this and its corresponding unlock
5689 * should be contained entirely within the locked portion of LC_NUMERIC. This
5690 * mutex should be used only in very short sections of code, while
5691 * LC_NUMERIC_LOCK may span more operations. By always following this
5692 * convention, deadlock should be impossible. But if necessary, the two
69c5e0db
KW
5693 * mutexes could be combined.
5694 *
5695 * Actually, the two macros just below with the '_V' suffixes are used in just
5696 * a few places where there is a broken localeconv(), but otherwise things are
5697 * thread safe, and hence don't need locking. Just below LOCALE_LOCK and
5698 * LOCALE_UNLOCK are defined in terms of these for use everywhere else */
5699# define LOCALE_LOCK_V \
6470dfd2
KW
5700 STMT_START { \
5701 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5702 "%s: %d: locking locale\n", __FILE__, __LINE__)); \
5703 MUTEX_LOCK(&PL_locale_mutex); \
5704 } STMT_END
69c5e0db 5705# define LOCALE_UNLOCK_V \
6470dfd2
KW
5706 STMT_START { \
5707 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5708 "%s: %d: unlocking locale\n", __FILE__, __LINE__)); \
5709 MUTEX_UNLOCK(&PL_locale_mutex); \
5710 } STMT_END
5711
69c5e0db
KW
5712/* On windows, we just need the mutex for LOCALE_LOCK */
5713# ifdef TS_W32_BROKEN_LOCALECONV
5714# define LOCALE_LOCK NOOP
5715# define LOCALE_UNLOCK NOOP
5716# define LOCALE_INIT MUTEX_INIT(&PL_locale_mutex);
5717# define LOCALE_TERM MUTEX_DESTROY(&PL_locale_mutex)
5718# define LC_NUMERIC_LOCK(cond)
5719# define LC_NUMERIC_UNLOCK
5720# else
5721# define LOCALE_LOCK LOCALE_LOCK_V
5722# define LOCALE_UNLOCK LOCALE_UNLOCK_V
5723
5724 /* We also need to lock LC_NUMERIC for non-windows (hence Posix 2008)
5725 * systems */
5726# define LOCALE_INIT STMT_START { \
49d7d366
KW
5727 MUTEX_INIT(&PL_locale_mutex); \
5728 MUTEX_INIT(&PL_lc_numeric_mutex); \
5729 } STMT_END
5730
6470dfd2
KW
5731# define LOCALE_TERM STMT_START { \
5732 MUTEX_DESTROY(&PL_locale_mutex); \
5733 MUTEX_DESTROY(&PL_lc_numeric_mutex); \
5734 _LOCALE_TERM_POSIX_2008; \
5735 } STMT_END
5736
21972ec9
KW
5737 /* This mutex is used to create critical sections where we want the
5738 * LC_NUMERIC locale to be locked into either the C (standard) locale, or
5739 * the underlying locale, so that other threads interrupting this one don't
5740 * change it to the wrong state before we've had a chance to complete our
5741 * operation. It can stay locked over an entire printf operation, for
5742 * example. And so is made distinct from the LOCALE_LOCK mutex.
5743 *
5744 * This simulates kind of a general semaphore. The current thread will
5745 * lock the mutex if the per-thread variable is zero, and then increments
5746 * that variable. Each corresponding UNLOCK decrements the variable until
5747 * it is 0, at which point it actually unlocks the mutex. Since the
5748 * variable is per-thread, there is no race with other threads.
5749 *
5750 * The single argument is a condition to test for, and if true, to panic,
5751 * as this would be an attempt to complement the LC_NUMERIC state, and
5752 * we're not supposed to because it's locked.
5753 *
5754 * Clang improperly gives warnings for this, if not silenced:
5755 * https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#conditional-locks
5756 * */
5757# define LC_NUMERIC_LOCK(cond_to_panic_if_already_locked) \
b2f82b52 5758 CLANG_DIAG_IGNORE(-Wthread-safety) \
49d7d366
KW
5759 STMT_START { \
5760 if (PL_lc_numeric_mutex_depth <= 0) { \
5761 MUTEX_LOCK(&PL_lc_numeric_mutex); \
5762 PL_lc_numeric_mutex_depth = 1; \
5763 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5764 "%s: %d: locking lc_numeric; depth=1\n", \
5765 __FILE__, __LINE__)); \
5766 } \
5767 else { \
5768 PL_lc_numeric_mutex_depth++; \
5769 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5770 "%s: %d: avoided lc_numeric_lock; depth=%d\n", \
5771 __FILE__, __LINE__, PL_lc_numeric_mutex_depth)); \
5772 if (cond_to_panic_if_already_locked) { \
5773 Perl_croak_nocontext("panic: %s: %d: Trying to change" \
5774 " LC_NUMERIC incompatibly", \
5775 __FILE__, __LINE__); \
5776 } \
5777 } \
5778 } STMT_END
5779
21972ec9 5780# define LC_NUMERIC_UNLOCK \
49d7d366
KW
5781 STMT_START { \
5782 if (PL_lc_numeric_mutex_depth <= 1) { \
5783 MUTEX_UNLOCK(&PL_lc_numeric_mutex); \
5784 PL_lc_numeric_mutex_depth = 0; \
5785 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
b2f82b52 5786 "%s: %d: unlocking lc_numeric; depth=0\n", \
49d7d366
KW
5787 __FILE__, __LINE__)); \
5788 } \
5789 else { \
5790 PL_lc_numeric_mutex_depth--; \
5791 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5792 "%s: %d: avoided lc_numeric_unlock; depth=%d\n", \
5793 __FILE__, __LINE__, PL_lc_numeric_mutex_depth)); \
5794 } \
b2f82b52
KW
5795 } STMT_END \
5796 CLANG_DIAG_RESTORE
49d7d366 5797
69c5e0db 5798# endif /* End of needs locking LC_NUMERIC */
2972341c
KW
5799#else /* Below is no locale sync needed */
5800# define LOCALE_INIT
5801# define LOCALE_LOCK
69c5e0db 5802# define LOCALE_LOCK_V
2972341c 5803# define LOCALE_UNLOCK
69c5e0db 5804# define LOCALE_UNLOCK_V
2972341c
KW
5805# define LC_NUMERIC_LOCK(cond)
5806# define LC_NUMERIC_UNLOCK
5807# define LOCALE_TERM
91191cf7
KW
5808#endif
5809
6bf09f55
KW
5810#ifdef USE_LOCALE_NUMERIC
5811
67d796ae 5812/* These macros are for toggling between the underlying locale (UNDERLYING or
9487427b
KW
5813 * LOCAL) and the C locale (STANDARD). (Actually we don't have to use the C
5814 * locale if the underlying locale is indistinguishable from it in the numeric
5815 * operations used by Perl, namely the decimal point, and even the thousands
5816 * separator.)
45235d99
KW
5817
5818=head1 Locale-related functions and macros
5819
5820=for apidoc Amn|void|DECLARATION_FOR_LC_NUMERIC_MANIPULATION
5821
5822This macro should be used as a statement. It declares a private variable
5823(whose name begins with an underscore) that is needed by the other macros in
5824this section. Failing to include this correctly should lead to a syntax error.
5825For compatibility with C89 C compilers it should be placed in a block before
5826any executable statements.
5827
5828=for apidoc Am|void|STORE_LC_NUMERIC_FORCE_TO_UNDERLYING
5829
5830This is used by XS code that that is C<LC_NUMERIC> locale-aware to force the
5831locale for category C<LC_NUMERIC> to be what perl thinks is the current
5832underlying locale. (The perl interpreter could be wrong about what the
5833underlying locale actually is if some C or XS code has called the C library
5834function L<setlocale(3)> behind its back; calling L</sync_locale> before calling
5835this macro will update perl's records.)
5836
5837A call to L</DECLARATION_FOR_LC_NUMERIC_MANIPULATION> must have been made to
5838declare at compile time a private variable used by this macro. This macro
5839should be called as a single statement, not an expression, but with an empty
5840argument list, like this:
5841
5842 {
5843 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
5844 ...
5845 STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
5846 ...
5847 RESTORE_LC_NUMERIC();
5848 ...
5849 }
5850
5851The private variable is used to save the current locale state, so
5852that the requisite matching call to L</RESTORE_LC_NUMERIC> can restore it.
5853
e9bc6d6b
KW
5854On threaded perls not operating with thread-safe functionality, this macro uses
5855a mutex to force a critical section. Therefore the matching RESTORE should be
5856close by, and guaranteed to be called.
49d7d366 5857
45235d99
KW
5858=for apidoc Am|void|STORE_LC_NUMERIC_SET_TO_NEEDED
5859
9487427b
KW
5860This is used to help wrap XS or C code that is C<LC_NUMERIC> locale-aware.
5861This locale category is generally kept set to a locale where the decimal radix
5862character is a dot, and the separator between groups of digits is empty. This
5863is because most XS code that reads floating point numbers is expecting them to
5864have this syntax.
45235d99
KW
5865
5866This macro makes sure the current C<LC_NUMERIC> state is set properly, to be
5867aware of locale if the call to the XS or C code from the Perl program is
5868from within the scope of a S<C<use locale>>; or to ignore locale if the call is
5869instead from outside such scope.
5870
5871This macro is the start of wrapping the C or XS code; the wrap ending is done
5872by calling the L</RESTORE_LC_NUMERIC> macro after the operation. Otherwise
5873the state can be changed that will adversely affect other XS code.
5874
5875A call to L</DECLARATION_FOR_LC_NUMERIC_MANIPULATION> must have been made to
5876declare at compile time a private variable used by this macro. This macro
5877should be called as a single statement, not an expression, but with an empty
5878argument list, like this:
5879
5880 {
5881 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
5882 ...
5883 STORE_LC_NUMERIC_SET_TO_NEEDED();
5884 ...
5885 RESTORE_LC_NUMERIC();
5886 ...
5887 }
5888
e9bc6d6b
KW
5889On threaded perls not operating with thread-safe functionality, this macro uses
5890a mutex to force a critical section. Therefore the matching RESTORE should be
5891close by, and guaranteed to be called.
49d7d366 5892
45235d99
KW
5893=for apidoc Am|void|RESTORE_LC_NUMERIC
5894
5895This is used in conjunction with one of the macros
5896L</STORE_LC_NUMERIC_SET_TO_NEEDED>
688523a0
KW
5897and L</STORE_LC_NUMERIC_FORCE_TO_UNDERLYING> to properly restore the
5898C<LC_NUMERIC> state.
45235d99
KW
5899
5900A call to L</DECLARATION_FOR_LC_NUMERIC_MANIPULATION> must have been made to
5901declare at compile time a private variable used by this macro and the two
5902C<STORE> ones. This macro should be called as a single statement, not an
5903expression, but with an empty argument list, like this:
5904
5905 {
5906 DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
5907 ...
5908 RESTORE_LC_NUMERIC();
5909 ...
5910 }
5911
5912=cut
5913
5914*/
8a11fac9 5915
9487427b
KW
5916/* If the underlying numeric locale has a non-dot decimal point or has a
5917 * non-empty floating point thousands separator, the current locale is instead
5918 * generally kept in the C locale instead of that underlying locale. The
5919 * current status is known by looking at two words. One is non-zero if the
5920 * current numeric locale is the standard C/POSIX one or is indistinguishable
5921 * from C. The other is non-zero if the current locale is the underlying
5922 * locale. Both can be non-zero if, as often happens, the underlying locale is
5923 * C or indistinguishable from it.
4c68b815 5924 *
7f974f6f
KW
5925 * khw believes the reason for the variables instead of the bits in a single
5926 * word is to avoid having to have masking instructions. */
5927
80752aac 5928# define _NOT_IN_NUMERIC_STANDARD (! PL_numeric_standard)
7738054c
KW
5929
5930/* We can lock the category to stay in the C locale, making requests to the
260c7ace
KW
5931 * contrary be noops, in the dynamic scope by setting PL_numeric_standard to 2.
5932 * */
80752aac 5933# define _NOT_IN_NUMERIC_UNDERLYING \
950cd4ee 5934 (! PL_numeric_underlying && PL_numeric_standard < 2)
67d796ae 5935
80752aac 5936# define DECLARATION_FOR_LC_NUMERIC_MANIPULATION \
67d796ae
KW
5937 void (*_restore_LC_NUMERIC_function)(pTHX) = NULL
5938
80752aac 5939# define STORE_LC_NUMERIC_SET_TO_NEEDED() \
49d7d366
KW
5940 STMT_START { \
5941 LC_NUMERIC_LOCK( \
5942 (IN_LC(LC_NUMERIC) && _NOT_IN_NUMERIC_UNDERLYING) \
5943 || _NOT_IN_NUMERIC_STANDARD); \
5944 if (IN_LC(LC_NUMERIC)) { \
5945 if (_NOT_IN_NUMERIC_UNDERLYING) { \
5946 Perl_set_numeric_underlying(aTHX); \
5947 _restore_LC_NUMERIC_function \
5948 = &Perl_set_numeric_standard; \
5949 } \
5950 } \
5951 else { \
5952 if (_NOT_IN_NUMERIC_STANDARD) { \
5953 Perl_set_numeric_standard(aTHX); \
5954 _restore_LC_NUMERIC_function \
5955 = &Perl_set_numeric_underlying; \
5956 } \
5957 } \
5958 } STMT_END
8a11fac9 5959
80752aac 5960# define RESTORE_LC_NUMERIC() \
49d7d366
KW
5961 STMT_START { \
5962 if (_restore_LC_NUMERIC_function) { \
5963 _restore_LC_NUMERIC_function(aTHX); \
5964 } \
5965 LC_NUMERIC_UNLOCK; \
5966 } STMT_END
8a11fac9
KW
5967
5968/* The next two macros set unconditionally. These should be rarely used, and
5969 * only after being sure that this is what is needed */
80752aac 5970# define SET_NUMERIC_STANDARD() \
49d7d366 5971 STMT_START { \
de0752cd
KW
5972 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5973 "%s: %d: lc_numeric standard=%d\n", \
49d7d366 5974 __FILE__, __LINE__, PL_numeric_standard)); \
de0752cd
KW
5975 Perl_set_numeric_standard(aTHX); \
5976 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
5977 "%s: %d: lc_numeric standard=%d\n", \
49d7d366
KW
5978 __FILE__, __LINE__, PL_numeric_standard)); \
5979 } STMT_END
87755cd9 5980
80752aac 5981# define SET_NUMERIC_UNDERLYING() \
49d7d366
KW
5982 STMT_START { \
5983 if (_NOT_IN_NUMERIC_UNDERLYING) { \
5984 Perl_set_numeric_underlying(aTHX); \
5985 } \
5986 } STMT_END
87755cd9 5987
8a11fac9
KW
5988/* The rest of these LC_NUMERIC macros toggle to one or the other state, with
5989 * the RESTORE_foo ones called to switch back, but only if need be */
688523a0 5990# define STORE_LC_NUMERIC_SET_STANDARD() \
49d7d366
KW
5991 STMT_START { \
5992 LC_NUMERIC_LOCK(_NOT_IN_NUMERIC_STANDARD); \
5993 if (_NOT_IN_NUMERIC_STANDARD) { \
5994 _restore_LC_NUMERIC_function = &Perl_set_numeric_underlying;\
5995 Perl_set_numeric_standard(aTHX); \
5996 } \
5997 } STMT_END
f93f4e46 5998
371d5d44
KW
5999/* Rarely, we want to change to the underlying locale even outside of 'use
6000 * locale'. This is principally in the POSIX:: functions */
950cd4ee 6001# define STORE_LC_NUMERIC_FORCE_TO_UNDERLYING() \
49d7d366
KW
6002 STMT_START { \
6003 LC_NUMERIC_LOCK(_NOT_IN_NUMERIC_UNDERLYING); \
6004 if (_NOT_IN_NUMERIC_UNDERLYING) { \
6005 Perl_set_numeric_underlying(aTHX); \
6006 _restore_LC_NUMERIC_function = &Perl_set_numeric_standard; \
6007 } \
6008 } STMT_END
371d5d44 6009
42752acc
KW
6010/* Lock/unlock to the C locale until unlock is called. This needs to be
6011 * recursively callable. [perl #128207] */
49d7d366
KW
6012# define LOCK_LC_NUMERIC_STANDARD() \
6013 STMT_START { \
de0752cd
KW
6014 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
6015 "%s: %d: lock lc_numeric_standard: new depth=%d\n", \
6016 __FILE__, __LINE__, PL_numeric_standard + 1)); \
49d7d366
KW
6017 __ASSERT_(PL_numeric_standard) \
6018 PL_numeric_standard++; \
6019 } STMT_END
6020
de0752cd
KW
6021# define UNLOCK_LC_NUMERIC_STANDARD() \
6022 STMT_START { \
6023 if (PL_numeric_standard > 1) { \
6024 PL_numeric_standard--; \
6025 } \
6026 else { \
6027 assert(0); \
6028 } \
6029 DEBUG_Lv(PerlIO_printf(Perl_debug_log, \
6030 "%s: %d: lc_numeric_standard decrement lock, new depth=%d\n", \
6031 __FILE__, __LINE__, PL_numeric_standard)); \
6032 } STMT_END
7738054c 6033
36477c24 6034#else /* !USE_LOCALE_NUMERIC */
bbce6d69 6035
80752aac
KW
6036# define SET_NUMERIC_STANDARD()
6037# define SET_NUMERIC_UNDERLYING()
6038# define IS_NUMERIC_RADIX(a, b) (0)
80752aac 6039# define DECLARATION_FOR_LC_NUMERIC_MANIPULATION
688523a0
KW
6040# define STORE_LC_NUMERIC_SET_STANDARD()
6041# define STORE_LC_NUMERIC_FORCE_TO_UNDERLYING()
80752aac
KW
6042# define STORE_LC_NUMERIC_SET_TO_NEEDED()
6043# define RESTORE_LC_NUMERIC()
6044# define LOCK_LC_NUMERIC_STANDARD()
6045# define UNLOCK_LC_NUMERIC_STANDARD()
8a11fac9 6046
36477c24 6047#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 6048
22bc8aa4
KW
6049#define Atof my_atof
6050
05b4a618
JH
6051#ifdef USE_QUADMATH
6052# define Perl_strtod(s, e) strtoflt128(s, e)
6053#elif defined(HAS_LONG_DOUBLE) && defined(USE_LONG_DOUBLE)
f1b32d61
JH
6054# if defined(HAS_STRTOLD)
6055# define Perl_strtod(s, e) strtold(s, e)
6056# elif defined(HAS_STRTOD)
6057# define Perl_strtod(s, e) (NV)strtod(s, e) /* Unavoidable loss. */
6058# endif
6059#elif defined(HAS_STRTOD)
6060# define Perl_strtod(s, e) strtod(s, e)
6061#endif
6062
85b76970
SH
6063#if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && \
6064 (QUADKIND == QUAD_IS_LONG_LONG || QUADKIND == QUAD_IS___INT64)
ec7b9793
JH
6065# ifdef __hpux
6066# define strtoll __strtoll /* secret handshake */
6067# endif
8ed77d12 6068# if defined(WIN64) && defined(_MSC_VER)
c623ac67
GS
6069# define strtoll _strtoi64 /* secret handshake */
6070# endif
079290de
GS
6071# if !defined(Strtol) && defined(HAS_STRTOLL)
6072# define Strtol strtoll
ad551343 6073# endif
28e5dec8
JH
6074# if !defined(Strtol) && defined(HAS_STRTOQ)
6075# define Strtol strtoq
6076# endif
ff935051 6077/* is there atoq() anywhere? */
15b99d39 6078#endif
079290de
GS
6079#if !defined(Strtol) && defined(HAS_STRTOL)
6080# define Strtol strtol
6081#endif
6082#ifndef Atol
6083/* It would be more fashionable to use Strtol() to define atol()
6084 * (as is done for Atoul(), see below) but for backward compatibility
6085 * we just assume atol(). */
85b76970
SH
6086# if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && defined(HAS_ATOLL) && \
6087 (QUADKIND == QUAD_IS_LONG_LONG || QUADKIND == QUAD_IS___INT64)
c623ac67
GS
6088# ifdef WIN64
6089# define atoll _atoi64 /* secret handshake */
6090# endif
76b882ba
JH
6091# define Atol atoll
6092# else
6093# define Atol atol
6094# endif
cf2093f6
JH
6095#endif
6096
85b76970
SH
6097#if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && \
6098 (QUADKIND == QUAD_IS_LONG_LONG || QUADKIND == QUAD_IS___INT64)
ec7b9793
JH
6099# ifdef __hpux
6100# define strtoull __strtoull /* secret handshake */
6101# endif
8ed77d12 6102# if defined(WIN64) && defined(_MSC_VER)
c623ac67
GS
6103# define strtoull _strtoui64 /* secret handshake */
6104# endif
ad551343 6105# if !defined(Strtoul) && defined(HAS_STRTOULL)
388d3c03 6106# define Strtoul strtoull
15b99d39 6107# endif
079290de
GS
6108# if !defined(Strtoul) && defined(HAS_STRTOUQ)
6109# define Strtoul strtouq
6110# endif
76d49b1c 6111/* is there atouq() anywhere? */
ad551343 6112#endif
079290de
GS
6113#if !defined(Strtoul) && defined(HAS_STRTOUL)
6114# define Strtoul strtoul
cf2093f6 6115#endif
a5523c5b
JH
6116#if !defined(Strtoul) && defined(HAS_STRTOL) /* Last resort. */
6117# define Strtoul(s, e, b) strchr((s), '-') ? ULONG_MAX : (unsigned long)strtol((s), (e), (b))
6118#endif
079290de 6119#ifndef Atoul
d4c19fe8 6120# define Atoul(s) Strtoul(s, NULL, 10)
55eb892c 6121#endif
cf2093f6 6122
a868473f
NIS
6123#ifndef PERL_SCRIPT_MODE
6124#define PERL_SCRIPT_MODE "r"
6125#endif
6126
d2af2719 6127/* not used. Kept as a NOOP for backcompat */
c2af87cb 6128#define PERL_STACK_OVERFLOW_CHECK() NOOP
da927450
JH
6129
6130/*
6131 * Some nonpreemptive operating systems find it convenient to
6132 * check for asynchronous conditions after each op execution.
6133 * Keep this check simple, or it may slow down execution
6134 * massively.
6135 */
ce08f86c 6136
1d615522 6137#ifndef PERL_MICRO
4ffa73a3 6138# ifndef PERL_ASYNC_CHECK
5d9574c1 6139# define PERL_ASYNC_CHECK() if (UNLIKELY(PL_sig_pending)) PL_signalhook(aTHX)
4ffa73a3 6140# endif
ce08f86c
NIS
6141#endif
6142
da927450 6143#ifndef PERL_ASYNC_CHECK
1d615522 6144# define PERL_ASYNC_CHECK() NOOP
da927450
JH
6145#endif
6146
6147/*
6148 * On some operating systems, a memory allocation may succeed,
6149 * but put the process too close to the system's comfort limit.
6150 * In this case, PERL_ALLOC_CHECK frees the pointer and sets
6151 * it to NULL.
6152 */
6153#ifndef PERL_ALLOC_CHECK
c2af87cb 6154#define PERL_ALLOC_CHECK(p) NOOP
da927450
JH
6155#endif
6156
bd89102f
AD
6157#ifdef HAS_SEM
6158# include <sys/ipc.h>
6159# include <sys/sem.h>
6160# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
6161 union semun {
dbba660d
TC
6162 int val;
6163 struct semid_ds *buf;
6164 unsigned short *array;
bd89102f
AD
6165 };
6166# endif
6167# ifdef USE_SEMCTL_SEMUN
dbba660d
TC
6168# ifdef IRIX32_SEMUN_BROKEN_BY_GCC
6169 union gccbug_semun {
6170 int val;
6171 struct semid_ds *buf;
6172 unsigned short *array;
6173 char __dummy[5];
6174 };
6175# define semun gccbug_semun
6176# endif
bd89102f 6177# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
da5fdda8 6178# elif defined(USE_SEMCTL_SEMID_DS)
e6f0bdd6
GS
6179# ifdef EXTRA_F_IN_SEMUN_BUF
6180# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
6181# else
6182# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
6183# endif
bd89102f 6184# endif
bd89102f 6185#endif
49f531da 6186
89ca4ac7
JH
6187/*
6188 * Boilerplate macros for initializing and accessing interpreter-local
6189 * data from C. All statics in extensions should be reworked to use
7588b095
JH
6190 * this, if you want to make the extension thread-safe. See
6191 * ext/XS/APItest/APItest.xs for an example of the use of these macros,
6192 * and perlxs.pod for more.
89ca4ac7
JH
6193 *
6194 * Code that uses these macros is responsible for the following:
43a739c2
JH
6195 * 1. #define MY_CXT_KEY to a unique string, e.g.
6196 * "DynaLoader::_guts" XS_VERSION
f16dd614 6197 * XXX in the current implementation, this string is ignored.
89ca4ac7
JH
6198 * 2. Declare a typedef named my_cxt_t that is a structure that contains
6199 * all the data that needs to be interpreter-local.
6200 * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
6201 * 4. Use the MY_CXT_INIT macro such that it is called exactly once
6202 * (typically put in the BOOT: section).
6203 * 5. Use the members of the my_cxt_t structure everywhere as
6204 * MY_CXT.member.
6205 * 6. Use the dMY_CXT macro (a declaration) in all the functions that
6206 * access MY_CXT.
6207 */
6208
fc958cd2 6209#if defined(PERL_IMPLICIT_CONTEXT)
89ca4ac7 6210
4eddb856 6211/* START_MY_CXT must appear in all extensions that define a my_cxt_t structure,
53d44271
JH
6212 * right after the definition (i.e. at file scope). The non-threads
6213 * case below uses it to declare the data as static. */
00ab59c9
DM
6214# ifdef PERL_GLOBAL_STRUCT_PRIVATE
6215# define START_MY_CXT
6216# define MY_CXT_INDEX Perl_my_cxt_index(aTHX_ MY_CXT_KEY)
6217# define MY_CXT_INIT_ARG MY_CXT_KEY
6218# else
6219# define START_MY_CXT static int my_cxt_index = -1;
6220# define MY_CXT_INDEX my_cxt_index
6221# define MY_CXT_INIT_ARG &my_cxt_index
6222# endif /* #ifdef PERL_GLOBAL_STRUCT_PRIVATE */
53d44271
JH
6223
6224/* Creates and zeroes the per-interpreter data.
6225 * (We allocate my_cxtp in a Perl SV so that it will be released when
6226 * the interpreter goes away.) */
00ab59c9 6227# define MY_CXT_INIT \
53d44271 6228 my_cxt_t *my_cxtp = \
9f6df31a
Z
6229 (my_cxt_t*)Perl_my_cxt_init(aTHX_ MY_CXT_INIT_ARG, sizeof(my_cxt_t)); \
6230 PERL_UNUSED_VAR(my_cxtp)
00ab59c9 6231# define MY_CXT_INIT_INTERP(my_perl) \
53d44271 6232 my_cxt_t *my_cxtp = \
9f6df31a
Z
6233 (my_cxt_t*)Perl_my_cxt_init(my_perl, MY_CXT_INIT_ARG, sizeof(my_cxt_t)); \
6234 PERL_UNUSED_VAR(my_cxtp)
53d44271
JH
6235
6236/* This declaration should be used within all functions that use the
6237 * interpreter-local data. */
00ab59c9 6238# define dMY_CXT \
53d44271 6239 my_cxt_t *my_cxtp = (my_cxt_t *)PL_my_cxt_list[MY_CXT_INDEX]
00ab59c9 6240# define dMY_CXT_INTERP(my_perl) \
53d44271
JH
6241 my_cxt_t *my_cxtp = (my_cxt_t *)(my_perl)->Imy_cxt_list[MY_CXT_INDEX]
6242
6243/* Clones the per-interpreter data. */
00ab59c9 6244# define MY_CXT_CLONE \
53d44271 6245 my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
8b573070 6246 void * old_my_cxtp = PL_my_cxt_list[MY_CXT_INDEX]; \
ccaa51ca
DD
6247 PL_my_cxt_list[MY_CXT_INDEX] = my_cxtp; \
6248 Copy(old_my_cxtp, my_cxtp, 1, my_cxt_t);
6249
53d44271 6250
53d44271 6251
89ca4ac7 6252/* This macro must be used to access members of the my_cxt_t structure.
870598ae 6253 * e.g. MY_CXT.some_data */
00ab59c9 6254# define MY_CXT (*my_cxtp)
89ca4ac7
JH
6255
6256/* Judicious use of these macros can reduce the number of times dMY_CXT
6257 * is used. Use is similar to pTHX, aTHX etc. */
00ab59c9
DM
6258# define pMY_CXT my_cxt_t *my_cxtp
6259# define pMY_CXT_ pMY_CXT,
6260# define _pMY_CXT ,pMY_CXT
6261# define aMY_CXT my_cxtp
6262# define aMY_CXT_ aMY_CXT,
6263# define _aMY_CXT ,aMY_CXT
89ca4ac7 6264
f16dd614 6265#else /* PERL_IMPLICIT_CONTEXT */
89ca4ac7 6266
00ab59c9
DM
6267# define START_MY_CXT static my_cxt_t my_cxt;
6268# define dMY_CXT_SV dNOOP
6269# define dMY_CXT dNOOP
6270# define dMY_CXT_INTERP(my_perl) dNOOP
6271# define MY_CXT_INIT NOOP
6272# define MY_CXT_CLONE NOOP
6273# define MY_CXT my_cxt
6274
6275# define pMY_CXT void
6276# define pMY_CXT_
6277# define _pMY_CXT
6278# define aMY_CXT
6279# define aMY_CXT_
6280# define _aMY_CXT
89ca4ac7 6281
f16dd614 6282#endif /* !defined(PERL_IMPLICIT_CONTEXT) */
89ca4ac7 6283
9a34ef1d
GS
6284#ifdef I_FCNTL
6285# include <fcntl.h>
9a34ef1d
GS
6286#endif
6287
9cffb111
OS
6288#ifdef __Lynx__
6289# include <fcntl.h>
6290#endif
6291
3c0208ad
AB
6292#ifdef __amigaos4__
6293# undef FD_CLOEXEC /* a lie in AmigaOS */
6294#endif
6295
9a34ef1d
GS
6296#ifdef I_SYS_FILE
6297# include <sys/file.h>
6298#endif
6299
fa0a29af 6300#if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
2ef53570
JH
6301int flock(int fd, int op);
6302#endif
6303
fe52b3b7
GS
6304#ifndef O_RDONLY
6305/* Assume UNIX defaults */
6306# define O_RDONLY 0000
6307# define O_WRONLY 0001
6308# define O_RDWR 0002
6309# define O_CREAT 0100
6310#endif
9a34ef1d 6311
16fe6d59
GS
6312#ifndef O_BINARY
6313# define O_BINARY 0
6314#endif
6315
6316#ifndef O_TEXT
6317# define O_TEXT 0
6318#endif
6319
6ce75a77 6320#if O_TEXT != O_BINARY
38d96942 6321 /* If you have different O_TEXT and O_BINARY and you are a CRLF shop,
6ce75a77 6322 * that is, you are somehow DOSish. */
b6c36746
NC
6323# if defined(__HAIKU__) || defined(__VOS__) || defined(__CYGWIN__)
6324 /* Haiku has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
6325 * Haiku is always UNIXoid (LF), not DOSish (CRLF). */
73250e76
JH
6326 /* VOS has O_TEXT != O_BINARY, and they have effect,
6327 * but VOS always uses LF, never CRLF. */
6ce75a77
JH
6328 /* If you have O_TEXT different from your O_BINARY but you still are
6329 * not a CRLF shop. */
35990314 6330# undef PERLIO_USING_CRLF
ec53fe4f
JH
6331# else
6332 /* If you really are DOSish. */
6333# define PERLIO_USING_CRLF 1
6ce75a77
JH
6334# endif
6335#endif
6336
4bc88a62
PS
6337#ifdef I_LIBUTIL
6338# include <libutil.h> /* setproctitle() in some FreeBSDs */
6339#endif
6340
b4748376 6341#ifndef EXEC_ARGV_CAST
360ea906 6342#define EXEC_ARGV_CAST(x) (char **)x
b4748376
NIS
6343#endif
6344
dd5dc04f
JH
6345#define IS_NUMBER_IN_UV 0x01 /* number within UV range (maybe not
6346 int). value returned in pointed-
6347 to UV */
6348#define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
d70489e1 6349#define IS_NUMBER_NOT_INT 0x04 /* saw . or E notation or infnan */
dd5dc04f
JH
6350#define IS_NUMBER_NEG 0x08 /* leading minus sign */
6351#define IS_NUMBER_INFINITY 0x10 /* this is big */
aa8b85de 6352#define IS_NUMBER_NAN 0x20 /* this is not */
3f7602fa 6353#define IS_NUMBER_TRAILING 0x40 /* number has trailing trash */
dd5dc04f
JH
6354
6355#define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
6356
53305cf1
NC
6357/* Input flags: */
6358#define PERL_SCAN_ALLOW_UNDERSCORES 0x01 /* grok_??? accept _ in numbers */
a4c04bdc 6359#define PERL_SCAN_DISALLOW_PREFIX 0x02 /* grok_??? reject 0x in hex etc */
94dd8549 6360#define PERL_SCAN_SILENT_ILLDIGIT 0x04 /* grok_??? not warn about illegal digits */
02470786
KW
6361#define PERL_SCAN_SILENT_NON_PORTABLE 0x08 /* grok_??? not warn about very large
6362 numbers which are <= UV_MAX */
3f7602fa
TC
6363#define PERL_SCAN_TRAILING 0x10 /* grok_number_flags() allow trailing
6364 and set IS_NUMBER_TRAILING */
6365
53305cf1
NC
6366/* Output flags: */
6367#define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
6368
2c4f7f0e
DM
6369/* to let user control profiling */
6370#ifdef PERL_GPROF_CONTROL
6371extern void moncontrol(int);
6372#define PERL_GPROF_MONCONTROL(x) moncontrol(x)
6373#else
6374#define PERL_GPROF_MONCONTROL(x)
6375#endif
6376
ae0e3d3b
JH
6377#ifdef UNDER_CE
6378#include "wince.h"
6379#endif
6380
6381/* ISO 6429 NEL - C1 control NExt Line */
6382/* See http://www.unicode.org/unicode/reports/tr13/ */
ec34087a 6383#define NEXT_LINE_CHAR NEXT_LINE_NATIVE
ae0e3d3b 6384
479b2847
GS
6385#ifndef PIPESOCK_MODE
6386# define PIPESOCK_MODE
6387#endif
6388
460c8493
IZ
6389#ifndef SOCKET_OPEN_MODE
6390# define SOCKET_OPEN_MODE PIPESOCK_MODE
6391#endif
6392
6393#ifndef PIPE_OPEN_MODE
6394# define PIPE_OPEN_MODE PIPESOCK_MODE
6395#endif
6396
7e8c5dac
HS
6397#define PERL_MAGIC_UTF8_CACHESIZE 2
6398
a05d7ebb
JH
6399#define PERL_UNICODE_STDIN_FLAG 0x0001
6400#define PERL_UNICODE_STDOUT_FLAG 0x0002
6401#define PERL_UNICODE_STDERR_FLAG 0x0004
a05d7ebb
JH
6402#define PERL_UNICODE_IN_FLAG 0x0008
6403#define PERL_UNICODE_OUT_FLAG 0x0010
06e66572 6404#define PERL_UNICODE_ARGV_FLAG 0x0020
a05d7ebb
JH
6405#define PERL_UNICODE_LOCALE_FLAG 0x0040
6406#define PERL_UNICODE_WIDESYSCALLS_FLAG 0x0080 /* for Sarathy */
5a22a2bb 6407#define PERL_UNICODE_UTF8CACHEASSERT_FLAG 0x0100
a05d7ebb 6408
06e66572
JH
6409#define PERL_UNICODE_STD_FLAG \
6410 (PERL_UNICODE_STDIN_FLAG | \
6411 PERL_UNICODE_STDOUT_FLAG | \
6412 PERL_UNICODE_STDERR_FLAG)
6413
6414#define PERL_UNICODE_INOUT_FLAG \
6415 (PERL_UNICODE_IN_FLAG | \
6416 PERL_UNICODE_OUT_FLAG)
6417
6418#define PERL_UNICODE_DEFAULT_FLAGS \
a05d7ebb
JH
6419 (PERL_UNICODE_STD_FLAG | \
6420 PERL_UNICODE_INOUT_FLAG | \
6421 PERL_UNICODE_LOCALE_FLAG)
6422
5a22a2bb 6423#define PERL_UNICODE_ALL_FLAGS 0x01ff
a05d7ebb
JH
6424
6425#define PERL_UNICODE_STDIN 'I'
6426#define PERL_UNICODE_STDOUT 'O'
6427#define PERL_UNICODE_STDERR 'E'
6428#define PERL_UNICODE_STD 'S'
6429#define PERL_UNICODE_IN 'i'
6430#define PERL_UNICODE_OUT 'o'
6431#define PERL_UNICODE_INOUT 'D'
6432#define PERL_UNICODE_ARGV 'A'
6433#define PERL_UNICODE_LOCALE 'L'
6434#define PERL_UNICODE_WIDESYSCALLS 'W'
5a22a2bb 6435#define PERL_UNICODE_UTF8CACHEASSERT 'a'
a05d7ebb 6436
4ffa73a3
JH
6437#define PERL_SIGNALS_UNSAFE_FLAG 0x0001
6438
32fdb065 6439/* Use instead of abs() since abs() forces its argument to be an int,
56c380de 6440 * but also beware since this evaluates its argument twice, so no x++. */
32fdb065
JH
6441#define PERL_ABS(x) ((x) < 0 ? -(x) : (x))
6442
3c0f78ca
JH
6443#if defined(__DECC) && defined(__osf__)
6444#pragma message disable (mainparm) /* Perl uses the envp in main(). */
24801a4b
JH
6445#endif
6446
e4dba786
NC
6447#define do_open(g, n, l, a, rm, rp, sf) \
6448 do_openn(g, n, l, a, rm, rp, sf, (SV **) NULL, 0)
9555a685 6449#ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
711aba4c 6450# define do_exec(cmd) do_exec3(cmd,0,0)
a9f96b3f 6451#endif
15871fce
NC
6452#ifdef OS2
6453# define do_aexec Perl_do_aexec
6454#else
6455# define do_aexec(really, mark,sp) do_aexec5(really, mark, sp, 0, 0)
9555a685 6456#endif
e4dba786 6457
c8028aa6
TC
6458/* check embedded \0 characters in pathnames passed to syscalls,
6459 but allow one ending \0 */
41188aa0 6460#define IS_SAFE_SYSCALL(p, len, what, op_name) (S_is_safe_syscall(aTHX_ (p), (len), (what), (op_name)))
c8028aa6 6461
41188aa0 6462#define IS_SAFE_PATHNAME(p, len, op_name) IS_SAFE_SYSCALL((p), (len), "pathname", (op_name))
c8028aa6 6463
53e89cff 6464#if defined(OEMVS) || defined(__amigaos4__)
2f3efc97
JH
6465#define NO_ENV_ARRAY_IN_MAIN
6466#endif
6467
00f254e2
KW
6468/* These are used by Perl_pv_escape() and Perl_pv_pretty()
6469 * are here so that they are available throughout the core
10edeb5d
JH
6470 * NOTE that even though some are for _escape and some for _pretty
6471 * there must not be any clashes as the flags from _pretty are
6472 * passed straight through to _escape.
6473 */
6474
4420a417 6475#define PERL_PV_ESCAPE_QUOTE 0x000001
10edeb5d
JH
6476#define PERL_PV_PRETTY_QUOTE PERL_PV_ESCAPE_QUOTE
6477
4420a417
YO
6478#define PERL_PV_PRETTY_ELLIPSES 0x000002
6479#define PERL_PV_PRETTY_LTGT 0x000004
6480#define PERL_PV_PRETTY_EXACTSIZE 0x000008
10edeb5d 6481
4420a417
YO
6482#define PERL_PV_ESCAPE_UNI 0x000100
6483#define PERL_PV_ESCAPE_UNI_DETECT 0x000200
6484#define PERL_PV_ESCAPE_NONASCII 0x000400
6485#define PERL_PV_ESCAPE_FIRSTCHAR 0x000800
10edeb5d 6486
4420a417
YO
6487#define PERL_PV_ESCAPE_ALL 0x001000
6488#define PERL_PV_ESCAPE_NOBACKSLASH 0x002000
6489#define PERL_PV_ESCAPE_NOCLEAR 0x004000
6490#define PERL_PV_PRETTY_NOCLEAR PERL_PV_ESCAPE_NOCLEAR
6491#define PERL_PV_ESCAPE_RE 0x008000
10edeb5d 6492
4420a417 6493#define PERL_PV_ESCAPE_DWIM 0x010000
0eb335df 6494
881a015e 6495
10edeb5d 6496/* used by pv_display in dump.c*/
95b611b0 6497#define PERL_PV_PRETTY_DUMP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_QUOTE
c89df6cf 6498#define PERL_PV_PRETTY_REGPROP PERL_PV_PRETTY_ELLIPSES|PERL_PV_PRETTY_LTGT|PERL_PV_ESCAPE_RE|PERL_PV_ESCAPE_NONASCII
10edeb5d 6499
a7157111
JH
6500#if DOUBLEKIND == DOUBLE_IS_VAX_F_FLOAT || \
6501 DOUBLEKIND == DOUBLE_IS_VAX_D_FLOAT || \
6502 DOUBLEKIND == DOUBLE_IS_VAX_G_FLOAT
6503# define DOUBLE_IS_VAX_FLOAT
6504#else
6505# define DOUBLE_IS_IEEE_FORMAT
6506#endif
6507
3fd106b1
JH
6508#if DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN || \
6509 DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN || \
6510 DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
6511# define DOUBLE_LITTLE_ENDIAN
6512#endif
6513
075bc527
JH
6514#if DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN || \
6515 DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN || \
6516 DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
6517# define DOUBLE_BIG_ENDIAN
6518#endif
6519
804d4e64
JH
6520#if DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE || \
6521 DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
6522# define DOUBLE_MIX_ENDIAN
6523#endif
6524
60d50332
JH
6525/* The VAX fp formats are neither consistently little-endian nor
6526 * big-endian, and neither are they really IEEE-mixed endian like
6527 * the mixed-endian ARM IEEE formats (with swapped bytes).
e90f8530 6528 * Ultimately, the VAX format came from the PDP-11.
60d50332
JH
6529 *
6530 * The ordering of the parts in VAX floats is quite vexing.
6531 * In the below the fraction_n are the mantissa bits.
df127a67 6532 *
60d50332 6533 * The fraction_1 is the most significant (numbering as by DEC/Digital),
6ce22998
JH
6534 * while the rightmost bit in each fraction is the least significant:
6535 * in other words, big-endian bit order within the fractions.
df127a67 6536 *
6ce22998 6537 * The fraction segments themselves would be big-endianly, except that
df127a67 6538 * within 32 bit segments the less significant half comes first, the more
6ce22998 6539 * significant after, except that in the format H (used for long doubles)
df127a67 6540 * the first fraction segment is alone, because the exponent is wider.
6ce22998
JH
6541 * This means for example that both the most and the least significant
6542 * bits can be in the middle of the floats, not at either end.
6543 *
6544 * References:
6545 * http://nssdc.gsfc.nasa.gov/nssdc/formats/VAXFloatingPoint.htm
6546 * http://www.quadibloc.com/comp/cp0201.htm
6547 * http://h71000.www7.hp.com/doc/82final/6443/6443pro_028.html
6548 * (somebody at HP should be fired for the URLs)
60d50332 6549 *
df127a67 6550 * F fraction_2:16 sign:1 exp:8 fraction_1:7
e90f8530 6551 * (exponent bias 128, hidden first one-bit)
60d50332 6552 *
df127a67 6553 * D fraction_2:16 sign:1 exp:8 fraction_1:7
60d50332 6554 * fraction_4:16 fraction_3:16
e90f8530 6555 * (exponent bias 128, hidden first one-bit)
60d50332 6556 *
6ce22998 6557 * G fraction_2:16 sign:1 exp:11 fraction_1:4
60d50332 6558 * fraction_4:16 fraction_3:16
e90f8530 6559 * (exponent bias 1024, hidden first one-bit)
60d50332
JH
6560 *
6561 * H fraction_1:16 sign:1 exp:15
6562 * fraction_3:16 fraction_2:16
6563 * fraction_5:16 fraction_4:16
6564 * fraction_7:16 fraction_6:16
e90f8530
JH
6565 * (exponent bias 16384, hidden first one-bit)
6566 * (available only on VAX, and only on Fortran?)
6567 *
6568 * The formats S, T and X are available on the Alpha (and Itanium,
6569 * also known as I64/IA64) and are equivalent with the IEEE-754 formats
6570 * binary32, binary64, and binary128 (commonly: float, double, long double).
6571 *
6572 * S sign:1 exp:8 mantissa:23
6573 * (exponent bias 127, hidden first one-bit)
6574 *
6575 * T sign:1 exp:11 mantissa:52
6576 * (exponent bias 1022, hidden first one-bit)
6577 *
6578 * X sign:1 exp:15 mantissa:112
6579 * (exponent bias 16382, hidden first one-bit)
60d50332 6580 *
60d50332 6581 */
a7157111
JH
6582
6583#ifdef DOUBLE_IS_VAX_FLOAT
6584# define DOUBLE_VAX_ENDIAN
6585#endif
6586
6587#ifdef DOUBLE_IS_IEEE_FORMAT
63a6ab05 6588/* All the basic IEEE formats have the implicit bit,
b6d9b423
JH
6589 * except for the x86 80-bit extended formats, which will undef this.
6590 * Also note that the IEEE 754 subnormals (formerly known as denormals)
6591 * do not have the implicit bit of one. */
a7157111
JH
6592# define NV_IMPLICIT_BIT
6593#endif
63a6ab05 6594
a7157111 6595#if defined(LONG_DOUBLEKIND) && LONG_DOUBLEKIND != LONG_DOUBLE_IS_DOUBLE
3fd106b1
JH
6596
6597# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN || \
6598 LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
1f02ab1d 6599 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
3fd106b1
JH
6600# define LONGDOUBLE_LITTLE_ENDIAN
6601# endif
6602
6603# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN || \
6604 LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN || \
1f02ab1d 6605 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
3fd106b1
JH
6606# define LONGDOUBLE_BIG_ENDIAN
6607# endif
6608
1f02ab1d
JH
6609# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE || \
6610 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
6611# define LONGDOUBLE_MIX_ENDIAN
6612# endif
6613
3fd106b1
JH
6614# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
6615 LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
6616# define LONGDOUBLE_X86_80_BIT
63a6ab05
JH
6617# ifdef USE_LONG_DOUBLE
6618# undef NV_IMPLICIT_BIT
f40ac91c 6619# define NV_X86_80_BIT
63a6ab05 6620# endif
3fd106b1
JH
6621# endif
6622
1f02ab1d
JH
6623# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE || \
6624 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE || \
6625 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE || \
6626 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
3fd106b1
JH
6627# define LONGDOUBLE_DOUBLEDOUBLE
6628# endif
6629
2c7d9883
JH
6630# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_VAX_H_FLOAT
6631# define LONGDOUBLE_VAX_ENDIAN
6632# endif
6633
f03a9d38 6634#endif /* LONG_DOUBLEKIND */
3fd106b1 6635
9e76e8dd
JH
6636#ifdef USE_QUADMATH /* assume quadmath endianness == native double endianness */
6637# if defined(DOUBLE_LITTLE_ENDIAN)
6638# define NV_LITTLE_ENDIAN
6639# elif defined(DOUBLE_BIG_ENDIAN)
6640# define NV_BIG_ENDIAN
6641# elif defined(DOUBLE_MIX_ENDIAN) /* stretch */
6642# define NV_MIX_ENDIAN
6643# endif
6644#elif NVSIZE == DOUBLESIZE
d701dd28
JH
6645# ifdef DOUBLE_LITTLE_ENDIAN
6646# define NV_LITTLE_ENDIAN
6647# endif
6648# ifdef DOUBLE_BIG_ENDIAN
6649# define NV_BIG_ENDIAN
6650# endif
804d4e64
JH
6651# ifdef DOUBLE_MIX_ENDIAN
6652# define NV_MIX_ENDIAN
6653# endif
a7157111
JH
6654# ifdef DOUBLE_VAX_ENDIAN
6655# define NV_VAX_ENDIAN
6656# endif
d701dd28
JH
6657#elif NVSIZE == LONG_DOUBLESIZE
6658# ifdef LONGDOUBLE_LITTLE_ENDIAN
6659# define NV_LITTLE_ENDIAN
6660# endif
6661# ifdef LONGDOUBLE_BIG_ENDIAN
6662# define NV_BIG_ENDIAN
6663# endif
1f02ab1d
JH
6664# ifdef LONGDOUBLE_MIX_ENDIAN
6665# define NV_MIX_ENDIAN
6666# endif
2c7d9883
JH
6667# ifdef LONGDOUBLE_VAX_ENDIAN
6668# define NV_VAX_ENDIAN
6669# endif
d701dd28
JH
6670#endif
6671
488307ff
S
6672/* We have somehow managed not to define the denormal/subnormal
6673 * detection.
6674 *
6675 * This may happen if the compiler doesn't expose the C99 math like
6676 * the fpclassify() without some special switches. Perl tries to
6677 * stay C89, so for example -std=c99 is not an option.
6678 *
6679 * The Perl_isinf() and Perl_isnan() should have been defined even if
6680 * the C99 isinf() and isnan() are unavailable, and the NV_MIN becomes
6681 * from the C89 DBL_MIN or moral equivalent. */
6682#if !defined(Perl_fp_class_denorm) && defined(Perl_isinf) && defined(Perl_isnan) && defined(NV_MIN)
6683# define Perl_fp_class_denorm(x) ((x) != 0.0 && !Perl_isinf(x) && !Perl_isnan(x) && PERL_ABS(x) < NV_MIN)
6684#endif
6685
6686/* This is not a great fallback: subnormals tests will fail,
6687 * but at least Perl will link and 99.999% of tests will work. */
6688#if !defined(Perl_fp_class_denorm)
6689# define Perl_fp_class_denorm(x) FALSE
6690#endif
6691
a7157111
JH
6692#ifdef DOUBLE_IS_IEEE_FORMAT
6693# define DOUBLE_HAS_INF
6694# define DOUBLE_HAS_NAN
6695#endif
6696
6697#ifdef DOUBLE_HAS_NAN
6698
9ee3aea9
JH
6699#ifdef DOINIT
6700
6701/* PL_inf and PL_nan initialization.
6702 *
6703 * For inf and nan initialization the ultimate fallback is dividing
6704 * one or zero by zero: however, some compilers will warn or even fail
6705 * on divide-by-zero, but hopefully something earlier will work.
6706 *
6707 * If you are thinking of using HUGE_VAL for infinity, or using
6708 * <math.h> functions to generate NV_INF (e.g. exp(1e9), log(-1.0)),
6709 * stop. Neither will work portably: HUGE_VAL can be just DBL_MAX,
6710 * and the math functions might be just generating DBL_MAX, or even zero.
6711 *
6712 * Also, do NOT try doing NV_NAN based on NV_INF and trying (NV_INF-NV_INF).
6713 * Though logically correct, some compilers (like Visual C 2003)
6714 * falsely misoptimize that to zero (x-x is always zero, right?)
6715 *
6716 * Finally, note that not all floating point formats define Inf (or NaN).
6717 * For the infinity a large number may be used instead. Operations that
6718 * under the IEEE floating point would return Inf or NaN may return
6719 * either large numbers (positive or negative), or they may cause
6720 * a floating point exception or some other fault.
6721 */
6722
6723/* The quadmath literals are anon structs which -Wc++-compat doesn't like. */
7347ee54 6724GCC_DIAG_IGNORE_DECL(-Wc++-compat);
9ee3aea9
JH
6725
6726# ifdef USE_QUADMATH
6727/* Cannot use HUGE_VALQ for PL_inf because not a compile-time
6728 * constant. */
6729INFNAN_NV_U8_DECL PL_inf = { 1.0Q/0.0Q };
6730# elif NVSIZE == LONG_DOUBLESIZE && defined(LONGDBLINFBYTES)
6731INFNAN_U8_NV_DECL PL_inf = { { LONGDBLINFBYTES } };
6732# elif NVSIZE == DOUBLESIZE && defined(DOUBLEINFBYTES)
6733INFNAN_U8_NV_DECL PL_inf = { { DOUBLEINFBYTES } };
6734# else
6735# if NVSIZE == LONG_DOUBLESIZE && defined(USE_LONG_DOUBLE)
6736# if defined(LDBL_INFINITY)
6737INFNAN_NV_U8_DECL PL_inf = { LDBL_INFINITY };
6738# elif defined(LDBL_INF)
6739INFNAN_NV_U8_DECL PL_inf = { LDBL_INF };
6740# elif defined(INFINITY)
6741INFNAN_NV_U8_DECL PL_inf = { (NV)INFINITY };
6742# elif defined(INF)
6743INFNAN_NV_U8_DECL PL_inf = { (NV)INF };
6744# else
6745INFNAN_NV_U8_DECL PL_inf = { 1.0L/0.0L }; /* keep last */
6746# endif
6747# else
6748# if defined(DBL_INFINITY)
6749INFNAN_NV_U8_DECL PL_inf = { DBL_INFINITY };
6750# elif defined(DBL_INF)
6751INFNAN_NV_U8_DECL PL_inf = { DBL_INF };
6752# elif defined(INFINITY) /* C99 */
6753INFNAN_NV_U8_DECL PL_inf = { (NV)INFINITY };
6754# elif defined(INF)
6755INFNAN_NV_U8_DECL PL_inf = { (NV)INF };
6756# else
6757INFNAN_NV_U8_DECL PL_inf = { 1.0/0.0 }; /* keep last */
6758# endif
6759# endif
6760# endif
6761
6762# ifdef USE_QUADMATH
6763/* Cannot use nanq("0") for PL_nan because not a compile-time
6764 * constant. */
6765INFNAN_NV_U8_DECL PL_nan = { 0.0Q/0.0Q };
6766# elif NVSIZE == LONG_DOUBLESIZE && defined(LONGDBLNANBYTES)
6767INFNAN_U8_NV_DECL PL_nan = { { LONGDBLNANBYTES } };
6768# elif NVSIZE == DOUBLESIZE && defined(DOUBLENANBYTES)
6769INFNAN_U8_NV_DECL PL_nan = { { DOUBLENANBYTES } };
6770# else
6771# if NVSIZE == LONG_DOUBLESIZE && defined(USE_LONG_DOUBLE)
6772# if defined(LDBL_NAN)
6773INFNAN_NV_U8_DECL PL_nan = { LDBL_NAN };
6774# elif defined(LDBL_QNAN)
6775INFNAN_NV_U8_DECL PL_nan = { LDBL_QNAN };
6776# elif defined(NAN)
6777INFNAN_NV_U8_DECL PL_nan = { (NV)NAN };
6778# else
6779INFNAN_NV_U8_DECL PL_nan = { 0.0L/0.0L }; /* keep last */
6780# endif
6781# else
6782# if defined(DBL_NAN)
6783INFNAN_NV_U8_DECL PL_nan = { DBL_NAN };
6784# elif defined(DBL_QNAN)
6785INFNAN_NV_U8_DECL PL_nan = { DBL_QNAN };
6786# elif defined(NAN) /* C99 */
6787INFNAN_NV_U8_DECL PL_nan = { (NV)NAN };
6788# else
6789INFNAN_NV_U8_DECL PL_nan = { 0.0/0.0 }; /* keep last */
6790# endif
6791# endif
6792# endif
6793
7347ee54 6794GCC_DIAG_RESTORE_DECL;
9ee3aea9
JH
6795
6796#else
6797
6798INFNAN_NV_U8_DECL PL_inf;
6799INFNAN_NV_U8_DECL PL_nan;
6800
6801#endif
6802
6803/* If you have not defined NV_INF/NV_NAN (like for example win32/win32.h),
6804 * we will define NV_INF/NV_NAN as the nv part of the global const
6805 * PL_inf/PL_nan. Note, however, that the preexisting NV_INF/NV_NAN
6806 * might not be a compile-time constant, in which case it cannot be
6807 * used to initialize PL_inf/PL_nan above. */
6808#ifndef NV_INF
6809# define NV_INF PL_inf.nv
6810#endif
6811#ifndef NV_NAN
6812# define NV_NAN PL_nan.nv
6813#endif
6814
5c255b3b
JH
6815/* NaNs (not-a-numbers) can carry payload bits, in addition to
6816 * "nan-ness". Part of the payload is the quiet/signaling bit.
6817 * To back up a bit (harhar):
6818 *
6819 * For IEEE 754 64-bit formats [1]:
6820 *
6821 * s 000 (mantissa all-zero) zero
6822 * s 000 (mantissa non-zero) subnormals (denormals)
6823 * s 001 ... 7fe normals
6824 * s 7ff q nan
6825 *
6826 * For IEEE 754 128-bit formats:
6827 *
6828 * s 0000 (mantissa all-zero) zero
6829 * s 0000 (mantissa non-zero) subnormals (denormals)
6830 * s 0001 ... 7ffe normals
6831 * s 7fff q nan
6832 *
6833 * [1] this looks like big-endian, but applies equally to little-endian.
6834 *
6835 * s = Sign bit. Yes, zeros and nans can have negative sign,
6836 * the interpretation is application-specific.
6837 *
6838 * q = Quietness bit, the interpretation is platform-specific.
453b60f1 6839 * Most platforms have the most significant bit being one
5c255b3b
JH
6840 * meaning quiet, but some (older mips, hppa) have the msb
6841 * being one meaning signaling. Note that the above means
6842 * that on most platforms there cannot be signaling nan with
453b60f1
JH
6843 * zero payload because that is identical with infinity;
6844 * while conversely on older mips/hppa there cannot be a quiet nan
6845 * because that is identical with infinity.
6846 *
6847 * Moreover, whether there is any behavioral difference
6848 * between quiet and signaling NaNs, depends on the platform.
5c255b3b
JH
6849 *
6850 * x86 80-bit extended precision is different, the mantissa bits:
6851 *
6852 * 63 62 61 30387+ pre-387 visual c
6853 * -------- ---- -------- --------
6854 * 0 0 0 invalid infinity
6855 * 0 0 1 invalid snan
6856 * 0 1 0 invalid snan
6857 * 0 1 1 invalid snan
6858 * 1 0 0 infinity snan 1.#INF
6859 * 1 0 1 snan 1.#SNAN
6860 * 1 1 0 qnan -1.#IND (x86 chooses this to negative)
6861 * 1 1 1 qnan 1.#QNAN
6862 *
6863 * This means that in this format there are 61 bits available
6864 * for the nan payload.
6865 *
3bbe6a60
JH
6866 * Note that the 32-bit x86 ABI cannot do signaling nans: the x87
6867 * simply cannot preserve the bit. You can either use the 80-bit
6868 * extended precision (long double, -Duselongdouble), or use x86-64.
6869 *
453b60f1
JH
6870 * In all platforms, the payload bytes (and bits, some of them are
6871 * often in a partial byte) themselves can be either all zero (x86),
6872 * all one (sparc or mips), or a mixture: in IEEE 754 128-bit double
6873 * or in a double-double, the first half of the payload can follow the
6874 * native double, while in the second half the payload can be all
6875 * zeros. (Therefore the mask for payload bits is not necessarily
6876 * identical to bit complement of the NaN.) Another way of putting
6877 * this: the payload for the default NaN might not be zero.
6878 *
6879 * For the x86 80-bit long doubles, the trailing bytes (the 80 bits
6880 * being 'packaged' in either 12 or 16 bytes) can be whatever random
6881 * garbage.
6882 *
6883 * Furthermore, the semantics of the sign bit on NaNs are platform-specific.
6884 * On normal floats, the sign bit being on means negative. But this may,
6885 * or may not, be reverted on NaNs: in other words, the default NaN might
6886 * have the sign bit on, and therefore look like negative if you look
6887 * at it at the bit level.
6888 *
6889 * NaN payloads are not propagated even on copies, or in arithmetics.
6890 * They *might* be, according to some rules, on your particular
6891 * cpu/os/compiler/libraries, but no guarantees.
6892 *
6893 * To summarize, on most platforms, and for 64-bit doubles
6894 * (using big-endian ordering here):
6895 *
6896 * [7FF8000000000000..7FFFFFFFFFFFFFFF] quiet
6897 * [FFF8000000000000..FFFFFFFFFFFFFFFF] quiet
6898 * [7FF0000000000001..7FF7FFFFFFFFFFFF] signaling
6899 * [FFF0000000000001..FFF7FFFFFFFFFFFF] signaling
6900 *
6901 * The C99 nan() is supposed to generate *quiet* NaNs.
6902 *
6903 * Note the asymmetry:
6904 * The 7FF0000000000000 is positive infinity,
6905 * the FFF0000000000000 is negative infinity.
6906 */
6907
6908/* NVMANTBITS is the number of _real_ mantissa bits in an NV.
5a14060a
JH
6909 * For the standard IEEE 754 fp this number is usually one less that
6910 * *DBL_MANT_DIG because of the implicit (aka hidden) bit, which isn't
6911 * real. For the 80-bit extended precision formats (x86*), the number
6912 * of mantissa bits... depends. For normal floats, it's 64. But for
6913 * the inf/nan, it's different (zero for inf, 61 for nan).
6914 * NVMANTBITS works for normal floats. */
6915
6916/* We do not want to include the quiet/signaling bit. */
6917#define NV_NAN_BITS (NVMANTBITS - 1)
5c255b3b 6918
f37aa828
JH
6919#if defined(USE_LONG_DOUBLE) && NVSIZE > DOUBLESIZE
6920# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
6921# define NV_NAN_QS_BYTE_OFFSET 13
6922# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
6923# define NV_NAN_QS_BYTE_OFFSET 2
6924# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
6925# define NV_NAN_QS_BYTE_OFFSET 7
6926# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
6927# define NV_NAN_QS_BYTE_OFFSET 2
1f02ab1d 6928# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
f37aa828 6929# define NV_NAN_QS_BYTE_OFFSET 13
1f02ab1d 6930# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
f37aa828 6931# define NV_NAN_QS_BYTE_OFFSET 1
1f02ab1d
JH
6932# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
6933# define NV_NAN_QS_BYTE_OFFSET 9
6934# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
6935# define NV_NAN_QS_BYTE_OFFSET 6
f37aa828
JH
6936# else
6937# error "Unexpected long double format"
6938# endif
6939#else
6940# ifdef USE_QUADMATH
6941# ifdef NV_LITTLE_ENDIAN
6942# define NV_NAN_QS_BYTE_OFFSET 13
6943# elif defined(NV_BIG_ENDIAN)
6944# define NV_NAN_QS_BYTE_OFFSET 2
6945# else
6946# error "Unexpected quadmath format"
6947# endif
6948# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
6949# define NV_NAN_QS_BYTE_OFFSET 2
6950# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
6951# define NV_NAN_QS_BYTE_OFFSET 1
6952# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
6953# define NV_NAN_QS_BYTE_OFFSET 6
6954# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
6955# define NV_NAN_QS_BYTE_OFFSET 1
6956# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
6957# define NV_NAN_QS_BYTE_OFFSET 13
6958# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
6959# define NV_NAN_QS_BYTE_OFFSET 2
6960# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
6961# define NV_NAN_QS_BYTE_OFFSET 2 /* bytes 4 5 6 7 0 1 2 3 (MSB 7) */
6962# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
6963# define NV_NAN_QS_BYTE_OFFSET 5 /* bytes 3 2 1 0 7 6 5 4 (MSB 7) */
6964# else
a7157111
JH
6965/* For example the VAX formats should never
6966 * get here because they do not have NaN. */
f37aa828
JH
6967# error "Unexpected double format"
6968# endif
6969#endif
6970/* NV_NAN_QS_BYTE is the byte to test for the quiet/signaling */
6971#define NV_NAN_QS_BYTE(nvp) (((U8*)(nvp))[NV_NAN_QS_BYTE_OFFSET])
6972/* NV_NAN_QS_BIT is the bit to test in the NV_NAN_QS_BYTE_OFFSET
6973 * for the quiet/signaling */
6974#if defined(USE_LONG_DOUBLE) && \
6975 (LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
6976 LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN)
6977# define NV_NAN_QS_BIT_SHIFT 6 /* 0x40 */
6978#elif defined(USE_LONG_DOUBLE) && \
1f02ab1d
JH
6979 (LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE || \
6980 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE || \
6981 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE || \
6982 LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE)
5a14060a 6983# define NV_NAN_QS_BIT_SHIFT 3 /* 0x08, but not via NV_NAN_BITS */
f37aa828 6984#else
5a14060a 6985# define NV_NAN_QS_BIT_SHIFT ((NV_NAN_BITS) % 8) /* usually 3, or 0x08 */
f37aa828
JH
6986#endif
6987#define NV_NAN_QS_BIT (1 << (NV_NAN_QS_BIT_SHIFT))
6988/* NV_NAN_QS_BIT_OFFSET is the bit offset from the beginning of a NV
6989 * (bytes ordered big-endianly) for the quiet/signaling bit
6990 * for the quiet/signaling */
6991#define NV_NAN_QS_BIT_OFFSET \
6992 (8 * (NV_NAN_QS_BYTE_OFFSET) + (NV_NAN_QS_BIT_SHIFT))
8122f9aa
JH
6993/* NV_NAN_QS_QUIET (always defined) is true if the NV_NAN_QS_QS_BIT being
6994 * on indicates quiet NaN. NV_NAN_QS_SIGNALING (also always defined)
6995 * is true if the NV_NAN_QS_BIT being on indicates signaling NaN. */
f37aa828
JH
6996#define NV_NAN_QS_QUIET \
6997 ((NV_NAN_QS_BYTE(PL_nan.u8) & NV_NAN_QS_BIT) == NV_NAN_QS_BIT)
6998#define NV_NAN_QS_SIGNALING (!(NV_NAN_QS_QUIET))
6999#define NV_NAN_QS_TEST(nvp) (NV_NAN_QS_BYTE(nvp) & NV_NAN_QS_BIT)
7000/* NV_NAN_IS_QUIET() returns true if the NV behind nvp is a NaN,
7001 * whether it is a quiet NaN, NV_NAN_IS_SIGNALING() if a signaling NaN.
7002 * Note however that these do not check whether the nvp is a NaN. */
7003#define NV_NAN_IS_QUIET(nvp) \
7004 (NV_NAN_QS_TEST(nvp) == (NV_NAN_QS_QUIET ? NV_NAN_QS_BIT : 0))
7005#define NV_NAN_IS_SIGNALING(nvp) \
7006 (NV_NAN_QS_TEST(nvp) == (NV_NAN_QS_QUIET ? 0 : NV_NAN_QS_BIT))
7007#define NV_NAN_SET_QUIET(nvp) \
7008 (NV_NAN_QS_QUIET ? \
7009 (NV_NAN_QS_BYTE(nvp) |= NV_NAN_QS_BIT) : \
7010 (NV_NAN_QS_BYTE(nvp) &= ~NV_NAN_QS_BIT))
7011#define NV_NAN_SET_SIGNALING(nvp) \
7012 (NV_NAN_QS_QUIET ? \
7013 (NV_NAN_QS_BYTE(nvp) &= ~NV_NAN_QS_BIT) : \
7014 (NV_NAN_QS_BYTE(nvp) |= NV_NAN_QS_BIT))
7015#define NV_NAN_QS_XOR(nvp) (NV_NAN_QS_BYTE(nvp) ^= NV_NAN_QS_BIT)
7016
d3137b5f
JH
7017/* NV_NAN_PAYLOAD_MASK: masking the nan payload bits.
7018 *
7019 * NV_NAN_PAYLOAD_PERM: permuting the nan payload bytes.
7020 * 0xFF means "don't go here".*/
7021
7022/* Shorthands to avoid typoses. */
1f02ab1d
JH
7023#define NV_NAN_PAYLOAD_MASK_SKIP_EIGHT \
7024 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0
7025#define NV_NAN_PAYLOAD_PERM_SKIP_EIGHT \
7026 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
d3137b5f
JH
7027#define NV_NAN_PAYLOAD_PERM_0_TO_7 \
7028 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
7029#define NV_NAN_PAYLOAD_PERM_7_TO_0 \
7030 0x7, 0x6, 0x5, 0x4, 0x3, 0x2, 0x1, 0x0
7031#define NV_NAN_PAYLOAD_MASK_IEEE_754_128_LE \
7032 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, \
7033 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00
7034#define NV_NAN_PAYLOAD_PERM_IEEE_754_128_LE \
7035 NV_NAN_PAYLOAD_PERM_0_TO_7, \
7036 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xFF, 0xFF
7037#define NV_NAN_PAYLOAD_MASK_IEEE_754_128_BE \
7038 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, \
7039 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
7040#define NV_NAN_PAYLOAD_PERM_IEEE_754_128_BE \
7041 0xFF, 0xFF, 0xd, 0xc, 0xb, 0xa, 0x9, 0x8, \
7042 NV_NAN_PAYLOAD_PERM_7_TO_0
7043#define NV_NAN_PAYLOAD_MASK_IEEE_754_64_LE \
7044 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x00
7045#define NV_NAN_PAYLOAD_PERM_IEEE_754_64_LE \
7046 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0xFF
7047#define NV_NAN_PAYLOAD_MASK_IEEE_754_64_BE \
7048 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
7049#define NV_NAN_PAYLOAD_PERM_IEEE_754_64_BE \
7050 0xFF, 0x6, 0x5, 0x4, 0x3, 0x2, 0x1, 0x0
7051
7052#if defined(USE_LONG_DOUBLE) && NVSIZE > DOUBLESIZE
7053# if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
7054# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_LE
7055# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_LE
7056# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
7057# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_BE
7058# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_BE
7059# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
a7ab4d96
JH
7060# if LONG_DOUBLESIZE == 10
7061# define NV_NAN_PAYLOAD_MASK \
7062 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, \
7063 0x00, 0x00
7064# define NV_NAN_PAYLOAD_PERM \
7065 NV_NAN_PAYLOAD_PERM_0_TO_7, 0xFF, 0xFF
7066# elif LONG_DOUBLESIZE == 12
d3137b5f
JH
7067# define NV_NAN_PAYLOAD_MASK \
7068 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, \
7069 0x00, 0x00, 0x00, 0x00
7070# define NV_NAN_PAYLOAD_PERM \
7071 NV_NAN_PAYLOAD_PERM_0_TO_7, 0xFF, 0xFF, 0xFF, 0xFF
7072# elif LONG_DOUBLESIZE == 16
7073# define NV_NAN_PAYLOAD_MASK \
7074 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, \
7075 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
7076# define NV_NAN_PAYLOAD_PERM \
7077 NV_NAN_PAYLOAD_PERM_0_TO_7, \
7078 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
7079# else
7080# error "Unexpected x86 80-bit little-endian long double format"
7081# endif
7082# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
a7ab4d96
JH
7083# if LONG_DOUBLESIZE == 10
7084# define NV_NAN_PAYLOAD_MASK \
7085 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, \
7086 0xff, 0xff
7087# define NV_NAN_PAYLOAD_PERM \
7088 NV_NAN_PAYLOAD_PERM_7_TO_0, 0xFF, 0xFF
7089# elif LONG_DOUBLESIZE == 12
d3137b5f
JH
7090# define NV_NAN_PAYLOAD_MASK \
7091 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, \
7092 0xff, 0xff, 0x00, 0x00
7093# define NV_NAN_PAYLOAD_PERM \
7094 NV_NAN_PAYLOAD_PERM_7_TO_0, 0xFF, 0xFF, 0xFF, 0xFF
7095# elif LONG_DOUBLESIZE == 16
7096# define NV_NAN_PAYLOAD_MASK \
7097 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, \
7098 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
7099# define NV_NAN_PAYLOAD_PERM \
7100 NV_NAN_PAYLOAD_PERM_7_TO_0, \
7101 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
7102# else
a7ab4d96 7103# error "Unexpected x86 80-bit big-endian long double format"
d3137b5f 7104# endif
1f02ab1d
JH
7105# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_LE
7106/* For double-double we assume only the first double (in LE or BE terms)
7107 * is used for NaN. */
d3137b5f 7108# define NV_NAN_PAYLOAD_MASK \
1f02ab1d 7109 NV_NAN_PAYLOAD_MASK_SKIP_EIGHT, NV_NAN_PAYLOAD_MASK_IEEE_754_64_LE
d3137b5f 7110# define NV_NAN_PAYLOAD_PERM \
1f02ab1d
JH
7111 NV_NAN_PAYLOAD_PERM_SKIP_EIGHT, NV_NAN_PAYLOAD_PERM_IEEE_754_64_LE
7112# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE
d3137b5f
JH
7113# define NV_NAN_PAYLOAD_MASK \
7114 NV_NAN_PAYLOAD_MASK_IEEE_754_64_BE
7115# define NV_NAN_PAYLOAD_PERM \
7116 NV_NAN_PAYLOAD_PERM_IEEE_754_64_BE
1f02ab1d
JH
7117# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LE_BE
7118# define NV_NAN_PAYLOAD_MASK \
7119 NV_NAN_PAYLOAD_MASK_IEEE_754_64_LE
7120# define NV_NAN_PAYLOAD_PERM \
7121 NV_NAN_PAYLOAD_PERM_IEEE_754_64_LE
7122# elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_LE
7123# define NV_NAN_PAYLOAD_MASK \
7124 NV_NAN_PAYLOAD_MASK_SKIP_EIGHT, NV_NAN_PAYLOAD_MASK_IEEE_754_64_BE
7125# define NV_NAN_PAYLOAD_PERM \
7126 NV_NAN_PAYLOAD_PERM_SKIP_EIGHT, NV_NAN_PAYLOAD_PERM_IEEE_754_64_BE
d3137b5f
JH
7127# else
7128# error "Unexpected long double format"
7129# endif
7130#else
7131# ifdef USE_QUADMATH /* quadmath is not long double */
7132# ifdef NV_LITTLE_ENDIAN
7133# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_LE
7134# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_LE
7135# elif defined(NV_BIG_ENDIAN)
7136# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_BE
7137# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_BE
7138# else
7139# error "Unexpected quadmath format"
7140# endif
7141# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN
7142# define NV_NAN_PAYLOAD_MASK 0xff, 0xff, 0x07, 0x00
7143# define NV_NAN_PAYLOAD_PERM 0x0, 0x1, 0x2, 0xFF
7144# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_BIG_ENDIAN
7145# define NV_NAN_PAYLOAD_MASK 0x00, 0x07, 0xff, 0xff
7146# define NV_NAN_PAYLOAD_PERM 0xFF, 0x2, 0x1, 0x0
7147# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN
7148# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_64_LE
7149# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_64_LE
7150# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_BIG_ENDIAN
7151# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_64_BE
7152# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_64_BE
7153# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
7154# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_LE
7155# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_LE
7156# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
7157# define NV_NAN_PAYLOAD_MASK NV_NAN_PAYLOAD_MASK_IEEE_754_128_BE
7158# define NV_NAN_PAYLOAD_PERM NV_NAN_PAYLOAD_PERM_IEEE_754_128_BE
7159# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
7160# define NV_NAN_PAYLOAD_MASK 0xff, 0xff, 0x07, 0x00, 0xff, 0xff, 0xff, 0xff
7161# define NV_NAN_PAYLOAD_PERM 0x4, 0x5, 0x6, 0xFF, 0x0, 0x1, 0x2, 0x3
7162# elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
7163# define NV_NAN_PAYLOAD_MASK 0xff, 0xff, 0xff, 0xff, 0x00, 0x07, 0xff, 0xff
7164# define NV_NAN_PAYLOAD_PERM 0x3, 0x2, 0x1, 0x0, 0xFF, 0x6, 0x5, 0x4
7165# else
7166# error "Unexpected double format"
7167# endif
7168#endif
a7157111
JH
7169
7170#endif /* DOUBLE_HAS_NAN */
7171
21553840 7172
10edeb5d
JH
7173/*
7174
7175 (KEEP THIS LAST IN perl.h!)
7176
7177 Mention
d460ef45 7178
43999f95 7179 NV_PRESERVES_UV
fe749a9f 7180
fe749a9f
JH
7181 HAS_MKSTEMP
7182 HAS_MKSTEMPS
7183 HAS_MKDTEMP
7184
49dabb45
JH
7185 HAS_GETCWD
7186
d59b5429 7187 HAS_MMAP
fe749a9f
JH
7188 HAS_MPROTECT
7189 HAS_MSYNC
1e8c3fde 7190 HAS_MADVISE
fe749a9f
JH
7191 HAS_MUNMAP
7192 I_SYSMMAN
7193 Mmap_t
7194
6b4667fc
A
7195 NVef
7196 NVff
7197 NVgf
7198
4e0554ec 7199 HAS_UALARM
2d736872 7200 HAS_USLEEP
4e0554ec
JH
7201
7202 HAS_SETITIMER
7203 HAS_GETITIMER
7204
7205 HAS_SENDMSG
7206 HAS_RECVMSG
7207 HAS_READV
7208 HAS_WRITEV
7209 I_SYSUIO
7210 HAS_STRUCT_MSGHDR
7211 HAS_STRUCT_CMSGHDR
7212
2765b840 7213 HAS_NL_LANGINFO
0a7020c9 7214
ae0e3d3b 7215 HAS_DIRFD
2765b840 7216
10edeb5d 7217 so that Configure picks them up.
ab3bbdeb 7218
10edeb5d 7219 (KEEP THIS LAST IN perl.h!)
3df15adc 7220
10edeb5d 7221*/
3df15adc 7222
85e6fe83 7223#endif /* Include guard */
e9a8c099
MHM
7224
7225/*
14d04a33 7226 * ex: set ts=8 sts=4 sw=4 et:
e9a8c099 7227 */