3 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
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.
16 * This file is being used for x2p stuff.
17 * Above symbol is defined via -D in 'x2p/Makefile.SH'
18 * Decouple x2p stuff from some of perls more extreme eccentricities.
23 #endif /* PERL_FOR_X2P */
31 /* this is used for functions which take a depth trailing
32 * argument under debugging */
34 #define _pDEPTH ,U32 depth
35 #define _aDEPTH ,depth
41 /* NOTE 1: that with gcc -std=c89 the __STDC_VERSION__ is *not* defined
42 * because the __STDC_VERSION__ became a thing only with C90. Therefore,
43 * with gcc, HAS_C99 will never become true as long as we use -std=c89.
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. */
47 #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
48 defined(_STDC_C99) || defined(__c99)
52 /* See L<perlguts/"The Perl API"> for detailed notes on
53 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
55 /* XXX NOTE that from here --> to <-- the same logic is
56 * repeated in makedef.pl, so be certain to update
57 * both places when editing. */
60 # if !defined(MULTIPLICITY)
65 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
66 # ifndef PERL_GLOBAL_STRUCT
67 # define PERL_GLOBAL_STRUCT
71 #ifdef PERL_GLOBAL_STRUCT
78 # ifndef PERL_IMPLICIT_CONTEXT
79 # define PERL_IMPLICIT_CONTEXT
83 /* undef WIN32 when building on Cygwin (for libwin32) - gph */
89 #if defined(__SYMBIAN32__) || (defined(__VC32__) && defined(WINS))
96 # include "symbian/symbian_proto.h"
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. */
102 #if defined(__SYMBIAN32__)
103 /* Symbian: need to work around the SDK features. *
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
110 /* Use the reentrant APIs like localtime_r and getpwent_r */
111 /* Win32 has naturally threadsafe libraries, no need to use any _r variants.
112 * XXX KEEP makedef.pl copy of this code in sync */
113 #if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(NETWARE) && !defined(WIN32)
114 # define USE_REENTRANT_API
117 /* <--- here ends the logic shared by perl.h and makedef.pl */
119 #undef START_EXTERN_C
123 # define START_EXTERN_C extern "C" {
124 # define END_EXTERN_C }
125 # define EXTERN_C extern "C"
127 # define START_EXTERN_C
128 # define END_EXTERN_C
129 # define EXTERN_C extern
132 /* Fallback definitions in case we don't have definitions from config.h.
133 This should only matter for systems that don't use Configure and
134 haven't been modified to define PERL_STATIC_INLINE yet.
136 #if !defined(PERL_STATIC_INLINE)
137 # ifdef HAS_STATIC_INLINE
138 # define PERL_STATIC_INLINE static inline
140 # define PERL_STATIC_INLINE static
144 #if defined(PERL_GLOBAL_STRUCT) && !defined(PERL_GET_VARS)
145 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
146 EXTERN_C struct perl_vars* Perl_GetVarsPrivate();
147 # define PERL_GET_VARS() Perl_GetVarsPrivate() /* see miniperlmain.c */
149 # define PERL_GET_VARS() PL_VarsPtr
153 /* this used to be off by default, now its on, see perlio.h */
154 #define PERLIO_FUNCS_CONST
156 #define pVAR struct perl_vars* my_vars PERL_UNUSED_DECL
158 #ifdef PERL_GLOBAL_STRUCT
159 # define dVAR pVAR = (struct perl_vars*)PERL_GET_VARS()
164 #ifdef PERL_IMPLICIT_CONTEXT
165 # ifndef MULTIPLICITY
166 # define MULTIPLICITY
168 # define tTHX PerlInterpreter*
169 # define pTHX tTHX my_perl PERL_UNUSED_DECL
170 # define aTHX my_perl
171 # define aTHXa(a) aTHX = (tTHX)a
172 # ifdef PERL_GLOBAL_STRUCT
173 # define dTHXa(a) dVAR; pTHX = (tTHX)a
175 # define dTHXa(a) pTHX = (tTHX)a
177 # ifdef PERL_GLOBAL_STRUCT
178 # define dTHX dVAR; pTHX = PERL_GET_THX
180 # define dTHX pTHX = PERL_GET_THX
194 # if defined(DEBUGGING) && !defined(PERL_TRACK_MEMPOOL)
195 # define PERL_TRACK_MEMPOOL
198 # undef PERL_TRACK_MEMPOOL
202 # define dTHX_DEBUGGING dTHX
204 # define dTHX_DEBUGGING dNOOP
207 #define STATIC static
210 /* Do not use these macros. They were part of PERL_OBJECT, which was an
211 * implementation of multiplicity using C++ objects. They have been left
212 * here solely for the sake of XS code which has incorrectly
215 #define CPERLscope(x) x
216 #define CPERLarg void
219 #define PERL_OBJECT_THIS
220 #define _PERL_OBJECT_THIS
221 #define PERL_OBJECT_THIS_
222 #define CALL_FPTR(fptr) (*fptr)
223 #define MEMBER_TO_FPTR(name) name
224 #endif /* !PERL_CORE */
226 #define CALLRUNOPS PL_runops
228 #define CALLREGCOMP(sv, flags) Perl_pregcomp(aTHX_ (sv),(flags))
230 #define CALLREGCOMP_ENG(prog, sv, flags) (prog)->comp(aTHX_ sv, flags)
231 #define CALLREGEXEC(prog,stringarg,strend,strbeg,minend,sv,data,flags) \
232 RX_ENGINE(prog)->exec(aTHX_ (prog),(stringarg),(strend), \
233 (strbeg),(minend),(sv),(data),(flags))
234 #define CALLREG_INTUIT_START(prog,sv,strbeg,strpos,strend,flags,data) \
235 RX_ENGINE(prog)->intuit(aTHX_ (prog), (sv), (strbeg), (strpos), \
236 (strend),(flags),(data))
237 #define CALLREG_INTUIT_STRING(prog) \
238 RX_ENGINE(prog)->checkstr(aTHX_ (prog))
240 #define CALLREGFREE(prog) \
241 Perl_pregfree(aTHX_ (prog))
243 #define CALLREGFREE_PVT(prog) \
244 if(prog && RX_ENGINE(prog)) RX_ENGINE(prog)->rxfree(aTHX_ (prog))
246 #define CALLREG_NUMBUF_FETCH(rx,paren,usesv) \
247 RX_ENGINE(rx)->numbered_buff_FETCH(aTHX_ (rx),(paren),(usesv))
249 #define CALLREG_NUMBUF_STORE(rx,paren,value) \
250 RX_ENGINE(rx)->numbered_buff_STORE(aTHX_ (rx),(paren),(value))
252 #define CALLREG_NUMBUF_LENGTH(rx,sv,paren) \
253 RX_ENGINE(rx)->numbered_buff_LENGTH(aTHX_ (rx),(sv),(paren))
255 #define CALLREG_NAMED_BUFF_FETCH(rx, key, flags) \
256 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), NULL, ((flags) | RXapif_FETCH))
258 #define CALLREG_NAMED_BUFF_STORE(rx, key, value, flags) \
259 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), (value), ((flags) | RXapif_STORE))
261 #define CALLREG_NAMED_BUFF_DELETE(rx, key, flags) \
262 RX_ENGINE(rx)->named_buff(aTHX_ (rx),(key), NULL, ((flags) | RXapif_DELETE))
264 #define CALLREG_NAMED_BUFF_CLEAR(rx, flags) \
265 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, ((flags) | RXapif_CLEAR))
267 #define CALLREG_NAMED_BUFF_EXISTS(rx, key, flags) \
268 RX_ENGINE(rx)->named_buff(aTHX_ (rx), (key), NULL, ((flags) | RXapif_EXISTS))
270 #define CALLREG_NAMED_BUFF_FIRSTKEY(rx, flags) \
271 RX_ENGINE(rx)->named_buff_iter(aTHX_ (rx), NULL, ((flags) | RXapif_FIRSTKEY))
273 #define CALLREG_NAMED_BUFF_NEXTKEY(rx, lastkey, flags) \
274 RX_ENGINE(rx)->named_buff_iter(aTHX_ (rx), (lastkey), ((flags) | RXapif_NEXTKEY))
276 #define CALLREG_NAMED_BUFF_SCALAR(rx, flags) \
277 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, ((flags) | RXapif_SCALAR))
279 #define CALLREG_NAMED_BUFF_COUNT(rx) \
280 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, RXapif_REGNAMES_COUNT)
282 #define CALLREG_NAMED_BUFF_ALL(rx, flags) \
283 RX_ENGINE(rx)->named_buff(aTHX_ (rx), NULL, NULL, flags)
285 #define CALLREG_PACKAGE(rx) \
286 RX_ENGINE(rx)->qr_package(aTHX_ (rx))
288 #if defined(USE_ITHREADS)
289 #define CALLREGDUPE(prog,param) \
290 Perl_re_dup(aTHX_ (prog),(param))
292 #define CALLREGDUPE_PVT(prog,param) \
293 (prog ? RX_ENGINE(prog)->dupe(aTHX_ (prog),(param)) \
297 /* In case Configure was not used (we are using a "canned config"
298 * such as Win32, or a cross-compilation setup, for example) try going
299 * by the gcc major and minor versions. One useful URL is
300 * http://www.ohse.de/uwe/articles/gcc-attributes.html,
301 * but contrary to this information warn_unused_result seems
302 * not to be in gcc 3.3.5, at least. --jhi
303 * Also, when building extensions with an installed perl, this allows
304 * the user to upgrade gcc and get the right attributes, rather than
305 * relying on the list generated at Configure time. --AD
306 * Set these up now otherwise we get confused when some of the <*thread.h>
307 * includes below indirectly pull in <perlio.h> (which needs to know if we
308 * have HASATTRIBUTE_FORMAT).
312 #if defined __GNUC__ && !defined(__INTEL_COMPILER)
313 # if __GNUC__ == 3 && __GNUC_MINOR__ >= 1 || __GNUC__ > 3 /* 3.1 -> */
314 # define HASATTRIBUTE_DEPRECATED
316 # if __GNUC__ >= 3 /* 3.0 -> */ /* XXX Verify this version */
317 # define HASATTRIBUTE_FORMAT
318 # if defined __MINGW32__
319 # define PRINTF_FORMAT_NULL_OK
322 # if __GNUC__ >= 3 /* 3.0 -> */
323 # define HASATTRIBUTE_MALLOC
325 # if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || __GNUC__ > 3 /* 3.3 -> */
326 # define HASATTRIBUTE_NONNULL
328 # if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 || __GNUC__ > 2 /* 2.5 -> */
329 # define HASATTRIBUTE_NORETURN
331 # if __GNUC__ >= 3 /* gcc 3.0 -> */
332 # define HASATTRIBUTE_PURE
334 # if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
335 # define HASATTRIBUTE_UNUSED
337 # if __GNUC__ == 3 && __GNUC_MINOR__ == 3 && !defined(__cplusplus)
338 # define HASATTRIBUTE_UNUSED /* gcc-3.3, but not g++-3.3. */
340 # if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3 /* 3.4 -> */
341 # define HASATTRIBUTE_WARN_UNUSED_RESULT
344 #endif /* #ifndef PERL_MICRO */
346 #ifdef HASATTRIBUTE_DEPRECATED
347 # define __attribute__deprecated__ __attribute__((deprecated))
349 #ifdef HASATTRIBUTE_FORMAT
350 # define __attribute__format__(x,y,z) __attribute__((format(x,y,z)))
352 #ifdef HASATTRIBUTE_MALLOC
353 # define __attribute__malloc__ __attribute__((__malloc__))
355 #ifdef HASATTRIBUTE_NONNULL
356 # define __attribute__nonnull__(a) __attribute__((nonnull(a)))
358 #ifdef HASATTRIBUTE_NORETURN
359 # define __attribute__noreturn__ __attribute__((noreturn))
361 #ifdef HASATTRIBUTE_PURE
362 # define __attribute__pure__ __attribute__((pure))
364 #ifdef HASATTRIBUTE_UNUSED
365 # define __attribute__unused__ __attribute__((unused))
367 #ifdef HASATTRIBUTE_WARN_UNUSED_RESULT
368 # define __attribute__warn_unused_result__ __attribute__((warn_unused_result))
371 /* If we haven't defined the attributes yet, define them to blank. */
372 #ifndef __attribute__deprecated__
373 # define __attribute__deprecated__
375 #ifndef __attribute__format__
376 # define __attribute__format__(x,y,z)
378 #ifndef __attribute__malloc__
379 # define __attribute__malloc__
381 #ifndef __attribute__nonnull__
382 # define __attribute__nonnull__(a)
384 #ifndef __attribute__noreturn__
385 # define __attribute__noreturn__
387 #ifndef __attribute__pure__
388 # define __attribute__pure__
390 #ifndef __attribute__unused__
391 # define __attribute__unused__
393 #ifndef __attribute__warn_unused_result__
394 # define __attribute__warn_unused_result__
397 /* Some OS warn on NULL format to printf */
398 #ifdef PRINTF_FORMAT_NULL_OK
399 # define __attribute__format__null_ok__(x,y,z) __attribute__format__(x,y,z)
401 # define __attribute__format__null_ok__(x,y,z)
405 * Because of backward compatibility reasons the PERL_UNUSED_DECL
406 * cannot be changed from postfix to PERL_UNUSED_DECL(x). Sigh.
408 * Note that there are C compilers such as MetroWerks CodeWarrior
409 * which do not have an "inlined" way (like the gcc __attribute__) of
410 * marking unused variables (they need e.g. a #pragma) and therefore
411 * cpp macros like PERL_UNUSED_DECL cannot work for this purpose, even
412 * if it were PERL_UNUSED_DECL(x), which it cannot be (see above).
416 #ifndef PERL_UNUSED_DECL
417 # define PERL_UNUSED_DECL __attribute__unused__
421 * for silencing unused variables that are actually used most of the time,
422 * but we cannot quite get rid of, such as "ax" in PPCODE+noargs xsubs,
423 * or variables/arguments that are used only in certain configurations.
425 #ifndef PERL_UNUSED_ARG
426 # define PERL_UNUSED_ARG(x) ((void)sizeof(x))
428 #ifndef PERL_UNUSED_VAR
429 # define PERL_UNUSED_VAR(x) ((void)sizeof(x))
432 #if defined(USE_ITHREADS) || defined(PERL_GLOBAL_STRUCT)
433 # define PERL_UNUSED_CONTEXT PERL_UNUSED_ARG(my_perl)
435 # define PERL_UNUSED_CONTEXT
438 /* gcc (-ansi) -pedantic doesn't allow gcc statement expressions,
439 * g++ allows them but seems to have problems with them
440 * (insane errors ensue).
441 * g++ does not give insane errors now (RMB 2008-01-30, gcc 4.2.2).
443 #if defined(PERL_GCC_PEDANTIC) || \
444 (defined(__GNUC__) && defined(__cplusplus) && \
445 ((__GNUC__ < 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ < 2))))
446 # ifndef PERL_GCC_BRACE_GROUPS_FORBIDDEN
447 # define PERL_GCC_BRACE_GROUPS_FORBIDDEN
451 /* Use PERL_UNUSED_RESULT() to suppress the warnings about unused results
452 * of function calls, e.g. PERL_UNUSED_RESULT(foo(a, b)).
454 * The main reason for this is that the combination of gcc -Wunused-result
455 * (part of -Wall) and the __attribute__((warn_unused_result)) cannot
456 * be silenced with casting to void. This causes trouble when the system
457 * header files use the attribute.
459 * Use PERL_UNUSED_RESULT sparingly, though, since usually the warning
460 * is there for a good reason: you might lose success/failure information,
461 * or leak resources, or changes in resources.
463 * But sometimes you just want to ignore the return value, e.g. on
464 * codepaths soon ending up in abort, or in "best effort" attempts,
465 * or in situations where there is no good way to handle failures.
467 * Sometimes PERL_UNUSED_RESULT might not be the most natural way:
468 * another possibility is that you can capture the return value
469 * and use PERL_UNUSED_VAR on that.
471 * The __typeof__() is used instead of typeof() since typeof() is not
472 * available under strict C89, and because of compilers masquerading
473 * as gcc (clang and icc), we want exactly the gcc extension
474 * __typeof__ and nothing else.
476 #ifndef PERL_UNUSED_RESULT
477 # if defined(__GNUC__) && defined(HASATTRIBUTE_WARN_UNUSED_RESULT)
478 # define PERL_UNUSED_RESULT(v) STMT_START { __typeof__(v) z = (v); (void)sizeof(z); } STMT_END
480 # define PERL_UNUSED_RESULT(v) ((void)(v))
484 #if defined(_MSC_VER)
485 /* XXX older MSVC versions have a smallish macro buffer */
486 #define PERL_SMALL_MACRO_BUFFER
489 /* on gcc (and clang), specify that a warning should be temporarily
492 * GCC_DIAG_IGNORE_DECL(-Wmultichar);
494 * GCC_DIAG_RESTORE_DECL;
496 * based on http://dbp-consulting.com/tutorials/SuppressingGCCWarnings.html
498 * Note that "pragma GCC diagnostic push/pop" was added in GCC 4.6, Mar 2011;
499 * clang only pretends to be GCC 4.2, but still supports push/pop.
501 * Note on usage: all macros must be used at a place where a declaration
502 * or statement can occur, i.e., not in the middle of an expression.
503 * *_DIAG_IGNORE() and *_DIAG_RESTORE can be used in any such place, but
504 * must be used without a following semicolon. *_DIAG_IGNORE_DECL() and
505 * *_DIAG_RESTORE_DECL must be used with a following semicolon, and behave
506 * syntactically as declarations (like dNOOP). *_DIAG_IGNORE_STMT()
507 * and *_DIAG_RESTORE_STMT must be used with a following semicolon,
508 * and behave syntactically as statements (like NOOP).
512 #if defined(__clang__) || defined(__clang) || \
513 (defined( __GNUC__) && ((__GNUC__ * 100) + __GNUC_MINOR__) >= 406)
514 # define GCC_DIAG_PRAGMA(x) _Pragma (#x)
515 /* clang has "clang diagnostic" pragmas, but also understands gcc. */
516 # define GCC_DIAG_IGNORE(x) _Pragma("GCC diagnostic push") \
517 GCC_DIAG_PRAGMA(GCC diagnostic ignored #x)
518 # define GCC_DIAG_RESTORE _Pragma("GCC diagnostic pop")
520 # define GCC_DIAG_IGNORE(w)
521 # define GCC_DIAG_RESTORE
523 #define GCC_DIAG_IGNORE_DECL(x) GCC_DIAG_IGNORE(x) dNOOP
524 #define GCC_DIAG_RESTORE_DECL GCC_DIAG_RESTORE dNOOP
525 #define GCC_DIAG_IGNORE_STMT(x) GCC_DIAG_IGNORE(x) NOOP
526 #define GCC_DIAG_RESTORE_STMT GCC_DIAG_RESTORE NOOP
527 /* for clang specific pragmas */
528 #if defined(__clang__) || defined(__clang)
529 # define CLANG_DIAG_PRAGMA(x) _Pragma (#x)
530 # define CLANG_DIAG_IGNORE(x) _Pragma("clang diagnostic push") \
531 CLANG_DIAG_PRAGMA(clang diagnostic ignored #x)
532 # define CLANG_DIAG_RESTORE _Pragma("clang diagnostic pop")
534 # define CLANG_DIAG_IGNORE(w)
535 # define CLANG_DIAG_RESTORE
537 #define CLANG_DIAG_IGNORE_DECL(x) CLANG_DIAG_IGNORE(x) dNOOP
538 #define CLANG_DIAG_RESTORE_DECL CLANG_DIAG_RESTORE dNOOP
539 #define CLANG_DIAG_IGNORE_STMT(x) CLANG_DIAG_IGNORE(x) NOOP
540 #define CLANG_DIAG_RESTORE_STMT CLANG_DIAG_RESTORE NOOP
542 #if defined(_MSC_VER) && (_MSC_VER >= 1300)
543 # define MSVC_DIAG_IGNORE(x) __pragma(warning(push)) \
544 __pragma(warning(disable : x))
545 # define MSVC_DIAG_RESTORE __pragma(warning(pop))
547 # define MSVC_DIAG_IGNORE(x)
548 # define MSVC_DIAG_RESTORE
550 #define MSVC_DIAG_IGNORE_DECL(x) MSVC_DIAG_IGNORE(x) dNOOP
551 #define MSVC_DIAG_RESTORE_DECL MSVC_DIAG_RESTORE dNOOP
552 #define MSVC_DIAG_IGNORE_STMT(x) MSVC_DIAG_IGNORE(x) NOOP
553 #define MSVC_DIAG_RESTORE_STMT MSVC_DIAG_RESTORE NOOP
555 #define NOOP /*EMPTY*/(void)0
556 #define dNOOP struct Perl___notused_struct
559 /* Don't bother defining tTHX ; using it outside
560 * code guarded by PERL_IMPLICIT_CONTEXT is an error.
566 # define aTHXa(a) NOOP
567 # define dTHXa(a) dNOOP
585 /* these are only defined for compatibility; should not be used internally */
586 #if !defined(pTHXo) && !defined(PERL_CORE)
588 # define pTHXo_ pTHX_
590 # define aTHXo_ aTHX_
592 # define dTHXoa(x) dTHXa(x)
596 # define pTHXx PerlInterpreter *my_perl
597 # define pTHXx_ pTHXx,
598 # define aTHXx my_perl
599 # define aTHXx_ aTHXx,
603 /* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
604 * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
605 * dTHXs is therefore needed for all functions using PerlIO_foo(). */
606 #ifdef PERL_IMPLICIT_SYS
607 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
608 # define dTHXs dVAR; dTHX
613 # ifdef PERL_GLOBAL_STRUCT_PRIVATE
620 #if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN) && !defined(__cplusplus)
621 # ifndef PERL_USE_GCC_BRACE_GROUPS
622 # define PERL_USE_GCC_BRACE_GROUPS
627 =head1 Miscellaneous Functions
629 =for apidoc AmnUu|void|STMT_START
631 STMT_START { statements; } STMT_END;
633 can be used as a single statement, as in
635 if (x) STMT_START { ... } STMT_END; else ...
637 These are often used in macro definitions. Note that you can't return a value
640 =for apidoc AmnUhu|void|STMT_END
644 Trying to select a version that gives no warnings...
646 #if !(defined(STMT_START) && defined(STMT_END))
647 # ifdef PERL_USE_GCC_BRACE_GROUPS
648 # define STMT_START (void)( /* gcc supports "({ STATEMENTS; })" */
651 # define STMT_START do
652 # define STMT_END while (0)
656 #ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
657 # define BYTEORDER 0x1234
660 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
667 * The following contortions are brought to you on behalf of all the
668 * standards, semi-standards, de facto standards, not-so-de-facto standards
669 * of the world, as well as all the other botches anyone ever thought of.
670 * The basic theory is that if we work hard enough here, the rest of the
671 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
674 /* define this once if either system, instead of cluttering up the src */
675 #if defined(MSDOS) || defined(WIN32) || defined(NETWARE)
679 /* These exist only for back-compat with XS modules. */
682 #define CAN_PROTOTYPE
689 /* By compiling a perl with -DNO_TAINT_SUPPORT or -DSILENT_NO_TAINT_SUPPORT,
690 * you get a perl without taint support, but doubtlessly with a lesser
691 * degree of support. Do not do so unless you know exactly what it means
692 * technically, have a good reason to do so, and know exactly how the
693 * perl will be used. perls with -DSILENT_NO_TAINT_SUPPORT are considered
694 * a potential security risk due to flat out ignoring the security-relevant
695 * taint flags. This being said, a perl without taint support compiled in
696 * has marginal run-time performance benefits.
697 * SILENT_NO_TAINT_SUPPORT implies NO_TAINT_SUPPORT.
698 * SILENT_NO_TAINT_SUPPORT is the same as NO_TAINT_SUPPORT except it
699 * silently ignores -t/-T instead of throwing an exception.
701 * DANGER! Using NO_TAINT_SUPPORT or SILENT_NO_TAINT_SUPPORT
702 * voids your nonexistent warranty!
704 #if defined(SILENT_NO_TAINT_SUPPORT) && !defined(NO_TAINT_SUPPORT)
705 # define NO_TAINT_SUPPORT 1
708 /* NO_TAINT_SUPPORT can be set to transform virtually all taint-related
709 * operations into no-ops for a very modest speed-up. Enable only if you
710 * know what you're doing: tests and CPAN modules' tests are bound to fail.
712 #ifdef NO_TAINT_SUPPORT
714 # define TAINT_NOT NOOP
715 # define TAINT_IF(c) NOOP
716 # define TAINT_ENV() NOOP
717 # define TAINT_PROPER(s) NOOP
718 # define TAINT_set(s) NOOP
720 # define TAINTING_get 0
721 # define TAINTING_set(s) NOOP
722 # define TAINT_WARN_get 0
723 # define TAINT_WARN_set(s) NOOP
725 /* Set to tainted if we are running under tainting mode */
726 # define TAINT (PL_tainted = PL_tainting)
728 # define TAINT_NOT (PL_tainted = FALSE) /* Untaint */
729 # define TAINT_IF(c) if (UNLIKELY(c)) { TAINT; } /* Conditionally taint */
730 # define TAINT_ENV() if (UNLIKELY(PL_tainting)) { taint_env(); }
731 /* croak or warn if tainting */
732 # define TAINT_PROPER(s) if (UNLIKELY(PL_tainting)) { \
733 taint_proper(NULL, s); \
735 # define TAINT_set(s) (PL_tainted = (s))
736 # define TAINT_get (cBOOL(UNLIKELY(PL_tainted))) /* Is something tainted? */
737 # define TAINTING_get (cBOOL(UNLIKELY(PL_tainting))) /* Is taint checking enabled? */
738 # define TAINTING_set(s) (PL_tainting = (s))
739 # define TAINT_WARN_get (PL_taint_warn) /* FALSE => tainting violations
743 # define TAINT_WARN_set(s) (PL_taint_warn = (s))
746 /* flags used internally only within pp_subst and pp_substcont */
748 # define SUBST_TAINT_STR 1 /* string tainted */
749 # define SUBST_TAINT_PAT 2 /* pattern tainted */
750 # define SUBST_TAINT_REPL 4 /* replacement tainted */
751 # define SUBST_TAINT_RETAINT 8 /* use re'taint' in scope */
752 # define SUBST_TAINT_BOOLRET 16 /* return is boolean (don't taint) */
755 /* XXX All process group stuff is handled in pp_sys.c. Should these
756 defines move there? If so, I could simplify this a lot. --AD 9/96.
758 /* Process group stuff changed from traditional BSD to POSIX.
759 perlfunc.pod documents the traditional BSD-style syntax, so we'll
760 try to preserve that, if possible.
763 # define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
764 #elif defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
765 # define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
766 #elif defined(HAS_SETPGRP2)
767 # define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
769 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
770 # define HAS_SETPGRP /* Well, effectively it does . . . */
773 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
774 our life easier :-) so we'll try it.
777 # define BSD_GETPGRP(pid) getpgid((pid))
778 #elif defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
779 # define BSD_GETPGRP(pid) getpgrp((pid))
780 #elif defined(HAS_GETPGRP2)
781 # define BSD_GETPGRP(pid) getpgrp2((pid))
783 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
784 # define HAS_GETPGRP /* Well, effectively it does . . . */
787 /* These are not exact synonyms, since setpgrp() and getpgrp() may
788 have different behaviors, but perl.h used to define USE_BSDPGRP
789 (prior to 5.003_05) so some extension might depend on it.
791 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
797 /* HP-UX 10.X CMA (Common Multithreaded Architecture) insists that
798 pthread.h must be included before all other header files.
800 #if defined(USE_ITHREADS) && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
801 # include <pthread.h>
804 #include <sys/types.h>
806 /* EVC 4 SDK headers includes a bad definition of MB_CUR_MAX in stdlib.h
807 which is included from stdarg.h. Bad definition not present in SD 2008
808 SDK headers. wince.h is not yet included, so we cant fix this from there
809 since by then MB_CUR_MAX will be defined from stdlib.h.
810 cewchar.h includes a correct definition of MB_CUR_MAX and it is copied here
811 since cewchar.h can't be included this early */
812 #if defined(UNDER_CE) && (_MSC_VER < 1300)
813 # define MB_CUR_MAX 1uL
830 #ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
843 # include <xlocale.h>
846 /* If not forbidden, we enable locale handling if either 1) the POSIX 2008
847 * functions are available, or 2) just the setlocale() function. This logic is
848 * repeated in t/loc_tools.pl and makedef.pl; The three should be kept in
850 #if ! defined(NO_LOCALE)
852 # if ! defined(NO_POSIX_2008_LOCALE) \
853 && defined(HAS_NEWLOCALE) \
854 && defined(HAS_USELOCALE) \
855 && defined(HAS_DUPLOCALE) \
856 && defined(HAS_FREELOCALE) \
857 && defined(LC_ALL_MASK)
859 /* For simplicity, the code is written to assume that any platform advanced
860 * enough to have the Posix 2008 locale functions has LC_ALL. The final
861 * test above makes sure that assumption is valid */
863 # define HAS_POSIX_2008_LOCALE
865 # elif defined(HAS_SETLOCALE)
871 # define HAS_SKIP_LOCALE_INIT /* Solely for XS code to test for this
873 # if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
874 && defined(HAS_STRXFRM)
875 # define USE_LOCALE_COLLATE
877 # if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
878 # define USE_LOCALE_CTYPE
880 # if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
881 # define USE_LOCALE_NUMERIC
883 # if !defined(NO_LOCALE_MESSAGES) && defined(LC_MESSAGES)
884 # define USE_LOCALE_MESSAGES
886 # if !defined(NO_LOCALE_MONETARY) && defined(LC_MONETARY)
887 # define USE_LOCALE_MONETARY
889 # if !defined(NO_LOCALE_TIME) && defined(LC_TIME)
890 # define USE_LOCALE_TIME
892 # if !defined(NO_LOCALE_ADDRESS) && defined(LC_ADDRESS)
893 # define USE_LOCALE_ADDRESS
895 # if !defined(NO_LOCALE_IDENTIFICATION) && defined(LC_IDENTIFICATION)
896 # define USE_LOCALE_IDENTIFICATION
898 # if !defined(NO_LOCALE_MEASUREMENT) && defined(LC_MEASUREMENT)
899 # define USE_LOCALE_MEASUREMENT
901 # if !defined(NO_LOCALE_PAPER) && defined(LC_PAPER)
902 # define USE_LOCALE_PAPER
904 # if !defined(NO_LOCALE_TELEPHONE) && defined(LC_TELEPHONE)
905 # define USE_LOCALE_TELEPHONE
908 /* XXX The next few defines are unfortunately duplicated in makedef.pl, and
909 * changes here MUST also be made there */
911 # if ! defined(HAS_SETLOCALE) && defined(HAS_POSIX_2008_LOCALE)
912 # define USE_POSIX_2008_LOCALE
913 # ifndef USE_THREAD_SAFE_LOCALE
914 # define USE_THREAD_SAFE_LOCALE
917 * -DUSE_THREAD_SAFE_LOCALE, will do so even
918 * on unthreaded builds */
919 # elif (defined(USE_ITHREADS) || defined(USE_THREAD_SAFE_LOCALE)) \
920 && ( defined(HAS_POSIX_2008_LOCALE) \
921 || (defined(WIN32) && defined(_MSC_VER) && _MSC_VER >= 1400)) \
922 && ! defined(NO_THREAD_SAFE_LOCALE)
923 # ifndef USE_THREAD_SAFE_LOCALE
924 # define USE_THREAD_SAFE_LOCALE
926 # ifdef HAS_POSIX_2008_LOCALE
927 # define USE_POSIX_2008_LOCALE
932 /* Microsoft documentation reads in the change log for VS 2015:
933 * "The localeconv function declared in locale.h now works correctly when
934 * per-thread locale is enabled. In previous versions of the library, this
935 * function would return the lconv data for the global locale, not the
938 #if defined(WIN32) && defined(USE_THREAD_SAFE_LOCALE) && _MSC_VER < 1900
939 # define TS_W32_BROKEN_LOCALECONV
945 # ifdef PARAM_NEEDS_TYPES
946 # include <sys/types.h>
948 # include <sys/param.h>
951 /* On BSD-derived systems, <sys/param.h> defines BSD to a year-month
952 value something like 199306. This may be useful if no more-specific
953 feature test is available.
961 /* Use all the "standard" definitions */
964 /* If this causes problems, set i_unistd=undef in the hint file. */
966 # if defined(__amigaos4__)
968 # include <netinet/in.h>
972 # if defined(__amigaos4__)
973 /* Under AmigaOS 4 newlib.library provides an environ. However using
974 * it doesn't give us enough control over inheritance of variables by
975 * subshells etc. so replace with custom version based on abc-shell
977 extern char **myenviron;
979 # define environ myenviron
985 # include <sys/wait.h>
989 # undef _SC_ARG_MAX /* Symbian has _SC_ARG_MAX but no sysconf() */
992 #if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO)
993 EXTERN_C int syscall(int, ...);
996 #if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO)
997 EXTERN_C int usleep(unsigned int);
1000 /* macros for correct constant construction. These are in C99 <stdint.h>
1001 * (so they will not be available in strict C89 mode), but they are nice, so
1002 * let's define them if necessary. */
1005 # define UINT16_C(x) ((U16_TYPE)x##U)
1007 # define UINT16_C(x) ((U16_TYPE)x##UL)
1013 # define UINT32_C(x) ((U32_TYPE)x##U)
1015 # define UINT32_C(x) ((U32_TYPE)x##UL)
1020 typedef intmax_t PERL_INTMAX_T;
1021 typedef uintmax_t PERL_UINTMAX_T;
1024 /* N.B. We use QUADKIND here instead of HAS_QUAD here, because that doesn't
1025 * actually mean what it has always been documented to mean (see RT #119753)
1026 * and is explicitly turned off outside of core with dire warnings about
1027 * removing the undef. */
1029 #if defined(QUADKIND)
1030 # undef PeRl_INT64_C
1031 # undef PeRl_UINT64_C
1032 /* Prefer the native integer types (int and long) over long long
1033 * (which is not C89) and Win32-specific __int64. */
1034 # if QUADKIND == QUAD_IS_INT && INTSIZE == 8
1035 # define PeRl_INT64_C(c) (c)
1036 # define PeRl_UINT64_C(c) CAT2(c,U)
1038 # if QUADKIND == QUAD_IS_LONG && LONGSIZE == 8
1039 # define PeRl_INT64_C(c) CAT2(c,L)
1040 # define PeRl_UINT64_C(c) CAT2(c,UL)
1042 # if QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LONG_LONG)
1043 # define PeRl_INT64_C(c) CAT2(c,LL)
1044 # define PeRl_UINT64_C(c) CAT2(c,ULL)
1046 # if QUADKIND == QUAD_IS___INT64
1047 # define PeRl_INT64_C(c) CAT2(c,I64)
1048 # define PeRl_UINT64_C(c) CAT2(c,UI64)
1050 # ifndef PeRl_INT64_C
1051 # define PeRl_INT64_C(c) ((I64)(c)) /* last resort */
1052 # define PeRl_UINT64_C(c) ((U64TYPE)(c))
1054 /* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will
1055 * not fly with C89-pedantic gcc, so let's undefine them first so that
1056 * we can redefine them with our native integer preferring versions. */
1057 # if defined(PERL_DARWIN) && defined(PERL_GCC_PEDANTIC)
1062 # define INT64_C(c) PeRl_INT64_C(c)
1065 # define UINT64_C(c) PeRl_UINT64_C(c)
1069 typedef I64TYPE PERL_INTMAX_T;
1070 typedef U64TYPE PERL_UINTMAX_T;
1073 # define INTMAX_C(c) INT64_C(c)
1076 # define UINTMAX_C(c) UINT64_C(c)
1079 #else /* below QUADKIND is undefined */
1081 /* Perl doesn't work on 16 bit systems, so must be 32 bit */
1083 typedef I32TYPE PERL_INTMAX_T;
1084 typedef U32TYPE PERL_UINTMAX_T;
1087 # define INTMAX_C(c) INT32_C(c)
1090 # define UINTMAX_C(c) UINT32_C(c)
1093 #endif /* no QUADKIND */
1097 /* byte-swapping functions for big-/little-endian conversion */
1098 # define _swab_16_(x) ((U16)( \
1099 (((U16)(x) & UINT16_C(0x00ff)) << 8) | \
1100 (((U16)(x) & UINT16_C(0xff00)) >> 8) ))
1102 # define _swab_32_(x) ((U32)( \
1103 (((U32)(x) & UINT32_C(0x000000ff)) << 24) | \
1104 (((U32)(x) & UINT32_C(0x0000ff00)) << 8) | \
1105 (((U32)(x) & UINT32_C(0x00ff0000)) >> 8) | \
1106 (((U32)(x) & UINT32_C(0xff000000)) >> 24) ))
1109 # define _swab_64_(x) ((U64)( \
1110 (((U64)(x) & UINT64_C(0x00000000000000ff)) << 56) | \
1111 (((U64)(x) & UINT64_C(0x000000000000ff00)) << 40) | \
1112 (((U64)(x) & UINT64_C(0x0000000000ff0000)) << 24) | \
1113 (((U64)(x) & UINT64_C(0x00000000ff000000)) << 8) | \
1114 (((U64)(x) & UINT64_C(0x000000ff00000000)) >> 8) | \
1115 (((U64)(x) & UINT64_C(0x0000ff0000000000)) >> 24) | \
1116 (((U64)(x) & UINT64_C(0x00ff000000000000)) >> 40) | \
1117 (((U64)(x) & UINT64_C(0xff00000000000000)) >> 56) ))
1120 /* The old value was hard coded at 1008. (4096-16) seems to be a bit faster,
1121 at least on FreeBSD. YMMV, so experiment. */
1122 #ifndef PERL_ARENA_SIZE
1123 #define PERL_ARENA_SIZE 4080
1126 /* Maximum level of recursion */
1127 #ifndef PERL_SUB_DEPTH_WARN
1128 #define PERL_SUB_DEPTH_WARN 100
1131 #endif /* PERL_CORE */
1133 /* Maximum number of args that may be passed to an OP_MULTICONCAT op.
1134 * It determines the size of local arrays in S_maybe_multiconcat() and
1137 #define PERL_MULTICONCAT_MAXARG 64
1139 /* The indexes of fields of a multiconcat aux struct.
1140 * The fixed fields are followed by nargs+1 const segment lengths,
1141 * and if utf8 and non-utf8 differ, a second nargs+1 set for utf8.
1144 #define PERL_MULTICONCAT_IX_NARGS 0 /* number of arguments */
1145 #define PERL_MULTICONCAT_IX_PLAIN_PV 1 /* non-utf8 constant string */
1146 #define PERL_MULTICONCAT_IX_PLAIN_LEN 2 /* non-utf8 constant string length */
1147 #define PERL_MULTICONCAT_IX_UTF8_PV 3 /* utf8 constant string */
1148 #define PERL_MULTICONCAT_IX_UTF8_LEN 4 /* utf8 constant string length */
1149 #define PERL_MULTICONCAT_IX_LENGTHS 5 /* first of nargs+1 const segment lens */
1150 #define PERL_MULTICONCAT_HEADER_SIZE 5 /* The number of fields of a
1151 multiconcat header */
1153 /* We no longer default to creating a new SV for GvSV.
1154 Do this before embed. */
1155 #ifndef PERL_CREATE_GVSV
1156 # ifndef PERL_DONT_CREATE_GVSV
1157 # define PERL_DONT_CREATE_GVSV
1161 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
1162 #define PERL_USES_PL_PIDSTATUS
1165 #if !defined(OS2) && !defined(WIN32) && !defined(DJGPP) && !defined(__SYMBIAN32__)
1166 #define PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
1169 #define MEM_SIZE Size_t
1171 /* Round all values passed to malloc up, by default to a multiple of
1174 #ifndef PERL_STRLEN_ROUNDUP_QUANTUM
1175 #define PERL_STRLEN_ROUNDUP_QUANTUM Size_t_size
1178 /* sv_grow() will expand strings by at least a certain percentage of
1179 the previously *used* length to avoid excessive calls to realloc().
1180 The default is 25% of the current length.
1182 #ifndef PERL_STRLEN_EXPAND_SHIFT
1183 # define PERL_STRLEN_EXPAND_SHIFT 2
1186 /* This use of offsetof() requires /Zc:offsetof- for VS2017 (and presumably
1187 * onwards) when building Socket.xs, but we can just use a different definition
1188 * for STRUCT_OFFSET instead. */
1189 #if defined(WIN32) && defined(_MSC_VER) && _MSC_VER >= 1910
1190 # define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
1192 # include <stddef.h>
1193 # define STRUCT_OFFSET(s,m) offsetof(s,m)
1196 /* ptrdiff_t is C11, so undef it under pedantic builds. (Actually it is
1197 * in C89, but apparently there are platforms where it doesn't exist. See
1198 * thread beginning at http://nntp.perl.org/group/perl.perl5.porters/251541.)
1200 #ifdef PERL_GCC_PEDANTIC
1201 # undef HAS_PTRDIFF_T
1204 #ifdef HAS_PTRDIFF_T
1205 # define Ptrdiff_t ptrdiff_t
1207 # define Ptrdiff_t SSize_t
1210 #ifndef __SYMBIAN32__
1211 # include <string.h>
1214 /* This comes after <stdlib.h> so we don't try to change the standard
1215 * library prototypes; we'll use our own in proto.h instead. */
1218 # ifdef PERL_POLLUTE_MALLOC
1219 # ifndef PERL_EXTMALLOC_DEF
1220 # define Perl_malloc malloc
1221 # define Perl_calloc calloc
1222 # define Perl_realloc realloc
1223 # define Perl_mfree free
1226 # define EMBEDMYMALLOC /* for compatibility */
1229 # define safemalloc Perl_malloc
1230 # define safecalloc Perl_calloc
1231 # define saferealloc Perl_realloc
1232 # define safefree Perl_mfree
1233 # define CHECK_MALLOC_TOO_LATE_FOR_(code) STMT_START { \
1234 if (!TAINTING_get && MallocCfg_ptr[MallocCfg_cfg_env_read]) \
1237 # define CHECK_MALLOC_TOO_LATE_FOR(ch) \
1238 CHECK_MALLOC_TOO_LATE_FOR_(MALLOC_TOO_LATE_FOR(ch))
1239 # define panic_write2(s) write(2, s, strlen(s))
1240 # define CHECK_MALLOC_TAINT(newval) \
1241 CHECK_MALLOC_TOO_LATE_FOR_( \
1243 PERL_UNUSED_RESULT(panic_write2("panic: tainting with $ENV{PERL_MALLOC_OPT}\n"));\
1245 # define MALLOC_CHECK_TAINT(argc,argv,env) STMT_START { \
1246 if (doing_taint(argc,argv,env)) { \
1247 MallocCfg_ptr[MallocCfg_skip_cfg_env] = 1; \
1249 #else /* MYMALLOC */
1250 # define safemalloc safesysmalloc
1251 # define safecalloc safesyscalloc
1252 # define saferealloc safesysrealloc
1253 # define safefree safesysfree
1254 # define CHECK_MALLOC_TOO_LATE_FOR(ch) ((void)0)
1255 # define CHECK_MALLOC_TAINT(newval) ((void)0)
1256 # define MALLOC_CHECK_TAINT(argc,argv,env)
1257 #endif /* MYMALLOC */
1259 /* diag_listed_as: "-T" is on the #! line, it must also be used on the command line */
1260 #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)
1261 #define TOO_LATE_FOR(ch) TOO_LATE_FOR_(ch, "")
1262 #define MALLOC_TOO_LATE_FOR(ch) TOO_LATE_FOR_(ch, " with $ENV{PERL_MALLOC_OPT}")
1263 #define MALLOC_CHECK_TAINT2(argc,argv) MALLOC_CHECK_TAINT(argc,argv,NULL)
1266 # define memzero(d,l) memset(d,0,l)
1270 # include <netinet/in.h>
1274 # include <arpa/inet.h>
1278 # include <sys/stat.h>
1281 /* Microsoft VC's sys/stat.h defines all S_Ixxx macros except S_IFIFO.
1282 This definition should ideally go into win32/win32.h, but S_IFIFO is
1283 used later here in perl.h before win32/win32.h is being included. */
1284 #if !defined(S_IFIFO) && defined(_S_IFIFO)
1285 # define S_IFIFO _S_IFIFO
1288 /* The stat macros for Unisoft System V/88 (and derivatives
1289 like UTekV) are broken, sometimes giving false positives. Undefine
1290 them here and let the code below set them to proper values.
1292 The ghs macro stands for GreenHills Software C-1.8.5 which
1293 is the C compiler for sysV88 and the various derivatives.
1294 This header file bug is corrected in gcc-2.5.8 and later versions.
1295 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
1297 #if defined(m88k) && defined(ghs)
1309 # ifdef I_SYS_TIME_KERNEL
1312 # include <sys/time.h>
1313 # ifdef I_SYS_TIME_KERNEL
1318 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
1319 # include <sys/times.h>
1324 #if defined(WIN32) && defined(PERL_IMPLICIT_SYS)
1325 # define WIN32SCK_IS_STDSCK /* don't pull in custom wsock layer */
1328 #if defined(HAS_SOCKET) && !defined(WIN32) /* WIN32 handles sockets via win32.h */
1329 # include <sys/socket.h>
1330 # if defined(USE_SOCKS) && defined(I_SOCKS)
1331 # if !defined(INCLUDE_PROTOTYPES)
1332 # define INCLUDE_PROTOTYPES /* for <socks.h> */
1333 # define PERL_SOCKS_NEED_PROTOTYPES
1336 # ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
1337 # undef INCLUDE_PROTOTYPES
1338 # undef PERL_SOCKS_NEED_PROTOTYPES
1349 # include <net/errno.h>
1354 /* sockatmark() is so new (2001) that many places might have it hidden
1355 * behind some -D_BLAH_BLAH_SOURCE guard. The __THROW magic is required
1356 * e.g. in Gentoo, see http://bugs.gentoo.org/show_bug.cgi?id=12605 */
1357 #if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
1358 # if defined(__THROW) && defined(__GLIBC__)
1359 int sockatmark(int) __THROW;
1361 int sockatmark(int);
1365 #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. */
1366 EXTERN_C int fchdir(int);
1367 EXTERN_C int flock(int, int);
1368 EXTERN_C int fseeko(FILE *, off_t, int);
1369 EXTERN_C off_t ftello(FILE *);
1372 #if defined(__SUNPRO_CC) /* SUNWspro CC (C++) */
1373 EXTERN_C char *crypt(const char *, const char *);
1376 #if defined(__cplusplus) && defined(__CYGWIN__)
1377 EXTERN_C char *crypt(const char *, const char *);
1383 =for apidoc m|void|SETERRNO|int errcode|int vmserrcode
1385 Set C<errno>, and on VMS set C<vaxc$errno>.
1387 =for apidoc mn|void|dSAVEDERRNO
1389 Declare variables needed to save C<errno> and any operating system
1390 specific error number.
1392 =for apidoc mn|void|dSAVE_ERRNO
1394 Declare variables needed to save C<errno> and any operating system
1395 specific error number, and save them for optional later restoration
1396 by C<RESTORE_ERRNO>.
1398 =for apidoc mn|void|SAVE_ERRNO
1400 Save C<errno> and any operating system specific error number for
1401 optional later restoration by C<RESTORE_ERRNO>. Requires
1402 C<dSAVEDERRNO> or C<dSAVE_ERRNO> in scope.
1404 =for apidoc mn|void|RESTORE_ERRNO
1406 Restore C<errno> and any operating system specific error number that
1407 was saved by C<dSAVE_ERRNO> or C<RESTORE_ERRNO>.
1413 # undef SETERRNO /* SOCKS might have defined this */
1417 # define SETERRNO(errcode,vmserrcode) \
1419 set_errno(errcode); \
1420 set_vaxc_errno(vmserrcode); \
1422 # define dSAVEDERRNO int saved_errno; unsigned saved_vms_errno
1423 # define dSAVE_ERRNO int saved_errno = errno; unsigned saved_vms_errno = vaxc$errno
1424 # define SAVE_ERRNO ( saved_errno = errno, saved_vms_errno = vaxc$errno )
1425 # define RESTORE_ERRNO SETERRNO(saved_errno, saved_vms_errno)
1427 # define LIB_INVARG LIB$_INVARG
1428 # define RMS_DIR RMS$_DIR
1429 # define RMS_FAC RMS$_FAC
1430 # define RMS_FEX RMS$_FEX
1431 # define RMS_FNF RMS$_FNF
1432 # define RMS_IFI RMS$_IFI
1433 # define RMS_ISI RMS$_ISI
1434 # define RMS_PRV RMS$_PRV
1435 # define SS_ACCVIO SS$_ACCVIO
1436 # define SS_DEVOFFLINE SS$_DEVOFFLINE
1437 # define SS_IVCHAN SS$_IVCHAN
1438 # define SS_NORMAL SS$_NORMAL
1439 # define SS_NOPRIV SS$_NOPRIV
1440 # define SS_BUFFEROVF SS$_BUFFEROVF
1442 # define LIB_INVARG 0
1450 # define SS_ACCVIO 0
1451 # define SS_DEVOFFLINE 0
1452 # define SS_IVCHAN 0
1453 # define SS_NORMAL 0
1454 # define SS_NOPRIV 0
1455 # define SS_BUFFEROVF 0
1459 # define dSAVEDERRNO int saved_errno; DWORD saved_win32_errno
1460 # define dSAVE_ERRNO int saved_errno = errno; DWORD saved_win32_errno = GetLastError()
1461 # define SAVE_ERRNO ( saved_errno = errno, saved_win32_errno = GetLastError() )
1462 # define RESTORE_ERRNO ( errno = saved_errno, SetLastError(saved_win32_errno) )
1466 # define dSAVEDERRNO int saved_errno; unsigned long saved_os2_errno
1467 # define dSAVE_ERRNO int saved_errno = errno; unsigned long saved_os2_errno = Perl_rc
1468 # define SAVE_ERRNO ( saved_errno = errno, saved_os2_errno = Perl_rc )
1469 # define RESTORE_ERRNO ( errno = saved_errno, Perl_rc = saved_os2_errno )
1473 # define SETERRNO(errcode,vmserrcode) (errno = (errcode))
1477 # define dSAVEDERRNO int saved_errno
1478 # define dSAVE_ERRNO int saved_errno = errno
1479 # define SAVE_ERRNO (saved_errno = errno)
1480 # define RESTORE_ERRNO (errno = saved_errno)
1484 =head1 Warning and Dieing
1486 =for apidoc Amn|SV *|ERRSV
1488 Returns the SV for C<$@>, creating it if needed.
1490 =for apidoc Am|void|CLEAR_ERRSV
1492 Clear the contents of C<$@>, setting it to the empty string.
1494 This replaces any read-only SV with a fresh SV and removes any magic.
1496 =for apidoc Am|void|SANE_ERRSV
1498 Clean up ERRSV so we can safely set it.
1500 This replaces any read-only SV with a fresh writable copy and removes
1506 #define ERRSV GvSVn(PL_errgv)
1508 /* contains inlined gv_add_by_type */
1509 #define CLEAR_ERRSV() STMT_START { \
1510 SV ** const svp = &GvSV(PL_errgv); \
1512 *svp = newSVpvs(""); \
1513 } else if (SvREADONLY(*svp)) { \
1514 SvREFCNT_dec_NN(*svp); \
1515 *svp = newSVpvs(""); \
1517 SV *const errsv = *svp; \
1519 SvPOK_only(errsv); \
1520 if (SvMAGICAL(errsv)) { \
1526 /* contains inlined gv_add_by_type */
1527 #define SANE_ERRSV() STMT_START { \
1528 SV ** const svp = &GvSV(PL_errgv); \
1530 *svp = newSVpvs(""); \
1531 } else if (SvREADONLY(*svp)) { \
1532 SV *dupsv = newSVsv(*svp); \
1533 SvREFCNT_dec_NN(*svp); \
1536 SV *const errsv = *svp; \
1537 if (SvMAGICAL(errsv)) { \
1545 # define DEFSV (0 + GvSVn(PL_defgv))
1546 # define DEFSV_set(sv) \
1547 (SvREFCNT_dec(GvSV(PL_defgv)), GvSV(PL_defgv) = SvREFCNT_inc(sv))
1548 # define SAVE_DEFSV \
1550 save_gp(PL_defgv, 0), \
1551 GvINTRO_off(PL_defgv), \
1552 SAVEGENERICSV(GvSV(PL_defgv)), \
1553 GvSV(PL_defgv) = NULL \
1556 # define DEFSV GvSVn(PL_defgv)
1557 # define DEFSV_set(sv) (GvSV(PL_defgv) = (sv))
1558 # define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
1562 extern int errno; /* ANSI allows errno to be an lvalue expr.
1563 * For example in multithreaded environments
1564 * something like this might happen:
1565 * extern int *_errno(void);
1566 * #define errno (*_errno()) */
1569 #define UNKNOWN_ERRNO_MSG "(unknown)"
1572 #define Strerror(e) strerror((e), vaxc$errno)
1574 #define Strerror(e) strerror(e)
1579 # include <sys/ioctl.h>
1583 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
1584 # ifdef HAS_SOCKETPAIR
1585 # undef HAS_SOCKETPAIR
1592 #ifndef HAS_SOCKETPAIR
1594 # define socketpair Perl_my_socketpair
1599 # define htoni htons
1600 # define ntohi ntohs
1602 # define htoni htonl
1603 # define ntohi ntohl
1606 /* Configure already sets Direntry_t */
1607 #if defined(I_DIRENT)
1608 # include <dirent.h>
1609 #elif defined(I_SYS_NDIR)
1610 # include <sys/ndir.h>
1611 #elif defined(I_SYS_DIR)
1612 # include <sys/dir.h>
1616 * The following gobbledygook brought to you on behalf of __STDC__.
1617 * (I could just use #ifndef __STDC__, but this is more bulletproof
1618 * in the face of half-implementations.)
1621 #if defined(I_SYSMODE)
1622 #include <sys/mode.h>
1627 # define S_IFMT _S_IFMT
1629 # define S_IFMT 0170000
1634 # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
1638 # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
1643 # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
1645 # define S_ISBLK(m) (0)
1650 # define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
1655 # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
1657 # define S_ISFIFO(m) (0)
1663 # define S_ISLNK(m) _S_ISLNK(m)
1664 # elif defined(_S_IFLNK)
1665 # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
1666 # elif defined(S_IFLNK)
1667 # define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
1669 # define S_ISLNK(m) (0)
1675 # define S_ISSOCK(m) _S_ISSOCK(m)
1676 # elif defined(_S_IFSOCK)
1677 # define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
1678 # elif defined(S_IFSOCK)
1679 # define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
1681 # define S_ISSOCK(m) (0)
1687 # define S_IRUSR S_IREAD
1688 # define S_IWUSR S_IWRITE
1689 # define S_IXUSR S_IEXEC
1691 # define S_IRUSR 0400
1692 # define S_IWUSR 0200
1693 # define S_IXUSR 0100
1699 # define S_IRGRP (S_IRUSR>>3)
1700 # define S_IWGRP (S_IWUSR>>3)
1701 # define S_IXGRP (S_IXUSR>>3)
1703 # define S_IRGRP 0040
1704 # define S_IWGRP 0020
1705 # define S_IXGRP 0010
1711 # define S_IROTH (S_IRUSR>>6)
1712 # define S_IWOTH (S_IWUSR>>6)
1713 # define S_IXOTH (S_IXUSR>>6)
1715 # define S_IROTH 0040
1716 # define S_IWOTH 0020
1717 # define S_IXOTH 0010
1722 # define S_ISUID 04000
1726 # define S_ISGID 02000
1730 # define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
1734 # define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
1738 # define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
1741 /* Haiku R1 seems to define S_IREAD and S_IWRITE in <posix/fcntl.h>
1742 * which would get included through <sys/file.h >, but that is 3000
1743 * lines in the future. --jhi */
1745 #if !defined(S_IREAD) && !defined(__HAIKU__)
1746 # define S_IREAD S_IRUSR
1749 #if !defined(S_IWRITE) && !defined(__HAIKU__)
1750 # define S_IWRITE S_IWUSR
1754 # define S_IEXEC S_IXUSR
1757 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
1758 # define SLOPPYDIVIDE
1765 /* This used to be conditionally defined based on whether we had a sprintf()
1766 * that correctly returns the string length (as required by C89), but we no
1767 * longer need that. XS modules can (and do) use this name, so it must remain
1768 * a part of the API that's visible to modules.
1770 =head1 Miscellaneous Functions
1772 =for apidoc ATmD|int|my_sprintf|NN char *buffer|NN const char *pat|...
1774 Do NOT use this due to the possibility of overflowing C<buffer>. Instead use
1779 #define my_sprintf sprintf
1782 * If we have v?snprintf() and the C99 variadic macros, we can just
1783 * use just the v?snprintf(). It is nice to try to trap the buffer
1784 * overflow, however, so if we are DEBUGGING, and we cannot use the
1785 * gcc statement expressions, then use the function wrappers which try
1786 * to trap the overflow. If we can use the gcc statement expressions,
1787 * we can try that even with the version that uses the C99 variadic
1791 /* Note that we do not check against snprintf()/vsnprintf() returning
1792 * negative values because that is non-standard behaviour and we use
1793 * snprintf/vsnprintf only iff HAS_VSNPRINTF has been defined, and
1794 * that should be true only if the snprintf()/vsnprintf() are true
1795 * to the standard. */
1797 #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
1800 # define my_snprintf Perl_my_snprintf
1801 # define PERL_MY_SNPRINTF_GUARDED
1802 #elif defined(HAS_SNPRINTF) && defined(HAS_C99_VARIADIC_MACROS) && !(defined(DEBUGGING) && !defined(PERL_USE_GCC_BRACE_GROUPS)) && !defined(PERL_GCC_PEDANTIC)
1803 # ifdef PERL_USE_GCC_BRACE_GROUPS
1804 # define my_snprintf(buffer, max, ...) ({ int len = snprintf(buffer, max, __VA_ARGS__); PERL_SNPRINTF_CHECK(len, max, snprintf); len; })
1805 # define PERL_MY_SNPRINTF_GUARDED
1807 # define my_snprintf(buffer, max, ...) snprintf(buffer, max, __VA_ARGS__)
1810 # define my_snprintf Perl_my_snprintf
1811 # define PERL_MY_SNPRINTF_GUARDED
1814 /* There is no quadmath_vsnprintf, and therefore my_vsnprintf()
1815 * dies if called under USE_QUADMATH. */
1816 #if defined(HAS_VSNPRINTF) && defined(HAS_C99_VARIADIC_MACROS) && !(defined(DEBUGGING) && !defined(PERL_USE_GCC_BRACE_GROUPS)) && !defined(PERL_GCC_PEDANTIC)
1817 # ifdef PERL_USE_GCC_BRACE_GROUPS
1818 # define my_vsnprintf(buffer, max, ...) ({ int len = vsnprintf(buffer, max, __VA_ARGS__); PERL_SNPRINTF_CHECK(len, max, vsnprintf); len; })
1819 # define PERL_MY_VSNPRINTF_GUARDED
1821 # define my_vsnprintf(buffer, max, ...) vsnprintf(buffer, max, __VA_ARGS__)
1824 # define my_vsnprintf Perl_my_vsnprintf
1825 # define PERL_MY_VSNPRINTF_GUARDED
1828 /* You will definitely need to use the PERL_MY_SNPRINTF_POST_GUARD()
1829 * or PERL_MY_VSNPRINTF_POST_GUARD() if you otherwise decide to ignore
1830 * the result of my_snprintf() or my_vsnprintf(). (No, you should not
1831 * completely ignore it: otherwise you cannot know whether your output
1834 * int len = my_sprintf(buf, max, ...);
1835 * PERL_MY_SNPRINTF_POST_GUARD(len, max);
1837 * The trick is that in certain platforms [a] the my_sprintf() already
1838 * contains the sanity check, while in certain platforms [b] it needs
1839 * to be done as a separate step. The POST_GUARD is that step-- in [a]
1840 * platforms the POST_GUARD actually does nothing since the check has
1841 * already been done. Watch out for the max being the same in both calls.
1843 * If you actually use the snprintf/vsnprintf return value already,
1844 * you assumedly are checking its validity somehow. But you can
1845 * insert the POST_GUARD() also in that case. */
1847 #ifndef PERL_MY_SNPRINTF_GUARDED
1848 # define PERL_MY_SNPRINTF_POST_GUARD(len, max) PERL_SNPRINTF_CHECK(len, max, snprintf)
1850 # define PERL_MY_SNPRINTF_POST_GUARD(len, max) PERL_UNUSED_VAR(len)
1853 #ifndef PERL_MY_VSNPRINTF_GUARDED
1854 # define PERL_MY_VSNPRINTF_POST_GUARD(len, max) PERL_SNPRINTF_CHECK(len, max, vsnprintf)
1856 # define PERL_MY_VSNPRINTF_POST_GUARD(len, max) PERL_UNUSED_VAR(len)
1860 # define my_strlcat strlcat
1863 #if defined(PERL_CORE) || defined(PERL_EXT)
1865 # define my_memrchr memrchr
1867 # define my_memrchr S_my_memrchr
1872 # define my_strlcpy strlcpy
1876 # define my_strnlen strnlen
1880 The IV type is supposed to be long enough to hold any integral
1882 --Andy Dougherty August 1996
1888 #if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
1889 # if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
1890 # define IV_MAX ((IV)INT64_MAX)
1891 # define IV_MIN ((IV)INT64_MIN)
1892 # define UV_MAX ((UV)UINT64_MAX)
1894 # define UINT64_MIN 0
1896 # define UV_MIN ((UV)UINT64_MIN)
1898 # define IV_MAX PERL_QUAD_MAX
1899 # define IV_MIN PERL_QUAD_MIN
1900 # define UV_MAX PERL_UQUAD_MAX
1901 # define UV_MIN PERL_UQUAD_MIN
1906 # if defined(INT32_MAX) && IVSIZE == 4
1907 # define IV_MAX ((IV)INT32_MAX)
1908 # define IV_MIN ((IV)INT32_MIN)
1909 # ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1910 # define UV_MAX ((UV)UINT32_MAX)
1912 # define UV_MAX ((UV)4294967295U)
1915 # define UINT32_MIN 0
1917 # define UV_MIN ((UV)UINT32_MIN)
1919 # define IV_MAX PERL_LONG_MAX
1920 # define IV_MIN PERL_LONG_MIN
1921 # define UV_MAX PERL_ULONG_MAX
1922 # define UV_MIN PERL_ULONG_MIN
1933 #if !defined(PERL_CORE)
1934 /* We think that removing this decade-old undef this will cause too much
1935 breakage on CPAN for too little gain. (See RT #119753)
1936 However, we do need HAS_QUAD in the core for use by the drand48 code. */
1942 #define Size_t_MAX (~(Size_t)0)
1943 #define SSize_t_MAX (SSize_t)(~(Size_t)0 >> 1)
1945 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
1946 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
1948 #ifndef NO_PERL_PRESERVE_IVUV
1949 #define PERL_PRESERVE_IVUV /* We like our integers to stay integers. */
1953 * The macros INT2PTR and NUM2PTR are (despite their names)
1954 * bi-directional: they will convert int/float to or from pointers.
1955 * However the conversion to int/float are named explicitly:
1956 * PTR2IV, PTR2UV, PTR2NV.
1958 * For int conversions we do not need two casts if pointers are
1959 * the same size as IV and UV. Otherwise we need an explicit
1960 * cast (PTRV) to avoid compiler warnings.
1962 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1964 # define INT2PTR(any,d) (any)(d)
1965 #elif PTRSIZE == LONGSIZE
1966 # define PTRV unsigned long
1967 # define PTR2ul(p) (unsigned long)(p)
1969 # define PTRV unsigned
1973 # define INT2PTR(any,d) (any)(PTRV)(d)
1977 # define PTR2ul(p) INT2PTR(unsigned long,p)
1980 #define NUM2PTR(any,d) (any)(PTRV)(d)
1981 #define PTR2IV(p) INT2PTR(IV,p)
1982 #define PTR2UV(p) INT2PTR(UV,p)
1983 #define PTR2NV(p) NUM2PTR(NV,p)
1984 #define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */
1986 /* According to strict ANSI C89 one cannot freely cast between
1987 * data pointers and function (code) pointers. There are at least
1988 * two ways around this. One (used below) is to do two casts,
1989 * first the other pointer to an (unsigned) integer, and then
1990 * the integer to the other pointer. The other way would be
1991 * to use unions to "overlay" the pointers. For an example of
1992 * the latter technique, see union dirpu in struct xpvio in sv.h.
1993 * The only feasible use is probably temporarily storing
1994 * function pointers in a data pointer (such as a void pointer). */
1996 #define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */
1997 #define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */
1999 #ifdef USE_LONG_DOUBLE
2000 # if LONG_DOUBLESIZE == DOUBLESIZE
2001 # define LONG_DOUBLE_EQUALS_DOUBLE
2002 # undef USE_LONG_DOUBLE /* Ouch! */
2006 /* The following is all to get LDBL_DIG, in order to pick a nice
2007 default value for printing floating point numbers in Gconvert.
2010 #ifndef HAS_LDBL_DIG
2011 # if LONG_DOUBLESIZE == 10
2012 # define LDBL_DIG 18 /* assume IEEE */
2013 # elif LONG_DOUBLESIZE == 12
2014 # define LDBL_DIG 18 /* gcc? */
2015 # elif LONG_DOUBLESIZE == 16
2016 # define LDBL_DIG 33 /* assume IEEE */
2017 # elif LONG_DOUBLESIZE == DOUBLESIZE
2018 # define LDBL_DIG DBL_DIG /* bummer */
2025 # include <ieeefp.h>
2028 #if defined(__DECC) && defined(__osf__)
2029 /* Also Tru64 cc has broken NaN comparisons. */
2030 # define NAN_COMPARE_BROKEN
2033 # define NAN_COMPARE_BROKEN
2036 #ifdef USE_LONG_DOUBLE
2038 # include <sunmath.h>
2040 # if defined(LDBL_DIG)
2041 # define NV_DIG LDBL_DIG
2042 # ifdef LDBL_MANT_DIG
2043 # define NV_MANT_DIG LDBL_MANT_DIG
2046 # define NV_MIN LDBL_MIN
2049 # define NV_MAX LDBL_MAX
2051 # ifdef LDBL_MIN_EXP
2052 # define NV_MIN_EXP LDBL_MIN_EXP
2054 # ifdef LDBL_MAX_EXP
2055 # define NV_MAX_EXP LDBL_MAX_EXP
2057 # ifdef LDBL_MIN_10_EXP
2058 # define NV_MIN_10_EXP LDBL_MIN_10_EXP
2060 # ifdef LDBL_MAX_10_EXP
2061 # define NV_MAX_10_EXP LDBL_MAX_10_EXP
2063 # ifdef LDBL_EPSILON
2064 # define NV_EPSILON LDBL_EPSILON
2067 # define NV_MAX LDBL_MAX
2068 /* Having LDBL_MAX doesn't necessarily mean that we have LDBL_MIN... -Allen */
2069 # elif defined(HUGE_VALL)
2070 # define NV_MAX HUGE_VALL
2073 # if defined(HAS_SQRTL)
2074 # define Perl_acos acosl
2075 # define Perl_asin asinl
2076 # define Perl_atan atanl
2077 # define Perl_atan2 atan2l
2078 # define Perl_ceil ceill
2079 # define Perl_cos cosl
2080 # define Perl_cosh coshl
2081 # define Perl_exp expl
2082 /* no Perl_fabs, but there's PERL_ABS */
2083 # define Perl_floor floorl
2084 # define Perl_fmod fmodl
2085 # define Perl_log logl
2086 # define Perl_log10 log10l
2087 # define Perl_pow powl
2088 # define Perl_sin sinl
2089 # define Perl_sinh sinhl
2090 # define Perl_sqrt sqrtl
2091 # define Perl_tan tanl
2092 # define Perl_tanh tanhl
2094 /* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
2097 # define Perl_modf(x,y) modfl(x,y)
2098 /* eg glibc 2.2 series seems to provide modfl on ppc and arm, but has no
2099 prototype in <math.h> */
2100 # ifndef HAS_MODFL_PROTO
2101 EXTERN_C long double modfl(long double, long double *);
2103 # elif (defined(HAS_TRUNCL) || defined(HAS_AINTL)) && defined(HAS_COPYSIGNL)
2104 extern long double Perl_my_modfl(long double x, long double *ip);
2105 # define Perl_modf(x,y) Perl_my_modfl(x,y)
2110 # define Perl_frexp(x,y) frexpl(x,y)
2111 # elif defined(HAS_ILOGBL) && defined(HAS_SCALBNL)
2112 extern long double Perl_my_frexpl(long double x, int *e);
2113 # define Perl_frexp(x,y) Perl_my_frexpl(x,y)
2118 # define Perl_ldexp(x, y) ldexpl(x,y)
2119 # elif defined(HAS_SCALBNL) && FLT_RADIX == 2
2120 # define Perl_ldexp(x,y) scalbnl(x,y)
2124 # if defined(HAS_ISNANL) && !(defined(isnan) && defined(HAS_C99))
2125 # define Perl_isnan(x) isnanl(x)
2126 # elif defined(__sgi) && defined(__c99) /* XXX Configure test needed */
2127 # define Perl_isnan(x) isnan(x)
2131 # if defined(HAS_ISINFL) && !(defined(isinf) && defined(HAS_C99))
2132 # define Perl_isinf(x) isinfl(x)
2133 # elif defined(__sgi) && defined(__c99) /* XXX Configure test needed */
2134 # define Perl_isinf(x) isinf(x)
2135 # elif defined(LDBL_MAX) && !defined(NAN_COMPARE_BROKEN)
2136 # define Perl_isinf(x) ((x) > LDBL_MAX || (x) < -LDBL_MAX)
2139 # ifndef Perl_isfinite
2140 # define Perl_isfinite(x) Perl_isfinitel(x)
2142 #elif defined(USE_QUADMATH) && defined(I_QUADMATH)
2143 # include <quadmath.h>
2144 # define NV_DIG FLT128_DIG
2145 # define NV_MANT_DIG FLT128_MANT_DIG
2146 # define NV_MIN FLT128_MIN
2147 # define NV_MAX FLT128_MAX
2148 # define NV_MIN_EXP FLT128_MIN_EXP
2149 # define NV_MAX_EXP FLT128_MAX_EXP
2150 # define NV_EPSILON FLT128_EPSILON
2151 # define NV_MIN_10_EXP FLT128_MIN_10_EXP
2152 # define NV_MAX_10_EXP FLT128_MAX_10_EXP
2153 # define Perl_acos acosq
2154 # define Perl_asin asinq
2155 # define Perl_atan atanq
2156 # define Perl_atan2 atan2q
2157 # define Perl_ceil ceilq
2158 # define Perl_cos cosq
2159 # define Perl_cosh coshq
2160 # define Perl_exp expq
2161 /* no Perl_fabs, but there's PERL_ABS */
2162 # define Perl_floor floorq
2163 # define Perl_fmod fmodq
2164 # define Perl_log logq
2165 # define Perl_log10 log10q
2166 # define Perl_signbit signbitq
2167 # define Perl_pow powq
2168 # define Perl_sin sinq
2169 # define Perl_sinh sinhq
2170 # define Perl_sqrt sqrtq
2171 # define Perl_tan tanq
2172 # define Perl_tanh tanhq
2173 # define Perl_modf(x,y) modfq(x,y)
2174 # define Perl_frexp(x,y) frexpq(x,y)
2175 # define Perl_ldexp(x, y) ldexpq(x,y)
2176 # define Perl_isinf(x) isinfq(x)
2177 # define Perl_isnan(x) isnanq(x)
2178 # define Perl_isfinite(x) !(isnanq(x) || isinfq(x))
2179 # define Perl_fp_class(x) ((x) == 0.0Q ? 0 : isinfq(x) ? 3 : isnanq(x) ? 4 : PERL_ABS(x) < FLT128_MIN ? 2 : 1)
2180 # define Perl_fp_class_inf(x) (Perl_fp_class(x) == 3)
2181 # define Perl_fp_class_nan(x) (Perl_fp_class(x) == 4)
2182 # define Perl_fp_class_norm(x) (Perl_fp_class(x) == 1)
2183 # define Perl_fp_class_denorm(x) (Perl_fp_class(x) == 2)
2184 # define Perl_fp_class_zero(x) (Perl_fp_class(x) == 0)
2186 # define NV_DIG DBL_DIG
2187 # define NV_MANT_DIG DBL_MANT_DIG
2188 # define NV_MIN DBL_MIN
2189 # define NV_MAX DBL_MAX
2190 # define NV_MIN_EXP DBL_MIN_EXP
2191 # define NV_MAX_EXP DBL_MAX_EXP
2192 # define NV_MIN_10_EXP DBL_MIN_10_EXP
2193 # define NV_MAX_10_EXP DBL_MAX_10_EXP
2194 # define NV_EPSILON DBL_EPSILON
2195 # define NV_MAX DBL_MAX
2196 # define NV_MIN DBL_MIN
2198 /* These math interfaces are C89. */
2199 # define Perl_acos acos
2200 # define Perl_asin asin
2201 # define Perl_atan atan
2202 # define Perl_atan2 atan2
2203 # define Perl_ceil ceil
2204 # define Perl_cos cos
2205 # define Perl_cosh cosh
2206 # define Perl_exp exp
2207 /* no Perl_fabs, but there's PERL_ABS */
2208 # define Perl_floor floor
2209 # define Perl_fmod fmod
2210 # define Perl_log log
2211 # define Perl_log10 log10
2212 # define Perl_pow pow
2213 # define Perl_sin sin
2214 # define Perl_sinh sinh
2215 # define Perl_sqrt sqrt
2216 # define Perl_tan tan
2217 # define Perl_tanh tanh
2219 # define Perl_modf(x,y) modf(x,y)
2220 # define Perl_frexp(x,y) frexp(x,y)
2221 # define Perl_ldexp(x,y) ldexp(x,y)
2225 # define Perl_isnan(x) isnan(x)
2229 # if defined(HAS_ISINF)
2230 # define Perl_isinf(x) isinf(x)
2231 # elif defined(DBL_MAX) && !defined(NAN_COMPARE_BROKEN)
2232 # define Perl_isinf(x) ((x) > DBL_MAX || (x) < -DBL_MAX)
2235 # ifndef Perl_isfinite
2236 # ifdef HAS_ISFINITE
2237 # define Perl_isfinite(x) isfinite(x)
2238 # elif defined(HAS_FINITE)
2239 # define Perl_isfinite(x) finite(x)
2244 /* fpclassify(): C99. It is supposed to be a macro that switches on
2245 * the sizeof() of its argument, so there's no need for e.g. fpclassifyl().*/
2246 #if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
2248 # if defined(FP_INFINITE) && defined(FP_NAN)
2249 # define Perl_fp_class(x) fpclassify(x)
2250 # define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_INFINITE)
2251 # define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_NAN)
2252 # define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_NORMAL)
2253 # define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_SUBNORMAL)
2254 # define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_ZERO)
2255 # elif defined(FP_PLUS_INF) && defined(FP_QNAN)
2256 /* Some versions of HP-UX (10.20) have (only) fpclassify() but which is
2257 * actually not the C99 fpclassify, with its own set of return defines. */
2258 # define Perl_fp_class(x) fpclassify(x)
2259 # define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PLUS_INF)
2260 # define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_MINUS_INF)
2261 # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
2262 # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2263 # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM)
2264 # define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM)
2265 # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM)
2266 # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM)
2267 # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
2268 # define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_MINUS_ZERO)
2270 # undef Perl_fp_class /* Unknown set of defines */
2274 /* fp_classify(): Legacy: VMS, maybe Unicos? The values, however,
2275 * are identical to the C99 fpclassify(). */
2276 #if !defined(Perl_fp_class) && defined(HAS_FP_CLASSIFY)
2279 /* FP_INFINITE and others are here rather than in math.h as C99 stipulates */
2281 /* oh, and the isnormal macro has a typo in it! */
2283 # define isnormal(x) Perl_fp_class_norm(x)
2285 # if defined(FP_INFINITE) && defined(FP_NAN)
2286 # define Perl_fp_class(x) fp_classify(x)
2287 # define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_INFINITE)
2288 # define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_NAN)
2289 # define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_NORMAL)
2290 # define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_SUBNORMAL)
2291 # define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_ZERO)
2293 # undef Perl_fp_class /* Unknown set of defines */
2297 /* Feel free to check with me for the SGI manpages, SGI testing,
2298 * etcetera, if you want to try getting this to work with IRIX.
2300 * - Allen <allens@cpan.org> */
2302 /* fpclass(): SysV, at least Solaris and some versions of IRIX. */
2303 #if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
2304 /* Solaris and IRIX have fpclass/fpclassl, but they are using
2305 * an enum typedef, not cpp symbols, and Configure doesn't detect that.
2306 * Define some symbols also as cpp symbols so we can detect them. */
2307 # if defined(__sun) || defined(__sgi) /* XXX Configure test instead */
2308 # define FP_PINF FP_PINF
2309 # define FP_QNAN FP_QNAN
2313 # include <ieeefp.h>
2318 # if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
2319 # define Perl_fp_class(x) fpclassl(x)
2321 # define Perl_fp_class(x) fpclass(x)
2323 # if defined(FP_CLASS_PINF) && defined(FP_CLASS_SNAN)
2324 # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_CLASS_SNAN)
2325 # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_CLASS_QNAN)
2326 # define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_CLASS_NINF)
2327 # define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_CLASS_PINF)
2328 # define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_CLASS_NNORM)
2329 # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_CLASS_PNORM)
2330 # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_CLASS_NDENORM)
2331 # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_CLASS_PDENORM)
2332 # define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_CLASS_NZERO)
2333 # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_CLASS_PZERO)
2334 # elif defined(FP_PINF) && defined(FP_QNAN)
2335 # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
2336 # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2337 # define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_NINF)
2338 # define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PINF)
2339 # define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_NNORM)
2340 # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PNORM)
2341 # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_NDENORM)
2342 # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PDENORM)
2343 # define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_NZERO)
2344 # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PZERO)
2346 # undef Perl_fp_class /* Unknown set of defines */
2350 /* fp_class(): Legacy: at least Tru64, some versions of IRIX. */
2351 #if !defined(Perl_fp_class) && (defined(HAS_FP_CLASS)||defined(HAS_FP_CLASSL))
2353 # if !defined(FP_SNAN) && defined(I_FP_CLASS)
2354 # include <fp_class.h>
2356 # if defined(FP_POS_INF) && defined(FP_QNAN)
2357 # ifdef __sgi /* XXX Configure test instead */
2358 # ifdef USE_LONG_DOUBLE
2359 # define Perl_fp_class(x) fp_class_l(x)
2361 # define Perl_fp_class(x) fp_class_d(x)
2364 # if defined(USE_LONG_DOUBLE) && defined(HAS_FP_CLASSL)
2365 # define Perl_fp_class(x) fp_classl(x)
2367 # define Perl_fp_class(x) fp_class(x)
2370 # if defined(FP_POS_INF) && defined(FP_QNAN)
2371 # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_SNAN)
2372 # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_QNAN)
2373 # define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_NEG_INF)
2374 # define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_POS_INF)
2375 # define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_NEG_NORM)
2376 # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_POS_NORM)
2377 # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_NEG_DENORM)
2378 # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_POS_DENORM)
2379 # define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_NEG_ZERO)
2380 # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_POS_ZERO)
2382 # undef Perl_fp_class /* Unknown set of defines */
2387 /* class(), _class(): Legacy: AIX. */
2388 #if !defined(Perl_fp_class) && defined(HAS_CLASS)
2390 # if defined(FP_PLUS_NORM) && defined(FP_PLUS_INF)
2392 # define Perl_fp_class(x) class(x)
2394 # define Perl_fp_class(x) _class(x)
2396 # if defined(FP_PLUS_INF) && defined(FP_NANQ)
2397 # define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_NANS)
2398 # define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_NANQ)
2399 # define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_MINUS_INF)
2400 # define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PLUS_INF)
2401 # define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM)
2402 # define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM)
2403 # define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM)
2404 # define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM)
2405 # define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_MINUS_ZERO)
2406 # define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
2408 # undef Perl_fp_class /* Unknown set of defines */
2413 /* Win32: _fpclass(), _isnan(), _finite(). */
2416 # define Perl_isnan(x) _isnan(x)
2418 # ifndef Perl_isfinite
2419 # define Perl_isfinite(x) _finite(x)
2421 # ifndef Perl_fp_class_snan
2422 /* No simple way to #define Perl_fp_class because _fpclass()
2423 * returns a set of bits. */
2424 # define Perl_fp_class_snan(x) (_fpclass(x) & _FPCLASS_SNAN)
2425 # define Perl_fp_class_qnan(x) (_fpclass(x) & _FPCLASS_QNAN)
2426 # define Perl_fp_class_nan(x) (_fpclass(x) & (_FPCLASS_SNAN|_FPCLASS_QNAN))
2427 # define Perl_fp_class_ninf(x) (_fpclass(x) & _FPCLASS_NINF))
2428 # define Perl_fp_class_pinf(x) (_fpclass(x) & _FPCLASS_PINF))
2429 # define Perl_fp_class_inf(x) (_fpclass(x) & (_FPCLASS_NINF|_FPCLASS_PINF))
2430 # define Perl_fp_class_nnorm(x) (_fpclass(x) & _FPCLASS_NN)
2431 # define Perl_fp_class_pnorm(x) (_fpclass(x) & _FPCLASS_PN)
2432 # define Perl_fp_class_norm(x) (_fpclass(x) & (_FPCLASS_NN|_FPCLASS_PN))
2433 # define Perl_fp_class_ndenorm(x) (_fpclass(x) & _FPCLASS_ND)
2434 # define Perl_fp_class_pdenorm(x) (_fpclass(x) & _FPCLASS_PD)
2435 # define Perl_fp_class_denorm(x) (_fpclass(x) & (_FPCLASS_ND|_FPCLASS_PD))
2436 # define Perl_fp_class_nzero(x) (_fpclass(x) & _FPCLASS_NZ)
2437 # define Perl_fp_class_pzero(x) (_fpclass(x) & _FPCLASS_PZ)
2438 # define Perl_fp_class_zero(x) (_fpclass(x) & (_FPCLASS_NZ|_FPCLASS_PZ))
2442 #if !defined(Perl_fp_class_inf) && \
2443 defined(Perl_fp_class_pinf) && defined(Perl_fp_class_ninf)
2444 # define Perl_fp_class_inf(x) \
2445 (Perl_fp_class_pinf(x) || Perl_fp_class_ninf(x))
2448 #if !defined(Perl_fp_class_nan) && \
2449 defined(Perl_fp_class_snan) && defined(Perl_fp_class_qnan)
2450 # define Perl_fp_class_nan(x) \
2451 (Perl_fp_class_snan(x) || Perl_fp_class_qnan(x))
2454 #if !defined(Perl_fp_class_zero) && \
2455 defined(Perl_fp_class_pzero) && defined(Perl_fp_class_nzero)
2456 # define Perl_fp_class_zero(x) \
2457 (Perl_fp_class_pzero(x) || Perl_fp_class_nzero(x))
2460 #if !defined(Perl_fp_class_norm) && \
2461 defined(Perl_fp_class_pnorm) && defined(Perl_fp_class_nnorm)
2462 # define Perl_fp_class_norm(x) \
2463 (Perl_fp_class_pnorm(x) || Perl_fp_class_nnorm(x))
2466 #if !defined(Perl_fp_class_denorm) && \
2467 defined(Perl_fp_class_pdenorm) && defined(Perl_fp_class_ndenorm)
2468 # define Perl_fp_class_denorm(x) \
2469 (Perl_fp_class_pdenorm(x) || Perl_fp_class_ndenorm(x))
2473 # ifdef Perl_fp_class_nan
2474 # define Perl_isnan(x) Perl_fp_class_nan(x)
2475 # elif defined(HAS_UNORDERED)
2476 # define Perl_isnan(x) unordered((x), 0.0)
2478 # define Perl_isnan(x) ((x)!=(x))
2483 # ifdef Perl_fp_class_inf
2484 # define Perl_isinf(x) Perl_fp_class_inf(x)
2488 #ifndef Perl_isfinite
2489 # if defined(HAS_ISFINITE) && !defined(isfinite)
2490 # define Perl_isfinite(x) isfinite((double)(x))
2491 # elif defined(HAS_FINITE)
2492 # define Perl_isfinite(x) finite((double)(x))
2493 # elif defined(Perl_fp_class_finite)
2494 # define Perl_isfinite(x) Perl_fp_class_finite(x)
2496 /* For the infinities the multiplication returns nan,
2497 * for the nan the multiplication also returns nan,
2498 * for everything else (that is, finite) zero should be returned. */
2499 # define Perl_isfinite(x) (((x) * 0) == 0)
2504 # if defined(Perl_isfinite) && defined(Perl_isnan)
2505 # define Perl_isinf(x) !(Perl_isfinite(x)||Perl_isnan(x))
2509 /* We need Perl_isfinitel (ends with ell) (if available) even when
2510 * not USE_LONG_DOUBLE because the printf code (sv_catpvfn_flags)
2512 #if defined(HAS_LONG_DOUBLE) && !defined(Perl_isfinitel)
2513 /* If isfinite() is a macro and looks like we have C99,
2514 * we assume it's the type-aware C99 isfinite(). */
2515 # if defined(HAS_ISFINITE) && defined(isfinite) && defined(HAS_C99)
2516 # define Perl_isfinitel(x) isfinite(x)
2517 # elif defined(HAS_ISFINITEL)
2518 # define Perl_isfinitel(x) isfinitel(x)
2519 # elif defined(HAS_FINITEL)
2520 # define Perl_isfinitel(x) finitel(x)
2521 # elif defined(HAS_INFL) && defined(HAS_NANL)
2522 # define Perl_isfinitel(x) !(isinfl(x)||isnanl(x))
2524 # define Perl_isfinitel(x) ((x) * 0 == 0) /* See Perl_isfinite. */
2528 /* The default is to use Perl's own atof() implementation (in numeric.c).
2529 * Usually that is the one to use but for some platforms (e.g. UNICOS)
2530 * it is however best to use the native implementation of atof.
2531 * You can experiment with using your native one by -DUSE_PERL_ATOF=0.
2532 * Some good tests to try out with either setting are t/base/num.t,
2533 * t/op/numconvert.t, and t/op/pack.t. Note that if using long doubles
2534 * you may need to be using a different function than atof! */
2536 #ifndef USE_PERL_ATOF
2538 # define USE_PERL_ATOF
2541 # if USE_PERL_ATOF == 0
2542 # undef USE_PERL_ATOF
2546 #ifdef USE_PERL_ATOF
2547 # define Perl_atof(s) Perl_my_atof(s)
2548 # define Perl_atof2(s, n) Perl_my_atof3(aTHX_ (s), &(n), 0)
2550 # define Perl_atof(s) (NV)atof(s)
2551 # define Perl_atof2(s, n) ((n) = atof(s))
2553 #define my_atof2(a,b) my_atof3(a,b,0)
2556 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
2557 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
2558 * depending on local options. Until Configure detects this (or at least
2559 * detects whether the "signed" keyword is available) the CHAR ranges
2560 * will not be included. UCHAR functions normally.
2564 #define PERL_UCHAR_MIN ((unsigned char)0)
2565 #define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
2567 #define PERL_USHORT_MIN ((unsigned short)0)
2568 #define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
2570 #define PERL_SHORT_MAX ((short)SHRT_MAX)
2571 #define PERL_SHORT_MIN ((short)SHRT_MIN)
2573 #define PERL_UINT_MAX ((unsigned int)UINT_MAX)
2574 #define PERL_UINT_MIN ((unsigned int)0)
2576 #define PERL_INT_MAX ((int)INT_MAX)
2577 #define PERL_INT_MIN ((int)INT_MIN)
2579 #define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
2580 #define PERL_ULONG_MIN ((unsigned long)0L)
2582 #define PERL_LONG_MAX ((long)LONG_MAX)
2583 #define PERL_LONG_MIN ((long)LONG_MIN)
2586 # define PERL_UQUAD_MAX (~(UV)0)
2587 # define PERL_UQUAD_MIN ((UV)0)
2588 # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
2589 # define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
2593 =head1 Numeric functions
2595 =for apidoc AmnUh||PERL_INT_MIN
2596 =for apidoc AmnUh||PERL_LONG_MAX
2597 =for apidoc AmnUh||PERL_LONG_MIN
2598 =for apidoc AmnUh||PERL_QUAD_MAX
2599 =for apidoc AmnUh||PERL_SHORT_MAX
2600 =for apidoc AmnUh||PERL_SHORT_MIN
2601 =for apidoc AmnUh||PERL_UCHAR_MAX
2602 =for apidoc AmnUh||PERL_UCHAR_MIN
2603 =for apidoc AmnUh||PERL_UINT_MAX
2604 =for apidoc AmnUh||PERL_ULONG_MAX
2605 =for apidoc AmnUh||PERL_ULONG_MIN
2606 =for apidoc AmnUh||PERL_UQUAD_MAX
2607 =for apidoc AmnUh||PERL_UQUAD_MIN
2608 =for apidoc AmnUh||PERL_USHORT_MAX
2609 =for apidoc AmnUh||PERL_USHORT_MIN
2610 =for apidoc AmnUh||PERL_QUAD_MIN
2611 =for apidoc AmnU||PERL_INT_MAX
2629 give the largest and smallest number representable in the current
2630 platform in variables of the corresponding types.
2632 For signed types, the smallest representable number is the most negative
2633 number, the one furthest away from zero.
2635 For C99 and later compilers, these correspond to things like C<INT_MAX>, which
2636 are available to the C code. But these constants, furnished by Perl,
2637 allow code compiled on earlier compilers to portably have access to the same
2644 typedef MEM_SIZE STRLEN;
2646 typedef struct op OP;
2647 typedef struct cop COP;
2648 typedef struct unop UNOP;
2649 typedef struct unop_aux UNOP_AUX;
2650 typedef struct binop BINOP;
2651 typedef struct listop LISTOP;
2652 typedef struct logop LOGOP;
2653 typedef struct pmop PMOP;
2654 typedef struct svop SVOP;
2655 typedef struct padop PADOP;
2656 typedef struct pvop PVOP;
2657 typedef struct loop LOOP;
2658 typedef struct methop METHOP;
2661 typedef struct opslab OPSLAB;
2662 typedef struct opslot OPSLOT;
2665 typedef struct block_hooks BHK;
2666 typedef struct custom_op XOP;
2668 typedef struct interpreter PerlInterpreter;
2670 /* SGI's <sys/sema.h> has struct sv */
2672 # define STRUCT_SV perl_sv
2674 # define STRUCT_SV sv
2676 typedef struct STRUCT_SV SV;
2677 typedef struct av AV;
2678 typedef struct hv HV;
2679 typedef struct cv CV;
2680 typedef struct p5rx REGEXP;
2681 typedef struct gp GP;
2682 typedef struct gv GV;
2683 typedef struct io IO;
2684 typedef struct context PERL_CONTEXT;
2685 typedef struct block BLOCK;
2687 typedef struct magic MAGIC;
2688 typedef struct xpv XPV;
2689 typedef struct xpviv XPVIV;
2690 typedef struct xpvuv XPVUV;
2691 typedef struct xpvnv XPVNV;
2692 typedef struct xpvmg XPVMG;
2693 typedef struct xpvlv XPVLV;
2694 typedef struct xpvinvlist XINVLIST;
2695 typedef struct xpvav XPVAV;
2696 typedef struct xpvhv XPVHV;
2697 typedef struct xpvgv XPVGV;
2698 typedef struct xpvcv XPVCV;
2699 typedef struct xpvbm XPVBM;
2700 typedef struct xpvfm XPVFM;
2701 typedef struct xpvio XPVIO;
2702 typedef struct mgvtbl MGVTBL;
2703 typedef union any ANY;
2704 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
2705 typedef struct ptr_tbl PTR_TBL_t;
2706 typedef struct clone_params CLONE_PARAMS;
2708 /* a pad is currently just an AV; but that might change,
2709 * so hide the type. */
2710 typedef struct padlist PADLIST;
2712 typedef struct padnamelist PADNAMELIST;
2713 typedef struct padname PADNAME;
2715 /* always enable PERL_OP_PARENT */
2716 #if !defined(PERL_OP_PARENT)
2717 # define PERL_OP_PARENT
2720 /* enable PERL_COPY_ON_WRITE by default */
2721 #if !defined(PERL_COPY_ON_WRITE) && !defined(PERL_NO_COW)
2722 # define PERL_COPY_ON_WRITE
2725 #ifdef PERL_COPY_ON_WRITE
2726 # define PERL_ANY_COW
2728 # define PERL_SAWAMPERSAND
2731 #if defined(PERL_DEBUG_READONLY_OPS) && !defined(USE_ITHREADS)
2732 # error PERL_DEBUG_READONLY_OPS only works with ithreads
2736 #include "charclass_invlists.h"
2738 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
2739 # if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
2740 # define USE_64_BIT_RAWIO /* implicit */
2744 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
2745 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
2746 * however, because operating systems like to do that themself. */
2749 # define FSEEKSIZE LSEEKSIZE
2751 # define FSEEKSIZE LONGSIZE
2755 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
2756 # if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
2757 # define USE_64_BIT_STDIO /* implicit */
2761 #ifdef USE_64_BIT_RAWIO
2764 # define Off_t off64_t
2766 # define LSEEKSIZE 8
2768 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2769 * will trigger defines like the ones below. Some 64-bit environments,
2770 * however, do not. Therefore we have to explicitly mix and match. */
2771 # if defined(USE_OPEN64)
2772 # define open open64
2774 # if defined(USE_LSEEK64)
2775 # define lseek lseek64
2777 # if defined(USE_LLSEEK)
2778 # define lseek llseek
2781 # if defined(USE_STAT64)
2782 # define stat stat64
2784 # if defined(USE_FSTAT64)
2785 # define fstat fstat64
2787 # if defined(USE_LSTAT64)
2788 # define lstat lstat64
2790 # if defined(USE_FLOCK64)
2791 # define flock flock64
2793 # if defined(USE_LOCKF64)
2794 # define lockf lockf64
2796 # if defined(USE_FCNTL64)
2797 # define fcntl fcntl64
2799 # if defined(USE_TRUNCATE64)
2800 # define truncate truncate64
2802 # if defined(USE_FTRUNCATE64)
2803 # define ftruncate ftruncate64
2807 #ifdef USE_64_BIT_STDIO
2808 # ifdef HAS_FPOS64_T
2810 # define Fpos_t fpos64_t
2812 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
2813 * will trigger defines like the ones below. Some 64-bit environments,
2814 * however, do not. */
2815 # if defined(USE_FOPEN64)
2816 # define fopen fopen64
2818 # if defined(USE_FSEEK64)
2819 # define fseek fseek64 /* don't do fseeko here, see perlio.c */
2821 # if defined(USE_FTELL64)
2822 # define ftell ftell64 /* don't do ftello here, see perlio.c */
2824 # if defined(USE_FSETPOS64)
2825 # define fsetpos fsetpos64
2827 # if defined(USE_FGETPOS64)
2828 # define fgetpos fgetpos64
2830 # if defined(USE_TMPFILE64)
2831 # define tmpfile tmpfile64
2833 # if defined(USE_FREOPEN64)
2834 # define freopen freopen64
2839 # include "iperlsys.h"
2844 # include "os2ish.h"
2846 # include "dosish.h"
2849 # include "vmsish.h"
2850 #elif defined(PLAN9)
2851 # include "./plan9/plan9ish.h"
2852 #elif defined(__VOS__)
2854 # include "./vos/vosish.h"
2856 # include "vos/vosish.h"
2858 #elif defined(__SYMBIAN32__)
2859 # include "symbian/symbianish.h"
2860 #elif defined(__HAIKU__)
2861 # include "haiku/haikuish.h"
2863 # include "unixish.h"
2867 # include "amigaos.h"
2868 # undef FD_CLOEXEC /* a lie in AmigaOS */
2871 /* NSIG logic from Configure --> */
2874 # define NSIG (_NSIG)
2875 # elif defined(SIGMAX)
2876 # define NSIG (SIGMAX+1)
2877 # elif defined(SIG_MAX)
2878 # define NSIG (SIG_MAX+1)
2879 # elif defined(_SIG_MAX)
2880 # define NSIG (_SIG_MAX+1)
2881 # elif defined(MAXSIG)
2882 # define NSIG (MAXSIG+1)
2883 # elif defined(MAX_SIG)
2884 # define NSIG (MAX_SIG+1)
2885 # elif defined(SIGARRAYSIZE)
2886 # define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
2887 # elif defined(_sys_nsig)
2888 # define NSIG (_sys_nsig) /* Solaris 2.5 */
2890 /* Default to some arbitrary number that's big enough to get most
2891 * of the common signals. */
2895 /* <-- NSIG logic from Configure */
2897 #ifndef NO_ENVIRON_ARRAY
2898 # define USE_ENVIRON_ARRAY
2902 #if defined(HAS_SIGACTION) && defined(SA_SIGINFO)
2903 /* having sigaction(2) means that the OS supports both 1-arg and 3-arg
2904 * signal handlers. But the perl core itself only fully supports 1-arg
2905 * handlers, so don't enable for now.
2906 * NB: POSIX::sigaction() supports both.
2908 * # define PERL_USE_3ARG_SIGHANDLER
2913 * This is an alias for the OS's siginfo_t, except that where the OS
2914 * doesn't support it, declare a dummy version instead. This allows us to
2915 * have signal handler functions which always have a Siginfo_t parameter
2916 * regardless of platform, (and which will just be passed a NULL value
2917 * where the OS doesn't support HAS_SIGACTION).
2920 #if defined(HAS_SIGACTION) && defined(SA_SIGINFO)
2921 typedef siginfo_t Siginfo_t;
2930 * initialise to avoid floating-point exceptions from overflow, etc
2932 #ifndef PERL_FPU_INIT
2933 # ifdef HAS_FPSETMASK
2934 # if HAS_FLOATINGPOINT_H
2935 # include <floatingpoint.h>
2937 /* Some operating systems have this as a macro, which in turn expands to a comma
2938 expression, and the last sub-expression is something that gets calculated,
2939 and then they have the gall to warn that a value computed is not used. Hence
2941 # define PERL_FPU_INIT (void)fpsetmask(0)
2942 # elif defined(SIGFPE) && defined(SIG_IGN) && !defined(PERL_MICRO)
2943 # define PERL_FPU_INIT PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN)
2944 # define PERL_FPU_PRE_EXEC { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe);
2945 # define PERL_FPU_POST_EXEC rsignal_restore(SIGFPE, &xfpe); }
2947 # define PERL_FPU_INIT
2950 #ifndef PERL_FPU_PRE_EXEC
2951 # define PERL_FPU_PRE_EXEC {
2952 # define PERL_FPU_POST_EXEC }
2955 /* In Tru64 the cc -ieee enables the IEEE math but disables traps.
2956 * We need to reenable the "invalid" trap because otherwise generation
2957 * of NaN values leaves the IEEE fp flags in bad state, leaving any further
2958 * fp ops behaving strangely (Inf + 1 resulting in zero, for example). */
2960 # include <machine/fpu.h>
2961 # define PERL_SYS_FPU_INIT \
2963 ieee_set_fp_control(IEEE_TRAP_ENABLE_INV); \
2964 signal(SIGFPE, SIG_IGN); \
2967 /* In IRIX the default for Flush to Zero bit is true,
2968 * which means that results going below the minimum of normal
2969 * floating points go to zero, instead of going denormal/subnormal.
2970 * This is unlike almost any other system running Perl, so let's clear it.
2971 * [perl #123767] IRIX64 blead (ddce084a) opbasic/arith.t failure, originally
2972 * [perl #120426] small numbers shouldn't round to zero if they have extra floating digits
2974 * XXX The flush-to-zero behaviour should be a Configure scan.
2975 * To change the behaviour usually requires some system-specific
2976 * incantation, though, like the below. */
2978 # include <sys/fpu.h>
2979 # define PERL_SYS_FPU_INIT \
2981 union fpc_csr csr; \
2982 csr.fc_word = get_fpc_csr(); \
2983 csr.fc_struct.flush = 0; \
2984 set_fpc_csr(csr.fc_word); \
2988 #ifndef PERL_SYS_FPU_INIT
2989 # define PERL_SYS_FPU_INIT NOOP
2992 #ifndef PERL_SYS_INIT3_BODY
2993 # define PERL_SYS_INIT3_BODY(argvp,argcp,envp) PERL_SYS_INIT_BODY(argvp,argcp)
2997 =head1 Miscellaneous Functions
2999 =for apidoc Am|void|PERL_SYS_INIT|int *argc|char*** argv
3000 Provides system-specific tune up of the C runtime environment necessary to
3001 run Perl interpreters. This should be called only once, before creating
3002 any Perl interpreters.
3004 =for apidoc Am|void|PERL_SYS_INIT3|int *argc|char*** argv|char*** env
3005 Provides system-specific tune up of the C runtime environment necessary to
3006 run Perl interpreters. This should be called only once, before creating
3007 any Perl interpreters.
3009 =for apidoc Am|void|PERL_SYS_TERM|
3010 Provides system-specific clean up of the C runtime environment after
3011 running Perl interpreters. This should be called only once, after
3012 freeing any remaining Perl interpreters.
3017 #define PERL_SYS_INIT(argc, argv) Perl_sys_init(argc, argv)
3018 #define PERL_SYS_INIT3(argc, argv, env) Perl_sys_init3(argc, argv, env)
3019 #define PERL_SYS_TERM() Perl_sys_term()
3021 #ifndef PERL_WRITE_MSG_TO_CONSOLE
3022 # define PERL_WRITE_MSG_TO_CONSOLE(io, msg, len) PerlIO_write(io, msg, len)
3027 # ifdef _POSIX_PATH_MAX
3028 # if PATH_MAX > _POSIX_PATH_MAX
3029 /* POSIX 1990 (and pre) was ambiguous about whether PATH_MAX
3030 * included the null byte or not. Later amendments of POSIX,
3031 * XPG4, the Austin Group, and the Single UNIX Specification
3032 * all explicitly include the null byte in the PATH_MAX.
3033 * Ditto for _POSIX_PATH_MAX. */
3034 # define MAXPATHLEN PATH_MAX
3036 # define MAXPATHLEN _POSIX_PATH_MAX
3039 # define MAXPATHLEN (PATH_MAX+1)
3042 # define MAXPATHLEN 1024 /* Err on the large side. */
3046 /* USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
3047 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
3048 * this results in many functions being undeclared which bothers C++
3049 * May make sense to have threads after "*ish.h" anyway
3052 /* clang Thread Safety Analysis/Annotations/Attributes
3053 * http://clang.llvm.org/docs/ThreadSafetyAnalysis.html
3055 * Available since clang 3.6-ish (appeared in 3.4, but shaky still in 3.5).
3056 * Apple XCode hijacks __clang_major__ and __clang_minor__
3057 * (6.1 means really clang 3.6), so needs extra hijinks
3058 * (could probably also test the contents of __apple_build_version__).
3060 #if defined(USE_ITHREADS) && defined(I_PTHREAD) && \
3061 defined(__clang__) && \
3062 !defined(PERL_GLOBAL_STRUCT) && \
3063 !defined(PERL_GLOBAL_STRUCT_PRIVATE) && \
3065 ((!defined(__apple_build_version__) && \
3066 ((__clang_major__ == 3 && __clang_minor__ >= 6) || \
3067 (__clang_major__ >= 4))) || \
3068 (defined(__apple_build_version__) && \
3069 ((__clang_major__ == 6 && __clang_minor__ >= 1) || \
3070 (__clang_major__ >= 7))))
3071 # define PERL_TSA__(x) __attribute__((x))
3072 # define PERL_TSA_ACTIVE
3074 # define PERL_TSA__(x) /* No TSA, make TSA attributes no-ops. */
3075 # undef PERL_TSA_ACTIVE
3078 /* PERL_TSA_CAPABILITY() is used to annotate typedefs.
3079 * typedef old_type PERL_TSA_CAPABILITY("mutex") new_type;
3081 #define PERL_TSA_CAPABILITY(x) \
3082 PERL_TSA__(capability(x))
3084 /* In the below examples the mutex must be lexically visible, usually
3085 * either as global variables, or as function arguments. */
3087 /* PERL_TSA_GUARDED_BY() is used to annotate global variables.
3089 * Foo foo PERL_TSA_GUARDED_BY(mutex);
3091 #define PERL_TSA_GUARDED_BY(x) \
3092 PERL_TSA__(guarded_by(x))
3094 /* PERL_TSA_PT_GUARDED_BY() is used to annotate global pointers.
3095 * The data _behind_ the pointer is guarded.
3097 * Foo* ptr PERL_TSA_PT_GUARDED_BY(mutex);
3099 #define PERL_TSA_PT_GUARDED_BY(x) \
3100 PERL_TSA__(pt_guarded_by(x))
3102 /* PERL_TSA_REQUIRES() is used to annotate functions.
3103 * The caller MUST hold the resource when calling the function.
3105 * void Foo() PERL_TSA_REQUIRES(mutex);
3107 #define PERL_TSA_REQUIRES(x) \
3108 PERL_TSA__(requires_capability(x))
3110 /* PERL_TSA_EXCLUDES() is used to annotate functions.
3111 * The caller MUST NOT hold resource when calling the function.
3113 * EXCLUDES should be used when the function first acquires
3114 * the resource and then releases it. Use to avoid deadlock.
3116 * void Foo() PERL_TSA_EXCLUDES(mutex);
3118 #define PERL_TSA_EXCLUDES(x) \
3119 PERL_TSA__(locks_excluded(x))
3121 /* PERL_TSA_ACQUIRE() is used to annotate functions.
3122 * The caller MUST NOT hold the resource when calling the function,
3123 * and the function will acquire the resource.
3125 * void Foo() PERL_TSA_ACQUIRE(mutex);
3127 #define PERL_TSA_ACQUIRE(x) \
3128 PERL_TSA__(acquire_capability(x))
3130 /* PERL_TSA_RELEASE() is used to annotate functions.
3131 * The caller MUST hold the resource when calling the function,
3132 * and the function will release the resource.
3134 * void Foo() PERL_TSA_RELEASE(mutex);
3136 #define PERL_TSA_RELEASE(x) \
3137 PERL_TSA__(release_capability(x))
3139 /* PERL_TSA_NO_TSA is used to annotate functions.
3140 * Used when being intentionally unsafe, or when the code is too
3141 * complicated for the analysis. Use sparingly.
3143 * void Foo() PERL_TSA_NO_TSA;
3145 #define PERL_TSA_NO_TSA \
3146 PERL_TSA__(no_thread_safety_analysis)
3148 /* There are more annotations/attributes available, see the clang
3149 * documentation for details. */
3151 #if defined(USE_ITHREADS)
3153 # include <nw5thread.h>
3154 # elif defined(WIN32)
3155 # include <win32thread.h>
3157 # include "os2thread.h"
3158 # elif defined(I_MACH_CTHREADS)
3159 # include <mach/cthreads.h>
3160 typedef cthread_t perl_os_thread;
3161 typedef mutex_t perl_mutex;
3162 typedef condition_t perl_cond;
3163 typedef void * perl_key;
3164 # elif defined(I_PTHREAD) /* Posix threads */
3165 # include <pthread.h>
3166 typedef pthread_t perl_os_thread;
3167 typedef pthread_mutex_t PERL_TSA_CAPABILITY("mutex") perl_mutex;
3168 typedef pthread_cond_t perl_cond;
3169 typedef pthread_key_t perl_key;
3171 #endif /* USE_ITHREADS */
3173 #ifdef PERL_TSA_ACTIVE
3174 /* Since most pthread mutex interfaces have not been annotated, we
3175 * need to have these wrappers. The NO_TSA annotation is quite ugly
3176 * but it cannot be avoided in plain C, unlike in C++, where one could
3177 * e.g. use ACQUIRE() with no arg on a mutex lock method.
3179 * The bodies of these wrappers are in util.c
3181 * TODO: however, some platforms are starting to get these clang
3182 * thread safety annotations for pthreads, for example FreeBSD.
3183 * Do we need a way to a bypass these wrappers? */
3184 EXTERN_C int perl_tsa_mutex_lock(perl_mutex* mutex)
3185 PERL_TSA_ACQUIRE(*mutex)
3187 EXTERN_C int perl_tsa_mutex_unlock(perl_mutex* mutex)
3188 PERL_TSA_RELEASE(*mutex)
3197 # include "netware.h"
3200 #define STATUS_UNIX PL_statusvalue
3202 # define STATUS_NATIVE PL_statusvalue_vms
3204 * vaxc$errno is only guaranteed to be valid if errno == EVMSERR, otherwise
3205 * its contents can not be trusted. Unfortunately, Perl seems to check
3206 * it on exit, so it when PL_statusvalue_vms is updated, vaxc$errno should
3209 # include <stsdef.h>
3211 /* Presume this because if VMS changes it, it will require a new
3212 * set of APIs for waiting on children for binary compatibility.
3214 # define child_offset_bits (8)
3215 # ifndef C_FAC_POSIX
3216 # define C_FAC_POSIX 0x35A000
3219 /* STATUS_EXIT - validates and returns a NATIVE exit status code for the
3220 * platform from the existing UNIX or Native status values.
3223 # define STATUS_EXIT \
3224 (((I32)PL_statusvalue_vms == -1 ? SS$_ABORT : PL_statusvalue_vms) | \
3225 (VMSISH_HUSHED ? STS$M_INHIB_MSG : 0))
3228 /* STATUS_NATIVE_CHILD_SET - Calculate UNIX status that matches the child
3229 * exit code and shifts the UNIX value over the correct number of bits to
3230 * be a child status. Usually the number of bits is 8, but that could be
3231 * platform dependent. The NATIVE status code is presumed to have either
3232 * from a child process.
3235 /* This is complicated. The child processes return a true native VMS
3236 status which must be saved. But there is an assumption in Perl that
3237 the UNIX child status has some relationship to errno values, so
3238 Perl tries to translate it to text in some of the tests.
3239 In order to get the string translation correct, for the error, errno
3240 must be EVMSERR, but that generates a different text message
3241 than what the test programs are expecting. So an errno value must
3242 be derived from the native status value when an error occurs.
3243 That will hide the true native status message. With this version of
3244 perl, the true native child status can always be retrieved so that
3245 is not a problem. But in this case, Pl_statusvalue and errno may
3246 have different values in them.
3249 # define STATUS_NATIVE_CHILD_SET(n) \
3251 I32 evalue = (I32)n; \
3252 if (evalue == EVMSERR) { \
3253 PL_statusvalue_vms = vaxc$errno; \
3254 PL_statusvalue = evalue; \
3256 PL_statusvalue_vms = evalue; \
3257 if (evalue == -1) { \
3258 PL_statusvalue = -1; \
3259 PL_statusvalue_vms = SS$_ABORT; /* Should not happen */ \
3261 PL_statusvalue = Perl_vms_status_to_unix(evalue, 1); \
3262 set_vaxc_errno(evalue); \
3263 if ((PL_statusvalue_vms & C_FAC_POSIX) == C_FAC_POSIX) \
3264 set_errno(EVMSERR); \
3265 else set_errno(Perl_vms_status_to_unix(evalue, 0)); \
3266 PL_statusvalue = PL_statusvalue << child_offset_bits; \
3270 # ifdef VMSISH_STATUS
3271 # define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_UNIX)
3273 # define STATUS_CURRENT STATUS_UNIX
3276 /* STATUS_UNIX_SET - takes a UNIX/POSIX errno value and attempts to update
3277 * the NATIVE status to an equivalent value. Can not be used to translate
3278 * exit code values as exit code values are not guaranteed to have any
3279 * relationship at all to errno values.
3280 * This is used when Perl is forcing errno to have a specific value.
3282 # define STATUS_UNIX_SET(n) \
3284 I32 evalue = (I32)n; \
3285 PL_statusvalue = evalue; \
3286 if (PL_statusvalue != -1) { \
3287 if (PL_statusvalue != EVMSERR) { \
3288 PL_statusvalue &= 0xFFFF; \
3289 if (MY_POSIX_EXIT) \
3290 PL_statusvalue_vms=PL_statusvalue ? SS$_ABORT : SS$_NORMAL;\
3291 else PL_statusvalue_vms = Perl_unix_status_to_vms(evalue); \
3294 PL_statusvalue_vms = vaxc$errno; \
3297 else PL_statusvalue_vms = SS$_ABORT; \
3298 set_vaxc_errno(PL_statusvalue_vms); \
3301 /* STATUS_UNIX_EXIT_SET - Takes a UNIX/POSIX exit code and sets
3302 * the NATIVE error status based on it.
3304 * When in the default mode to comply with the Perl VMS documentation,
3305 * 0 is a success and any other code sets the NATIVE status to a failure
3306 * code of SS$_ABORT.
3308 * In the new POSIX EXIT mode, native status will be set so that the
3309 * actual exit code will can be retrieved by the calling program or
3312 * If the exit code is not clearly a UNIX parent or child exit status,
3313 * it will be passed through as a VMS status.
3316 # define STATUS_UNIX_EXIT_SET(n) \
3318 I32 evalue = (I32)n; \
3319 PL_statusvalue = evalue; \
3320 if (MY_POSIX_EXIT) { \
3321 if (evalue <= 0xFF00) { \
3322 if (evalue > 0xFF) \
3323 evalue = (evalue >> child_offset_bits) & 0xFF; \
3324 PL_statusvalue_vms = \
3325 (C_FAC_POSIX | (evalue << 3 ) | \
3326 ((evalue == 1) ? (STS$K_ERROR | STS$M_INHIB_MSG) : 1)); \
3327 } else /* forgive them Perl, for they have sinned */ \
3328 PL_statusvalue_vms = evalue; \
3331 PL_statusvalue_vms = SS$_NORMAL; \
3332 else if (evalue <= 0xFF00) \
3333 PL_statusvalue_vms = SS$_ABORT; \
3334 else { /* forgive them Perl, for they have sinned */ \
3335 if (evalue != EVMSERR) PL_statusvalue_vms = evalue; \
3336 else PL_statusvalue_vms = vaxc$errno; \
3337 /* And obviously used a VMS status value instead of UNIX */ \
3338 PL_statusvalue = EVMSERR; \
3340 set_vaxc_errno(PL_statusvalue_vms); \
3345 /* STATUS_EXIT_SET - Takes a NATIVE/UNIX/POSIX exit code
3346 * and sets the NATIVE error status based on it. This special case
3347 * is needed to maintain compatibility with past VMS behavior.
3349 * In the default mode on VMS, this number is passed through as
3350 * both the NATIVE and UNIX status. Which makes it different
3351 * that the STATUS_UNIX_EXIT_SET.
3353 * In the new POSIX EXIT mode, native status will be set so that the
3354 * actual exit code will can be retrieved by the calling program or
3357 * A POSIX exit code is from 0 to 255. If the exit code is higher
3358 * than this, it needs to be assumed that it is a VMS exit code and
3362 # define STATUS_EXIT_SET(n) \
3364 I32 evalue = (I32)n; \
3365 PL_statusvalue = evalue; \
3366 if (MY_POSIX_EXIT) \
3367 if (evalue > 255) PL_statusvalue_vms = evalue; else { \
3368 PL_statusvalue_vms = \
3369 (C_FAC_POSIX | (evalue << 3 ) | \
3370 ((evalue == 1) ? (STS$K_ERROR | STS$M_INHIB_MSG) : 1));} \
3372 PL_statusvalue_vms = evalue ? evalue : SS$_NORMAL; \
3373 set_vaxc_errno(PL_statusvalue_vms); \
3377 /* This macro forces a success status */
3378 # define STATUS_ALL_SUCCESS \
3379 (PL_statusvalue = 0, PL_statusvalue_vms = SS$_NORMAL)
3381 /* This macro forces a failure status */
3382 # define STATUS_ALL_FAILURE (PL_statusvalue = 1, \
3383 vaxc$errno = PL_statusvalue_vms = MY_POSIX_EXIT ? \
3384 (C_FAC_POSIX | (1 << 3) | STS$K_ERROR | STS$M_INHIB_MSG) : SS$_ABORT)
3386 #elif defined(__amigaos4__)
3387 /* A somewhat experimental attempt to simulate posix return code values */
3388 # define STATUS_NATIVE PL_statusvalue_posix
3389 # define STATUS_NATIVE_CHILD_SET(n) \
3391 PL_statusvalue_posix = (n); \
3392 if (PL_statusvalue_posix < 0) { \
3393 PL_statusvalue = -1; \
3396 PL_statusvalue = n << 8; \
3399 # define STATUS_UNIX_SET(n) \
3401 PL_statusvalue = (n); \
3402 if (PL_statusvalue != -1) \
3403 PL_statusvalue &= 0xFFFF; \
3405 # define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
3406 # define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
3407 # define STATUS_CURRENT STATUS_UNIX
3408 # define STATUS_EXIT STATUS_UNIX
3409 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_posix = 0)
3410 # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_posix = 1)
3413 # define STATUS_NATIVE PL_statusvalue_posix
3414 # if defined(WCOREDUMP)
3415 # define STATUS_NATIVE_CHILD_SET(n) \
3417 PL_statusvalue_posix = (n); \
3418 if (PL_statusvalue_posix == -1) \
3419 PL_statusvalue = -1; \
3422 (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) | \
3423 (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0) | \
3424 (WIFSIGNALED(PL_statusvalue_posix) && WCOREDUMP(PL_statusvalue_posix) ? 0x80 : 0); \
3427 # elif defined(WIFEXITED)
3428 # define STATUS_NATIVE_CHILD_SET(n) \
3430 PL_statusvalue_posix = (n); \
3431 if (PL_statusvalue_posix == -1) \
3432 PL_statusvalue = -1; \
3435 (WIFEXITED(PL_statusvalue_posix) ? (WEXITSTATUS(PL_statusvalue_posix) << 8) : 0) | \
3436 (WIFSIGNALED(PL_statusvalue_posix) ? (WTERMSIG(PL_statusvalue_posix) & 0x7F) : 0); \
3440 # define STATUS_NATIVE_CHILD_SET(n) \
3442 PL_statusvalue_posix = (n); \
3443 if (PL_statusvalue_posix == -1) \
3444 PL_statusvalue = -1; \
3447 PL_statusvalue_posix & 0xFFFF; \
3451 # define STATUS_UNIX_SET(n) \
3453 PL_statusvalue = (n); \
3454 if (PL_statusvalue != -1) \
3455 PL_statusvalue &= 0xFFFF; \
3457 # define STATUS_UNIX_EXIT_SET(n) STATUS_UNIX_SET(n)
3458 # define STATUS_EXIT_SET(n) STATUS_UNIX_SET(n)
3459 # define STATUS_CURRENT STATUS_UNIX
3460 # define STATUS_EXIT STATUS_UNIX
3461 # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_posix = 0)
3462 # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_posix = 1)
3465 /* flags in PL_exit_flags for nature of exit() */
3466 #define PERL_EXIT_EXPECTED 0x01
3467 #define PERL_EXIT_DESTRUCT_END 0x02 /* Run END in perl_destruct */
3468 #define PERL_EXIT_WARN 0x04 /* Warn if Perl_my_exit() or Perl_my_failure_exit() called */
3469 #define PERL_EXIT_ABORT 0x08 /* Call abort() if Perl_my_exit() or Perl_my_failure_exit() called */
3472 /* format to use for version numbers in file/directory names */
3473 /* XXX move to Configure? */
3474 /* This was only ever used for the current version, and that can be done at
3475 compile time, as PERL_FS_VERSION, so should we just delete it? */
3476 # ifndef PERL_FS_VER_FMT
3477 # define PERL_FS_VER_FMT "%d.%d.%d"
3481 #ifndef PERL_FS_VERSION
3482 # define PERL_FS_VERSION PERL_VERSION_STRING
3485 /* This defines a way to flush all output buffers. This may be a
3486 * performance issue, so we allow people to disable it. Also, if
3487 * we are using stdio, there are broken implementations of fflush(NULL)
3488 * out there, Solaris being the most prominent.
3490 #ifndef PERL_FLUSHALL_FOR_CHILD
3491 # if defined(USE_PERLIO) || defined(FFLUSH_NULL)
3492 # define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
3493 # elif defined(FFLUSH_ALL)
3494 # define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
3496 # define PERL_FLUSHALL_FOR_CHILD NOOP
3500 #ifndef PERL_WAIT_FOR_CHILDREN
3501 # define PERL_WAIT_FOR_CHILDREN NOOP
3504 /* the traditional thread-unsafe notion of "current interpreter". */
3505 #ifndef PERL_SET_INTERP
3506 # define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
3509 #ifndef PERL_GET_INTERP
3510 # define PERL_GET_INTERP (PL_curinterp)
3513 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
3514 # ifdef MULTIPLICITY
3515 # define PERL_GET_THX ((PerlInterpreter *)PERL_GET_CONTEXT)
3517 # define PERL_SET_THX(t) PERL_SET_CONTEXT(t)
3521 This replaces the previous %_ "hack" by the "%p" hacks.
3522 All that is required is that the perl source does not
3523 use "%-p" or "%-<number>p" or "%<number>p" formats.
3524 These formats will still work in perl code.
3525 See comments in sv.c for further details.
3527 Robin Barker 2005-07-14
3529 No longer use %1p for VDf = %vd. RMB 2007-10-19
3533 # define SVf_(n) "-" STRINGIFY(n) "p"
3541 # define SVf32 SVf_(32)
3545 # define SVf256 SVf_(256)
3548 #define SVfARG(p) ((void*)(p))
3554 /* Not ideal, but we cannot easily include a number in an already-numeric
3555 * format sequence. */
3557 # define HEKf256 "3p"
3560 #define HEKfARG(p) ((void*)(p))
3563 =for apidoc Amnh||UTF8f
3564 =for apidoc Amh||UTF8fARG|bool is_utf8|Size_t byte_len|char *str
3567 * %4p is a custom format
3570 # define UTF8f "d%" UVuf "%4p"
3572 #define UTF8fARG(u,l,p) (int)cBOOL(u), (UV)(l), (void*)(p)
3575 #define PNfARG(pn) (int)1, (UV)PadnameLEN(pn), (void *)PadnamePV(pn)
3578 /* not used; but needed for backward compatibility with XS code? - RMB */
3584 #if !defined(DEBUGGING) && !defined(NDEBUG)
3589 /* For functions that are marked as __attribute__noreturn__, it's not
3590 appropriate to call return. In either case, include the lint directive.
3592 #ifdef HASATTRIBUTE_NORETURN
3593 # define NORETURN_FUNCTION_END NOT_REACHED;
3595 # define NORETURN_FUNCTION_END NOT_REACHED; return 0
3598 #ifdef HAS_BUILTIN_EXPECT
3599 # define EXPECT(expr,val) __builtin_expect(expr,val)
3601 # define EXPECT(expr,val) (expr)
3605 =head1 Miscellaneous Functions
3607 =for apidoc AmU|bool|LIKELY|const bool expr
3609 Returns the input unchanged, but at the same time it gives a branch prediction
3610 hint to the compiler that this condition is likely to be true.
3612 =for apidoc AmU|bool|UNLIKELY|const bool expr
3614 Returns the input unchanged, but at the same time it gives a branch prediction
3615 hint to the compiler that this condition is likely to be false.
3619 #define LIKELY(cond) EXPECT(cBOOL(cond),TRUE)
3620 #define UNLIKELY(cond) EXPECT(cBOOL(cond),FALSE)
3622 #ifdef HAS_BUILTIN_CHOOSE_EXPR
3626 /* STATIC_ASSERT_DECL/STATIC_ASSERT_STMT are like assert(), but for compile
3627 time invariants. That is, their argument must be a constant expression that
3628 can be verified by the compiler. This expression can contain anything that's
3629 known to the compiler, e.g. #define constants, enums, or sizeof (...). If
3630 the expression evaluates to 0, compilation fails.
3631 Because they generate no runtime code (i.e. their use is "free"), they're
3632 always active, even under non-DEBUGGING builds.
3633 STATIC_ASSERT_DECL expands to a declaration and is suitable for use at
3634 file scope (outside of any function).
3635 STATIC_ASSERT_STMT expands to a statement and is suitable for use inside a
3638 #if (! defined(__IBMC__) || __IBMC__ >= 1210) \
3639 && (( defined(static_assert) && ( defined(_ISOC11_SOURCE) \
3640 || (__STDC_VERSION__ - 0) >= 201101L)) \
3641 || (defined(__cplusplus) && __cplusplus >= 201103L))
3642 /* XXX static_assert is a macro defined in <assert.h> in C11 or a compiler
3643 builtin in C++11. But IBM XL C V11 does not support _Static_assert, no
3644 matter what <assert.h> says.
3646 # define STATIC_ASSERT_DECL(COND) static_assert(COND, #COND)
3648 /* We use a bit-field instead of an array because gcc accepts
3649 'typedef char x[n]' where n is not a compile-time constant.
3650 We want to enforce constantness.
3652 # define STATIC_ASSERT_2(COND, SUFFIX) \
3654 unsigned int _static_assertion_failed_##SUFFIX : (COND) ? 1 : -1; \
3655 } _static_assertion_failed_##SUFFIX PERL_UNUSED_DECL
3656 # define STATIC_ASSERT_1(COND, SUFFIX) STATIC_ASSERT_2(COND, SUFFIX)
3657 # define STATIC_ASSERT_DECL(COND) STATIC_ASSERT_1(COND, __LINE__)
3659 /* We need this wrapper even in C11 because 'case X: static_assert(...);' is an
3660 error (static_assert is a declaration, and only statements can have labels).
3662 #define STATIC_ASSERT_STMT(COND) STMT_START { STATIC_ASSERT_DECL(COND); } STMT_END
3664 #ifndef __has_builtin
3665 # define __has_builtin(x) 0 /* not a clang style compiler */
3668 /* ASSUME is like assert(), but it has a benefit in a release build. It is a
3669 hint to a compiler about a statement of fact in a function call free
3670 expression, which allows the compiler to generate better machine code.
3671 In a debug build, ASSUME(x) is a synonym for assert(x). ASSUME(0) means
3672 the control path is unreachable. In a for loop, ASSUME can be used to hint
3673 that a loop will run at least X times. ASSUME is based off MSVC's __assume
3674 intrinsic function, see its documents for more details.
3678 # if __has_builtin(__builtin_unreachable) \
3679 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 4) /* 4.5 -> */
3680 # define ASSUME(x) ((x) ? (void) 0 : __builtin_unreachable())
3681 # elif defined(_MSC_VER)
3682 # define ASSUME(x) __assume(x)
3683 # elif defined(__ARMCC_VERSION) /* untested */
3684 # define ASSUME(x) __promise(x)
3686 /* a random compiler might define assert to its own special optimization token
3687 so pass it through to C lib as a last resort */
3688 # define ASSUME(x) assert(x)
3691 # define ASSUME(x) assert(x)
3694 #if defined(__sun) /* ASSUME() generates warnings on Solaris */
3695 # define NOT_REACHED
3696 #elif defined(DEBUGGING) && (__has_builtin(__builtin_unreachable) \
3697 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 4)) /* 4.5 -> */
3698 # define NOT_REACHED STMT_START { ASSUME(!"UNREACHABLE"); __builtin_unreachable(); } STMT_END
3700 # define NOT_REACHED ASSUME(!"UNREACHABLE")
3703 /* Some unistd.h's give a prototype for pause() even though
3704 HAS_PAUSE ends up undefined. This causes the #define
3705 below to be rejected by the compiler. Sigh.
3710 #define Pause() sleep((32767<<16)+32767)
3714 # ifdef IOCPARM_MASK
3715 /* on BSDish systems we're safe */
3716 # define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
3717 # elif defined(_IOC_SIZE) && defined(__GLIBC__)
3718 /* on Linux systems we're safe; except when we're not [perl #38223] */
3719 # define IOCPARM_LEN(x) (_IOC_SIZE(x) < 256 ? 256 : _IOC_SIZE(x))
3721 /* otherwise guess at what's safe */
3722 # define IOCPARM_LEN(x) 256
3726 #if defined(__CYGWIN__)
3728 * This symbol, if defined, indicates that the program should
3729 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
3730 * that a file is in "binary" mode -- that is, that no translation
3731 * of bytes occurs on read or write operations.
3733 # define USEMYBINMODE /**/
3734 # include <io.h> /* for setmode() prototype */
3735 # define my_binmode(fp, iotype, mode) \
3736 cBOOL(PerlLIO_setmode(fileno(fp), mode) != -1)
3740 void init_os_extras(void);
3743 #ifdef UNION_ANY_DEFINITION
3744 UNION_ANY_DEFINITION;
3762 void (*any_dptr) (void*);
3763 void (*any_dxptr) (pTHX_ void*);
3767 typedef I32 (*filter_t) (pTHX_ int, SV *, int);
3769 #define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
3770 #define FILTER_DATA(idx) \
3771 (PL_parser ? AvARRAY(PL_parser->rsfp_filters)[idx] : NULL)
3772 #define FILTER_ISREADER(idx) \
3773 (PL_parser && PL_parser->rsfp_filters \
3774 && idx >= AvFILLp(PL_parser->rsfp_filters))
3775 #define PERL_FILTER_EXISTS(i) \
3776 (PL_parser && PL_parser->rsfp_filters \
3777 && (i) <= av_tindex(PL_parser->rsfp_filters))
3779 #if defined(_AIX) && !defined(_AIX43)
3780 #if defined(USE_REENTRANT) || defined(_REENTRANT) || defined(_THREAD_SAFE)
3781 /* We cannot include <crypt.h> to get the struct crypt_data
3782 * because of setkey prototype problems when threading */
3783 typedef struct crypt_data { /* straight from /usr/include/crypt.h */
3784 /* From OSF, Not needed in AIX
3792 #endif /* threading */
3795 #ifndef PERL_CALLCONV
3797 # define PERL_CALLCONV extern "C"
3799 # define PERL_CALLCONV
3802 #ifndef PERL_CALLCONV_NO_RET
3803 # define PERL_CALLCONV_NO_RET PERL_CALLCONV
3806 /* PERL_STATIC_NO_RET is supposed to be equivalent to STATIC on builds that
3807 dont have a noreturn as a declaration specifier
3809 #ifndef PERL_STATIC_NO_RET
3810 # define PERL_STATIC_NO_RET STATIC
3812 /* PERL_STATIC_NO_RET is supposed to be equivalent to PERL_STATIC_INLINE on
3813 builds that dont have a noreturn as a declaration specifier
3815 #ifndef PERL_STATIC_INLINE_NO_RET
3816 # define PERL_STATIC_INLINE_NO_RET PERL_STATIC_INLINE
3820 # include "iperlsys.h"
3823 #ifdef __LIBCATAMOUNT__
3824 #undef HAS_PASSWD /* unixish.h but not unixish enough. */
3826 #define FAKE_BIT_BUCKET
3829 /* [perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0.
3830 * Note that the USE_HASH_SEED and similar defines are *NOT* defined by
3831 * Configure, despite their names being similar to other defines like
3832 * USE_ITHREADS. Configure in fact knows nothing about the randomised
3833 * hashes. Therefore to enable/disable the hash randomisation defines
3834 * use the Configure -Accflags=... instead. */
3835 #if !defined(NO_HASH_SEED) && !defined(USE_HASH_SEED)
3836 # define USE_HASH_SEED
3842 /* macros to define bit-fields in structs. */
3843 #ifndef PERL_BITFIELD8
3844 # define PERL_BITFIELD8 U8
3846 #ifndef PERL_BITFIELD16
3847 # define PERL_BITFIELD16 U16
3849 #ifndef PERL_BITFIELD32
3850 # define PERL_BITFIELD32 U32
3860 #include "opnames.h"
3867 #include "warnings.h"
3870 /* these would be in doio.h if there was such a file */
3871 #define my_stat() my_stat_flags(SV_GMAGIC)
3872 #define my_lstat() my_lstat_flags(SV_GMAGIC)
3874 /* defined in sv.c, but also used in [ach]v.c */
3877 #undef _XPVCV_COMMON
3881 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
3883 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
3885 /* These have to be predeclared, as they are used in proto.h which is #included
3886 * before their definitions in regcomp.h. */
3889 typedef struct regnode_charclass regnode_charclass;
3891 /* A hopefully less confusing name. The sub-classes are all Posix classes only
3892 * used under /l matching */
3893 typedef struct regnode_charclass_posixl regnode_charclass_class;
3894 typedef struct regnode_charclass_posixl regnode_charclass_posixl;
3896 typedef struct regnode_ssc regnode_ssc;
3897 typedef struct RExC_state_t RExC_state_t;
3898 struct _reg_trie_data;
3902 struct ptr_tbl_ent {
3903 struct ptr_tbl_ent* next;
3909 struct ptr_tbl_ent** tbl_ary;
3912 struct ptr_tbl_arena *tbl_arena;
3913 struct ptr_tbl_ent *tbl_arena_next;
3914 struct ptr_tbl_ent *tbl_arena_end;
3917 #if defined(htonl) && !defined(HAS_HTONL)
3920 #if defined(htons) && !defined(HAS_HTONS)
3923 #if defined(ntohl) && !defined(HAS_NTOHL)
3926 #if defined(ntohs) && !defined(HAS_NTOHS)
3934 # if (BYTEORDER & 0xffff) == 0x4321
3935 /* Big endian system, so ntohl, ntohs, htonl and htons do not need to
3936 re-order their values. However, to behave identically to the alternative
3937 implementations, they should truncate to the correct size. */
3938 # define ntohl(x) ((x)&0xFFFFFFFF)
3939 # define htonl(x) ntohl(x)
3940 # define ntohs(x) ((x)&0xFFFF)
3941 # define htons(x) ntohs(x)
3942 # elif BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
3944 /* Note that we can't straight out declare our own htonl and htons because
3945 the Win32 build process forcibly undefines HAS_HTONL etc for its miniperl,
3946 to avoid the overhead of initialising the socket subsystem, but the headers
3947 that *declare* the various functions are still seen. If we declare our own
3948 htonl etc they will clash with the declarations in the Win32 headers. */
3950 PERL_STATIC_INLINE U32
3951 my_swap32(const U32 x) {
3952 return ((x & 0xFF) << 24) | ((x >> 24) & 0xFF)
3953 | ((x & 0x0000FF00) << 8) | ((x & 0x00FF0000) >> 8);
3956 PERL_STATIC_INLINE U16
3957 my_swap16(const U16 x) {
3958 return ((x & 0xFF) << 8) | ((x >> 8) & 0xFF);
3961 # define htonl(x) my_swap32(x)
3962 # define ntohl(x) my_swap32(x)
3963 # define ntohs(x) my_swap16(x)
3964 # define htons(x) my_swap16(x)
3966 # error "Unsupported byteorder"
3967 /* The C pre-processor doesn't let us return the value of BYTEORDER as part of
3968 the error message. Please check the value of the macro BYTEORDER, as defined
3969 in config.h. The values of BYTEORDER we expect are
3971 big endian little endian
3972 32 bit 0x4321 0x1234
3973 64 bit 0x87654321 0x12345678
3975 If you have a system with a different byte order, please see
3976 pod/perlhack.pod for how to submit a patch to add supporting code.
3982 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
3985 #if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678
3986 /* Little endian system, so vtohl, vtohs, htovl and htovs do not need to
3987 re-order their values. However, to behave identically to the alternative
3988 implementations, they should truncate to the correct size. */
3989 # define vtohl(x) ((x)&0xFFFFFFFF)
3990 # define vtohs(x) ((x)&0xFFFF)
3991 # define htovl(x) vtohl(x)
3992 # define htovs(x) vtohs(x)
3993 #elif BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
3994 # define vtohl(x) ((((x)&0xFF)<<24) \
3996 +(((x)&0x0000FF00)<<8) \
3997 +(((x)&0x00FF0000)>>8) )
3998 # define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
3999 # define htovl(x) vtohl(x)
4000 # define htovs(x) vtohs(x)
4002 # error "Unsupported byteorder"
4003 /* If you have need for current perl on PDP-11 or similar, and can help test
4004 that blead keeps working on a mixed-endian system, then see
4005 pod/perlhack.pod for how to submit patches to things working again. */
4008 /* *MAX Plus 1. A floating point value.
4009 Hopefully expressed in a way that dodgy floating point can't mess up.
4010 >> 2 rather than 1, so that value is safely less than I32_MAX after 1
4012 May find that some broken compiler will want the value cast to I32.
4013 [after the shift, as signed >> may not be as secure as unsigned >>]
4015 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
4016 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
4017 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
4018 0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
4019 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
4021 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
4023 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
4024 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
4025 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
4027 /* This may look like unnecessary jumping through hoops, but converting
4028 out of range floating point values to integers *is* undefined behaviour,
4029 and it is starting to bite.
4032 #define I_32(what) (cast_i32((NV)(what)))
4033 #define U_32(what) (cast_ulong((NV)(what)))
4034 #define I_V(what) (cast_iv((NV)(what)))
4035 #define U_V(what) (cast_uv((NV)(what)))
4037 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
4038 : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
4039 : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
4040 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
4041 : ((n) < U32_MAX_P1 ? (U32) (n) \
4042 : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
4043 #define I_V(n) (LIKELY((n) < IV_MAX_P1) ? (UNLIKELY((n) < IV_MIN) ? IV_MIN : (IV) (n)) \
4044 : (LIKELY((n) < UV_MAX_P1) ? (IV)(UV) (n) \
4045 : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
4046 #define U_V(n) ((n) < 0.0 ? (UNLIKELY((n) < IV_MIN) ? (UV) IV_MIN : (UV)(IV) (n)) \
4047 : (LIKELY((n) < UV_MAX_P1) ? (UV) (n) \
4048 : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
4051 #define U_S(what) ((U16)U_32(what))
4052 #define U_I(what) ((unsigned int)U_32(what))
4053 #define U_L(what) U_32(what)
4056 # ifndef Perl_signbit
4057 # define Perl_signbit signbit
4061 /* These do not care about the fractional part, only about the range. */
4062 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
4063 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
4065 /* Used with UV/IV arguments: */
4066 /* XXXX: need to speed it up */
4067 #define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
4068 #define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
4075 #if !(defined(WIN32) || defined(SYMBIAN))
4076 Uid_t getuid (void);
4077 Uid_t geteuid (void);
4078 Gid_t getgid (void);
4079 Gid_t getegid (void);
4083 #ifndef Perl_debug_log
4084 # define Perl_debug_log PerlIO_stderr()
4087 #ifndef Perl_error_log
4088 # define Perl_error_log (PL_stderrgv \
4089 && isGV(PL_stderrgv) \
4090 && GvIOp(PL_stderrgv) \
4091 && IoOFP(GvIOp(PL_stderrgv)) \
4092 ? IoOFP(GvIOp(PL_stderrgv)) \
4097 #define DEBUG_p_FLAG 0x00000001 /* 1 */
4098 #define DEBUG_s_FLAG 0x00000002 /* 2 */
4099 #define DEBUG_l_FLAG 0x00000004 /* 4 */
4100 #define DEBUG_t_FLAG 0x00000008 /* 8 */
4101 #define DEBUG_o_FLAG 0x00000010 /* 16 */
4102 #define DEBUG_c_FLAG 0x00000020 /* 32 */
4103 #define DEBUG_P_FLAG 0x00000040 /* 64 */
4104 #define DEBUG_m_FLAG 0x00000080 /* 128 */
4105 #define DEBUG_f_FLAG 0x00000100 /* 256 */
4106 #define DEBUG_r_FLAG 0x00000200 /* 512 */
4107 #define DEBUG_x_FLAG 0x00000400 /* 1024 */
4108 #define DEBUG_u_FLAG 0x00000800 /* 2048 */
4109 /* U is reserved for Unofficial, exploratory hacking */
4110 #define DEBUG_U_FLAG 0x00001000 /* 4096 */
4112 #define DEBUG_X_FLAG 0x00004000 /* 16384 */
4113 #define DEBUG_D_FLAG 0x00008000 /* 32768 */
4114 #define DEBUG_S_FLAG 0x00010000 /* 65536 */
4115 #define DEBUG_T_FLAG 0x00020000 /* 131072 */
4116 #define DEBUG_R_FLAG 0x00040000 /* 262144 */
4117 #define DEBUG_J_FLAG 0x00080000 /* 524288 */
4118 #define DEBUG_v_FLAG 0x00100000 /*1048576 */
4119 #define DEBUG_C_FLAG 0x00200000 /*2097152 */
4120 #define DEBUG_A_FLAG 0x00400000 /*4194304 */
4121 #define DEBUG_q_FLAG 0x00800000 /*8388608 */
4122 #define DEBUG_M_FLAG 0x01000000 /*16777216*/
4123 #define DEBUG_B_FLAG 0x02000000 /*33554432*/
4124 #define DEBUG_L_FLAG 0x04000000 /*67108864*/
4125 #define DEBUG_i_FLAG 0x08000000 /*134217728*/
4126 #define DEBUG_y_FLAG 0x10000000 /*268435456*/
4127 #define DEBUG_MASK 0x1FFFEFFF /* mask of all the standard flags */
4129 #define DEBUG_DB_RECURSE_FLAG 0x40000000
4130 #define DEBUG_TOP_FLAG 0x80000000 /* -D was given --> PL_debug |= FLAG */
4132 # define DEBUG_p_TEST_ UNLIKELY(PL_debug & DEBUG_p_FLAG)
4133 # define DEBUG_s_TEST_ UNLIKELY(PL_debug & DEBUG_s_FLAG)
4134 # define DEBUG_l_TEST_ UNLIKELY(PL_debug & DEBUG_l_FLAG)
4135 # define DEBUG_t_TEST_ UNLIKELY(PL_debug & DEBUG_t_FLAG)
4136 # define DEBUG_o_TEST_ UNLIKELY(PL_debug & DEBUG_o_FLAG)
4137 # define DEBUG_c_TEST_ UNLIKELY(PL_debug & DEBUG_c_FLAG)
4138 # define DEBUG_P_TEST_ UNLIKELY(PL_debug & DEBUG_P_FLAG)
4139 # define DEBUG_m_TEST_ UNLIKELY(PL_debug & DEBUG_m_FLAG)
4140 # define DEBUG_f_TEST_ UNLIKELY(PL_debug & DEBUG_f_FLAG)
4141 # define DEBUG_r_TEST_ UNLIKELY(PL_debug & DEBUG_r_FLAG)
4142 # define DEBUG_x_TEST_ UNLIKELY(PL_debug & DEBUG_x_FLAG)
4143 # define DEBUG_u_TEST_ UNLIKELY(PL_debug & DEBUG_u_FLAG)
4144 # define DEBUG_U_TEST_ UNLIKELY(PL_debug & DEBUG_U_FLAG)
4145 # define DEBUG_X_TEST_ UNLIKELY(PL_debug & DEBUG_X_FLAG)
4146 # define DEBUG_D_TEST_ UNLIKELY(PL_debug & DEBUG_D_FLAG)
4147 # define DEBUG_S_TEST_ UNLIKELY(PL_debug & DEBUG_S_FLAG)
4148 # define DEBUG_T_TEST_ UNLIKELY(PL_debug & DEBUG_T_FLAG)
4149 # define DEBUG_R_TEST_ UNLIKELY(PL_debug & DEBUG_R_FLAG)
4150 # define DEBUG_J_TEST_ UNLIKELY(PL_debug & DEBUG_J_FLAG)
4151 # define DEBUG_v_TEST_ UNLIKELY(PL_debug & DEBUG_v_FLAG)
4152 # define DEBUG_C_TEST_ UNLIKELY(PL_debug & DEBUG_C_FLAG)
4153 # define DEBUG_A_TEST_ UNLIKELY(PL_debug & DEBUG_A_FLAG)
4154 # define DEBUG_q_TEST_ UNLIKELY(PL_debug & DEBUG_q_FLAG)
4155 # define DEBUG_M_TEST_ UNLIKELY(PL_debug & DEBUG_M_FLAG)
4156 # define DEBUG_B_TEST_ UNLIKELY(PL_debug & DEBUG_B_FLAG)
4157 # define DEBUG_L_TEST_ UNLIKELY(PL_debug & DEBUG_L_FLAG)
4158 # define DEBUG_i_TEST_ UNLIKELY(PL_debug & DEBUG_i_FLAG)
4159 # define DEBUG_y_TEST_ UNLIKELY(PL_debug & DEBUG_y_FLAG)
4160 # define DEBUG_Xv_TEST_ (DEBUG_X_TEST_ && DEBUG_v_TEST_)
4161 # define DEBUG_Uv_TEST_ (DEBUG_U_TEST_ && DEBUG_v_TEST_)
4162 # define DEBUG_Pv_TEST_ (DEBUG_P_TEST_ && DEBUG_v_TEST_)
4163 # define DEBUG_Lv_TEST_ (DEBUG_L_TEST_ && DEBUG_v_TEST_)
4164 # define DEBUG_yv_TEST_ (DEBUG_y_TEST_ && DEBUG_v_TEST_)
4168 # define DEBUG_p_TEST DEBUG_p_TEST_
4169 # define DEBUG_s_TEST DEBUG_s_TEST_
4170 # define DEBUG_l_TEST DEBUG_l_TEST_
4171 # define DEBUG_t_TEST DEBUG_t_TEST_
4172 # define DEBUG_o_TEST DEBUG_o_TEST_
4173 # define DEBUG_c_TEST DEBUG_c_TEST_
4174 # define DEBUG_P_TEST DEBUG_P_TEST_
4175 # define DEBUG_m_TEST DEBUG_m_TEST_
4176 # define DEBUG_f_TEST DEBUG_f_TEST_
4177 # define DEBUG_r_TEST DEBUG_r_TEST_
4178 # define DEBUG_x_TEST DEBUG_x_TEST_
4179 # define DEBUG_u_TEST DEBUG_u_TEST_
4180 # define DEBUG_U_TEST DEBUG_U_TEST_
4181 # define DEBUG_X_TEST DEBUG_X_TEST_
4182 # define DEBUG_D_TEST DEBUG_D_TEST_
4183 # define DEBUG_S_TEST DEBUG_S_TEST_
4184 # define DEBUG_T_TEST DEBUG_T_TEST_
4185 # define DEBUG_R_TEST DEBUG_R_TEST_
4186 # define DEBUG_J_TEST DEBUG_J_TEST_
4187 # define DEBUG_v_TEST DEBUG_v_TEST_
4188 # define DEBUG_C_TEST DEBUG_C_TEST_
4189 # define DEBUG_A_TEST DEBUG_A_TEST_
4190 # define DEBUG_q_TEST DEBUG_q_TEST_
4191 # define DEBUG_M_TEST DEBUG_M_TEST_
4192 # define DEBUG_B_TEST DEBUG_B_TEST_
4193 # define DEBUG_L_TEST DEBUG_L_TEST_
4194 # define DEBUG_i_TEST DEBUG_i_TEST_
4195 # define DEBUG_y_TEST DEBUG_y_TEST_
4196 # define DEBUG_Xv_TEST DEBUG_Xv_TEST_
4197 # define DEBUG_Uv_TEST DEBUG_Uv_TEST_
4198 # define DEBUG_Pv_TEST DEBUG_Pv_TEST_
4199 # define DEBUG_Lv_TEST DEBUG_Lv_TEST_
4200 # define DEBUG_yv_TEST DEBUG_yv_TEST_
4202 # define PERL_DEB(a) a
4203 # define PERL_DEB2(a,b) a
4204 # define PERL_DEBUG(a) if (PL_debug) a
4205 # define DEBUG_p(a) if (DEBUG_p_TEST) a
4206 # define DEBUG_s(a) if (DEBUG_s_TEST) a
4207 # define DEBUG_l(a) if (DEBUG_l_TEST) a
4208 # define DEBUG_t(a) if (DEBUG_t_TEST) a
4209 # define DEBUG_o(a) if (DEBUG_o_TEST) a
4210 # define DEBUG_c(a) if (DEBUG_c_TEST) a
4211 # define DEBUG_P(a) if (DEBUG_P_TEST) a
4213 /* Temporarily turn off memory debugging in case the a
4214 * does memory allocation, either directly or indirectly. */
4215 # define DEBUG_m(a) \
4217 if (PERL_GET_INTERP) { \
4219 if (DEBUG_m_TEST) { \
4220 PL_debug &= ~DEBUG_m_FLAG; \
4222 PL_debug |= DEBUG_m_FLAG; \
4227 # define DEBUG__(t, a) \
4229 if (t) STMT_START {a;} STMT_END; \
4232 # define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
4234 /* For re_comp.c, re_exec.c, assume -Dr has been specified */
4235 # ifdef PERL_EXT_RE_BUILD
4236 # define DEBUG_r(a) STMT_START {a;} STMT_END
4238 # define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
4239 # endif /* PERL_EXT_RE_BUILD */
4241 # define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
4242 # define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
4243 # define DEBUG_U(a) DEBUG__(DEBUG_U_TEST, a)
4244 # define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
4245 # define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
4246 # define DEBUG_Xv(a) DEBUG__(DEBUG_Xv_TEST, a)
4247 # define DEBUG_Uv(a) DEBUG__(DEBUG_Uv_TEST, a)
4248 # define DEBUG_Pv(a) DEBUG__(DEBUG_Pv_TEST, a)
4249 # define DEBUG_Lv(a) DEBUG__(DEBUG_Lv_TEST, a)
4250 # define DEBUG_yv(a) DEBUG__(DEBUG_yv_TEST, a)
4252 # define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
4253 # define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
4254 # define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
4255 # define DEBUG_v(a) DEBUG__(DEBUG_v_TEST, a)
4256 # define DEBUG_C(a) DEBUG__(DEBUG_C_TEST, a)
4257 # define DEBUG_A(a) DEBUG__(DEBUG_A_TEST, a)
4258 # define DEBUG_q(a) DEBUG__(DEBUG_q_TEST, a)
4259 # define DEBUG_M(a) DEBUG__(DEBUG_M_TEST, a)
4260 # define DEBUG_B(a) DEBUG__(DEBUG_B_TEST, a)
4261 # define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
4262 # define DEBUG_i(a) DEBUG__(DEBUG_i_TEST, a)
4263 # define DEBUG_y(a) DEBUG__(DEBUG_y_TEST, a)
4265 #else /* ! DEBUGGING below */
4267 # define DEBUG_p_TEST (0)
4268 # define DEBUG_s_TEST (0)
4269 # define DEBUG_l_TEST (0)
4270 # define DEBUG_t_TEST (0)
4271 # define DEBUG_o_TEST (0)
4272 # define DEBUG_c_TEST (0)
4273 # define DEBUG_P_TEST (0)
4274 # define DEBUG_m_TEST (0)
4275 # define DEBUG_f_TEST (0)
4276 # define DEBUG_r_TEST (0)
4277 # define DEBUG_x_TEST (0)
4278 # define DEBUG_u_TEST (0)
4279 # define DEBUG_U_TEST (0)
4280 # define DEBUG_X_TEST (0)
4281 # define DEBUG_D_TEST (0)
4282 # define DEBUG_S_TEST (0)
4283 # define DEBUG_T_TEST (0)
4284 # define DEBUG_R_TEST (0)
4285 # define DEBUG_J_TEST (0)
4286 # define DEBUG_v_TEST (0)
4287 # define DEBUG_C_TEST (0)
4288 # define DEBUG_A_TEST (0)
4289 # define DEBUG_q_TEST (0)
4290 # define DEBUG_M_TEST (0)
4291 # define DEBUG_B_TEST (0)
4292 # define DEBUG_L_TEST (0)
4293 # define DEBUG_i_TEST (0)
4294 # define DEBUG_y_TEST (0)
4295 # define DEBUG_Xv_TEST (0)
4296 # define DEBUG_Uv_TEST (0)
4297 # define DEBUG_Pv_TEST (0)
4298 # define DEBUG_Lv_TEST (0)
4299 # define DEBUG_yv_TEST (0)
4301 # define PERL_DEB(a)
4302 # define PERL_DEB2(a,b) b
4303 # define PERL_DEBUG(a)
4331 # define DEBUG_Xv(a)
4332 # define DEBUG_Uv(a)
4333 # define DEBUG_Pv(a)
4334 # define DEBUG_Lv(a)
4335 # define DEBUG_yv(a)
4336 #endif /* DEBUGGING */
4339 #define DEBUG_SCOPE(where) \
4341 Perl_deb(aTHX_ "%s scope %ld (savestack=%ld) at %s:%d\n", \
4342 where, (long)PL_scopestack_ix, (long)PL_savestack_ix, \
4343 __FILE__, __LINE__));
4345 /* Keep the old croak based assert for those who want it, and as a fallback if
4346 the platform is so heretically non-ANSI that it can't assert. */
4348 #define Perl_assert(what) PERL_DEB2( \
4349 ((what) ? ((void) 0) : \
4350 (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
4351 "\", line %d", STRINGIFY(what), __LINE__), \
4352 (void) 0)), ((void)0))
4354 /* assert() gets defined if DEBUGGING.
4355 * If no DEBUGGING, the <assert.h> has not been included. */
4357 # define assert(what) Perl_assert(what)
4360 # define assert_(what) assert(what),
4362 # define assert_(what)
4366 I32 (*uf_val)(pTHX_ IV, SV*);
4367 I32 (*uf_set)(pTHX_ IV, SV*);
4371 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
4372 * XS code wanting to be backward compatible can do something
4373 * like the following:
4375 #ifndef PERL_MG_UFUNC
4376 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
4379 static PERL_MG_UFUNC(foo_get, index, val)
4389 #ifndef PERL_MG_UFUNC
4390 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
4395 /* isfinite and others are here rather than in math.h as C99 stipulates */
4400 # if !defined(WIN32) && !defined(VMS)
4402 char *crypt (const char*, const char*);
4404 # endif /* !WIN32 */
4407 char *getlogin (void);
4409 # endif /* !WIN32 */
4410 #endif /* !__cplusplus */
4412 /* Fixme on VMS. This needs to be a run-time, not build time options */
4413 /* Also rename() is affected by this */
4414 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
4415 #define UNLINK unlnk
4416 I32 unlnk (pTHX_ const char*);
4418 #define UNLINK PerlLIO_unlink
4421 /* some versions of glibc are missing the setresuid() proto */
4422 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
4423 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
4425 /* some versions of glibc are missing the setresgid() proto */
4426 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
4427 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
4430 #ifndef HAS_SETREUID
4431 # ifdef HAS_SETRESUID
4432 # define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
4433 # define HAS_SETREUID
4436 #ifndef HAS_SETREGID
4437 # ifdef HAS_SETRESGID
4438 # define setregid(r,e) setresgid(r,e,(Gid_t)-1)
4439 # define HAS_SETREGID
4443 /* Sighandler_t defined in iperlsys.h */
4445 #ifdef HAS_SIGACTION
4446 typedef struct sigaction Sigsave_t;
4448 typedef Sighandler_t Sigsave_t;
4459 # define RUNOPS_DEFAULT Perl_runops_debug
4461 # define RUNOPS_DEFAULT Perl_runops_standard
4464 #if defined(USE_PERLIO)
4465 EXTERN_C void PerlIO_teardown(void);
4466 # ifdef USE_ITHREADS
4467 # define PERLIO_INIT MUTEX_INIT(&PL_perlio_mutex)
4468 # define PERLIO_TERM \
4470 PerlIO_teardown(); \
4471 MUTEX_DESTROY(&PL_perlio_mutex);\
4474 # define PERLIO_INIT
4475 # define PERLIO_TERM PerlIO_teardown()
4478 # define PERLIO_INIT
4479 # define PERLIO_TERM
4483 # ifdef MUTEX_INIT_CALLS_MALLOC
4484 # define MALLOC_INIT \
4486 PL_malloc_mutex = NULL; \
4487 MUTEX_INIT(&PL_malloc_mutex); \
4489 # define MALLOC_TERM \
4491 perl_mutex tmp = PL_malloc_mutex; \
4492 PL_malloc_mutex = NULL; \
4493 MUTEX_DESTROY(&tmp); \
4496 # define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
4497 # define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
4500 # define MALLOC_INIT
4501 # define MALLOC_TERM
4504 #if defined(PERL_IMPLICIT_CONTEXT)
4506 struct perl_memory_debug_header;
4507 struct perl_memory_debug_header {
4509 # if defined(PERL_POISON) || defined(PERL_DEBUG_READONLY_COW)
4512 struct perl_memory_debug_header *prev;
4513 struct perl_memory_debug_header *next;
4514 # ifdef PERL_DEBUG_READONLY_COW
4519 #elif defined(PERL_DEBUG_READONLY_COW)
4521 struct perl_memory_debug_header;
4522 struct perl_memory_debug_header {
4528 #if defined (PERL_TRACK_MEMPOOL) || defined (PERL_DEBUG_READONLY_COW)
4530 # define PERL_MEMORY_DEBUG_HEADER_SIZE \
4531 (sizeof(struct perl_memory_debug_header) + \
4532 (MEM_ALIGNBYTES - sizeof(struct perl_memory_debug_header) \
4533 %MEM_ALIGNBYTES) % MEM_ALIGNBYTES)
4536 # define PERL_MEMORY_DEBUG_HEADER_SIZE 0
4539 #ifdef PERL_TRACK_MEMPOOL
4540 # ifdef PERL_DEBUG_READONLY_COW
4541 # define INIT_TRACK_MEMPOOL(header, interp) \
4543 (header).interpreter = (interp); \
4544 (header).prev = (header).next = &(header); \
4545 (header).readonly = 0; \
4548 # define INIT_TRACK_MEMPOOL(header, interp) \
4550 (header).interpreter = (interp); \
4551 (header).prev = (header).next = &(header); \
4555 # define INIT_TRACK_MEMPOOL(header, interp)
4558 #ifdef I_MALLOCMALLOC
4559 /* Needed for malloc_size(), malloc_good_size() on some systems */
4560 # include <malloc/malloc.h>
4564 # define Perl_safesysmalloc_size(where) Perl_malloced_size(where)
4566 # if defined(HAS_MALLOC_SIZE) && !defined(PERL_DEBUG_READONLY_COW)
4567 # ifdef PERL_TRACK_MEMPOOL
4568 # define Perl_safesysmalloc_size(where) \
4569 (malloc_size(((char *)(where)) - PERL_MEMORY_DEBUG_HEADER_SIZE) - PERL_MEMORY_DEBUG_HEADER_SIZE)
4571 # define Perl_safesysmalloc_size(where) malloc_size(where)
4574 # ifdef HAS_MALLOC_GOOD_SIZE
4575 # ifdef PERL_TRACK_MEMPOOL
4576 # define Perl_malloc_good_size(how_much) \
4577 (malloc_good_size((how_much) + PERL_MEMORY_DEBUG_HEADER_SIZE) - PERL_MEMORY_DEBUG_HEADER_SIZE)
4579 # define Perl_malloc_good_size(how_much) malloc_good_size(how_much)
4582 /* Having this as the identity operation makes some code simpler. */
4583 # define Perl_malloc_good_size(how_much) (how_much)
4587 typedef int (*runops_proc_t)(pTHX);
4588 typedef void (*share_proc_t) (pTHX_ SV *sv);
4589 typedef int (*thrhook_proc_t) (pTHX);
4590 typedef OP* (*PPADDR_t[]) (pTHX);
4591 typedef bool (*destroyable_proc_t) (pTHX_ SV *sv);
4592 typedef void (*despatch_signals_proc_t) (pTHX);
4594 #if defined(__DYNAMIC__) && defined(PERL_DARWIN) && defined(PERL_CORE)
4595 # include <crt_externs.h> /* for the env array */
4596 # define environ (*_NSGetEnviron())
4597 #elif defined(USE_ENVIRON_ARRAY) && !defined(environ)
4598 /* VMS and some other platforms don't use the environ array */
4599 EXTERN_C char **environ; /* environment variables supplied via exec */
4602 #define PERL_PATCHLEVEL_H_IMPLICIT
4603 #include "patchlevel.h"
4604 #undef PERL_PATCHLEVEL_H_IMPLICIT
4606 #define PERL_VERSION_STRING STRINGIFY(PERL_REVISION) "." \
4607 STRINGIFY(PERL_VERSION) "." \
4608 STRINGIFY(PERL_SUBVERSION)
4610 #define PERL_API_VERSION_STRING STRINGIFY(PERL_API_REVISION) "." \
4611 STRINGIFY(PERL_API_VERSION) "." \
4612 STRINGIFY(PERL_API_SUBVERSION)
4616 /* handy constants */
4617 EXTCONST char PL_warn_uninit[]
4618 INIT("Use of uninitialized value%s%s%s");
4619 EXTCONST char PL_warn_uninit_sv[]
4620 INIT("Use of uninitialized value%" SVf "%s%s");
4621 EXTCONST char PL_warn_nosemi[]
4622 INIT("Semicolon seems to be missing");
4623 EXTCONST char PL_warn_reserved[]
4624 INIT("Unquoted string \"%s\" may clash with future reserved word");
4625 EXTCONST char PL_warn_nl[]
4626 INIT("Unsuccessful %s on filename containing newline");
4627 EXTCONST char PL_no_wrongref[]
4628 INIT("Can't use %s ref as %s ref");
4629 /* The core no longer needs this here. If you require the string constant,
4630 please inline a copy into your own code. */
4631 EXTCONST char PL_no_symref[] __attribute__deprecated__
4632 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
4633 EXTCONST char PL_no_symref_sv[]
4634 INIT("Can't use string (\"%" SVf32 "\"%s) as %s ref while \"strict refs\" in use");
4636 EXTCONST char PL_no_usym[]
4637 INIT("Can't use an undefined value as %s reference");
4638 EXTCONST char PL_no_aelem[]
4639 INIT("Modification of non-creatable array value attempted, subscript %d");
4640 EXTCONST char PL_no_helem_sv[]
4641 INIT("Modification of non-creatable hash value attempted, subscript \"%" SVf "\"");
4642 EXTCONST char PL_no_modify[]
4643 INIT("Modification of a read-only value attempted");
4644 EXTCONST char PL_no_mem[sizeof("Out of memory!\n")]
4645 INIT("Out of memory!\n");
4646 EXTCONST char PL_no_security[]
4647 INIT("Insecure dependency in %s%s");
4648 EXTCONST char PL_no_sock_func[]
4649 INIT("Unsupported socket function \"%s\" called");
4650 EXTCONST char PL_no_dir_func[]
4651 INIT("Unsupported directory function \"%s\" called");
4652 EXTCONST char PL_no_func[]
4653 INIT("The %s function is unimplemented");
4654 EXTCONST char PL_no_myglob[]
4655 INIT("\"%s\" %s %s can't be in a package");
4656 EXTCONST char PL_no_localize_ref[]
4657 INIT("Can't localize through a reference");
4658 EXTCONST char PL_memory_wrap[]
4659 INIT("panic: memory wrap");
4660 EXTCONST char PL_extended_cp_format[]
4661 INIT("Code point 0x%" UVXf " is not Unicode, requires a Perl extension,"
4662 " and so is not portable");
4663 EXTCONST char PL_Yes[]
4665 EXTCONST char PL_No[]
4667 EXTCONST char PL_Zero[]
4669 EXTCONST char PL_hexdigit[]
4670 INIT("0123456789abcdef0123456789ABCDEF");
4672 EXTCONST STRLEN PL_WARN_ALL
4674 EXTCONST STRLEN PL_WARN_NONE
4677 /* This is constant on most architectures, a global on OS/2 */
4679 EXTCONST char PL_sh_path[]
4680 INIT(SH_PATH); /* full path of shell */
4684 EXTCONST char PL_cshname[]
4686 # define PL_cshlen (sizeof(CSH "") - 1)
4689 /* These are baked at compile time into any shared perl library.
4690 In future releases this will allow us in main() to sanity test the
4691 library we're linking against. */
4693 EXTCONST U8 PL_revision
4694 INIT(PERL_REVISION);
4695 EXTCONST U8 PL_version
4697 EXTCONST U8 PL_subversion
4698 INIT(PERL_SUBVERSION);
4700 EXTCONST char PL_uuemap[65]
4701 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
4703 /* a special string address whose value is "isa", but which perl knows
4704 * to treat as if it were really "DOES" when printing the method name in
4705 * the "Can't call method '%s'" error message */
4706 EXTCONST char PL_isa_DOES[]
4710 EXTCONST char PL_uudmap[256] =
4712 # include "uuudmap.h"
4714 # include "uudmap.h"
4717 EXTCONST char PL_bitcount[256] =
4719 # include "ubitcount.h"
4721 # include "bitcount.h"
4724 EXTCONST char* const PL_sig_name[] = { SIG_NAME };
4725 EXTCONST int PL_sig_num[] = { SIG_NUM };
4727 EXTCONST char PL_uudmap[256];
4728 EXTCONST char PL_bitcount[256];
4729 EXTCONST char* const PL_sig_name[];
4730 EXTCONST int PL_sig_num[];
4733 /* fast conversion and case folding tables. The folding tables complement the
4734 * fold, so that 'a' maps to 'A' and 'A' maps to 'a', ignoring more complicated
4735 * folds such as outside the range or to multiple characters. */
4740 /* The EBCDIC fold table depends on the code page, and hence is found in
4743 EXTCONST unsigned char PL_fold[] = {
4744 0, 1, 2, 3, 4, 5, 6, 7,
4745 8, 9, 10, 11, 12, 13, 14, 15,
4746 16, 17, 18, 19, 20, 21, 22, 23,
4747 24, 25, 26, 27, 28, 29, 30, 31,
4748 32, 33, 34, 35, 36, 37, 38, 39,
4749 40, 41, 42, 43, 44, 45, 46, 47,
4750 48, 49, 50, 51, 52, 53, 54, 55,
4751 56, 57, 58, 59, 60, 61, 62, 63,
4752 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4753 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4754 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4755 'x', 'y', 'z', 91, 92, 93, 94, 95,
4756 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4757 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4758 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4759 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4760 128, 129, 130, 131, 132, 133, 134, 135,
4761 136, 137, 138, 139, 140, 141, 142, 143,
4762 144, 145, 146, 147, 148, 149, 150, 151,
4763 152, 153, 154, 155, 156, 157, 158, 159,
4764 160, 161, 162, 163, 164, 165, 166, 167,
4765 168, 169, 170, 171, 172, 173, 174, 175,
4766 176, 177, 178, 179, 180, 181, 182, 183,
4767 184, 185, 186, 187, 188, 189, 190, 191,
4768 192, 193, 194, 195, 196, 197, 198, 199,
4769 200, 201, 202, 203, 204, 205, 206, 207,
4770 208, 209, 210, 211, 212, 213, 214, 215,
4771 216, 217, 218, 219, 220, 221, 222, 223,
4772 224, 225, 226, 227, 228, 229, 230, 231,
4773 232, 233, 234, 235, 236, 237, 238, 239,
4774 240, 241, 242, 243, 244, 245, 246, 247,
4775 248, 249, 250, 251, 252, 253, 254, 255
4777 EXTCONST unsigned char PL_fold_latin1[] = {
4778 /* Full latin1 complement folding, except for three problematic code points:
4779 * Micro sign (181 = 0xB5) and y with diearesis (255 = 0xFF) have their
4780 * fold complements outside the Latin1 range, so can't match something
4781 * that isn't in utf8.
4782 * German lower case sharp s (223 = 0xDF) folds to two characters, 'ss',
4783 * not one, so can't be represented in this table.
4785 * All have to be specially handled */
4786 0, 1, 2, 3, 4, 5, 6, 7,
4787 8, 9, 10, 11, 12, 13, 14, 15,
4788 16, 17, 18, 19, 20, 21, 22, 23,
4789 24, 25, 26, 27, 28, 29, 30, 31,
4790 32, 33, 34, 35, 36, 37, 38, 39,
4791 40, 41, 42, 43, 44, 45, 46, 47,
4792 48, 49, 50, 51, 52, 53, 54, 55,
4793 56, 57, 58, 59, 60, 61, 62, 63,
4794 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4795 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4796 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4797 'x', 'y', 'z', 91, 92, 93, 94, 95,
4798 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4799 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4800 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4801 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4802 128, 129, 130, 131, 132, 133, 134, 135,
4803 136, 137, 138, 139, 140, 141, 142, 143,
4804 144, 145, 146, 147, 148, 149, 150, 151,
4805 152, 153, 154, 155, 156, 157, 158, 159,
4806 160, 161, 162, 163, 164, 165, 166, 167,
4807 168, 169, 170, 171, 172, 173, 174, 175,
4808 176, 177, 178, 179, 180, 181 /*micro */, 182, 183,
4809 184, 185, 186, 187, 188, 189, 190, 191,
4810 192+32, 193+32, 194+32, 195+32, 196+32, 197+32, 198+32, 199+32,
4811 200+32, 201+32, 202+32, 203+32, 204+32, 205+32, 206+32, 207+32,
4812 208+32, 209+32, 210+32, 211+32, 212+32, 213+32, 214+32, 215,
4813 216+32, 217+32, 218+32, 219+32, 220+32, 221+32, 222+32, 223 /* ss */,
4814 224-32, 225-32, 226-32, 227-32, 228-32, 229-32, 230-32, 231-32,
4815 232-32, 233-32, 234-32, 235-32, 236-32, 237-32, 238-32, 239-32,
4816 240-32, 241-32, 242-32, 243-32, 244-32, 245-32, 246-32, 247,
4817 248-32, 249-32, 250-32, 251-32, 252-32, 253-32, 254-32,
4818 255 /* y with diaeresis */
4821 /* If these tables are accessed through ebcdic, the access will be converted to
4823 EXTCONST unsigned char PL_latin1_lc[] = { /* lowercasing */
4824 0, 1, 2, 3, 4, 5, 6, 7,
4825 8, 9, 10, 11, 12, 13, 14, 15,
4826 16, 17, 18, 19, 20, 21, 22, 23,
4827 24, 25, 26, 27, 28, 29, 30, 31,
4828 32, 33, 34, 35, 36, 37, 38, 39,
4829 40, 41, 42, 43, 44, 45, 46, 47,
4830 48, 49, 50, 51, 52, 53, 54, 55,
4831 56, 57, 58, 59, 60, 61, 62, 63,
4832 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
4833 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
4834 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
4835 'x', 'y', 'z', 91, 92, 93, 94, 95,
4836 96, 97, 98, 99, 100, 101, 102, 103,
4837 104, 105, 106, 107, 108, 109, 110, 111,
4838 112, 113, 114, 115, 116, 117, 118, 119,
4839 120, 121, 122, 123, 124, 125, 126, 127,
4840 128, 129, 130, 131, 132, 133, 134, 135,
4841 136, 137, 138, 139, 140, 141, 142, 143,
4842 144, 145, 146, 147, 148, 149, 150, 151,
4843 152, 153, 154, 155, 156, 157, 158, 159,
4844 160, 161, 162, 163, 164, 165, 166, 167,
4845 168, 169, 170, 171, 172, 173, 174, 175,
4846 176, 177, 178, 179, 180, 181, 182, 183,
4847 184, 185, 186, 187, 188, 189, 190, 191,
4848 192+32, 193+32, 194+32, 195+32, 196+32, 197+32, 198+32, 199+32,
4849 200+32, 201+32, 202+32, 203+32, 204+32, 205+32, 206+32, 207+32,
4850 208+32, 209+32, 210+32, 211+32, 212+32, 213+32, 214+32, 215,
4851 216+32, 217+32, 218+32, 219+32, 220+32, 221+32, 222+32, 223,
4852 224, 225, 226, 227, 228, 229, 230, 231,
4853 232, 233, 234, 235, 236, 237, 238, 239,
4854 240, 241, 242, 243, 244, 245, 246, 247,
4855 248, 249, 250, 251, 252, 253, 254, 255
4858 /* upper and title case of latin1 characters, modified so that the three tricky
4859 * ones are mapped to 255 (which is one of the three) */
4860 EXTCONST unsigned char PL_mod_latin1_uc[] = {
4861 0, 1, 2, 3, 4, 5, 6, 7,
4862 8, 9, 10, 11, 12, 13, 14, 15,
4863 16, 17, 18, 19, 20, 21, 22, 23,
4864 24, 25, 26, 27, 28, 29, 30, 31,
4865 32, 33, 34, 35, 36, 37, 38, 39,
4866 40, 41, 42, 43, 44, 45, 46, 47,
4867 48, 49, 50, 51, 52, 53, 54, 55,
4868 56, 57, 58, 59, 60, 61, 62, 63,
4869 64, 65, 66, 67, 68, 69, 70, 71,
4870 72, 73, 74, 75, 76, 77, 78, 79,
4871 80, 81, 82, 83, 84, 85, 86, 87,
4872 88, 89, 90, 91, 92, 93, 94, 95,
4873 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
4874 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
4875 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
4876 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
4877 128, 129, 130, 131, 132, 133, 134, 135,
4878 136, 137, 138, 139, 140, 141, 142, 143,
4879 144, 145, 146, 147, 148, 149, 150, 151,
4880 152, 153, 154, 155, 156, 157, 158, 159,
4881 160, 161, 162, 163, 164, 165, 166, 167,
4882 168, 169, 170, 171, 172, 173, 174, 175,
4883 176, 177, 178, 179, 180, 255 /*micro*/, 182, 183,
4884 184, 185, 186, 187, 188, 189, 190, 191,
4885 192, 193, 194, 195, &