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