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 | |
a0d0e21e | 11 | #define OVERLOAD |
8d063cd8 | 12 | |
760ac839 LW |
13 | #ifdef PERL_FOR_X2P |
14 | /* | |
15 | * This file is being used for x2p stuff. | |
16 | * Above symbol is defined via -D in 'x2p/Makefile.SH' | |
17 | * Decouple x2p stuff from some of perls more extreme eccentricities. | |
18 | */ | |
55497cff | 19 | #undef MULTIPLICITY |
760ac839 LW |
20 | #undef USE_STDIO |
21 | #define USE_STDIO | |
22 | #endif /* PERL_FOR_X2P */ | |
23 | ||
76e3520e | 24 | #ifdef PERL_OBJECT |
3dfd1da1 GS |
25 | |
26 | /* PERL_OBJECT explained - DickH and DougL @ ActiveState.com | |
27 | ||
28 | Defining PERL_OBJECT turns on creation of a C++ object that | |
29 | contains all writable core perl global variables and functions. | |
30 | Stated another way, all necessary global variables and functions | |
31 | are members of a big C++ object. This object's class is CPerlObj. | |
32 | This allows a Perl Host to have multiple, independent perl | |
33 | interpreters in the same process space. This is very important on | |
34 | Win32 systems as the overhead of process creation is quite high -- | |
35 | this could be even higher than the script compile and execute time | |
36 | for small scripts. | |
37 | ||
38 | The perl executable implementation on Win32 is composed of perl.exe | |
39 | (the Perl Host) and perlX.dll. (the Perl Core). This allows the | |
40 | same Perl Core to easily be embedded in other applications that use | |
41 | the perl interpreter. | |
42 | ||
43 | +-----------+ | |
44 | | Perl Host | | |
45 | +-----------+ | |
46 | ^ | |
47 | | | |
48 | v | |
49 | +-----------+ +-----------+ | |
50 | | Perl Core |<->| Extension | | |
51 | +-----------+ +-----------+ ... | |
52 | ||
53 | Defining PERL_OBJECT has the following effects: | |
54 | ||
55 | PERL CORE | |
56 | 1. CPerlObj is defined (this is the PERL_OBJECT) | |
57 | 2. all static functions that needed to access either global | |
58 | variables or functions needed are made member functions | |
59 | 3. all writable static variables are made member variables | |
60 | 4. all global variables and functions are defined as: | |
22c35a8c | 61 | #define var CPerlObj::PL_var |
3dfd1da1 | 62 | #define func CPerlObj::Perl_func |
22c35a8c | 63 | * these are in embed.h |
3dfd1da1 GS |
64 | This necessitated renaming some local variables and functions that |
65 | had the same name as a global variable or function. This was | |
66 | probably a _good_ thing anyway. | |
67 | ||
68 | ||
69 | EXTENSIONS | |
70 | 1. Access to global variables and perl functions is through a | |
71 | pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is | |
72 | made transparent to extension developers by the following macros: | |
22c35a8c | 73 | #define var pPerl->PL_var |
3dfd1da1 | 74 | #define func pPerl->Perl_func |
6de196ee | 75 | * these are done in objXSUB.h |
3dfd1da1 GS |
76 | This requires that the extension be compiled as C++, which means |
77 | that the code must be ANSI C and not K&R C. For K&R extensions, | |
78 | please see the C API notes located in Win32/GenCAPI.pl. This script | |
6de196ee | 79 | creates a perlCAPI.lib that provides a K & R compatible C interface |
3dfd1da1 GS |
80 | to the PERL_OBJECT. |
81 | 2. Local variables and functions cannot have the same name as perl's | |
82 | variables or functions since the macros will redefine these. Look for | |
83 | this if you get some strange error message and it does not look like | |
84 | the code that you had written. This often happens with variables that | |
85 | are local to a function. | |
86 | ||
87 | PERL HOST | |
88 | 1. The perl host is linked with perlX.lib to get perl_alloc. This | |
89 | function will return a pointer to CPerlObj (the PERL_OBJECT). It | |
0f4eea8f DL |
90 | takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h |
91 | for more information on this). | |
3dfd1da1 GS |
92 | 2. The perl host calls the same functions as normally would be |
93 | called in setting up and running a perl script, except that the | |
94 | functions are now member functions of the PERL_OBJECT. | |
95 | ||
96 | */ | |
97 | ||
98 | ||
76e3520e GS |
99 | class CPerlObj; |
100 | ||
101 | #define STATIC | |
102 | #define CPERLscope(x) CPerlObj::x | |
103 | #define CPERLproto CPerlObj * | |
e3b8966e | 104 | #define _CPERLproto ,CPERLproto |
76e3520e GS |
105 | #define CPERLarg CPerlObj *pPerl |
106 | #define CPERLarg_ CPERLarg, | |
e3b8966e | 107 | #define _CPERLarg ,CPERLarg |
1d583055 GS |
108 | #define PERL_OBJECT_THIS this |
109 | #define _PERL_OBJECT_THIS ,this | |
110 | #define PERL_OBJECT_THIS_ this, | |
4c2891ed GS |
111 | #define CALLRUNOPS (this->*PL_runops) |
112 | #define CALLREGCOMP (this->*PL_regcompp) | |
113 | #define CALLREGEXEC (this->*PL_regexecp) | |
76e3520e GS |
114 | |
115 | #else /* !PERL_OBJECT */ | |
116 | ||
117 | #define STATIC static | |
118 | #define CPERLscope(x) x | |
119 | #define CPERLproto | |
e3b8966e | 120 | #define _CPERLproto |
565764a8 | 121 | #define CPERLarg void |
76e3520e | 122 | #define CPERLarg_ |
e3b8966e | 123 | #define _CPERLarg |
1d583055 GS |
124 | #define PERL_OBJECT_THIS |
125 | #define _PERL_OBJECT_THIS | |
126 | #define PERL_OBJECT_THIS_ | |
22c35a8c | 127 | #define CALLRUNOPS (*PL_runops) |
3280af22 NIS |
128 | #define CALLREGCOMP (*PL_regcompp) |
129 | #define CALLREGEXEC (*PL_regexecp) | |
76e3520e GS |
130 | |
131 | #endif /* PERL_OBJECT */ | |
132 | ||
71be2cbc | 133 | #define VOIDUSED 1 |
134 | #include "config.h" | |
135 | ||
22c35a8c GS |
136 | #if !defined(PERL_FOR_X2P) |
137 | # include "embed.h" | |
138 | #endif | |
71be2cbc | 139 | |
326b05e3 GS |
140 | #undef START_EXTERN_C |
141 | #undef END_EXTERN_C | |
142 | #undef EXTERN_C | |
32f822de GS |
143 | #ifdef __cplusplus |
144 | # define START_EXTERN_C extern "C" { | |
145 | # define END_EXTERN_C } | |
146 | # define EXTERN_C extern "C" | |
147 | #else | |
148 | # define START_EXTERN_C | |
149 | # define END_EXTERN_C | |
150 | # define EXTERN_C | |
151 | #endif | |
152 | ||
462e5cf6 MB |
153 | #ifdef OP_IN_REGISTER |
154 | # ifdef __GNUC__ | |
155 | # define stringify_immed(s) #s | |
156 | # define stringify(s) stringify_immed(s) | |
d1ca3daa | 157 | register struct op *Perl_op asm(stringify(OP_IN_REGISTER)); |
462e5cf6 MB |
158 | # endif |
159 | #endif | |
160 | ||
728e2803 | 161 | /* |
162 | * STMT_START { statements; } STMT_END; | |
163 | * can be used as a single statement, as in | |
164 | * if (x) STMT_START { ... } STMT_END; else ... | |
165 | * | |
166 | * Trying to select a version that gives no warnings... | |
167 | */ | |
168 | #if !(defined(STMT_START) && defined(STMT_END)) | |
169d69b2 | 169 | # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus) |
728e2803 | 170 | # define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */ |
171 | # define STMT_END ) | |
172 | # else | |
173 | /* Now which other defined()s do we need here ??? */ | |
174 | # if (VOIDFLAGS) && (defined(sun) || defined(__sun__)) | |
175 | # define STMT_START if (1) | |
176 | # define STMT_END else (void)0 | |
177 | # else | |
178 | # define STMT_START do | |
179 | # define STMT_END while (0) | |
180 | # endif | |
181 | # endif | |
182 | #endif | |
183 | ||
462e5cf6 MB |
184 | #define NOOP (void)0 |
185 | ||
61bb5906 | 186 | #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END |
ea0efc06 | 187 | |
55497cff | 188 | /* |
189 | * SOFT_CAST can be used for args to prototyped functions to retain some | |
190 | * type checking; it only casts if the compiler does not know prototypes. | |
191 | */ | |
192 | #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE) | |
193 | #define SOFT_CAST(type) | |
194 | #else | |
195 | #define SOFT_CAST(type) (type) | |
196 | #endif | |
79072805 | 197 | |
6ee623d5 | 198 | #ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */ |
79072805 LW |
199 | # define BYTEORDER 0x1234 |
200 | #endif | |
201 | ||
202 | /* Overall memory policy? */ | |
203 | #ifndef CONSERVATIVE | |
204 | # define LIBERAL 1 | |
205 | #endif | |
206 | ||
8ada0baa JH |
207 | #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90 |
208 | #define ASCIIish | |
209 | #else | |
210 | #undef ASCIIish | |
211 | #endif | |
212 | ||
79072805 LW |
213 | /* |
214 | * The following contortions are brought to you on behalf of all the | |
215 | * standards, semi-standards, de facto standards, not-so-de-facto standards | |
216 | * of the world, as well as all the other botches anyone ever thought of. | |
217 | * The basic theory is that if we work hard enough here, the rest of the | |
218 | * code can be a lot prettier. Well, so much for theory. Sorry, Henry... | |
219 | */ | |
ac58e20f | 220 | |
ee0007ab | 221 | /* define this once if either system, instead of cluttering up the src */ |
68dc0745 | 222 | #if defined(MSDOS) || defined(atarist) || defined(WIN32) |
ee0007ab LW |
223 | #define DOSISH 1 |
224 | #endif | |
225 | ||
a0d0e21e | 226 | #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) |
352d5a3a LW |
227 | # define STANDARD_C 1 |
228 | #endif | |
229 | ||
09b7f37c | 230 | #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) |
68dc0745 | 231 | # define DONT_DECLARE_STD 1 |
232 | #endif | |
233 | ||
352d5a3a | 234 | #if defined(HASVOLATILE) || defined(STANDARD_C) |
79072805 LW |
235 | # ifdef __cplusplus |
236 | # define VOL // to temporarily suppress warnings | |
237 | # else | |
238 | # define VOL volatile | |
239 | # endif | |
663a0e37 | 240 | #else |
79072805 | 241 | # define VOL |
663a0e37 LW |
242 | #endif |
243 | ||
3280af22 NIS |
244 | #define TAINT (PL_tainted = TRUE) |
245 | #define TAINT_NOT (PL_tainted = FALSE) | |
246 | #define TAINT_IF(c) if (c) { PL_tainted = TRUE; } | |
247 | #define TAINT_ENV() if (PL_tainting) { taint_env(); } | |
22c35a8c | 248 | #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); } |
a687059c | 249 | |
a6e633de | 250 | /* XXX All process group stuff is handled in pp_sys.c. Should these |
251 | defines move there? If so, I could simplify this a lot. --AD 9/96. | |
252 | */ | |
253 | /* Process group stuff changed from traditional BSD to POSIX. | |
254 | perlfunc.pod documents the traditional BSD-style syntax, so we'll | |
255 | try to preserve that, if possible. | |
256 | */ | |
257 | #ifdef HAS_SETPGID | |
258 | # define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp)) | |
c07a80fd | 259 | #else |
a6e633de | 260 | # if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP) |
261 | # define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp)) | |
262 | # else | |
263 | # ifdef HAS_SETPGRP2 /* DG/UX */ | |
264 | # define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp)) | |
265 | # endif | |
266 | # endif | |
267 | #endif | |
268 | #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP) | |
269 | # define HAS_SETPGRP /* Well, effectively it does . . . */ | |
270 | #endif | |
271 | ||
272 | /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes | |
273 | our life easier :-) so we'll try it. | |
274 | */ | |
275 | #ifdef HAS_GETPGID | |
276 | # define BSD_GETPGRP(pid) getpgid((pid)) | |
277 | #else | |
278 | # if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP) | |
279 | # define BSD_GETPGRP(pid) getpgrp((pid)) | |
280 | # else | |
281 | # ifdef HAS_GETPGRP2 /* DG/UX */ | |
282 | # define BSD_GETPGRP(pid) getpgrp2((pid)) | |
283 | # endif | |
284 | # endif | |
285 | #endif | |
286 | #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP) | |
287 | # define HAS_GETPGRP /* Well, effectively it does . . . */ | |
288 | #endif | |
289 | ||
290 | /* These are not exact synonyms, since setpgrp() and getpgrp() may | |
291 | have different behaviors, but perl.h used to define USE_BSDPGRP | |
292 | (prior to 5.003_05) so some extension might depend on it. | |
293 | */ | |
294 | #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP) | |
295 | # ifndef USE_BSDPGRP | |
296 | # define USE_BSDPGRP | |
297 | # endif | |
663a0e37 LW |
298 | #endif |
299 | ||
8ac5a1fe MH |
300 | /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that |
301 | pthread.h must be included before all other header files. | |
302 | */ | |
303 | #if defined(USE_THREADS) && defined(PTHREAD_H_FIRST) | |
304 | # include <pthread.h> | |
305 | #endif | |
306 | ||
760ac839 LW |
307 | #ifndef _TYPES_ /* If types.h defines this it's easy. */ |
308 | # ifndef major /* Does everyone's types.h define this? */ | |
309 | # include <sys/types.h> | |
c07a80fd | 310 | # endif |
663a0e37 LW |
311 | #endif |
312 | ||
760ac839 LW |
313 | #ifdef __cplusplus |
314 | # ifndef I_STDARG | |
315 | # define I_STDARG 1 | |
316 | # endif | |
317 | #endif | |
318 | ||
319 | #ifdef I_STDARG | |
320 | # include <stdarg.h> | |
321 | #else | |
322 | # ifdef I_VARARGS | |
323 | # include <varargs.h> | |
324 | # endif | |
325 | #endif | |
326 | ||
0f4eea8f | 327 | #include "iperlsys.h" |
0c30d9ec | 328 | |
4633a7c4 | 329 | #ifdef USE_NEXT_CTYPE |
0c30d9ec | 330 | |
092bebab JH |
331 | #if NX_CURRENT_COMPILER_RELEASE >= 500 |
332 | # include <bsd/ctypes.h> | |
333 | #else | |
334 | # if NX_CURRENT_COMPILER_RELEASE >= 400 | |
335 | # include <objc/NXCType.h> | |
336 | # else /* NX_CURRENT_COMPILER_RELEASE < 400 */ | |
337 | # include <appkit/NXCType.h> | |
338 | # endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */ | |
339 | #endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */ | |
0c30d9ec | 340 | |
341 | #else /* !USE_NEXT_CTYPE */ | |
fe14fcc3 | 342 | #include <ctype.h> |
0c30d9ec | 343 | #endif /* USE_NEXT_CTYPE */ |
a0d0e21e LW |
344 | |
345 | #ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */ | |
346 | #undef METHOD | |
a0d0e21e LW |
347 | #endif |
348 | ||
4633a7c4 | 349 | #ifdef I_LOCALE |
36477c24 | 350 | # include <locale.h> |
4633a7c4 LW |
351 | #endif |
352 | ||
36477c24 | 353 | #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE) |
354 | # define USE_LOCALE | |
355 | # if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \ | |
356 | && defined(HAS_STRXFRM) | |
357 | # define USE_LOCALE_COLLATE | |
358 | # endif | |
359 | # if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE) | |
360 | # define USE_LOCALE_CTYPE | |
361 | # endif | |
362 | # if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC) | |
363 | # define USE_LOCALE_NUMERIC | |
364 | # endif | |
365 | #endif /* !NO_LOCALE && HAS_SETLOCALE */ | |
a0d0e21e | 366 | |
fe14fcc3 | 367 | #include <setjmp.h> |
79072805 | 368 | |
a0d0e21e | 369 | #ifdef I_SYS_PARAM |
79072805 LW |
370 | # ifdef PARAM_NEEDS_TYPES |
371 | # include <sys/types.h> | |
372 | # endif | |
373 | # include <sys/param.h> | |
352d5a3a | 374 | #endif |
79072805 LW |
375 | |
376 | ||
377 | /* Use all the "standard" definitions? */ | |
a0d0e21e | 378 | #if defined(STANDARD_C) && defined(I_STDLIB) |
79072805 | 379 | # include <stdlib.h> |
ff68c719 | 380 | #endif |
03a14243 | 381 | |
c31fac66 GS |
382 | #define MEM_SIZE Size_t |
383 | ||
55497cff | 384 | /* This comes after <stdlib.h> so we don't try to change the standard |
385 | * library prototypes; we'll use our own in proto.h instead. */ | |
03a14243 | 386 | |
4633a7c4 | 387 | #ifdef MYMALLOC |
55497cff | 388 | |
4633a7c4 | 389 | # ifdef HIDEMYMALLOC |
55497cff | 390 | # define malloc Mymalloc |
391 | # define calloc Mycalloc | |
429a5e67 | 392 | # define realloc Myrealloc |
55497cff | 393 | # define free Myfree |
c31fac66 GS |
394 | Malloc_t Mymalloc _((MEM_SIZE nbytes)); |
395 | Malloc_t Mycalloc _((MEM_SIZE elements, MEM_SIZE size)); | |
396 | Malloc_t Myrealloc _((Malloc_t where, MEM_SIZE nbytes)); | |
397 | Free_t Myfree _((Malloc_t where)); | |
55497cff | 398 | # endif |
399 | # ifdef EMBEDMYMALLOC | |
400 | # define malloc Perl_malloc | |
401 | # define calloc Perl_calloc | |
402 | # define realloc Perl_realloc | |
429a5e67 DS |
403 | /* VMS' external symbols are case-insensitive, and there's already a */ |
404 | /* perl_free in perl.h */ | |
405 | #ifdef VMS | |
406 | # define free Perl_myfree | |
407 | #else | |
55497cff | 408 | # define free Perl_free |
429a5e67 | 409 | #endif |
c31fac66 GS |
410 | Malloc_t Perl_malloc _((MEM_SIZE nbytes)); |
411 | Malloc_t Perl_calloc _((MEM_SIZE elements, MEM_SIZE size)); | |
412 | Malloc_t Perl_realloc _((Malloc_t where, MEM_SIZE nbytes)); | |
429a5e67 DS |
413 | #ifdef VMS |
414 | Free_t Perl_myfree _((Malloc_t where)); | |
415 | #else | |
c31fac66 | 416 | Free_t Perl_free _((Malloc_t where)); |
429a5e67 | 417 | #endif |
4633a7c4 | 418 | # endif |
55497cff | 419 | |
420 | # undef safemalloc | |
421 | # undef safecalloc | |
422 | # undef saferealloc | |
423 | # undef safefree | |
424 | # define safemalloc malloc | |
425 | # define safecalloc calloc | |
4633a7c4 | 426 | # define saferealloc realloc |
55497cff | 427 | # define safefree free |
428 | ||
429 | #endif /* MYMALLOC */ | |
4633a7c4 | 430 | |
ff68c719 | 431 | #if defined(STANDARD_C) && defined(I_STDDEF) |
432 | # include <stddef.h> | |
71be2cbc | 433 | # define STRUCT_OFFSET(s,m) offsetof(s,m) |
ff68c719 | 434 | #else |
71be2cbc | 435 | # define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m)) |
ff68c719 | 436 | #endif |
437 | ||
a0d0e21e LW |
438 | #if defined(I_STRING) || defined(__cplusplus) |
439 | # include <string.h> | |
440 | #else | |
441 | # include <strings.h> | |
442 | #endif | |
443 | ||
444 | #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr) | |
445 | #define strchr index | |
446 | #define strrchr rindex | |
447 | #endif | |
448 | ||
16d20bd9 AD |
449 | #ifdef I_MEMORY |
450 | # include <memory.h> | |
451 | #endif | |
452 | ||
fe14fcc3 | 453 | #ifdef HAS_MEMCPY |
85e6fe83 | 454 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
fe14fcc3 | 455 | # ifndef memcpy |
a0d0e21e | 456 | extern char * memcpy _((char*, char*, int)); |
ee0007ab LW |
457 | # endif |
458 | # endif | |
459 | #else | |
460 | # ifndef memcpy | |
461 | # ifdef HAS_BCOPY | |
462 | # define memcpy(d,s,l) bcopy(s,d,l) | |
463 | # else | |
464 | # define memcpy(d,s,l) my_bcopy(s,d,l) | |
465 | # endif | |
466 | # endif | |
467 | #endif /* HAS_MEMCPY */ | |
fe14fcc3 | 468 | |
ee0007ab | 469 | #ifdef HAS_MEMSET |
85e6fe83 | 470 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
ee0007ab | 471 | # ifndef memset |
a0d0e21e | 472 | extern char *memset _((char*, int, int)); |
ee0007ab LW |
473 | # endif |
474 | # endif | |
ee0007ab | 475 | #else |
fc36a67e | 476 | # define memset(d,c,l) my_memset(d,c,l) |
ee0007ab LW |
477 | #endif /* HAS_MEMSET */ |
478 | ||
85e6fe83 | 479 | #if !defined(HAS_MEMMOVE) && !defined(memmove) |
2304df62 | 480 | # if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY) |
79072805 LW |
481 | # define memmove(d,s,l) bcopy(s,d,l) |
482 | # else | |
2304df62 | 483 | # if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY) |
79072805 | 484 | # define memmove(d,s,l) memcpy(d,s,l) |
ee0007ab | 485 | # else |
79072805 | 486 | # define memmove(d,s,l) my_bcopy(s,d,l) |
ee0007ab | 487 | # endif |
352d5a3a | 488 | # endif |
d9d8d8de | 489 | #endif |
ee0007ab | 490 | |
36477c24 | 491 | #if defined(mips) && defined(ultrix) && !defined(__STDC__) |
492 | # undef HAS_MEMCMP | |
493 | #endif | |
494 | ||
495 | #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP) | |
85e6fe83 | 496 | # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) |
ee0007ab | 497 | # ifndef memcmp |
a0d0e21e | 498 | extern int memcmp _((char*, char*, int)); |
ee0007ab LW |
499 | # endif |
500 | # endif | |
36477c24 | 501 | # ifdef BUGGY_MSC |
502 | # pragma function(memcmp) | |
503 | # endif | |
ee0007ab LW |
504 | #else |
505 | # ifndef memcmp | |
ecfc5424 | 506 | # define memcmp my_memcmp |
352d5a3a | 507 | # endif |
36477c24 | 508 | #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */ |
8d063cd8 | 509 | |
fc36a67e | 510 | #ifndef memzero |
c635e13b | 511 | # ifdef HAS_MEMSET |
512 | # define memzero(d,l) memset(d,0,l) | |
79072805 | 513 | # else |
c635e13b | 514 | # ifdef HAS_BZERO |
515 | # define memzero(d,l) bzero(d,l) | |
79072805 | 516 | # else |
fc36a67e | 517 | # define memzero(d,l) my_bzero(d,l) |
79072805 LW |
518 | # endif |
519 | # endif | |
d9d8d8de | 520 | #endif |
378cc40b | 521 | |
36477c24 | 522 | #ifndef HAS_BCMP |
523 | # ifndef bcmp | |
524 | # define bcmp(s1,s2,l) memcmp(s1,s2,l) | |
79072805 | 525 | # endif |
36477c24 | 526 | #endif /* !HAS_BCMP */ |
378cc40b | 527 | |
ae986130 | 528 | #ifdef I_NETINET_IN |
79072805 | 529 | # include <netinet/in.h> |
ae986130 LW |
530 | #endif |
531 | ||
28e8609d JH |
532 | #ifdef I_ARPA_INET |
533 | # include <arpa/inet.h> | |
534 | #endif | |
535 | ||
84902520 TB |
536 | #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO) |
537 | /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND | |
538 | * (the neo-BSD seem to do this). */ | |
539 | # undef SF_APPEND | |
540 | #endif | |
541 | ||
1aef975c | 542 | #ifdef I_SYS_STAT |
84902520 | 543 | # include <sys/stat.h> |
1aef975c | 544 | #endif |
79072805 | 545 | |
a0d0e21e LW |
546 | /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives |
547 | like UTekV) are broken, sometimes giving false positives. Undefine | |
548 | them here and let the code below set them to proper values. | |
549 | ||
550 | The ghs macro stands for GreenHills Software C-1.8.5 which | |
551 | is the C compiler for sysV88 and the various derivatives. | |
552 | This header file bug is corrected in gcc-2.5.8 and later versions. | |
553 | --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */ | |
554 | ||
555 | #if defined(uts) || (defined(m88k) && defined(ghs)) | |
79072805 LW |
556 | # undef S_ISDIR |
557 | # undef S_ISCHR | |
558 | # undef S_ISBLK | |
559 | # undef S_ISREG | |
560 | # undef S_ISFIFO | |
561 | # undef S_ISLNK | |
ee0007ab | 562 | #endif |
135863df | 563 | |
663a0e37 LW |
564 | #ifdef I_TIME |
565 | # include <time.h> | |
ffed7fef | 566 | #endif |
663a0e37 | 567 | |
fe14fcc3 | 568 | #ifdef I_SYS_TIME |
85e6fe83 | 569 | # ifdef I_SYS_TIME_KERNEL |
663a0e37 LW |
570 | # define KERNEL |
571 | # endif | |
572 | # include <sys/time.h> | |
85e6fe83 | 573 | # ifdef I_SYS_TIME_KERNEL |
663a0e37 LW |
574 | # undef KERNEL |
575 | # endif | |
a687059c | 576 | #endif |
135863df | 577 | |
55497cff | 578 | #if defined(HAS_TIMES) && defined(I_SYS_TIMES) |
85e6fe83 | 579 | # include <sys/times.h> |
d9d8d8de | 580 | #endif |
8d063cd8 | 581 | |
fe14fcc3 | 582 | #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR)) |
79072805 | 583 | # undef HAS_STRERROR |
663a0e37 LW |
584 | #endif |
585 | ||
586 | #include <errno.h> | |
ed6116ce | 587 | #ifdef HAS_SOCKET |
85e6fe83 | 588 | # ifdef I_NET_ERRNO |
ed6116ce LW |
589 | # include <net/errno.h> |
590 | # endif | |
591 | #endif | |
f86702cc | 592 | |
593 | #ifdef VMS | |
594 | # define SETERRNO(errcode,vmserrcode) \ | |
595 | STMT_START { \ | |
596 | set_errno(errcode); \ | |
597 | set_vaxc_errno(vmserrcode); \ | |
598 | } STMT_END | |
748a9306 | 599 | #else |
aba27d88 | 600 | # define SETERRNO(errcode,vmserrcode) (errno = (errcode)) |
748a9306 | 601 | #endif |
ed6116ce | 602 | |
38a03e6e MB |
603 | #ifdef USE_THREADS |
604 | # define ERRSV (thr->errsv) | |
605 | # define ERRHV (thr->errhv) | |
940cb80d MB |
606 | # define DEFSV THREADSV(0) |
607 | # define SAVE_DEFSV save_threadsv(0) | |
38a03e6e | 608 | #else |
3280af22 NIS |
609 | # define ERRSV GvSV(PL_errgv) |
610 | # define ERRHV GvHV(PL_errgv) | |
611 | # define DEFSV GvSV(PL_defgv) | |
612 | # define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv)) | |
38a03e6e MB |
613 | #endif /* USE_THREADS */ |
614 | ||
55497cff | 615 | #ifndef errno |
5ff3f7a4 GS |
616 | extern int errno; /* ANSI allows errno to be an lvalue expr. |
617 | * For example in multithreaded environments | |
618 | * something like this might happen: | |
619 | * extern int *_errno(void); | |
620 | * #define errno (*_errno()) */ | |
d9d8d8de | 621 | #endif |
663a0e37 | 622 | |
2304df62 | 623 | #ifdef HAS_STRERROR |
a0d0e21e LW |
624 | # ifdef VMS |
625 | char *strerror _((int,...)); | |
626 | # else | |
68dc0745 | 627 | #ifndef DONT_DECLARE_STD |
a0d0e21e | 628 | char *strerror _((int)); |
68dc0745 | 629 | #endif |
a0d0e21e | 630 | # endif |
2304df62 AD |
631 | # ifndef Strerror |
632 | # define Strerror strerror | |
633 | # endif | |
634 | #else | |
635 | # ifdef HAS_SYS_ERRLIST | |
79072805 LW |
636 | extern int sys_nerr; |
637 | extern char *sys_errlist[]; | |
2304df62 AD |
638 | # ifndef Strerror |
639 | # define Strerror(e) \ | |
79072805 | 640 | ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e]) |
2304df62 | 641 | # endif |
79072805 | 642 | # endif |
35c8bce7 | 643 | #endif |
663a0e37 | 644 | |
2304df62 | 645 | #ifdef I_SYS_IOCTL |
79072805 LW |
646 | # ifndef _IOCTL_ |
647 | # include <sys/ioctl.h> | |
648 | # endif | |
a687059c LW |
649 | #endif |
650 | ||
ee0007ab | 651 | #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000) |
79072805 LW |
652 | # ifdef HAS_SOCKETPAIR |
653 | # undef HAS_SOCKETPAIR | |
654 | # endif | |
2304df62 AD |
655 | # ifdef I_NDBM |
656 | # undef I_NDBM | |
79072805 | 657 | # endif |
a687059c LW |
658 | #endif |
659 | ||
a687059c | 660 | #if INTSIZE == 2 |
79072805 LW |
661 | # define htoni htons |
662 | # define ntohi ntohs | |
a687059c | 663 | #else |
79072805 LW |
664 | # define htoni htonl |
665 | # define ntohi ntohl | |
a687059c LW |
666 | #endif |
667 | ||
a0d0e21e | 668 | /* Configure already sets Direntry_t */ |
35c8bce7 | 669 | #if defined(I_DIRENT) |
663a0e37 | 670 | # include <dirent.h> |
a0d0e21e LW |
671 | # if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */ |
672 | # include <sys/dir.h> | |
673 | # endif | |
ae986130 | 674 | #else |
fe14fcc3 | 675 | # ifdef I_SYS_NDIR |
79a0689e | 676 | # include <sys/ndir.h> |
663a0e37 | 677 | # else |
fe14fcc3 | 678 | # ifdef I_SYS_DIR |
79a0689e LW |
679 | # ifdef hp9000s500 |
680 | # include <ndir.h> /* may be wrong in the future */ | |
681 | # else | |
682 | # include <sys/dir.h> | |
683 | # endif | |
663a0e37 LW |
684 | # endif |
685 | # endif | |
4633a7c4 | 686 | #endif |
a687059c | 687 | |
352d5a3a LW |
688 | #ifdef FPUTS_BOTCH |
689 | /* work around botch in SunOS 4.0.1 and 4.0.2 */ | |
690 | # ifndef fputs | |
79072805 | 691 | # define fputs(sv,fp) fprintf(fp,"%s",sv) |
352d5a3a LW |
692 | # endif |
693 | #endif | |
694 | ||
c623bd54 LW |
695 | /* |
696 | * The following gobbledygook brought to you on behalf of __STDC__. | |
697 | * (I could just use #ifndef __STDC__, but this is more bulletproof | |
698 | * in the face of half-implementations.) | |
699 | */ | |
700 | ||
701 | #ifndef S_IFMT | |
702 | # ifdef _S_IFMT | |
703 | # define S_IFMT _S_IFMT | |
704 | # else | |
705 | # define S_IFMT 0170000 | |
706 | # endif | |
707 | #endif | |
708 | ||
709 | #ifndef S_ISDIR | |
710 | # define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR) | |
711 | #endif | |
712 | ||
713 | #ifndef S_ISCHR | |
714 | # define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR) | |
715 | #endif | |
716 | ||
717 | #ifndef S_ISBLK | |
fe14fcc3 LW |
718 | # ifdef S_IFBLK |
719 | # define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK) | |
720 | # else | |
721 | # define S_ISBLK(m) (0) | |
722 | # endif | |
c623bd54 LW |
723 | #endif |
724 | ||
725 | #ifndef S_ISREG | |
726 | # define S_ISREG(m) ((m & S_IFMT) == S_IFREG) | |
727 | #endif | |
728 | ||
729 | #ifndef S_ISFIFO | |
fe14fcc3 LW |
730 | # ifdef S_IFIFO |
731 | # define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO) | |
732 | # else | |
733 | # define S_ISFIFO(m) (0) | |
734 | # endif | |
c623bd54 LW |
735 | #endif |
736 | ||
737 | #ifndef S_ISLNK | |
738 | # ifdef _S_ISLNK | |
739 | # define S_ISLNK(m) _S_ISLNK(m) | |
740 | # else | |
741 | # ifdef _S_IFLNK | |
742 | # define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK) | |
743 | # else | |
744 | # ifdef S_IFLNK | |
745 | # define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK) | |
746 | # else | |
747 | # define S_ISLNK(m) (0) | |
748 | # endif | |
749 | # endif | |
750 | # endif | |
751 | #endif | |
752 | ||
753 | #ifndef S_ISSOCK | |
754 | # ifdef _S_ISSOCK | |
755 | # define S_ISSOCK(m) _S_ISSOCK(m) | |
756 | # else | |
757 | # ifdef _S_IFSOCK | |
758 | # define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK) | |
759 | # else | |
760 | # ifdef S_IFSOCK | |
761 | # define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK) | |
762 | # else | |
763 | # define S_ISSOCK(m) (0) | |
764 | # endif | |
765 | # endif | |
766 | # endif | |
767 | #endif | |
768 | ||
769 | #ifndef S_IRUSR | |
770 | # ifdef S_IREAD | |
771 | # define S_IRUSR S_IREAD | |
772 | # define S_IWUSR S_IWRITE | |
773 | # define S_IXUSR S_IEXEC | |
774 | # else | |
775 | # define S_IRUSR 0400 | |
776 | # define S_IWUSR 0200 | |
777 | # define S_IXUSR 0100 | |
778 | # endif | |
779 | # define S_IRGRP (S_IRUSR>>3) | |
780 | # define S_IWGRP (S_IWUSR>>3) | |
781 | # define S_IXGRP (S_IXUSR>>3) | |
782 | # define S_IROTH (S_IRUSR>>6) | |
783 | # define S_IWOTH (S_IWUSR>>6) | |
784 | # define S_IXOTH (S_IXUSR>>6) | |
785 | #endif | |
786 | ||
787 | #ifndef S_ISUID | |
788 | # define S_ISUID 04000 | |
789 | #endif | |
790 | ||
791 | #ifndef S_ISGID | |
792 | # define S_ISGID 02000 | |
793 | #endif | |
794 | ||
79072805 LW |
795 | #ifdef ff_next |
796 | # undef ff_next | |
352d5a3a LW |
797 | #endif |
798 | ||
a0d0e21e | 799 | #if defined(cray) || defined(gould) || defined(i860) || defined(pyr) |
45d8adaa LW |
800 | # define SLOPPYDIVIDE |
801 | #endif | |
802 | ||
748a9306 LW |
803 | #ifdef UV |
804 | #undef UV | |
805 | #endif | |
806 | ||
5ff3f7a4 GS |
807 | #ifdef I_INTTYPES |
808 | #include <inttypes.h> | |
809 | #endif | |
810 | ||
27d4fb96 | 811 | /* XXX QUAD stuff is not currently supported on most systems. |
812 | Specifically, perl internals don't support long long. Among | |
813 | the many problems is that some compilers support long long, | |
814 | but the underlying library functions (such as sprintf) don't. | |
815 | Some things do work (such as quad pack/unpack on convex); | |
816 | also some systems use long long for the fpos_t typedef. That | |
817 | seems to work too. | |
818 | ||
819 | The IV type is supposed to be long enough to hold any integral | |
820 | value or a pointer. | |
821 | --Andy Dougherty August 1996 | |
822 | */ | |
823 | ||
5ff3f7a4 GS |
824 | /* Much more 64-bit probing added. Now we should get Quad_t |
825 | in most systems: int64_t, long long, long, int, will do. | |
826 | ||
827 | Beware of LP32 systems (ILP32, ILP32LL64). Such systems have been | |
828 | used to sizeof(long) == sizeof(foo*). This is a bad assumption | |
829 | because then IV/UV have been 32 bits, too. Which, in turn means | |
830 | that even if the system has quads (e.g. long long), IV cannot be a | |
831 | quad. Introducing a 64-bit IV (because of long long existing) | |
85ab1d1d | 832 | will introduce binary incompatibility. |
5ff3f7a4 GS |
833 | |
834 | Summary: a long long system needs to add -DUSE_LONG_LONG to $ccflags | |
835 | to get quads -- and if its pointers are still 32 bits, this will break | |
836 | binary compatibility. Casting an IV (a long long) to a pointer will | |
837 | truncate half of the IV away. | |
838 | ||
839 | --jhi September 1998 */ | |
840 | ||
841 | #if INTSIZE == 4 && LONGSIZE == 4 && PTRSIZE == 4 | |
842 | # define PERL_ILP32 | |
843 | # if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8 | |
844 | # define PERL_ILP32LL64 | |
45d8adaa | 845 | # endif |
f86702cc | 846 | #endif |
847 | ||
5ff3f7a4 GS |
848 | #if LONGSIZE == 8 && PTRSIZE == 8 |
849 | # define PERL_LP64 | |
850 | # if INTSIZE == 8 | |
851 | # define PERL_ILP64 | |
852 | # endif | |
853 | #endif | |
854 | ||
03145268 SH |
855 | #ifndef Quad_t |
856 | # if LONGSIZE == 8 | |
857 | # define Quad_t long | |
5ff3f7a4 | 858 | # define PERL_QUAD_IS_LONG |
03145268 SH |
859 | # endif |
860 | #endif | |
861 | ||
862 | #ifndef Quad_t | |
863 | # if INTSIZE == 8 | |
864 | # define Quad_t int | |
865 | # define PERL_QUAD_IS_INT | |
866 | # endif | |
867 | #endif | |
868 | ||
869 | #ifndef Quad_t | |
870 | # ifdef USE_LONG_LONG /* See above note about LP32. --jhi */ | |
871 | # if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8 | |
872 | # define Quad_t long long | |
873 | # define PERL_QUAD_IS_LONG_LONG | |
5ff3f7a4 | 874 | # endif |
03145268 SH |
875 | # endif |
876 | #endif | |
877 | ||
878 | #ifndef Quad_t | |
879 | # ifdef HAS_INT64_T | |
880 | # define Quad_t int64_t | |
881 | # define Uquad_t uint64_t | |
882 | # define PERL_QUAD_IS_INT64_T | |
883 | # endif | |
6ee623d5 GS |
884 | #endif |
885 | ||
f86702cc | 886 | #ifdef Quad_t |
887 | # define HAS_QUAD | |
03145268 SH |
888 | # ifndef Uquad_t |
889 | /* Note that if your Quad_t is a typedef you *must* have defined | |
890 | * also Uquad_t yourself because 'unsigned type' is illegal. */ | |
891 | # define Uquad_t unsigned Quad_t | |
892 | # endif | |
5ff3f7a4 GS |
893 | #endif |
894 | ||
03145268 SH |
895 | #if defined(USE_64_BITS) && defined(HAS_QUAD) |
896 | # ifdef PERL_QUAD_IS_LONG /* LP64 */ | |
897 | typedef long IV; | |
898 | typedef unsigned long UV; | |
899 | # else | |
900 | # ifdef PERL_QUAD_IS_INT /* ILP64 */ | |
901 | typedef int IV; | |
902 | typedef unsigned int UV; | |
903 | # else | |
904 | # ifdef PERL_QUAD_IS_LONG_LONG /* LL64 */ | |
905 | typedef long long IV; | |
906 | typedef unsigned long long UV; | |
907 | # else | |
908 | # ifdef PERL_QUAD_IS_INT64_T /* C9X */ | |
909 | typedef int64_t IV; | |
910 | typedef uint64_t UV; | |
911 | # endif | |
912 | # endif | |
913 | # endif | |
914 | # endif | |
5ff3f7a4 GS |
915 | # if defined(PERL_QUAD_IS_INT64_T) && defined(INT64_MAX) |
916 | # define IV_MAX INT64_MAX | |
917 | # define IV_MIN INT64_MIN | |
918 | # define UV_MAX UINT64_MAX | |
919 | # define UV_MIN UINT64_MIN | |
920 | # else | |
921 | # define IV_MAX PERL_QUAD_MAX | |
922 | # define IV_MIN PERL_QUAD_MIN | |
923 | # define UV_MAX PERL_UQUAD_MAX | |
924 | # define UV_MIN PERL_UQUAD_MIN | |
925 | # endif | |
79072805 | 926 | #else |
03145268 SH |
927 | typedef long IV; |
928 | typedef unsigned long UV; | |
5ff3f7a4 GS |
929 | # if defined(INT32_MAX) && LONGSIZE == 4 |
930 | # define IV_MAX INT32_MAX | |
931 | # define IV_MIN INT32_MIN | |
932 | # define UV_MAX UINT32_MAX | |
933 | # define UV_MIN UINT32_MIN | |
934 | # else | |
935 | # define IV_MAX PERL_LONG_MAX | |
936 | # define IV_MIN PERL_LONG_MIN | |
937 | # define UV_MAX PERL_ULONG_MAX | |
938 | # define UV_MIN PERL_ULONG_MIN | |
939 | # endif | |
79072805 LW |
940 | #endif |
941 | ||
760ac839 LW |
942 | /* Previously these definitions used hardcoded figures. |
943 | * It is hoped these formula are more portable, although | |
944 | * no data one way or another is presently known to me. | |
945 | * The "PERL_" names are used because these calculated constants | |
946 | * do not meet the ANSI requirements for LONG_MAX, etc., which | |
947 | * need to be constants acceptable to #if - kja | |
948 | * define PERL_LONG_MAX 2147483647L | |
949 | * define PERL_LONG_MIN (-LONG_MAX - 1) | |
950 | * define PERL ULONG_MAX 4294967295L | |
951 | */ | |
952 | ||
953 | #ifdef I_LIMITS /* Needed for cast_xxx() functions below. */ | |
954 | # include <limits.h> | |
955 | #else | |
956 | #ifdef I_VALUES | |
957 | # include <values.h> | |
958 | #endif | |
959 | #endif | |
960 | ||
99abf803 | 961 | /* |
962 | * Try to figure out max and min values for the integral types. THE CORRECT | |
963 | * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The | |
964 | * following hacks are used if neither limits.h or values.h provide them: | |
965 | * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0 | |
966 | * for types < int: (unsigned TYPE)~(unsigned)0 | |
967 | * The argument to ~ must be unsigned so that later signed->unsigned | |
968 | * conversion can't modify the value's bit pattern (e.g. -0 -> +0), | |
969 | * and it must not be smaller than int because ~ does integral promotion. | |
970 | * <type>_MAX: (<type>) (U<type>_MAX >> 1) | |
971 | * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>. | |
972 | * The latter is a hack which happens to work on some machines but | |
973 | * does *not* catch any random system, or things like integer types | |
974 | * with NaN if that is possible. | |
975 | * | |
976 | * All of the types are explicitly cast to prevent accidental loss of | |
977 | * numeric range, and in the hope that they will be less likely to confuse | |
978 | * over-eager optimizers. | |
979 | * | |
980 | */ | |
27d4fb96 | 981 | |
99abf803 | 982 | #define PERL_UCHAR_MIN ((unsigned char)0) |
983 | ||
984 | #ifdef UCHAR_MAX | |
985 | # define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX) | |
27d4fb96 | 986 | #else |
99abf803 | 987 | # ifdef MAXUCHAR |
988 | # define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR) | |
27d4fb96 | 989 | # else |
99abf803 | 990 | # define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0) |
27d4fb96 | 991 | # endif |
992 | #endif | |
99abf803 | 993 | |
994 | /* | |
995 | * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be | |
996 | * ambiguous. It may be equivalent to (signed char) or (unsigned char) | |
997 | * depending on local options. Until Configure detects this (or at least | |
998 | * detects whether the "signed" keyword is available) the CHAR ranges | |
999 | * will not be included. UCHAR functions normally. | |
1000 | * - kja | |
1001 | */ | |
27d4fb96 | 1002 | |
99abf803 | 1003 | #define PERL_USHORT_MIN ((unsigned short)0) |
1004 | ||
1005 | #ifdef USHORT_MAX | |
1006 | # define PERL_USHORT_MAX ((unsigned short)USHORT_MAX) | |
27d4fb96 | 1007 | #else |
99abf803 | 1008 | # ifdef MAXUSHORT |
1009 | # define PERL_USHORT_MAX ((unsigned short)MAXUSHORT) | |
27d4fb96 | 1010 | # else |
ef2f54b0 CB |
1011 | # ifdef USHRT_MAX |
1012 | # define PERL_USHORT_MAX ((unsigned short)USHRT_MAX) | |
1013 | # else | |
1014 | # define PERL_USHORT_MAX ((unsigned short)~(unsigned)0) | |
1015 | # endif | |
27d4fb96 | 1016 | # endif |
1017 | #endif | |
1018 | ||
27d4fb96 | 1019 | #ifdef SHORT_MAX |
99abf803 | 1020 | # define PERL_SHORT_MAX ((short)SHORT_MAX) |
27d4fb96 | 1021 | #else |
1022 | # ifdef MAXSHORT /* Often used in <values.h> */ | |
99abf803 | 1023 | # define PERL_SHORT_MAX ((short)MAXSHORT) |
27d4fb96 | 1024 | # else |
ef2f54b0 CB |
1025 | # ifdef SHRT_MAX |
1026 | # define PERL_SHORT_MAX ((short)SHRT_MAX) | |
1027 | # else | |
1028 | # define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1)) | |
1029 | # endif | |
27d4fb96 | 1030 | # endif |
1031 | #endif | |
1032 | ||
1033 | #ifdef SHORT_MIN | |
99abf803 | 1034 | # define PERL_SHORT_MIN ((short)SHORT_MIN) |
27d4fb96 | 1035 | #else |
1036 | # ifdef MINSHORT | |
99abf803 | 1037 | # define PERL_SHORT_MIN ((short)MINSHORT) |
27d4fb96 | 1038 | # else |
ef2f54b0 CB |
1039 | # ifdef SHRT_MIN |
1040 | # define PERL_SHORT_MIN ((short)SHRT_MIN) | |
1041 | # else | |
1042 | # define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3)) | |
1043 | # endif | |
27d4fb96 | 1044 | # endif |
1045 | #endif | |
1046 | ||
99abf803 | 1047 | #ifdef UINT_MAX |
1048 | # define PERL_UINT_MAX ((unsigned int)UINT_MAX) | |
27d4fb96 | 1049 | #else |
99abf803 | 1050 | # ifdef MAXUINT |
1051 | # define PERL_UINT_MAX ((unsigned int)MAXUINT) | |
27d4fb96 | 1052 | # else |
99abf803 | 1053 | # define PERL_UINT_MAX (~(unsigned int)0) |
27d4fb96 | 1054 | # endif |
1055 | #endif | |
1056 | ||
99abf803 | 1057 | #define PERL_UINT_MIN ((unsigned int)0) |
27d4fb96 | 1058 | |
1059 | #ifdef INT_MAX | |
99abf803 | 1060 | # define PERL_INT_MAX ((int)INT_MAX) |
27d4fb96 | 1061 | #else |
1062 | # ifdef MAXINT /* Often used in <values.h> */ | |
99abf803 | 1063 | # define PERL_INT_MAX ((int)MAXINT) |
27d4fb96 | 1064 | # else |
99abf803 | 1065 | # define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1)) |
27d4fb96 | 1066 | # endif |
1067 | #endif | |
1068 | ||
1069 | #ifdef INT_MIN | |
99abf803 | 1070 | # define PERL_INT_MIN ((int)INT_MIN) |
27d4fb96 | 1071 | #else |
1072 | # ifdef MININT | |
99abf803 | 1073 | # define PERL_INT_MIN ((int)MININT) |
27d4fb96 | 1074 | # else |
1075 | # define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3)) | |
1076 | # endif | |
1077 | #endif | |
1078 | ||
99abf803 | 1079 | #ifdef ULONG_MAX |
1080 | # define PERL_ULONG_MAX ((unsigned long)ULONG_MAX) | |
27d4fb96 | 1081 | #else |
99abf803 | 1082 | # ifdef MAXULONG |
1083 | # define PERL_ULONG_MAX ((unsigned long)MAXULONG) | |
27d4fb96 | 1084 | # else |
99abf803 | 1085 | # define PERL_ULONG_MAX (~(unsigned long)0) |
27d4fb96 | 1086 | # endif |
1087 | #endif | |
1088 | ||
99abf803 | 1089 | #define PERL_ULONG_MIN ((unsigned long)0L) |
27d4fb96 | 1090 | |
760ac839 | 1091 | #ifdef LONG_MAX |
99abf803 | 1092 | # define PERL_LONG_MAX ((long)LONG_MAX) |
760ac839 LW |
1093 | #else |
1094 | # ifdef MAXLONG /* Often used in <values.h> */ | |
99abf803 | 1095 | # define PERL_LONG_MAX ((long)MAXLONG) |
760ac839 | 1096 | # else |
99abf803 | 1097 | # define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1)) |
760ac839 LW |
1098 | # endif |
1099 | #endif | |
1100 | ||
1101 | #ifdef LONG_MIN | |
99abf803 | 1102 | # define PERL_LONG_MIN ((long)LONG_MIN) |
760ac839 LW |
1103 | #else |
1104 | # ifdef MINLONG | |
99abf803 | 1105 | # define PERL_LONG_MIN ((long)MINLONG) |
760ac839 | 1106 | # else |
27d4fb96 | 1107 | # define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3)) |
760ac839 LW |
1108 | # endif |
1109 | #endif | |
1110 | ||
99abf803 | 1111 | #ifdef HAS_QUAD |
1112 | ||
1113 | # ifdef UQUAD_MAX | |
1114 | # define PERL_UQUAD_MAX ((UV)UQUAD_MAX) | |
760ac839 | 1115 | # else |
99abf803 | 1116 | # define PERL_UQUAD_MAX (~(UV)0) |
760ac839 | 1117 | # endif |
760ac839 | 1118 | |
99abf803 | 1119 | # define PERL_UQUAD_MIN ((UV)0) |
27d4fb96 | 1120 | |
27d4fb96 | 1121 | # ifdef QUAD_MAX |
99abf803 | 1122 | # define PERL_QUAD_MAX ((IV)QUAD_MAX) |
27d4fb96 | 1123 | # else |
99abf803 | 1124 | # define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1)) |
27d4fb96 | 1125 | # endif |
1126 | ||
1127 | # ifdef QUAD_MIN | |
99abf803 | 1128 | # define PERL_QUAD_MIN ((IV)QUAD_MIN) |
27d4fb96 | 1129 | # else |
a6e633de | 1130 | # define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3)) |
27d4fb96 | 1131 | # endif |
1132 | ||
79072805 LW |
1133 | #endif |
1134 | ||
ee0007ab | 1135 | typedef MEM_SIZE STRLEN; |
450a55e4 | 1136 | |
79072805 LW |
1137 | typedef struct op OP; |
1138 | typedef struct cop COP; | |
1139 | typedef struct unop UNOP; | |
1140 | typedef struct binop BINOP; | |
1141 | typedef struct listop LISTOP; | |
1142 | typedef struct logop LOGOP; | |
1143 | typedef struct condop CONDOP; | |
1144 | typedef struct pmop PMOP; | |
1145 | typedef struct svop SVOP; | |
1146 | typedef struct gvop GVOP; | |
1147 | typedef struct pvop PVOP; | |
79072805 LW |
1148 | typedef struct loop LOOP; |
1149 | ||
1150 | typedef struct Outrec Outrec; | |
93a17b20 | 1151 | typedef struct interpreter PerlInterpreter; |
3e3baf6d TB |
1152 | #ifndef __BORLANDC__ |
1153 | typedef struct ff FF; /* XXX not defined anywhere, should go? */ | |
1154 | #endif | |
79072805 LW |
1155 | typedef struct sv SV; |
1156 | typedef struct av AV; | |
1157 | typedef struct hv HV; | |
1158 | typedef struct cv CV; | |
378cc40b | 1159 | typedef struct regexp REGEXP; |
79072805 | 1160 | typedef struct gp GP; |
0c30d9ec | 1161 | typedef struct gv GV; |
8990e307 | 1162 | typedef struct io IO; |
c09156bb | 1163 | typedef struct context PERL_CONTEXT; |
79072805 LW |
1164 | typedef struct block BLOCK; |
1165 | ||
1166 | typedef struct magic MAGIC; | |
ed6116ce | 1167 | typedef struct xrv XRV; |
79072805 LW |
1168 | typedef struct xpv XPV; |
1169 | typedef struct xpviv XPVIV; | |
ff68c719 | 1170 | typedef struct xpvuv XPVUV; |
79072805 LW |
1171 | typedef struct xpvnv XPVNV; |
1172 | typedef struct xpvmg XPVMG; | |
1173 | typedef struct xpvlv XPVLV; | |
1174 | typedef struct xpvav XPVAV; | |
1175 | typedef struct xpvhv XPVHV; | |
1176 | typedef struct xpvgv XPVGV; | |
1177 | typedef struct xpvcv XPVCV; | |
1178 | typedef struct xpvbm XPVBM; | |
1179 | typedef struct xpvfm XPVFM; | |
8990e307 | 1180 | typedef struct xpvio XPVIO; |
79072805 LW |
1181 | typedef struct mgvtbl MGVTBL; |
1182 | typedef union any ANY; | |
8d063cd8 | 1183 | |
378cc40b | 1184 | #include "handy.h" |
a0d0e21e | 1185 | |
03145268 SH |
1186 | /* Some day when we have more 64-bit experience under our belts we may |
1187 | * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At | |
1188 | * the moment (Oct 1998), though, keep them separate. --jhi | |
1189 | */ | |
5ff3f7a4 GS |
1190 | #ifdef USE_64_BITS |
1191 | # ifdef USE_64_BIT_FILES | |
03145268 SH |
1192 | # ifndef USE_64_BIT_OFFSETS |
1193 | # define USE_64_BIT_OFFSETS | |
5ff3f7a4 GS |
1194 | # endif |
1195 | # ifndef USE_64_BIT_STDIO | |
1196 | # define USE_64_BIT_STDIO | |
1197 | # endif | |
1198 | # ifndef USE_64_BIT_DBM | |
1199 | # define USE_64_BIT_DBM | |
1200 | # endif | |
1201 | # endif | |
03145268 SH |
1202 | /* Mention LSEEKSIZE here to get it included in %Config. */ |
1203 | # ifdef USE_64_BIT_OFFSETS | |
5ff3f7a4 GS |
1204 | # ifdef HAS_FSTAT64 |
1205 | # define fstat fstat64 | |
1206 | # endif | |
1207 | # ifdef HAS_FTRUNCATE64 | |
1208 | # define ftruncate ftruncate64 | |
1209 | # endif | |
1210 | # ifdef HAS_LSEEK64 | |
1211 | # define lseek lseek64 | |
1212 | # ifdef HAS_OFF64_T | |
1213 | # undef Off_t | |
1214 | # define Off_t off64_t | |
1215 | # endif | |
1216 | # endif | |
1217 | # ifdef HAS_LSTAT64 | |
1218 | # define lstat lstat64 | |
1219 | # endif | |
1220 | /* Some systems have open64() in libc but use that only | |
1221 | * for true LP64 mode, in mixed mode (ILP32LL64, for example) | |
85ab1d1d JH |
1222 | * they use the vanilla open(). Such systems should undefine |
1223 | * d_open64 in their hints files. --jhi */ | |
1224 | # if defined(HAS_OPEN64) | |
5ff3f7a4 GS |
1225 | # define open open64 |
1226 | # endif | |
1227 | # ifdef HAS_OPENDIR64 | |
1228 | # define opendir opendir64 | |
1229 | # endif | |
1230 | # ifdef HAS_READDIR64 | |
1231 | # define readdir readdir64 | |
1232 | # ifdef HAS_STRUCT_DIRENT64 | |
1233 | # define dirent dirent64 | |
1234 | # endif | |
1235 | # endif | |
1236 | # ifdef HAS_SEEKDIR64 | |
1237 | # define seekdir seekdir64 | |
1238 | # endif | |
1239 | # ifdef HAS_STAT64 | |
1240 | # define stat stat64 /* Affects also struct stat, hopefully okay. */ | |
1241 | # endif | |
1242 | # ifdef HAS_TELLDIR64 | |
1243 | # define telldir telldir64 | |
1244 | # endif | |
1245 | # ifdef HAS_TRUNCATE64 | |
1246 | # define truncate truncate64 | |
1247 | # endif | |
1248 | /* flock is not #defined here to be flock64 because it seems | |
1249 | that a system may have struct flock64 but still use flock() | |
1250 | and not flock64(). The actual flocking code in pp_sys.c | |
1251 | must be changed. Also lockf and lockf64 must be dealt | |
1252 | with in pp_sys.c. --jhi */ | |
1253 | # endif | |
1254 | # ifdef USE_64_BIT_STDIO | |
1255 | # ifdef HAS_FGETPOS64 | |
1256 | # define fgetpos fgetpos64 | |
1257 | # endif | |
1258 | # ifdef HAS_FOPEN64 | |
1259 | # define fopen fopen64 | |
1260 | # endif | |
1261 | # ifdef HAS_FREOPEN64 | |
1262 | # define freopen freopen64 | |
1263 | # endif | |
1264 | # ifdef HAS_FSEEK64 | |
1265 | # define fseek fseek64 | |
1266 | # endif | |
1267 | # ifdef HAS_FSEEKO64 | |
1268 | # define fseeko fseeko64 | |
1269 | # endif | |
1270 | # ifdef HAS_FSETPOS64 | |
1271 | # define fsetpos fsetpos64 | |
1272 | # endif | |
1273 | # ifdef HAS_FTELL64 | |
1274 | # define ftell ftell64 | |
1275 | # endif | |
1276 | # ifdef HAS_FTELLO64 | |
1277 | # define ftello ftello64 | |
1278 | # endif | |
1279 | # ifdef HAS_TMPFILE64 | |
1280 | # define tmpfile tmpfile64 | |
1281 | # endif | |
1282 | # endif | |
1283 | # ifdef USE_64_BIT_DBM | |
1284 | # ifdef HAS_DBMINIT64 | |
1285 | # define dbminit dbminit64 | |
1286 | # endif | |
1287 | # ifdef HAS_DBMCLOSE64 | |
1288 | # define dbmclose dbmclose64 | |
1289 | # endif | |
1290 | # ifdef HAS_FETCH64 | |
1291 | # define fetch fetch64 | |
1292 | # endif | |
1293 | # ifdef HAS_DELETE64 | |
1294 | # define delete delete64 | |
1295 | # endif | |
1296 | # ifdef HAS_STORE64 | |
1297 | # define store store64 | |
1298 | # endif | |
1299 | # ifdef HAS_FIRSTKEY64 | |
1300 | # define firstkey firstkey64 | |
1301 | # endif | |
1302 | # ifdef HAS_NEXTKEY64 | |
1303 | # define nextkey nextkey64 | |
1304 | # endif | |
1305 | # endif | |
1306 | #endif | |
1307 | ||
873ef191 GS |
1308 | #ifdef PERL_OBJECT |
1309 | typedef I32 (*filter_t) _((CPerlObj*, int, SV *, int)); | |
1310 | #else | |
16d20bd9 | 1311 | typedef I32 (*filter_t) _((int, SV *, int)); |
873ef191 GS |
1312 | #endif |
1313 | ||
16d20bd9 | 1314 | #define FILTER_READ(idx, sv, len) filter_read(idx, sv, len) |
3280af22 NIS |
1315 | #define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx]) |
1316 | #define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters)) | |
16d20bd9 | 1317 | |
6f71a643 JH |
1318 | #if defined(__OPEN_VM) |
1319 | # include "vmesa/vmesaish.h" | |
1320 | #endif | |
1321 | ||
748a9306 | 1322 | #ifdef DOSISH |
4633a7c4 LW |
1323 | # if defined(OS2) |
1324 | # include "os2ish.h" | |
1325 | # else | |
748a9306 | 1326 | # include "dosish.h" |
4633a7c4 | 1327 | # endif |
a0d0e21e | 1328 | #else |
748a9306 LW |
1329 | # if defined(VMS) |
1330 | # include "vmsish.h" | |
1331 | # else | |
0c30d9ec | 1332 | # if defined(PLAN9) |
1333 | # include "./plan9/plan9ish.h" | |
1334 | # else | |
1d84e8df JH |
1335 | # if defined(MPE) |
1336 | # include "mpeix/mpeixish.h" | |
1337 | # else | |
495c5fdc PG |
1338 | # if defined(__VOS__) |
1339 | # include "vosish.h" | |
1340 | # else | |
6f71a643 | 1341 | # include "unixish.h" |
495c5fdc | 1342 | # endif |
1d84e8df | 1343 | # endif |
0c30d9ec | 1344 | # endif |
748a9306 | 1345 | # endif |
32f822de GS |
1346 | #endif |
1347 | ||
ac4c12e7 GS |
1348 | #ifndef FUNC_NAME_TO_PTR |
1349 | #define FUNC_NAME_TO_PTR(name) name | |
1350 | #endif | |
1351 | ||
32f822de | 1352 | /* |
dd96f567 IZ |
1353 | * USE_THREADS needs to be after unixish.h as <pthread.h> includes |
1354 | * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h> | |
32f822de GS |
1355 | * this results in many functions being undeclared which bothers C++ |
1356 | * May make sense to have threads after "*ish.h" anyway | |
1357 | */ | |
1358 | ||
1359 | #ifdef USE_THREADS | |
79d59c5f GS |
1360 | /* pending resolution of licensing issues, we avoid the erstwhile |
1361 | * atomic.h everywhere */ | |
1362 | # define EMULATE_ATOMIC_REFCOUNTS | |
1363 | ||
32f822de GS |
1364 | # ifdef FAKE_THREADS |
1365 | # include "fakethr.h" | |
1366 | # else | |
1367 | # ifdef WIN32 | |
1368 | # include <win32thread.h> | |
1369 | # else | |
dd96f567 IZ |
1370 | # ifdef OS2 |
1371 | # include "os2thread.h" | |
1372 | # else | |
7f3d1cf1 BH |
1373 | # ifdef I_MACH_CTHREADS |
1374 | typedef cthread_t perl_os_thread; | |
1375 | typedef mutex_t perl_mutex; | |
1376 | typedef condition_t perl_cond; | |
1377 | typedef void * perl_key; | |
1378 | # else /* Posix threads */ | |
1379 | # include <pthread.h> | |
1380 | typedef pthread_t perl_os_thread; | |
1381 | typedef pthread_mutex_t perl_mutex; | |
1382 | typedef pthread_cond_t perl_cond; | |
1383 | typedef pthread_key_t perl_key; | |
1384 | # endif /* I_MACH_CTHREADS */ | |
dd96f567 | 1385 | # endif /* OS2 */ |
32f822de GS |
1386 | # endif /* WIN32 */ |
1387 | # endif /* FAKE_THREADS */ | |
1388 | #endif /* USE_THREADS */ | |
3fc1aec6 | 1389 | |
68dc0745 | 1390 | #ifdef VMS |
6b88bc9c | 1391 | # define STATUS_NATIVE PL_statusvalue_vms |
68dc0745 | 1392 | # define STATUS_NATIVE_EXPORT \ |
6b88bc9c | 1393 | ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) |
68dc0745 | 1394 | # define STATUS_NATIVE_SET(n) \ |
1395 | STMT_START { \ | |
6b88bc9c GS |
1396 | PL_statusvalue_vms = (n); \ |
1397 | if ((I32)PL_statusvalue_vms == -1) \ | |
3280af22 | 1398 | PL_statusvalue = -1; \ |
6b88bc9c | 1399 | else if (PL_statusvalue_vms & STS$M_SUCCESS) \ |
3280af22 | 1400 | PL_statusvalue = 0; \ |
6b88bc9c GS |
1401 | else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \ |
1402 | PL_statusvalue = 1 << 8; \ | |
68dc0745 | 1403 | else \ |
6b88bc9c | 1404 | PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \ |
68dc0745 | 1405 | } STMT_END |
3280af22 | 1406 | # define STATUS_POSIX PL_statusvalue |
68dc0745 | 1407 | # ifdef VMSISH_STATUS |
1408 | # define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX) | |
1409 | # else | |
1410 | # define STATUS_CURRENT STATUS_POSIX | |
1411 | # endif | |
1412 | # define STATUS_POSIX_SET(n) \ | |
1413 | STMT_START { \ | |
3280af22 NIS |
1414 | PL_statusvalue = (n); \ |
1415 | if (PL_statusvalue != -1) { \ | |
1416 | PL_statusvalue &= 0xFFFF; \ | |
6b88bc9c | 1417 | PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \ |
68dc0745 | 1418 | } \ |
6b88bc9c | 1419 | else PL_statusvalue_vms = -1; \ |
68dc0745 | 1420 | } STMT_END |
6b88bc9c GS |
1421 | # define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1) |
1422 | # define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44) | |
68dc0745 | 1423 | #else |
1424 | # define STATUS_NATIVE STATUS_POSIX | |
1425 | # define STATUS_NATIVE_EXPORT STATUS_POSIX | |
1426 | # define STATUS_NATIVE_SET STATUS_POSIX_SET | |
3280af22 | 1427 | # define STATUS_POSIX PL_statusvalue |
68dc0745 | 1428 | # define STATUS_POSIX_SET(n) \ |
1429 | STMT_START { \ | |
3280af22 NIS |
1430 | PL_statusvalue = (n); \ |
1431 | if (PL_statusvalue != -1) \ | |
1432 | PL_statusvalue &= 0xFFFF; \ | |
68dc0745 | 1433 | } STMT_END |
1434 | # define STATUS_CURRENT STATUS_POSIX | |
3280af22 NIS |
1435 | # define STATUS_ALL_SUCCESS (PL_statusvalue = 0) |
1436 | # define STATUS_ALL_FAILURE (PL_statusvalue = 1) | |
68dc0745 | 1437 | #endif |
1438 | ||
3fc1aec6 | 1439 | /* Some unistd.h's give a prototype for pause() even though |
1440 | HAS_PAUSE ends up undefined. This causes the #define | |
1441 | below to be rejected by the compmiler. Sigh. | |
1442 | */ | |
1443 | #ifdef HAS_PAUSE | |
1444 | #define Pause pause | |
1445 | #else | |
1446 | #define Pause() sleep((32767<<16)+32767) | |
748a9306 LW |
1447 | #endif |
1448 | ||
1449 | #ifndef IOCPARM_LEN | |
1450 | # ifdef IOCPARM_MASK | |
1451 | /* on BSDish systes we're safe */ | |
1452 | # define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK) | |
1453 | # else | |
1454 | /* otherwise guess at what's safe */ | |
1455 | # define IOCPARM_LEN(x) 256 | |
1456 | # endif | |
a0d0e21e LW |
1457 | #endif |
1458 | ||
0f4eea8f DL |
1459 | #ifdef UNION_ANY_DEFINITION |
1460 | UNION_ANY_DEFINITION; | |
1461 | #else | |
79072805 LW |
1462 | union any { |
1463 | void* any_ptr; | |
1464 | I32 any_i32; | |
a0d0e21e | 1465 | IV any_iv; |
85e6fe83 | 1466 | long any_long; |
565764a8 | 1467 | void (CPERLscope(*any_dptr)) _((void*)); |
79072805 | 1468 | }; |
0f4eea8f | 1469 | #endif |
79072805 | 1470 | |
11343788 | 1471 | #ifdef USE_THREADS |
52e1cb5e | 1472 | #define ARGSproto struct perl_thread *thr |
11343788 MB |
1473 | #else |
1474 | #define ARGSproto void | |
1475 | #endif /* USE_THREADS */ | |
1476 | ||
5aabfad6 | 1477 | /* Work around some cygwin32 problems with importing global symbols */ |
1478 | #if defined(CYGWIN32) && defined(DLLIMPORT) | |
1479 | # include "cw32imp.h" | |
1480 | #endif | |
1481 | ||
378cc40b | 1482 | #include "regexp.h" |
79072805 | 1483 | #include "sv.h" |
378cc40b | 1484 | #include "util.h" |
8d063cd8 | 1485 | #include "form.h" |
79072805 LW |
1486 | #include "gv.h" |
1487 | #include "cv.h" | |
22c35a8c | 1488 | #ifndef PERL_OBJECT |
79072805 | 1489 | #include "opcode.h" |
22c35a8c | 1490 | #endif |
79072805 LW |
1491 | #include "op.h" |
1492 | #include "cop.h" | |
1493 | #include "av.h" | |
1494 | #include "hv.h" | |
1495 | #include "mg.h" | |
1496 | #include "scope.h" | |
599cee73 | 1497 | #include "warning.h" |
d613ef02 GS |
1498 | #include "bytecode.h" |
1499 | #include "byterun.h" | |
a0ed51b3 | 1500 | #include "utf8.h" |
8d063cd8 | 1501 | |
7fae4e64 GS |
1502 | /* Current curly descriptor */ |
1503 | typedef struct curcur CURCUR; | |
1504 | struct curcur { | |
1505 | int parenfloor; /* how far back to strip paren data */ | |
1506 | int cur; /* how many instances of scan we've matched */ | |
1507 | int min; /* the minimal number of scans to match */ | |
1508 | int max; /* the maximal number of scans to match */ | |
1509 | int minmod; /* whether to work our way up or down */ | |
1510 | regnode * scan; /* the thing to match */ | |
1511 | regnode * next; /* what has to match after it */ | |
1512 | char * lastloc; /* where we started matching this scan */ | |
1513 | CURCUR * oldcc; /* current curly before we started this one */ | |
1514 | }; | |
1515 | ||
1516 | typedef struct _sublex_info SUBLEXINFO; | |
1517 | struct _sublex_info { | |
1518 | I32 super_state; /* lexer state to save */ | |
1519 | I32 sub_inwhat; /* "lex_inwhat" to use */ | |
1520 | OP *sub_op; /* "lex_op" to use */ | |
1521 | }; | |
1522 | ||
455ece5e | 1523 | typedef struct magic_state MGS; /* struct magic_state defined in mg.c */ |
76e3520e | 1524 | |
455ece5e | 1525 | #ifdef PERL_OBJECT |
76e3520e GS |
1526 | typedef struct { |
1527 | I32 len_min; | |
1528 | I32 len_delta; | |
1529 | I32 pos_min; | |
1530 | I32 pos_delta; | |
1531 | SV *last_found; | |
1532 | I32 last_end; /* min value, <0 unless valid. */ | |
1533 | I32 last_start_min; | |
1534 | I32 last_start_max; | |
1535 | SV **longest; /* Either &l_fixed, or &l_float. */ | |
1536 | SV *longest_fixed; | |
1537 | I32 offset_fixed; | |
1538 | SV *longest_float; | |
1539 | I32 offset_float_min; | |
1540 | I32 offset_float_max; | |
1541 | I32 flags; | |
1542 | } scan_data_t; | |
1543 | ||
1544 | typedef I32 CHECKPOINT; | |
1545 | #endif /* PERL_OBJECT */ | |
1546 | ||
450a55e4 | 1547 | #if defined(iAPX286) || defined(M_I286) || defined(I80286) |
a687059c LW |
1548 | # define I286 |
1549 | #endif | |
1550 | ||
fe14fcc3 LW |
1551 | #if defined(htonl) && !defined(HAS_HTONL) |
1552 | #define HAS_HTONL | |
ae986130 | 1553 | #endif |
fe14fcc3 LW |
1554 | #if defined(htons) && !defined(HAS_HTONS) |
1555 | #define HAS_HTONS | |
ae986130 | 1556 | #endif |
fe14fcc3 LW |
1557 | #if defined(ntohl) && !defined(HAS_NTOHL) |
1558 | #define HAS_NTOHL | |
ae986130 | 1559 | #endif |
fe14fcc3 LW |
1560 | #if defined(ntohs) && !defined(HAS_NTOHS) |
1561 | #define HAS_NTOHS | |
ae986130 | 1562 | #endif |
fe14fcc3 | 1563 | #ifndef HAS_HTONL |
d9d8d8de | 1564 | #if (BYTEORDER & 0xffff) != 0x4321 |
fe14fcc3 LW |
1565 | #define HAS_HTONS |
1566 | #define HAS_HTONL | |
1567 | #define HAS_NTOHS | |
1568 | #define HAS_NTOHL | |
a687059c LW |
1569 | #define MYSWAP |
1570 | #define htons my_swap | |
1571 | #define htonl my_htonl | |
1572 | #define ntohs my_swap | |
1573 | #define ntohl my_ntohl | |
1574 | #endif | |
1575 | #else | |
d9d8d8de | 1576 | #if (BYTEORDER & 0xffff) == 0x4321 |
fe14fcc3 LW |
1577 | #undef HAS_HTONS |
1578 | #undef HAS_HTONL | |
1579 | #undef HAS_NTOHS | |
1580 | #undef HAS_NTOHL | |
a687059c LW |
1581 | #endif |
1582 | #endif | |
1583 | ||
988174c1 LW |
1584 | /* |
1585 | * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'. | |
1586 | * -DWS | |
1587 | */ | |
1588 | #if BYTEORDER != 0x1234 | |
1589 | # define HAS_VTOHL | |
1590 | # define HAS_VTOHS | |
1591 | # define HAS_HTOVL | |
1592 | # define HAS_HTOVS | |
1593 | # if BYTEORDER == 0x4321 | |
1594 | # define vtohl(x) ((((x)&0xFF)<<24) \ | |
1595 | +(((x)>>24)&0xFF) \ | |
1596 | +(((x)&0x0000FF00)<<8) \ | |
1597 | +(((x)&0x00FF0000)>>8) ) | |
1598 | # define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF)) | |
1599 | # define htovl(x) vtohl(x) | |
1600 | # define htovs(x) vtohs(x) | |
1601 | # endif | |
1602 | /* otherwise default to functions in util.c */ | |
1603 | #endif | |
1604 | ||
0f85fab0 | 1605 | #ifdef CASTNEGFLOAT |
79072805 | 1606 | #define U_S(what) ((U16)(what)) |
0f85fab0 | 1607 | #define U_I(what) ((unsigned int)(what)) |
79072805 | 1608 | #define U_L(what) ((U32)(what)) |
0f85fab0 | 1609 | #else |
32f822de | 1610 | EXTERN_C U32 cast_ulong _((double)); |
232e078e AD |
1611 | #define U_S(what) ((U16)cast_ulong((double)(what))) |
1612 | #define U_I(what) ((unsigned int)cast_ulong((double)(what))) | |
1613 | #define U_L(what) (cast_ulong((double)(what))) | |
ee0007ab LW |
1614 | #endif |
1615 | ||
ed6116ce LW |
1616 | #ifdef CASTI32 |
1617 | #define I_32(what) ((I32)(what)) | |
a0d0e21e | 1618 | #define I_V(what) ((IV)(what)) |
5d94fbed | 1619 | #define U_V(what) ((UV)(what)) |
ed6116ce | 1620 | #else |
32f822de | 1621 | START_EXTERN_C |
a0d0e21e | 1622 | I32 cast_i32 _((double)); |
a0d0e21e | 1623 | IV cast_iv _((double)); |
5d94fbed | 1624 | UV cast_uv _((double)); |
32f822de | 1625 | END_EXTERN_C |
a6e633de | 1626 | #define I_32(what) (cast_i32((double)(what))) |
1627 | #define I_V(what) (cast_iv((double)(what))) | |
5d94fbed | 1628 | #define U_V(what) (cast_uv((double)(what))) |
ed6116ce LW |
1629 | #endif |
1630 | ||
79072805 LW |
1631 | struct Outrec { |
1632 | I32 o_lines; | |
d9d8d8de | 1633 | char *o_str; |
79072805 | 1634 | U32 o_len; |
8d063cd8 LW |
1635 | }; |
1636 | ||
352d5a3a LW |
1637 | #ifndef MAXSYSFD |
1638 | # define MAXSYSFD 2 | |
1639 | #endif | |
ee0007ab | 1640 | |
f82b3d41 | 1641 | #ifndef TMPPATH |
1642 | # define TMPPATH "/tmp/perl-eXXXXXX" | |
a0d0e21e | 1643 | #endif |
79072805 LW |
1644 | |
1645 | #ifndef __cplusplus | |
a0d0e21e LW |
1646 | Uid_t getuid _((void)); |
1647 | Uid_t geteuid _((void)); | |
1648 | Gid_t getgid _((void)); | |
1649 | Gid_t getegid _((void)); | |
79072805 | 1650 | #endif |
8d063cd8 LW |
1651 | |
1652 | #ifdef DEBUGGING | |
0c30d9ec | 1653 | #ifndef Perl_debug_log |
760ac839 | 1654 | #define Perl_debug_log PerlIO_stderr() |
0c30d9ec | 1655 | #endif |
9d116dd7 | 1656 | #undef YYDEBUG |
d96024cf | 1657 | #define YYDEBUG 1 |
79072805 | 1658 | #define DEB(a) a |
3280af22 NIS |
1659 | #define DEBUG(a) if (PL_debug) a |
1660 | #define DEBUG_p(a) if (PL_debug & 1) a | |
1661 | #define DEBUG_s(a) if (PL_debug & 2) a | |
1662 | #define DEBUG_l(a) if (PL_debug & 4) a | |
1663 | #define DEBUG_t(a) if (PL_debug & 8) a | |
1664 | #define DEBUG_o(a) if (PL_debug & 16) a | |
1665 | #define DEBUG_c(a) if (PL_debug & 32) a | |
1666 | #define DEBUG_P(a) if (PL_debug & 64) a | |
1667 | #define DEBUG_m(a) if (PL_curinterp && PL_debug & 128) a | |
1668 | #define DEBUG_f(a) if (PL_debug & 256) a | |
1669 | #define DEBUG_r(a) if (PL_debug & 512) a | |
1670 | #define DEBUG_x(a) if (PL_debug & 1024) a | |
1671 | #define DEBUG_u(a) if (PL_debug & 2048) a | |
1672 | #define DEBUG_L(a) if (PL_debug & 4096) a | |
1673 | #define DEBUG_H(a) if (PL_debug & 8192) a | |
1674 | #define DEBUG_X(a) if (PL_debug & 16384) a | |
1675 | #define DEBUG_D(a) if (PL_debug & 32768) a | |
8b73bbec IZ |
1676 | # ifdef USE_THREADS |
1677 | # define DEBUG_S(a) if (PL_debug & (1<<16)) a | |
1678 | # else | |
1679 | # define DEBUG_S(a) | |
1680 | # endif | |
79072805 LW |
1681 | #else |
1682 | #define DEB(a) | |
1683 | #define DEBUG(a) | |
1684 | #define DEBUG_p(a) | |
1685 | #define DEBUG_s(a) | |
1686 | #define DEBUG_l(a) | |
1687 | #define DEBUG_t(a) | |
1688 | #define DEBUG_o(a) | |
1689 | #define DEBUG_c(a) | |
1690 | #define DEBUG_P(a) | |
1691 | #define DEBUG_m(a) | |
1692 | #define DEBUG_f(a) | |
1693 | #define DEBUG_r(a) | |
1694 | #define DEBUG_x(a) | |
1695 | #define DEBUG_u(a) | |
8b73bbec | 1696 | #define DEBUG_S(a) |
79072805 LW |
1697 | #define DEBUG_H(a) |
1698 | #define DEBUG_X(a) | |
8990e307 | 1699 | #define DEBUG_D(a) |
8b73bbec | 1700 | #define DEBUG_S(a) |
8d063cd8 | 1701 | #endif |
fe14fcc3 | 1702 | #define YYMAXDEPTH 300 |
8d063cd8 | 1703 | |
a6e633de | 1704 | #ifndef assert /* <assert.h> might have been included somehow */ |
79072805 LW |
1705 | #define assert(what) DEB( { \ |
1706 | if (!(what)) { \ | |
463ee0b2 | 1707 | croak("Assertion failed: file \"%s\", line %d", \ |
79072805 | 1708 | __FILE__, __LINE__); \ |
6ad3d225 | 1709 | PerlProc_exit(1); \ |
79072805 | 1710 | }}) |
a6e633de | 1711 | #endif |
8d063cd8 | 1712 | |
450a55e4 | 1713 | struct ufuncs { |
a0d0e21e LW |
1714 | I32 (*uf_val)_((IV, SV*)); |
1715 | I32 (*uf_set)_((IV, SV*)); | |
1716 | IV uf_index; | |
450a55e4 LW |
1717 | }; |
1718 | ||
fe14fcc3 | 1719 | /* Fix these up for __STDC__ */ |
68dc0745 | 1720 | #ifndef DONT_DECLARE_STD |
a0d0e21e LW |
1721 | char *mktemp _((char*)); |
1722 | double atof _((const char*)); | |
1723 | #endif | |
79072805 | 1724 | |
352d5a3a | 1725 | #ifndef STANDARD_C |
fe14fcc3 | 1726 | /* All of these are in stdlib.h or time.h for ANSI C */ |
85e6fe83 | 1727 | Time_t time(); |
8d063cd8 | 1728 | struct tm *gmtime(), *localtime(); |
092bebab | 1729 | #if defined(OEMVS) || defined(__OPEN_VM) |
9d116dd7 JH |
1730 | char *(strchr)(), *(strrchr)(); |
1731 | char *(strcpy)(), *(strcat)(); | |
1732 | #else | |
93a17b20 | 1733 | char *strchr(), *strrchr(); |
378cc40b | 1734 | char *strcpy(), *strcat(); |
9d116dd7 | 1735 | #endif |
352d5a3a | 1736 | #endif /* ! STANDARD_C */ |
8d063cd8 | 1737 | |
79072805 LW |
1738 | |
1739 | #ifdef I_MATH | |
1740 | # include <math.h> | |
1741 | #else | |
32f822de | 1742 | START_EXTERN_C |
a0d0e21e | 1743 | double exp _((double)); |
a0d0e21e | 1744 | double log _((double)); |
c635e13b | 1745 | double log10 _((double)); |
a0d0e21e | 1746 | double sqrt _((double)); |
c635e13b | 1747 | double frexp _((double,int*)); |
1748 | double ldexp _((double,int)); | |
a0d0e21e LW |
1749 | double modf _((double,double*)); |
1750 | double sin _((double)); | |
1751 | double cos _((double)); | |
1752 | double atan2 _((double,double)); | |
1753 | double pow _((double,double)); | |
32f822de | 1754 | END_EXTERN_C |
79072805 LW |
1755 | #endif |
1756 | ||
a0d0e21e | 1757 | #ifndef __cplusplus |
26618a56 | 1758 | # ifdef __NeXT__ /* or whatever catches all NeXTs */ |
3fc1aec6 | 1759 | char *crypt (); /* Maybe more hosts will need the unprototyped version */ |
26618a56 GS |
1760 | # else |
1761 | # if !defined(WIN32) || !defined(HAVE_DES_FCRYPT) | |
a0d0e21e | 1762 | char *crypt _((const char*, const char*)); |
26618a56 GS |
1763 | # endif /* !WIN32 && !HAVE_CRYPT_SOURCE */ |
1764 | # endif /* !__NeXT__ */ | |
1765 | # ifndef DONT_DECLARE_STD | |
1766 | # ifndef getenv | |
a0d0e21e | 1767 | char *getenv _((const char*)); |
26618a56 | 1768 | # endif /* !getenv */ |
a0d0e21e | 1769 | Off_t lseek _((int,Off_t,int)); |
26618a56 | 1770 | # endif /* !DONT_DECLARE_STD */ |
a0d0e21e | 1771 | char *getlogin _((void)); |
26618a56 | 1772 | #endif /* !__cplusplus */ |
79072805 | 1773 | |
16d20bd9 | 1774 | #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */ |
378cc40b | 1775 | #define UNLINK unlnk |
a0d0e21e | 1776 | I32 unlnk _((char*)); |
8d063cd8 LW |
1777 | #else |
1778 | #define UNLINK unlink | |
1779 | #endif | |
a687059c | 1780 | |
fe14fcc3 | 1781 | #ifndef HAS_SETREUID |
85e6fe83 LW |
1782 | # ifdef HAS_SETRESUID |
1783 | # define setreuid(r,e) setresuid(r,e,(Uid_t)-1) | |
1784 | # define HAS_SETREUID | |
1785 | # endif | |
a687059c | 1786 | #endif |
fe14fcc3 | 1787 | #ifndef HAS_SETREGID |
85e6fe83 LW |
1788 | # ifdef HAS_SETRESGID |
1789 | # define setregid(r,e) setresgid(r,e,(Gid_t)-1) | |
1790 | # define HAS_SETREGID | |
1791 | # endif | |
a687059c | 1792 | #endif |
ee0007ab | 1793 | |
ff68c719 | 1794 | typedef Signal_t (*Sighandler_t) _((int)); |
1795 | ||
1796 | #ifdef HAS_SIGACTION | |
1797 | typedef struct sigaction Sigsave_t; | |
1798 | #else | |
1799 | typedef Sighandler_t Sigsave_t; | |
1800 | #endif | |
1801 | ||
ee0007ab LW |
1802 | #define SCAN_DEF 0 |
1803 | #define SCAN_TR 1 | |
1804 | #define SCAN_REPL 2 | |
79072805 LW |
1805 | |
1806 | #ifdef DEBUGGING | |
4633a7c4 | 1807 | # ifndef register |
a0d0e21e LW |
1808 | # define register |
1809 | # endif | |
1810 | # define PAD_SV(po) pad_sv(po) | |
2ddcc7aa | 1811 | # define RUNOPS_DEFAULT runops_debug |
79072805 | 1812 | #else |
6b88bc9c | 1813 | # define PAD_SV(po) PL_curpad[po] |
2ddcc7aa | 1814 | # define RUNOPS_DEFAULT runops_standard |
79072805 LW |
1815 | #endif |
1816 | ||
18f739ee | 1817 | #ifdef MYMALLOC |
51dc0457 NIS |
1818 | # define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex) |
1819 | # define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex) | |
18f739ee IZ |
1820 | #else |
1821 | # define MALLOC_INIT | |
1822 | # define MALLOC_TERM | |
1823 | #endif | |
1824 | ||
b6d9d515 | 1825 | |
44a0ac01 MB |
1826 | /* |
1827 | * These need prototyping here because <proto.h> isn't | |
1828 | * included until after runops is initialised. | |
1829 | */ | |
1830 | ||
76e3520e | 1831 | #ifndef PERL_OBJECT |
22c35a8c | 1832 | typedef int (*runops_proc_t) _((void)); |
44a0ac01 MB |
1833 | int runops_standard _((void)); |
1834 | #ifdef DEBUGGING | |
1835 | int runops_debug _((void)); | |
1836 | #endif | |
22c35a8c GS |
1837 | #endif |
1838 | ||
44a0ac01 | 1839 | |
940cb80d | 1840 | /* _ (for $_) must be first in the following list (DEFSV requires it) */ |
54b9620d | 1841 | #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@" |
a863c7d1 | 1842 | |
0c30d9ec | 1843 | /* VMS doesn't use environ array and NeXT has problems with crt0.o globals */ |
1844 | #if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__)) | |
16de4a3e RS |
1845 | #if !defined(DONT_DECLARE_STD) \ |
1846 | || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) \ | |
1847 | || defined(__sgi) || defined(__DGUX) | |
79072805 | 1848 | extern char ** environ; /* environment variables supplied via exec */ |
a0d0e21e | 1849 | #endif |
0c30d9ec | 1850 | #else |
1851 | # if defined(NeXT) && defined(__DYNAMIC__) | |
1852 | ||
1853 | # include <mach-o/dyld.h> | |
1854 | EXT char *** environ_pointer; | |
1855 | # define environ (*environ_pointer) | |
1856 | # endif | |
1857 | #endif /* environ processing */ | |
1858 | ||
79072805 | 1859 | |
79072805 | 1860 | /* handy constants */ |
22c35a8c | 1861 | EXTCONST char PL_warn_uninit[] |
a0d0e21e | 1862 | INIT("Use of uninitialized value"); |
22c35a8c | 1863 | EXTCONST char PL_warn_nosemi[] |
463ee0b2 | 1864 | INIT("Semicolon seems to be missing"); |
22c35a8c | 1865 | EXTCONST char PL_warn_reserved[] |
463ee0b2 | 1866 | INIT("Unquoted string \"%s\" may clash with future reserved word"); |
22c35a8c | 1867 | EXTCONST char PL_warn_nl[] |
93a17b20 | 1868 | INIT("Unsuccessful %s on filename containing newline"); |
22c35a8c | 1869 | EXTCONST char PL_no_wrongref[] |
a0d0e21e | 1870 | INIT("Can't use %s ref as %s ref"); |
22c35a8c | 1871 | EXTCONST char PL_no_symref[] |
748a9306 | 1872 | INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use"); |
22c35a8c | 1873 | EXTCONST char PL_no_usym[] |
8990e307 | 1874 | INIT("Can't use an undefined value as %s reference"); |
22c35a8c | 1875 | EXTCONST char PL_no_aelem[] |
93a17b20 | 1876 | INIT("Modification of non-creatable array value attempted, subscript %d"); |
22c35a8c | 1877 | EXTCONST char PL_no_helem[] |
93a17b20 | 1878 | INIT("Modification of non-creatable hash value attempted, subscript \"%s\""); |
22c35a8c | 1879 | EXTCONST char PL_no_modify[] |
93a17b20 | 1880 | INIT("Modification of a read-only value attempted"); |
22c35a8c | 1881 | EXTCONST char PL_no_mem[] |
93a17b20 | 1882 | INIT("Out of memory!\n"); |
22c35a8c | 1883 | EXTCONST char PL_no_security[] |
463ee0b2 | 1884 | INIT("Insecure dependency in %s%s"); |
22c35a8c | 1885 | EXTCONST char PL_no_sock_func[] |
93a17b20 | 1886 | INIT("Unsupported socket function \"%s\" called"); |
22c35a8c | 1887 | EXTCONST char PL_no_dir_func[] |
93a17b20 | 1888 | INIT("Unsupported directory function \"%s\" called"); |
22c35a8c | 1889 | EXTCONST char PL_no_func[] |
93a17b20 | 1890 | INIT("The %s function is unimplemented"); |
22c35a8c | 1891 | EXTCONST char PL_no_myglob[] |
748a9306 | 1892 | INIT("\"my\" variable %s can't be in a package"); |
93a17b20 | 1893 | |
79072805 | 1894 | #ifdef DOINIT |
22c35a8c GS |
1895 | EXT char *PL_sig_name[] = { SIG_NAME }; |
1896 | EXT int PL_sig_num[] = { SIG_NUM }; | |
1897 | EXT SV * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)]; | |
1898 | EXT SV * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)]; | |
79072805 | 1899 | #else |
22c35a8c GS |
1900 | EXT char *PL_sig_name[]; |
1901 | EXT int PL_sig_num[]; | |
1902 | EXT SV * PL_psig_ptr[]; | |
1903 | EXT SV * PL_psig_name[]; | |
79072805 LW |
1904 | #endif |
1905 | ||
bbce6d69 | 1906 | /* fast case folding tables */ |
1907 | ||
79072805 | 1908 | #ifdef DOINIT |
9d116dd7 | 1909 | #ifdef EBCDIC |
22c35a8c | 1910 | EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */ |
9d116dd7 JH |
1911 | 0, 1, 2, 3, 4, 5, 6, 7, |
1912 | 8, 9, 10, 11, 12, 13, 14, 15, | |
1913 | 16, 17, 18, 19, 20, 21, 22, 23, | |
1914 | 24, 25, 26, 27, 28, 29, 30, 31, | |
1915 | 32, 33, 34, 35, 36, 37, 38, 39, | |
1916 | 40, 41, 42, 43, 44, 45, 46, 47, | |
1917 | 48, 49, 50, 51, 52, 53, 54, 55, | |
1918 | 56, 57, 58, 59, 60, 61, 62, 63, | |
1919 | 64, 65, 66, 67, 68, 69, 70, 71, | |
1920 | 72, 73, 74, 75, 76, 77, 78, 79, | |
1921 | 80, 81, 82, 83, 84, 85, 86, 87, | |
1922 | 88, 89, 90, 91, 92, 93, 94, 95, | |
1923 | 96, 97, 98, 99, 100, 101, 102, 103, | |
1924 | 104, 105, 106, 107, 108, 109, 110, 111, | |
1925 | 112, 113, 114, 115, 116, 117, 118, 119, | |
1926 | 120, 121, 122, 123, 124, 125, 126, 127, | |
1927 | 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
1928 | 'H', 'I', 138, 139, 140, 141, 142, 143, | |
1929 | 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P', | |
1930 | 'Q', 'R', 154, 155, 156, 157, 158, 159, | |
1931 | 160, 161, 'S', 'T', 'U', 'V', 'W', 'X', | |
1932 | 'Y', 'Z', 170, 171, 172, 173, 174, 175, | |
1933 | 176, 177, 178, 179, 180, 181, 182, 183, | |
1934 | 184, 185, 186, 187, 188, 189, 190, 191, | |
1935 | 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
1936 | 'h', 'i', 202, 203, 204, 205, 206, 207, | |
1937 | 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p', | |
1938 | 'q', 'r', 218, 219, 220, 221, 222, 223, | |
1939 | 224, 225, 's', 't', 'u', 'v', 'w', 'x', | |
1940 | 'y', 'z', 234, 235, 236, 237, 238, 239, | |
1941 | 240, 241, 242, 243, 244, 245, 246, 247, | |
1942 | 248, 249, 250, 251, 252, 253, 254, 255 | |
1943 | }; | |
1944 | #else /* ascii rather than ebcdic */ | |
22c35a8c | 1945 | EXTCONST unsigned char PL_fold[] = { |
79072805 LW |
1946 | 0, 1, 2, 3, 4, 5, 6, 7, |
1947 | 8, 9, 10, 11, 12, 13, 14, 15, | |
1948 | 16, 17, 18, 19, 20, 21, 22, 23, | |
1949 | 24, 25, 26, 27, 28, 29, 30, 31, | |
1950 | 32, 33, 34, 35, 36, 37, 38, 39, | |
1951 | 40, 41, 42, 43, 44, 45, 46, 47, | |
1952 | 48, 49, 50, 51, 52, 53, 54, 55, | |
1953 | 56, 57, 58, 59, 60, 61, 62, 63, | |
1954 | 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
1955 | 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
1956 | 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', | |
1957 | 'x', 'y', 'z', 91, 92, 93, 94, 95, | |
1958 | 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
1959 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | |
1960 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | |
1961 | 'X', 'Y', 'Z', 123, 124, 125, 126, 127, | |
1962 | 128, 129, 130, 131, 132, 133, 134, 135, | |
1963 | 136, 137, 138, 139, 140, 141, 142, 143, | |
1964 | 144, 145, 146, 147, 148, 149, 150, 151, | |
1965 | 152, 153, 154, 155, 156, 157, 158, 159, | |
1966 | 160, 161, 162, 163, 164, 165, 166, 167, | |
1967 | 168, 169, 170, 171, 172, 173, 174, 175, | |
1968 | 176, 177, 178, 179, 180, 181, 182, 183, | |
1969 | 184, 185, 186, 187, 188, 189, 190, 191, | |
1970 | 192, 193, 194, 195, 196, 197, 198, 199, | |
1971 | 200, 201, 202, 203, 204, 205, 206, 207, | |
1972 | 208, 209, 210, 211, 212, 213, 214, 215, | |
1973 | 216, 217, 218, 219, 220, 221, 222, 223, | |
1974 | 224, 225, 226, 227, 228, 229, 230, 231, | |
1975 | 232, 233, 234, 235, 236, 237, 238, 239, | |
1976 | 240, 241, 242, 243, 244, 245, 246, 247, | |
1977 | 248, 249, 250, 251, 252, 253, 254, 255 | |
1978 | }; | |
9d116dd7 | 1979 | #endif /* !EBCDIC */ |
79072805 | 1980 | #else |
22c35a8c | 1981 | EXTCONST unsigned char PL_fold[]; |
79072805 LW |
1982 | #endif |
1983 | ||
1984 | #ifdef DOINIT | |
22c35a8c | 1985 | EXT unsigned char PL_fold_locale[] = { |
79072805 LW |
1986 | 0, 1, 2, 3, 4, 5, 6, 7, |
1987 | 8, 9, 10, 11, 12, 13, 14, 15, | |
1988 | 16, 17, 18, 19, 20, 21, 22, 23, | |
1989 | 24, 25, 26, 27, 28, 29, 30, 31, | |
1990 | 32, 33, 34, 35, 36, 37, 38, 39, | |
1991 | 40, 41, 42, 43, 44, 45, 46, 47, | |
1992 | 48, 49, 50, 51, 52, 53, 54, 55, | |
1993 | 56, 57, 58, 59, 60, 61, 62, 63, | |
1994 | 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g', | |
1995 | 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
1996 | 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', | |
1997 | 'x', 'y', 'z', 91, 92, 93, 94, 95, | |
1998 | 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
1999 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | |
2000 | 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', | |
2001 | 'X', 'Y', 'Z', 123, 124, 125, 126, 127, | |
2002 | 128, 129, 130, 131, 132, 133, 134, 135, | |
2003 | 136, 137, 138, 139, 140, 141, 142, 143, | |
2004 | 144, 145, 146, 147, 148, 149, 150, 151, | |
2005 | 152, 153, 154, 155, 156, 157, 158, 159, | |
2006 | 160, 161, 162, 163, 164, 165, 166, 167, | |
2007 | 168, 169, 170, 171, 172, 173, 174, 175, | |
2008 | 176, 177, 178, 179, 180, 181, 182, 183, | |
2009 | 184, 185, 186, 187, 188, 189, 190, 191, | |
2010 | 192, 193, 194, 195, 196, 197, 198, 199, | |
2011 | 200, 201, 202, 203, 204, 205, 206, 207, | |
2012 | 208, 209, 210, 211, 212, 213, 214, 215, | |
2013 | 216, 217, 218, 219, 220, 221, 222, 223, | |
2014 | 224, 225, 226, 227, 228, 229, 230, 231, | |
2015 | 232, 233, 234, 235, 236, 237, 238, 239, | |
2016 | 240, 241, 242, 243, 244, 245, 246, 247, | |
2017 | 248, 249, 250, 251, 252, 253, 254, 255 | |
2018 | }; | |
2019 | #else | |
22c35a8c | 2020 | EXT unsigned char PL_fold_locale[]; |
79072805 LW |
2021 | #endif |
2022 | ||
2023 | #ifdef DOINIT | |
9d116dd7 | 2024 | #ifdef EBCDIC |
22c35a8c | 2025 | EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */ |
9d116dd7 JH |
2026 | 1, 2, 84, 151, 154, 155, 156, 157, |
2027 | 165, 246, 250, 3, 158, 7, 18, 29, | |
2028 | 40, 51, 62, 73, 85, 96, 107, 118, | |
2029 | 129, 140, 147, 148, 149, 150, 152, 153, | |
2030 | 255, 6, 8, 9, 10, 11, 12, 13, | |
2031 | 14, 15, 24, 25, 26, 27, 28, 226, | |
2032 | 29, 30, 31, 32, 33, 43, 44, 45, | |
2033 | 46, 47, 48, 49, 50, 76, 77, 78, | |
2034 | 79, 80, 81, 82, 83, 84, 85, 86, | |
2035 | 87, 94, 95, 234, 181, 233, 187, 190, | |
2036 | 180, 96, 97, 98, 99, 100, 101, 102, | |
2037 | 104, 112, 182, 174, 236, 232, 229, 103, | |
2038 | 228, 226, 114, 115, 116, 117, 118, 119, | |
2039 | 120, 121, 122, 235, 176, 230, 194, 162, | |
2040 | 130, 131, 132, 133, 134, 135, 136, 137, | |
2041 | 138, 139, 201, 205, 163, 217, 220, 224, | |
2042 | 5, 248, 227, 244, 242, 255, 241, 231, | |
2043 | 240, 253, 16, 197, 19, 20, 21, 187, | |
2044 | 23, 169, 210, 245, 237, 249, 247, 239, | |
2045 | 168, 252, 34, 196, 36, 37, 38, 39, | |
2046 | 41, 42, 251, 254, 238, 223, 221, 213, | |
2047 | 225, 177, 52, 53, 54, 55, 56, 57, | |
2048 | 58, 59, 60, 61, 63, 64, 65, 66, | |
2049 | 67, 68, 69, 70, 71, 72, 74, 75, | |
2050 | 205, 208, 186, 202, 200, 218, 198, 179, | |
2051 | 178, 214, 88, 89, 90, 91, 92, 93, | |
2052 | 217, 166, 170, 207, 199, 209, 206, 204, | |
2053 | 160, 212, 105, 106, 108, 109, 110, 111, | |
2054 | 203, 113, 216, 215, 192, 175, 193, 243, | |
2055 | 172, 161, 123, 124, 125, 126, 127, 128, | |
2056 | 222, 219, 211, 195, 188, 193, 185, 184, | |
2057 | 191, 183, 141, 142, 143, 144, 145, 146 | |
2058 | }; | |
2059 | #else /* ascii rather than ebcdic */ | |
22c35a8c | 2060 | EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */ |
79072805 LW |
2061 | 1, 2, 84, 151, 154, 155, 156, 157, |
2062 | 165, 246, 250, 3, 158, 7, 18, 29, | |
2063 | 40, 51, 62, 73, 85, 96, 107, 118, | |
2064 | 129, 140, 147, 148, 149, 150, 152, 153, | |
2065 | 255, 182, 224, 205, 174, 176, 180, 217, | |
2066 | 233, 232, 236, 187, 235, 228, 234, 226, | |
2067 | 222, 219, 211, 195, 188, 193, 185, 184, | |
2068 | 191, 183, 201, 229, 181, 220, 194, 162, | |
2069 | 163, 208, 186, 202, 200, 218, 198, 179, | |
2070 | 178, 214, 166, 170, 207, 199, 209, 206, | |
2071 | 204, 160, 212, 216, 215, 192, 175, 173, | |
2072 | 243, 172, 161, 190, 203, 189, 164, 230, | |
2073 | 167, 248, 227, 244, 242, 255, 241, 231, | |
2074 | 240, 253, 169, 210, 245, 237, 249, 247, | |
2075 | 239, 168, 252, 251, 254, 238, 223, 221, | |
2076 | 213, 225, 177, 197, 171, 196, 159, 4, | |
2077 | 5, 6, 8, 9, 10, 11, 12, 13, | |
2078 | 14, 15, 16, 17, 19, 20, 21, 22, | |
2079 | 23, 24, 25, 26, 27, 28, 30, 31, | |
2080 | 32, 33, 34, 35, 36, 37, 38, 39, | |
2081 | 41, 42, 43, 44, 45, 46, 47, 48, | |
2082 | 49, 50, 52, 53, 54, 55, 56, 57, | |
2083 | 58, 59, 60, 61, 63, 64, 65, 66, | |
2084 | 67, 68, 69, 70, 71, 72, 74, 75, | |
2085 | 76, 77, 78, 79, 80, 81, 82, 83, | |
2086 | 86, 87, 88, 89, 90, 91, 92, 93, | |
2087 | 94, 95, 97, 98, 99, 100, 101, 102, | |
2088 | 103, 104, 105, 106, 108, 109, 110, 111, | |
2089 | 112, 113, 114, 115, 116, 117, 119, 120, | |
2090 | 121, 122, 123, 124, 125, 126, 127, 128, | |
2091 | 130, 131, 132, 133, 134, 135, 136, 137, | |
2092 | 138, 139, 141, 142, 143, 144, 145, 146 | |
2093 | }; | |
9d116dd7 | 2094 | #endif |
79072805 | 2095 | #else |
22c35a8c | 2096 | EXTCONST unsigned char PL_freq[]; |
79072805 LW |
2097 | #endif |
2098 | ||
8990e307 LW |
2099 | #ifdef DEBUGGING |
2100 | #ifdef DOINIT | |
22c35a8c | 2101 | EXTCONST char* PL_block_type[] = { |
8990e307 LW |
2102 | "NULL", |
2103 | "SUB", | |
2104 | "EVAL", | |
2105 | "LOOP", | |
2106 | "SUBST", | |
2107 | "BLOCK", | |
2108 | }; | |
2109 | #else | |
22c35a8c | 2110 | EXTCONST char* PL_block_type[]; |
8990e307 LW |
2111 | #endif |
2112 | #endif | |
2113 | ||
79072805 LW |
2114 | /*****************************************************************************/ |
2115 | /* This lexer/parser stuff is currently global since yacc is hard to reenter */ | |
2116 | /*****************************************************************************/ | |
8990e307 | 2117 | /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */ |
79072805 | 2118 | |
a0d0e21e LW |
2119 | #include "perly.h" |
2120 | ||
fb73857a | 2121 | #define LEX_NOTPARSING 11 /* borrowed from toke.c */ |
2122 | ||
79072805 LW |
2123 | typedef enum { |
2124 | XOPERATOR, | |
2125 | XTERM, | |
79072805 | 2126 | XREF, |
8990e307 | 2127 | XSTATE, |
a0d0e21e LW |
2128 | XBLOCK, |
2129 | XTERMBLOCK | |
79072805 LW |
2130 | } expectation; |
2131 | ||
85e6fe83 LW |
2132 | |
2133 | /* Note: the lowest 8 bits are reserved for | |
2134 | stuffing into op->op_private */ | |
2135 | #define HINT_INTEGER 0x00000001 | |
2136 | #define HINT_STRICT_REFS 0x00000002 | |
a0ed51b3 LW |
2137 | /* #define HINT_notused4 0x00000004 */ |
2138 | #define HINT_UTF8 0x00000008 | |
2139 | /* #define HINT_notused10 0x00000010 */ | |
2140 | /* Note: 20,40,80 used for NATIVE_HINTS */ | |
85e6fe83 LW |
2141 | |
2142 | #define HINT_BLOCK_SCOPE 0x00000100 | |
2143 | #define HINT_STRICT_SUBS 0x00000200 | |
2144 | #define HINT_STRICT_VARS 0x00000400 | |
bbce6d69 | 2145 | #define HINT_LOCALE 0x00000800 |
85e6fe83 | 2146 | |
b3ac6de7 IZ |
2147 | #define HINT_NEW_INTEGER 0x00001000 |
2148 | #define HINT_NEW_FLOAT 0x00002000 | |
2149 | #define HINT_NEW_BINARY 0x00004000 | |
2150 | #define HINT_NEW_STRING 0x00008000 | |
2151 | #define HINT_NEW_RE 0x00010000 | |
2152 | #define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */ | |
2153 | ||
b3eb6a9b | 2154 | #define HINT_RE_TAINT 0x00100000 |
e4d48cc9 | 2155 | #define HINT_RE_EVAL 0x00200000 |
b3eb6a9b | 2156 | |
5ff3f7a4 GS |
2157 | #define HINT_FILETEST_ACCESS 0x00400000 |
2158 | ||
d4cce5f1 NIS |
2159 | /* Various states of an input record separator SV (rs, nrs) */ |
2160 | #define RsSNARF(sv) (! SvOK(sv)) | |
2161 | #define RsSIMPLE(sv) (SvOK(sv) && SvCUR(sv)) | |
2162 | #define RsPARA(sv) (SvOK(sv) && ! SvCUR(sv)) | |
5b2b9c68 | 2163 | #define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0)) |
79072805 | 2164 | |
56953603 | 2165 | /* Enable variables which are pointers to functions */ |
15e52e56 GS |
2166 | #ifdef PERL_OBJECT |
2167 | typedef regexp*(CPerlObj::*regcomp_t) _((char* exp, char* xend, PMOP* pm)); | |
2168 | typedef I32 (CPerlObj::*regexec_t) _((regexp* prog, char* stringarg, | |
2169 | char* strend, char* strbeg, | |
2170 | I32 minend, SV* screamer, void* data, | |
2171 | U32 flags)); | |
2172 | #else | |
56953603 IZ |
2173 | typedef regexp*(*regcomp_t) _((char* exp, char* xend, PMOP* pm)); |
2174 | typedef I32 (*regexec_t) _((regexp* prog, char* stringarg, char* strend, char* | |
2175 | strbeg, I32 minend, SV* screamer, void* data, | |
2176 | U32 flags)); | |
2177 | ||
15e52e56 GS |
2178 | #endif |
2179 | ||
22239a37 NIS |
2180 | /* Set up PERLVAR macros for populating structs */ |
2181 | #define PERLVAR(var,type) type var; | |
2182 | #define PERLVARI(var,type,init) type var; | |
3fe35a81 | 2183 | #define PERLVARIC(var,type,init) type var; |
22239a37 | 2184 | |
58a50f62 GS |
2185 | /* Interpreter exitlist entry */ |
2186 | typedef struct exitlistentry { | |
2187 | #ifdef PERL_OBJECT | |
2188 | void (*fn) _((CPerlObj*, void*)); | |
2189 | #else | |
2190 | void (*fn) _((void*)); | |
2191 | #endif | |
2192 | void *ptr; | |
2193 | } PerlExitListEntry; | |
2194 | ||
76e3520e GS |
2195 | #ifdef PERL_OBJECT |
2196 | extern "C" CPerlObj* perl_alloc _((IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*)); | |
2197 | ||
22c35a8c | 2198 | #ifdef PERL_OBJECT |
76e3520e | 2199 | typedef int (CPerlObj::*runops_proc_t) _((void)); |
22c35a8c GS |
2200 | #endif /* PERL_OBJECT */ |
2201 | ||
76e3520e GS |
2202 | #undef EXT |
2203 | #define EXT | |
2204 | #undef EXTCONST | |
2205 | #define EXTCONST | |
2206 | #undef INIT | |
2207 | #define INIT(x) | |
2208 | ||
2209 | class CPerlObj { | |
2210 | public: | |
2211 | CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*); | |
2212 | void Init(void); | |
2213 | void* operator new(size_t nSize, IPerlMem *pvtbl); | |
2214 | #endif /* PERL_OBJECT */ | |
2215 | ||
22239a37 NIS |
2216 | #ifdef PERL_GLOBAL_STRUCT |
2217 | struct perl_vars { | |
2218 | #include "perlvars.h" | |
2219 | }; | |
2220 | ||
2221 | #ifdef PERL_CORE | |
533c011a NIS |
2222 | EXT struct perl_vars PL_Vars; |
2223 | EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars); | |
2224 | #else /* PERL_CORE */ | |
22239a37 NIS |
2225 | #if !defined(__GNUC__) || !defined(WIN32) |
2226 | EXT | |
533c011a NIS |
2227 | #endif /* WIN32 */ |
2228 | struct perl_vars *PL_VarsPtr; | |
2229 | #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars()))) | |
2230 | #endif /* PERL_CORE */ | |
22239a37 NIS |
2231 | #endif /* PERL_GLOBAL_STRUCT */ |
2232 | ||
8990e307 | 2233 | #ifdef MULTIPLICITY |
d4cce5f1 NIS |
2234 | /* If we have multiple interpreters define a struct |
2235 | holding variables which must be per-interpreter | |
2236 | If we don't have threads anything that would have | |
2237 | be per-thread is per-interpreter. | |
2238 | */ | |
2239 | ||
79072805 | 2240 | struct interpreter { |
d4cce5f1 | 2241 | #include "thrdvar.h" |
d4cce5f1 | 2242 | #include "intrpvar.h" |
49f531da | 2243 | }; |
d4cce5f1 | 2244 | |
79072805 | 2245 | #else |
49f531da NIS |
2246 | struct interpreter { |
2247 | char broiled; | |
2248 | }; | |
79072805 LW |
2249 | #endif |
2250 | ||
d4cce5f1 NIS |
2251 | #ifdef USE_THREADS |
2252 | /* If we have threads define a struct with all the variables | |
2253 | * that have to be per-thread | |
49f531da | 2254 | */ |
8023c3ce | 2255 | |
79072805 | 2256 | |
49f531da | 2257 | struct perl_thread { |
49f531da | 2258 | #include "thrdvar.h" |
79072805 | 2259 | }; |
d4cce5f1 | 2260 | |
22fae026 TM |
2261 | typedef struct perl_thread *Thread; |
2262 | ||
2263 | #else | |
2264 | typedef void *Thread; | |
22239a37 NIS |
2265 | #endif |
2266 | ||
2267 | /* Done with PERLVAR macros for now ... */ | |
d4cce5f1 NIS |
2268 | #undef PERLVAR |
2269 | #undef PERLVARI | |
3fe35a81 | 2270 | #undef PERLVARIC |
79072805 | 2271 | |
22239a37 | 2272 | #include "thread.h" |
79072805 | 2273 | #include "pp.h" |
79072805 LW |
2274 | #include "proto.h" |
2275 | ||
a0d0e21e LW |
2276 | #define Perl_sv_setptrobj(rv,ptr,name) Perl_sv_setref_iv(rv,name,(IV)ptr) |
2277 | #define Perl_sv_setptrref(rv,ptr) Perl_sv_setref_iv(rv,Nullch,(IV)ptr) | |
a0d0e21e | 2278 | |
d4cce5f1 NIS |
2279 | /* The following must follow proto.h as #defines mess up syntax */ |
2280 | ||
22c35a8c GS |
2281 | #if !defined(PERL_FOR_X2P) |
2282 | # include "embedvar.h" | |
2283 | #endif | |
d4cce5f1 NIS |
2284 | |
2285 | /* Now include all the 'global' variables | |
2286 | * If we don't have threads or multiple interpreters | |
2287 | * these include variables that would have been their struct-s | |
2288 | */ | |
533c011a NIS |
2289 | |
2290 | #define PERLVAR(var,type) EXT type PL_##var; | |
2291 | #define PERLVARI(var,type,init) EXT type PL_##var INIT(init); | |
2292 | #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init); | |
d4cce5f1 | 2293 | |
22239a37 | 2294 | #ifndef PERL_GLOBAL_STRUCT |
d4cce5f1 | 2295 | #include "perlvars.h" |
22239a37 | 2296 | #endif |
d4cce5f1 NIS |
2297 | |
2298 | #ifndef MULTIPLICITY | |
d4cce5f1 | 2299 | |
066ef5b5 GS |
2300 | # include "intrpvar.h" |
2301 | # ifndef USE_THREADS | |
2302 | # include "thrdvar.h" | |
2303 | # endif | |
d4cce5f1 | 2304 | |
22239a37 NIS |
2305 | #endif |
2306 | ||
76e3520e | 2307 | #ifdef PERL_OBJECT |
d0c1b099 GS |
2308 | /* |
2309 | * The following is a buffer where new variables must | |
2310 | * be defined to maintain binary compatibility with PERL_OBJECT | |
2311 | * for 5.005 | |
2312 | */ | |
2313 | PERLVAR(object_compatibility[30], char) | |
76e3520e GS |
2314 | }; |
2315 | ||
22c35a8c GS |
2316 | # include "embed.h" |
2317 | # if defined(WIN32) && !defined(WIN32IO_IS_STDIO) | |
2318 | # define errno CPerlObj::ErrorNo() | |
2319 | # endif | |
76e3520e | 2320 | |
22c35a8c GS |
2321 | # ifdef DOINIT |
2322 | # include "INTERN.h" | |
2323 | # else | |
2324 | # include "EXTERN.h" | |
2325 | # endif | |
2326 | ||
2327 | /* this has structure inits, so it cannot be included before here */ | |
2328 | # include "opcode.h" | |
2329 | ||
2330 | #endif /* PERL_OBJECT */ | |
22239a37 | 2331 | |
d4cce5f1 NIS |
2332 | #undef PERLVAR |
2333 | #undef PERLVARI | |
0f3f18a6 | 2334 | #undef PERLVARIC |
79072805 | 2335 | |
a835ef8a NIS |
2336 | #if defined(HASATTRIBUTE) && defined(WIN32) |
2337 | /* | |
2338 | * This provides a layer of functions and macros to ensure extensions will | |
2339 | * get to use the same RTL functions as the core. | |
2340 | * It has to go here or #define of printf messes up __attribute__ | |
2341 | * stuff in proto.h | |
2342 | */ | |
76e3520e | 2343 | #ifndef PERL_OBJECT |
a835ef8a | 2344 | # include <win32iop.h> |
76e3520e | 2345 | #endif /* PERL_OBJECT */ |
a835ef8a NIS |
2346 | #endif /* WIN32 */ |
2347 | ||
79072805 | 2348 | #ifdef DOINIT |
bbce6d69 | 2349 | |
22c35a8c | 2350 | EXT MGVTBL PL_vtbl_sv = {magic_get, |
463ee0b2 LW |
2351 | magic_set, |
2352 | magic_len, | |
2353 | 0, 0}; | |
22c35a8c | 2354 | EXT MGVTBL PL_vtbl_env = {0, magic_set_all_env, |
fb73857a | 2355 | 0, magic_clear_all_env, |
66b1d557 | 2356 | 0}; |
22c35a8c | 2357 | EXT MGVTBL PL_vtbl_envelem = {0, magic_setenv, |
85e6fe83 LW |
2358 | 0, magic_clearenv, |
2359 | 0}; | |
22c35a8c GS |
2360 | EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0}; |
2361 | EXT MGVTBL PL_vtbl_sigelem = {magic_getsig, | |
0c30d9ec | 2362 | magic_setsig, |
2363 | 0, magic_clearsig, | |
2364 | 0}; | |
22c35a8c | 2365 | EXT MGVTBL PL_vtbl_pack = {0, 0, magic_sizepack, magic_wipepack, |
a0d0e21e | 2366 | 0}; |
22c35a8c | 2367 | EXT MGVTBL PL_vtbl_packelem = {magic_getpack, |
463ee0b2 LW |
2368 | magic_setpack, |
2369 | 0, magic_clearpack, | |
2370 | 0}; | |
22c35a8c | 2371 | EXT MGVTBL PL_vtbl_dbline = {0, magic_setdbline, |
463ee0b2 | 2372 | 0, 0, 0}; |
22c35a8c | 2373 | EXT MGVTBL PL_vtbl_isa = {0, magic_setisa, |
fb73857a | 2374 | 0, magic_setisa, |
2375 | 0}; | |
22c35a8c | 2376 | EXT MGVTBL PL_vtbl_isaelem = {0, magic_setisa, |
463ee0b2 | 2377 | 0, 0, 0}; |
22c35a8c | 2378 | EXT MGVTBL PL_vtbl_arylen = {magic_getarylen, |
463ee0b2 LW |
2379 | magic_setarylen, |
2380 | 0, 0, 0}; | |
22c35a8c | 2381 | EXT MGVTBL PL_vtbl_glob = {magic_getglob, |
463ee0b2 LW |
2382 | magic_setglob, |
2383 | 0, 0, 0}; | |
22c35a8c | 2384 | EXT MGVTBL PL_vtbl_mglob = {0, magic_setmglob, |
463ee0b2 | 2385 | 0, 0, 0}; |
22c35a8c | 2386 | EXT MGVTBL PL_vtbl_nkeys = {magic_getnkeys, |
6ff81951 | 2387 | magic_setnkeys, |
99abf803 | 2388 | 0, 0, 0}; |
22c35a8c | 2389 | EXT MGVTBL PL_vtbl_taint = {magic_gettaint,magic_settaint, |
463ee0b2 | 2390 | 0, 0, 0}; |
22c35a8c | 2391 | EXT MGVTBL PL_vtbl_substr = {magic_getsubstr, magic_setsubstr, |
463ee0b2 | 2392 | 0, 0, 0}; |
22c35a8c | 2393 | EXT MGVTBL PL_vtbl_vec = {magic_getvec, |
6ff81951 | 2394 | magic_setvec, |
463ee0b2 | 2395 | 0, 0, 0}; |
22c35a8c | 2396 | EXT MGVTBL PL_vtbl_pos = {magic_getpos, |
a0d0e21e LW |
2397 | magic_setpos, |
2398 | 0, 0, 0}; | |
22c35a8c | 2399 | EXT MGVTBL PL_vtbl_bm = {0, magic_setbm, |
463ee0b2 | 2400 | 0, 0, 0}; |
22c35a8c | 2401 | EXT MGVTBL PL_vtbl_fm = {0, magic_setfm, |
55497cff | 2402 | 0, 0, 0}; |
22c35a8c | 2403 | EXT MGVTBL PL_vtbl_uvar = {magic_getuvar, |
463ee0b2 LW |
2404 | magic_setuvar, |
2405 | 0, 0, 0}; | |
f93b4edd | 2406 | #ifdef USE_THREADS |
22c35a8c | 2407 | EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, magic_mutexfree}; |
f93b4edd | 2408 | #endif /* USE_THREADS */ |
22c35a8c | 2409 | EXT MGVTBL PL_vtbl_defelem = {magic_getdefelem,magic_setdefelem, |
02270b4e | 2410 | 0, 0, 0}; |
a0d0e21e | 2411 | |
22c35a8c GS |
2412 | EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, magic_freeregexp}; |
2413 | EXT MGVTBL PL_vtbl_regdata = {0, 0, magic_regdata_cnt, 0, 0}; | |
2414 | EXT MGVTBL PL_vtbl_regdatum = {magic_regdatum_get, 0, 0, 0, 0}; | |
c277df42 | 2415 | |
36477c24 | 2416 | #ifdef USE_LOCALE_COLLATE |
22c35a8c | 2417 | EXT MGVTBL PL_vtbl_collxfrm = {0, |
bbce6d69 | 2418 | magic_setcollxfrm, |
2419 | 0, 0, 0}; | |
2420 | #endif | |
a0d0e21e LW |
2421 | |
2422 | #ifdef OVERLOAD | |
22c35a8c | 2423 | EXT MGVTBL PL_vtbl_amagic = {0, magic_setamagic, |
748a9306 | 2424 | 0, 0, magic_setamagic}; |
22c35a8c | 2425 | EXT MGVTBL PL_vtbl_amagicelem = {0, magic_setamagic, |
748a9306 | 2426 | 0, 0, magic_setamagic}; |
a0d0e21e LW |
2427 | #endif /* OVERLOAD */ |
2428 | ||
bbce6d69 | 2429 | #else /* !DOINIT */ |
2430 | ||
22c35a8c GS |
2431 | EXT MGVTBL PL_vtbl_sv; |
2432 | EXT MGVTBL PL_vtbl_env; | |
2433 | EXT MGVTBL PL_vtbl_envelem; | |
2434 | EXT MGVTBL PL_vtbl_sig; | |
2435 | EXT MGVTBL PL_vtbl_sigelem; | |
2436 | EXT MGVTBL PL_vtbl_pack; | |
2437 | EXT MGVTBL PL_vtbl_packelem; | |
2438 | EXT MGVTBL PL_vtbl_dbline; | |
2439 | EXT MGVTBL PL_vtbl_isa; | |
2440 | EXT MGVTBL PL_vtbl_isaelem; | |
2441 | EXT MGVTBL PL_vtbl_arylen; | |
2442 | EXT MGVTBL PL_vtbl_glob; | |
2443 | EXT MGVTBL PL_vtbl_mglob; | |
2444 | EXT MGVTBL PL_vtbl_nkeys; | |
2445 | EXT MGVTBL PL_vtbl_taint; | |
2446 | EXT MGVTBL PL_vtbl_substr; | |
2447 | EXT MGVTBL PL_vtbl_vec; | |
2448 | EXT MGVTBL PL_vtbl_pos; | |
2449 | EXT MGVTBL PL_vtbl_bm; | |
2450 | EXT MGVTBL PL_vtbl_fm; | |
2451 | EXT MGVTBL PL_vtbl_uvar; | |
a0d0e21e | 2452 | |
f93b4edd | 2453 | #ifdef USE_THREADS |
22c35a8c | 2454 | EXT MGVTBL PL_vtbl_mutex; |
f93b4edd MB |
2455 | #endif /* USE_THREADS */ |
2456 | ||
22c35a8c GS |
2457 | EXT MGVTBL PL_vtbl_defelem; |
2458 | EXT MGVTBL PL_vtbl_regexp; | |
2459 | EXT MGVTBL PL_vtbl_regdata; | |
2460 | EXT MGVTBL PL_vtbl_regdatum; | |
a0d0e21e | 2461 | |
36477c24 | 2462 | #ifdef USE_LOCALE_COLLATE |
22c35a8c | 2463 | EXT MGVTBL PL_vtbl_collxfrm; |
bbce6d69 | 2464 | #endif |
a0d0e21e LW |
2465 | |
2466 | #ifdef OVERLOAD | |
22c35a8c GS |
2467 | EXT MGVTBL PL_vtbl_amagic; |
2468 | EXT MGVTBL PL_vtbl_amagicelem; | |
a0d0e21e LW |
2469 | #endif /* OVERLOAD */ |
2470 | ||
bbce6d69 | 2471 | #endif /* !DOINIT */ |
85e6fe83 | 2472 | |
a0d0e21e | 2473 | #ifdef OVERLOAD |
c0315cdf | 2474 | |
a6006777 | 2475 | #define NofAMmeth 58 |
a0d0e21e | 2476 | #ifdef DOINIT |
22c35a8c | 2477 | EXTCONST char * PL_AMG_names[NofAMmeth] = { |
a6006777 | 2478 | "fallback", "abs", /* "fallback" should be the first. */ |
2479 | "bool", "nomethod", | |
2480 | "\"\"", "0+", | |
2481 | "+", "+=", | |
2482 | "-", "-=", | |
2483 | "*", "*=", | |
2484 | "/", "/=", | |
2485 | "%", "%=", | |
2486 | "**", "**=", | |
2487 | "<<", "<<=", | |
2488 | ">>", ">>=", | |
2489 | "&", "&=", | |
2490 | "|", "|=", | |
2491 | "^", "^=", | |
2492 | "<", "<=", | |
2493 | ">", ">=", | |
2494 | "==", "!=", | |
2495 | "<=>", "cmp", | |
2496 | "lt", "le", | |
2497 | "gt", "ge", | |
2498 | "eq", "ne", | |
2499 | "!", "~", | |
2500 | "++", "--", | |
2501 | "atan2", "cos", | |
2502 | "sin", "exp", | |
2503 | "log", "sqrt", | |
2504 | "x", "x=", | |
2505 | ".", ".=", | |
2506 | "=", "neg" | |
a0d0e21e LW |
2507 | }; |
2508 | #else | |
22c35a8c | 2509 | EXTCONST char * PL_AMG_names[NofAMmeth]; |
a0d0e21e LW |
2510 | #endif /* def INITAMAGIC */ |
2511 | ||
a6006777 | 2512 | struct am_table { |
a0d0e21e LW |
2513 | long was_ok_sub; |
2514 | long was_ok_am; | |
a6006777 | 2515 | U32 flags; |
2516 | CV* table[NofAMmeth]; | |
a0d0e21e LW |
2517 | long fallback; |
2518 | }; | |
a6006777 | 2519 | struct am_table_short { |
2520 | long was_ok_sub; | |
2521 | long was_ok_am; | |
2522 | U32 flags; | |
2523 | }; | |
a0d0e21e | 2524 | typedef struct am_table AMT; |
a6006777 | 2525 | typedef struct am_table_short AMTS; |
a0d0e21e LW |
2526 | |
2527 | #define AMGfallNEVER 1 | |
2528 | #define AMGfallNO 2 | |
2529 | #define AMGfallYES 3 | |
2530 | ||
a6006777 | 2531 | #define AMTf_AMAGIC 1 |
2532 | #define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC) | |
2533 | #define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC) | |
2534 | #define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC) | |
2535 | ||
a0d0e21e LW |
2536 | enum { |
2537 | fallback_amg, abs_amg, | |
2538 | bool__amg, nomethod_amg, | |
2539 | string_amg, numer_amg, | |
2540 | add_amg, add_ass_amg, | |
2541 | subtr_amg, subtr_ass_amg, | |
2542 | mult_amg, mult_ass_amg, | |
2543 | div_amg, div_ass_amg, | |
76e3520e | 2544 | modulo_amg, modulo_ass_amg, |
a0d0e21e LW |
2545 | pow_amg, pow_ass_amg, |
2546 | lshift_amg, lshift_ass_amg, | |
2547 | rshift_amg, rshift_ass_amg, | |
748a9306 LW |
2548 | band_amg, band_ass_amg, |
2549 | bor_amg, bor_ass_amg, | |
2550 | bxor_amg, bxor_ass_amg, | |
a0d0e21e LW |
2551 | lt_amg, le_amg, |
2552 | gt_amg, ge_amg, | |
2553 | eq_amg, ne_amg, | |
2554 | ncmp_amg, scmp_amg, | |
2555 | slt_amg, sle_amg, | |
2556 | sgt_amg, sge_amg, | |
2557 | seq_amg, sne_amg, | |
a0d0e21e LW |
2558 | not_amg, compl_amg, |
2559 | inc_amg, dec_amg, | |
2560 | atan2_amg, cos_amg, | |
2561 | sin_amg, exp_amg, | |
2562 | log_amg, sqrt_amg, | |
2563 | repeat_amg, repeat_ass_amg, | |
748a9306 LW |
2564 | concat_amg, concat_ass_amg, |
2565 | copy_amg, neg_amg | |
a0d0e21e | 2566 | }; |
c0315cdf JH |
2567 | |
2568 | /* | |
2569 | * some compilers like to redefine cos et alia as faster | |
2570 | * (and less accurate?) versions called F_cos et cetera (Quidquid | |
2571 | * latine dictum sit, altum viditur.) This trick collides with | |
2572 | * the Perl overloading (amg). The following #defines fool both. | |
2573 | */ | |
2574 | ||
2575 | #ifdef _FASTMATH | |
2576 | # ifdef atan2 | |
2577 | # define F_atan2_amg atan2_amg | |
2578 | # endif | |
2579 | # ifdef cos | |
2580 | # define F_cos_amg cos_amg | |
2581 | # endif | |
2582 | # ifdef exp | |
2583 | # define F_exp_amg exp_amg | |
2584 | # endif | |
2585 | # ifdef log | |
2586 | # define F_log_amg log_amg | |
2587 | # endif | |
2588 | # ifdef pow | |
2589 | # define F_pow_amg pow_amg | |
2590 | # endif | |
2591 | # ifdef sin | |
2592 | # define F_sin_amg sin_amg | |
2593 | # endif | |
2594 | # ifdef sqrt | |
2595 | # define F_sqrt_amg sqrt_amg | |
2596 | # endif | |
2597 | #endif /* _FASTMATH */ | |
2598 | ||
a0d0e21e LW |
2599 | #endif /* OVERLOAD */ |
2600 | ||
491527d0 | 2601 | #define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */ |
84902520 TB |
2602 | #define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */ |
2603 | #define PERLDBf_LINE 0x02 /* Keep line #. */ | |
2604 | #define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */ | |
2605 | #define PERLDBf_INTER 0x08 /* Preserve more data for | |
2606 | later inspections. */ | |
2607 | #define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */ | |
2608 | #define PERLDBf_SINGLE 0x20 /* Start with single-step on. */ | |
491527d0 GS |
2609 | #define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */ |
2610 | #define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */ | |
84902520 | 2611 | |
3280af22 NIS |
2612 | #define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB)) |
2613 | #define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE)) | |
2614 | #define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT)) | |
2615 | #define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER)) | |
2616 | #define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE)) | |
2617 | #define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE)) | |
2618 | #define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME))) | |
2619 | #define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO)) | |
84902520 | 2620 | |
bbce6d69 | 2621 | |
36477c24 | 2622 | #ifdef USE_LOCALE_NUMERIC |
bbce6d69 | 2623 | |
36477c24 | 2624 | #define SET_NUMERIC_STANDARD() \ |
2625 | STMT_START { \ | |
3280af22 | 2626 | if (! PL_numeric_standard) \ |
36477c24 | 2627 | perl_set_numeric_standard(); \ |
2628 | } STMT_END | |
2629 | ||
2630 | #define SET_NUMERIC_LOCAL() \ | |
2631 | STMT_START { \ | |
3280af22 | 2632 | if (! PL_numeric_local) \ |
36477c24 | 2633 | perl_set_numeric_local(); \ |
2634 | } STMT_END | |
bbce6d69 | 2635 | |
36477c24 | 2636 | #else /* !USE_LOCALE_NUMERIC */ |
bbce6d69 | 2637 | |
36477c24 | 2638 | #define SET_NUMERIC_STANDARD() /**/ |
2639 | #define SET_NUMERIC_LOCAL() /**/ | |
bbce6d69 | 2640 | |
36477c24 | 2641 | #endif /* !USE_LOCALE_NUMERIC */ |
a0d0e21e | 2642 | |
e5c9fcd0 | 2643 | #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE) |
760ac839 LW |
2644 | /* |
2645 | * Now we have __attribute__ out of the way | |
2646 | * Remap printf | |
2647 | */ | |
2648 | #define printf PerlIO_stdoutf | |
2649 | #endif | |
2650 | ||
a868473f NIS |
2651 | #ifndef PERL_SCRIPT_MODE |
2652 | #define PERL_SCRIPT_MODE "r" | |
2653 | #endif | |
2654 | ||
fba3b22e MB |
2655 | /* |
2656 | * nice_chunk and nice_chunk size need to be set | |
2657 | * and queried under the protection of sv_mutex | |
2658 | */ | |
2659 | #define offer_nice_chunk(chunk, chunk_size) do { \ | |
940cb80d | 2660 | LOCK_SV_MUTEX; \ |
3280af22 NIS |
2661 | if (!PL_nice_chunk) { \ |
2662 | PL_nice_chunk = (char*)(chunk); \ | |
2663 | PL_nice_chunk_size = (chunk_size); \ | |
fba3b22e | 2664 | } \ |
fc80cf79 GS |
2665 | else { \ |
2666 | Safefree(chunk); \ | |
2667 | } \ | |
940cb80d | 2668 | UNLOCK_SV_MUTEX; \ |
fba3b22e MB |
2669 | } while (0) |
2670 | ||
bd89102f AD |
2671 | #ifdef HAS_SEM |
2672 | # include <sys/ipc.h> | |
2673 | # include <sys/sem.h> | |
2674 | # ifndef HAS_UNION_SEMUN /* Provide the union semun. */ | |
2675 | union semun { | |
2676 | int val; | |
2677 | struct semid_ds *buf; | |
2678 | unsigned short *array; | |
2679 | }; | |
2680 | # endif | |
2681 | # ifdef USE_SEMCTL_SEMUN | |
2682 | # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun) | |
2683 | # else | |
2684 | # ifdef USE_SEMCTL_SEMID_DS | |
2685 | # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf) | |
2686 | # endif | |
2687 | # endif | |
2688 | # ifndef Semctl /* Place our bets on the semun horse. */ | |
2689 | # define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun) | |
2690 | # endif | |
2691 | #endif | |
49f531da | 2692 | |
85e6fe83 | 2693 | #endif /* Include guard */ |