Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* perl.h |
a687059c | 2 | * |
9607fc9c | 3 | * Copyright (c) 1987-1997, Larry Wall |
a687059c | 4 | * |
352d5a3a LW |
5 | * You may distribute under the terms of either the GNU General Public |
6 | * License or the Artistic License, as specified in the README file. | |
8d063cd8 | 7 | * |
8d063cd8 | 8 | */ |
85e6fe83 LW |
9 | #ifndef H_PERL |
10 | #define H_PERL 1 | |
8d063cd8 | 11 | |
760ac839 LW |
12 | #ifdef PERL_FOR_X2P |
13 | /* | |
14 | * This file is being used for x2p stuff. | |
15 | * Above symbol is defined via -D in 'x2p/Makefile.SH' | |
16 | * Decouple x2p stuff from some of perls more extreme eccentricities. | |
17 | */ | |
55497cff | 18 | #undef MULTIPLICITY |
760ac839 LW |
19 | #undef USE_STDIO |
20 | #define USE_STDIO | |
21 | #endif /* PERL_FOR_X2P */ | |
22 | ||
0cb96387 GS |
23 | #define VOIDUSED 1 |
24 | #include "config.h" | |
25 | ||
2c2d71f5 JH |
26 | /* See L<perlguts/"The Perl API"> for detailed notes on |
27 | * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */ | |
28 | ||
0cb96387 | 29 | #ifdef USE_THREADS |
c5be433b GS |
30 | # ifndef PERL_IMPLICIT_CONTEXT |
31 | # define PERL_IMPLICIT_CONTEXT | |
32 | # endif | |
33 | # ifndef PERL_IMPLICIT_SYS | |
d543acb6 | 34 | # if defined(WIN32) && !defined(__MINGW32__) |
32e30700 GS |
35 | # define PERL_IMPLICIT_SYS /* XXX not implemented everywhere yet */ |
36 | # endif | |
c5be433b GS |
37 | # endif |
38 | #endif | |
39 | ||
c5be433b GS |
40 | #if defined(MULTIPLICITY) |
41 | # ifndef PERL_IMPLICIT_CONTEXT | |
42 | # define PERL_IMPLICIT_CONTEXT | |
43 | # endif | |
44 | # ifndef PERL_IMPLICIT_SYS | |
d543acb6 | 45 | # if defined(WIN32) && !defined(__MINGW32__) |
32e30700 GS |
46 | # define PERL_IMPLICIT_SYS /* XXX not implemented everywhere yet */ |
47 | # endif | |
c5be433b GS |
48 | # endif |
49 | #endif | |
50 | ||
51 | #ifdef PERL_CAPI | |
52 | # undef PERL_OBJECT | |
53 | # ifndef PERL_IMPLICIT_CONTEXT | |
54 | # define PERL_IMPLICIT_CONTEXT | |
55 | # endif | |
56 | # ifndef PERL_IMPLICIT_SYS | |
57 | # define PERL_IMPLICIT_SYS | |
58 | # endif | |
59 | #endif | |
60 | ||
61 | #ifdef PERL_OBJECT | |
62 | # ifndef PERL_IMPLICIT_CONTEXT | |
63 | # define PERL_IMPLICIT_CONTEXT | |
64 | # endif | |
65 | # ifndef PERL_IMPLICIT_SYS | |
66 | # define PERL_IMPLICIT_SYS | |
67 | # endif | |
0cb96387 GS |
68 | #endif |
69 | ||
76e3520e | 70 | #ifdef PERL_OBJECT |
3dfd1da1 GS |
71 | |
72 | /* PERL_OBJECT explained - DickH and DougL @ ActiveState.com | |
73 | ||
74 | Defining PERL_OBJECT turns on creation of a C++ object that | |
75 | contains all writable core perl global variables and functions. | |
76 | Stated another way, all necessary global variables and functions | |
77 | are members of a big C++ object. This object's class is CPerlObj. | |
78 | This allows a Perl Host to have multiple, independent perl | |
79 | interpreters in the same process space. This is very important on | |
80 | Win32 systems as the overhead of process creation is quite high -- | |
81 | this could be even higher than the script compile and execute time | |
82 | for small scripts. | |
83 | ||
84 | The perl executable implementation on Win32 is composed of perl.exe | |
85 | (the Perl Host) and perlX.dll. (the Perl Core). This allows the | |
86 | same Perl Core to easily be embedded in other applications that use | |
87 | the perl interpreter. | |
88 | ||
89 | +-----------+ | |
90 | | Perl Host | | |
91 | +-----------+ | |
92 | ^ | |
32e30700 GS |
93 | | |
94 | v | |
3dfd1da1 GS |
95 | +-----------+ +-----------+ |
96 | | Perl Core |<->| Extension | | |
97 | +-----------+ +-----------+ ... | |
98 | ||
99 | Defining PERL_OBJECT has the following effects: | |
100 | ||
101 | PERL CORE | |
102 | 1. CPerlObj is defined (this is the PERL_OBJECT) | |
103 | 2. all static functions that needed to access either global | |
104 | variables or functions needed are made member functions | |
105 | 3. all writable static variables are made member variables | |
106 | 4. all global variables and functions are defined as: | |
22c35a8c | 107 | #define var CPerlObj::PL_var |
3dfd1da1 | 108 | #define func CPerlObj::Perl_func |
22c35a8c | 109 | * these are in embed.h |
3dfd1da1 GS |
110 | This necessitated renaming some local variables and functions that |
111 | had the same name as a global variable or function. This was | |
112 | probably a _good_ thing anyway. | |
113 | ||
114 | ||
115 | EXTENSIONS | |
116 | 1. Access to global variables and perl functions is through a | |
117 | pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is | |
118 | made transparent to extension developers by the following macros: | |
22c35a8c | 119 | #define var pPerl->PL_var |
3dfd1da1 | 120 | #define func pPerl->Perl_func |
6de196ee | 121 | * these are done in objXSUB.h |
3dfd1da1 GS |
122 | This requires that the extension be compiled as C++, which means |
123 | that the code must be ANSI C and not K&R C. For K&R extensions, | |
124 | please see the C API notes located in Win32/GenCAPI.pl. This script | |
6de196ee | 125 | creates a perlCAPI.lib that provides a K & R compatible C interface |
3dfd1da1 GS |
126 | to the PERL_OBJECT. |
127 | 2. Local variables and functions cannot have the same name as perl's | |
128 | variables or functions since the macros will redefine these. Look for | |
129 | this if you get some strange error message and it does not look like | |
130 | the code that you had written. This often happens with variables that | |
131 | are local to a function. | |
132 | ||
133 | PERL HOST | |
134 | 1. The perl host is linked with perlX.lib to get perl_alloc. This | |
135 | function will return a pointer to CPerlObj (the PERL_OBJECT). It | |
0f4eea8f DL |
136 | takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h |
137 | for more information on this). | |
3dfd1da1 GS |
138 | 2. The perl host calls the same functions as normally would be |
139 | called in setting up and running a perl script, except that the | |
140 | functions are now member functions of the PERL_OBJECT. | |
141 | ||
142 | */ | |
143 | ||
144 | ||
76e3520e GS |
145 | class CPerlObj; |
146 | ||
147 | #define STATIC | |
c5be433b GS |
148 | #define CPERLscope(x) CPerlObj::x |
149 | #define CALL_FPTR(fptr) (this->*fptr) | |
150 | ||
151 | #define pTHXo CPerlObj *pPerl | |
152 | #define pTHXo_ pTHXo, | |
c5be433b GS |
153 | #define aTHXo this |
154 | #define aTHXo_ this, | |
0cb96387 GS |
155 | #define PERL_OBJECT_THIS aTHXo |
156 | #define PERL_OBJECT_THIS_ aTHXo_ | |
54aff467 GS |
157 | #define dTHXoa(a) pTHXo = a |
158 | #define dTHXo dTHXoa(PERL_GET_THX) | |
0cb96387 GS |
159 | |
160 | #define pTHXx void | |
161 | #define pTHXx_ | |
0cb96387 GS |
162 | #define aTHXx |
163 | #define aTHXx_ | |
0cb96387 | 164 | |
76e3520e GS |
165 | #else /* !PERL_OBJECT */ |
166 | ||
c5be433b GS |
167 | #ifdef PERL_IMPLICIT_CONTEXT |
168 | # ifdef USE_THREADS | |
169 | struct perl_thread; | |
170 | # define pTHX register struct perl_thread *thr | |
171 | # define aTHX thr | |
c5be433b GS |
172 | # define dTHR dNOOP |
173 | # else | |
f63b9778 GS |
174 | # ifndef MULTIPLICITY |
175 | # define MULTIPLICITY | |
176 | # endif | |
c5be433b GS |
177 | # define pTHX register PerlInterpreter *my_perl |
178 | # define aTHX my_perl | |
c5be433b | 179 | # endif |
54aff467 GS |
180 | # define dTHXa(a) pTHX = a |
181 | # define dTHX dTHXa(PERL_GET_THX) | |
c5be433b | 182 | # define pTHX_ pTHX, |
c5be433b | 183 | # define aTHX_ aTHX, |
c5be433b GS |
184 | #endif |
185 | ||
76e3520e GS |
186 | #define STATIC static |
187 | #define CPERLscope(x) x | |
565764a8 | 188 | #define CPERLarg void |
76e3520e | 189 | #define CPERLarg_ |
e3b8966e | 190 | #define _CPERLarg |
1d583055 GS |
191 | #define PERL_OBJECT_THIS |
192 | #define _PERL_OBJECT_THIS | |
193 | #define PERL_OBJECT_THIS_ | |
312caa8e | 194 | #define CALL_FPTR(fptr) (*fptr) |
76e3520e GS |
195 | |
196 | #endif /* PERL_OBJECT */ | |
197 | ||
312caa8e CS |
198 | #define CALLRUNOPS CALL_FPTR(PL_runops) |
199 | #define CALLREGCOMP CALL_FPTR(PL_regcompp) | |
200 | #define CALLREGEXEC CALL_FPTR(PL_regexecp) | |
f722798b IZ |
201 | #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start) |
202 | #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string) | |
203 | #define CALLREGFREE CALL_FPTR(PL_regfree) | |
312caa8e CS |
204 | #define CALLPROTECT CALL_FPTR(PL_protect) |
205 | ||
0cb96387 GS |
206 | #define NOOP (void)0 |
207 | #define dNOOP extern int Perl___notused | |
71be2cbc | 208 | |
0cb96387 GS |
209 | #ifndef pTHX |
210 | # define pTHX void | |
211 | # define pTHX_ | |
0cb96387 GS |
212 | # define aTHX |
213 | # define aTHX_ | |
0cb96387 GS |
214 | # define dTHXa(a) dNOOP |
215 | # define dTHX dNOOP | |
216 | #endif | |
217 | ||
218 | #ifndef pTHXo | |
219 | # define pTHXo pTHX | |
220 | # define pTHXo_ pTHX_ | |
0cb96387 GS |
221 | # define aTHXo aTHX |
222 | # define aTHXo_ aTHX_ | |
c5be433b | 223 | # define dTHXo dTHX |
0cb96387 GS |
224 | #endif |
225 | ||
226 | #ifndef pTHXx | |
227 | # define pTHXx register PerlInterpreter *my_perl | |
228 | # define pTHXx_ pTHXx, | |
0cb96387 GS |
229 | # define aTHXx my_perl |
230 | # define aTHXx_ aTHXx, | |
c5be433b | 231 | # define dTHXx dTHX |
22c35a8c | 232 | #endif |
71be2cbc | 233 | |
326b05e3 GS |
234 | #undef START_EXTERN_C |
235 | #undef END_EXTERN_C | |
236 | #undef EXTERN_C | |
32f822de GS |
237 | #ifdef __cplusplus |
238 | # define START_EXTERN_C extern "C" { | |
239 | # define END_EXTERN_C } | |
240 | # define EXTERN_C extern "C" | |
241 | #else | |
242 | # define START_EXTERN_C | |
243 | # define END_EXTERN_C | |
73c4f7a1 | 244 | # define EXTERN_C extern |
32f822de GS |
245 | #endif |
246 | ||
462e5cf6 MB |
247 | #ifdef OP_IN_REGISTER |
248 | # ifdef __GNUC__ | |
249 | # define stringify_immed(s) #s | |
250 | # define stringify(s) stringify_immed(s) | |
d1ca3daa | 251 | register struct op *Perl_op asm(stringify(OP_IN_REGISTER)); |
462e5cf6 MB |
252 | # endif |
253 | #endif | |
254 | ||
728e2803 | 255 | /* |
256 | * STMT_START { statements; } STMT_END; | |
257 | * can be used as a single statement, as in | |
258 | * if (x) STMT_START { ... } STMT_END; else ... | |
259 | * | |
260 | * Trying to select a version that gives no warnings... | |
261 | */ | |
262 | #if !(defined(STMT_START) && defined(STMT_END)) | |
169d69b2 | 263 | # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus) |
728e2803 | 264 | # define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */ |
265 | # define STMT_END ) | |
266 | # else | |
267 | /* Now which other defined()s do we need here ??? */ | |
268 | # if (VOIDFLAGS) && (defined(sun) || defined(__sun__)) | |
269 | # define STMT_START if (1) | |
270 | # define STMT_END else (void)0 | |
271 | # else | |
272 | # define STMT_START do | |
273 | # define STMT_END while (0) | |
274 | # endif | |
275 | # endif | |
276 | #endif | |
277 | ||
0cb96387 | 278 | #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END |
61bb5906 | 279 | #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END |
ea0efc06 | 280 | |
55497cff | 281 | /* |
282 | * SOFT_CAST can be used for args to prototyped functions to retain some | |
283 | * type checking; it only casts if the compiler does not know prototypes. | |
284 | */ | |
285 | #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE) | |
286 | #define SOFT_CAST(type) | |
287 | #else | |
288 | #define SOFT_CAST(type) (type) | |
289 | #endif | |
79072805 | 290 | |
6ee623d5 | 291 | #ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */ |
79072805 LW |
292 | # define BYTEORDER 0x1234 |
293 | #endif | |
294 | ||
295 | /* Overall memory policy? */ | |
296 | #ifndef CONSERVATIVE | |
297 | # define LIBERAL 1 | |
298 | #endif | |
299 | ||
8ada0baa JH |
300 | #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90 |
301 | #define ASCIIish | |
302 | #else | |
303 | #undef ASCIIish | |
304 | #endif | |
305 | ||
79072805 LW |
306 | /* |
307 | * The following contortions are brought to you on behalf of all the | |
308 | * standards, semi-standards, de facto standards, not-so-de-facto standards | |
309 | * of the world, as well as all the other botches anyone ever thought of. | |
310 | * The basic theory is that if we work hard enough here, the rest of the | |
311 | * code can be a lot prettier. Well, so much for theory. Sorry, Henry... | |
312 | */ | |
ac58e20f | 313 | |
ee0007ab | 314 | /* define this once if either system, instead of cluttering up the src */ |
1cab015a | 315 | #if defined(MSDOS) || defined(atarist) || defined(WIN32) |
ee0007ab LW |
316 | #define DOSISH 1 |
317 | #endif | |
318 | ||
4d2c4e07 | 319 | #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC) |
352d5a3a LW |
320 | # define STANDARD_C 1 |
321 | #endif | |
322 | ||
8b0db79d | 323 | #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__) |
68dc0745 | 324 | # define DONT_DECLARE_STD 1 |
325 | #endif | |
326 | ||
352d5a3a | 327 | #if defined(HASVOLATILE) || defined(STANDARD_C) |
79072805 LW |
328 | # ifdef __cplusplus |
329 | # define VOL // to temporarily suppress warnings | |
330 | # else | |
331 | # define VOL volatile | |
332 | # endif | |
663a0e37 | 333 | #else |
79072805 | 334 | # define VOL |
663a0e37 LW |
335 | #endif |
336 | ||
3280af22 NIS |
337 | #define TAINT (PL_tainted = TRUE) |
338 | #define TAINT_NOT (PL_tainted = FALSE) | |
339 | #define TAINT_IF(c) if (c) { PL_tainted = TRUE; } | |
340 | #define TAINT_ENV() if (PL_tainting) { taint_env(); } | |
22c35a8c | 341 | #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); } |
a687059c | 342 | |
a6e633de | 343 | /* XXX All process group stuff is handled in pp_sys.c. Should these |
344 | defines move there? If so, I could simplify this a lot. --AD 9/96. | |
345 | */ | |
346 | /* Process group stuff changed from traditional BSD to POSIX. | |
347 | perlfunc.pod documents the traditional BSD-style syntax, so we'll | |
348 | try to preserve that, if possible. | |
349 | */ | |
350 | #ifdef HAS_SETPGID | |
351 | # define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp)) | |
c07a80fd | 352 | #else |
a6e633de | 353 | # if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP) |
354 | # define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp)) | |
355 | # else | |
356 | # ifdef HAS_SETPGRP2 /* DG/UX */ | |
357 | # define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp)) | |
358 | # endif | |
359 | # endif | |
360 | #endif | |
361 | #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP) | |
362 | # define HAS_SETPGRP /* Well, effectively it does . . . */ | |
363 | #endif | |
364 | ||
365 | /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes | |
366 | our life easier :-) so we'll try it. | |
367 | */ | |
368 | #ifdef HAS_GETPGID | |
369 | # define BSD_GETPGRP(pid) getpgid((pid)) | |
370 | #else | |
371 | # if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP) | |
372 | # define BSD_GETPGRP(pid) getpgrp((pid)) | |
373 | # else | |
374 | # ifdef HAS_GETPGRP2 /* DG/UX */ | |
375 | # define BSD_GETPGRP(pid) getpgrp2((pid)) | |
376 | # endif | |
377 | # endif | |
378 | #endif | |
379 | #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP) | |
380 | # define HAS_GETPGRP /* Well, effectively it does . . . */ | |
381 | #endif | |
382 | ||
383 | /* These are not exact synonyms, since setpgrp() and getpgrp() may | |
384 | have different behaviors, but perl.h used to define USE_BSDPGRP | |
385 | (prior to 5.003_05) so some extension might depend on it. | |
386 | */ | |
387 | #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP) | |
388 | # ifndef USE_BSDPGRP | |
389 | # define USE_BSDPGRP | |
390 | # endif | |
663a0e37 LW |
391 | #endif |
392 | ||
8ac5a1fe MH |
393 | /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that |
394 | pthread.h must be included before all other header files. | |
395 | */ | |
1f5ae88c | 396 | #if defined(USE_THREADS) && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD) |
8ac5a1fe MH |
397 | # include <pthread.h> |
398 | #endif | |
399 | ||
760ac839 LW |
400 | #ifndef _TYPES_ /* If types.h defines this it's easy. */ |
401 | # ifndef major /* Does everyone's types.h define this? */ | |
402 | # include <sys/types.h> | |
c07a80fd | 403 | # endif |
663a0e37 LW |
404 | #endif |
405 | ||
760ac839 LW |
406 | #ifdef __cplusplus |
407 | # ifndef I_STDARG | |
408 | # define I_STDARG 1 | |
409 | # endif | |
410 | #endif | |
411 | ||
412 | #ifdef I_STDARG | |
413 | # include <stdarg.h> | |
414 | #else | |
415 | # ifdef I_VARARGS | |
416 | # include <varargs.h> | |
417 | # endif | |
418 | #endif | |
419 | ||
4633a7c4 | 420 | #ifdef USE_NEXT_CTYPE |
0c30d9ec | 421 | |
092bebab JH |
422 | #if NX_CURRENT_COMPILER_RELEASE >= 500 |
423 | # include <bsd/ctypes.h> | |
424 | #else | |
425 | # if NX_CURRENT_COMPILER_RELEASE >= 400 | |
426 | # include <objc/NXCType.h> | |
427 | # else /* NX_CURRENT_COMPILER_RELEASE < 400 */ | |
428 | # include <appkit/NXCType.h> | |
429 | # endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */ | |
430 | #endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */ | |
0c30d9ec | 431 | |
432 | #else /* !USE_NEXT_CTYPE */ | |
fe14fcc3 | 433 | #include <ctype.h> |
0c30d9ec | 434 | #endif /* USE_NEXT_CTYPE */ |
a0d0e21e LW |
435 | |
436 | #ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */ | |
437 | #undef METHOD | |
a0d0e21e LW |
438 | #endif |
439 | ||
4633a7c4 | 440 | #ifdef I_LOCALE |
36477c24 | 441 | # include <locale.h> |
4633a7c4 LW |
442 | #endif |
443 | ||
36477c24 | 444 | #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE) |
445 | # define USE_LOCALE | |
446 | # if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \ | |
447 | && defined(HAS_STRXFRM) | |
448 | # define USE_LOCALE_COLLATE | |
449 | # endif | |
450 | # if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE) | |
451 | # define USE_LOCALE_CTYPE | |
452 | # endif | |
453 | # if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC) | |
454 | # define USE_LOCALE_NUMERIC | |
455 | # endif | |
456 | #endif /* !NO_LOCALE && HAS_SETLOCALE */ | |
a0d0e21e | 457 | |
fe14fcc3 | 458 | #include <setjmp.h> |
79072805 | 459 | |
a0d0e21e | 460 | #ifdef I_SYS_PARAM |
79072805 LW |
461 | # ifdef PARAM_NEEDS_TYPES |
462 | # include <sys/types.h> | |
463 | # endif | |
464 | # include <sys/param.h> | |
352d5a3a | 465 | #endif |
79072805 LW |
466 | |
467 | ||
468 | /* Use all the "standard" definitions? */ | |
a0d0e21e | 469 | #if defined(STANDARD_C) && defined(I_STDLIB) |
79072805 | 470 | # include <stdlib.h> |
ff68c719 | 471 | #endif |
03a14243 | 472 | |
0cb96387 | 473 | #if !defined(PERL_FOR_X2P) && !defined(PERL_OBJECT) |
cea2e8a9 GS |
474 | # include "embed.h" |
475 | #endif | |
476 | ||
c31fac66 GS |
477 | #define MEM_SIZE Size_t |
478 | ||
51371543 GS |
479 | #if defined(STANDARD_C) && defined(I_STDDEF) |
480 | # include <stddef.h> | |
481 | # define STRUCT_OFFSET(s,m) offsetof(s,m) | |
482 | #else | |
483 | # define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m)) | |
484 | #endif | |
485 | ||
486 | #if defined(I_STRING) || defined(__cplusplus) | |
487 | # include <string.h> | |
488 | #else | |
489 | # include <strings.h> | |
490 | #endif | |
491 | ||
55497cff | 492 | /* This comes after <stdlib.h> so we don't try to change the standard |
493 | * library prototypes; we'll use our own in proto.h instead. */ | |
03a14243 | 494 | |
4633a7c4 | 495 | #ifdef MYMALLOC |
86058a2d | 496 | # ifdef PERL_POLLUTE_MALLOC |
ee13e175 | 497 | # ifndef PERL_EXTMALLOC_DEF |
86058a2d GS |
498 | # define Perl_malloc malloc |
499 | # define Perl_calloc calloc | |
500 | # define Perl_realloc realloc | |
501 | # define Perl_mfree free | |
ee13e175 | 502 | # endif |
86058a2d GS |
503 | # else |
504 | # define EMBEDMYMALLOC /* for compatibility */ | |
505 | # endif | |
20ce7b12 GS |
506 | Malloc_t Perl_malloc (MEM_SIZE nbytes); |
507 | Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size); | |
508 | Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes); | |
86058a2d GS |
509 | /* 'mfree' rather than 'free', since there is already a 'perl_free' |
510 | * that causes clashes with case-insensitive linkers */ | |
20ce7b12 | 511 | Free_t Perl_mfree (Malloc_t where); |
55497cff | 512 | |
651b9576 GS |
513 | # define safemalloc Perl_malloc |
514 | # define safecalloc Perl_calloc | |
515 | # define saferealloc Perl_realloc | |
516 | # define safefree Perl_mfree | |
f2517201 GS |
517 | #else /* MYMALLOC */ |
518 | # define safemalloc safesysmalloc | |
519 | # define safecalloc safesyscalloc | |
520 | # define saferealloc safesysrealloc | |
521 | # define safefree safesysfree | |
55497cff | 522 | #endif /* MYMALLOC */ |
4633a7c4 | 523 | |
a0d0e21e LW |
524 | #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr) |
525 | #define strchr index | |
526 | #define strrchr rindex | |
527 | #endif | |
528 | ||
16d20bd9 AD |
529 | #ifdef I_MEMORY |
530 | # include <memory.h> | |
531 | #endif | |
532 | ||
fe14fcc3 | 533 | #ifdef HAS_MEMCPY |
85e6fe83 | 534 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
fe14fcc3 | 535 | # ifndef memcpy |
20ce7b12 | 536 | extern char * memcpy (char*, char*, int); |
ee0007ab LW |
537 | # endif |
538 | # endif | |
539 | #else | |
540 | # ifndef memcpy | |
541 | # ifdef HAS_BCOPY | |
542 | # define memcpy(d,s,l) bcopy(s,d,l) | |
543 | # else | |
544 | # define memcpy(d,s,l) my_bcopy(s,d,l) | |
545 | # endif | |
546 | # endif | |
547 | #endif /* HAS_MEMCPY */ | |
fe14fcc3 | 548 | |
ee0007ab | 549 | #ifdef HAS_MEMSET |
85e6fe83 | 550 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
ee0007ab | 551 | # ifndef memset |
20ce7b12 | 552 | extern char *memset (char*, int, int); |
ee0007ab LW |
553 | # endif |
554 | # endif | |
ee0007ab | 555 | #else |
fc36a67e | 556 | # define memset(d,c,l) my_memset(d,c,l) |
ee0007ab LW |
557 | #endif /* HAS_MEMSET */ |
558 | ||
85e6fe83 | 559 | #if !defined(HAS_MEMMOVE) && !defined(memmove) |
2304df62 | 560 | # if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY) |
79072805 LW |
561 | # define memmove(d,s,l) bcopy(s,d,l) |
562 | # else | |
2304df62 | 563 | # if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY) |
79072805 | 564 | # define memmove(d,s,l) memcpy(d,s,l) |
ee0007ab | 565 | # else |
79072805 | 566 | # define memmove(d,s,l) my_bcopy(s,d,l) |
ee0007ab | 567 | # endif |
352d5a3a | 568 | # endif |
d9d8d8de | 569 | #endif |
ee0007ab | 570 | |
36477c24 | 571 | #if defined(mips) && defined(ultrix) && !defined(__STDC__) |
572 | # undef HAS_MEMCMP | |
573 | #endif | |
574 | ||
575 | #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP) | |
85e6fe83 | 576 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
ee0007ab | 577 | # ifndef memcmp |
20ce7b12 | 578 | extern int memcmp (char*, char*, int); |
ee0007ab LW |
579 | # endif |
580 | # endif | |
36477c24 | 581 | # ifdef BUGGY_MSC |
582 | # pragma function(memcmp) | |
583 | # endif | |
ee0007ab LW |
584 | #else |
585 | # ifndef memcmp | |
ecfc5424 | 586 | # define memcmp my_memcmp |
352d5a3a | 587 | # endif |
36477c24 | 588 | #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */ |
8d063cd8 | 589 | |
fc36a67e | 590 | #ifndef memzero |
c635e13b | 591 | # ifdef HAS_MEMSET |
592 | # define memzero(d,l) memset(d,0,l) | |
79072805 | 593 | # else |
c635e13b | 594 | # ifdef HAS_BZERO |
595 | # define memzero(d,l) bzero(d,l) | |
79072805 | 596 | # else |
fc36a67e | 597 | # define memzero(d,l) my_bzero(d,l) |
79072805 LW |
598 | # endif |
599 | # endif | |
d9d8d8de | 600 | #endif |
378cc40b | 601 | |
0f27ced1 JH |
602 | #ifndef memchr |
603 | # ifndef HAS_MEMCHR | |
604 | # define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1) | |
605 | # endif | |
606 | #endif | |
607 | ||
36477c24 | 608 | #ifndef HAS_BCMP |
609 | # ifndef bcmp | |
610 | # define bcmp(s1,s2,l) memcmp(s1,s2,l) | |
79072805 | 611 | # endif |
36477c24 | 612 | #endif /* !HAS_BCMP */ |
378cc40b | 613 | |
ae986130 | 614 | #ifdef I_NETINET_IN |
79072805 | 615 | # include <netinet/in.h> |
ae986130 LW |
616 | #endif |
617 | ||
28e8609d JH |
618 | #ifdef I_ARPA_INET |
619 | # include <arpa/inet.h> | |
620 | #endif | |
621 | ||
84902520 TB |
622 | #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO) |
623 | /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND | |
624 | * (the neo-BSD seem to do this). */ | |
625 | # undef SF_APPEND | |
626 | #endif | |
627 | ||
1aef975c | 628 | #ifdef I_SYS_STAT |
84902520 | 629 | # include <sys/stat.h> |
1aef975c | 630 | #endif |
79072805 | 631 | |
a0d0e21e LW |
632 | /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives |
633 | like UTekV) are broken, sometimes giving false positives. Undefine | |
634 | them here and let the code below set them to proper values. | |
635 | ||
636 | The ghs macro stands for GreenHills Software C-1.8.5 which | |
637 | is the C compiler for sysV88 and the various derivatives. | |
638 | This header file bug is corrected in gcc-2.5.8 and later versions. | |
639 | --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */ | |
640 | ||
641 | #if defined(uts) || (defined(m88k) && defined(ghs)) | |
79072805 LW |
642 | # undef S_ISDIR |
643 | # undef S_ISCHR | |
644 | # undef S_ISBLK | |
645 | # undef S_ISREG | |
646 | # undef S_ISFIFO | |
647 | # undef S_ISLNK | |
ee0007ab | 648 | #endif |
135863df | 649 | |
663a0e37 LW |
650 | #ifdef I_TIME |
651 | # include <time.h> | |
ffed7fef | 652 | #endif |
663a0e37 | 653 | |
fe14fcc3 | 654 | #ifdef I_SYS_TIME |
85e6fe83 | 655 | # ifdef I_SYS_TIME_KERNEL |
663a0e37 LW |
656 | # define KERNEL |
657 | # endif | |
658 | # include <sys/time.h> | |
85e6fe83 | 659 | # ifdef I_SYS_TIME_KERNEL |
663a0e37 LW |
660 | # undef KERNEL |
661 | # endif | |
a687059c | 662 | #endif |
135863df | 663 | |
55497cff | 664 | #if defined(HAS_TIMES) && defined(I_SYS_TIMES) |
85e6fe83 | 665 | # include <sys/times.h> |
d9d8d8de | 666 | #endif |
8d063cd8 | 667 | |
fe14fcc3 | 668 | #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR)) |
79072805 | 669 | # undef HAS_STRERROR |
663a0e37 LW |
670 | #endif |
671 | ||
672 | #include <errno.h> | |
ed6116ce | 673 | #ifdef HAS_SOCKET |
85e6fe83 | 674 | # ifdef I_NET_ERRNO |
ed6116ce LW |
675 | # include <net/errno.h> |
676 | # endif | |
677 | #endif | |
f86702cc | 678 | |
679 | #ifdef VMS | |
680 | # define SETERRNO(errcode,vmserrcode) \ | |
681 | STMT_START { \ | |
682 | set_errno(errcode); \ | |
683 | set_vaxc_errno(vmserrcode); \ | |
684 | } STMT_END | |
748a9306 | 685 | #else |
aba27d88 | 686 | # define SETERRNO(errcode,vmserrcode) (errno = (errcode)) |
748a9306 | 687 | #endif |
ed6116ce | 688 | |
38a03e6e MB |
689 | #ifdef USE_THREADS |
690 | # define ERRSV (thr->errsv) | |
940cb80d MB |
691 | # define DEFSV THREADSV(0) |
692 | # define SAVE_DEFSV save_threadsv(0) | |
38a03e6e | 693 | #else |
3280af22 | 694 | # define ERRSV GvSV(PL_errgv) |
3280af22 NIS |
695 | # define DEFSV GvSV(PL_defgv) |
696 | # define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv)) | |
38a03e6e MB |
697 | #endif /* USE_THREADS */ |
698 | ||
98eae8f5 GS |
699 | #define ERRHV GvHV(PL_errgv) /* XXX unused, here for compatibility */ |
700 | ||
55497cff | 701 | #ifndef errno |
5ff3f7a4 GS |
702 | extern int errno; /* ANSI allows errno to be an lvalue expr. |
703 | * For example in multithreaded environments | |
704 | * something like this might happen: | |
705 | * extern int *_errno(void); | |
706 | * #define errno (*_errno()) */ | |
d9d8d8de | 707 | #endif |
663a0e37 | 708 | |
2304df62 | 709 | #ifdef HAS_STRERROR |
a0d0e21e | 710 | # ifdef VMS |
20ce7b12 | 711 | char *strerror (int,...); |
a0d0e21e | 712 | # else |
68dc0745 | 713 | #ifndef DONT_DECLARE_STD |
20ce7b12 | 714 | char *strerror (int); |
68dc0745 | 715 | #endif |
a0d0e21e | 716 | # endif |
2304df62 AD |
717 | # ifndef Strerror |
718 | # define Strerror strerror | |
719 | # endif | |
720 | #else | |
721 | # ifdef HAS_SYS_ERRLIST | |
79072805 LW |
722 | extern int sys_nerr; |
723 | extern char *sys_errlist[]; | |
2304df62 AD |
724 | # ifndef Strerror |
725 | # define Strerror(e) \ | |
79072805 | 726 | ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e]) |
2304df62 | 727 | # endif |
79072805 | 728 | # endif |
35c8bce7 | 729 | #endif |
663a0e37 | 730 | |
2304df62 | 731 | #ifdef I_SYS_IOCTL |
79072805 LW |
732 | # ifndef _IOCTL_ |
733 | # include <sys/ioctl.h> | |
734 | # endif | |
a687059c LW |
735 | #endif |
736 | ||
ee0007ab | 737 | #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000) |
79072805 LW |
738 | # ifdef HAS_SOCKETPAIR |
739 | # undef HAS_SOCKETPAIR | |
740 | # endif | |
2304df62 AD |
741 | # ifdef I_NDBM |
742 | # undef I_NDBM | |
79072805 | 743 | # endif |
a687059c LW |
744 | #endif |
745 | ||
a687059c | 746 | #if INTSIZE == 2 |
79072805 LW |
747 | # define htoni htons |
748 | # define ntohi ntohs | |
a687059c | 749 | #else |
79072805 LW |
750 | # define htoni htonl |
751 | # define ntohi ntohl | |
a687059c LW |
752 | #endif |
753 | ||
a0d0e21e | 754 | /* Configure already sets Direntry_t */ |
35c8bce7 | 755 | #if defined(I_DIRENT) |
663a0e37 | 756 | # include <dirent.h> |
8f1f23e8 W |
757 | /* NeXT needs dirent + sys/dir.h */ |
758 | # if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__)) | |
a0d0e21e LW |
759 | # include <sys/dir.h> |
760 | # endif | |
ae986130 | 761 | #else |
fe14fcc3 | 762 | # ifdef I_SYS_NDIR |
79a0689e | 763 | # include <sys/ndir.h> |
663a0e37 | 764 | # else |
fe14fcc3 | 765 | # ifdef I_SYS_DIR |
79a0689e LW |
766 | # ifdef hp9000s500 |
767 | # include <ndir.h> /* may be wrong in the future */ | |
768 | # else | |
769 | # include <sys/dir.h> | |
770 | # endif | |
663a0e37 LW |
771 | # endif |
772 | # endif | |
4633a7c4 | 773 | #endif |
a687059c | 774 | |
352d5a3a LW |
775 | #ifdef FPUTS_BOTCH |
776 | /* work around botch in SunOS 4.0.1 and 4.0.2 */ | |
777 | # ifndef fputs | |
79072805 | 778 | # define fputs(sv,fp) fprintf(fp,"%s",sv) |
352d5a3a LW |
779 | # endif |
780 | #endif | |
781 | ||
c623bd54 LW |
782 | /* |
783 | * The following gobbledygook brought to you on behalf of __STDC__. | |
784 | * (I could just use #ifndef __STDC__, but this is more bulletproof | |
785 | * in the face of half-implementations.) | |
786 | */ | |
787 | ||
788 | #ifndef S_IFMT | |
789 | # ifdef _S_IFMT | |
790 | # define S_IFMT _S_IFMT | |
791 | # else | |
792 | # define S_IFMT 0170000 | |
793 | # endif | |
794 | #endif | |
795 | ||
796 | #ifndef S_ISDIR | |
797 | # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR) | |
798 | #endif | |
799 | ||
800 | #ifndef S_ISCHR | |
801 | # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR) | |
802 | #endif | |
803 | ||
804 | #ifndef S_ISBLK | |
fe14fcc3 LW |
805 | # ifdef S_IFBLK |
806 | # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK) | |
807 | # else | |
808 | # define S_ISBLK(m) (0) | |
809 | # endif | |
c623bd54 LW |
810 | #endif |
811 | ||
812 | #ifndef S_ISREG | |
813 | # define S_ISREG(m) ((m & S_IFMT) == S_IFREG) | |
814 | #endif | |
815 | ||
816 | #ifndef S_ISFIFO | |
fe14fcc3 LW |
817 | # ifdef S_IFIFO |
818 | # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO) | |
819 | # else | |
820 | # define S_ISFIFO(m) (0) | |
821 | # endif | |
c623bd54 LW |
822 | #endif |
823 | ||
824 | #ifndef S_ISLNK | |
825 | # ifdef _S_ISLNK | |
826 | # define S_ISLNK(m) _S_ISLNK(m) | |
827 | # else | |
828 | # ifdef _S_IFLNK | |
829 | # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK) | |
830 | # else | |
831 | # ifdef S_IFLNK | |
832 | # define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK) | |
833 | # else | |
834 | # define S_ISLNK(m) (0) | |
835 | # endif | |
836 | # endif | |
837 | # endif | |
838 | #endif | |
839 | ||
840 | #ifndef S_ISSOCK | |
841 | # ifdef _S_ISSOCK | |
842 | # define S_ISSOCK(m) _S_ISSOCK(m) | |
843 | # else | |
844 | # ifdef _S_IFSOCK | |
845 | # define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK) | |
846 | # else | |
847 | # ifdef S_IFSOCK | |
848 | # define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK) | |
849 | # else | |
850 | # define S_ISSOCK(m) (0) | |
851 | # endif | |
852 | # endif | |
853 | # endif | |
854 | #endif | |
855 | ||
856 | #ifndef S_IRUSR | |
857 | # ifdef S_IREAD | |
858 | # define S_IRUSR S_IREAD | |
859 | # define S_IWUSR S_IWRITE | |
860 | # define S_IXUSR S_IEXEC | |
861 | # else | |
862 | # define S_IRUSR 0400 | |
863 | # define S_IWUSR 0200 | |
864 | # define S_IXUSR 0100 | |
865 | # endif | |
866 | # define S_IRGRP (S_IRUSR>>3) | |
867 | # define S_IWGRP (S_IWUSR>>3) | |
868 | # define S_IXGRP (S_IXUSR>>3) | |
869 | # define S_IROTH (S_IRUSR>>6) | |
870 | # define S_IWOTH (S_IWUSR>>6) | |
871 | # define S_IXOTH (S_IXUSR>>6) | |
872 | #endif | |
873 | ||
874 | #ifndef S_ISUID | |
875 | # define S_ISUID 04000 | |
876 | #endif | |
877 | ||
878 | #ifndef S_ISGID | |
879 | # define S_ISGID 02000 | |
880 | #endif | |
881 | ||
79072805 LW |
882 | #ifdef ff_next |
883 | # undef ff_next | |
352d5a3a LW |
884 | #endif |
885 | ||
a0d0e21e | 886 | #if defined(cray) || defined(gould) || defined(i860) || defined(pyr) |
45d8adaa LW |
887 | # define SLOPPYDIVIDE |
888 | #endif | |
889 | ||
748a9306 LW |
890 | #ifdef UV |
891 | #undef UV | |
892 | #endif | |
893 | ||
5ff3f7a4 GS |
894 | #ifdef I_INTTYPES |
895 | #include <inttypes.h> | |
896 | #endif | |
897 | ||
05f13f53 | 898 | /* |
27d4fb96 | 899 | The IV type is supposed to be long enough to hold any integral |
900 | value or a pointer. | |
901 | --Andy Dougherty August 1996 | |
902 | */ | |
903 | ||
a22e52b9 JH |
904 | typedef IVTYPE IV; |
905 | typedef UVTYPE UV; | |
8175356b | 906 | |
de1c2614 | 907 | #if defined(USE_64_BITS) && defined(HAS_QUAD) |
d7d93a81 | 908 | # if QUADCASE == 4 && defined(INT64_MAX) /* quad is int64_t */ |
5ff3f7a4 GS |
909 | # define IV_MAX INT64_MAX |
910 | # define IV_MIN INT64_MIN | |
911 | # define UV_MAX UINT64_MAX | |
cae7ae48 JH |
912 | # ifndef UINT64_MIN |
913 | # define UINT64_MIN 0 | |
914 | # endif | |
5ff3f7a4 GS |
915 | # define UV_MIN UINT64_MIN |
916 | # else | |
917 | # define IV_MAX PERL_QUAD_MAX | |
918 | # define IV_MIN PERL_QUAD_MIN | |
919 | # define UV_MAX PERL_UQUAD_MAX | |
920 | # define UV_MIN PERL_UQUAD_MIN | |
921 | # endif | |
cf2093f6 JH |
922 | # define IV_IS_QUAD |
923 | # define UV_IS_QUAD | |
79072805 | 924 | #else |
8175356b | 925 | # if defined(INT32_MAX) && IVSIZE == 4 |
5ff3f7a4 GS |
926 | # define IV_MAX INT32_MAX |
927 | # define IV_MIN INT32_MIN | |
716026f9 DL |
928 | # ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */ |
929 | # define UV_MAX UINT32_MAX | |
930 | # else | |
931 | # define UV_MAX 4294967295U | |
932 | # endif | |
cae7ae48 JH |
933 | # ifndef UINT32_MIN |
934 | # define UINT32_MIN 0 | |
935 | # endif | |
5ff3f7a4 GS |
936 | # define UV_MIN UINT32_MIN |
937 | # else | |
938 | # define IV_MAX PERL_LONG_MAX | |
939 | # define IV_MIN PERL_LONG_MIN | |
940 | # define UV_MAX PERL_ULONG_MAX | |
941 | # define UV_MIN PERL_ULONG_MIN | |
942 | # endif | |
8175356b | 943 | # if IVSIZE == 8 |
cf2093f6 JH |
944 | # define IV_IS_QUAD |
945 | # define UV_IS_QUAD | |
de1c2614 JH |
946 | # ifndef HAS_QUAD |
947 | # define HAS_QUAD | |
948 | # endif | |
cf2093f6 JH |
949 | # else |
950 | # undef IV_IS_QUAD | |
951 | # undef UV_IS_QUAD | |
de1c2614 | 952 | # undef HAS_QUAD |
cf2093f6 | 953 | # endif |
79072805 | 954 | #endif |
d7d93a81 | 955 | |
cae7ae48 | 956 | #define IV_DIG (BIT_DIGITS(IVSIZE * 8)) |
22ec83e3 | 957 | #define UV_DIG (BIT_DIGITS(UVSIZE * 8)) |
56431972 | 958 | |
26bb67e2 JH |
959 | /* |
960 | * The macros INT2PTR and NUM2PTR are (despite their names) | |
961 | * bi-directional: they will convert int/float to or from pointers. | |
962 | * However the conversion to int/float are named explicitly: | |
963 | * PTR2IV, PTR2UV, PTR2NV. | |
964 | * | |
965 | * For int conversions we do not need two casts if pointers are | |
966 | * the same size as IV and UV. Otherwise we need an explicit | |
967 | * cast (PTRV) to avoid compiler warnings. | |
968 | */ | |
56431972 RB |
969 | #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE) |
970 | # define PTRV UV | |
971 | # define INT2PTR(any,d) (any)(d) | |
972 | #else | |
42718184 | 973 | # if PTRSIZE == LONGSIZE |
56431972 | 974 | # define PTRV unsigned long |
42718184 | 975 | # else |
56431972 | 976 | # define PTRV unsigned |
42718184 | 977 | # endif |
56431972 | 978 | # define INT2PTR(any,d) (any)(PTRV)(d) |
42718184 | 979 | #endif |
56431972 RB |
980 | #define NUM2PTR(any,d) (any)(PTRV)(d) |
981 | #define PTR2IV(p) INT2PTR(IV,p) | |
982 | #define PTR2UV(p) INT2PTR(UV,p) | |
983 | #define PTR2NV(p) NUM2PTR(NV,p) | |
42718184 | 984 | |
65202027 | 985 | #ifdef USE_LONG_DOUBLE |
68d4903c | 986 | # if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE)) |
2d4389e4 | 987 | # undef USE_LONG_DOUBLE /* Ouch! */ |
65202027 DS |
988 | # endif |
989 | #endif | |
990 | ||
2d4389e4 JH |
991 | #ifdef OVR_DBL_DIG |
992 | /* Use an overridden DBL_DIG */ | |
993 | # ifdef DBL_DIG | |
994 | # undef DBL_DIG | |
995 | # endif | |
996 | # define DBL_DIG OVR_DBL_DIG | |
997 | #else | |
998 | /* The following is all to get DBL_DIG, in order to pick a nice | |
999 | default value for printing floating point numbers in Gconvert. | |
1000 | (see config.h) | |
1001 | */ | |
1002 | #ifdef I_LIMITS | |
1003 | #include <limits.h> | |
1004 | #endif | |
1005 | #ifdef I_FLOAT | |
1006 | #include <float.h> | |
1007 | #endif | |
1008 | #ifndef HAS_DBL_DIG | |
1009 | #define DBL_DIG 15 /* A guess that works lots of places */ | |
1010 | #endif | |
1011 | #endif | |
cbca01e1 JH |
1012 | #ifdef I_FLOAT |
1013 | #include <float.h> | |
1014 | #endif | |
1015 | #ifndef HAS_DBL_DIG | |
1016 | #define DBL_DIG 15 /* A guess that works lots of places */ | |
1017 | #endif | |
2d4389e4 JH |
1018 | |
1019 | #ifdef OVR_LDBL_DIG | |
1020 | /* Use an overridden LDBL_DIG */ | |
1021 | # ifdef LDBL_DIG | |
1022 | # undef LDBL_DIG | |
1023 | # endif | |
1024 | # define LDBL_DIG OVR_LDBL_DIG | |
1025 | #else | |
1026 | /* The following is all to get LDBL_DIG, in order to pick a nice | |
1027 | default value for printing floating point numbers in Gconvert. | |
1028 | (see config.h) | |
1029 | */ | |
68d4903c JH |
1030 | # ifdef I_LIMITS |
1031 | # include <limits.h> | |
1032 | # endif | |
1033 | # ifdef I_FLOAT | |
1034 | # include <float.h> | |
1035 | # endif | |
1036 | # ifndef HAS_LDBL_DIG | |
1037 | # if LONG_DOUBLESIZE == 10 | |
1038 | # define LDBL_DIG 18 /* assume IEEE */ | |
1039 | # else | |
1040 | # if LONG_DOUBLESIZE == 12 | |
1041 | # define LDBL_DIG 18 /* gcc? */ | |
1042 | # else | |
1043 | # if LONG_DOUBLESIZE == 16 | |
1044 | # define LDBL_DIG 33 /* assume IEEE */ | |
1045 | # else | |
1046 | # if LONG_DOUBLESIZE == DOUBLESIZE | |
1047 | # define LDBL_DIG DBL_DIG /* bummer */ | |
1048 | # endif | |
1049 | # endif | |
1050 | # endif | |
1051 | # endif | |
1052 | # endif | |
2d4389e4 JH |
1053 | #endif |
1054 | ||
a22e52b9 | 1055 | typedef NVTYPE NV; |
8175356b | 1056 | |
65202027 | 1057 | #ifdef USE_LONG_DOUBLE |
2d4389e4 | 1058 | # define NV_DIG LDBL_DIG |
68d4903c JH |
1059 | # ifdef HAS_SQRTL |
1060 | # define Perl_modf modfl | |
1061 | # define Perl_frexp frexpl | |
1062 | # define Perl_cos cosl | |
1063 | # define Perl_sin sinl | |
1064 | # define Perl_sqrt sqrtl | |
1065 | # define Perl_exp expl | |
1066 | # define Perl_log logl | |
1067 | # define Perl_atan2 atan2l | |
1068 | # define Perl_pow powl | |
1069 | # define Perl_floor floorl | |
1070 | # define Perl_fmod fmodl | |
1071 | # endif | |
65202027 | 1072 | #else |
2d4389e4 | 1073 | # define NV_DIG DBL_DIG |
65202027 DS |
1074 | # define Perl_modf modf |
1075 | # define Perl_frexp frexp | |
1076 | # define Perl_cos cos | |
1077 | # define Perl_sin sin | |
1078 | # define Perl_sqrt sqrt | |
1079 | # define Perl_exp exp | |
1080 | # define Perl_log log | |
1081 | # define Perl_atan2 atan2 | |
1082 | # define Perl_pow pow | |
1083 | # define Perl_floor floor | |
65202027 DS |
1084 | # define Perl_fmod fmod |
1085 | #endif | |
1086 | ||
cf2093f6 JH |
1087 | #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE) && defined(HAS_ATOLF) |
1088 | # define Perl_atof atolf | |
1089 | #else | |
1090 | # define Perl_atof atof | |
1091 | #endif | |
1092 | ||
760ac839 LW |
1093 | /* Previously these definitions used hardcoded figures. |
1094 | * It is hoped these formula are more portable, although | |
1095 | * no data one way or another is presently known to me. | |
1096 | * The "PERL_" names are used because these calculated constants | |
1097 | * do not meet the ANSI requirements for LONG_MAX, etc., which | |
1098 | * need to be constants acceptable to #if - kja | |
1099 | * define PERL_LONG_MAX 2147483647L | |
1100 | * define PERL_LONG_MIN (-LONG_MAX - 1) | |
1101 | * define PERL ULONG_MAX 4294967295L | |
1102 | */ | |
1103 | ||
1104 | #ifdef I_LIMITS /* Needed for cast_xxx() functions below. */ | |
1105 | # include <limits.h> | |
1106 | #else | |
1107 | #ifdef I_VALUES | |
1108 | # include <values.h> | |
1109 | #endif | |
1110 | #endif | |
1111 | ||
99abf803 | 1112 | /* |
1113 | * Try to figure out max and min values for the integral types. THE CORRECT | |
1114 | * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The | |
1115 | * following hacks are used if neither limits.h or values.h provide them: | |
1116 | * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0 | |
1117 | * for types < int: (unsigned TYPE)~(unsigned)0 | |
1118 | * The argument to ~ must be unsigned so that later signed->unsigned | |
1119 | * conversion can't modify the value's bit pattern (e.g. -0 -> +0), | |
1120 | * and it must not be smaller than int because ~ does integral promotion. | |
1121 | * <type>_MAX: (<type>) (U<type>_MAX >> 1) | |
1122 | * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>. | |
1123 | * The latter is a hack which happens to work on some machines but | |
1124 | * does *not* catch any random system, or things like integer types | |
1125 | * with NaN if that is possible. | |
1126 | * | |
1127 | * All of the types are explicitly cast to prevent accidental loss of | |
1128 | * numeric range, and in the hope that they will be less likely to confuse | |
1129 | * over-eager optimizers. | |
1130 | * | |
1131 | */ | |
27d4fb96 | 1132 | |
99abf803 | 1133 | #define PERL_UCHAR_MIN ((unsigned char)0) |
1134 | ||
1135 | #ifdef UCHAR_MAX | |
1136 | # define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX) | |
27d4fb96 | 1137 | #else |
99abf803 | 1138 | # ifdef MAXUCHAR |
1139 | # define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR) | |
27d4fb96 | 1140 | # else |
99abf803 | 1141 | # define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0) |
27d4fb96 | 1142 | # endif |
1143 | #endif | |
99abf803 | 1144 | |
1145 | /* | |
1146 | * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be | |
1147 | * ambiguous. It may be equivalent to (signed char) or (unsigned char) | |
1148 | * depending on local options. Until Configure detects this (or at least | |
1149 | * detects whether the "signed" keyword is available) the CHAR ranges | |
1150 | * will not be included. UCHAR functions normally. | |
1151 | * - kja | |
1152 | */ | |
27d4fb96 | 1153 | |
99abf803 | 1154 | #define PERL_USHORT_MIN ((unsigned short)0) |
1155 | ||
1156 | #ifdef USHORT_MAX | |
1157 | # define PERL_USHORT_MAX ((unsigned short)USHORT_MAX) | |
27d4fb96 | 1158 | #else |
99abf803 | 1159 | # ifdef MAXUSHORT |
1160 | # define PERL_USHORT_MAX ((unsigned short)MAXUSHORT) | |
27d4fb96 | 1161 | # else |
ef2f54b0 CB |
1162 | # ifdef USHRT_MAX |
1163 | # define PERL_USHORT_MAX ((unsigned short)USHRT_MAX) | |
1164 | # else | |
1165 | # define PERL_USHORT_MAX ((unsigned short)~(unsigned)0) | |
1166 | # endif | |
27d4fb96 | 1167 | # endif |
1168 | #endif | |
1169 | ||
27d4fb96 | 1170 | #ifdef SHORT_MAX |
99abf803 | 1171 | # define PERL_SHORT_MAX ((short)SHORT_MAX) |
27d4fb96 | 1172 | #else |
1173 | # ifdef MAXSHORT /* Often used in <values.h> */ | |
99abf803 | 1174 | # define PERL_SHORT_MAX ((short)MAXSHORT) |
27d4fb96 | 1175 | # else |
ef2f54b0 CB |
1176 | # ifdef SHRT_MAX |
1177 | # define PERL_SHORT_MAX ((short)SHRT_MAX) | |
1178 | # else | |
1179 | # define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1)) | |
1180 | # endif | |
27d4fb96 | 1181 | # endif |
1182 | #endif | |
1183 | ||
1184 | #ifdef SHORT_MIN | |
99abf803 | 1185 | # define PERL_SHORT_MIN ((short)SHORT_MIN) |
27d4fb96 | 1186 | #else |
1187 | # ifdef MINSHORT | |
99abf803 | 1188 | # define PERL_SHORT_MIN ((short)MINSHORT) |
27d4fb96 | 1189 | # else |
ef2f54b0 CB |
1190 | # ifdef SHRT_MIN |
1191 | # define PERL_SHORT_MIN ((short)SHRT_MIN) | |
1192 | # else | |
1193 | # define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3)) | |
1194 | # endif | |
27d4fb96 | 1195 | # endif |
1196 | #endif | |
1197 | ||
99abf803 | 1198 | #ifdef UINT_MAX |
1199 | # define PERL_UINT_MAX ((unsigned int)UINT_MAX) | |
27d4fb96 | 1200 | #else |
99abf803 | 1201 | # ifdef MAXUINT |
1202 | # define PERL_UINT_MAX ((unsigned int)MAXUINT) | |
27d4fb96 | 1203 | # else |
99abf803 | 1204 | # define PERL_UINT_MAX (~(unsigned int)0) |
27d4fb96 | 1205 | # endif |
1206 | #endif | |
1207 | ||
99abf803 | 1208 | #define PERL_UINT_MIN ((unsigned int)0) |
27d4fb96 | 1209 | |
1210 | #ifdef INT_MAX | |
99abf803 | 1211 | # define PERL_INT_MAX ((int)INT_MAX) |
27d4fb96 | 1212 | #else |
1213 | # ifdef MAXINT /* Often used in <values.h> */ | |
99abf803 | 1214 | # define PERL_INT_MAX ((int)MAXINT) |
27d4fb96 | 1215 | # else |
99abf803 | 1216 | # define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1)) |
27d4fb96 | 1217 | # endif |
1218 | #endif | |
1219 | ||
1220 | #ifdef INT_MIN | |
99abf803 | 1221 | # define PERL_INT_MIN ((int)INT_MIN) |
27d4fb96 | 1222 | #else |
1223 | # ifdef MININT | |
99abf803 | 1224 | # define PERL_INT_MIN ((int)MININT) |
27d4fb96 | 1225 | # else |
1226 | # define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3)) | |
1227 | # endif | |
1228 | #endif | |
1229 | ||
99abf803 | 1230 | #ifdef ULONG_MAX |
1231 | # define PERL_ULONG_MAX ((unsigned long)ULONG_MAX) | |
27d4fb96 | 1232 | #else |
99abf803 | 1233 | # ifdef MAXULONG |
1234 | # define PERL_ULONG_MAX ((unsigned long)MAXULONG) | |
27d4fb96 | 1235 | # else |
99abf803 | 1236 | # define PERL_ULONG_MAX (~(unsigned long)0) |
27d4fb96 | 1237 | # endif |
1238 | #endif | |
1239 | ||
99abf803 | 1240 | #define PERL_ULONG_MIN ((unsigned long)0L) |
27d4fb96 | 1241 | |
760ac839 | 1242 | #ifdef LONG_MAX |
99abf803 | 1243 | # define PERL_LONG_MAX ((long)LONG_MAX) |
760ac839 LW |
1244 | #else |
1245 | # ifdef MAXLONG /* Often used in <values.h> */ | |
99abf803 | 1246 | # define PERL_LONG_MAX ((long)MAXLONG) |
760ac839 | 1247 | # else |
99abf803 | 1248 | # define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1)) |
760ac839 LW |
1249 | # endif |
1250 | #endif | |
1251 | ||
1252 | #ifdef LONG_MIN | |
99abf803 | 1253 | # define PERL_LONG_MIN ((long)LONG_MIN) |
760ac839 LW |
1254 | #else |
1255 | # ifdef MINLONG | |
99abf803 | 1256 | # define PERL_LONG_MIN ((long)MINLONG) |
760ac839 | 1257 | # else |
27d4fb96 | 1258 | # define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3)) |
760ac839 LW |
1259 | # endif |
1260 | #endif | |
1261 | ||
d7d93a81 | 1262 | #ifdef UV_IS_QUAD |
99abf803 | 1263 | |
1264 | # ifdef UQUAD_MAX | |
1265 | # define PERL_UQUAD_MAX ((UV)UQUAD_MAX) | |
760ac839 | 1266 | # else |
99abf803 | 1267 | # define PERL_UQUAD_MAX (~(UV)0) |
760ac839 | 1268 | # endif |
760ac839 | 1269 | |
99abf803 | 1270 | # define PERL_UQUAD_MIN ((UV)0) |
27d4fb96 | 1271 | |
27d4fb96 | 1272 | # ifdef QUAD_MAX |
99abf803 | 1273 | # define PERL_QUAD_MAX ((IV)QUAD_MAX) |
27d4fb96 | 1274 | # else |
99abf803 | 1275 | # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1)) |
27d4fb96 | 1276 | # endif |
1277 | ||
1278 | # ifdef QUAD_MIN | |
99abf803 | 1279 | # define PERL_QUAD_MIN ((IV)QUAD_MIN) |
27d4fb96 | 1280 | # else |
a6e633de | 1281 | # define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3)) |
27d4fb96 | 1282 | # endif |
1283 | ||
79072805 LW |
1284 | #endif |
1285 | ||
ee0007ab | 1286 | typedef MEM_SIZE STRLEN; |
450a55e4 | 1287 | |
79072805 LW |
1288 | typedef struct op OP; |
1289 | typedef struct cop COP; | |
1290 | typedef struct unop UNOP; | |
1291 | typedef struct binop BINOP; | |
1292 | typedef struct listop LISTOP; | |
1293 | typedef struct logop LOGOP; | |
79072805 LW |
1294 | typedef struct pmop PMOP; |
1295 | typedef struct svop SVOP; | |
7934575e | 1296 | typedef struct padop PADOP; |
79072805 | 1297 | typedef struct pvop PVOP; |
79072805 LW |
1298 | typedef struct loop LOOP; |
1299 | ||
93a17b20 | 1300 | typedef struct interpreter PerlInterpreter; |
79072805 LW |
1301 | typedef struct sv SV; |
1302 | typedef struct av AV; | |
1303 | typedef struct hv HV; | |
1304 | typedef struct cv CV; | |
378cc40b | 1305 | typedef struct regexp REGEXP; |
79072805 | 1306 | typedef struct gp GP; |
0c30d9ec | 1307 | typedef struct gv GV; |
8990e307 | 1308 | typedef struct io IO; |
c09156bb | 1309 | typedef struct context PERL_CONTEXT; |
79072805 LW |
1310 | typedef struct block BLOCK; |
1311 | ||
1312 | typedef struct magic MAGIC; | |
ed6116ce | 1313 | typedef struct xrv XRV; |
79072805 LW |
1314 | typedef struct xpv XPV; |
1315 | typedef struct xpviv XPVIV; | |
ff68c719 | 1316 | typedef struct xpvuv XPVUV; |
79072805 LW |
1317 | typedef struct xpvnv XPVNV; |
1318 | typedef struct xpvmg XPVMG; | |
1319 | typedef struct xpvlv XPVLV; | |
1320 | typedef struct xpvav XPVAV; | |
1321 | typedef struct xpvhv XPVHV; | |
1322 | typedef struct xpvgv XPVGV; | |
1323 | typedef struct xpvcv XPVCV; | |
1324 | typedef struct xpvbm XPVBM; | |
1325 | typedef struct xpvfm XPVFM; | |
8990e307 | 1326 | typedef struct xpvio XPVIO; |
79072805 LW |
1327 | typedef struct mgvtbl MGVTBL; |
1328 | typedef union any ANY; | |
8d063cd8 | 1329 | |
378cc40b | 1330 | #include "handy.h" |
a0d0e21e | 1331 | |
09458382 JH |
1332 | #if defined(USE_LARGE_FILES) |
1333 | # define USE_64_BIT_RAWIO /* Explicit */ | |
d9b3e12d JH |
1334 | # define USE_64_BIT_STDIO |
1335 | #endif | |
1336 | ||
09458382 JH |
1337 | #if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO) |
1338 | # define USE_64_BIT_RAWIO /* Implicit */ | |
4564133c JH |
1339 | #endif |
1340 | ||
1341 | /* Do we need FSEEKSIZE? */ | |
1342 | ||
2d4389e4 JH |
1343 | /* I couldn't find any -Ddefine or -flags in IRIX 6.5 that would |
1344 | * have done the necessary symbol renaming using cpp. --jhi */ | |
1345 | #ifdef __sgi | |
d9b3e12d JH |
1346 | #define USE_FOPEN64 |
1347 | #define USE_FSEEK64 | |
1348 | #define USE_FTELL64 | |
1349 | #define USE_FSETPOS64 | |
1350 | #define USE_FGETPOS64 | |
1351 | #define USE_TMPFILE64 | |
1352 | #define USE_FREOPEN64 | |
1353 | #endif | |
1354 | ||
09458382 | 1355 | #ifdef USE_64_BIT_RAWIO |
d9b3e12d JH |
1356 | # ifdef HAS_OFF64_T |
1357 | # undef Off_t | |
1358 | # define Off_t off64_t | |
1359 | # undef LSEEKSIZE | |
1360 | # define LSEEKSIZE 8 | |
5ff3f7a4 | 1361 | # endif |
d9b3e12d JH |
1362 | /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that |
1363 | * will trigger defines like the ones below. Some 64-bit environments, | |
09458382 | 1364 | * however, do not. Therefore we have to explicitly mix and match. */ |
d9b3e12d JH |
1365 | # if defined(USE_OPEN64) |
1366 | # define open open64 | |
5ff3f7a4 | 1367 | # endif |
d9b3e12d JH |
1368 | # if defined(USE_LSEEK64) |
1369 | # define lseek lseek64 | |
5ff3f7a4 | 1370 | # endif |
d9b3e12d JH |
1371 | # if defined(USE_LLSEEK) |
1372 | # define lseek llseek | |
1373 | # endif | |
1374 | # if defined(USE_STAT64) | |
1375 | # define stat stat64 | |
1376 | # endif | |
1377 | # if defined(USE_FSTAT64) | |
1378 | # define fstat fstat64 | |
1379 | # endif | |
1380 | # if defined(USE_LSTAT64) | |
1381 | # define lstat lstat64 | |
1382 | # endif | |
1383 | # if defined(USE_FLOCK64) | |
1384 | # define flock flock64 | |
1385 | # endif | |
1386 | # if defined(USE_LOCKF64) | |
1387 | # define lockf lockf64 | |
1388 | # endif | |
1389 | # if defined(USE_FCNTL64) | |
1390 | # define fcntl fcntl64 | |
1391 | # endif | |
1392 | # if defined(USE_TRUNCATE64) | |
1393 | # define truncate truncate64 | |
1394 | # endif | |
1395 | # if defined(USE_FTRUNCATE64) | |
1396 | # define ftruncate ftruncate64 | |
1397 | # endif | |
1398 | #endif | |
1399 | ||
1400 | #ifdef USE_64_BIT_STDIO | |
1401 | # ifdef HAS_FPOS64_T | |
1402 | # undef Fpos_t | |
1403 | # define Fpos_t fpos64_t | |
1404 | # endif | |
1405 | /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that | |
1406 | * will trigger defines like the ones below. Some 64-bit environments, | |
1407 | * however, do not. */ | |
1408 | # if defined(USE_FOPEN64) | |
1409 | # define fopen fopen64 | |
1410 | # endif | |
1411 | # if defined(USE_FSEEK64) | |
1412 | # define fseek fseek64 | |
1413 | # endif | |
1414 | # if defined(USE_FTELL64) | |
1415 | # define ftell ftell64 | |
1416 | # endif | |
1417 | # if defined(USE_FSETPOS64) | |
1418 | # define fsetpos fsetpos64 | |
1419 | # endif | |
1420 | # if defined(USE_FGETPOS64) | |
1421 | # define fgetpos fgetpos64 | |
1422 | # endif | |
1423 | # if defined(USE_TMPFILE64) | |
1424 | # define tmpfile tmpfile64 | |
1425 | # endif | |
1426 | # if defined(USE_FREOPEN64) | |
1427 | # define freopen freopen64 | |
5ff3f7a4 GS |
1428 | # endif |
1429 | #endif | |
1430 | ||
2c2d71f5 JH |
1431 | #if defined(OS2) |
1432 | # include "iperlsys.h" | |
1433 | #endif | |
1434 | ||
6f71a643 JH |
1435 | #if defined(__OPEN_VM) |
1436 | # include "vmesa/vmesaish.h" | |
1437 | #endif | |
1438 | ||
748a9306 | 1439 | #ifdef DOSISH |
4633a7c4 LW |
1440 | # if defined(OS2) |
1441 | # include "os2ish.h" | |
1442 | # else | |
748a9306 | 1443 | # include "dosish.h" |
4633a7c4 | 1444 | # endif |
a0d0e21e | 1445 | #else |
748a9306 LW |
1446 | # if defined(VMS) |
1447 | # include "vmsish.h" | |
1448 | # else | |
0c30d9ec | 1449 | # if defined(PLAN9) |
1450 | # include "./plan9/plan9ish.h" | |
1451 | # else | |
1d84e8df JH |
1452 | # if defined(MPE) |
1453 | # include "mpeix/mpeixish.h" | |
1454 | # else | |
495c5fdc PG |
1455 | # if defined(__VOS__) |
1456 | # include "vosish.h" | |
1457 | # else | |
4d2c4e07 OF |
1458 | # if defined(EPOC) |
1459 | # include "epocish.h" | |
1460 | # else | |
cd39f2b6 JH |
1461 | # if defined(MACOS_TRADITIONAL) |
1462 | # include "macos/macish.h" | |
1463 | # else | |
1464 | # include "unixish.h" | |
1465 | # endif | |
4d2c4e07 | 1466 | # endif |
495c5fdc | 1467 | # endif |
1d84e8df | 1468 | # endif |
0c30d9ec | 1469 | # endif |
748a9306 | 1470 | # endif |
32f822de GS |
1471 | #endif |
1472 | ||
ed344e4f IZ |
1473 | #ifndef PERL_SYS_INIT3 |
1474 | # define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp) | |
1475 | #endif | |
1476 | ||
bca6c107 GS |
1477 | #ifndef PERL_SYS_INIT3 |
1478 | # define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp) | |
1479 | #endif | |
1480 | ||
0f31cffe GS |
1481 | #ifndef MAXPATHLEN |
1482 | # ifdef PATH_MAX | |
b990c8b2 JH |
1483 | # ifdef _POSIX_PATH_MAX |
1484 | # if PATH_MAX > _POSIX_PATH_MAX | |
1485 | /* MAXPATHLEN is supposed to include the final null character, | |
1486 | * as opposed to PATH_MAX and _POSIX_PATH_MAX. */ | |
1487 | # define MAXPATHLEN (PATH_MAX+1) | |
1488 | # else | |
1489 | # define MAXPATHLEN (_POSIX_PATH_MAX+1) | |
1490 | # endif | |
1491 | # else | |
1492 | # define MAXPATHLEN (PATH_MAX+1) | |
1493 | # endif | |
0f31cffe | 1494 | # else |
b990c8b2 JH |
1495 | # ifdef _POSIX_PATH_MAX |
1496 | # define MAXPATHLEN (_POSIX_PATH_MAX+1) | |
1497 | # else | |
1498 | # define MAXPATHLEN 1024 /* Err on the large side. */ | |
1499 | # endif | |
0f31cffe GS |
1500 | # endif |
1501 | #endif | |
1502 | ||
32f822de | 1503 | /* |
dd96f567 IZ |
1504 | * USE_THREADS needs to be after unixish.h as <pthread.h> includes |
1505 | * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h> | |
32f822de GS |
1506 | * this results in many functions being undeclared which bothers C++ |
1507 | * May make sense to have threads after "*ish.h" anyway | |
1508 | */ | |
1509 | ||
1510 | #ifdef USE_THREADS | |
79d59c5f GS |
1511 | /* pending resolution of licensing issues, we avoid the erstwhile |
1512 | * atomic.h everywhere */ | |
1513 | # define EMULATE_ATOMIC_REFCOUNTS | |
1514 | ||
32f822de GS |
1515 | # ifdef FAKE_THREADS |
1516 | # include "fakethr.h" | |
1517 | # else | |
1518 | # ifdef WIN32 | |
1519 | # include <win32thread.h> | |
1520 | # else | |
dd96f567 IZ |
1521 | # ifdef OS2 |
1522 | # include "os2thread.h" | |
1523 | # else | |
7f3d1cf1 | 1524 | # ifdef I_MACH_CTHREADS |
bdd66968 | 1525 | # include <mach/cthreads.h> |
8f1f23e8 | 1526 | # if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC) |
772fe5b3 HM |
1527 | # define MUTEX_INIT_CALLS_MALLOC |
1528 | # endif | |
7f3d1cf1 BH |
1529 | typedef cthread_t perl_os_thread; |
1530 | typedef mutex_t perl_mutex; | |
1531 | typedef condition_t perl_cond; | |
1532 | typedef void * perl_key; | |
1533 | # else /* Posix threads */ | |
1f5ae88c JH |
1534 | # ifdef I_PTHREAD |
1535 | # include <pthread.h> | |
1536 | # endif | |
7f3d1cf1 BH |
1537 | typedef pthread_t perl_os_thread; |
1538 | typedef pthread_mutex_t perl_mutex; | |
1539 | typedef pthread_cond_t perl_cond; | |
1540 | typedef pthread_key_t perl_key; | |
1541 | # endif /* I_MACH_CTHREADS */ | |
dd96f567 | 1542 | # endif /* OS2 */ |
32f822de GS |
1543 | # endif /* WIN32 */ |
1544 | # endif /* FAKE_THREADS */ | |
1545 | #endif /* USE_THREADS */ | |
c5be433b GS |
1546 | |
1547 | #ifdef WIN32 | |
1548 | #include "win32.h" | |
1549 | #endif | |
1550 | ||
68dc0745 | 1551 | #ifdef VMS |
6b88bc9c | 1552 | # define STATUS_NATIVE PL_statusvalue_vms |
68dc0745 | 1553 | # define STATUS_NATIVE_EXPORT \ |
6b88bc9c | 1554 | ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) |
68dc0745 | 1555 | # define STATUS_NATIVE_SET(n) \ |
1556 | STMT_START { \ | |
6b88bc9c GS |
1557 | PL_statusvalue_vms = (n); \ |
1558 | if ((I32)PL_statusvalue_vms == -1) \ | |
3280af22 | 1559 | PL_statusvalue = -1; \ |
6b88bc9c | 1560 | else if (PL_statusvalue_vms & STS$M_SUCCESS) \ |
3280af22 | 1561 | PL_statusvalue = 0; \ |
6b88bc9c GS |
1562 | else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \ |
1563 | PL_statusvalue = 1 << 8; \ | |
68dc0745 | 1564 | else \ |
6b88bc9c | 1565 | PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \ |
68dc0745 | 1566 | } STMT_END |
3280af22 | 1567 | # define STATUS_POSIX PL_statusvalue |
68dc0745 | 1568 | # ifdef VMSISH_STATUS |
1569 | # define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX) | |
1570 | # else | |
1571 | # define STATUS_CURRENT STATUS_POSIX | |
1572 | # endif | |
1573 | # define STATUS_POSIX_SET(n) \ | |
1574 | STMT_START { \ | |
3280af22 NIS |
1575 | PL_statusvalue = (n); \ |
1576 | if (PL_statusvalue != -1) { \ | |
1577 | PL_statusvalue &= 0xFFFF; \ | |
6b88bc9c | 1578 | PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \ |
68dc0745 | 1579 | } \ |
6b88bc9c | 1580 | else PL_statusvalue_vms = -1; \ |
68dc0745 | 1581 | } STMT_END |
6b88bc9c GS |
1582 | # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1) |
1583 | # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44) | |
68dc0745 | 1584 | #else |
1585 | # define STATUS_NATIVE STATUS_POSIX | |
1586 | # define STATUS_NATIVE_EXPORT STATUS_POSIX | |
1587 | # define STATUS_NATIVE_SET STATUS_POSIX_SET | |
3280af22 | 1588 | # define STATUS_POSIX PL_statusvalue |
68dc0745 | 1589 | # define STATUS_POSIX_SET(n) \ |
1590 | STMT_START { \ | |
3280af22 NIS |
1591 | PL_statusvalue = (n); \ |
1592 | if (PL_statusvalue != -1) \ | |
1593 | PL_statusvalue &= 0xFFFF; \ | |
68dc0745 | 1594 | } STMT_END |
1595 | # define STATUS_CURRENT STATUS_POSIX | |
3280af22 NIS |
1596 | # define STATUS_ALL_SUCCESS (PL_statusvalue = 0) |
1597 | # define STATUS_ALL_FAILURE (PL_statusvalue = 1) | |
68dc0745 | 1598 | #endif |
1599 | ||
0b94c7bb GS |
1600 | #ifndef MEMBER_TO_FPTR |
1601 | #define MEMBER_TO_FPTR(name) name | |
1602 | #endif | |
1603 | ||
45bc9206 GS |
1604 | /* This defines a way to flush all output buffers. This may be a |
1605 | * performance issue, so we allow people to disable it. | |
45bc9206 GS |
1606 | */ |
1607 | #ifndef PERL_FLUSHALL_FOR_CHILD | |
767df6a1 | 1608 | # if defined(FFLUSH_NULL) || defined(USE_SFIO) |
66fe083f | 1609 | # define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL) |
767df6a1 JH |
1610 | # else |
1611 | # ifdef FFLUSH_ALL | |
1612 | # define PERL_FLUSHALL_FOR_CHILD my_fflush_all() | |
e2dbf222 | 1613 | # else |
c5be433b | 1614 | # define PERL_FLUSHALL_FOR_CHILD NOOP |
767df6a1 | 1615 | # endif |
66fe083f | 1616 | # endif |
45bc9206 GS |
1617 | #endif |
1618 | ||
651a3225 GS |
1619 | /* the traditional thread-unsafe notion of "current interpreter". |
1620 | * XXX todo: a thread-safe version that fetches it from TLS (akin to THR) | |
1621 | * needs to be defined elsewhere (conditional on pthread_getspecific() | |
1622 | * availability). */ | |
c5be433b GS |
1623 | #ifndef PERL_SET_INTERP |
1624 | # define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i)) | |
1625 | #endif | |
1626 | ||
1627 | #ifndef PERL_GET_INTERP | |
1628 | # define PERL_GET_INTERP (PL_curinterp) | |
1629 | #endif | |
1630 | ||
54aff467 GS |
1631 | #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX) |
1632 | # ifdef USE_THREADS | |
1633 | # define PERL_GET_THX THR | |
1634 | # else | |
1635 | # ifdef MULTIPLICITY | |
1636 | # define PERL_GET_THX PERL_GET_INTERP | |
1637 | # else | |
1638 | # ifdef PERL_OBJECT | |
1639 | # define PERL_GET_THX ((CPerlObj*)PERL_GET_INTERP) | |
1640 | # else | |
1641 | # define PERL_GET_THX ((void*)0) | |
1642 | # endif | |
1643 | # endif | |
1644 | # endif | |
1645 | #endif | |
1646 | ||
3fc1aec6 | 1647 | /* Some unistd.h's give a prototype for pause() even though |
1648 | HAS_PAUSE ends up undefined. This causes the #define | |
1649 | below to be rejected by the compmiler. Sigh. | |
1650 | */ | |
1651 | #ifdef HAS_PAUSE | |
1652 | #define Pause pause | |
1653 | #else | |
1654 | #define Pause() sleep((32767<<16)+32767) | |
748a9306 LW |
1655 | #endif |
1656 | ||
1657 | #ifndef IOCPARM_LEN | |
1658 | # ifdef IOCPARM_MASK | |
1659 | /* on BSDish systes we're safe */ | |
1660 | # define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK) | |
1661 | # else | |
1662 | /* otherwise guess at what's safe */ | |
1663 | # define IOCPARM_LEN(x) 256 | |
1664 | # endif | |
a0d0e21e LW |
1665 | #endif |
1666 | ||
2c2d71f5 | 1667 | #if defined(CYGWIN) |
521e0776 GS |
1668 | /* USEMYBINMODE |
1669 | * This symbol, if defined, indicates that the program should | |
1670 | * use the routine my_binmode(FILE *fp, char iotype) to insure | |
1671 | * that a file is in "binary" mode -- that is, that no translation | |
1672 | * of bytes occurs on read or write operations. | |
1673 | */ | |
1674 | # define USEMYBINMODE / **/ | |
1675 | # define my_binmode(fp, iotype) \ | |
2c2d71f5 | 1676 | (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE) |
5aabfad6 | 1677 | #endif |
1678 | ||
cea2e8a9 GS |
1679 | #ifdef UNION_ANY_DEFINITION |
1680 | UNION_ANY_DEFINITION; | |
1681 | #else | |
1682 | union any { | |
1683 | void* any_ptr; | |
1684 | I32 any_i32; | |
1685 | IV any_iv; | |
1686 | long any_long; | |
c76ac1ee GS |
1687 | void (*any_dptr) (void*); |
1688 | void (*any_dxptr) (pTHXo_ void*); | |
cea2e8a9 GS |
1689 | }; |
1690 | #endif | |
1691 | ||
1692 | #ifdef USE_THREADS | |
1693 | #define ARGSproto struct perl_thread *thr | |
1694 | #else | |
1695 | #define ARGSproto | |
1696 | #endif /* USE_THREADS */ | |
1697 | ||
0cb96387 | 1698 | typedef I32 (*filter_t) (pTHXo_ int, SV *, int); |
cea2e8a9 GS |
1699 | |
1700 | #define FILTER_READ(idx, sv, len) filter_read(idx, sv, len) | |
1701 | #define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx]) | |
1702 | #define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters)) | |
1703 | ||
2c2d71f5 JH |
1704 | #if !defined(OS2) |
1705 | # include "iperlsys.h" | |
1706 | #endif | |
378cc40b | 1707 | #include "regexp.h" |
79072805 | 1708 | #include "sv.h" |
378cc40b | 1709 | #include "util.h" |
8d063cd8 | 1710 | #include "form.h" |
79072805 LW |
1711 | #include "gv.h" |
1712 | #include "cv.h" | |
abdd5c84 | 1713 | #include "opnames.h" |
79072805 LW |
1714 | #include "op.h" |
1715 | #include "cop.h" | |
1716 | #include "av.h" | |
1717 | #include "hv.h" | |
1718 | #include "mg.h" | |
1719 | #include "scope.h" | |
4438c4b7 | 1720 | #include "warnings.h" |
a0ed51b3 | 1721 | #include "utf8.h" |
8d063cd8 | 1722 | |
7fae4e64 GS |
1723 | /* Current curly descriptor */ |
1724 | typedef struct curcur CURCUR; | |
1725 | struct curcur { | |
1726 | int parenfloor; /* how far back to strip paren data */ | |
1727 | int cur; /* how many instances of scan we've matched */ | |
1728 | int min; /* the minimal number of scans to match */ | |
1729 | int max; /* the maximal number of scans to match */ | |
1730 | int minmod; /* whether to work our way up or down */ | |
1731 | regnode * scan; /* the thing to match */ | |
1732 | regnode * next; /* what has to match after it */ | |
1733 | char * lastloc; /* where we started matching this scan */ | |
1734 | CURCUR * oldcc; /* current curly before we started this one */ | |
1735 | }; | |
1736 | ||
1737 | typedef struct _sublex_info SUBLEXINFO; | |
1738 | struct _sublex_info { | |
1739 | I32 super_state; /* lexer state to save */ | |
1740 | I32 sub_inwhat; /* "lex_inwhat" to use */ | |
1741 | OP *sub_op; /* "lex_op" to use */ | |
0244c3a4 GS |
1742 | char *super_bufptr; /* PL_bufptr that was */ |
1743 | char *super_bufend; /* PL_bufend that was */ | |
7fae4e64 GS |
1744 | }; |
1745 | ||
455ece5e | 1746 | typedef struct magic_state MGS; /* struct magic_state defined in mg.c */ |
76e3520e | 1747 | |
2c2d71f5 | 1748 | struct scan_data_t; /* Used in S_* functions in regcomp.c */ |
76e3520e GS |
1749 | |
1750 | typedef I32 CHECKPOINT; | |
76e3520e | 1751 | |
450a55e4 | 1752 | #if defined(iAPX286) || defined(M_I286) || defined(I80286) |
a687059c LW |
1753 | # define I286 |
1754 | #endif | |
1755 | ||
fe14fcc3 LW |
1756 | #if defined(htonl) && !defined(HAS_HTONL) |
1757 | #define HAS_HTONL | |
ae986130 | 1758 | #endif |
fe14fcc3 LW |
1759 | #if defined(htons) && !defined(HAS_HTONS) |
1760 | #define HAS_HTONS | |
ae986130 | 1761 | #endif |
fe14fcc3 LW |
1762 | #if defined(ntohl) && !defined(HAS_NTOHL) |
1763 | #define HAS_NTOHL | |
ae986130 | 1764 | #endif |
fe14fcc3 LW |
1765 | #if defined(ntohs) && !defined(HAS_NTOHS) |
1766 | #define HAS_NTOHS | |
ae986130 | 1767 | #endif |
fe14fcc3 | 1768 | #ifndef HAS_HTONL |
d9d8d8de | 1769 | #if (BYTEORDER & 0xffff) != 0x4321 |
fe14fcc3 LW |
1770 | #define HAS_HTONS |
1771 | #define HAS_HTONL | |
1772 | #define HAS_NTOHS | |
1773 | #define HAS_NTOHL | |
a687059c LW |
1774 | #define MYSWAP |
1775 | #define htons my_swap | |
1776 | #define htonl my_htonl | |
1777 | #define ntohs my_swap | |
1778 | #define ntohl my_ntohl | |
1779 | #endif | |
1780 | #else | |
d9d8d8de | 1781 | #if (BYTEORDER & 0xffff) == 0x4321 |
fe14fcc3 LW |
1782 | #undef HAS_HTONS |
1783 | #undef HAS_HTONL | |
1784 | #undef HAS_NTOHS | |
1785 | #undef HAS_NTOHL | |
a687059c LW |
1786 | #endif |
1787 | #endif | |
1788 | ||
988174c1 LW |
1789 | /* |
1790 | * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'. | |
1791 | * -DWS | |
1792 | */ | |
1793 | #if BYTEORDER != 0x1234 | |
1794 | # define HAS_VTOHL | |
1795 | # define HAS_VTOHS | |
1796 | # define HAS_HTOVL | |
1797 | # define HAS_HTOVS | |
c67712b2 | 1798 | # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321 |
988174c1 LW |
1799 | # define vtohl(x) ((((x)&0xFF)<<24) \ |
1800 | +(((x)>>24)&0xFF) \ | |
1801 | +(((x)&0x0000FF00)<<8) \ | |
1802 | +(((x)&0x00FF0000)>>8) ) | |
1803 | # define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF)) | |
1804 | # define htovl(x) vtohl(x) | |
1805 | # define htovs(x) vtohs(x) | |
1806 | # endif | |
1807 | /* otherwise default to functions in util.c */ | |
1808 | #endif | |
1809 | ||
0f85fab0 | 1810 | #ifdef CASTNEGFLOAT |
79072805 | 1811 | #define U_S(what) ((U16)(what)) |
0f85fab0 | 1812 | #define U_I(what) ((unsigned int)(what)) |
79072805 | 1813 | #define U_L(what) ((U32)(what)) |
0f85fab0 | 1814 | #else |
65202027 DS |
1815 | #define U_S(what) ((U16)cast_ulong((NV)(what))) |
1816 | #define U_I(what) ((unsigned int)cast_ulong((NV)(what))) | |
1817 | #define U_L(what) (cast_ulong((NV)(what))) | |
ee0007ab LW |
1818 | #endif |
1819 | ||
ed6116ce LW |
1820 | #ifdef CASTI32 |
1821 | #define I_32(what) ((I32)(what)) | |
a0d0e21e | 1822 | #define I_V(what) ((IV)(what)) |
5d94fbed | 1823 | #define U_V(what) ((UV)(what)) |
ed6116ce | 1824 | #else |
65202027 DS |
1825 | #define I_32(what) (cast_i32((NV)(what))) |
1826 | #define I_V(what) (cast_iv((NV)(what))) | |
1827 | #define U_V(what) (cast_uv((NV)(what))) | |
ed6116ce LW |
1828 | #endif |
1829 | ||
2d4389e4 JH |
1830 | /* These do not care about the fractional part, only about the range. */ |
1831 | #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX) | |
24db6c0d | 1832 | #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX) |
2d4389e4 | 1833 | |
8175356b | 1834 | /* The correct way: a Configure test where (UV)~0 is cast to NV and back. */ |
24db6c0d | 1835 | /* Believe. */ |
2d4389e4 | 1836 | #define IV_FITS_IN_NV |
24db6c0d JH |
1837 | /* Doubt. */ |
1838 | #if defined(USE_LONG_DOUBLE) && \ | |
cae7ae48 | 1839 | defined(LDBL_MANT_DIG) && IV_DIG >= LDBL_MANT_DIG |
2d4389e4 JH |
1840 | # undef IV_FITS_IN_NV |
1841 | #else | |
cae7ae48 | 1842 | # if defined(DBL_MANT_DIG) && IV_DIG >= DBL_MANT_DIG |
2d4389e4 | 1843 | # undef IV_FITS_IN_NV |
24db6c0d JH |
1844 | # else |
1845 | # if IV_DIG >= NV_DIG | |
1846 | # undef IV_FITS_IN_NV | |
1847 | # else | |
1848 | # if IVSIZE >= NVSIZE | |
1849 | # undef IV_FITS_IN_NV | |
1850 | # endif | |
1851 | # endif | |
2d4389e4 | 1852 | # endif |
81e118e0 | 1853 | #endif |
2d4389e4 | 1854 | |
25da4f38 IZ |
1855 | /* Used with UV/IV arguments: */ |
1856 | /* XXXX: need to speed it up */ | |
1857 | #define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv)) | |
1858 | #define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv)) | |
1859 | ||
352d5a3a LW |
1860 | #ifndef MAXSYSFD |
1861 | # define MAXSYSFD 2 | |
1862 | #endif | |
ee0007ab | 1863 | |
f82b3d41 | 1864 | #ifndef TMPPATH |
1865 | # define TMPPATH "/tmp/perl-eXXXXXX" | |
a0d0e21e | 1866 | #endif |
79072805 LW |
1867 | |
1868 | #ifndef __cplusplus | |
20ce7b12 GS |
1869 | Uid_t getuid (void); |
1870 | Uid_t geteuid (void); | |
1871 | Gid_t getgid (void); | |
1872 | Gid_t getegid (void); | |
79072805 | 1873 | #endif |
8d063cd8 | 1874 | |
0c30d9ec | 1875 | #ifndef Perl_debug_log |
bf49b057 GS |
1876 | # define Perl_debug_log PerlIO_stderr() |
1877 | #endif | |
1878 | ||
1879 | #ifndef Perl_error_log | |
1880 | # define Perl_error_log (PL_stderrgv \ | |
1881 | ? IoOFP(GvIOp(PL_stderrgv)) \ | |
1882 | : PerlIO_stderr()) | |
0c30d9ec | 1883 | #endif |
3967c732 JD |
1884 | |
1885 | #ifdef DEBUGGING | |
9d116dd7 | 1886 | #undef YYDEBUG |
d96024cf | 1887 | #define YYDEBUG 1 |
79072805 | 1888 | #define DEB(a) a |
3280af22 NIS |
1889 | #define DEBUG(a) if (PL_debug) a |
1890 | #define DEBUG_p(a) if (PL_debug & 1) a | |
1891 | #define DEBUG_s(a) if (PL_debug & 2) a | |
1892 | #define DEBUG_l(a) if (PL_debug & 4) a | |
1893 | #define DEBUG_t(a) if (PL_debug & 8) a | |
1894 | #define DEBUG_o(a) if (PL_debug & 16) a | |
1895 | #define DEBUG_c(a) if (PL_debug & 32) a | |
1896 | #define DEBUG_P(a) if (PL_debug & 64) a | |
0672f40e | 1897 | # if defined(PERL_OBJECT) |
c850101c JD |
1898 | # define DEBUG_m(a) if (PL_debug & 128) a |
1899 | # else | |
0b250b9e GS |
1900 | # define DEBUG_m(a) \ |
1901 | STMT_START { \ | |
1902 | if (PERL_GET_INTERP) { dTHX; if (PL_debug & 128) { a; } } \ | |
1903 | } STMT_END | |
c850101c | 1904 | # endif |
3280af22 NIS |
1905 | #define DEBUG_f(a) if (PL_debug & 256) a |
1906 | #define DEBUG_r(a) if (PL_debug & 512) a | |
1907 | #define DEBUG_x(a) if (PL_debug & 1024) a | |
1908 | #define DEBUG_u(a) if (PL_debug & 2048) a | |
1909 | #define DEBUG_L(a) if (PL_debug & 4096) a | |
1910 | #define DEBUG_H(a) if (PL_debug & 8192) a | |
1911 | #define DEBUG_X(a) if (PL_debug & 16384) a | |
1912 | #define DEBUG_D(a) if (PL_debug & 32768) a | |
8b73bbec IZ |
1913 | # ifdef USE_THREADS |
1914 | # define DEBUG_S(a) if (PL_debug & (1<<16)) a | |
1915 | # else | |
1916 | # define DEBUG_S(a) | |
1917 | # endif | |
79072805 LW |
1918 | #else |
1919 | #define DEB(a) | |
1920 | #define DEBUG(a) | |
1921 | #define DEBUG_p(a) | |
1922 | #define DEBUG_s(a) | |
1923 | #define DEBUG_l(a) | |
1924 | #define DEBUG_t(a) | |
1925 | #define DEBUG_o(a) | |
1926 | #define DEBUG_c(a) | |
1927 | #define DEBUG_P(a) | |
1928 | #define DEBUG_m(a) | |
1929 | #define DEBUG_f(a) | |
1930 | #define DEBUG_r(a) | |
1931 | #define DEBUG_x(a) | |
1932 | #define DEBUG_u(a) | |
8b73bbec | 1933 | #define DEBUG_S(a) |
79072805 LW |
1934 | #define DEBUG_H(a) |
1935 | #define DEBUG_X(a) | |
8990e307 | 1936 | #define DEBUG_D(a) |
8b73bbec | 1937 | #define DEBUG_S(a) |
8d063cd8 | 1938 | #endif |
fe14fcc3 | 1939 | #define YYMAXDEPTH 300 |
8d063cd8 | 1940 | |
a6e633de | 1941 | #ifndef assert /* <assert.h> might have been included somehow */ |
79072805 LW |
1942 | #define assert(what) DEB( { \ |
1943 | if (!(what)) { \ | |
cea2e8a9 | 1944 | Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \ |
79072805 | 1945 | __FILE__, __LINE__); \ |
cea2e8a9 | 1946 | PerlProc_exit(1); \ |
79072805 | 1947 | }}) |
a6e633de | 1948 | #endif |
8d063cd8 | 1949 | |
450a55e4 | 1950 | struct ufuncs { |
20ce7b12 GS |
1951 | I32 (*uf_val)(IV, SV*); |
1952 | I32 (*uf_set)(IV, SV*); | |
a0d0e21e | 1953 | IV uf_index; |
450a55e4 LW |
1954 | }; |
1955 | ||
fe14fcc3 | 1956 | /* Fix these up for __STDC__ */ |
68dc0745 | 1957 | #ifndef DONT_DECLARE_STD |
20ce7b12 | 1958 | char *mktemp (char*); |
37bd1396 | 1959 | #ifndef atof |
20ce7b12 | 1960 | double atof (const char*); |
a0d0e21e | 1961 | #endif |
37bd1396 | 1962 | #endif |
79072805 | 1963 | |
352d5a3a | 1964 | #ifndef STANDARD_C |
fe14fcc3 | 1965 | /* All of these are in stdlib.h or time.h for ANSI C */ |
85e6fe83 | 1966 | Time_t time(); |
8d063cd8 | 1967 | struct tm *gmtime(), *localtime(); |
092bebab | 1968 | #if defined(OEMVS) || defined(__OPEN_VM) |
9d116dd7 JH |
1969 | char *(strchr)(), *(strrchr)(); |
1970 | char *(strcpy)(), *(strcat)(); | |
1971 | #else | |
93a17b20 | 1972 | char *strchr(), *strrchr(); |
378cc40b | 1973 | char *strcpy(), *strcat(); |
9d116dd7 | 1974 | #endif |
352d5a3a | 1975 | #endif /* ! STANDARD_C */ |
8d063cd8 | 1976 | |
79072805 LW |
1977 | |
1978 | #ifdef I_MATH | |
1979 | # include <math.h> | |
1980 | #else | |
32f822de | 1981 | START_EXTERN_C |
20ce7b12 GS |
1982 | double exp (double); |
1983 | double log (double); | |
1984 | double log10 (double); | |
1985 | double sqrt (double); | |
1986 | double frexp (double,int*); | |
1987 | double ldexp (double,int); | |
1988 | double modf (double,double*); | |
1989 | double sin (double); | |
1990 | double cos (double); | |
1991 | double atan2 (double,double); | |
1992 | double pow (double,double); | |
32f822de | 1993 | END_EXTERN_C |
79072805 LW |
1994 | #endif |
1995 | ||
a0d0e21e | 1996 | #ifndef __cplusplus |
8f1f23e8 | 1997 | # if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */ |
3fc1aec6 | 1998 | char *crypt (); /* Maybe more hosts will need the unprototyped version */ |
26618a56 GS |
1999 | # else |
2000 | # if !defined(WIN32) || !defined(HAVE_DES_FCRYPT) | |
20ce7b12 | 2001 | char *crypt (const char*, const char*); |
26618a56 | 2002 | # endif /* !WIN32 && !HAVE_CRYPT_SOURCE */ |
8f1f23e8 | 2003 | # endif /* !NeXT && !__NeXT__ */ |
26618a56 GS |
2004 | # ifndef DONT_DECLARE_STD |
2005 | # ifndef getenv | |
20ce7b12 | 2006 | char *getenv (const char*); |
26618a56 | 2007 | # endif /* !getenv */ |
4d2c4e07 | 2008 | #ifndef EPOC |
20ce7b12 | 2009 | Off_t lseek (int,Off_t,int); |
4d2c4e07 | 2010 | #endif |
26618a56 | 2011 | # endif /* !DONT_DECLARE_STD */ |
20ce7b12 | 2012 | char *getlogin (void); |
26618a56 | 2013 | #endif /* !__cplusplus */ |
79072805 | 2014 | |
16d20bd9 | 2015 | #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */ |
378cc40b | 2016 | #define UNLINK unlnk |
20ce7b12 | 2017 | I32 unlnk (char*); |
8d063cd8 | 2018 | #else |
80252599 | 2019 | #define UNLINK PerlLIO_unlink |
8d063cd8 | 2020 | #endif |
a687059c | 2021 | |
fe14fcc3 | 2022 | #ifndef HAS_SETREUID |
85e6fe83 LW |
2023 | # ifdef HAS_SETRESUID |
2024 | # define setreuid(r,e) setresuid(r,e,(Uid_t)-1) | |
2025 | # define HAS_SETREUID | |
2026 | # endif | |
a687059c | 2027 | #endif |
fe14fcc3 | 2028 | #ifndef HAS_SETREGID |
85e6fe83 LW |
2029 | # ifdef HAS_SETRESGID |
2030 | # define setregid(r,e) setresgid(r,e,(Gid_t)-1) | |
2031 | # define HAS_SETREGID | |
2032 | # endif | |
a687059c | 2033 | #endif |
ee0007ab | 2034 | |
d543acb6 | 2035 | /* Sighandler_t defined in iperlsys.h */ |
ff68c719 | 2036 | |
2037 | #ifdef HAS_SIGACTION | |
2038 | typedef struct sigaction Sigsave_t; | |
2039 | #else | |
2040 | typedef Sighandler_t Sigsave_t; | |
2041 | #endif | |
2042 | ||
ee0007ab LW |
2043 | #define SCAN_DEF 0 |
2044 | #define SCAN_TR 1 | |
2045 | #define SCAN_REPL 2 | |
79072805 LW |
2046 | |
2047 | #ifdef DEBUGGING | |
4633a7c4 | 2048 | # ifndef register |
a0d0e21e LW |
2049 | # define register |
2050 | # endif | |
2051 | # define PAD_SV(po) pad_sv(po) | |
cea2e8a9 | 2052 | # define RUNOPS_DEFAULT Perl_runops_debug |
79072805 | 2053 | #else |
6b88bc9c | 2054 | # define PAD_SV(po) PL_curpad[po] |
cea2e8a9 | 2055 | # define RUNOPS_DEFAULT Perl_runops_standard |
79072805 LW |
2056 | #endif |
2057 | ||
18f739ee | 2058 | #ifdef MYMALLOC |
772fe5b3 | 2059 | # ifdef MUTEX_INIT_CALLS_MALLOC |
3541dd58 HM |
2060 | # define MALLOC_INIT \ |
2061 | STMT_START { \ | |
2062 | PL_malloc_mutex = NULL; \ | |
2063 | MUTEX_INIT(&PL_malloc_mutex); \ | |
2064 | } STMT_END | |
2065 | # define MALLOC_TERM \ | |
2066 | STMT_START { \ | |
2067 | perl_mutex tmp = PL_malloc_mutex; \ | |
2068 | PL_malloc_mutex = NULL; \ | |
2069 | MUTEX_DESTROY(&tmp); \ | |
2070 | } STMT_END | |
2071 | # else | |
2072 | # define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex) | |
2073 | # define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex) | |
2074 | # endif | |
18f739ee IZ |
2075 | #else |
2076 | # define MALLOC_INIT | |
2077 | # define MALLOC_TERM | |
2078 | #endif | |
2079 | ||
b6d9d515 | 2080 | |
0cb96387 GS |
2081 | typedef int (CPERLscope(*runops_proc_t)) (pTHX); |
2082 | typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX); | |
22c35a8c | 2083 | |
940cb80d | 2084 | /* _ (for $_) must be first in the following list (DEFSV requires it) */ |
54b9620d | 2085 | #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@" |
a863c7d1 | 2086 | |
8f1f23e8 W |
2087 | /* NeXT has problems with crt0.o globals */ |
2088 | #if defined(__DYNAMIC__) && \ | |
2089 | (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__)) | |
2090 | # if defined(NeXT) || defined(__NeXT) | |
2091 | # include <mach-o/dyld.h> | |
2092 | # define environ (*environ_pointer) | |
0c30d9ec | 2093 | EXT char *** environ_pointer; |
8f1f23e8 W |
2094 | # else |
2095 | # if defined(__APPLE__) | |
2096 | # include <crt_externs.h> /* for the env array */ | |
2097 | # define environ (*_NSGetEnviron()) | |
2098 | # endif | |
0c30d9ec | 2099 | # endif |
8f1f23e8 W |
2100 | #else |
2101 | /* VMS and some other platforms don't use the environ array */ | |
a6c40364 GS |
2102 | # if !defined(VMS) |
2103 | # if !defined(DONT_DECLARE_STD) || \ | |
2104 | (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \ | |
2105 | defined(__sgi) || \ | |
4d2c4e07 | 2106 | defined(__DGUX) || defined(EPOC) |
8f1f23e8 | 2107 | extern char ** environ; /* environment variables supplied via exec */ |
a6c40364 | 2108 | # endif |
8f1f23e8 W |
2109 | # endif |
2110 | #endif | |
79072805 | 2111 | |
73c4f7a1 GS |
2112 | START_EXTERN_C |
2113 | ||
79072805 | 2114 | /* handy constants */ |
22c35a8c | 2115 | EXTCONST char PL_warn_uninit[] |
a0d0e21e | 2116 | INIT("Use of uninitialized value"); |
22c35a8c | 2117 | EXTCONST char PL_warn_nosemi[] |
463ee0b2 | 2118 | INIT("Semicolon seems to be missing"); |
22c35a8c | 2119 | EXTCONST char PL_warn_reserved[] |
463ee0b2 | 2120 | INIT("Unquoted string \"%s\" may clash with future reserved word"); |
22c35a8c | 2121 | EXTCONST char PL_warn_nl[] |
93a17b20 | 2122 | INIT("Unsuccessful %s on filename containing newline"); |
22c35a8c | 2123 | EXTCONST char PL_no_wrongref[] |
a0d0e21e | 2124 | INIT("Can't use %s ref as %s ref"); |
22c35a8c | 2125 | EXTCONST char PL_no_symref[] |
748a9306 | 2126 | INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use"); |
22c35a8c | 2127 | EXTCONST char PL_no_usym[] |
8990e307 | 2128 | INIT("Can't use an undefined value as %s reference"); |
22c35a8c | 2129 | EXTCONST char PL_no_aelem[] |
93a17b20 | 2130 | INIT("Modification of non-creatable array value attempted, subscript %d"); |
22c35a8c | 2131 | EXTCONST char PL_no_helem[] |
93a17b20 | 2132 | INIT("Modification of non-creatable hash value attempted, subscript \"%s\""); |
22c35a8c | 2133 | EXTCONST char PL_no_modify[] |
93a17b20 | 2134 | INIT("Modification of a read-only value attempted"); |
22c35a8c | 2135 | EXTCONST char PL_no_mem[] |
93a17b20 | 2136 | INIT("Out of memory!\n"); |
22c35a8c | 2137 | EXTCONST char PL_no_security[] |
463ee0b2 | 2138 | INIT("Insecure dependency in %s%s"); |
22c35a8c | 2139 | EXTCONST char PL_no_sock_func[] |
93a17b20 | 2140 | INIT("Unsupported socket function \"%s\" called"); |
22c35a8c | 2141 | EXTCONST char PL_no_dir_func[] |
93a17b20 | 2142 | INIT("Unsupported directory function \"%s\" called"); |
22c35a8c | 2143 | EXTCONST char PL_no_func[] |
93a17b20 | 2144 | INIT("The %s function is unimplemented"); |
22c35a8c | 2145 | EXTCONST char PL_no_myglob[] |
748a9306 | 2146 | INIT("\"my\" variable %s can't be in a package"); |
93a17b20 | 2147 | |
7575fa06 | 2148 | EXTCONST char PL_uuemap[65] |
80252599 GS |
2149 | INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"); |
2150 | ||
2151 | ||
79072805 | 2152 | #ifdef DOINIT |
22c35a8c GS |
2153 | EXT char *PL_sig_name[] = { SIG_NAME }; |
2154 | EXT int PL_sig_num[] = { SIG_NUM }; | |
2155 | EXT SV * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)]; | |
2156 | EXT SV * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)]; | |
79072805 | 2157 | #else |
22c35a8c GS |
2158 | EXT char *PL_sig_name[]; |
2159 | EXT int PL_sig_num[]; | |
2160 | EXT SV * PL_psig_ptr[]; | |
2161 | EXT SV * PL_psig_name[]; | |
79072805 LW |
2162 | #endif |
2163 | ||
bbce6d69 | 2164 | /* fast case folding tables */ |
2165 | ||
79072805 | 2166 | #ifdef DOINIT |
9d116dd7 | 2167 | #ifdef EBCDIC |
22c35a8c | 2168 | EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */ |
9d116dd7 JH |
2169 | 0, 1, 2, 3, 4, 5, 6, 7, |
2170 | 8, 9, 10, 11, 12, 13, 14, 15, | |
2171 | 16, 17, 18, 19, 20, 21, 22, 23, | |
2172 | 24, 25, 26, 27, 28, 29, 30, 31, | |
2173 | 32, 33, 34, 35, 36, 37, 38, 39, | |
2174 | 40, 41, 42, 43, 44, 45, 46, 47, | |
2175 | 48, 49, 50, 51, 52, 53, 54, 55, | |
2176 | 56, 57, 58, 59, 60, 61, 62, 63, | |
2177 | 64, 65, 66, 67, 68, 69, 70, 71, | |
2178 | 72, 73, 74, 75, 76, 77, 78, 79, | |
2179 | 80, 81, 82, 83, 84, 85, 86, 87, | |
2180 | 88, 89, 90, 91, 92, 93, 94, 95, | |
2181 | 96, 97, 98, 99, 100, 101, 102, 103, | |
2182 | 104, 105, 106, 107, 108, 109, 110, 111, | |
2183 | 112, 113, 114, 115, 116, 117, 118, 119, | |
2184 | 120, 121, 122, 123, 124, 125, 126, 127, | |
2185 | 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
2186 | 'H', 'I', 138, 139, 140, 141, 142, 143, | |
2187 | 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P', | |
2188 | 'Q', 'R', 154, 155, 156, 157, 158, 159, | |
2189 | 160, 161, 'S', 'T', 'U', 'V', 'W', 'X', | |
2190 | 'Y', 'Z', 170, 171, 172, 173, 174, 175, | |
2191 | 176, 177, 178, 179, 180, 181, 182, 183, | |
2192 | 184, 185, 186, 187, 188, 189, 190, 191, | |
2193 | 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
2194 | 'h', 'i', 202, 203, 204, 205, 206, 207, | |
2195 | 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p', | |
2196 | 'q', 'r', 218, 219, 220, 221, 222, 223, | |
2197 | 224, 225, 's', 't', 'u', 'v', 'w', 'x', | |
2198 | 'y', 'z', 234, 235, 236, 237, 238, 239, | |
2199 | 240, 241, 242, 243, 244, 245, 246, 247, | |
2200 | 248, 249, 250, 251, 252, 253, 254, 255 | |
2201 | }; | |
2202 | #else /* ascii rather than ebcdic */ | |
22c35a8c | 2203 | EXTCONST unsigned char PL_fold[] = { |
79072805 LW |
2204 | 0, 1, 2, 3, 4, 5, 6, 7, |
2205 | 8, 9, 10, 11, 12, 13, 14, 15, | |
2206 | 16, 17, 18, 19, 20, 21, 22, 23, | |
2207 | 24, 25, 26, 27, 28, 29, 30, 31, | |
2208 | 32, 33, 34, 35, 36, 37, 38, 39, | |
2209 | 40, 41, 42, 43, 44, 45, 46, 47, | |
2210 | 48, 49, 50, 51, 52, 53, 54, 55, | |
2211 | 56, 57, 58, 59, 60, 61, 62, 63, | |
2212 | 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
2213 | 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
2214 | 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', | |
2215 | 'x', 'y', 'z', 91, 92, 93, 94, 95, | |
2216 | 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
2217 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | |
2218 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | |
2219 | 'X', 'Y', 'Z', 123, 124, 125, 126, 127, | |
2220 | 128, 129, 130, 131, 132, 133, 134, 135, | |
2221 | 136, 137, 138, 139, 140, 141, 142, 143, | |
2222 | 144, 145, 146, 147, 148, 149, 150, 151, | |
2223 | 152, 153, 154, 155, 156, 157, 158, 159, | |
2224 | 160, 161, 162, 163, 164, 165, 166, 167, | |
2225 | 168, 169, 170, 171, 172, 173, 174, 175, | |
2226 | 176, 177, 178, 179, 180, 181, 182, 183, | |
2227 | 184, 185, 186, 187, 188, 189, 190, 191, | |
2228 | 192, 193, 194, 195, 196, 197, 198, 199, | |
2229 | 200, 201, 202, 203, 204, 205, 206, 207, | |
2230 | 208, 209, 210, 211, 212, 213, 214, 215, | |
2231 | 216, 217, 218, 219, 220, 221, 222, 223, | |
2232 | 224, 225, 226, 227, 228, 229, 230, 231, | |
2233 | 232, 233, 234, 235, 236, 237, 238, 239, | |
2234 | 240, 241, 242, 243, 244, 245, 246, 247, | |
2235 | 248, 249, 250, 251, 252, 253, 254, 255 | |
2236 | }; | |
9d116dd7 | 2237 | #endif /* !EBCDIC */ |
79072805 | 2238 | #else |
22c35a8c | 2239 | EXTCONST unsigned char PL_fold[]; |
79072805 LW |
2240 | #endif |
2241 | ||
2242 | #ifdef DOINIT | |
22c35a8c | 2243 | EXT unsigned char PL_fold_locale[] = { |
79072805 LW |
2244 | 0, 1, 2, 3, 4, 5, 6, 7, |
2245 | 8, 9, 10, 11, 12, 13, 14, 15, | |
2246 | 16, 17, 18, 19, 20, 21, 22, 23, | |
2247 | 24, 25, 26, 27, 28, 29, 30, 31, | |
2248 | 32, 33, 34, 35, 36, 37, 38, 39, | |
2249 | 40, 41, 42, 43, 44, 45, 46, 47, | |
2250 | 48, 49, 50, 51, 52, 53, 54, 55, | |
2251 | 56, 57, 58, 59, 60, 61, 62, 63, | |
2252 | 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
2253 | 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
2254 | 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', | |
2255 | 'x', 'y', 'z', 91, 92, 93, 94, 95, | |
2256 | 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
2257 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | |
2258 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | |
2259 | 'X', 'Y', 'Z', 123, 124, 125, 126, 127, | |
2260 | 128, 129, 130, 131, 132, 133, 134, 135, | |
2261 | 136, 137, 138, 139, 140, 141, 142, 143, | |
2262 | 144, 145, 146, 147, 148, 149, 150, 151, | |
2263 | 152, 153, 154, 155, 156, 157, 158, 159, | |
2264 | 160, 161, 162, 163, 164, 165, 166, 167, | |
2265 | 168, 169, 170, 171, 172, 173, 174, 175, | |
2266 | 176, 177, 178, 179, 180, 181, 182, 183, | |
2267 | 184, 185, 186, 187, 188, 189, 190, 191, | |
2268 | 192, 193, 194, 195, 196, 197, 198, 199, | |
2269 | 200, 201, 202, 203, 204, 205, 206, 207, | |
2270 | 208, 209, 210, 211, 212, 213, 214, 215, | |
2271 | 216, 217, 218, 219, 220, 221, 222, 223, | |
2272 | 224, 225, 226, 227, 228, 229, 230, 231, | |
2273 | 232, 233, 234, 235, 236, 237, 238, 239, | |
2274 | 240, 241, 242, 243, 244, 245, 246, 247, | |
2275 | 248, 249, 250, 251, 252, 253, 254, 255 | |
2276 | }; | |
2277 | #else | |
22c35a8c | 2278 | EXT unsigned char PL_fold_locale[]; |
79072805 LW |
2279 | #endif |
2280 | ||
2281 | #ifdef DOINIT | |
9d116dd7 | 2282 | #ifdef EBCDIC |
22c35a8c | 2283 | EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */ |
9d116dd7 JH |
2284 | 1, 2, 84, 151, 154, 155, 156, 157, |
2285 | 165, 246, 250, 3, 158, 7, 18, 29, | |
2286 | 40, 51, 62, 73, 85, 96, 107, 118, | |
2287 | 129, 140, 147, 148, 149, 150, 152, 153, | |
2288 | 255, 6, 8, 9, 10, 11, 12, 13, | |
2289 | 14, 15, 24, 25, 26, 27, 28, 226, | |
2290 | 29, 30, 31, 32, 33, 43, 44, 45, | |
2291 | 46, 47, 48, 49, 50, 76, 77, 78, | |
2292 | 79, 80, 81, 82, 83, 84, 85, 86, | |
2293 | 87, 94, 95, 234, 181, 233, 187, 190, | |
2294 | 180, 96, 97, 98, 99, 100, 101, 102, | |
2295 | 104, 112, 182, 174, 236, 232, 229, 103, | |
2296 | 228, 226, 114, 115, 116, 117, 118, 119, | |
2297 | 120, 121, 122, 235, 176, 230, 194, 162, | |
2298 | 130, 131, 132, 133, 134, 135, 136, 137, | |
2299 | 138, 139, 201, 205, 163, 217, 220, 224, | |
2300 | 5, 248, 227, 244, 242, 255, 241, 231, | |
2301 | 240, 253, 16, 197, 19, 20, 21, 187, | |
2302 | 23, 169, 210, 245, 237, 249, 247, 239, | |
2303 | 168, 252, 34, 196, 36, 37, 38, 39, | |
2304 | 41, 42, 251, 254, 238, 223, 221, 213, | |
2305 | 225, 177, 52, 53, 54, 55, 56, 57, | |
2306 | 58, 59, 60, 61, 63, 64, 65, 66, | |
2307 | 67, 68, 69, 70, 71, 72, 74, 75, | |
2308 | 205, 208, 186, 202, 200, 218, 198, 179, | |
2309 | 178, 214, 88, 89, 90, 91, 92, 93, | |
2310 | 217, 166, 170, 207, 199, 209, 206, 204, | |
2311 | 160, 212, 105, 106, 108, 109, 110, 111, | |
2312 | 203, 113, 216, 215, 192, 175, 193, 243, | |
2313 | 172, 161, 123, 124, 125, 126, 127, 128, | |
2314 | 222, 219, 211, 195, 188, 193, 185, 184, | |
2315 | 191, 183, 141, 142, 143, 144, 145, 146 | |
2316 | }; | |
2317 | #else /* ascii rather than ebcdic */ | |
22c35a8c | 2318 | EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */ |
79072805 LW |
2319 | 1, 2, 84, 151, 154, 155, 156, 157, |
2320 | 165, 246, 250, 3, 158, 7, 18, 29, | |
2321 | 40, 51, 62, 73, 85, 96, 107, 118, | |
2322 | 129, 140, 147, 148, 149, 150, 152, 153, | |
2323 | 255, 182, 224, 205, 174, 176, 180, 217, | |
2324 | 233, 232, 236, 187, 235, 228, 234, 226, | |
2325 | 222, 219, 211, 195, 188, 193, 185, 184, | |
2326 | 191, 183, 201, 229, 181, 220, 194, 162, | |
2327 | 163, 208, 186, 202, 200, 218, 198, 179, | |
2328 | 178, 214, 166, 170, 207, 199, 209, 206, | |
2329 | 204, 160, 212, 216, 215, 192, 175, 173, | |
2330 | 243, 172, 161, 190, 203, 189, 164, 230, | |
2331 | 167, 248, 227, 244, 242, 255, 241, 231, | |
2332 | 240, 253, 169, 210, 245, 237, 249, 247, | |
2333 | 239, 168, 252, 251, 254, 238, 223, 221, | |
2334 | 213, 225, 177, 197, 171, 196, 159, 4, | |
2335 | 5, 6, 8, 9, 10, 11, 12, 13, | |
2336 | 14, 15, 16, 17, 19, 20, 21, 22, | |
2337 | 23, 24, 25, 26, 27, 28, 30, 31, | |
2338 | 32, 33, 34, 35, 36, 37, 38, 39, | |
2339 | 41, 42, 43, 44, 45, 46, 47, 48, | |
2340 | 49, 50, 52, 53, 54, 55, 56, 57, | |
2341 | 58, 59, 60, 61, 63, 64, 65, 66, | |
2342 | 67, 68, 69, 70, 71, 72, 74, 75, | |
2343 | 76, 77, 78, 79, 80, 81, 82, 83, | |
2344 | 86, 87, 88, 89, 90, 91, 92, 93, | |
2345 | 94, 95, 97, 98, 99, 100, 101, 102, | |
2346 | 103, 104, 105, 106, 108, 109, 110, 111, | |
2347 | 112, 113, 114, 115, 116, 117, 119, 120, | |
2348 | 121, 122, 123, 124, 125, 126, 127, 128, | |
2349 | 130, 131, 132, 133, 134, 135, 136, 137, | |
2350 | 138, 139, 141, 142, 143, 144, 145, 146 | |
2351 | }; | |
9d116dd7 | 2352 | #endif |
79072805 | 2353 | #else |
22c35a8c | 2354 | EXTCONST unsigned char PL_freq[]; |
79072805 LW |
2355 | #endif |
2356 | ||
8990e307 LW |
2357 | #ifdef DEBUGGING |
2358 | #ifdef DOINIT | |
22c35a8c | 2359 | EXTCONST char* PL_block_type[] = { |
8990e307 LW |
2360 | "NULL", |
2361 | "SUB", | |
2362 | "EVAL", | |
2363 | "LOOP", | |
2364 | "SUBST", | |
2365 | "BLOCK", | |
2366 | }; | |
2367 | #else | |
22c35a8c | 2368 | EXTCONST char* PL_block_type[]; |
8990e307 LW |
2369 | #endif |
2370 | #endif | |
2371 | ||
73c4f7a1 GS |
2372 | END_EXTERN_C |
2373 | ||
79072805 LW |
2374 | /*****************************************************************************/ |
2375 | /* This lexer/parser stuff is currently global since yacc is hard to reenter */ | |
2376 | /*****************************************************************************/ | |
8990e307 | 2377 | /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */ |
79072805 | 2378 | |
a0d0e21e LW |
2379 | #include "perly.h" |
2380 | ||
fb73857a | 2381 | #define LEX_NOTPARSING 11 /* borrowed from toke.c */ |
2382 | ||
79072805 LW |
2383 | typedef enum { |
2384 | XOPERATOR, | |
2385 | XTERM, | |
79072805 | 2386 | XREF, |
8990e307 | 2387 | XSTATE, |
a0d0e21e | 2388 | XBLOCK, |
09bef843 SB |
2389 | XATTRBLOCK, |
2390 | XATTRTERM, | |
a0d0e21e | 2391 | XTERMBLOCK |
79072805 LW |
2392 | } expectation; |
2393 | ||
dc9e4912 GS |
2394 | enum { /* pass one of these to get_vtbl */ |
2395 | want_vtbl_sv, | |
2396 | want_vtbl_env, | |
2397 | want_vtbl_envelem, | |
2398 | want_vtbl_sig, | |
2399 | want_vtbl_sigelem, | |
2400 | want_vtbl_pack, | |
2401 | want_vtbl_packelem, | |
2402 | want_vtbl_dbline, | |
2403 | want_vtbl_isa, | |
2404 | want_vtbl_isaelem, | |
2405 | want_vtbl_arylen, | |
2406 | want_vtbl_glob, | |
2407 | want_vtbl_mglob, | |
2408 | want_vtbl_nkeys, | |
2409 | want_vtbl_taint, | |
2410 | want_vtbl_substr, | |
2411 | want_vtbl_vec, | |
2412 | want_vtbl_pos, | |
2413 | want_vtbl_bm, | |
2414 | want_vtbl_fm, | |
2415 | want_vtbl_uvar, | |
2416 | want_vtbl_defelem, | |
2417 | want_vtbl_regexp, | |
2418 | want_vtbl_collxfrm, | |
2419 | want_vtbl_amagic, | |
2420 | want_vtbl_amagicelem, | |
2421 | #ifdef USE_THREADS | |
2422 | want_vtbl_mutex, | |
2423 | #endif | |
2424 | want_vtbl_regdata, | |
810b8aa5 GS |
2425 | want_vtbl_regdatum, |
2426 | want_vtbl_backref | |
dc9e4912 GS |
2427 | }; |
2428 | ||
85e6fe83 LW |
2429 | /* Note: the lowest 8 bits are reserved for |
2430 | stuffing into op->op_private */ | |
f3aa04c2 | 2431 | #define HINT_PRIVATE_MASK 0x000000ff |
85e6fe83 LW |
2432 | #define HINT_INTEGER 0x00000001 |
2433 | #define HINT_STRICT_REFS 0x00000002 | |
a0ed51b3 LW |
2434 | /* #define HINT_notused4 0x00000004 */ |
2435 | #define HINT_UTF8 0x00000008 | |
2436 | /* #define HINT_notused10 0x00000010 */ | |
2437 | /* Note: 20,40,80 used for NATIVE_HINTS */ | |
85e6fe83 LW |
2438 | |
2439 | #define HINT_BLOCK_SCOPE 0x00000100 | |
2440 | #define HINT_STRICT_SUBS 0x00000200 | |
2441 | #define HINT_STRICT_VARS 0x00000400 | |
bbce6d69 | 2442 | #define HINT_LOCALE 0x00000800 |
85e6fe83 | 2443 | |
b3ac6de7 IZ |
2444 | #define HINT_NEW_INTEGER 0x00001000 |
2445 | #define HINT_NEW_FLOAT 0x00002000 | |
2446 | #define HINT_NEW_BINARY 0x00004000 | |
2447 | #define HINT_NEW_STRING 0x00008000 | |
2448 | #define HINT_NEW_RE 0x00010000 | |
2449 | #define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */ | |
2450 | ||
b3eb6a9b | 2451 | #define HINT_RE_TAINT 0x00100000 |
e4d48cc9 | 2452 | #define HINT_RE_EVAL 0x00200000 |
b3eb6a9b | 2453 | |
5ff3f7a4 GS |
2454 | #define HINT_FILETEST_ACCESS 0x00400000 |
2455 | ||
d4cce5f1 NIS |
2456 | /* Various states of an input record separator SV (rs, nrs) */ |
2457 | #define RsSNARF(sv) (! SvOK(sv)) | |
af7d13df MG |
2458 | #define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv))) |
2459 | #define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv)) | |
5b2b9c68 | 2460 | #define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0)) |
79072805 | 2461 | |
56953603 | 2462 | /* Enable variables which are pointers to functions */ |
0cb96387 GS |
2463 | typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm); |
2464 | typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg, | |
2465 | char* strend, char* strbeg, I32 minend, | |
2466 | SV* screamer, void* data, U32 flags); | |
f722798b IZ |
2467 | typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv, |
2468 | char *strpos, char *strend, | |
2469 | U32 flags, | |
2470 | struct re_scream_pos_data_s *d); | |
2471 | typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog); | |
2472 | typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r); | |
56953603 | 2473 | |
51371543 GS |
2474 | #ifdef USE_PURE_BISON |
2475 | int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp); | |
2476 | #endif | |
2477 | ||
c76ac1ee | 2478 | typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*); |
51371543 GS |
2479 | typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*); |
2480 | typedef void (*SVFUNC_t) (pTHXo_ SV*); | |
2481 | typedef I32 (*SVCOMPARE_t) (pTHXo_ SV*, SV*); | |
2482 | typedef void (*XSINIT_t) (pTHXo); | |
2483 | typedef void (*ATEXIT_t) (pTHXo_ void*); | |
2484 | typedef void (*XSUBADDR_t) (pTHXo_ CV *); | |
15e52e56 | 2485 | |
22239a37 NIS |
2486 | /* Set up PERLVAR macros for populating structs */ |
2487 | #define PERLVAR(var,type) type var; | |
51371543 | 2488 | #define PERLVARA(var,n,type) type var[n]; |
22239a37 | 2489 | #define PERLVARI(var,type,init) type var; |
3fe35a81 | 2490 | #define PERLVARIC(var,type,init) type var; |
22239a37 | 2491 | |
58a50f62 GS |
2492 | /* Interpreter exitlist entry */ |
2493 | typedef struct exitlistentry { | |
0cb96387 | 2494 | void (*fn) (pTHXo_ void*); |
58a50f62 GS |
2495 | void *ptr; |
2496 | } PerlExitListEntry; | |
2497 | ||
76e3520e | 2498 | #ifdef PERL_OBJECT |
0cb96387 GS |
2499 | #undef perl_alloc |
2500 | #define perl_alloc Perl_alloc | |
2501 | CPerlObj* Perl_alloc (IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*); | |
76e3520e | 2502 | |
76e3520e GS |
2503 | #undef EXT |
2504 | #define EXT | |
2505 | #undef EXTCONST | |
2506 | #define EXTCONST | |
2507 | #undef INIT | |
2508 | #define INIT(x) | |
2509 | ||
2510 | class CPerlObj { | |
2511 | public: | |
2512 | CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*); | |
2513 | void Init(void); | |
2514 | void* operator new(size_t nSize, IPerlMem *pvtbl); | |
3075ddba | 2515 | static void operator delete(void* pPerl, IPerlMem *pvtbl); |
76e3520e GS |
2516 | #endif /* PERL_OBJECT */ |
2517 | ||
22239a37 NIS |
2518 | #ifdef PERL_GLOBAL_STRUCT |
2519 | struct perl_vars { | |
2520 | #include "perlvars.h" | |
2521 | }; | |
2522 | ||
2523 | #ifdef PERL_CORE | |
533c011a NIS |
2524 | EXT struct perl_vars PL_Vars; |
2525 | EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars); | |
2526 | #else /* PERL_CORE */ | |
d493b042 | 2527 | #if !defined(__GNUC__) || !defined(WIN32) |
22239a37 | 2528 | EXT |
533c011a NIS |
2529 | #endif /* WIN32 */ |
2530 | struct perl_vars *PL_VarsPtr; | |
d543acb6 | 2531 | #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX)))) |
533c011a | 2532 | #endif /* PERL_CORE */ |
22239a37 NIS |
2533 | #endif /* PERL_GLOBAL_STRUCT */ |
2534 | ||
8990e307 | 2535 | #ifdef MULTIPLICITY |
d4cce5f1 NIS |
2536 | /* If we have multiple interpreters define a struct |
2537 | holding variables which must be per-interpreter | |
2538 | If we don't have threads anything that would have | |
2539 | be per-thread is per-interpreter. | |
2540 | */ | |
2541 | ||
79072805 | 2542 | struct interpreter { |
54aff467 GS |
2543 | #ifndef USE_THREADS |
2544 | # include "thrdvar.h" | |
2545 | #endif | |
d4cce5f1 | 2546 | #include "intrpvar.h" |
49f531da | 2547 | }; |
d4cce5f1 | 2548 | |
79072805 | 2549 | #else |
49f531da NIS |
2550 | struct interpreter { |
2551 | char broiled; | |
2552 | }; | |
79072805 LW |
2553 | #endif |
2554 | ||
d4cce5f1 NIS |
2555 | #ifdef USE_THREADS |
2556 | /* If we have threads define a struct with all the variables | |
2557 | * that have to be per-thread | |
49f531da | 2558 | */ |
8023c3ce | 2559 | |
79072805 | 2560 | |
49f531da | 2561 | struct perl_thread { |
49f531da | 2562 | #include "thrdvar.h" |
79072805 | 2563 | }; |
d4cce5f1 | 2564 | |
22fae026 TM |
2565 | typedef struct perl_thread *Thread; |
2566 | ||
2567 | #else | |
2568 | typedef void *Thread; | |
22239a37 NIS |
2569 | #endif |
2570 | ||
2571 | /* Done with PERLVAR macros for now ... */ | |
d4cce5f1 | 2572 | #undef PERLVAR |
51371543 | 2573 | #undef PERLVARA |
d4cce5f1 | 2574 | #undef PERLVARI |
3fe35a81 | 2575 | #undef PERLVARIC |
79072805 | 2576 | |
22239a37 | 2577 | #include "thread.h" |
79072805 | 2578 | #include "pp.h" |
864dbfa3 GS |
2579 | |
2580 | #ifndef PERL_CALLCONV | |
2581 | # define PERL_CALLCONV | |
2582 | #endif | |
2583 | ||
2584 | #ifdef PERL_OBJECT | |
2585 | # define VIRTUAL virtual PERL_CALLCONV | |
2586 | #else | |
2587 | # define VIRTUAL PERL_CALLCONV | |
0cb96387 | 2588 | /*START_EXTERN_C*/ |
864dbfa3 GS |
2589 | #endif |
2590 | ||
2591 | #ifndef NEXT30_NO_ATTRIBUTE | |
2592 | # ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */ | |
2593 | # ifdef __attribute__ /* Avoid possible redefinition errors */ | |
2594 | # undef __attribute__ | |
2595 | # endif | |
2596 | # define __attribute__(attr) | |
2597 | # endif | |
2598 | #endif | |
2599 | ||
0cb96387 GS |
2600 | #ifdef PERL_OBJECT |
2601 | #define PERL_DECL_PROT | |
2602 | #define perl_alloc Perl_alloc | |
2603 | #endif | |
864dbfa3 | 2604 | |
79072805 LW |
2605 | #include "proto.h" |
2606 | ||
0cb96387 GS |
2607 | #undef PERL_CKDEF |
2608 | #undef PERL_PPDEF | |
2609 | #define PERL_CKDEF(s) OP *s (pTHX_ OP *o); | |
2610 | #define PERL_PPDEF(s) OP *s (pTHX); | |
2611 | #ifdef PERL_OBJECT | |
2612 | public: | |
2613 | #endif | |
2614 | ||
864dbfa3 GS |
2615 | #include "pp_proto.h" |
2616 | ||
0cb96387 | 2617 | #ifdef PERL_OBJECT |
0cb96387 GS |
2618 | VIRTUAL int CPerlObj::do_aspawn (void *vreally, void **vmark, void **vsp); |
2619 | #undef PERL_DECL_PROT | |
2620 | #else | |
2621 | /*END_EXTERN_C*/ | |
2622 | #endif | |
2623 | ||
864dbfa3 | 2624 | #ifndef PERL_OBJECT |
0cb96387 GS |
2625 | /* this has structure inits, so it cannot be included before here */ |
2626 | # include "opcode.h" | |
864dbfa3 GS |
2627 | #endif |
2628 | ||
d4cce5f1 NIS |
2629 | /* The following must follow proto.h as #defines mess up syntax */ |
2630 | ||
22c35a8c GS |
2631 | #if !defined(PERL_FOR_X2P) |
2632 | # include "embedvar.h" | |
2633 | #endif | |
d4cce5f1 NIS |
2634 | |
2635 | /* Now include all the 'global' variables | |
2636 | * If we don't have threads or multiple interpreters | |
2637 | * these include variables that would have been their struct-s | |
2638 | */ | |
533c011a NIS |
2639 | |
2640 | #define PERLVAR(var,type) EXT type PL_##var; | |
51371543 | 2641 | #define PERLVARA(var,n,type) EXT type PL_##var[n]; |
533c011a NIS |
2642 | #define PERLVARI(var,type,init) EXT type PL_##var INIT(init); |
2643 | #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init); | |
d4cce5f1 | 2644 | |
d4cce5f1 | 2645 | #ifndef MULTIPLICITY |
d4cce5f1 | 2646 | |
066ef5b5 GS |
2647 | # include "intrpvar.h" |
2648 | # ifndef USE_THREADS | |
2649 | # include "thrdvar.h" | |
2650 | # endif | |
d4cce5f1 | 2651 | |
22239a37 NIS |
2652 | #endif |
2653 | ||
76e3520e | 2654 | #ifdef PERL_OBJECT |
d0c1b099 GS |
2655 | /* |
2656 | * The following is a buffer where new variables must | |
2657 | * be defined to maintain binary compatibility with PERL_OBJECT | |
2658 | * for 5.005 | |
2659 | */ | |
51371543 | 2660 | PERLVARA(object_compatibility,30, char) |
76e3520e GS |
2661 | }; |
2662 | ||
c5be433b | 2663 | |
22c35a8c GS |
2664 | # include "embed.h" |
2665 | # if defined(WIN32) && !defined(WIN32IO_IS_STDIO) | |
2666 | # define errno CPerlObj::ErrorNo() | |
2667 | # endif | |
76e3520e | 2668 | |
22c35a8c GS |
2669 | # ifdef DOINIT |
2670 | # include "INTERN.h" | |
2671 | # else | |
2672 | # include "EXTERN.h" | |
2673 | # endif | |
2674 | ||
2675 | /* this has structure inits, so it cannot be included before here */ | |
2676 | # include "opcode.h" | |
2677 | ||
2678 | #endif /* PERL_OBJECT */ | |
22239a37 | 2679 | |
c5be433b GS |
2680 | #ifndef PERL_GLOBAL_STRUCT |
2681 | START_EXTERN_C | |
2682 | ||
2683 | # include "perlvars.h" | |
2684 | ||
2685 | END_EXTERN_C | |
2686 | #endif | |
2687 | ||
d4cce5f1 | 2688 | #undef PERLVAR |
51371543 | 2689 | #undef PERLVARA |
d4cce5f1 | 2690 | #undef PERLVARI |
0f3f18a6 | 2691 | #undef PERLVARIC |
79072805 | 2692 | |
73c4f7a1 GS |
2693 | START_EXTERN_C |
2694 | ||
79072805 | 2695 | #ifdef DOINIT |
bbce6d69 | 2696 | |
2b260de0 GS |
2697 | EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get), |
2698 | MEMBER_TO_FPTR(Perl_magic_set), | |
2699 | MEMBER_TO_FPTR(Perl_magic_len), | |
463ee0b2 | 2700 | 0, 0}; |
2b260de0 GS |
2701 | EXT MGVTBL PL_vtbl_env = {0, MEMBER_TO_FPTR(Perl_magic_set_all_env), |
2702 | 0, MEMBER_TO_FPTR(Perl_magic_clear_all_env), | |
66b1d557 | 2703 | 0}; |
2b260de0 GS |
2704 | EXT MGVTBL PL_vtbl_envelem = {0, MEMBER_TO_FPTR(Perl_magic_setenv), |
2705 | 0, MEMBER_TO_FPTR(Perl_magic_clearenv), | |
85e6fe83 | 2706 | 0}; |
22c35a8c | 2707 | EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0}; |
2b260de0 GS |
2708 | EXT MGVTBL PL_vtbl_sigelem = {MEMBER_TO_FPTR(Perl_magic_getsig), |
2709 | MEMBER_TO_FPTR(Perl_magic_setsig), | |
2710 | 0, MEMBER_TO_FPTR(Perl_magic_clearsig), | |
0c30d9ec | 2711 | 0}; |
2b260de0 | 2712 | EXT MGVTBL PL_vtbl_pack = {0, 0, MEMBER_TO_FPTR(Perl_magic_sizepack), MEMBER_TO_FPTR(Perl_magic_wipepack), |
a0d0e21e | 2713 | 0}; |
2b260de0 GS |
2714 | EXT MGVTBL PL_vtbl_packelem = {MEMBER_TO_FPTR(Perl_magic_getpack), |
2715 | MEMBER_TO_FPTR(Perl_magic_setpack), | |
2716 | 0, MEMBER_TO_FPTR(Perl_magic_clearpack), | |
463ee0b2 | 2717 | 0}; |
2b260de0 | 2718 | EXT MGVTBL PL_vtbl_dbline = {0, MEMBER_TO_FPTR(Perl_magic_setdbline), |
463ee0b2 | 2719 | 0, 0, 0}; |
2b260de0 GS |
2720 | EXT MGVTBL PL_vtbl_isa = {0, MEMBER_TO_FPTR(Perl_magic_setisa), |
2721 | 0, MEMBER_TO_FPTR(Perl_magic_setisa), | |
fb73857a | 2722 | 0}; |
2b260de0 | 2723 | EXT MGVTBL PL_vtbl_isaelem = {0, MEMBER_TO_FPTR(Perl_magic_setisa), |
463ee0b2 | 2724 | 0, 0, 0}; |
2b260de0 GS |
2725 | EXT MGVTBL PL_vtbl_arylen = {MEMBER_TO_FPTR(Perl_magic_getarylen), |
2726 | MEMBER_TO_FPTR(Perl_magic_setarylen), | |
463ee0b2 | 2727 | 0, 0, 0}; |
2b260de0 GS |
2728 | EXT MGVTBL PL_vtbl_glob = {MEMBER_TO_FPTR(Perl_magic_getglob), |
2729 | MEMBER_TO_FPTR(Perl_magic_setglob), | |
463ee0b2 | 2730 | 0, 0, 0}; |
2b260de0 | 2731 | EXT MGVTBL PL_vtbl_mglob = {0, MEMBER_TO_FPTR(Perl_magic_setmglob), |
463ee0b2 | 2732 | 0, 0, 0}; |
2b260de0 GS |
2733 | EXT MGVTBL PL_vtbl_nkeys = {MEMBER_TO_FPTR(Perl_magic_getnkeys), |
2734 | MEMBER_TO_FPTR(Perl_magic_setnkeys), | |
99abf803 | 2735 | 0, 0, 0}; |
2b260de0 | 2736 | EXT MGVTBL PL_vtbl_taint = {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint), |
463ee0b2 | 2737 | 0, 0, 0}; |
2b260de0 | 2738 | EXT MGVTBL PL_vtbl_substr = {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr), |
463ee0b2 | 2739 | 0, 0, 0}; |
2b260de0 GS |
2740 | EXT MGVTBL PL_vtbl_vec = {MEMBER_TO_FPTR(Perl_magic_getvec), |
2741 | MEMBER_TO_FPTR(Perl_magic_setvec), | |
463ee0b2 | 2742 | 0, 0, 0}; |
2b260de0 GS |
2743 | EXT MGVTBL PL_vtbl_pos = {MEMBER_TO_FPTR(Perl_magic_getpos), |
2744 | MEMBER_TO_FPTR(Perl_magic_setpos), | |
a0d0e21e | 2745 | 0, 0, 0}; |
2b260de0 | 2746 | EXT MGVTBL PL_vtbl_bm = {0, MEMBER_TO_FPTR(Perl_magic_setbm), |
463ee0b2 | 2747 | 0, 0, 0}; |
2b260de0 | 2748 | EXT MGVTBL PL_vtbl_fm = {0, MEMBER_TO_FPTR(Perl_magic_setfm), |
55497cff | 2749 | 0, 0, 0}; |
2b260de0 GS |
2750 | EXT MGVTBL PL_vtbl_uvar = {MEMBER_TO_FPTR(Perl_magic_getuvar), |
2751 | MEMBER_TO_FPTR(Perl_magic_setuvar), | |
463ee0b2 | 2752 | 0, 0, 0}; |
f93b4edd | 2753 | #ifdef USE_THREADS |
2b260de0 | 2754 | EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, MEMBER_TO_FPTR(Perl_magic_mutexfree)}; |
f93b4edd | 2755 | #endif /* USE_THREADS */ |
2b260de0 | 2756 | EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem), |
02270b4e | 2757 | 0, 0, 0}; |
a0d0e21e | 2758 | |
2b260de0 GS |
2759 | EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)}; |
2760 | EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0}; | |
2761 | EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get), 0, 0, 0, 0}; | |
c277df42 | 2762 | |
36477c24 | 2763 | #ifdef USE_LOCALE_COLLATE |
22c35a8c | 2764 | EXT MGVTBL PL_vtbl_collxfrm = {0, |
2b260de0 | 2765 | MEMBER_TO_FPTR(Perl_magic_setcollxfrm), |
bbce6d69 | 2766 | 0, 0, 0}; |
2767 | #endif | |
a0d0e21e | 2768 | |
2b260de0 GS |
2769 | EXT MGVTBL PL_vtbl_amagic = {0, MEMBER_TO_FPTR(Perl_magic_setamagic), |
2770 | 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)}; | |
2771 | EXT MGVTBL PL_vtbl_amagicelem = {0, MEMBER_TO_FPTR(Perl_magic_setamagic), | |
2772 | 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)}; | |
a0d0e21e | 2773 | |
810b8aa5 | 2774 | EXT MGVTBL PL_vtbl_backref = {0, 0, |
2b260de0 | 2775 | 0, 0, MEMBER_TO_FPTR(Perl_magic_killbackrefs)}; |
810b8aa5 | 2776 | |
bbce6d69 | 2777 | #else /* !DOINIT */ |
2778 | ||
22c35a8c GS |
2779 | EXT MGVTBL PL_vtbl_sv; |
2780 | EXT MGVTBL PL_vtbl_env; | |
2781 | EXT MGVTBL PL_vtbl_envelem; | |
2782 | EXT MGVTBL PL_vtbl_sig; | |
2783 | EXT MGVTBL PL_vtbl_sigelem; | |
2784 | EXT MGVTBL PL_vtbl_pack; | |
2785 | EXT MGVTBL PL_vtbl_packelem; | |
2786 | EXT MGVTBL PL_vtbl_dbline; | |
2787 | EXT MGVTBL PL_vtbl_isa; | |
2788 | EXT MGVTBL PL_vtbl_isaelem; | |
2789 | EXT MGVTBL PL_vtbl_arylen; | |
2790 | EXT MGVTBL PL_vtbl_glob; | |
2791 | EXT MGVTBL PL_vtbl_mglob; | |
2792 | EXT MGVTBL PL_vtbl_nkeys; | |
2793 | EXT MGVTBL PL_vtbl_taint; | |
2794 | EXT MGVTBL PL_vtbl_substr; | |
2795 | EXT MGVTBL PL_vtbl_vec; | |
2796 | EXT MGVTBL PL_vtbl_pos; | |
2797 | EXT MGVTBL PL_vtbl_bm; | |
2798 | EXT MGVTBL PL_vtbl_fm; | |
2799 | EXT MGVTBL PL_vtbl_uvar; | |
a0d0e21e | 2800 | |
f93b4edd | 2801 | #ifdef USE_THREADS |
22c35a8c | 2802 | EXT MGVTBL PL_vtbl_mutex; |
f93b4edd MB |
2803 | #endif /* USE_THREADS */ |
2804 | ||
22c35a8c GS |
2805 | EXT MGVTBL PL_vtbl_defelem; |
2806 | EXT MGVTBL PL_vtbl_regexp; | |
2807 | EXT MGVTBL PL_vtbl_regdata; | |
2808 | EXT MGVTBL PL_vtbl_regdatum; | |
a0d0e21e | 2809 | |
36477c24 | 2810 | #ifdef USE_LOCALE_COLLATE |
22c35a8c | 2811 | EXT MGVTBL PL_vtbl_collxfrm; |
bbce6d69 | 2812 | #endif |
a0d0e21e | 2813 | |
22c35a8c GS |
2814 | EXT MGVTBL PL_vtbl_amagic; |
2815 | EXT MGVTBL PL_vtbl_amagicelem; | |
a0d0e21e | 2816 | |
810b8aa5 GS |
2817 | EXT MGVTBL PL_vtbl_backref; |
2818 | ||
bbce6d69 | 2819 | #endif /* !DOINIT */ |
85e6fe83 | 2820 | |
f5284f61 IZ |
2821 | enum { |
2822 | fallback_amg, abs_amg, | |
2823 | bool__amg, nomethod_amg, | |
2824 | string_amg, numer_amg, | |
2825 | add_amg, add_ass_amg, | |
2826 | subtr_amg, subtr_ass_amg, | |
2827 | mult_amg, mult_ass_amg, | |
2828 | div_amg, div_ass_amg, | |
2829 | modulo_amg, modulo_ass_amg, | |
2830 | pow_amg, pow_ass_amg, | |
2831 | lshift_amg, lshift_ass_amg, | |
2832 | rshift_amg, rshift_ass_amg, | |
2833 | band_amg, band_ass_amg, | |
2834 | bor_amg, bor_ass_amg, | |
2835 | bxor_amg, bxor_ass_amg, | |
2836 | lt_amg, le_amg, | |
2837 | gt_amg, ge_amg, | |
2838 | eq_amg, ne_amg, | |
2839 | ncmp_amg, scmp_amg, | |
2840 | slt_amg, sle_amg, | |
2841 | sgt_amg, sge_amg, | |
2842 | seq_amg, sne_amg, | |
2843 | not_amg, compl_amg, | |
2844 | inc_amg, dec_amg, | |
2845 | atan2_amg, cos_amg, | |
2846 | sin_amg, exp_amg, | |
2847 | log_amg, sqrt_amg, | |
2848 | repeat_amg, repeat_ass_amg, | |
2849 | concat_amg, concat_ass_amg, | |
2850 | copy_amg, neg_amg, | |
2851 | to_sv_amg, to_av_amg, | |
2852 | to_hv_amg, to_gv_amg, | |
2853 | to_cv_amg, iter_amg, | |
64a0062a JH |
2854 | max_amg_code |
2855 | /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */ | |
f5284f61 IZ |
2856 | }; |
2857 | ||
2858 | #define NofAMmeth max_amg_code | |
2859 | ||
a0d0e21e | 2860 | #ifdef DOINIT |
22c35a8c | 2861 | EXTCONST char * PL_AMG_names[NofAMmeth] = { |
a6006777 | 2862 | "fallback", "abs", /* "fallback" should be the first. */ |
2863 | "bool", "nomethod", | |
2864 | "\"\"", "0+", | |
2865 | "+", "+=", | |
2866 | "-", "-=", | |
2867 | "*", "*=", | |
2868 | "/", "/=", | |
2869 | "%", "%=", | |
2870 | "**", "**=", | |
2871 | "<<", "<<=", | |
2872 | ">>", ">>=", | |
2873 | "&", "&=", | |
2874 | "|", "|=", | |
2875 | "^", "^=", | |
2876 | "<", "<=", | |
2877 | ">", ">=", | |
2878 | "==", "!=", | |
2879 | "<=>", "cmp", | |
2880 | "lt", "le", | |
2881 | "gt", "ge", | |
2882 | "eq", "ne", | |
2883 | "!", "~", | |
2884 | "++", "--", | |
2885 | "atan2", "cos", | |
2886 | "sin", "exp", | |
2887 | "log", "sqrt", | |
2888 | "x", "x=", | |
2889 | ".", ".=", | |
f5284f61 IZ |
2890 | "=", "neg", |
2891 | "${}", "@{}", | |
2892 | "%{}", "*{}", | |
2893 | "&{}", "<>", | |
a0d0e21e LW |
2894 | }; |
2895 | #else | |
22c35a8c | 2896 | EXTCONST char * PL_AMG_names[NofAMmeth]; |
a0d0e21e LW |
2897 | #endif /* def INITAMAGIC */ |
2898 | ||
73c4f7a1 GS |
2899 | END_EXTERN_C |
2900 | ||
a6006777 | 2901 | struct am_table { |
a0d0e21e LW |
2902 | long was_ok_sub; |
2903 | long was_ok_am; | |
a6006777 | 2904 | U32 flags; |
2905 | CV* table[NofAMmeth]; | |
a0d0e21e LW |
2906 | long fallback; |
2907 | }; | |
a6006777 | 2908 | struct am_table_short { |
2909 | long was_ok_sub; | |
2910 | long was_ok_am; | |
2911 | U32 flags; | |
2912 | }; | |
a0d0e21e | 2913 | typedef struct am_table AMT; |
a6006777 | 2914 | typedef struct am_table_short AMTS; |
a0d0e21e LW |
2915 | |
2916 | #define AMGfallNEVER 1 | |
2917 | #define AMGfallNO 2 | |
2918 | #define AMGfallYES 3 | |
2919 | ||
a6006777 | 2920 | #define AMTf_AMAGIC 1 |
2921 | #define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC) | |
2922 | #define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC) | |
2923 | #define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC) | |
2924 | ||
c0315cdf JH |
2925 | |
2926 | /* | |
2927 | * some compilers like to redefine cos et alia as faster | |
2928 | * (and less accurate?) versions called F_cos et cetera (Quidquid | |
2929 | * latine dictum sit, altum viditur.) This trick collides with | |
2930 | * the Perl overloading (amg). The following #defines fool both. | |
2931 | */ | |
2932 | ||
2933 | #ifdef _FASTMATH | |
2934 | # ifdef atan2 | |
2935 | # define F_atan2_amg atan2_amg | |
2936 | # endif | |
2937 | # ifdef cos | |
2938 | # define F_cos_amg cos_amg | |
2939 | # endif | |
2940 | # ifdef exp | |
2941 | # define F_exp_amg exp_amg | |
2942 | # endif | |
2943 | # ifdef log | |
2944 | # define F_log_amg log_amg | |
2945 | # endif | |
2946 | # ifdef pow | |
2947 | # define F_pow_amg pow_amg | |
2948 | # endif | |
2949 | # ifdef sin | |
2950 | # define F_sin_amg sin_amg | |
2951 | # endif | |
2952 | # ifdef sqrt | |
2953 | # define F_sqrt_amg sqrt_amg | |
2954 | # endif | |
2955 | #endif /* _FASTMATH */ | |
2956 | ||
491527d0 | 2957 | #define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */ |
84902520 TB |
2958 | #define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */ |
2959 | #define PERLDBf_LINE 0x02 /* Keep line #. */ | |
2960 | #define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */ | |
2961 | #define PERLDBf_INTER 0x08 /* Preserve more data for | |
2962 | later inspections. */ | |
2963 | #define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */ | |
2964 | #define PERLDBf_SINGLE 0x20 /* Start with single-step on. */ | |
491527d0 GS |
2965 | #define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */ |
2966 | #define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */ | |
84902520 | 2967 | |
3280af22 NIS |
2968 | #define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB)) |
2969 | #define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE)) | |
2970 | #define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT)) | |
2971 | #define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER)) | |
2972 | #define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE)) | |
2973 | #define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE)) | |
2974 | #define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME))) | |
2975 | #define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO)) | |
84902520 | 2976 | |
bbce6d69 | 2977 | |
36477c24 | 2978 | #ifdef USE_LOCALE_NUMERIC |
bbce6d69 | 2979 | |
36477c24 | 2980 | #define SET_NUMERIC_STANDARD() \ |
2981 | STMT_START { \ | |
864dbfa3 GS |
2982 | if (! PL_numeric_standard) \ |
2983 | set_numeric_standard(); \ | |
36477c24 | 2984 | } STMT_END |
2985 | ||
2986 | #define SET_NUMERIC_LOCAL() \ | |
2987 | STMT_START { \ | |
3280af22 | 2988 | if (! PL_numeric_local) \ |
864dbfa3 | 2989 | set_numeric_local(); \ |
36477c24 | 2990 | } STMT_END |
bbce6d69 | 2991 | |
097ee67d JH |
2992 | #define IS_NUMERIC_RADIX(c) \ |
2993 | ((PL_hints & HINT_LOCALE) && \ | |
2994 | PL_numeric_radix && (c) == PL_numeric_radix) | |
2995 | ||
2996 | #define RESTORE_NUMERIC_LOCAL() if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL() | |
2997 | #define RESTORE_NUMERIC_STANDARD() if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD() | |
5b877257 | 2998 | #define Atof my_atof |
097ee67d | 2999 | |
36477c24 | 3000 | #else /* !USE_LOCALE_NUMERIC */ |
bbce6d69 | 3001 | |
097ee67d JH |
3002 | #define SET_NUMERIC_STANDARD() /**/ |
3003 | #define SET_NUMERIC_LOCAL() /**/ | |
3004 | #define IS_NUMERIC_RADIX(c) (0) | |
3005 | #define RESTORE_NUMERIC_LOCAL() /**/ | |
3006 | #define RESTORE_NUMERIC_STANDARD() /**/ | |
65202027 | 3007 | #define Atof Perl_atof |
bbce6d69 | 3008 | |
36477c24 | 3009 | #endif /* !USE_LOCALE_NUMERIC */ |
a0d0e21e | 3010 | |
cf2093f6 JH |
3011 | #if defined(USE_LONG_LONG) && defined(HAS_LONG_LONG) && defined(HAS_ATOLL) |
3012 | #define Atol atoll | |
3013 | #else | |
3014 | #define Atol atol | |
3015 | #endif | |
3016 | ||
3017 | #if defined(USE_LONG_LONG) && defined(HAS_LONG_LONG) && defined(HAS_STRTOULL) | |
3018 | #define Strtoul strtoull | |
3019 | #else | |
3020 | #define Strtoul strtoul | |
3021 | #endif | |
3022 | ||
e5c9fcd0 | 3023 | #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE) |
760ac839 LW |
3024 | /* |
3025 | * Now we have __attribute__ out of the way | |
3026 | * Remap printf | |
3027 | */ | |
3028 | #define printf PerlIO_stdoutf | |
3029 | #endif | |
3030 | ||
a868473f NIS |
3031 | #ifndef PERL_SCRIPT_MODE |
3032 | #define PERL_SCRIPT_MODE "r" | |
3033 | #endif | |
3034 | ||
fba3b22e MB |
3035 | /* |
3036 | * nice_chunk and nice_chunk size need to be set | |
3037 | * and queried under the protection of sv_mutex | |
3038 | */ | |
3039 | #define offer_nice_chunk(chunk, chunk_size) do { \ | |
940cb80d | 3040 | LOCK_SV_MUTEX; \ |
3280af22 NIS |
3041 | if (!PL_nice_chunk) { \ |
3042 | PL_nice_chunk = (char*)(chunk); \ | |
3043 | PL_nice_chunk_size = (chunk_size); \ | |
fba3b22e | 3044 | } \ |
fc80cf79 GS |
3045 | else { \ |
3046 | Safefree(chunk); \ | |
3047 | } \ | |
940cb80d | 3048 | UNLOCK_SV_MUTEX; \ |
fba3b22e MB |
3049 | } while (0) |
3050 | ||
bd89102f AD |
3051 | #ifdef HAS_SEM |
3052 | # include <sys/ipc.h> | |
3053 | # include <sys/sem.h> | |
3054 | # ifndef HAS_UNION_SEMUN /* Provide the union semun. */ | |
3055 | union semun { | |
dbba660d TC |
3056 | int val; |
3057 | struct semid_ds *buf; | |
3058 | unsigned short *array; | |
bd89102f AD |
3059 | }; |
3060 | # endif | |
3061 | # ifdef USE_SEMCTL_SEMUN | |
dbba660d TC |
3062 | # ifdef IRIX32_SEMUN_BROKEN_BY_GCC |
3063 | union gccbug_semun { | |
3064 | int val; | |
3065 | struct semid_ds *buf; | |
3066 | unsigned short *array; | |
3067 | char __dummy[5]; | |
3068 | }; | |
3069 | # define semun gccbug_semun | |
3070 | # endif | |
bd89102f AD |
3071 | # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun) |
3072 | # else | |
3073 | # ifdef USE_SEMCTL_SEMID_DS | |
3074 | # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf) | |
3075 | # endif | |
3076 | # endif | |
bd89102f | 3077 | #endif |
49f531da | 3078 | |
104d25b7 JH |
3079 | #ifdef IAMSUID |
3080 | ||
3081 | #ifdef I_SYS_STATVFS | |
32b3cf08 JH |
3082 | # include <sys/statvfs.h> /* for f?statvfs() */ |
3083 | #endif | |
3084 | #ifdef I_SYS_MOUNT | |
3085 | # include <sys/mount.h> /* for *BSD f?statfs() */ | |
3086 | #endif | |
3087 | #ifdef I_MNTENT | |
3088 | # include <mntent.h> /* for getmntent() */ | |
104d25b7 | 3089 | #endif |
0545a864 JH |
3090 | #ifdef I_SYS_STATFS |
3091 | # include <sys/statfs.h> /* for some statfs() */ | |
3092 | #endif | |
3093 | #ifdef I_SYS_VFS | |
3094 | # include <sys/vfs.h> /* for some statfs() */ | |
3095 | #endif | |
3096 | #ifdef I_USTAT | |
3097 | # include <ustat.h> /* for ustat() */ | |
3098 | #endif | |
3099 | ||
3100 | #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID) | |
3101 | # define PERL_MOUNT_NOSUID MOUNT_NOSUID | |
3102 | #endif | |
3103 | #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID) | |
3104 | # define PERL_MOUNT_NOSUID MNT_NOSUID | |
3105 | #endif | |
3106 | #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID) | |
3107 | # define PERL_MOUNT_NOSUID MS_NOSUID | |
3108 | #endif | |
3109 | #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID) | |
3110 | # define PERL_MOUNT_NOSUID M_NOSUID | |
3111 | #endif | |
104d25b7 JH |
3112 | |
3113 | #endif /* IAMSUID */ | |
3114 | ||
4d8076ea | 3115 | /* and finally... */ |
cceca5ed | 3116 | #define PERL_PATCHLEVEL_H_IMPLICIT |
4d8076ea | 3117 | #include "patchlevel.h" |
cceca5ed | 3118 | #undef PERL_PATCHLEVEL_H_IMPLICIT |
4d8076ea | 3119 | |
85e6fe83 | 3120 | #endif /* Include guard */ |