This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[rt.cpan.org #51574] Safe.pm sort {} bug accessing $a and $b with -Dusethreads
[perl5.git] / opcode.h
CommitLineData
37442d52
RGS
1/* -*- buffer-read-only: t -*-
2 *
d6376244
JH
3 * opcode.h
4 *
5b9081af
NC
5 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
6 * 2001, 2002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others
d6376244
JH
7 *
8 * You may distribute under the terms of either the GNU General Public
9 * License or the Artistic License, as specified in the README file.
10 *
11 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
12 * This file is built by opcode.pl from its data. Any changes made here
13 * will be lost!
14 */
a27f85b3 15
27da23d5
JH
16#ifndef PERL_GLOBAL_STRUCT_INIT
17
864dbfa3
GS
18#define Perl_pp_i_preinc Perl_pp_preinc
19#define Perl_pp_i_predec Perl_pp_predec
20#define Perl_pp_i_postinc Perl_pp_postinc
21#define Perl_pp_i_postdec Perl_pp_postdec
748a9306 22
65bca31a
NC
23PERL_PPDEF(Perl_unimplemented_op)
24
73c4f7a1
GS
25START_EXTERN_C
26
4a36906c
RGS
27#define OP_NAME(o) ((o)->op_type == OP_CUSTOM ? custom_op_name(o) : \
28 PL_op_name[(o)->op_type])
29#define OP_DESC(o) ((o)->op_type == OP_CUSTOM ? custom_op_desc(o) : \
30 PL_op_desc[(o)->op_type])
438c221d 31
79072805 32#ifndef DOINIT
27da23d5 33EXTCONST char* const PL_op_name[];
79072805 34#else
27da23d5 35EXTCONST char* const PL_op_name[] = {
c07a80fd 36 "null",
37 "stub",
38 "scalar",
39 "pushmark",
40 "wantarray",
41 "const",
42 "gvsv",
43 "gv",
44 "gelem",
45 "padsv",
46 "padav",
47 "padhv",
48 "padany",
49 "pushre",
50 "rv2gv",
51 "rv2sv",
52 "av2arylen",
53 "rv2cv",
54 "anoncode",
55 "prototype",
56 "refgen",
57 "srefgen",
58 "ref",
59 "bless",
60 "backtick",
61 "glob",
62 "readline",
63 "rcatline",
64 "regcmaybe",
2cd61cdb 65 "regcreset",
c07a80fd 66 "regcomp",
67 "match",
8782bef2 68 "qr",
c07a80fd 69 "subst",
70 "substcont",
71 "trans",
72 "sassign",
73 "aassign",
74 "chop",
75 "schop",
76 "chomp",
77 "schomp",
78 "defined",
79 "undef",
80 "study",
81 "pos",
82 "preinc",
83 "i_preinc",
84 "predec",
85 "i_predec",
86 "postinc",
87 "i_postinc",
88 "postdec",
89 "i_postdec",
90 "pow",
91 "multiply",
92 "i_multiply",
93 "divide",
94 "i_divide",
95 "modulo",
96 "i_modulo",
97 "repeat",
98 "add",
99 "i_add",
100 "subtract",
101 "i_subtract",
102 "concat",
103 "stringify",
104 "left_shift",
105 "right_shift",
106 "lt",
107 "i_lt",
108 "gt",
109 "i_gt",
110 "le",
111 "i_le",
112 "ge",
113 "i_ge",
114 "eq",
115 "i_eq",
116 "ne",
117 "i_ne",
118 "ncmp",
119 "i_ncmp",
120 "slt",
121 "sgt",
122 "sle",
123 "sge",
124 "seq",
125 "sne",
126 "scmp",
127 "bit_and",
128 "bit_xor",
129 "bit_or",
130 "negate",
131 "i_negate",
132 "not",
133 "complement",
fdecdb95 134 "smartmatch",
c07a80fd 135 "atan2",
136 "sin",
137 "cos",
138 "rand",
139 "srand",
140 "exp",
141 "log",
142 "sqrt",
143 "int",
144 "hex",
145 "oct",
146 "abs",
147 "length",
148 "substr",
149 "vec",
150 "index",
151 "rindex",
152 "sprintf",
153 "formline",
154 "ord",
155 "chr",
156 "crypt",
157 "ucfirst",
158 "lcfirst",
159 "uc",
160 "lc",
161 "quotemeta",
162 "rv2av",
163 "aelemfast",
164 "aelem",
165 "aslice",
878d132a
NC
166 "aeach",
167 "akeys",
168 "avalues",
c07a80fd 169 "each",
170 "values",
171 "keys",
172 "delete",
173 "exists",
174 "rv2hv",
175 "helem",
176 "hslice",
2e0eeeaa 177 "boolkeys",
c07a80fd 178 "unpack",
179 "pack",
180 "split",
181 "join",
182 "list",
183 "lslice",
184 "anonlist",
185 "anonhash",
186 "splice",
187 "push",
188 "pop",
189 "shift",
190 "unshift",
191 "sort",
192 "reverse",
193 "grepstart",
194 "grepwhile",
195 "mapstart",
196 "mapwhile",
197 "range",
198 "flip",
199 "flop",
200 "and",
201 "or",
202 "xor",
fdecdb95 203 "dor",
c07a80fd 204 "cond_expr",
205 "andassign",
206 "orassign",
fdecdb95 207 "dorassign",
c07a80fd 208 "method",
209 "entersub",
210 "leavesub",
cd06dffe 211 "leavesublv",
c07a80fd 212 "caller",
213 "warn",
214 "die",
215 "reset",
216 "lineseq",
217 "nextstate",
218 "dbstate",
219 "unstack",
220 "enter",
221 "leave",
222 "scope",
223 "enteriter",
224 "iter",
225 "enterloop",
226 "leaveloop",
227 "return",
228 "last",
229 "next",
230 "redo",
231 "dump",
232 "goto",
233 "exit",
fdecdb95
NC
234 "method_named",
235 "entergiven",
236 "leavegiven",
237 "enterwhen",
238 "leavewhen",
239 "break",
240 "continue",
c07a80fd 241 "open",
242 "close",
243 "pipe_op",
244 "fileno",
245 "umask",
246 "binmode",
247 "tie",
248 "untie",
249 "tied",
250 "dbmopen",
251 "dbmclose",
252 "sselect",
253 "select",
254 "getc",
255 "read",
256 "enterwrite",
257 "leavewrite",
258 "prtf",
259 "print",
fdecdb95 260 "say",
c07a80fd 261 "sysopen",
137443ea 262 "sysseek",
c07a80fd 263 "sysread",
264 "syswrite",
c07a80fd 265 "eof",
266 "tell",
267 "seek",
268 "truncate",
269 "fcntl",
270 "ioctl",
271 "flock",
e71197e2
JC
272 "send",
273 "recv",
c07a80fd 274 "socket",
275 "sockpair",
276 "bind",
277 "connect",
278 "listen",
279 "accept",
280 "shutdown",
281 "gsockopt",
282 "ssockopt",
283 "getsockname",
284 "getpeername",
285 "lstat",
286 "stat",
287 "ftrread",
288 "ftrwrite",
289 "ftrexec",
290 "fteread",
291 "ftewrite",
292 "fteexec",
293 "ftis",
c07a80fd 294 "ftsize",
295 "ftmtime",
296 "ftatime",
297 "ftctime",
7834bb7e
NC
298 "ftrowned",
299 "fteowned",
300 "ftzero",
c07a80fd 301 "ftsock",
302 "ftchr",
303 "ftblk",
304 "ftfile",
305 "ftdir",
306 "ftpipe",
c07a80fd 307 "ftsuid",
308 "ftsgid",
309 "ftsvtx",
7834bb7e 310 "ftlink",
c07a80fd 311 "fttty",
312 "fttext",
313 "ftbinary",
314 "chdir",
315 "chown",
316 "chroot",
317 "unlink",
318 "chmod",
319 "utime",
320 "rename",
321 "link",
322 "symlink",
323 "readlink",
324 "mkdir",
325 "rmdir",
326 "open_dir",
327 "readdir",
328 "telldir",
329 "seekdir",
330 "rewinddir",
331 "closedir",
332 "fork",
333 "wait",
334 "waitpid",
335 "system",
336 "exec",
337 "kill",
338 "getppid",
339 "getpgrp",
340 "setpgrp",
341 "getpriority",
342 "setpriority",
343 "time",
344 "tms",
345 "localtime",
346 "gmtime",
347 "alarm",
348 "sleep",
349 "shmget",
350 "shmctl",
351 "shmread",
352 "shmwrite",
353 "msgget",
354 "msgctl",
355 "msgsnd",
356 "msgrcv",
7834bb7e 357 "semop",
c07a80fd 358 "semget",
359 "semctl",
c07a80fd 360 "require",
361 "dofile",
996c9baa 362 "hintseval",
c07a80fd 363 "entereval",
364 "leaveeval",
365 "entertry",
366 "leavetry",
367 "ghbyname",
368 "ghbyaddr",
369 "ghostent",
370 "gnbyname",
371 "gnbyaddr",
372 "gnetent",
373 "gpbyname",
374 "gpbynumber",
375 "gprotoent",
376 "gsbyname",
377 "gsbyport",
378 "gservent",
379 "shostent",
380 "snetent",
381 "sprotoent",
382 "sservent",
383 "ehostent",
384 "enetent",
385 "eprotoent",
386 "eservent",
387 "gpwnam",
388 "gpwuid",
389 "gpwent",
390 "spwent",
391 "epwent",
392 "ggrnam",
393 "ggrgid",
394 "ggrent",
395 "sgrent",
396 "egrent",
397 "getlogin",
398 "syscall",
c0329465 399 "lock",
c5917253 400 "once",
438c221d 401 "custom",
c07a80fd 402};
403#endif
404
405#ifndef DOINIT
27da23d5 406EXTCONST char* const PL_op_desc[];
c07a80fd 407#else
27da23d5 408EXTCONST char* const PL_op_desc[] = {
79072805 409 "null operation",
93a17b20
LW
410 "stub",
411 "scalar",
79072805
LW
412 "pushmark",
413 "wantarray",
79072805 414 "constant item",
79072805
LW
415 "scalar variable",
416 "glob value",
c07a80fd 417 "glob elem",
93a17b20
LW
418 "private variable",
419 "private array",
420 "private hash",
f1612b5c 421 "private value",
79072805
LW
422 "push regexp",
423 "ref-to-glob cast",
b89fed5f 424 "scalar dereference",
79072805 425 "array length",
b89fed5f 426 "subroutine dereference",
a0d0e21e 427 "anonymous subroutine",
c07a80fd 428 "subroutine prototype",
8990e307 429 "reference constructor",
dfa0f641 430 "single ref constructor",
79072805
LW
431 "reference-type operator",
432 "bless",
b3f4d674 433 "quoted execution (``, qx)",
79072805
LW
434 "glob",
435 "<HANDLE>",
436 "append I/O operator",
f1612b5c
GS
437 "regexp internal guard",
438 "regexp internal reset",
79072805 439 "regexp compilation",
42d38218
MS
440 "pattern match (m//)",
441 "pattern quote (qr//)",
442 "substitution (s///)",
f1612b5c
GS
443 "substitution iterator",
444 "transliteration (tr///)",
79072805
LW
445 "scalar assignment",
446 "list assignment",
79072805 447 "chop",
a0d0e21e 448 "scalar chop",
f1612b5c
GS
449 "chomp",
450 "scalar chomp",
79072805
LW
451 "defined operator",
452 "undef operator",
453 "study",
a0d0e21e 454 "match position",
42d38218
MS
455 "preincrement (++)",
456 "integer preincrement (++)",
457 "predecrement (--)",
458 "integer predecrement (--)",
459 "postincrement (++)",
460 "integer postincrement (++)",
461 "postdecrement (--)",
462 "integer postdecrement (--)",
463 "exponentiation (**)",
464 "multiplication (*)",
465 "integer multiplication (*)",
466 "division (/)",
467 "integer division (/)",
468 "modulus (%)",
469 "integer modulus (%)",
470 "repeat (x)",
471 "addition (+)",
472 "integer addition (+)",
473 "subtraction (-)",
474 "integer subtraction (-)",
297b36dc 475 "concatenation (.) or string",
a0d0e21e 476 "string",
42d38218
MS
477 "left bitshift (<<)",
478 "right bitshift (>>)",
479 "numeric lt (<)",
480 "integer lt (<)",
481 "numeric gt (>)",
482 "integer gt (>)",
483 "numeric le (<=)",
484 "integer le (<=)",
485 "numeric ge (>=)",
486 "integer ge (>=)",
487 "numeric eq (==)",
488 "integer eq (==)",
489 "numeric ne (!=)",
490 "integer ne (!=)",
491 "numeric comparison (<=>)",
492 "integer comparison (<=>)",
79072805
LW
493 "string lt",
494 "string gt",
495 "string le",
496 "string ge",
497 "string eq",
498 "string ne",
42d38218
MS
499 "string comparison (cmp)",
500 "bitwise and (&)",
501 "bitwise xor (^)",
502 "bitwise or (|)",
f1612b5c
GS
503 "negation (-)",
504 "integer negation (-)",
79072805 505 "not",
42d38218 506 "1's complement (~)",
fdecdb95 507 "smart match",
79072805
LW
508 "atan2",
509 "sin",
510 "cos",
511 "rand",
512 "srand",
513 "exp",
514 "log",
515 "sqrt",
516 "int",
517 "hex",
518 "oct",
463ee0b2 519 "abs",
79072805
LW
520 "length",
521 "substr",
522 "vec",
523 "index",
524 "rindex",
525 "sprintf",
526 "formline",
527 "ord",
463ee0b2 528 "chr",
79072805 529 "crypt",
42d38218
MS
530 "ucfirst",
531 "lcfirst",
532 "uc",
533 "lc",
534 "quotemeta",
f1612b5c
GS
535 "array dereference",
536 "constant array element",
79072805
LW
537 "array element",
538 "array slice",
878d132a
NC
539 "each on array",
540 "keys on array",
541 "values on array",
79072805
LW
542 "each",
543 "values",
544 "keys",
545 "delete",
42d38218 546 "exists",
f1612b5c
GS
547 "hash dereference",
548 "hash element",
aa689395 549 "hash slice",
2e0eeeaa 550 "boolkeys",
79072805
LW
551 "unpack",
552 "pack",
553 "split",
297b36dc 554 "join or string",
79072805
LW
555 "list",
556 "list slice",
42d38218
MS
557 "anonymous list ([])",
558 "anonymous hash ({})",
79072805
LW
559 "splice",
560 "push",
561 "pop",
562 "shift",
563 "unshift",
564 "sort",
565 "reverse",
566 "grep",
567 "grep iterator",
a0d0e21e
LW
568 "map",
569 "map iterator",
79072805
LW
570 "flipflop",
571 "range (or flip)",
572 "range (or flop)",
42d38218
MS
573 "logical and (&&)",
574 "logical or (||)",
a0d0e21e 575 "logical xor",
fdecdb95 576 "defined or (//)",
f1612b5c 577 "conditional expression",
42d38218
MS
578 "logical and assignment (&&=)",
579 "logical or assignment (||=)",
fdecdb95 580 "defined or assignment (//=)",
79072805
LW
581 "method lookup",
582 "subroutine entry",
583 "subroutine exit",
78f9721b 584 "lvalue subroutine return",
79072805
LW
585 "caller",
586 "warn",
587 "die",
f1612b5c 588 "symbol reset",
79072805
LW
589 "line sequence",
590 "next statement",
93a17b20 591 "debug next statement",
e9c54c90 592 "iteration finalizer",
79072805
LW
593 "block entry",
594 "block exit",
463ee0b2 595 "block",
79072805
LW
596 "foreach loop entry",
597 "foreach loop iterator",
598 "loop entry",
599 "loop exit",
600 "return",
601 "last",
602 "next",
603 "redo",
604 "dump",
605 "goto",
606 "exit",
fdecdb95
NC
607 "method with known name",
608 "given()",
609 "leave given block",
610 "when()",
611 "leave when block",
612 "break",
613 "continue",
79072805
LW
614 "open",
615 "close",
616 "pipe",
617 "fileno",
618 "umask",
619 "binmode",
463ee0b2
LW
620 "tie",
621 "untie",
c07a80fd 622 "tied",
79072805
LW
623 "dbmopen",
624 "dbmclose",
625 "select system call",
626 "select",
627 "getc",
628 "read",
629 "write",
630 "write exit",
463ee0b2 631 "printf",
79072805 632 "print",
fdecdb95 633 "say",
c07a80fd 634 "sysopen",
137443ea 635 "sysseek",
79072805
LW
636 "sysread",
637 "syswrite",
79072805
LW
638 "eof",
639 "tell",
640 "seek",
641 "truncate",
642 "fcntl",
643 "ioctl",
644 "flock",
e71197e2
JC
645 "send",
646 "recv",
79072805
LW
647 "socket",
648 "socketpair",
649 "bind",
650 "connect",
651 "listen",
652 "accept",
653 "shutdown",
654 "getsockopt",
655 "setsockopt",
656 "getsockname",
657 "getpeername",
658 "lstat",
659 "stat",
660 "-R",
661 "-W",
662 "-X",
663 "-r",
664 "-w",
665 "-x",
666 "-e",
79072805
LW
667 "-s",
668 "-M",
669 "-A",
670 "-C",
7834bb7e
NC
671 "-O",
672 "-o",
673 "-z",
79072805
LW
674 "-S",
675 "-c",
676 "-b",
677 "-f",
678 "-d",
679 "-p",
79072805
LW
680 "-u",
681 "-g",
682 "-k",
7834bb7e 683 "-l",
79072805
LW
684 "-t",
685 "-T",
686 "-B",
687 "chdir",
688 "chown",
689 "chroot",
690 "unlink",
691 "chmod",
692 "utime",
693 "rename",
694 "link",
695 "symlink",
696 "readlink",
697 "mkdir",
698 "rmdir",
699 "opendir",
700 "readdir",
701 "telldir",
702 "seekdir",
703 "rewinddir",
704 "closedir",
705 "fork",
706 "wait",
707 "waitpid",
708 "system",
709 "exec",
710 "kill",
711 "getppid",
712 "getpgrp",
713 "setpgrp",
714 "getpriority",
715 "setpriority",
716 "time",
717 "times",
718 "localtime",
719 "gmtime",
720 "alarm",
721 "sleep",
722 "shmget",
723 "shmctl",
724 "shmread",
725 "shmwrite",
726 "msgget",
727 "msgctl",
728 "msgsnd",
729 "msgrcv",
7834bb7e 730 "semop",
79072805
LW
731 "semget",
732 "semctl",
79072805 733 "require",
b3f4d674 734 "do \"file\"",
996c9baa 735 "eval hints",
b3f4d674
GS
736 "eval \"string\"",
737 "eval \"string\" exit",
42d38218 738 "eval {block}",
f1612b5c 739 "eval {block} exit",
79072805
LW
740 "gethostbyname",
741 "gethostbyaddr",
742 "gethostent",
743 "getnetbyname",
744 "getnetbyaddr",
745 "getnetent",
746 "getprotobyname",
747 "getprotobynumber",
748 "getprotoent",
749 "getservbyname",
750 "getservbyport",
751 "getservent",
752 "sethostent",
753 "setnetent",
754 "setprotoent",
755 "setservent",
756 "endhostent",
757 "endnetent",
758 "endprotoent",
759 "endservent",
760 "getpwnam",
761 "getpwuid",
762 "getpwent",
763 "setpwent",
764 "endpwent",
765 "getgrnam",
766 "getgrgid",
767 "getgrent",
768 "setgrent",
769 "endgrent",
770 "getlogin",
771 "syscall",
c0329465 772 "lock",
c5917253 773 "once",
438c221d 774 "unknown custom operator",
79072805
LW
775};
776#endif
777
73c4f7a1
GS
778END_EXTERN_C
779
27da23d5
JH
780#endif /* !PERL_GLOBAL_STRUCT_INIT */
781
73c4f7a1
GS
782START_EXTERN_C
783
27da23d5 784#ifdef PERL_GLOBAL_STRUCT_INIT
97aff369 785# define PERL_PPADDR_INITED
27da23d5 786static const Perl_ppaddr_t Gppaddr[]
79072805 787#else
27da23d5 788# ifndef PERL_GLOBAL_STRUCT
97aff369 789# define PERL_PPADDR_INITED
27da23d5
JH
790EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
791# endif
792#endif /* PERL_GLOBAL_STRUCT */
793#if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
97aff369 794# define PERL_PPADDR_INITED
27da23d5 795= {
2b260de0
GS
796 MEMBER_TO_FPTR(Perl_pp_null),
797 MEMBER_TO_FPTR(Perl_pp_stub),
0b612f93 798 MEMBER_TO_FPTR(Perl_pp_null), /* Perl_pp_scalar */
2b260de0
GS
799 MEMBER_TO_FPTR(Perl_pp_pushmark),
800 MEMBER_TO_FPTR(Perl_pp_wantarray),
801 MEMBER_TO_FPTR(Perl_pp_const),
802 MEMBER_TO_FPTR(Perl_pp_gvsv),
803 MEMBER_TO_FPTR(Perl_pp_gv),
804 MEMBER_TO_FPTR(Perl_pp_gelem),
805 MEMBER_TO_FPTR(Perl_pp_padsv),
806 MEMBER_TO_FPTR(Perl_pp_padav),
807 MEMBER_TO_FPTR(Perl_pp_padhv),
65bca31a 808 MEMBER_TO_FPTR(Perl_unimplemented_op), /* Perl_pp_padany */
2b260de0
GS
809 MEMBER_TO_FPTR(Perl_pp_pushre),
810 MEMBER_TO_FPTR(Perl_pp_rv2gv),
811 MEMBER_TO_FPTR(Perl_pp_rv2sv),
812 MEMBER_TO_FPTR(Perl_pp_av2arylen),
813 MEMBER_TO_FPTR(Perl_pp_rv2cv),
814 MEMBER_TO_FPTR(Perl_pp_anoncode),
815 MEMBER_TO_FPTR(Perl_pp_prototype),
816 MEMBER_TO_FPTR(Perl_pp_refgen),
817 MEMBER_TO_FPTR(Perl_pp_srefgen),
818 MEMBER_TO_FPTR(Perl_pp_ref),
819 MEMBER_TO_FPTR(Perl_pp_bless),
820 MEMBER_TO_FPTR(Perl_pp_backtick),
821 MEMBER_TO_FPTR(Perl_pp_glob),
822 MEMBER_TO_FPTR(Perl_pp_readline),
823 MEMBER_TO_FPTR(Perl_pp_rcatline),
0b612f93 824 MEMBER_TO_FPTR(Perl_pp_null), /* Perl_pp_regcmaybe */
2b260de0
GS
825 MEMBER_TO_FPTR(Perl_pp_regcreset),
826 MEMBER_TO_FPTR(Perl_pp_regcomp),
827 MEMBER_TO_FPTR(Perl_pp_match),
828 MEMBER_TO_FPTR(Perl_pp_qr),
829 MEMBER_TO_FPTR(Perl_pp_subst),
830 MEMBER_TO_FPTR(Perl_pp_substcont),
831 MEMBER_TO_FPTR(Perl_pp_trans),
832 MEMBER_TO_FPTR(Perl_pp_sassign),
833 MEMBER_TO_FPTR(Perl_pp_aassign),
834 MEMBER_TO_FPTR(Perl_pp_chop),
835 MEMBER_TO_FPTR(Perl_pp_schop),
836 MEMBER_TO_FPTR(Perl_pp_chomp),
837 MEMBER_TO_FPTR(Perl_pp_schomp),
838 MEMBER_TO_FPTR(Perl_pp_defined),
839 MEMBER_TO_FPTR(Perl_pp_undef),
840 MEMBER_TO_FPTR(Perl_pp_study),
841 MEMBER_TO_FPTR(Perl_pp_pos),
842 MEMBER_TO_FPTR(Perl_pp_preinc),
843 MEMBER_TO_FPTR(Perl_pp_i_preinc),
844 MEMBER_TO_FPTR(Perl_pp_predec),
845 MEMBER_TO_FPTR(Perl_pp_i_predec),
846 MEMBER_TO_FPTR(Perl_pp_postinc),
847 MEMBER_TO_FPTR(Perl_pp_i_postinc),
848 MEMBER_TO_FPTR(Perl_pp_postdec),
849 MEMBER_TO_FPTR(Perl_pp_i_postdec),
850 MEMBER_TO_FPTR(Perl_pp_pow),
851 MEMBER_TO_FPTR(Perl_pp_multiply),
852 MEMBER_TO_FPTR(Perl_pp_i_multiply),
853 MEMBER_TO_FPTR(Perl_pp_divide),
854 MEMBER_TO_FPTR(Perl_pp_i_divide),
855 MEMBER_TO_FPTR(Perl_pp_modulo),
856 MEMBER_TO_FPTR(Perl_pp_i_modulo),
857 MEMBER_TO_FPTR(Perl_pp_repeat),
858 MEMBER_TO_FPTR(Perl_pp_add),
859 MEMBER_TO_FPTR(Perl_pp_i_add),
860 MEMBER_TO_FPTR(Perl_pp_subtract),
861 MEMBER_TO_FPTR(Perl_pp_i_subtract),
862 MEMBER_TO_FPTR(Perl_pp_concat),
863 MEMBER_TO_FPTR(Perl_pp_stringify),
864 MEMBER_TO_FPTR(Perl_pp_left_shift),
865 MEMBER_TO_FPTR(Perl_pp_right_shift),
866 MEMBER_TO_FPTR(Perl_pp_lt),
867 MEMBER_TO_FPTR(Perl_pp_i_lt),
868 MEMBER_TO_FPTR(Perl_pp_gt),
869 MEMBER_TO_FPTR(Perl_pp_i_gt),
870 MEMBER_TO_FPTR(Perl_pp_le),
871 MEMBER_TO_FPTR(Perl_pp_i_le),
872 MEMBER_TO_FPTR(Perl_pp_ge),
873 MEMBER_TO_FPTR(Perl_pp_i_ge),
874 MEMBER_TO_FPTR(Perl_pp_eq),
875 MEMBER_TO_FPTR(Perl_pp_i_eq),
876 MEMBER_TO_FPTR(Perl_pp_ne),
877 MEMBER_TO_FPTR(Perl_pp_i_ne),
878 MEMBER_TO_FPTR(Perl_pp_ncmp),
879 MEMBER_TO_FPTR(Perl_pp_i_ncmp),
afd9910b
NC
880 MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_slt */
881 MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_sgt */
2b260de0 882 MEMBER_TO_FPTR(Perl_pp_sle),
afd9910b 883 MEMBER_TO_FPTR(Perl_pp_sle), /* Perl_pp_sge */
2b260de0
GS
884 MEMBER_TO_FPTR(Perl_pp_seq),
885 MEMBER_TO_FPTR(Perl_pp_sne),
886 MEMBER_TO_FPTR(Perl_pp_scmp),
887 MEMBER_TO_FPTR(Perl_pp_bit_and),
3658c1f1 888 MEMBER_TO_FPTR(Perl_pp_bit_or), /* Perl_pp_bit_xor */
2b260de0
GS
889 MEMBER_TO_FPTR(Perl_pp_bit_or),
890 MEMBER_TO_FPTR(Perl_pp_negate),
891 MEMBER_TO_FPTR(Perl_pp_i_negate),
892 MEMBER_TO_FPTR(Perl_pp_not),
893 MEMBER_TO_FPTR(Perl_pp_complement),
fdecdb95 894 MEMBER_TO_FPTR(Perl_pp_smartmatch),
2b260de0
GS
895 MEMBER_TO_FPTR(Perl_pp_atan2),
896 MEMBER_TO_FPTR(Perl_pp_sin),
71302fe3 897 MEMBER_TO_FPTR(Perl_pp_sin), /* Perl_pp_cos */
2b260de0
GS
898 MEMBER_TO_FPTR(Perl_pp_rand),
899 MEMBER_TO_FPTR(Perl_pp_srand),
71302fe3
NC
900 MEMBER_TO_FPTR(Perl_pp_sin), /* Perl_pp_exp */
901 MEMBER_TO_FPTR(Perl_pp_sin), /* Perl_pp_log */
902 MEMBER_TO_FPTR(Perl_pp_sin), /* Perl_pp_sqrt */
2b260de0 903 MEMBER_TO_FPTR(Perl_pp_int),
daa2adfd 904 MEMBER_TO_FPTR(Perl_pp_oct), /* Perl_pp_hex */
2b260de0
GS
905 MEMBER_TO_FPTR(Perl_pp_oct),
906 MEMBER_TO_FPTR(Perl_pp_abs),
907 MEMBER_TO_FPTR(Perl_pp_length),
908 MEMBER_TO_FPTR(Perl_pp_substr),
909 MEMBER_TO_FPTR(Perl_pp_vec),
910 MEMBER_TO_FPTR(Perl_pp_index),
2723d216 911 MEMBER_TO_FPTR(Perl_pp_index), /* Perl_pp_rindex */
2b260de0
GS
912 MEMBER_TO_FPTR(Perl_pp_sprintf),
913 MEMBER_TO_FPTR(Perl_pp_formline),
914 MEMBER_TO_FPTR(Perl_pp_ord),
915 MEMBER_TO_FPTR(Perl_pp_chr),
916 MEMBER_TO_FPTR(Perl_pp_crypt),
917 MEMBER_TO_FPTR(Perl_pp_ucfirst),
12e9c124 918 MEMBER_TO_FPTR(Perl_pp_ucfirst), /* Perl_pp_lcfirst */
2b260de0
GS
919 MEMBER_TO_FPTR(Perl_pp_uc),
920 MEMBER_TO_FPTR(Perl_pp_lc),
921 MEMBER_TO_FPTR(Perl_pp_quotemeta),
922 MEMBER_TO_FPTR(Perl_pp_rv2av),
923 MEMBER_TO_FPTR(Perl_pp_aelemfast),
924 MEMBER_TO_FPTR(Perl_pp_aelem),
925 MEMBER_TO_FPTR(Perl_pp_aslice),
878d132a
NC
926 MEMBER_TO_FPTR(Perl_pp_aeach),
927 MEMBER_TO_FPTR(Perl_pp_akeys),
928 MEMBER_TO_FPTR(Perl_pp_akeys), /* Perl_pp_avalues */
2b260de0 929 MEMBER_TO_FPTR(Perl_pp_each),
6faeeb49
MB
930 MEMBER_TO_FPTR(Perl_do_kv), /* Perl_pp_values */
931 MEMBER_TO_FPTR(Perl_do_kv), /* Perl_pp_keys */
2b260de0
GS
932 MEMBER_TO_FPTR(Perl_pp_delete),
933 MEMBER_TO_FPTR(Perl_pp_exists),
17ab7946 934 MEMBER_TO_FPTR(Perl_pp_rv2av), /* Perl_pp_rv2hv */
2b260de0
GS
935 MEMBER_TO_FPTR(Perl_pp_helem),
936 MEMBER_TO_FPTR(Perl_pp_hslice),
2e0eeeaa 937 MEMBER_TO_FPTR(Perl_pp_boolkeys),
2b260de0
GS
938 MEMBER_TO_FPTR(Perl_pp_unpack),
939 MEMBER_TO_FPTR(Perl_pp_pack),
940 MEMBER_TO_FPTR(Perl_pp_split),
941 MEMBER_TO_FPTR(Perl_pp_join),
942 MEMBER_TO_FPTR(Perl_pp_list),
943 MEMBER_TO_FPTR(Perl_pp_lslice),
944 MEMBER_TO_FPTR(Perl_pp_anonlist),
945 MEMBER_TO_FPTR(Perl_pp_anonhash),
946 MEMBER_TO_FPTR(Perl_pp_splice),
947 MEMBER_TO_FPTR(Perl_pp_push),
789b4bc9 948 MEMBER_TO_FPTR(Perl_pp_shift), /* Perl_pp_pop */
2b260de0
GS
949 MEMBER_TO_FPTR(Perl_pp_shift),
950 MEMBER_TO_FPTR(Perl_pp_unshift),
951 MEMBER_TO_FPTR(Perl_pp_sort),
952 MEMBER_TO_FPTR(Perl_pp_reverse),
953 MEMBER_TO_FPTR(Perl_pp_grepstart),
954 MEMBER_TO_FPTR(Perl_pp_grepwhile),
65bca31a 955 MEMBER_TO_FPTR(Perl_unimplemented_op), /* Perl_pp_mapstart */
2b260de0
GS
956 MEMBER_TO_FPTR(Perl_pp_mapwhile),
957 MEMBER_TO_FPTR(Perl_pp_range),
958 MEMBER_TO_FPTR(Perl_pp_flip),
959 MEMBER_TO_FPTR(Perl_pp_flop),
62726f23
SP
960 MEMBER_TO_FPTR(Perl_pp_and),
961 MEMBER_TO_FPTR(Perl_pp_or),
2b260de0 962 MEMBER_TO_FPTR(Perl_pp_xor),
fdecdb95 963 MEMBER_TO_FPTR(Perl_pp_defined), /* Perl_pp_dor */
2b260de0 964 MEMBER_TO_FPTR(Perl_pp_cond_expr),
62726f23
SP
965 MEMBER_TO_FPTR(Perl_pp_and), /* Perl_pp_andassign */
966 MEMBER_TO_FPTR(Perl_pp_or), /* Perl_pp_orassign */
fdecdb95 967 MEMBER_TO_FPTR(Perl_pp_defined), /* Perl_pp_dorassign */
2b260de0
GS
968 MEMBER_TO_FPTR(Perl_pp_method),
969 MEMBER_TO_FPTR(Perl_pp_entersub),
970 MEMBER_TO_FPTR(Perl_pp_leavesub),
971 MEMBER_TO_FPTR(Perl_pp_leavesublv),
972 MEMBER_TO_FPTR(Perl_pp_caller),
973 MEMBER_TO_FPTR(Perl_pp_warn),
974 MEMBER_TO_FPTR(Perl_pp_die),
975 MEMBER_TO_FPTR(Perl_pp_reset),
0b612f93 976 MEMBER_TO_FPTR(Perl_pp_null), /* Perl_pp_lineseq */
2b260de0
GS
977 MEMBER_TO_FPTR(Perl_pp_nextstate),
978 MEMBER_TO_FPTR(Perl_pp_dbstate),
979 MEMBER_TO_FPTR(Perl_pp_unstack),
980 MEMBER_TO_FPTR(Perl_pp_enter),
981 MEMBER_TO_FPTR(Perl_pp_leave),
0b612f93 982 MEMBER_TO_FPTR(Perl_pp_null), /* Perl_pp_scope */
2b260de0
GS
983 MEMBER_TO_FPTR(Perl_pp_enteriter),
984 MEMBER_TO_FPTR(Perl_pp_iter),
985 MEMBER_TO_FPTR(Perl_pp_enterloop),
986 MEMBER_TO_FPTR(Perl_pp_leaveloop),
987 MEMBER_TO_FPTR(Perl_pp_return),
988 MEMBER_TO_FPTR(Perl_pp_last),
989 MEMBER_TO_FPTR(Perl_pp_next),
990 MEMBER_TO_FPTR(Perl_pp_redo),
0b612f93 991 MEMBER_TO_FPTR(Perl_pp_goto), /* Perl_pp_dump */
2b260de0
GS
992 MEMBER_TO_FPTR(Perl_pp_goto),
993 MEMBER_TO_FPTR(Perl_pp_exit),
fdecdb95
NC
994 MEMBER_TO_FPTR(Perl_pp_method_named),
995 MEMBER_TO_FPTR(Perl_pp_entergiven),
996 MEMBER_TO_FPTR(Perl_pp_leavegiven),
997 MEMBER_TO_FPTR(Perl_pp_enterwhen),
998 MEMBER_TO_FPTR(Perl_pp_leavewhen),
999 MEMBER_TO_FPTR(Perl_pp_break),
1000 MEMBER_TO_FPTR(Perl_pp_continue),
2b260de0
GS
1001 MEMBER_TO_FPTR(Perl_pp_open),
1002 MEMBER_TO_FPTR(Perl_pp_close),
1003 MEMBER_TO_FPTR(Perl_pp_pipe_op),
1004 MEMBER_TO_FPTR(Perl_pp_fileno),
1005 MEMBER_TO_FPTR(Perl_pp_umask),
1006 MEMBER_TO_FPTR(Perl_pp_binmode),
1007 MEMBER_TO_FPTR(Perl_pp_tie),
1008 MEMBER_TO_FPTR(Perl_pp_untie),
1009 MEMBER_TO_FPTR(Perl_pp_tied),
1010 MEMBER_TO_FPTR(Perl_pp_dbmopen),
0b612f93 1011 MEMBER_TO_FPTR(Perl_pp_untie), /* Perl_pp_dbmclose */
2b260de0
GS
1012 MEMBER_TO_FPTR(Perl_pp_sselect),
1013 MEMBER_TO_FPTR(Perl_pp_select),
1014 MEMBER_TO_FPTR(Perl_pp_getc),
0b612f93 1015 MEMBER_TO_FPTR(Perl_pp_sysread), /* Perl_pp_read */
2b260de0
GS
1016 MEMBER_TO_FPTR(Perl_pp_enterwrite),
1017 MEMBER_TO_FPTR(Perl_pp_leavewrite),
1018 MEMBER_TO_FPTR(Perl_pp_prtf),
1019 MEMBER_TO_FPTR(Perl_pp_print),
fdecdb95 1020 MEMBER_TO_FPTR(Perl_pp_print), /* Perl_pp_say */
2b260de0
GS
1021 MEMBER_TO_FPTR(Perl_pp_sysopen),
1022 MEMBER_TO_FPTR(Perl_pp_sysseek),
1023 MEMBER_TO_FPTR(Perl_pp_sysread),
64a1bc8e 1024 MEMBER_TO_FPTR(Perl_pp_send), /* Perl_pp_syswrite */
2b260de0
GS
1025 MEMBER_TO_FPTR(Perl_pp_eof),
1026 MEMBER_TO_FPTR(Perl_pp_tell),
0b612f93 1027 MEMBER_TO_FPTR(Perl_pp_sysseek), /* Perl_pp_seek */
2b260de0 1028 MEMBER_TO_FPTR(Perl_pp_truncate),
0b612f93 1029 MEMBER_TO_FPTR(Perl_pp_ioctl), /* Perl_pp_fcntl */
2b260de0
GS
1030 MEMBER_TO_FPTR(Perl_pp_ioctl),
1031 MEMBER_TO_FPTR(Perl_pp_flock),
e71197e2
JC
1032 MEMBER_TO_FPTR(Perl_pp_send),
1033 MEMBER_TO_FPTR(Perl_pp_sysread), /* Perl_pp_recv */
2b260de0
GS
1034 MEMBER_TO_FPTR(Perl_pp_socket),
1035 MEMBER_TO_FPTR(Perl_pp_sockpair),
1036 MEMBER_TO_FPTR(Perl_pp_bind),
1037 MEMBER_TO_FPTR(Perl_pp_connect),
1038 MEMBER_TO_FPTR(Perl_pp_listen),
1039 MEMBER_TO_FPTR(Perl_pp_accept),
1040 MEMBER_TO_FPTR(Perl_pp_shutdown),
0b612f93 1041 MEMBER_TO_FPTR(Perl_pp_ssockopt), /* Perl_pp_gsockopt */
2b260de0 1042 MEMBER_TO_FPTR(Perl_pp_ssockopt),
0b612f93 1043 MEMBER_TO_FPTR(Perl_pp_getpeername), /* Perl_pp_getsockname */
2b260de0 1044 MEMBER_TO_FPTR(Perl_pp_getpeername),
0b612f93 1045 MEMBER_TO_FPTR(Perl_pp_stat), /* Perl_pp_lstat */
2b260de0
GS
1046 MEMBER_TO_FPTR(Perl_pp_stat),
1047 MEMBER_TO_FPTR(Perl_pp_ftrread),
af9e49b4
NC
1048 MEMBER_TO_FPTR(Perl_pp_ftrread), /* Perl_pp_ftrwrite */
1049 MEMBER_TO_FPTR(Perl_pp_ftrread), /* Perl_pp_ftrexec */
1050 MEMBER_TO_FPTR(Perl_pp_ftrread), /* Perl_pp_fteread */
1051 MEMBER_TO_FPTR(Perl_pp_ftrread), /* Perl_pp_ftewrite */
1052 MEMBER_TO_FPTR(Perl_pp_ftrread), /* Perl_pp_fteexec */
2b260de0 1053 MEMBER_TO_FPTR(Perl_pp_ftis),
957b0e1d
NC
1054 MEMBER_TO_FPTR(Perl_pp_ftis), /* Perl_pp_ftsize */
1055 MEMBER_TO_FPTR(Perl_pp_ftis), /* Perl_pp_ftmtime */
1056 MEMBER_TO_FPTR(Perl_pp_ftis), /* Perl_pp_ftatime */
1057 MEMBER_TO_FPTR(Perl_pp_ftis), /* Perl_pp_ftctime */
7834bb7e
NC
1058 MEMBER_TO_FPTR(Perl_pp_ftrowned),
1059 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_fteowned */
1060 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftzero */
f1cb2d48
NC
1061 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftsock */
1062 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftchr */
1063 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftblk */
1064 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftfile */
1065 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftdir */
1066 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftpipe */
17ad201a
NC
1067 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftsuid */
1068 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftsgid */
1069 MEMBER_TO_FPTR(Perl_pp_ftrowned), /* Perl_pp_ftsvtx */
7834bb7e 1070 MEMBER_TO_FPTR(Perl_pp_ftlink),
2b260de0
GS
1071 MEMBER_TO_FPTR(Perl_pp_fttty),
1072 MEMBER_TO_FPTR(Perl_pp_fttext),
0b612f93 1073 MEMBER_TO_FPTR(Perl_pp_fttext), /* Perl_pp_ftbinary */
2b260de0
GS
1074 MEMBER_TO_FPTR(Perl_pp_chdir),
1075 MEMBER_TO_FPTR(Perl_pp_chown),
1076 MEMBER_TO_FPTR(Perl_pp_chroot),
605b9385
NC
1077 MEMBER_TO_FPTR(Perl_pp_chown), /* Perl_pp_unlink */
1078 MEMBER_TO_FPTR(Perl_pp_chown), /* Perl_pp_chmod */
1079 MEMBER_TO_FPTR(Perl_pp_chown), /* Perl_pp_utime */
2b260de0
GS
1080 MEMBER_TO_FPTR(Perl_pp_rename),
1081 MEMBER_TO_FPTR(Perl_pp_link),
ce6987d0 1082 MEMBER_TO_FPTR(Perl_pp_link), /* Perl_pp_symlink */
2b260de0
GS
1083 MEMBER_TO_FPTR(Perl_pp_readlink),
1084 MEMBER_TO_FPTR(Perl_pp_mkdir),
1085 MEMBER_TO_FPTR(Perl_pp_rmdir),
1086 MEMBER_TO_FPTR(Perl_pp_open_dir),
1087 MEMBER_TO_FPTR(Perl_pp_readdir),
1088 MEMBER_TO_FPTR(Perl_pp_telldir),
1089 MEMBER_TO_FPTR(Perl_pp_seekdir),
1090 MEMBER_TO_FPTR(Perl_pp_rewinddir),
1091 MEMBER_TO_FPTR(Perl_pp_closedir),
1092 MEMBER_TO_FPTR(Perl_pp_fork),
1093 MEMBER_TO_FPTR(Perl_pp_wait),
1094 MEMBER_TO_FPTR(Perl_pp_waitpid),
1095 MEMBER_TO_FPTR(Perl_pp_system),
1096 MEMBER_TO_FPTR(Perl_pp_exec),
605b9385 1097 MEMBER_TO_FPTR(Perl_pp_chown), /* Perl_pp_kill */
2b260de0
GS
1098 MEMBER_TO_FPTR(Perl_pp_getppid),
1099 MEMBER_TO_FPTR(Perl_pp_getpgrp),
1100 MEMBER_TO_FPTR(Perl_pp_setpgrp),
1101 MEMBER_TO_FPTR(Perl_pp_getpriority),
1102 MEMBER_TO_FPTR(Perl_pp_setpriority),
1103 MEMBER_TO_FPTR(Perl_pp_time),
1104 MEMBER_TO_FPTR(Perl_pp_tms),
0b612f93 1105 MEMBER_TO_FPTR(Perl_pp_gmtime), /* Perl_pp_localtime */
2b260de0
GS
1106 MEMBER_TO_FPTR(Perl_pp_gmtime),
1107 MEMBER_TO_FPTR(Perl_pp_alarm),
1108 MEMBER_TO_FPTR(Perl_pp_sleep),
0b612f93
NC
1109 MEMBER_TO_FPTR(Perl_pp_semget), /* Perl_pp_shmget */
1110 MEMBER_TO_FPTR(Perl_pp_semctl), /* Perl_pp_shmctl */
1111 MEMBER_TO_FPTR(Perl_pp_shmwrite), /* Perl_pp_shmread */
2b260de0 1112 MEMBER_TO_FPTR(Perl_pp_shmwrite),
0b612f93
NC
1113 MEMBER_TO_FPTR(Perl_pp_semget), /* Perl_pp_msgget */
1114 MEMBER_TO_FPTR(Perl_pp_semctl), /* Perl_pp_msgctl */
c9f7ac20
NC
1115 MEMBER_TO_FPTR(Perl_pp_shmwrite), /* Perl_pp_msgsnd */
1116 MEMBER_TO_FPTR(Perl_pp_shmwrite), /* Perl_pp_msgrcv */
7834bb7e 1117 MEMBER_TO_FPTR(Perl_pp_shmwrite), /* Perl_pp_semop */
2b260de0
GS
1118 MEMBER_TO_FPTR(Perl_pp_semget),
1119 MEMBER_TO_FPTR(Perl_pp_semctl),
2b260de0 1120 MEMBER_TO_FPTR(Perl_pp_require),
0b612f93 1121 MEMBER_TO_FPTR(Perl_pp_require), /* Perl_pp_dofile */
996c9baa 1122 MEMBER_TO_FPTR(Perl_pp_hintseval),
2b260de0
GS
1123 MEMBER_TO_FPTR(Perl_pp_entereval),
1124 MEMBER_TO_FPTR(Perl_pp_leaveeval),
1125 MEMBER_TO_FPTR(Perl_pp_entertry),
1126 MEMBER_TO_FPTR(Perl_pp_leavetry),
0b612f93
NC
1127 MEMBER_TO_FPTR(Perl_pp_ghostent), /* Perl_pp_ghbyname */
1128 MEMBER_TO_FPTR(Perl_pp_ghostent), /* Perl_pp_ghbyaddr */
2b260de0 1129 MEMBER_TO_FPTR(Perl_pp_ghostent),
0b612f93
NC
1130 MEMBER_TO_FPTR(Perl_pp_gnetent), /* Perl_pp_gnbyname */
1131 MEMBER_TO_FPTR(Perl_pp_gnetent), /* Perl_pp_gnbyaddr */
2b260de0 1132 MEMBER_TO_FPTR(Perl_pp_gnetent),
0b612f93
NC
1133 MEMBER_TO_FPTR(Perl_pp_gprotoent), /* Perl_pp_gpbyname */
1134 MEMBER_TO_FPTR(Perl_pp_gprotoent), /* Perl_pp_gpbynumber */
2b260de0 1135 MEMBER_TO_FPTR(Perl_pp_gprotoent),
0b612f93
NC
1136 MEMBER_TO_FPTR(Perl_pp_gservent), /* Perl_pp_gsbyname */
1137 MEMBER_TO_FPTR(Perl_pp_gservent), /* Perl_pp_gsbyport */
2b260de0
GS
1138 MEMBER_TO_FPTR(Perl_pp_gservent),
1139 MEMBER_TO_FPTR(Perl_pp_shostent),
1140 MEMBER_TO_FPTR(Perl_pp_snetent),
1141 MEMBER_TO_FPTR(Perl_pp_sprotoent),
1142 MEMBER_TO_FPTR(Perl_pp_sservent),
1143 MEMBER_TO_FPTR(Perl_pp_ehostent),
1144 MEMBER_TO_FPTR(Perl_pp_enetent),
1145 MEMBER_TO_FPTR(Perl_pp_eprotoent),
1146 MEMBER_TO_FPTR(Perl_pp_eservent),
0b612f93
NC
1147 MEMBER_TO_FPTR(Perl_pp_gpwent), /* Perl_pp_gpwnam */
1148 MEMBER_TO_FPTR(Perl_pp_gpwent), /* Perl_pp_gpwuid */
2b260de0
GS
1149 MEMBER_TO_FPTR(Perl_pp_gpwent),
1150 MEMBER_TO_FPTR(Perl_pp_spwent),
1151 MEMBER_TO_FPTR(Perl_pp_epwent),
0b612f93
NC
1152 MEMBER_TO_FPTR(Perl_pp_ggrent), /* Perl_pp_ggrnam */
1153 MEMBER_TO_FPTR(Perl_pp_ggrent), /* Perl_pp_ggrgid */
2b260de0
GS
1154 MEMBER_TO_FPTR(Perl_pp_ggrent),
1155 MEMBER_TO_FPTR(Perl_pp_sgrent),
1156 MEMBER_TO_FPTR(Perl_pp_egrent),
1157 MEMBER_TO_FPTR(Perl_pp_getlogin),
1158 MEMBER_TO_FPTR(Perl_pp_syscall),
1159 MEMBER_TO_FPTR(Perl_pp_lock),
c5917253 1160 MEMBER_TO_FPTR(Perl_pp_once),
d83386fa 1161 MEMBER_TO_FPTR(Perl_unimplemented_op), /* Perl_pp_custom */
27da23d5 1162}
79072805 1163#endif
97aff369 1164#ifdef PERL_PPADDR_INITED
27da23d5 1165;
97aff369 1166#endif
79072805 1167
27da23d5 1168#ifdef PERL_GLOBAL_STRUCT_INIT
97aff369 1169# define PERL_CHECK_INITED
27da23d5 1170static const Perl_check_t Gcheck[]
79072805 1171#else
27da23d5 1172# ifndef PERL_GLOBAL_STRUCT
97aff369 1173# define PERL_CHECK_INITED
27da23d5
JH
1174EXT Perl_check_t PL_check[] /* or perlvars.h */
1175# endif
1176#endif
1177#if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
97aff369 1178# define PERL_CHECK_INITED
27da23d5 1179= {
2b260de0
GS
1180 MEMBER_TO_FPTR(Perl_ck_null), /* null */
1181 MEMBER_TO_FPTR(Perl_ck_null), /* stub */
1182 MEMBER_TO_FPTR(Perl_ck_fun), /* scalar */
1183 MEMBER_TO_FPTR(Perl_ck_null), /* pushmark */
1184 MEMBER_TO_FPTR(Perl_ck_null), /* wantarray */
1185 MEMBER_TO_FPTR(Perl_ck_svconst), /* const */
1186 MEMBER_TO_FPTR(Perl_ck_null), /* gvsv */
1187 MEMBER_TO_FPTR(Perl_ck_null), /* gv */
1188 MEMBER_TO_FPTR(Perl_ck_null), /* gelem */
1189 MEMBER_TO_FPTR(Perl_ck_null), /* padsv */
1190 MEMBER_TO_FPTR(Perl_ck_null), /* padav */
1191 MEMBER_TO_FPTR(Perl_ck_null), /* padhv */
1192 MEMBER_TO_FPTR(Perl_ck_null), /* padany */
1193 MEMBER_TO_FPTR(Perl_ck_null), /* pushre */
1194 MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2gv */
1195 MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2sv */
1196 MEMBER_TO_FPTR(Perl_ck_null), /* av2arylen */
1197 MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2cv */
1198 MEMBER_TO_FPTR(Perl_ck_anoncode), /* anoncode */
1199 MEMBER_TO_FPTR(Perl_ck_null), /* prototype */
1200 MEMBER_TO_FPTR(Perl_ck_spair), /* refgen */
1201 MEMBER_TO_FPTR(Perl_ck_null), /* srefgen */
1202 MEMBER_TO_FPTR(Perl_ck_fun), /* ref */
1203 MEMBER_TO_FPTR(Perl_ck_fun), /* bless */
16fe6d59 1204 MEMBER_TO_FPTR(Perl_ck_open), /* backtick */
2b260de0 1205 MEMBER_TO_FPTR(Perl_ck_glob), /* glob */
e4b7ebf3 1206 MEMBER_TO_FPTR(Perl_ck_readline), /* readline */
2b260de0
GS
1207 MEMBER_TO_FPTR(Perl_ck_null), /* rcatline */
1208 MEMBER_TO_FPTR(Perl_ck_fun), /* regcmaybe */
1209 MEMBER_TO_FPTR(Perl_ck_fun), /* regcreset */
1210 MEMBER_TO_FPTR(Perl_ck_null), /* regcomp */
1211 MEMBER_TO_FPTR(Perl_ck_match), /* match */
1212 MEMBER_TO_FPTR(Perl_ck_match), /* qr */
59f00321 1213 MEMBER_TO_FPTR(Perl_ck_match), /* subst */
2b260de0 1214 MEMBER_TO_FPTR(Perl_ck_null), /* substcont */
59f00321 1215 MEMBER_TO_FPTR(Perl_ck_match), /* trans */
2b260de0
GS
1216 MEMBER_TO_FPTR(Perl_ck_sassign), /* sassign */
1217 MEMBER_TO_FPTR(Perl_ck_null), /* aassign */
1218 MEMBER_TO_FPTR(Perl_ck_spair), /* chop */
1219 MEMBER_TO_FPTR(Perl_ck_null), /* schop */
1220 MEMBER_TO_FPTR(Perl_ck_spair), /* chomp */
1221 MEMBER_TO_FPTR(Perl_ck_null), /* schomp */
1222 MEMBER_TO_FPTR(Perl_ck_defined), /* defined */
1223 MEMBER_TO_FPTR(Perl_ck_lfun), /* undef */
1224 MEMBER_TO_FPTR(Perl_ck_fun), /* study */
1225 MEMBER_TO_FPTR(Perl_ck_lfun), /* pos */
1226 MEMBER_TO_FPTR(Perl_ck_lfun), /* preinc */
1227 MEMBER_TO_FPTR(Perl_ck_lfun), /* i_preinc */
1228 MEMBER_TO_FPTR(Perl_ck_lfun), /* predec */
1229 MEMBER_TO_FPTR(Perl_ck_lfun), /* i_predec */
1230 MEMBER_TO_FPTR(Perl_ck_lfun), /* postinc */
1231 MEMBER_TO_FPTR(Perl_ck_lfun), /* i_postinc */
1232 MEMBER_TO_FPTR(Perl_ck_lfun), /* postdec */
1233 MEMBER_TO_FPTR(Perl_ck_lfun), /* i_postdec */
1234 MEMBER_TO_FPTR(Perl_ck_null), /* pow */
1235 MEMBER_TO_FPTR(Perl_ck_null), /* multiply */
1236 MEMBER_TO_FPTR(Perl_ck_null), /* i_multiply */
1237 MEMBER_TO_FPTR(Perl_ck_null), /* divide */
1238 MEMBER_TO_FPTR(Perl_ck_null), /* i_divide */
1239 MEMBER_TO_FPTR(Perl_ck_null), /* modulo */
1240 MEMBER_TO_FPTR(Perl_ck_null), /* i_modulo */
1241 MEMBER_TO_FPTR(Perl_ck_repeat), /* repeat */
1242 MEMBER_TO_FPTR(Perl_ck_null), /* add */
1243 MEMBER_TO_FPTR(Perl_ck_null), /* i_add */
1244 MEMBER_TO_FPTR(Perl_ck_null), /* subtract */
1245 MEMBER_TO_FPTR(Perl_ck_null), /* i_subtract */
1246 MEMBER_TO_FPTR(Perl_ck_concat), /* concat */
1247 MEMBER_TO_FPTR(Perl_ck_fun), /* stringify */
1248 MEMBER_TO_FPTR(Perl_ck_bitop), /* left_shift */
1249 MEMBER_TO_FPTR(Perl_ck_bitop), /* right_shift */
1250 MEMBER_TO_FPTR(Perl_ck_null), /* lt */
1251 MEMBER_TO_FPTR(Perl_ck_null), /* i_lt */
1252 MEMBER_TO_FPTR(Perl_ck_null), /* gt */
1253 MEMBER_TO_FPTR(Perl_ck_null), /* i_gt */
1254 MEMBER_TO_FPTR(Perl_ck_null), /* le */
1255 MEMBER_TO_FPTR(Perl_ck_null), /* i_le */
1256 MEMBER_TO_FPTR(Perl_ck_null), /* ge */
1257 MEMBER_TO_FPTR(Perl_ck_null), /* i_ge */
1258 MEMBER_TO_FPTR(Perl_ck_null), /* eq */
1259 MEMBER_TO_FPTR(Perl_ck_null), /* i_eq */
1260 MEMBER_TO_FPTR(Perl_ck_null), /* ne */
1261 MEMBER_TO_FPTR(Perl_ck_null), /* i_ne */
1262 MEMBER_TO_FPTR(Perl_ck_null), /* ncmp */
1263 MEMBER_TO_FPTR(Perl_ck_null), /* i_ncmp */
2de3dbcc
JH
1264 MEMBER_TO_FPTR(Perl_ck_null), /* slt */
1265 MEMBER_TO_FPTR(Perl_ck_null), /* sgt */
1266 MEMBER_TO_FPTR(Perl_ck_null), /* sle */
1267 MEMBER_TO_FPTR(Perl_ck_null), /* sge */
2b260de0
GS
1268 MEMBER_TO_FPTR(Perl_ck_null), /* seq */
1269 MEMBER_TO_FPTR(Perl_ck_null), /* sne */
2de3dbcc 1270 MEMBER_TO_FPTR(Perl_ck_null), /* scmp */
2b260de0
GS
1271 MEMBER_TO_FPTR(Perl_ck_bitop), /* bit_and */
1272 MEMBER_TO_FPTR(Perl_ck_bitop), /* bit_xor */
1273 MEMBER_TO_FPTR(Perl_ck_bitop), /* bit_or */
1274 MEMBER_TO_FPTR(Perl_ck_null), /* negate */
1275 MEMBER_TO_FPTR(Perl_ck_null), /* i_negate */
1276 MEMBER_TO_FPTR(Perl_ck_null), /* not */
1277 MEMBER_TO_FPTR(Perl_ck_bitop), /* complement */
fdecdb95 1278 MEMBER_TO_FPTR(Perl_ck_smartmatch), /* smartmatch */
2b260de0
GS
1279 MEMBER_TO_FPTR(Perl_ck_fun), /* atan2 */
1280 MEMBER_TO_FPTR(Perl_ck_fun), /* sin */
1281 MEMBER_TO_FPTR(Perl_ck_fun), /* cos */
1282 MEMBER_TO_FPTR(Perl_ck_fun), /* rand */
1283 MEMBER_TO_FPTR(Perl_ck_fun), /* srand */
1284 MEMBER_TO_FPTR(Perl_ck_fun), /* exp */
1285 MEMBER_TO_FPTR(Perl_ck_fun), /* log */
1286 MEMBER_TO_FPTR(Perl_ck_fun), /* sqrt */
1287 MEMBER_TO_FPTR(Perl_ck_fun), /* int */
1288 MEMBER_TO_FPTR(Perl_ck_fun), /* hex */
1289 MEMBER_TO_FPTR(Perl_ck_fun), /* oct */
1290 MEMBER_TO_FPTR(Perl_ck_fun), /* abs */
9784f5f4 1291 MEMBER_TO_FPTR(Perl_ck_fun), /* length */
444155da 1292 MEMBER_TO_FPTR(Perl_ck_substr), /* substr */
2b260de0
GS
1293 MEMBER_TO_FPTR(Perl_ck_fun), /* vec */
1294 MEMBER_TO_FPTR(Perl_ck_index), /* index */
1295 MEMBER_TO_FPTR(Perl_ck_index), /* rindex */
2de3dbcc 1296 MEMBER_TO_FPTR(Perl_ck_fun), /* sprintf */
2b260de0
GS
1297 MEMBER_TO_FPTR(Perl_ck_fun), /* formline */
1298 MEMBER_TO_FPTR(Perl_ck_fun), /* ord */
1299 MEMBER_TO_FPTR(Perl_ck_fun), /* chr */
1300 MEMBER_TO_FPTR(Perl_ck_fun), /* crypt */
2de3dbcc
JH
1301 MEMBER_TO_FPTR(Perl_ck_fun), /* ucfirst */
1302 MEMBER_TO_FPTR(Perl_ck_fun), /* lcfirst */
1303 MEMBER_TO_FPTR(Perl_ck_fun), /* uc */
1304 MEMBER_TO_FPTR(Perl_ck_fun), /* lc */
2b260de0
GS
1305 MEMBER_TO_FPTR(Perl_ck_fun), /* quotemeta */
1306 MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2av */
1307 MEMBER_TO_FPTR(Perl_ck_null), /* aelemfast */
1308 MEMBER_TO_FPTR(Perl_ck_null), /* aelem */
1309 MEMBER_TO_FPTR(Perl_ck_null), /* aslice */
878d132a
NC
1310 MEMBER_TO_FPTR(Perl_ck_each), /* aeach */
1311 MEMBER_TO_FPTR(Perl_ck_each), /* akeys */
1312 MEMBER_TO_FPTR(Perl_ck_each), /* avalues */
1313 MEMBER_TO_FPTR(Perl_ck_each), /* each */
1314 MEMBER_TO_FPTR(Perl_ck_each), /* values */
1315 MEMBER_TO_FPTR(Perl_ck_each), /* keys */
2b260de0
GS
1316 MEMBER_TO_FPTR(Perl_ck_delete), /* delete */
1317 MEMBER_TO_FPTR(Perl_ck_exists), /* exists */
1318 MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2hv */
1319 MEMBER_TO_FPTR(Perl_ck_null), /* helem */
1320 MEMBER_TO_FPTR(Perl_ck_null), /* hslice */
2e0eeeaa 1321 MEMBER_TO_FPTR(Perl_ck_fun), /* boolkeys */
bab9c0ac 1322 MEMBER_TO_FPTR(Perl_ck_unpack), /* unpack */
2b260de0
GS
1323 MEMBER_TO_FPTR(Perl_ck_fun), /* pack */
1324 MEMBER_TO_FPTR(Perl_ck_split), /* split */
1325 MEMBER_TO_FPTR(Perl_ck_join), /* join */
1326 MEMBER_TO_FPTR(Perl_ck_null), /* list */
1327 MEMBER_TO_FPTR(Perl_ck_null), /* lslice */
1328 MEMBER_TO_FPTR(Perl_ck_fun), /* anonlist */
1329 MEMBER_TO_FPTR(Perl_ck_fun), /* anonhash */
1330 MEMBER_TO_FPTR(Perl_ck_fun), /* splice */
1331 MEMBER_TO_FPTR(Perl_ck_fun), /* push */
1332 MEMBER_TO_FPTR(Perl_ck_shift), /* pop */
1333 MEMBER_TO_FPTR(Perl_ck_shift), /* shift */
1334 MEMBER_TO_FPTR(Perl_ck_fun), /* unshift */
1335 MEMBER_TO_FPTR(Perl_ck_sort), /* sort */
1336 MEMBER_TO_FPTR(Perl_ck_fun), /* reverse */
1337 MEMBER_TO_FPTR(Perl_ck_grep), /* grepstart */
1338 MEMBER_TO_FPTR(Perl_ck_null), /* grepwhile */
1339 MEMBER_TO_FPTR(Perl_ck_grep), /* mapstart */
1340 MEMBER_TO_FPTR(Perl_ck_null), /* mapwhile */
1341 MEMBER_TO_FPTR(Perl_ck_null), /* range */
1342 MEMBER_TO_FPTR(Perl_ck_null), /* flip */
1343 MEMBER_TO_FPTR(Perl_ck_null), /* flop */
1344 MEMBER_TO_FPTR(Perl_ck_null), /* and */
1345 MEMBER_TO_FPTR(Perl_ck_null), /* or */
1346 MEMBER_TO_FPTR(Perl_ck_null), /* xor */
fdecdb95 1347 MEMBER_TO_FPTR(Perl_ck_null), /* dor */
2b260de0
GS
1348 MEMBER_TO_FPTR(Perl_ck_null), /* cond_expr */
1349 MEMBER_TO_FPTR(Perl_ck_null), /* andassign */
1350 MEMBER_TO_FPTR(Perl_ck_null), /* orassign */
fdecdb95 1351 MEMBER_TO_FPTR(Perl_ck_null), /* dorassign */
2b260de0
GS
1352 MEMBER_TO_FPTR(Perl_ck_method), /* method */
1353 MEMBER_TO_FPTR(Perl_ck_subr), /* entersub */
1354 MEMBER_TO_FPTR(Perl_ck_null), /* leavesub */
1355 MEMBER_TO_FPTR(Perl_ck_null), /* leavesublv */
1356 MEMBER_TO_FPTR(Perl_ck_fun), /* caller */
1357 MEMBER_TO_FPTR(Perl_ck_fun), /* warn */
96e176bf 1358 MEMBER_TO_FPTR(Perl_ck_die), /* die */
2b260de0
GS
1359 MEMBER_TO_FPTR(Perl_ck_fun), /* reset */
1360 MEMBER_TO_FPTR(Perl_ck_null), /* lineseq */
722969e2
DM
1361 MEMBER_TO_FPTR(Perl_ck_null), /* nextstate */
1362 MEMBER_TO_FPTR(Perl_ck_null), /* dbstate */
2b260de0
GS
1363 MEMBER_TO_FPTR(Perl_ck_null), /* unstack */
1364 MEMBER_TO_FPTR(Perl_ck_null), /* enter */
1365 MEMBER_TO_FPTR(Perl_ck_null), /* leave */
1366 MEMBER_TO_FPTR(Perl_ck_null), /* scope */
1367 MEMBER_TO_FPTR(Perl_ck_null), /* enteriter */
1368 MEMBER_TO_FPTR(Perl_ck_null), /* iter */
1369 MEMBER_TO_FPTR(Perl_ck_null), /* enterloop */
1370 MEMBER_TO_FPTR(Perl_ck_null), /* leaveloop */
78f9721b 1371 MEMBER_TO_FPTR(Perl_ck_return), /* return */
2b260de0
GS
1372 MEMBER_TO_FPTR(Perl_ck_null), /* last */
1373 MEMBER_TO_FPTR(Perl_ck_null), /* next */
1374 MEMBER_TO_FPTR(Perl_ck_null), /* redo */
1375 MEMBER_TO_FPTR(Perl_ck_null), /* dump */
1376 MEMBER_TO_FPTR(Perl_ck_null), /* goto */
d98f61e7 1377 MEMBER_TO_FPTR(Perl_ck_exit), /* exit */
fdecdb95
NC
1378 MEMBER_TO_FPTR(Perl_ck_null), /* method_named */
1379 MEMBER_TO_FPTR(Perl_ck_null), /* entergiven */
1380 MEMBER_TO_FPTR(Perl_ck_null), /* leavegiven */
1381 MEMBER_TO_FPTR(Perl_ck_null), /* enterwhen */
1382 MEMBER_TO_FPTR(Perl_ck_null), /* leavewhen */
1383 MEMBER_TO_FPTR(Perl_ck_null), /* break */
1384 MEMBER_TO_FPTR(Perl_ck_null), /* continue */
16fe6d59 1385 MEMBER_TO_FPTR(Perl_ck_open), /* open */
2b260de0
GS
1386 MEMBER_TO_FPTR(Perl_ck_fun), /* close */
1387 MEMBER_TO_FPTR(Perl_ck_fun), /* pipe_op */
1388 MEMBER_TO_FPTR(Perl_ck_fun), /* fileno */
a86a20aa 1389 MEMBER_TO_FPTR(Perl_ck_fun), /* umask */
2b260de0
GS
1390 MEMBER_TO_FPTR(Perl_ck_fun), /* binmode */
1391 MEMBER_TO_FPTR(Perl_ck_fun), /* tie */
1392 MEMBER_TO_FPTR(Perl_ck_fun), /* untie */
1393 MEMBER_TO_FPTR(Perl_ck_fun), /* tied */
1394 MEMBER_TO_FPTR(Perl_ck_fun), /* dbmopen */
1395 MEMBER_TO_FPTR(Perl_ck_fun), /* dbmclose */
1396 MEMBER_TO_FPTR(Perl_ck_select), /* sselect */
1397 MEMBER_TO_FPTR(Perl_ck_select), /* select */
1398 MEMBER_TO_FPTR(Perl_ck_eof), /* getc */
1399 MEMBER_TO_FPTR(Perl_ck_fun), /* read */
1400 MEMBER_TO_FPTR(Perl_ck_fun), /* enterwrite */
1401 MEMBER_TO_FPTR(Perl_ck_null), /* leavewrite */
1402 MEMBER_TO_FPTR(Perl_ck_listiob), /* prtf */
1403 MEMBER_TO_FPTR(Perl_ck_listiob), /* print */
fdecdb95 1404 MEMBER_TO_FPTR(Perl_ck_listiob), /* say */
2b260de0
GS
1405 MEMBER_TO_FPTR(Perl_ck_fun), /* sysopen */
1406 MEMBER_TO_FPTR(Perl_ck_fun), /* sysseek */
1407 MEMBER_TO_FPTR(Perl_ck_fun), /* sysread */
1408 MEMBER_TO_FPTR(Perl_ck_fun), /* syswrite */
2b260de0
GS
1409 MEMBER_TO_FPTR(Perl_ck_eof), /* eof */
1410 MEMBER_TO_FPTR(Perl_ck_fun), /* tell */
1411 MEMBER_TO_FPTR(Perl_ck_fun), /* seek */
1412 MEMBER_TO_FPTR(Perl_ck_trunc), /* truncate */
1413 MEMBER_TO_FPTR(Perl_ck_fun), /* fcntl */
1414 MEMBER_TO_FPTR(Perl_ck_fun), /* ioctl */
1415 MEMBER_TO_FPTR(Perl_ck_fun), /* flock */
e71197e2
JC
1416 MEMBER_TO_FPTR(Perl_ck_fun), /* send */
1417 MEMBER_TO_FPTR(Perl_ck_fun), /* recv */
2b260de0
GS
1418 MEMBER_TO_FPTR(Perl_ck_fun), /* socket */
1419 MEMBER_TO_FPTR(Perl_ck_fun), /* sockpair */
1420 MEMBER_TO_FPTR(Perl_ck_fun), /* bind */
1421 MEMBER_TO_FPTR(Perl_ck_fun), /* connect */
1422 MEMBER_TO_FPTR(Perl_ck_fun), /* listen */
1423 MEMBER_TO_FPTR(Perl_ck_fun), /* accept */
1424 MEMBER_TO_FPTR(Perl_ck_fun), /* shutdown */
1425 MEMBER_TO_FPTR(Perl_ck_fun), /* gsockopt */
1426 MEMBER_TO_FPTR(Perl_ck_fun), /* ssockopt */
1427 MEMBER_TO_FPTR(Perl_ck_fun), /* getsockname */
1428 MEMBER_TO_FPTR(Perl_ck_fun), /* getpeername */
1429 MEMBER_TO_FPTR(Perl_ck_ftst), /* lstat */
1430 MEMBER_TO_FPTR(Perl_ck_ftst), /* stat */
1431 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftrread */
1432 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftrwrite */
1433 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftrexec */
1434 MEMBER_TO_FPTR(Perl_ck_ftst), /* fteread */
1435 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftewrite */
1436 MEMBER_TO_FPTR(Perl_ck_ftst), /* fteexec */
1437 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftis */
2b260de0
GS
1438 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftsize */
1439 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftmtime */
1440 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftatime */
1441 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftctime */
7834bb7e
NC
1442 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftrowned */
1443 MEMBER_TO_FPTR(Perl_ck_ftst), /* fteowned */
1444 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftzero */
2b260de0
GS
1445 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftsock */
1446 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftchr */
1447 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftblk */
1448 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftfile */
1449 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftdir */
1450 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftpipe */
2b260de0
GS
1451 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftsuid */
1452 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftsgid */
1453 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftsvtx */
7834bb7e 1454 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftlink */
2b260de0
GS
1455 MEMBER_TO_FPTR(Perl_ck_ftst), /* fttty */
1456 MEMBER_TO_FPTR(Perl_ck_ftst), /* fttext */
1457 MEMBER_TO_FPTR(Perl_ck_ftst), /* ftbinary */
d4ac975e 1458 MEMBER_TO_FPTR(Perl_ck_chdir), /* chdir */
2b260de0
GS
1459 MEMBER_TO_FPTR(Perl_ck_fun), /* chown */
1460 MEMBER_TO_FPTR(Perl_ck_fun), /* chroot */
1461 MEMBER_TO_FPTR(Perl_ck_fun), /* unlink */
a86a20aa 1462 MEMBER_TO_FPTR(Perl_ck_fun), /* chmod */
2b260de0
GS
1463 MEMBER_TO_FPTR(Perl_ck_fun), /* utime */
1464 MEMBER_TO_FPTR(Perl_ck_fun), /* rename */
1465 MEMBER_TO_FPTR(Perl_ck_fun), /* link */
1466 MEMBER_TO_FPTR(Perl_ck_fun), /* symlink */
1467 MEMBER_TO_FPTR(Perl_ck_fun), /* readlink */
a86a20aa 1468 MEMBER_TO_FPTR(Perl_ck_fun), /* mkdir */
2b260de0
GS
1469 MEMBER_TO_FPTR(Perl_ck_fun), /* rmdir */
1470 MEMBER_TO_FPTR(Perl_ck_fun), /* open_dir */
1471 MEMBER_TO_FPTR(Perl_ck_fun), /* readdir */
1472 MEMBER_TO_FPTR(Perl_ck_fun), /* telldir */
1473 MEMBER_TO_FPTR(Perl_ck_fun), /* seekdir */
1474 MEMBER_TO_FPTR(Perl_ck_fun), /* rewinddir */
1475 MEMBER_TO_FPTR(Perl_ck_fun), /* closedir */
1476 MEMBER_TO_FPTR(Perl_ck_null), /* fork */
1477 MEMBER_TO_FPTR(Perl_ck_null), /* wait */
1478 MEMBER_TO_FPTR(Perl_ck_fun), /* waitpid */
1479 MEMBER_TO_FPTR(Perl_ck_exec), /* system */
1480 MEMBER_TO_FPTR(Perl_ck_exec), /* exec */
1481 MEMBER_TO_FPTR(Perl_ck_fun), /* kill */
1482 MEMBER_TO_FPTR(Perl_ck_null), /* getppid */
1483 MEMBER_TO_FPTR(Perl_ck_fun), /* getpgrp */
1484 MEMBER_TO_FPTR(Perl_ck_fun), /* setpgrp */
1485 MEMBER_TO_FPTR(Perl_ck_fun), /* getpriority */
1486 MEMBER_TO_FPTR(Perl_ck_fun), /* setpriority */
1487 MEMBER_TO_FPTR(Perl_ck_null), /* time */
1488 MEMBER_TO_FPTR(Perl_ck_null), /* tms */
1489 MEMBER_TO_FPTR(Perl_ck_fun), /* localtime */
1490 MEMBER_TO_FPTR(Perl_ck_fun), /* gmtime */
1491 MEMBER_TO_FPTR(Perl_ck_fun), /* alarm */
1492 MEMBER_TO_FPTR(Perl_ck_fun), /* sleep */
1493 MEMBER_TO_FPTR(Perl_ck_fun), /* shmget */
1494 MEMBER_TO_FPTR(Perl_ck_fun), /* shmctl */
1495 MEMBER_TO_FPTR(Perl_ck_fun), /* shmread */
1496 MEMBER_TO_FPTR(Perl_ck_fun), /* shmwrite */
1497 MEMBER_TO_FPTR(Perl_ck_fun), /* msgget */
1498 MEMBER_TO_FPTR(Perl_ck_fun), /* msgctl */
1499 MEMBER_TO_FPTR(Perl_ck_fun), /* msgsnd */
1500 MEMBER_TO_FPTR(Perl_ck_fun), /* msgrcv */
7834bb7e 1501 MEMBER_TO_FPTR(Perl_ck_fun), /* semop */
2b260de0
GS
1502 MEMBER_TO_FPTR(Perl_ck_fun), /* semget */
1503 MEMBER_TO_FPTR(Perl_ck_fun), /* semctl */
2b260de0
GS
1504 MEMBER_TO_FPTR(Perl_ck_require), /* require */
1505 MEMBER_TO_FPTR(Perl_ck_fun), /* dofile */
996c9baa 1506 MEMBER_TO_FPTR(Perl_ck_svconst), /* hintseval */
2b260de0
GS
1507 MEMBER_TO_FPTR(Perl_ck_eval), /* entereval */
1508 MEMBER_TO_FPTR(Perl_ck_null), /* leaveeval */
1509 MEMBER_TO_FPTR(Perl_ck_null), /* entertry */
1510 MEMBER_TO_FPTR(Perl_ck_null), /* leavetry */
1511 MEMBER_TO_FPTR(Perl_ck_fun), /* ghbyname */
1512 MEMBER_TO_FPTR(Perl_ck_fun), /* ghbyaddr */
1513 MEMBER_TO_FPTR(Perl_ck_null), /* ghostent */
1514 MEMBER_TO_FPTR(Perl_ck_fun), /* gnbyname */
1515 MEMBER_TO_FPTR(Perl_ck_fun), /* gnbyaddr */
1516 MEMBER_TO_FPTR(Perl_ck_null), /* gnetent */
1517 MEMBER_TO_FPTR(Perl_ck_fun), /* gpbyname */
1518 MEMBER_TO_FPTR(Perl_ck_fun), /* gpbynumber */
1519 MEMBER_TO_FPTR(Perl_ck_null), /* gprotoent */
1520 MEMBER_TO_FPTR(Perl_ck_fun), /* gsbyname */
1521 MEMBER_TO_FPTR(Perl_ck_fun), /* gsbyport */
1522 MEMBER_TO_FPTR(Perl_ck_null), /* gservent */
1523 MEMBER_TO_FPTR(Perl_ck_fun), /* shostent */
1524 MEMBER_TO_FPTR(Perl_ck_fun), /* snetent */
1525 MEMBER_TO_FPTR(Perl_ck_fun), /* sprotoent */
1526 MEMBER_TO_FPTR(Perl_ck_fun), /* sservent */
1527 MEMBER_TO_FPTR(Perl_ck_null), /* ehostent */
1528 MEMBER_TO_FPTR(Perl_ck_null), /* enetent */
1529 MEMBER_TO_FPTR(Perl_ck_null), /* eprotoent */
1530 MEMBER_TO_FPTR(Perl_ck_null), /* eservent */
1531 MEMBER_TO_FPTR(Perl_ck_fun), /* gpwnam */
1532 MEMBER_TO_FPTR(Perl_ck_fun), /* gpwuid */
1533 MEMBER_TO_FPTR(Perl_ck_null), /* gpwent */
1534 MEMBER_TO_FPTR(Perl_ck_null), /* spwent */
1535 MEMBER_TO_FPTR(Perl_ck_null), /* epwent */
1536 MEMBER_TO_FPTR(Perl_ck_fun), /* ggrnam */
1537 MEMBER_TO_FPTR(Perl_ck_fun), /* ggrgid */
1538 MEMBER_TO_FPTR(Perl_ck_null), /* ggrent */
1539 MEMBER_TO_FPTR(Perl_ck_null), /* sgrent */
1540 MEMBER_TO_FPTR(Perl_ck_null), /* egrent */
1541 MEMBER_TO_FPTR(Perl_ck_null), /* getlogin */
1542 MEMBER_TO_FPTR(Perl_ck_fun), /* syscall */
1543 MEMBER_TO_FPTR(Perl_ck_rfun), /* lock */
c5917253 1544 MEMBER_TO_FPTR(Perl_ck_null), /* once */
438c221d 1545 MEMBER_TO_FPTR(Perl_ck_null), /* custom */
27da23d5 1546}
79072805 1547#endif
97aff369 1548#ifdef PERL_CHECK_INITED
27da23d5 1549;
97aff369 1550#endif /* #ifdef PERL_CHECK_INITED */
27da23d5
JH
1551
1552#ifndef PERL_GLOBAL_STRUCT_INIT
79072805
LW
1553
1554#ifndef DOINIT
1ccb7c8d 1555EXTCONST U32 PL_opargs[];
79072805 1556#else
1ccb7c8d 1557EXTCONST U32 PL_opargs[] = {
79072805 1558 0x00000000, /* null */
93a17b20 1559 0x00000000, /* stub */
1a67a97c 1560 0x00003604, /* scalar */
79072805
LW
1561 0x00000004, /* pushmark */
1562 0x00000014, /* wantarray */
1a67a97c 1563 0x00000c04, /* const */
7934575e
GS
1564 0x00000c44, /* gvsv */
1565 0x00000c44, /* gv */
b162f9ea 1566 0x00022440, /* gelem */
748a9306
LW
1567 0x00000044, /* padsv */
1568 0x00000040, /* padav */
1569 0x00000040, /* padhv */
1570 0x00000040, /* padany */
1a67a97c 1571 0x00000a40, /* pushre */
b162f9ea
IZ
1572 0x00000244, /* rv2gv */
1573 0x00000244, /* rv2sv */
1574 0x00000214, /* av2arylen */
1575 0x00000240, /* rv2cv */
1a67a97c
SM
1576 0x00000c00, /* anoncode */
1577 0x00003604, /* prototype */
b162f9ea
IZ
1578 0x00004201, /* refgen */
1579 0x00002206, /* srefgen */
1a67a97c
SM
1580 0x0001368c, /* ref */
1581 0x00122804, /* bless */
01f5bc1b 1582 0x00013688, /* backtick */
649da076 1583 0x00012808, /* glob */
b04ef359 1584 0x0001d608, /* readline */
5fc9b9e4 1585 0x00000c08, /* rcatline */
b162f9ea
IZ
1586 0x00002204, /* regcmaybe */
1587 0x00002204, /* regcreset */
1588 0x00002604, /* regcomp */
1a67a97c
SM
1589 0x00000a40, /* match */
1590 0x00000a04, /* qr */
1591 0x00002a54, /* subst */
b162f9ea 1592 0x00000654, /* substcont */
1a67a97c 1593 0x00003014, /* trans */
79072805 1594 0x00000004, /* sassign */
b162f9ea 1595 0x00044408, /* aassign */
21f5b33c
GS
1596 0x0000560d, /* chop */
1597 0x0001368c, /* schop */
1a67a97c
SM
1598 0x0000570d, /* chomp */
1599 0x0001378c, /* schomp */
1600 0x00013694, /* defined */
1601 0x00013604, /* undef */
1602 0x00013684, /* study */
1603 0x0001368c, /* pos */
b162f9ea
IZ
1604 0x00002264, /* preinc */
1605 0x00002254, /* i_preinc */
1606 0x00002264, /* predec */
1607 0x00002254, /* i_predec */
21f5b33c 1608 0x0000226c, /* postinc */
b162f9ea 1609 0x0000235c, /* i_postinc */
21f5b33c 1610 0x0000226c, /* postdec */
b162f9ea
IZ
1611 0x0000235c, /* i_postdec */
1612 0x0002250e, /* pow */
1613 0x0002252e, /* multiply */
1614 0x0002251e, /* i_multiply */
1615 0x0002252e, /* divide */
1616 0x0002251e, /* i_divide */
1617 0x0002253e, /* modulo */
1618 0x0002251e, /* i_modulo */
1619 0x00024409, /* repeat */
1620 0x0002252e, /* add */
1621 0x0002251e, /* i_add */
1622 0x0002252e, /* subtract */
1623 0x0002251e, /* i_subtract */
df91b2c5 1624 0x0002250e, /* concat */
1a67a97c 1625 0x0000290e, /* stringify */
b162f9ea
IZ
1626 0x0002250e, /* left_shift */
1627 0x0002250e, /* right_shift */
1628 0x00022436, /* lt */
1629 0x00022416, /* i_lt */
1630 0x00022436, /* gt */
1631 0x00022416, /* i_gt */
1632 0x00022436, /* le */
1633 0x00022416, /* i_le */
1634 0x00022436, /* ge */
1635 0x00022416, /* i_ge */
1636 0x00022436, /* eq */
1637 0x00022416, /* i_eq */
1638 0x00022436, /* ne */
1639 0x00022416, /* i_ne */
1640 0x0002243e, /* ncmp */
1641 0x0002241e, /* i_ncmp */
1642 0x00022416, /* slt */
1643 0x00022416, /* sgt */
1644 0x00022416, /* sle */
1645 0x00022416, /* sge */
1646 0x00022416, /* seq */
1647 0x00022416, /* sne */
1648 0x0002241e, /* scmp */
21f5b33c
GS
1649 0x0002240e, /* bit_and */
1650 0x0002240e, /* bit_xor */
1651 0x0002240e, /* bit_or */
1652 0x0000222e, /* negate */
b162f9ea
IZ
1653 0x0000231e, /* i_negate */
1654 0x00002216, /* not */
21f5b33c 1655 0x0000220e, /* complement */
fdecdb95 1656 0x00000404, /* smartmatch */
1a67a97c
SM
1657 0x0002290e, /* atan2 */
1658 0x0001378e, /* sin */
1659 0x0001378e, /* cos */
1660 0x0001370c, /* rand */
1661 0x00013604, /* srand */
1662 0x0001378e, /* exp */
1663 0x0001378e, /* log */
1664 0x0001378e, /* sqrt */
1665 0x0001378e, /* int */
1666 0x0001378e, /* hex */
1667 0x0001378e, /* oct */
1668 0x0001378e, /* abs */
1518d620 1669 0x0001379e, /* length */
1a67a97c
SM
1670 0x1322280c, /* substr */
1671 0x0022281c, /* vec */
1672 0x0122291c, /* index */
1673 0x0122291c, /* rindex */
c427f4d2 1674 0x0004280f, /* sprintf */
1a67a97c
SM
1675 0x00042805, /* formline */
1676 0x0001379e, /* ord */
1677 0x0001378e, /* chr */
1678 0x0002290e, /* crypt */
1679 0x0001368e, /* ucfirst */
1680 0x0001368e, /* lcfirst */
1681 0x0001368e, /* uc */
1682 0x0001368e, /* lc */
69b47968 1683 0x0001368e, /* quotemeta */
b162f9ea 1684 0x00000248, /* rv2av */
7934575e 1685 0x00026c04, /* aelemfast */
b162f9ea 1686 0x00026404, /* aelem */
1a67a97c 1687 0x00046801, /* aslice */
878d132a
NC
1688 0x00007600, /* aeach */
1689 0x00007608, /* akeys */
1690 0x00007608, /* avalues */
59af0135 1691 0x00009600, /* each */
1a67a97c
SM
1692 0x00009608, /* values */
1693 0x00009608, /* keys */
1694 0x00003600, /* delete */
1695 0x00003614, /* exists */
b162f9ea
IZ
1696 0x00000248, /* rv2hv */
1697 0x00028404, /* helem */
1a67a97c 1698 0x00048801, /* hslice */
2e0eeeaa 1699 0x00009600, /* boolkeys */
13dcffc6 1700 0x00122800, /* unpack */
1a67a97c
SM
1701 0x0004280d, /* pack */
1702 0x00222808, /* split */
69b47968 1703 0x0004280d, /* join */
1a67a97c 1704 0x00004801, /* list */
b162f9ea 1705 0x00448400, /* lslice */
1a67a97c
SM
1706 0x00004805, /* anonlist */
1707 0x00004805, /* anonhash */
1708 0x05326801, /* splice */
1709 0x0004691d, /* push */
26f600bc
RGS
1710 0x00017604, /* pop */
1711 0x00017604, /* shift */
1a67a97c 1712 0x0004691d, /* unshift */
cd299c6e 1713 0x0005a841, /* sort */
1a67a97c
SM
1714 0x00004809, /* reverse */
1715 0x0004a841, /* grepstart */
b162f9ea 1716 0x00000648, /* grepwhile */
1a67a97c 1717 0x0004a841, /* mapstart */
b162f9ea 1718 0x00000648, /* mapwhile */
1a67a97c 1719 0x00022600, /* range */
b162f9ea
IZ
1720 0x00022200, /* flip */
1721 0x00000200, /* flop */
1722 0x00000600, /* and */
1723 0x00000600, /* or */
888b73cf 1724 0x00022406, /* xor */
fdecdb95 1725 0x00000600, /* dor */
1a67a97c 1726 0x00000640, /* cond_expr */
b162f9ea
IZ
1727 0x00000604, /* andassign */
1728 0x00000604, /* orassign */
fdecdb95 1729 0x00000604, /* dorassign */
b162f9ea
IZ
1730 0x00000240, /* method */
1731 0x00004249, /* entersub */
1732 0x00000200, /* leavesub */
cd06dffe 1733 0x00000200, /* leavesublv */
1a67a97c
SM
1734 0x00013608, /* caller */
1735 0x0000481d, /* warn */
1736 0x0000485d, /* die */
1737 0x00013614, /* reset */
1738 0x00000800, /* lineseq */
1739 0x00001404, /* nextstate */
1740 0x00001404, /* dbstate */
79072805
LW
1741 0x00000004, /* unstack */
1742 0x00000000, /* enter */
1a67a97c
SM
1743 0x00000800, /* leave */
1744 0x00000800, /* scope */
1745 0x00001240, /* enteriter */
79072805 1746 0x00000000, /* iter */
1a67a97c 1747 0x00001240, /* enterloop */
b162f9ea 1748 0x00000400, /* leaveloop */
1a67a97c
SM
1749 0x00004841, /* return */
1750 0x00001a44, /* last */
1751 0x00001a44, /* next */
1752 0x00001a44, /* redo */
1753 0x00001a44, /* dump */
1754 0x00001a44, /* goto */
1755 0x00013644, /* exit */
fdecdb95
NC
1756 0x00000c40, /* method_named */
1757 0x00000640, /* entergiven */
1758 0x00000200, /* leavegiven */
1759 0x00000640, /* enterwhen */
1760 0x00000200, /* leavewhen */
1761 0x00000000, /* break */
1762 0x00000000, /* continue */
a567e93b 1763 0x0052c81d, /* open */
1a67a97c
SM
1764 0x0001d614, /* close */
1765 0x000cc814, /* pipe_op */
1766 0x0000d61c, /* fileno */
1767 0x0001361c, /* umask */
1c1fc3ea 1768 0x0012c804, /* binmode */
1a67a97c
SM
1769 0x0042e855, /* tie */
1770 0x0000f614, /* untie */
1771 0x0000f604, /* tied */
1772 0x00228814, /* dbmopen */
1773 0x00009614, /* dbmclose */
1774 0x02222808, /* sselect */
1775 0x0001c80c, /* select */
1776 0x0001d60c, /* getc */
1777 0x122ec81d, /* read */
1778 0x0001d654, /* enterwrite */
b162f9ea 1779 0x00000200, /* leavewrite */
1a67a97c
SM
1780 0x0005c815, /* prtf */
1781 0x0005c815, /* print */
fdecdb95 1782 0x0005c815, /* say */
1a67a97c
SM
1783 0x1222c804, /* sysopen */
1784 0x0022c804, /* sysseek */
1785 0x122ec81d, /* sysread */
1786 0x1322c81d, /* syswrite */
1a67a97c
SM
1787 0x0001d614, /* eof */
1788 0x0001d60c, /* tell */
1789 0x0022c804, /* seek */
1790 0x00022814, /* truncate */
1791 0x0022c80c, /* fcntl */
1792 0x0022c80c, /* ioctl */
1793 0x0002c91c, /* flock */
e71197e2
JC
1794 0x1222c81d, /* send */
1795 0x022ec81d, /* recv */
1a67a97c
SM
1796 0x0222c814, /* socket */
1797 0x222cc814, /* sockpair */
1798 0x0002c814, /* bind */
1799 0x0002c814, /* connect */
1800 0x0002c814, /* listen */
1801 0x000cc81c, /* accept */
1802 0x0002c81c, /* shutdown */
1803 0x0022c814, /* gsockopt */
1804 0x0222c814, /* ssockopt */
1805 0x0000d614, /* getsockname */
1806 0x0000d614, /* getpeername */
1807 0x0000d880, /* lstat */
1808 0x0000d880, /* stat */
1809 0x0000d894, /* ftrread */
1810 0x0000d894, /* ftrwrite */
1811 0x0000d894, /* ftrexec */
1812 0x0000d894, /* fteread */
1813 0x0000d894, /* ftewrite */
1814 0x0000d894, /* fteexec */
1815 0x0000d894, /* ftis */
1a67a97c
SM
1816 0x0000d89c, /* ftsize */
1817 0x0000d88c, /* ftmtime */
1818 0x0000d88c, /* ftatime */
1819 0x0000d88c, /* ftctime */
7834bb7e
NC
1820 0x0000d894, /* ftrowned */
1821 0x0000d894, /* fteowned */
1822 0x0000d894, /* ftzero */
1a67a97c
SM
1823 0x0000d894, /* ftsock */
1824 0x0000d894, /* ftchr */
1825 0x0000d894, /* ftblk */
1826 0x0000d894, /* ftfile */
1827 0x0000d894, /* ftdir */
1828 0x0000d894, /* ftpipe */
1a67a97c
SM
1829 0x0000d894, /* ftsuid */
1830 0x0000d894, /* ftsgid */
1831 0x0000d894, /* ftsvtx */
7834bb7e 1832 0x0000d894, /* ftlink */
1a67a97c
SM
1833 0x0000d814, /* fttty */
1834 0x0000d894, /* fttext */
1835 0x0000d894, /* ftbinary */
1836 0x0001371c, /* chdir */
1837 0x0000491d, /* chown */
1838 0x0001379c, /* chroot */
1839 0x0000499d, /* unlink */
1840 0x0000491d, /* chmod */
1841 0x0000491d, /* utime */
1842 0x0002291c, /* rename */
1843 0x0002291c, /* link */
1844 0x0002291c, /* symlink */
1845 0x0001368c, /* readlink */
491873e5 1846 0x0013299c, /* mkdir */
1a67a97c 1847 0x0001379c, /* rmdir */
1e2c6ed7 1848 0x0002c814, /* open_dir */
1a67a97c
SM
1849 0x0000d600, /* readdir */
1850 0x0000d60c, /* telldir */
1851 0x0002c804, /* seekdir */
1852 0x0000d604, /* rewinddir */
1853 0x0000d614, /* closedir */
79072805 1854 0x0000001c, /* fork */
b162f9ea 1855 0x0000011c, /* wait */
1a67a97c
SM
1856 0x0002291c, /* waitpid */
1857 0x0005291d, /* system */
1858 0x0005295d, /* exec */
1859 0x0000495d, /* kill */
b162f9ea 1860 0x0000011c, /* getppid */
1a67a97c
SM
1861 0x0001371c, /* getpgrp */
1862 0x0013291c, /* setpgrp */
1863 0x0002291c, /* getpriority */
1864 0x0022291c, /* setpriority */
b162f9ea 1865 0x0000011c, /* time */
79072805 1866 0x00000000, /* tms */
1a67a97c
SM
1867 0x00013608, /* localtime */
1868 0x00013608, /* gmtime */
1869 0x0001369c, /* alarm */
1870 0x0001371c, /* sleep */
1871 0x0022281d, /* shmget */
1872 0x0022281d, /* shmctl */
1873 0x0222281d, /* shmread */
1874 0x0222281d, /* shmwrite */
1875 0x0002281d, /* msgget */
1876 0x0022281d, /* msgctl */
1877 0x0022281d, /* msgsnd */
1878 0x2222281d, /* msgrcv */
7834bb7e 1879 0x0002281d, /* semop */
1a67a97c
SM
1880 0x0022281d, /* semget */
1881 0x0222281d, /* semctl */
1a67a97c 1882 0x000136c0, /* require */
b162f9ea 1883 0x00002240, /* dofile */
996c9baa 1884 0x00000c04, /* hintseval */
1a67a97c 1885 0x00003640, /* entereval */
b162f9ea
IZ
1886 0x00002200, /* leaveeval */
1887 0x00000600, /* entertry */
1a67a97c
SM
1888 0x00000800, /* leavetry */
1889 0x00003600, /* ghbyname */
1890 0x00022800, /* ghbyaddr */
79072805 1891 0x00000000, /* ghostent */
1a67a97c
SM
1892 0x00003600, /* gnbyname */
1893 0x00022800, /* gnbyaddr */
79072805 1894 0x00000000, /* gnetent */
1a67a97c
SM
1895 0x00003600, /* gpbyname */
1896 0x00002800, /* gpbynumber */
79072805 1897 0x00000000, /* gprotoent */
1a67a97c
SM
1898 0x00022800, /* gsbyname */
1899 0x00022800, /* gsbyport */
79072805 1900 0x00000000, /* gservent */
1a67a97c
SM
1901 0x00003614, /* shostent */
1902 0x00003614, /* snetent */
1903 0x00003614, /* sprotoent */
1904 0x00003614, /* sservent */
93a17b20
LW
1905 0x00000014, /* ehostent */
1906 0x00000014, /* enetent */
1907 0x00000014, /* eprotoent */
1908 0x00000014, /* eservent */
1a67a97c
SM
1909 0x00003600, /* gpwnam */
1910 0x00003600, /* gpwuid */
79072805 1911 0x00000000, /* gpwent */
a0d0e21e
LW
1912 0x00000014, /* spwent */
1913 0x00000014, /* epwent */
1a67a97c
SM
1914 0x00003600, /* ggrnam */
1915 0x00003600, /* ggrgid */
79072805 1916 0x00000000, /* ggrent */
a0d0e21e
LW
1917 0x00000014, /* sgrent */
1918 0x00000014, /* egrent */
79072805 1919 0x0000000c, /* getlogin */
1a67a97c 1920 0x0004281d, /* syscall */
5a47f09b 1921 0x0000f604, /* lock */
c5917253 1922 0x00000600, /* once */
438c221d 1923 0x00000000, /* custom */
79072805
LW
1924};
1925#endif
73c4f7a1 1926
bae1192d
JH
1927#endif /* !PERL_GLOBAL_STRUCT_INIT */
1928
73c4f7a1 1929END_EXTERN_C
27da23d5 1930
37442d52 1931/* ex: set ro: */