add patch, along with all the missing bits, and doc tweaks
[p5sagit/p5-mst-13.2.git] / opcode.h
1 #define pp_i_preinc pp_preinc
2 #define pp_i_predec pp_predec
3 #define pp_i_postinc pp_postinc
4 #define pp_i_postdec pp_postdec
5
6 typedef enum {
7         OP_NULL,        /* 0 */
8         OP_STUB,        /* 1 */
9         OP_SCALAR,      /* 2 */
10         OP_PUSHMARK,    /* 3 */
11         OP_WANTARRAY,   /* 4 */
12         OP_CONST,       /* 5 */
13         OP_GVSV,        /* 6 */
14         OP_GV,          /* 7 */
15         OP_GELEM,       /* 8 */
16         OP_PADSV,       /* 9 */
17         OP_PADAV,       /* 10 */
18         OP_PADHV,       /* 11 */
19         OP_PADANY,      /* 12 */
20         OP_PUSHRE,      /* 13 */
21         OP_RV2GV,       /* 14 */
22         OP_RV2SV,       /* 15 */
23         OP_AV2ARYLEN,   /* 16 */
24         OP_RV2CV,       /* 17 */
25         OP_ANONCODE,    /* 18 */
26         OP_PROTOTYPE,   /* 19 */
27         OP_REFGEN,      /* 20 */
28         OP_SREFGEN,     /* 21 */
29         OP_REF,         /* 22 */
30         OP_BLESS,       /* 23 */
31         OP_BACKTICK,    /* 24 */
32         OP_GLOB,        /* 25 */
33         OP_READLINE,    /* 26 */
34         OP_RCATLINE,    /* 27 */
35         OP_REGCMAYBE,   /* 28 */
36         OP_REGCRESET,   /* 29 */
37         OP_REGCOMP,     /* 30 */
38         OP_MATCH,       /* 31 */
39         OP_SUBST,       /* 32 */
40         OP_SUBSTCONT,   /* 33 */
41         OP_TRANS,       /* 34 */
42         OP_SASSIGN,     /* 35 */
43         OP_AASSIGN,     /* 36 */
44         OP_CHOP,        /* 37 */
45         OP_SCHOP,       /* 38 */
46         OP_CHOMP,       /* 39 */
47         OP_SCHOMP,      /* 40 */
48         OP_DEFINED,     /* 41 */
49         OP_UNDEF,       /* 42 */
50         OP_STUDY,       /* 43 */
51         OP_POS,         /* 44 */
52         OP_PREINC,      /* 45 */
53         OP_I_PREINC,    /* 46 */
54         OP_PREDEC,      /* 47 */
55         OP_I_PREDEC,    /* 48 */
56         OP_POSTINC,     /* 49 */
57         OP_I_POSTINC,   /* 50 */
58         OP_POSTDEC,     /* 51 */
59         OP_I_POSTDEC,   /* 52 */
60         OP_POW,         /* 53 */
61         OP_MULTIPLY,    /* 54 */
62         OP_I_MULTIPLY,  /* 55 */
63         OP_DIVIDE,      /* 56 */
64         OP_I_DIVIDE,    /* 57 */
65         OP_MODULO,      /* 58 */
66         OP_I_MODULO,    /* 59 */
67         OP_REPEAT,      /* 60 */
68         OP_ADD,         /* 61 */
69         OP_I_ADD,       /* 62 */
70         OP_SUBTRACT,    /* 63 */
71         OP_I_SUBTRACT,  /* 64 */
72         OP_CONCAT,      /* 65 */
73         OP_STRINGIFY,   /* 66 */
74         OP_LEFT_SHIFT,  /* 67 */
75         OP_RIGHT_SHIFT, /* 68 */
76         OP_LT,          /* 69 */
77         OP_I_LT,        /* 70 */
78         OP_GT,          /* 71 */
79         OP_I_GT,        /* 72 */
80         OP_LE,          /* 73 */
81         OP_I_LE,        /* 74 */
82         OP_GE,          /* 75 */
83         OP_I_GE,        /* 76 */
84         OP_EQ,          /* 77 */
85         OP_I_EQ,        /* 78 */
86         OP_NE,          /* 79 */
87         OP_I_NE,        /* 80 */
88         OP_NCMP,        /* 81 */
89         OP_I_NCMP,      /* 82 */
90         OP_SLT,         /* 83 */
91         OP_SGT,         /* 84 */
92         OP_SLE,         /* 85 */
93         OP_SGE,         /* 86 */
94         OP_SEQ,         /* 87 */
95         OP_SNE,         /* 88 */
96         OP_SCMP,        /* 89 */
97         OP_BIT_AND,     /* 90 */
98         OP_BIT_XOR,     /* 91 */
99         OP_BIT_OR,      /* 92 */
100         OP_NEGATE,      /* 93 */
101         OP_I_NEGATE,    /* 94 */
102         OP_NOT,         /* 95 */
103         OP_COMPLEMENT,  /* 96 */
104         OP_ATAN2,       /* 97 */
105         OP_SIN,         /* 98 */
106         OP_COS,         /* 99 */
107         OP_RAND,        /* 100 */
108         OP_SRAND,       /* 101 */
109         OP_EXP,         /* 102 */
110         OP_LOG,         /* 103 */
111         OP_SQRT,        /* 104 */
112         OP_INT,         /* 105 */
113         OP_HEX,         /* 106 */
114         OP_OCT,         /* 107 */
115         OP_ABS,         /* 108 */
116         OP_LENGTH,      /* 109 */
117         OP_SUBSTR,      /* 110 */
118         OP_VEC,         /* 111 */
119         OP_INDEX,       /* 112 */
120         OP_RINDEX,      /* 113 */
121         OP_SPRINTF,     /* 114 */
122         OP_FORMLINE,    /* 115 */
123         OP_ORD,         /* 116 */
124         OP_CHR,         /* 117 */
125         OP_CRYPT,       /* 118 */
126         OP_UCFIRST,     /* 119 */
127         OP_LCFIRST,     /* 120 */
128         OP_UC,          /* 121 */
129         OP_LC,          /* 122 */
130         OP_QUOTEMETA,   /* 123 */
131         OP_RV2AV,       /* 124 */
132         OP_AELEMFAST,   /* 125 */
133         OP_AELEM,       /* 126 */
134         OP_ASLICE,      /* 127 */
135         OP_EACH,        /* 128 */
136         OP_VALUES,      /* 129 */
137         OP_KEYS,        /* 130 */
138         OP_DELETE,      /* 131 */
139         OP_EXISTS,      /* 132 */
140         OP_RV2HV,       /* 133 */
141         OP_HELEM,       /* 134 */
142         OP_HSLICE,      /* 135 */
143         OP_UNPACK,      /* 136 */
144         OP_PACK,        /* 137 */
145         OP_SPLIT,       /* 138 */
146         OP_JOIN,        /* 139 */
147         OP_LIST,        /* 140 */
148         OP_LSLICE,      /* 141 */
149         OP_ANONLIST,    /* 142 */
150         OP_ANONHASH,    /* 143 */
151         OP_SPLICE,      /* 144 */
152         OP_PUSH,        /* 145 */
153         OP_POP,         /* 146 */
154         OP_SHIFT,       /* 147 */
155         OP_UNSHIFT,     /* 148 */
156         OP_SORT,        /* 149 */
157         OP_REVERSE,     /* 150 */
158         OP_GREPSTART,   /* 151 */
159         OP_GREPWHILE,   /* 152 */
160         OP_MAPSTART,    /* 153 */
161         OP_MAPWHILE,    /* 154 */
162         OP_RANGE,       /* 155 */
163         OP_FLIP,        /* 156 */
164         OP_FLOP,        /* 157 */
165         OP_AND,         /* 158 */
166         OP_OR,          /* 159 */
167         OP_XOR,         /* 160 */
168         OP_COND_EXPR,   /* 161 */
169         OP_ANDASSIGN,   /* 162 */
170         OP_ORASSIGN,    /* 163 */
171         OP_METHOD,      /* 164 */
172         OP_ENTERSUB,    /* 165 */
173         OP_LEAVESUB,    /* 166 */
174         OP_CALLER,      /* 167 */
175         OP_WARN,        /* 168 */
176         OP_DIE,         /* 169 */
177         OP_RESET,       /* 170 */
178         OP_LINESEQ,     /* 171 */
179         OP_NEXTSTATE,   /* 172 */
180         OP_DBSTATE,     /* 173 */
181         OP_UNSTACK,     /* 174 */
182         OP_ENTER,       /* 175 */
183         OP_LEAVE,       /* 176 */
184         OP_SCOPE,       /* 177 */
185         OP_ENTERITER,   /* 178 */
186         OP_ITER,        /* 179 */
187         OP_ENTERLOOP,   /* 180 */
188         OP_LEAVELOOP,   /* 181 */
189         OP_RETURN,      /* 182 */
190         OP_LAST,        /* 183 */
191         OP_NEXT,        /* 184 */
192         OP_REDO,        /* 185 */
193         OP_DUMP,        /* 186 */
194         OP_GOTO,        /* 187 */
195         OP_EXIT,        /* 188 */
196         OP_OPEN,        /* 189 */
197         OP_CLOSE,       /* 190 */
198         OP_PIPE_OP,     /* 191 */
199         OP_FILENO,      /* 192 */
200         OP_UMASK,       /* 193 */
201         OP_BINMODE,     /* 194 */
202         OP_TIE,         /* 195 */
203         OP_UNTIE,       /* 196 */
204         OP_TIED,        /* 197 */
205         OP_DBMOPEN,     /* 198 */
206         OP_DBMCLOSE,    /* 199 */
207         OP_SSELECT,     /* 200 */
208         OP_SELECT,      /* 201 */
209         OP_GETC,        /* 202 */
210         OP_READ,        /* 203 */
211         OP_ENTERWRITE,  /* 204 */
212         OP_LEAVEWRITE,  /* 205 */
213         OP_PRTF,        /* 206 */
214         OP_PRINT,       /* 207 */
215         OP_SYSOPEN,     /* 208 */
216         OP_SYSSEEK,     /* 209 */
217         OP_SYSREAD,     /* 210 */
218         OP_SYSWRITE,    /* 211 */
219         OP_SEND,        /* 212 */
220         OP_RECV,        /* 213 */
221         OP_EOF,         /* 214 */
222         OP_TELL,        /* 215 */
223         OP_SEEK,        /* 216 */
224         OP_TRUNCATE,    /* 217 */
225         OP_FCNTL,       /* 218 */
226         OP_IOCTL,       /* 219 */
227         OP_FLOCK,       /* 220 */
228         OP_SOCKET,      /* 221 */
229         OP_SOCKPAIR,    /* 222 */
230         OP_BIND,        /* 223 */
231         OP_CONNECT,     /* 224 */
232         OP_LISTEN,      /* 225 */
233         OP_ACCEPT,      /* 226 */
234         OP_SHUTDOWN,    /* 227 */
235         OP_GSOCKOPT,    /* 228 */
236         OP_SSOCKOPT,    /* 229 */
237         OP_GETSOCKNAME, /* 230 */
238         OP_GETPEERNAME, /* 231 */
239         OP_LSTAT,       /* 232 */
240         OP_STAT,        /* 233 */
241         OP_FTRREAD,     /* 234 */
242         OP_FTRWRITE,    /* 235 */
243         OP_FTREXEC,     /* 236 */
244         OP_FTEREAD,     /* 237 */
245         OP_FTEWRITE,    /* 238 */
246         OP_FTEEXEC,     /* 239 */
247         OP_FTIS,        /* 240 */
248         OP_FTEOWNED,    /* 241 */
249         OP_FTROWNED,    /* 242 */
250         OP_FTZERO,      /* 243 */
251         OP_FTSIZE,      /* 244 */
252         OP_FTMTIME,     /* 245 */
253         OP_FTATIME,     /* 246 */
254         OP_FTCTIME,     /* 247 */
255         OP_FTSOCK,      /* 248 */
256         OP_FTCHR,       /* 249 */
257         OP_FTBLK,       /* 250 */
258         OP_FTFILE,      /* 251 */
259         OP_FTDIR,       /* 252 */
260         OP_FTPIPE,      /* 253 */
261         OP_FTLINK,      /* 254 */
262         OP_FTSUID,      /* 255 */
263         OP_FTSGID,      /* 256 */
264         OP_FTSVTX,      /* 257 */
265         OP_FTTTY,       /* 258 */
266         OP_FTTEXT,      /* 259 */
267         OP_FTBINARY,    /* 260 */
268         OP_CHDIR,       /* 261 */
269         OP_CHOWN,       /* 262 */
270         OP_CHROOT,      /* 263 */
271         OP_UNLINK,      /* 264 */
272         OP_CHMOD,       /* 265 */
273         OP_UTIME,       /* 266 */
274         OP_RENAME,      /* 267 */
275         OP_LINK,        /* 268 */
276         OP_SYMLINK,     /* 269 */
277         OP_READLINK,    /* 270 */
278         OP_MKDIR,       /* 271 */
279         OP_RMDIR,       /* 272 */
280         OP_OPEN_DIR,    /* 273 */
281         OP_READDIR,     /* 274 */
282         OP_TELLDIR,     /* 275 */
283         OP_SEEKDIR,     /* 276 */
284         OP_REWINDDIR,   /* 277 */
285         OP_CLOSEDIR,    /* 278 */
286         OP_FORK,        /* 279 */
287         OP_WAIT,        /* 280 */
288         OP_WAITPID,     /* 281 */
289         OP_SYSTEM,      /* 282 */
290         OP_EXEC,        /* 283 */
291         OP_KILL,        /* 284 */
292         OP_GETPPID,     /* 285 */
293         OP_GETPGRP,     /* 286 */
294         OP_SETPGRP,     /* 287 */
295         OP_GETPRIORITY, /* 288 */
296         OP_SETPRIORITY, /* 289 */
297         OP_TIME,        /* 290 */
298         OP_TMS,         /* 291 */
299         OP_LOCALTIME,   /* 292 */
300         OP_GMTIME,      /* 293 */
301         OP_ALARM,       /* 294 */
302         OP_SLEEP,       /* 295 */
303         OP_SHMGET,      /* 296 */
304         OP_SHMCTL,      /* 297 */
305         OP_SHMREAD,     /* 298 */
306         OP_SHMWRITE,    /* 299 */
307         OP_MSGGET,      /* 300 */
308         OP_MSGCTL,      /* 301 */
309         OP_MSGSND,      /* 302 */
310         OP_MSGRCV,      /* 303 */
311         OP_SEMGET,      /* 304 */
312         OP_SEMCTL,      /* 305 */
313         OP_SEMOP,       /* 306 */
314         OP_REQUIRE,     /* 307 */
315         OP_DOFILE,      /* 308 */
316         OP_ENTEREVAL,   /* 309 */
317         OP_LEAVEEVAL,   /* 310 */
318         OP_ENTERTRY,    /* 311 */
319         OP_LEAVETRY,    /* 312 */
320         OP_GHBYNAME,    /* 313 */
321         OP_GHBYADDR,    /* 314 */
322         OP_GHOSTENT,    /* 315 */
323         OP_GNBYNAME,    /* 316 */
324         OP_GNBYADDR,    /* 317 */
325         OP_GNETENT,     /* 318 */
326         OP_GPBYNAME,    /* 319 */
327         OP_GPBYNUMBER,  /* 320 */
328         OP_GPROTOENT,   /* 321 */
329         OP_GSBYNAME,    /* 322 */
330         OP_GSBYPORT,    /* 323 */
331         OP_GSERVENT,    /* 324 */
332         OP_SHOSTENT,    /* 325 */
333         OP_SNETENT,     /* 326 */
334         OP_SPROTOENT,   /* 327 */
335         OP_SSERVENT,    /* 328 */
336         OP_EHOSTENT,    /* 329 */
337         OP_ENETENT,     /* 330 */
338         OP_EPROTOENT,   /* 331 */
339         OP_ESERVENT,    /* 332 */
340         OP_GPWNAM,      /* 333 */
341         OP_GPWUID,      /* 334 */
342         OP_GPWENT,      /* 335 */
343         OP_SPWENT,      /* 336 */
344         OP_EPWENT,      /* 337 */
345         OP_GGRNAM,      /* 338 */
346         OP_GGRGID,      /* 339 */
347         OP_GGRENT,      /* 340 */
348         OP_SGRENT,      /* 341 */
349         OP_EGRENT,      /* 342 */
350         OP_GETLOGIN,    /* 343 */
351         OP_SYSCALL,     /* 344 */
352         OP_LOCK,        /* 345 */
353         OP_THREADSV,    /* 346 */
354         OP_max          
355 } opcode;
356
357 #define MAXO 347
358
359 #ifndef DOINIT
360 EXT char *op_name[];
361 #else
362 EXT char *op_name[] = {
363         "null",
364         "stub",
365         "scalar",
366         "pushmark",
367         "wantarray",
368         "const",
369         "gvsv",
370         "gv",
371         "gelem",
372         "padsv",
373         "padav",
374         "padhv",
375         "padany",
376         "pushre",
377         "rv2gv",
378         "rv2sv",
379         "av2arylen",
380         "rv2cv",
381         "anoncode",
382         "prototype",
383         "refgen",
384         "srefgen",
385         "ref",
386         "bless",
387         "backtick",
388         "glob",
389         "readline",
390         "rcatline",
391         "regcmaybe",
392         "regcreset",
393         "regcomp",
394         "match",
395         "subst",
396         "substcont",
397         "trans",
398         "sassign",
399         "aassign",
400         "chop",
401         "schop",
402         "chomp",
403         "schomp",
404         "defined",
405         "undef",
406         "study",
407         "pos",
408         "preinc",
409         "i_preinc",
410         "predec",
411         "i_predec",
412         "postinc",
413         "i_postinc",
414         "postdec",
415         "i_postdec",
416         "pow",
417         "multiply",
418         "i_multiply",
419         "divide",
420         "i_divide",
421         "modulo",
422         "i_modulo",
423         "repeat",
424         "add",
425         "i_add",
426         "subtract",
427         "i_subtract",
428         "concat",
429         "stringify",
430         "left_shift",
431         "right_shift",
432         "lt",
433         "i_lt",
434         "gt",
435         "i_gt",
436         "le",
437         "i_le",
438         "ge",
439         "i_ge",
440         "eq",
441         "i_eq",
442         "ne",
443         "i_ne",
444         "ncmp",
445         "i_ncmp",
446         "slt",
447         "sgt",
448         "sle",
449         "sge",
450         "seq",
451         "sne",
452         "scmp",
453         "bit_and",
454         "bit_xor",
455         "bit_or",
456         "negate",
457         "i_negate",
458         "not",
459         "complement",
460         "atan2",
461         "sin",
462         "cos",
463         "rand",
464         "srand",
465         "exp",
466         "log",
467         "sqrt",
468         "int",
469         "hex",
470         "oct",
471         "abs",
472         "length",
473         "substr",
474         "vec",
475         "index",
476         "rindex",
477         "sprintf",
478         "formline",
479         "ord",
480         "chr",
481         "crypt",
482         "ucfirst",
483         "lcfirst",
484         "uc",
485         "lc",
486         "quotemeta",
487         "rv2av",
488         "aelemfast",
489         "aelem",
490         "aslice",
491         "each",
492         "values",
493         "keys",
494         "delete",
495         "exists",
496         "rv2hv",
497         "helem",
498         "hslice",
499         "unpack",
500         "pack",
501         "split",
502         "join",
503         "list",
504         "lslice",
505         "anonlist",
506         "anonhash",
507         "splice",
508         "push",
509         "pop",
510         "shift",
511         "unshift",
512         "sort",
513         "reverse",
514         "grepstart",
515         "grepwhile",
516         "mapstart",
517         "mapwhile",
518         "range",
519         "flip",
520         "flop",
521         "and",
522         "or",
523         "xor",
524         "cond_expr",
525         "andassign",
526         "orassign",
527         "method",
528         "entersub",
529         "leavesub",
530         "caller",
531         "warn",
532         "die",
533         "reset",
534         "lineseq",
535         "nextstate",
536         "dbstate",
537         "unstack",
538         "enter",
539         "leave",
540         "scope",
541         "enteriter",
542         "iter",
543         "enterloop",
544         "leaveloop",
545         "return",
546         "last",
547         "next",
548         "redo",
549         "dump",
550         "goto",
551         "exit",
552         "open",
553         "close",
554         "pipe_op",
555         "fileno",
556         "umask",
557         "binmode",
558         "tie",
559         "untie",
560         "tied",
561         "dbmopen",
562         "dbmclose",
563         "sselect",
564         "select",
565         "getc",
566         "read",
567         "enterwrite",
568         "leavewrite",
569         "prtf",
570         "print",
571         "sysopen",
572         "sysseek",
573         "sysread",
574         "syswrite",
575         "send",
576         "recv",
577         "eof",
578         "tell",
579         "seek",
580         "truncate",
581         "fcntl",
582         "ioctl",
583         "flock",
584         "socket",
585         "sockpair",
586         "bind",
587         "connect",
588         "listen",
589         "accept",
590         "shutdown",
591         "gsockopt",
592         "ssockopt",
593         "getsockname",
594         "getpeername",
595         "lstat",
596         "stat",
597         "ftrread",
598         "ftrwrite",
599         "ftrexec",
600         "fteread",
601         "ftewrite",
602         "fteexec",
603         "ftis",
604         "fteowned",
605         "ftrowned",
606         "ftzero",
607         "ftsize",
608         "ftmtime",
609         "ftatime",
610         "ftctime",
611         "ftsock",
612         "ftchr",
613         "ftblk",
614         "ftfile",
615         "ftdir",
616         "ftpipe",
617         "ftlink",
618         "ftsuid",
619         "ftsgid",
620         "ftsvtx",
621         "fttty",
622         "fttext",
623         "ftbinary",
624         "chdir",
625         "chown",
626         "chroot",
627         "unlink",
628         "chmod",
629         "utime",
630         "rename",
631         "link",
632         "symlink",
633         "readlink",
634         "mkdir",
635         "rmdir",
636         "open_dir",
637         "readdir",
638         "telldir",
639         "seekdir",
640         "rewinddir",
641         "closedir",
642         "fork",
643         "wait",
644         "waitpid",
645         "system",
646         "exec",
647         "kill",
648         "getppid",
649         "getpgrp",
650         "setpgrp",
651         "getpriority",
652         "setpriority",
653         "time",
654         "tms",
655         "localtime",
656         "gmtime",
657         "alarm",
658         "sleep",
659         "shmget",
660         "shmctl",
661         "shmread",
662         "shmwrite",
663         "msgget",
664         "msgctl",
665         "msgsnd",
666         "msgrcv",
667         "semget",
668         "semctl",
669         "semop",
670         "require",
671         "dofile",
672         "entereval",
673         "leaveeval",
674         "entertry",
675         "leavetry",
676         "ghbyname",
677         "ghbyaddr",
678         "ghostent",
679         "gnbyname",
680         "gnbyaddr",
681         "gnetent",
682         "gpbyname",
683         "gpbynumber",
684         "gprotoent",
685         "gsbyname",
686         "gsbyport",
687         "gservent",
688         "shostent",
689         "snetent",
690         "sprotoent",
691         "sservent",
692         "ehostent",
693         "enetent",
694         "eprotoent",
695         "eservent",
696         "gpwnam",
697         "gpwuid",
698         "gpwent",
699         "spwent",
700         "epwent",
701         "ggrnam",
702         "ggrgid",
703         "ggrent",
704         "sgrent",
705         "egrent",
706         "getlogin",
707         "syscall",
708         "lock",
709         "threadsv",
710 };
711 #endif
712
713 #ifndef DOINIT
714 EXT char *op_desc[];
715 #else
716 EXT char *op_desc[] = {
717         "null operation",
718         "stub",
719         "scalar",
720         "pushmark",
721         "wantarray",
722         "constant item",
723         "scalar variable",
724         "glob value",
725         "glob elem",
726         "private variable",
727         "private array",
728         "private hash",
729         "private something",
730         "push regexp",
731         "ref-to-glob cast",
732         "scalar deref",
733         "array length",
734         "subroutine deref",
735         "anonymous subroutine",
736         "subroutine prototype",
737         "reference constructor",
738         "scalar ref constructor",
739         "reference-type operator",
740         "bless",
741         "backticks",
742         "glob",
743         "<HANDLE>",
744         "append I/O operator",
745         "regexp comp once",
746         "regexp reset interpolation flag",
747         "regexp compilation",
748         "pattern match",
749         "substitution",
750         "substitution cont",
751         "character translation",
752         "scalar assignment",
753         "list assignment",
754         "chop",
755         "scalar chop",
756         "safe chop",
757         "scalar safe chop",
758         "defined operator",
759         "undef operator",
760         "study",
761         "match position",
762         "preincrement",
763         "integer preincrement",
764         "predecrement",
765         "integer predecrement",
766         "postincrement",
767         "integer postincrement",
768         "postdecrement",
769         "integer postdecrement",
770         "exponentiation",
771         "multiplication",
772         "integer multiplication",
773         "division",
774         "integer division",
775         "modulus",
776         "integer modulus",
777         "repeat",
778         "addition",
779         "integer addition",
780         "subtraction",
781         "integer subtraction",
782         "concatenation",
783         "string",
784         "left bitshift",
785         "right bitshift",
786         "numeric lt",
787         "integer lt",
788         "numeric gt",
789         "integer gt",
790         "numeric le",
791         "integer le",
792         "numeric ge",
793         "integer ge",
794         "numeric eq",
795         "integer eq",
796         "numeric ne",
797         "integer ne",
798         "spaceship operator",
799         "integer spaceship",
800         "string lt",
801         "string gt",
802         "string le",
803         "string ge",
804         "string eq",
805         "string ne",
806         "string comparison",
807         "bitwise and",
808         "bitwise xor",
809         "bitwise or",
810         "negate",
811         "integer negate",
812         "not",
813         "1's complement",
814         "atan2",
815         "sin",
816         "cos",
817         "rand",
818         "srand",
819         "exp",
820         "log",
821         "sqrt",
822         "int",
823         "hex",
824         "oct",
825         "abs",
826         "length",
827         "substr",
828         "vec",
829         "index",
830         "rindex",
831         "sprintf",
832         "formline",
833         "ord",
834         "chr",
835         "crypt",
836         "upper case first",
837         "lower case first",
838         "upper case",
839         "lower case",
840         "quote metachars",
841         "array deref",
842         "known array element",
843         "array element",
844         "array slice",
845         "each",
846         "values",
847         "keys",
848         "delete",
849         "exists operator",
850         "hash deref",
851         "hash elem",
852         "hash slice",
853         "unpack",
854         "pack",
855         "split",
856         "join",
857         "list",
858         "list slice",
859         "anonymous list",
860         "anonymous hash",
861         "splice",
862         "push",
863         "pop",
864         "shift",
865         "unshift",
866         "sort",
867         "reverse",
868         "grep",
869         "grep iterator",
870         "map",
871         "map iterator",
872         "flipflop",
873         "range (or flip)",
874         "range (or flop)",
875         "logical and",
876         "logical or",
877         "logical xor",
878         "conditional expression",
879         "logical and assignment",
880         "logical or assignment",
881         "method lookup",
882         "subroutine entry",
883         "subroutine exit",
884         "caller",
885         "warn",
886         "die",
887         "reset",
888         "line sequence",
889         "next statement",
890         "debug next statement",
891         "unstack",
892         "block entry",
893         "block exit",
894         "block",
895         "foreach loop entry",
896         "foreach loop iterator",
897         "loop entry",
898         "loop exit",
899         "return",
900         "last",
901         "next",
902         "redo",
903         "dump",
904         "goto",
905         "exit",
906         "open",
907         "close",
908         "pipe",
909         "fileno",
910         "umask",
911         "binmode",
912         "tie",
913         "untie",
914         "tied",
915         "dbmopen",
916         "dbmclose",
917         "select system call",
918         "select",
919         "getc",
920         "read",
921         "write",
922         "write exit",
923         "printf",
924         "print",
925         "sysopen",
926         "sysseek",
927         "sysread",
928         "syswrite",
929         "send",
930         "recv",
931         "eof",
932         "tell",
933         "seek",
934         "truncate",
935         "fcntl",
936         "ioctl",
937         "flock",
938         "socket",
939         "socketpair",
940         "bind",
941         "connect",
942         "listen",
943         "accept",
944         "shutdown",
945         "getsockopt",
946         "setsockopt",
947         "getsockname",
948         "getpeername",
949         "lstat",
950         "stat",
951         "-R",
952         "-W",
953         "-X",
954         "-r",
955         "-w",
956         "-x",
957         "-e",
958         "-O",
959         "-o",
960         "-z",
961         "-s",
962         "-M",
963         "-A",
964         "-C",
965         "-S",
966         "-c",
967         "-b",
968         "-f",
969         "-d",
970         "-p",
971         "-l",
972         "-u",
973         "-g",
974         "-k",
975         "-t",
976         "-T",
977         "-B",
978         "chdir",
979         "chown",
980         "chroot",
981         "unlink",
982         "chmod",
983         "utime",
984         "rename",
985         "link",
986         "symlink",
987         "readlink",
988         "mkdir",
989         "rmdir",
990         "opendir",
991         "readdir",
992         "telldir",
993         "seekdir",
994         "rewinddir",
995         "closedir",
996         "fork",
997         "wait",
998         "waitpid",
999         "system",
1000         "exec",
1001         "kill",
1002         "getppid",
1003         "getpgrp",
1004         "setpgrp",
1005         "getpriority",
1006         "setpriority",
1007         "time",
1008         "times",
1009         "localtime",
1010         "gmtime",
1011         "alarm",
1012         "sleep",
1013         "shmget",
1014         "shmctl",
1015         "shmread",
1016         "shmwrite",
1017         "msgget",
1018         "msgctl",
1019         "msgsnd",
1020         "msgrcv",
1021         "semget",
1022         "semctl",
1023         "semop",
1024         "require",
1025         "do 'file'",
1026         "eval string",
1027         "eval exit",
1028         "eval block",
1029         "eval block exit",
1030         "gethostbyname",
1031         "gethostbyaddr",
1032         "gethostent",
1033         "getnetbyname",
1034         "getnetbyaddr",
1035         "getnetent",
1036         "getprotobyname",
1037         "getprotobynumber",
1038         "getprotoent",
1039         "getservbyname",
1040         "getservbyport",
1041         "getservent",
1042         "sethostent",
1043         "setnetent",
1044         "setprotoent",
1045         "setservent",
1046         "endhostent",
1047         "endnetent",
1048         "endprotoent",
1049         "endservent",
1050         "getpwnam",
1051         "getpwuid",
1052         "getpwent",
1053         "setpwent",
1054         "endpwent",
1055         "getgrnam",
1056         "getgrgid",
1057         "getgrent",
1058         "setgrent",
1059         "endgrent",
1060         "getlogin",
1061         "syscall",
1062         "lock",
1063         "per-thread variable",
1064 };
1065 #endif
1066
1067 #ifndef PERL_OBJECT
1068 START_EXTERN_C
1069
1070 OP *    ck_anoncode     _((OP* o));
1071 OP *    ck_bitop        _((OP* o));
1072 OP *    ck_concat       _((OP* o));
1073 OP *    ck_delete       _((OP* o));
1074 OP *    ck_eof          _((OP* o));
1075 OP *    ck_eval         _((OP* o));
1076 OP *    ck_exec         _((OP* o));
1077 OP *    ck_exists       _((OP* o));
1078 OP *    ck_ftst         _((OP* o));
1079 OP *    ck_fun          _((OP* o));
1080 OP *    ck_fun_locale   _((OP* o));
1081 OP *    ck_glob         _((OP* o));
1082 OP *    ck_grep         _((OP* o));
1083 OP *    ck_index        _((OP* o));
1084 OP *    ck_lengthconst  _((OP* o));
1085 OP *    ck_lfun         _((OP* o));
1086 OP *    ck_listiob      _((OP* o));
1087 OP *    ck_match        _((OP* o));
1088 OP *    ck_null         _((OP* o));
1089 OP *    ck_repeat       _((OP* o));
1090 OP *    ck_require      _((OP* o));
1091 OP *    ck_rfun         _((OP* o));
1092 OP *    ck_rvconst      _((OP* o));
1093 OP *    ck_scmp         _((OP* o));
1094 OP *    ck_select       _((OP* o));
1095 OP *    ck_shift        _((OP* o));
1096 OP *    ck_sort         _((OP* o));
1097 OP *    ck_spair        _((OP* o));
1098 OP *    ck_split        _((OP* o));
1099 OP *    ck_subr         _((OP* o));
1100 OP *    ck_svconst      _((OP* o));
1101 OP *    ck_trunc        _((OP* o));
1102
1103 OP *    pp_null         _((ARGSproto));
1104 OP *    pp_stub         _((ARGSproto));
1105 OP *    pp_scalar       _((ARGSproto));
1106 OP *    pp_pushmark     _((ARGSproto));
1107 OP *    pp_wantarray    _((ARGSproto));
1108 OP *    pp_const        _((ARGSproto));
1109 OP *    pp_gvsv         _((ARGSproto));
1110 OP *    pp_gv           _((ARGSproto));
1111 OP *    pp_gelem        _((ARGSproto));
1112 OP *    pp_padsv        _((ARGSproto));
1113 OP *    pp_padav        _((ARGSproto));
1114 OP *    pp_padhv        _((ARGSproto));
1115 OP *    pp_padany       _((ARGSproto));
1116 OP *    pp_pushre       _((ARGSproto));
1117 OP *    pp_rv2gv        _((ARGSproto));
1118 OP *    pp_rv2sv        _((ARGSproto));
1119 OP *    pp_av2arylen    _((ARGSproto));
1120 OP *    pp_rv2cv        _((ARGSproto));
1121 OP *    pp_anoncode     _((ARGSproto));
1122 OP *    pp_prototype    _((ARGSproto));
1123 OP *    pp_refgen       _((ARGSproto));
1124 OP *    pp_srefgen      _((ARGSproto));
1125 OP *    pp_ref          _((ARGSproto));
1126 OP *    pp_bless        _((ARGSproto));
1127 OP *    pp_backtick     _((ARGSproto));
1128 OP *    pp_glob         _((ARGSproto));
1129 OP *    pp_readline     _((ARGSproto));
1130 OP *    pp_rcatline     _((ARGSproto));
1131 OP *    pp_regcmaybe    _((ARGSproto));
1132 OP *    pp_regcreset    _((ARGSproto));
1133 OP *    pp_regcomp      _((ARGSproto));
1134 OP *    pp_match        _((ARGSproto));
1135 OP *    pp_subst        _((ARGSproto));
1136 OP *    pp_substcont    _((ARGSproto));
1137 OP *    pp_trans        _((ARGSproto));
1138 OP *    pp_sassign      _((ARGSproto));
1139 OP *    pp_aassign      _((ARGSproto));
1140 OP *    pp_chop         _((ARGSproto));
1141 OP *    pp_schop        _((ARGSproto));
1142 OP *    pp_chomp        _((ARGSproto));
1143 OP *    pp_schomp       _((ARGSproto));
1144 OP *    pp_defined      _((ARGSproto));
1145 OP *    pp_undef        _((ARGSproto));
1146 OP *    pp_study        _((ARGSproto));
1147 OP *    pp_pos          _((ARGSproto));
1148 OP *    pp_preinc       _((ARGSproto));
1149 OP *    pp_i_preinc     _((ARGSproto));
1150 OP *    pp_predec       _((ARGSproto));
1151 OP *    pp_i_predec     _((ARGSproto));
1152 OP *    pp_postinc      _((ARGSproto));
1153 OP *    pp_i_postinc    _((ARGSproto));
1154 OP *    pp_postdec      _((ARGSproto));
1155 OP *    pp_i_postdec    _((ARGSproto));
1156 OP *    pp_pow          _((ARGSproto));
1157 OP *    pp_multiply     _((ARGSproto));
1158 OP *    pp_i_multiply   _((ARGSproto));
1159 OP *    pp_divide       _((ARGSproto));
1160 OP *    pp_i_divide     _((ARGSproto));
1161 OP *    pp_modulo       _((ARGSproto));
1162 OP *    pp_i_modulo     _((ARGSproto));
1163 OP *    pp_repeat       _((ARGSproto));
1164 OP *    pp_add          _((ARGSproto));
1165 OP *    pp_i_add        _((ARGSproto));
1166 OP *    pp_subtract     _((ARGSproto));
1167 OP *    pp_i_subtract   _((ARGSproto));
1168 OP *    pp_concat       _((ARGSproto));
1169 OP *    pp_stringify    _((ARGSproto));
1170 OP *    pp_left_shift   _((ARGSproto));
1171 OP *    pp_right_shift  _((ARGSproto));
1172 OP *    pp_lt           _((ARGSproto));
1173 OP *    pp_i_lt         _((ARGSproto));
1174 OP *    pp_gt           _((ARGSproto));
1175 OP *    pp_i_gt         _((ARGSproto));
1176 OP *    pp_le           _((ARGSproto));
1177 OP *    pp_i_le         _((ARGSproto));
1178 OP *    pp_ge           _((ARGSproto));
1179 OP *    pp_i_ge         _((ARGSproto));
1180 OP *    pp_eq           _((ARGSproto));
1181 OP *    pp_i_eq         _((ARGSproto));
1182 OP *    pp_ne           _((ARGSproto));
1183 OP *    pp_i_ne         _((ARGSproto));
1184 OP *    pp_ncmp         _((ARGSproto));
1185 OP *    pp_i_ncmp       _((ARGSproto));
1186 OP *    pp_slt          _((ARGSproto));
1187 OP *    pp_sgt          _((ARGSproto));
1188 OP *    pp_sle          _((ARGSproto));
1189 OP *    pp_sge          _((ARGSproto));
1190 OP *    pp_seq          _((ARGSproto));
1191 OP *    pp_sne          _((ARGSproto));
1192 OP *    pp_scmp         _((ARGSproto));
1193 OP *    pp_bit_and      _((ARGSproto));
1194 OP *    pp_bit_xor      _((ARGSproto));
1195 OP *    pp_bit_or       _((ARGSproto));
1196 OP *    pp_negate       _((ARGSproto));
1197 OP *    pp_i_negate     _((ARGSproto));
1198 OP *    pp_not          _((ARGSproto));
1199 OP *    pp_complement   _((ARGSproto));
1200 OP *    pp_atan2        _((ARGSproto));
1201 OP *    pp_sin          _((ARGSproto));
1202 OP *    pp_cos          _((ARGSproto));
1203 OP *    pp_rand         _((ARGSproto));
1204 OP *    pp_srand        _((ARGSproto));
1205 OP *    pp_exp          _((ARGSproto));
1206 OP *    pp_log          _((ARGSproto));
1207 OP *    pp_sqrt         _((ARGSproto));
1208 OP *    pp_int          _((ARGSproto));
1209 OP *    pp_hex          _((ARGSproto));
1210 OP *    pp_oct          _((ARGSproto));
1211 OP *    pp_abs          _((ARGSproto));
1212 OP *    pp_length       _((ARGSproto));
1213 OP *    pp_substr       _((ARGSproto));
1214 OP *    pp_vec          _((ARGSproto));
1215 OP *    pp_index        _((ARGSproto));
1216 OP *    pp_rindex       _((ARGSproto));
1217 OP *    pp_sprintf      _((ARGSproto));
1218 OP *    pp_formline     _((ARGSproto));
1219 OP *    pp_ord          _((ARGSproto));
1220 OP *    pp_chr          _((ARGSproto));
1221 OP *    pp_crypt        _((ARGSproto));
1222 OP *    pp_ucfirst      _((ARGSproto));
1223 OP *    pp_lcfirst      _((ARGSproto));
1224 OP *    pp_uc           _((ARGSproto));
1225 OP *    pp_lc           _((ARGSproto));
1226 OP *    pp_quotemeta    _((ARGSproto));
1227 OP *    pp_rv2av        _((ARGSproto));
1228 OP *    pp_aelemfast    _((ARGSproto));
1229 OP *    pp_aelem        _((ARGSproto));
1230 OP *    pp_aslice       _((ARGSproto));
1231 OP *    pp_each         _((ARGSproto));
1232 OP *    pp_values       _((ARGSproto));
1233 OP *    pp_keys         _((ARGSproto));
1234 OP *    pp_delete       _((ARGSproto));
1235 OP *    pp_exists       _((ARGSproto));
1236 OP *    pp_rv2hv        _((ARGSproto));
1237 OP *    pp_helem        _((ARGSproto));
1238 OP *    pp_hslice       _((ARGSproto));
1239 OP *    pp_unpack       _((ARGSproto));
1240 OP *    pp_pack         _((ARGSproto));
1241 OP *    pp_split        _((ARGSproto));
1242 OP *    pp_join         _((ARGSproto));
1243 OP *    pp_list         _((ARGSproto));
1244 OP *    pp_lslice       _((ARGSproto));
1245 OP *    pp_anonlist     _((ARGSproto));
1246 OP *    pp_anonhash     _((ARGSproto));
1247 OP *    pp_splice       _((ARGSproto));
1248 OP *    pp_push         _((ARGSproto));
1249 OP *    pp_pop          _((ARGSproto));
1250 OP *    pp_shift        _((ARGSproto));
1251 OP *    pp_unshift      _((ARGSproto));
1252 OP *    pp_sort         _((ARGSproto));
1253 OP *    pp_reverse      _((ARGSproto));
1254 OP *    pp_grepstart    _((ARGSproto));
1255 OP *    pp_grepwhile    _((ARGSproto));
1256 OP *    pp_mapstart     _((ARGSproto));
1257 OP *    pp_mapwhile     _((ARGSproto));
1258 OP *    pp_range        _((ARGSproto));
1259 OP *    pp_flip         _((ARGSproto));
1260 OP *    pp_flop         _((ARGSproto));
1261 OP *    pp_and          _((ARGSproto));
1262 OP *    pp_or           _((ARGSproto));
1263 OP *    pp_xor          _((ARGSproto));
1264 OP *    pp_cond_expr    _((ARGSproto));
1265 OP *    pp_andassign    _((ARGSproto));
1266 OP *    pp_orassign     _((ARGSproto));
1267 OP *    pp_method       _((ARGSproto));
1268 OP *    pp_entersub     _((ARGSproto));
1269 OP *    pp_leavesub     _((ARGSproto));
1270 OP *    pp_caller       _((ARGSproto));
1271 OP *    pp_warn         _((ARGSproto));
1272 OP *    pp_die          _((ARGSproto));
1273 OP *    pp_reset        _((ARGSproto));
1274 OP *    pp_lineseq      _((ARGSproto));
1275 OP *    pp_nextstate    _((ARGSproto));
1276 OP *    pp_dbstate      _((ARGSproto));
1277 OP *    pp_unstack      _((ARGSproto));
1278 OP *    pp_enter        _((ARGSproto));
1279 OP *    pp_leave        _((ARGSproto));
1280 OP *    pp_scope        _((ARGSproto));
1281 OP *    pp_enteriter    _((ARGSproto));
1282 OP *    pp_iter         _((ARGSproto));
1283 OP *    pp_enterloop    _((ARGSproto));
1284 OP *    pp_leaveloop    _((ARGSproto));
1285 OP *    pp_return       _((ARGSproto));
1286 OP *    pp_last         _((ARGSproto));
1287 OP *    pp_next         _((ARGSproto));
1288 OP *    pp_redo         _((ARGSproto));
1289 OP *    pp_dump         _((ARGSproto));
1290 OP *    pp_goto         _((ARGSproto));
1291 OP *    pp_exit         _((ARGSproto));
1292 OP *    pp_open         _((ARGSproto));
1293 OP *    pp_close        _((ARGSproto));
1294 OP *    pp_pipe_op      _((ARGSproto));
1295 OP *    pp_fileno       _((ARGSproto));
1296 OP *    pp_umask        _((ARGSproto));
1297 OP *    pp_binmode      _((ARGSproto));
1298 OP *    pp_tie          _((ARGSproto));
1299 OP *    pp_untie        _((ARGSproto));
1300 OP *    pp_tied         _((ARGSproto));
1301 OP *    pp_dbmopen      _((ARGSproto));
1302 OP *    pp_dbmclose     _((ARGSproto));
1303 OP *    pp_sselect      _((ARGSproto));
1304 OP *    pp_select       _((ARGSproto));
1305 OP *    pp_getc         _((ARGSproto));
1306 OP *    pp_read         _((ARGSproto));
1307 OP *    pp_enterwrite   _((ARGSproto));
1308 OP *    pp_leavewrite   _((ARGSproto));
1309 OP *    pp_prtf         _((ARGSproto));
1310 OP *    pp_print        _((ARGSproto));
1311 OP *    pp_sysopen      _((ARGSproto));
1312 OP *    pp_sysseek      _((ARGSproto));
1313 OP *    pp_sysread      _((ARGSproto));
1314 OP *    pp_syswrite     _((ARGSproto));
1315 OP *    pp_send         _((ARGSproto));
1316 OP *    pp_recv         _((ARGSproto));
1317 OP *    pp_eof          _((ARGSproto));
1318 OP *    pp_tell         _((ARGSproto));
1319 OP *    pp_seek         _((ARGSproto));
1320 OP *    pp_truncate     _((ARGSproto));
1321 OP *    pp_fcntl        _((ARGSproto));
1322 OP *    pp_ioctl        _((ARGSproto));
1323 OP *    pp_flock        _((ARGSproto));
1324 OP *    pp_socket       _((ARGSproto));
1325 OP *    pp_sockpair     _((ARGSproto));
1326 OP *    pp_bind         _((ARGSproto));
1327 OP *    pp_connect      _((ARGSproto));
1328 OP *    pp_listen       _((ARGSproto));
1329 OP *    pp_accept       _((ARGSproto));
1330 OP *    pp_shutdown     _((ARGSproto));
1331 OP *    pp_gsockopt     _((ARGSproto));
1332 OP *    pp_ssockopt     _((ARGSproto));
1333 OP *    pp_getsockname  _((ARGSproto));
1334 OP *    pp_getpeername  _((ARGSproto));
1335 OP *    pp_lstat        _((ARGSproto));
1336 OP *    pp_stat         _((ARGSproto));
1337 OP *    pp_ftrread      _((ARGSproto));
1338 OP *    pp_ftrwrite     _((ARGSproto));
1339 OP *    pp_ftrexec      _((ARGSproto));
1340 OP *    pp_fteread      _((ARGSproto));
1341 OP *    pp_ftewrite     _((ARGSproto));
1342 OP *    pp_fteexec      _((ARGSproto));
1343 OP *    pp_ftis         _((ARGSproto));
1344 OP *    pp_fteowned     _((ARGSproto));
1345 OP *    pp_ftrowned     _((ARGSproto));
1346 OP *    pp_ftzero       _((ARGSproto));
1347 OP *    pp_ftsize       _((ARGSproto));
1348 OP *    pp_ftmtime      _((ARGSproto));
1349 OP *    pp_ftatime      _((ARGSproto));
1350 OP *    pp_ftctime      _((ARGSproto));
1351 OP *    pp_ftsock       _((ARGSproto));
1352 OP *    pp_ftchr        _((ARGSproto));
1353 OP *    pp_ftblk        _((ARGSproto));
1354 OP *    pp_ftfile       _((ARGSproto));
1355 OP *    pp_ftdir        _((ARGSproto));
1356 OP *    pp_ftpipe       _((ARGSproto));
1357 OP *    pp_ftlink       _((ARGSproto));
1358 OP *    pp_ftsuid       _((ARGSproto));
1359 OP *    pp_ftsgid       _((ARGSproto));
1360 OP *    pp_ftsvtx       _((ARGSproto));
1361 OP *    pp_fttty        _((ARGSproto));
1362 OP *    pp_fttext       _((ARGSproto));
1363 OP *    pp_ftbinary     _((ARGSproto));
1364 OP *    pp_chdir        _((ARGSproto));
1365 OP *    pp_chown        _((ARGSproto));
1366 OP *    pp_chroot       _((ARGSproto));
1367 OP *    pp_unlink       _((ARGSproto));
1368 OP *    pp_chmod        _((ARGSproto));
1369 OP *    pp_utime        _((ARGSproto));
1370 OP *    pp_rename       _((ARGSproto));
1371 OP *    pp_link         _((ARGSproto));
1372 OP *    pp_symlink      _((ARGSproto));
1373 OP *    pp_readlink     _((ARGSproto));
1374 OP *    pp_mkdir        _((ARGSproto));
1375 OP *    pp_rmdir        _((ARGSproto));
1376 OP *    pp_open_dir     _((ARGSproto));
1377 OP *    pp_readdir      _((ARGSproto));
1378 OP *    pp_telldir      _((ARGSproto));
1379 OP *    pp_seekdir      _((ARGSproto));
1380 OP *    pp_rewinddir    _((ARGSproto));
1381 OP *    pp_closedir     _((ARGSproto));
1382 OP *    pp_fork         _((ARGSproto));
1383 OP *    pp_wait         _((ARGSproto));
1384 OP *    pp_waitpid      _((ARGSproto));
1385 OP *    pp_system       _((ARGSproto));
1386 OP *    pp_exec         _((ARGSproto));
1387 OP *    pp_kill         _((ARGSproto));
1388 OP *    pp_getppid      _((ARGSproto));
1389 OP *    pp_getpgrp      _((ARGSproto));
1390 OP *    pp_setpgrp      _((ARGSproto));
1391 OP *    pp_getpriority  _((ARGSproto));
1392 OP *    pp_setpriority  _((ARGSproto));
1393 OP *    pp_time         _((ARGSproto));
1394 OP *    pp_tms          _((ARGSproto));
1395 OP *    pp_localtime    _((ARGSproto));
1396 OP *    pp_gmtime       _((ARGSproto));
1397 OP *    pp_alarm        _((ARGSproto));
1398 OP *    pp_sleep        _((ARGSproto));
1399 OP *    pp_shmget       _((ARGSproto));
1400 OP *    pp_shmctl       _((ARGSproto));
1401 OP *    pp_shmread      _((ARGSproto));
1402 OP *    pp_shmwrite     _((ARGSproto));
1403 OP *    pp_msgget       _((ARGSproto));
1404 OP *    pp_msgctl       _((ARGSproto));
1405 OP *    pp_msgsnd       _((ARGSproto));
1406 OP *    pp_msgrcv       _((ARGSproto));
1407 OP *    pp_semget       _((ARGSproto));
1408 OP *    pp_semctl       _((ARGSproto));
1409 OP *    pp_semop        _((ARGSproto));
1410 OP *    pp_require      _((ARGSproto));
1411 OP *    pp_dofile       _((ARGSproto));
1412 OP *    pp_entereval    _((ARGSproto));
1413 OP *    pp_leaveeval    _((ARGSproto));
1414 OP *    pp_entertry     _((ARGSproto));
1415 OP *    pp_leavetry     _((ARGSproto));
1416 OP *    pp_ghbyname     _((ARGSproto));
1417 OP *    pp_ghbyaddr     _((ARGSproto));
1418 OP *    pp_ghostent     _((ARGSproto));
1419 OP *    pp_gnbyname     _((ARGSproto));
1420 OP *    pp_gnbyaddr     _((ARGSproto));
1421 OP *    pp_gnetent      _((ARGSproto));
1422 OP *    pp_gpbyname     _((ARGSproto));
1423 OP *    pp_gpbynumber   _((ARGSproto));
1424 OP *    pp_gprotoent    _((ARGSproto));
1425 OP *    pp_gsbyname     _((ARGSproto));
1426 OP *    pp_gsbyport     _((ARGSproto));
1427 OP *    pp_gservent     _((ARGSproto));
1428 OP *    pp_shostent     _((ARGSproto));
1429 OP *    pp_snetent      _((ARGSproto));
1430 OP *    pp_sprotoent    _((ARGSproto));
1431 OP *    pp_sservent     _((ARGSproto));
1432 OP *    pp_ehostent     _((ARGSproto));
1433 OP *    pp_enetent      _((ARGSproto));
1434 OP *    pp_eprotoent    _((ARGSproto));
1435 OP *    pp_eservent     _((ARGSproto));
1436 OP *    pp_gpwnam       _((ARGSproto));
1437 OP *    pp_gpwuid       _((ARGSproto));
1438 OP *    pp_gpwent       _((ARGSproto));
1439 OP *    pp_spwent       _((ARGSproto));
1440 OP *    pp_epwent       _((ARGSproto));
1441 OP *    pp_ggrnam       _((ARGSproto));
1442 OP *    pp_ggrgid       _((ARGSproto));
1443 OP *    pp_ggrent       _((ARGSproto));
1444 OP *    pp_sgrent       _((ARGSproto));
1445 OP *    pp_egrent       _((ARGSproto));
1446 OP *    pp_getlogin     _((ARGSproto));
1447 OP *    pp_syscall      _((ARGSproto));
1448 OP *    pp_lock         _((ARGSproto));
1449 OP *    pp_threadsv     _((ARGSproto));
1450
1451 END_EXTERN_C
1452 #endif  /* PERL_OBJECT */
1453
1454 #ifndef DOINIT
1455 EXT OP * (CPERLscope(*ppaddr)[])(ARGSproto);
1456 #else
1457 #ifndef PERL_OBJECT
1458 EXT OP * (CPERLscope(*ppaddr)[])(ARGSproto) = {
1459         pp_null,
1460         pp_stub,
1461         pp_scalar,
1462         pp_pushmark,
1463         pp_wantarray,
1464         pp_const,
1465         pp_gvsv,
1466         pp_gv,
1467         pp_gelem,
1468         pp_padsv,
1469         pp_padav,
1470         pp_padhv,
1471         pp_padany,
1472         pp_pushre,
1473         pp_rv2gv,
1474         pp_rv2sv,
1475         pp_av2arylen,
1476         pp_rv2cv,
1477         pp_anoncode,
1478         pp_prototype,
1479         pp_refgen,
1480         pp_srefgen,
1481         pp_ref,
1482         pp_bless,
1483         pp_backtick,
1484         pp_glob,
1485         pp_readline,
1486         pp_rcatline,
1487         pp_regcmaybe,
1488         pp_regcreset,
1489         pp_regcomp,
1490         pp_match,
1491         pp_subst,
1492         pp_substcont,
1493         pp_trans,
1494         pp_sassign,
1495         pp_aassign,
1496         pp_chop,
1497         pp_schop,
1498         pp_chomp,
1499         pp_schomp,
1500         pp_defined,
1501         pp_undef,
1502         pp_study,
1503         pp_pos,
1504         pp_preinc,
1505         pp_i_preinc,
1506         pp_predec,
1507         pp_i_predec,
1508         pp_postinc,
1509         pp_i_postinc,
1510         pp_postdec,
1511         pp_i_postdec,
1512         pp_pow,
1513         pp_multiply,
1514         pp_i_multiply,
1515         pp_divide,
1516         pp_i_divide,
1517         pp_modulo,
1518         pp_i_modulo,
1519         pp_repeat,
1520         pp_add,
1521         pp_i_add,
1522         pp_subtract,
1523         pp_i_subtract,
1524         pp_concat,
1525         pp_stringify,
1526         pp_left_shift,
1527         pp_right_shift,
1528         pp_lt,
1529         pp_i_lt,
1530         pp_gt,
1531         pp_i_gt,
1532         pp_le,
1533         pp_i_le,
1534         pp_ge,
1535         pp_i_ge,
1536         pp_eq,
1537         pp_i_eq,
1538         pp_ne,
1539         pp_i_ne,
1540         pp_ncmp,
1541         pp_i_ncmp,
1542         pp_slt,
1543         pp_sgt,
1544         pp_sle,
1545         pp_sge,
1546         pp_seq,
1547         pp_sne,
1548         pp_scmp,
1549         pp_bit_and,
1550         pp_bit_xor,
1551         pp_bit_or,
1552         pp_negate,
1553         pp_i_negate,
1554         pp_not,
1555         pp_complement,
1556         pp_atan2,
1557         pp_sin,
1558         pp_cos,
1559         pp_rand,
1560         pp_srand,
1561         pp_exp,
1562         pp_log,
1563         pp_sqrt,
1564         pp_int,
1565         pp_hex,
1566         pp_oct,
1567         pp_abs,
1568         pp_length,
1569         pp_substr,
1570         pp_vec,
1571         pp_index,
1572         pp_rindex,
1573         pp_sprintf,
1574         pp_formline,
1575         pp_ord,
1576         pp_chr,
1577         pp_crypt,
1578         pp_ucfirst,
1579         pp_lcfirst,
1580         pp_uc,
1581         pp_lc,
1582         pp_quotemeta,
1583         pp_rv2av,
1584         pp_aelemfast,
1585         pp_aelem,
1586         pp_aslice,
1587         pp_each,
1588         pp_values,
1589         pp_keys,
1590         pp_delete,
1591         pp_exists,
1592         pp_rv2hv,
1593         pp_helem,
1594         pp_hslice,
1595         pp_unpack,
1596         pp_pack,
1597         pp_split,
1598         pp_join,
1599         pp_list,
1600         pp_lslice,
1601         pp_anonlist,
1602         pp_anonhash,
1603         pp_splice,
1604         pp_push,
1605         pp_pop,
1606         pp_shift,
1607         pp_unshift,
1608         pp_sort,
1609         pp_reverse,
1610         pp_grepstart,
1611         pp_grepwhile,
1612         pp_mapstart,
1613         pp_mapwhile,
1614         pp_range,
1615         pp_flip,
1616         pp_flop,
1617         pp_and,
1618         pp_or,
1619         pp_xor,
1620         pp_cond_expr,
1621         pp_andassign,
1622         pp_orassign,
1623         pp_method,
1624         pp_entersub,
1625         pp_leavesub,
1626         pp_caller,
1627         pp_warn,
1628         pp_die,
1629         pp_reset,
1630         pp_lineseq,
1631         pp_nextstate,
1632         pp_dbstate,
1633         pp_unstack,
1634         pp_enter,
1635         pp_leave,
1636         pp_scope,
1637         pp_enteriter,
1638         pp_iter,
1639         pp_enterloop,
1640         pp_leaveloop,
1641         pp_return,
1642         pp_last,
1643         pp_next,
1644         pp_redo,
1645         pp_dump,
1646         pp_goto,
1647         pp_exit,
1648         pp_open,
1649         pp_close,
1650         pp_pipe_op,
1651         pp_fileno,
1652         pp_umask,
1653         pp_binmode,
1654         pp_tie,
1655         pp_untie,
1656         pp_tied,
1657         pp_dbmopen,
1658         pp_dbmclose,
1659         pp_sselect,
1660         pp_select,
1661         pp_getc,
1662         pp_read,
1663         pp_enterwrite,
1664         pp_leavewrite,
1665         pp_prtf,
1666         pp_print,
1667         pp_sysopen,
1668         pp_sysseek,
1669         pp_sysread,
1670         pp_syswrite,
1671         pp_send,
1672         pp_recv,
1673         pp_eof,
1674         pp_tell,
1675         pp_seek,
1676         pp_truncate,
1677         pp_fcntl,
1678         pp_ioctl,
1679         pp_flock,
1680         pp_socket,
1681         pp_sockpair,
1682         pp_bind,
1683         pp_connect,
1684         pp_listen,
1685         pp_accept,
1686         pp_shutdown,
1687         pp_gsockopt,
1688         pp_ssockopt,
1689         pp_getsockname,
1690         pp_getpeername,
1691         pp_lstat,
1692         pp_stat,
1693         pp_ftrread,
1694         pp_ftrwrite,
1695         pp_ftrexec,
1696         pp_fteread,
1697         pp_ftewrite,
1698         pp_fteexec,
1699         pp_ftis,
1700         pp_fteowned,
1701         pp_ftrowned,
1702         pp_ftzero,
1703         pp_ftsize,
1704         pp_ftmtime,
1705         pp_ftatime,
1706         pp_ftctime,
1707         pp_ftsock,
1708         pp_ftchr,
1709         pp_ftblk,
1710         pp_ftfile,
1711         pp_ftdir,
1712         pp_ftpipe,
1713         pp_ftlink,
1714         pp_ftsuid,
1715         pp_ftsgid,
1716         pp_ftsvtx,
1717         pp_fttty,
1718         pp_fttext,
1719         pp_ftbinary,
1720         pp_chdir,
1721         pp_chown,
1722         pp_chroot,
1723         pp_unlink,
1724         pp_chmod,
1725         pp_utime,
1726         pp_rename,
1727         pp_link,
1728         pp_symlink,
1729         pp_readlink,
1730         pp_mkdir,
1731         pp_rmdir,
1732         pp_open_dir,
1733         pp_readdir,
1734         pp_telldir,
1735         pp_seekdir,
1736         pp_rewinddir,
1737         pp_closedir,
1738         pp_fork,
1739         pp_wait,
1740         pp_waitpid,
1741         pp_system,
1742         pp_exec,
1743         pp_kill,
1744         pp_getppid,
1745         pp_getpgrp,
1746         pp_setpgrp,
1747         pp_getpriority,
1748         pp_setpriority,
1749         pp_time,
1750         pp_tms,
1751         pp_localtime,
1752         pp_gmtime,
1753         pp_alarm,
1754         pp_sleep,
1755         pp_shmget,
1756         pp_shmctl,
1757         pp_shmread,
1758         pp_shmwrite,
1759         pp_msgget,
1760         pp_msgctl,
1761         pp_msgsnd,
1762         pp_msgrcv,
1763         pp_semget,
1764         pp_semctl,
1765         pp_semop,
1766         pp_require,
1767         pp_dofile,
1768         pp_entereval,
1769         pp_leaveeval,
1770         pp_entertry,
1771         pp_leavetry,
1772         pp_ghbyname,
1773         pp_ghbyaddr,
1774         pp_ghostent,
1775         pp_gnbyname,
1776         pp_gnbyaddr,
1777         pp_gnetent,
1778         pp_gpbyname,
1779         pp_gpbynumber,
1780         pp_gprotoent,
1781         pp_gsbyname,
1782         pp_gsbyport,
1783         pp_gservent,
1784         pp_shostent,
1785         pp_snetent,
1786         pp_sprotoent,
1787         pp_sservent,
1788         pp_ehostent,
1789         pp_enetent,
1790         pp_eprotoent,
1791         pp_eservent,
1792         pp_gpwnam,
1793         pp_gpwuid,
1794         pp_gpwent,
1795         pp_spwent,
1796         pp_epwent,
1797         pp_ggrnam,
1798         pp_ggrgid,
1799         pp_ggrent,
1800         pp_sgrent,
1801         pp_egrent,
1802         pp_getlogin,
1803         pp_syscall,
1804         pp_lock,
1805         pp_threadsv,
1806 };
1807 #endif  /* PERL_OBJECT */
1808 #endif
1809
1810 #ifndef DOINIT
1811 EXT OP * (CPERLscope(*check)[]) _((OP *op));
1812 #else
1813 #ifndef PERL_OBJECT
1814 EXT OP * (CPERLscope(*check)[]) _((OP *op)) = {
1815         ck_null,        /* null */
1816         ck_null,        /* stub */
1817         ck_fun,         /* scalar */
1818         ck_null,        /* pushmark */
1819         ck_null,        /* wantarray */
1820         ck_svconst,     /* const */
1821         ck_null,        /* gvsv */
1822         ck_null,        /* gv */
1823         ck_null,        /* gelem */
1824         ck_null,        /* padsv */
1825         ck_null,        /* padav */
1826         ck_null,        /* padhv */
1827         ck_null,        /* padany */
1828         ck_null,        /* pushre */
1829         ck_rvconst,     /* rv2gv */
1830         ck_rvconst,     /* rv2sv */
1831         ck_null,        /* av2arylen */
1832         ck_rvconst,     /* rv2cv */
1833         ck_anoncode,    /* anoncode */
1834         ck_null,        /* prototype */
1835         ck_spair,       /* refgen */
1836         ck_null,        /* srefgen */
1837         ck_fun,         /* ref */
1838         ck_fun,         /* bless */
1839         ck_null,        /* backtick */
1840         ck_glob,        /* glob */
1841         ck_null,        /* readline */
1842         ck_null,        /* rcatline */
1843         ck_fun,         /* regcmaybe */
1844         ck_fun,         /* regcreset */
1845         ck_null,        /* regcomp */
1846         ck_match,       /* match */
1847         ck_null,        /* subst */
1848         ck_null,        /* substcont */
1849         ck_null,        /* trans */
1850         ck_null,        /* sassign */
1851         ck_null,        /* aassign */
1852         ck_spair,       /* chop */
1853         ck_null,        /* schop */
1854         ck_spair,       /* chomp */
1855         ck_null,        /* schomp */
1856         ck_rfun,        /* defined */
1857         ck_lfun,        /* undef */
1858         ck_fun,         /* study */
1859         ck_lfun,        /* pos */
1860         ck_lfun,        /* preinc */
1861         ck_lfun,        /* i_preinc */
1862         ck_lfun,        /* predec */
1863         ck_lfun,        /* i_predec */
1864         ck_lfun,        /* postinc */
1865         ck_lfun,        /* i_postinc */
1866         ck_lfun,        /* postdec */
1867         ck_lfun,        /* i_postdec */
1868         ck_null,        /* pow */
1869         ck_null,        /* multiply */
1870         ck_null,        /* i_multiply */
1871         ck_null,        /* divide */
1872         ck_null,        /* i_divide */
1873         ck_null,        /* modulo */
1874         ck_null,        /* i_modulo */
1875         ck_repeat,      /* repeat */
1876         ck_null,        /* add */
1877         ck_null,        /* i_add */
1878         ck_null,        /* subtract */
1879         ck_null,        /* i_subtract */
1880         ck_concat,      /* concat */
1881         ck_fun,         /* stringify */
1882         ck_bitop,       /* left_shift */
1883         ck_bitop,       /* right_shift */
1884         ck_null,        /* lt */
1885         ck_null,        /* i_lt */
1886         ck_null,        /* gt */
1887         ck_null,        /* i_gt */
1888         ck_null,        /* le */
1889         ck_null,        /* i_le */
1890         ck_null,        /* ge */
1891         ck_null,        /* i_ge */
1892         ck_null,        /* eq */
1893         ck_null,        /* i_eq */
1894         ck_null,        /* ne */
1895         ck_null,        /* i_ne */
1896         ck_null,        /* ncmp */
1897         ck_null,        /* i_ncmp */
1898         ck_scmp,        /* slt */
1899         ck_scmp,        /* sgt */
1900         ck_scmp,        /* sle */
1901         ck_scmp,        /* sge */
1902         ck_null,        /* seq */
1903         ck_null,        /* sne */
1904         ck_scmp,        /* scmp */
1905         ck_bitop,       /* bit_and */
1906         ck_bitop,       /* bit_xor */
1907         ck_bitop,       /* bit_or */
1908         ck_null,        /* negate */
1909         ck_null,        /* i_negate */
1910         ck_null,        /* not */
1911         ck_bitop,       /* complement */
1912         ck_fun,         /* atan2 */
1913         ck_fun,         /* sin */
1914         ck_fun,         /* cos */
1915         ck_fun,         /* rand */
1916         ck_fun,         /* srand */
1917         ck_fun,         /* exp */
1918         ck_fun,         /* log */
1919         ck_fun,         /* sqrt */
1920         ck_fun,         /* int */
1921         ck_fun,         /* hex */
1922         ck_fun,         /* oct */
1923         ck_fun,         /* abs */
1924         ck_lengthconst, /* length */
1925         ck_fun,         /* substr */
1926         ck_fun,         /* vec */
1927         ck_index,       /* index */
1928         ck_index,       /* rindex */
1929         ck_fun_locale,  /* sprintf */
1930         ck_fun,         /* formline */
1931         ck_fun,         /* ord */
1932         ck_fun,         /* chr */
1933         ck_fun,         /* crypt */
1934         ck_fun_locale,  /* ucfirst */
1935         ck_fun_locale,  /* lcfirst */
1936         ck_fun_locale,  /* uc */
1937         ck_fun_locale,  /* lc */
1938         ck_fun,         /* quotemeta */
1939         ck_rvconst,     /* rv2av */
1940         ck_null,        /* aelemfast */
1941         ck_null,        /* aelem */
1942         ck_null,        /* aslice */
1943         ck_fun,         /* each */
1944         ck_fun,         /* values */
1945         ck_fun,         /* keys */
1946         ck_delete,      /* delete */
1947         ck_exists,      /* exists */
1948         ck_rvconst,     /* rv2hv */
1949         ck_null,        /* helem */
1950         ck_null,        /* hslice */
1951         ck_fun,         /* unpack */
1952         ck_fun,         /* pack */
1953         ck_split,       /* split */
1954         ck_fun,         /* join */
1955         ck_null,        /* list */
1956         ck_null,        /* lslice */
1957         ck_fun,         /* anonlist */
1958         ck_fun,         /* anonhash */
1959         ck_fun,         /* splice */
1960         ck_fun,         /* push */
1961         ck_shift,       /* pop */
1962         ck_shift,       /* shift */
1963         ck_fun,         /* unshift */
1964         ck_sort,        /* sort */
1965         ck_fun,         /* reverse */
1966         ck_grep,        /* grepstart */
1967         ck_null,        /* grepwhile */
1968         ck_grep,        /* mapstart */
1969         ck_null,        /* mapwhile */
1970         ck_null,        /* range */
1971         ck_null,        /* flip */
1972         ck_null,        /* flop */
1973         ck_null,        /* and */
1974         ck_null,        /* or */
1975         ck_null,        /* xor */
1976         ck_null,        /* cond_expr */
1977         ck_null,        /* andassign */
1978         ck_null,        /* orassign */
1979         ck_null,        /* method */
1980         ck_subr,        /* entersub */
1981         ck_null,        /* leavesub */
1982         ck_fun,         /* caller */
1983         ck_fun,         /* warn */
1984         ck_fun,         /* die */
1985         ck_fun,         /* reset */
1986         ck_null,        /* lineseq */
1987         ck_null,        /* nextstate */
1988         ck_null,        /* dbstate */
1989         ck_null,        /* unstack */
1990         ck_null,        /* enter */
1991         ck_null,        /* leave */
1992         ck_null,        /* scope */
1993         ck_null,        /* enteriter */
1994         ck_null,        /* iter */
1995         ck_null,        /* enterloop */
1996         ck_null,        /* leaveloop */
1997         ck_null,        /* return */
1998         ck_null,        /* last */
1999         ck_null,        /* next */
2000         ck_null,        /* redo */
2001         ck_null,        /* dump */
2002         ck_null,        /* goto */
2003         ck_fun,         /* exit */
2004         ck_fun,         /* open */
2005         ck_fun,         /* close */
2006         ck_fun,         /* pipe_op */
2007         ck_fun,         /* fileno */
2008         ck_fun,         /* umask */
2009         ck_fun,         /* binmode */
2010         ck_fun,         /* tie */
2011         ck_fun,         /* untie */
2012         ck_fun,         /* tied */
2013         ck_fun,         /* dbmopen */
2014         ck_fun,         /* dbmclose */
2015         ck_select,      /* sselect */
2016         ck_select,      /* select */
2017         ck_eof,         /* getc */
2018         ck_fun,         /* read */
2019         ck_fun,         /* enterwrite */
2020         ck_null,        /* leavewrite */
2021         ck_listiob,     /* prtf */
2022         ck_listiob,     /* print */
2023         ck_fun,         /* sysopen */
2024         ck_fun,         /* sysseek */
2025         ck_fun,         /* sysread */
2026         ck_fun,         /* syswrite */
2027         ck_fun,         /* send */
2028         ck_fun,         /* recv */
2029         ck_eof,         /* eof */
2030         ck_fun,         /* tell */
2031         ck_fun,         /* seek */
2032         ck_trunc,       /* truncate */
2033         ck_fun,         /* fcntl */
2034         ck_fun,         /* ioctl */
2035         ck_fun,         /* flock */
2036         ck_fun,         /* socket */
2037         ck_fun,         /* sockpair */
2038         ck_fun,         /* bind */
2039         ck_fun,         /* connect */
2040         ck_fun,         /* listen */
2041         ck_fun,         /* accept */
2042         ck_fun,         /* shutdown */
2043         ck_fun,         /* gsockopt */
2044         ck_fun,         /* ssockopt */
2045         ck_fun,         /* getsockname */
2046         ck_fun,         /* getpeername */
2047         ck_ftst,        /* lstat */
2048         ck_ftst,        /* stat */
2049         ck_ftst,        /* ftrread */
2050         ck_ftst,        /* ftrwrite */
2051         ck_ftst,        /* ftrexec */
2052         ck_ftst,        /* fteread */
2053         ck_ftst,        /* ftewrite */
2054         ck_ftst,        /* fteexec */
2055         ck_ftst,        /* ftis */
2056         ck_ftst,        /* fteowned */
2057         ck_ftst,        /* ftrowned */
2058         ck_ftst,        /* ftzero */
2059         ck_ftst,        /* ftsize */
2060         ck_ftst,        /* ftmtime */
2061         ck_ftst,        /* ftatime */
2062         ck_ftst,        /* ftctime */
2063         ck_ftst,        /* ftsock */
2064         ck_ftst,        /* ftchr */
2065         ck_ftst,        /* ftblk */
2066         ck_ftst,        /* ftfile */
2067         ck_ftst,        /* ftdir */
2068         ck_ftst,        /* ftpipe */
2069         ck_ftst,        /* ftlink */
2070         ck_ftst,        /* ftsuid */
2071         ck_ftst,        /* ftsgid */
2072         ck_ftst,        /* ftsvtx */
2073         ck_ftst,        /* fttty */
2074         ck_ftst,        /* fttext */
2075         ck_ftst,        /* ftbinary */
2076         ck_fun,         /* chdir */
2077         ck_fun,         /* chown */
2078         ck_fun,         /* chroot */
2079         ck_fun,         /* unlink */
2080         ck_fun,         /* chmod */
2081         ck_fun,         /* utime */
2082         ck_fun,         /* rename */
2083         ck_fun,         /* link */
2084         ck_fun,         /* symlink */
2085         ck_fun,         /* readlink */
2086         ck_fun,         /* mkdir */
2087         ck_fun,         /* rmdir */
2088         ck_fun,         /* open_dir */
2089         ck_fun,         /* readdir */
2090         ck_fun,         /* telldir */
2091         ck_fun,         /* seekdir */
2092         ck_fun,         /* rewinddir */
2093         ck_fun,         /* closedir */
2094         ck_null,        /* fork */
2095         ck_null,        /* wait */
2096         ck_fun,         /* waitpid */
2097         ck_exec,        /* system */
2098         ck_exec,        /* exec */
2099         ck_fun,         /* kill */
2100         ck_null,        /* getppid */
2101         ck_fun,         /* getpgrp */
2102         ck_fun,         /* setpgrp */
2103         ck_fun,         /* getpriority */
2104         ck_fun,         /* setpriority */
2105         ck_null,        /* time */
2106         ck_null,        /* tms */
2107         ck_fun,         /* localtime */
2108         ck_fun,         /* gmtime */
2109         ck_fun,         /* alarm */
2110         ck_fun,         /* sleep */
2111         ck_fun,         /* shmget */
2112         ck_fun,         /* shmctl */
2113         ck_fun,         /* shmread */
2114         ck_fun,         /* shmwrite */
2115         ck_fun,         /* msgget */
2116         ck_fun,         /* msgctl */
2117         ck_fun,         /* msgsnd */
2118         ck_fun,         /* msgrcv */
2119         ck_fun,         /* semget */
2120         ck_fun,         /* semctl */
2121         ck_fun,         /* semop */
2122         ck_require,     /* require */
2123         ck_fun,         /* dofile */
2124         ck_eval,        /* entereval */
2125         ck_null,        /* leaveeval */
2126         ck_null,        /* entertry */
2127         ck_null,        /* leavetry */
2128         ck_fun,         /* ghbyname */
2129         ck_fun,         /* ghbyaddr */
2130         ck_null,        /* ghostent */
2131         ck_fun,         /* gnbyname */
2132         ck_fun,         /* gnbyaddr */
2133         ck_null,        /* gnetent */
2134         ck_fun,         /* gpbyname */
2135         ck_fun,         /* gpbynumber */
2136         ck_null,        /* gprotoent */
2137         ck_fun,         /* gsbyname */
2138         ck_fun,         /* gsbyport */
2139         ck_null,        /* gservent */
2140         ck_fun,         /* shostent */
2141         ck_fun,         /* snetent */
2142         ck_fun,         /* sprotoent */
2143         ck_fun,         /* sservent */
2144         ck_null,        /* ehostent */
2145         ck_null,        /* enetent */
2146         ck_null,        /* eprotoent */
2147         ck_null,        /* eservent */
2148         ck_fun,         /* gpwnam */
2149         ck_fun,         /* gpwuid */
2150         ck_null,        /* gpwent */
2151         ck_null,        /* spwent */
2152         ck_null,        /* epwent */
2153         ck_fun,         /* ggrnam */
2154         ck_fun,         /* ggrgid */
2155         ck_null,        /* ggrent */
2156         ck_null,        /* sgrent */
2157         ck_null,        /* egrent */
2158         ck_null,        /* getlogin */
2159         ck_fun,         /* syscall */
2160         ck_rfun,        /* lock */
2161         ck_null,        /* threadsv */
2162 };
2163 #endif  /* PERL_OBJECT */
2164 #endif
2165
2166 #ifndef DOINIT
2167 EXT U32 opargs[];
2168 #else
2169 EXT U32 opargs[] = {
2170         0x00000000,     /* null */
2171         0x00000000,     /* stub */
2172         0x00001c04,     /* scalar */
2173         0x00000004,     /* pushmark */
2174         0x00000014,     /* wantarray */
2175         0x00000704,     /* const */
2176         0x00000844,     /* gvsv */
2177         0x00000844,     /* gv */
2178         0x00011240,     /* gelem */
2179         0x00000044,     /* padsv */
2180         0x00000040,     /* padav */
2181         0x00000040,     /* padhv */
2182         0x00000040,     /* padany */
2183         0x00000600,     /* pushre */
2184         0x00000144,     /* rv2gv */
2185         0x00000144,     /* rv2sv */
2186         0x00000114,     /* av2arylen */
2187         0x00000140,     /* rv2cv */
2188         0x00000700,     /* anoncode */
2189         0x00001c04,     /* prototype */
2190         0x00002101,     /* refgen */
2191         0x00001106,     /* srefgen */
2192         0x00009c8c,     /* ref */
2193         0x00091504,     /* bless */
2194         0x00000c08,     /* backtick */
2195         0x00099508,     /* glob */
2196         0x00000c08,     /* readline */
2197         0x00000c08,     /* rcatline */
2198         0x00001104,     /* regcmaybe */
2199         0x00001104,     /* regcreset */
2200         0x00001304,     /* regcomp */
2201         0x00000640,     /* match */
2202         0x00001654,     /* subst */
2203         0x00000354,     /* substcont */
2204         0x00001914,     /* trans */
2205         0x00000004,     /* sassign */
2206         0x00022208,     /* aassign */
2207         0x00002c0d,     /* chop */
2208         0x00009c8c,     /* schop */
2209         0x00002c0d,     /* chomp */
2210         0x00009c8c,     /* schomp */
2211         0x00009c94,     /* defined */
2212         0x00009c04,     /* undef */
2213         0x00009c84,     /* study */
2214         0x00009c8c,     /* pos */
2215         0x00001164,     /* preinc */
2216         0x00001154,     /* i_preinc */
2217         0x00001164,     /* predec */
2218         0x00001154,     /* i_predec */
2219         0x0000116c,     /* postinc */
2220         0x0000115c,     /* i_postinc */
2221         0x0000116c,     /* postdec */
2222         0x0000115c,     /* i_postdec */
2223         0x0001120e,     /* pow */
2224         0x0001122e,     /* multiply */
2225         0x0001121e,     /* i_multiply */
2226         0x0001122e,     /* divide */
2227         0x0001121e,     /* i_divide */
2228         0x0001123e,     /* modulo */
2229         0x0001121e,     /* i_modulo */
2230         0x00012209,     /* repeat */
2231         0x0001122e,     /* add */
2232         0x0001121e,     /* i_add */
2233         0x0001122e,     /* subtract */
2234         0x0001121e,     /* i_subtract */
2235         0x0001120e,     /* concat */
2236         0x0000150e,     /* stringify */
2237         0x0001120e,     /* left_shift */
2238         0x0001120e,     /* right_shift */
2239         0x00011236,     /* lt */
2240         0x00011216,     /* i_lt */
2241         0x00011236,     /* gt */
2242         0x00011216,     /* i_gt */
2243         0x00011236,     /* le */
2244         0x00011216,     /* i_le */
2245         0x00011236,     /* ge */
2246         0x00011216,     /* i_ge */
2247         0x00011236,     /* eq */
2248         0x00011216,     /* i_eq */
2249         0x00011236,     /* ne */
2250         0x00011216,     /* i_ne */
2251         0x0001123e,     /* ncmp */
2252         0x0001121e,     /* i_ncmp */
2253         0x00011216,     /* slt */
2254         0x00011216,     /* sgt */
2255         0x00011216,     /* sle */
2256         0x00011216,     /* sge */
2257         0x00011216,     /* seq */
2258         0x00011216,     /* sne */
2259         0x0001121e,     /* scmp */
2260         0x0001120e,     /* bit_and */
2261         0x0001120e,     /* bit_xor */
2262         0x0001120e,     /* bit_or */
2263         0x0000112e,     /* negate */
2264         0x0000111e,     /* i_negate */
2265         0x00001116,     /* not */
2266         0x0000110e,     /* complement */
2267         0x0001150e,     /* atan2 */
2268         0x00009c8e,     /* sin */
2269         0x00009c8e,     /* cos */
2270         0x00009c0c,     /* rand */
2271         0x00009c04,     /* srand */
2272         0x00009c8e,     /* exp */
2273         0x00009c8e,     /* log */
2274         0x00009c8e,     /* sqrt */
2275         0x00009c8e,     /* int */
2276         0x00009c8e,     /* hex */
2277         0x00009c8e,     /* oct */
2278         0x00009c8e,     /* abs */
2279         0x00009c9c,     /* length */
2280         0x0991150c,     /* substr */
2281         0x0011151c,     /* vec */
2282         0x0091151c,     /* index */
2283         0x0091151c,     /* rindex */
2284         0x0002150f,     /* sprintf */
2285         0x00021505,     /* formline */
2286         0x00009c9e,     /* ord */
2287         0x00009c8e,     /* chr */
2288         0x0001150e,     /* crypt */
2289         0x00009c8e,     /* ucfirst */
2290         0x00009c8e,     /* lcfirst */
2291         0x00009c8e,     /* uc */
2292         0x00009c8e,     /* lc */
2293         0x00009c8e,     /* quotemeta */
2294         0x00000148,     /* rv2av */
2295         0x00013804,     /* aelemfast */
2296         0x00013204,     /* aelem */
2297         0x00023501,     /* aslice */
2298         0x00004c08,     /* each */
2299         0x00004c08,     /* values */
2300         0x00004c08,     /* keys */
2301         0x00001c00,     /* delete */
2302         0x00001c14,     /* exists */
2303         0x00000148,     /* rv2hv */
2304         0x00014204,     /* helem */
2305         0x00024501,     /* hslice */
2306         0x00011500,     /* unpack */
2307         0x0002150d,     /* pack */
2308         0x00111508,     /* split */
2309         0x0002150d,     /* join */
2310         0x00002501,     /* list */
2311         0x00224200,     /* lslice */
2312         0x00002505,     /* anonlist */
2313         0x00002505,     /* anonhash */
2314         0x02993501,     /* splice */
2315         0x0002351d,     /* push */
2316         0x00003c14,     /* pop */
2317         0x00003c04,     /* shift */
2318         0x0002351d,     /* unshift */
2319         0x0002d501,     /* sort */
2320         0x00002509,     /* reverse */
2321         0x00025541,     /* grepstart */
2322         0x00000348,     /* grepwhile */
2323         0x00025541,     /* mapstart */
2324         0x00000348,     /* mapwhile */
2325         0x00011400,     /* range */
2326         0x00011100,     /* flip */
2327         0x00000100,     /* flop */
2328         0x00000300,     /* and */
2329         0x00000300,     /* or */
2330         0x00011306,     /* xor */
2331         0x00000440,     /* cond_expr */
2332         0x00000304,     /* andassign */
2333         0x00000304,     /* orassign */
2334         0x00000140,     /* method */
2335         0x00002149,     /* entersub */
2336         0x00000100,     /* leavesub */
2337         0x00009c08,     /* caller */
2338         0x0000251d,     /* warn */
2339         0x0000255d,     /* die */
2340         0x00009c14,     /* reset */
2341         0x00000500,     /* lineseq */
2342         0x00000b04,     /* nextstate */
2343         0x00000b04,     /* dbstate */
2344         0x00000004,     /* unstack */
2345         0x00000000,     /* enter */
2346         0x00000500,     /* leave */
2347         0x00000500,     /* scope */
2348         0x00000a40,     /* enteriter */
2349         0x00000000,     /* iter */
2350         0x00000a40,     /* enterloop */
2351         0x00000200,     /* leaveloop */
2352         0x00002541,     /* return */
2353         0x00000e44,     /* last */
2354         0x00000e44,     /* next */
2355         0x00000e44,     /* redo */
2356         0x00000e44,     /* dump */
2357         0x00000e44,     /* goto */
2358         0x00009c44,     /* exit */
2359         0x0009651c,     /* open */
2360         0x0000ec14,     /* close */
2361         0x00066514,     /* pipe_op */
2362         0x00006c1c,     /* fileno */
2363         0x00009c1c,     /* umask */
2364         0x00006c04,     /* binmode */
2365         0x00217555,     /* tie */
2366         0x00007c14,     /* untie */
2367         0x00007c04,     /* tied */
2368         0x00114514,     /* dbmopen */
2369         0x00004c14,     /* dbmclose */
2370         0x01111508,     /* sselect */
2371         0x0000e50c,     /* select */
2372         0x0000ec0c,     /* getc */
2373         0x0917651d,     /* read */
2374         0x0000ec54,     /* enterwrite */
2375         0x00000100,     /* leavewrite */
2376         0x0002e515,     /* prtf */
2377         0x0002e515,     /* print */
2378         0x09116504,     /* sysopen */
2379         0x00116504,     /* sysseek */
2380         0x0917651d,     /* sysread */
2381         0x0911651d,     /* syswrite */
2382         0x0911651d,     /* send */
2383         0x0117651d,     /* recv */
2384         0x0000ec14,     /* eof */
2385         0x0000ec0c,     /* tell */
2386         0x00116504,     /* seek */
2387         0x00011514,     /* truncate */
2388         0x0011650c,     /* fcntl */
2389         0x0011650c,     /* ioctl */
2390         0x0001651c,     /* flock */
2391         0x01116514,     /* socket */
2392         0x11166514,     /* sockpair */
2393         0x00016514,     /* bind */
2394         0x00016514,     /* connect */
2395         0x00016514,     /* listen */
2396         0x0006651c,     /* accept */
2397         0x0001651c,     /* shutdown */
2398         0x00116514,     /* gsockopt */
2399         0x01116514,     /* ssockopt */
2400         0x00006c14,     /* getsockname */
2401         0x00006c14,     /* getpeername */
2402         0x00006d80,     /* lstat */
2403         0x00006d80,     /* stat */
2404         0x00006d94,     /* ftrread */
2405         0x00006d94,     /* ftrwrite */
2406         0x00006d94,     /* ftrexec */
2407         0x00006d94,     /* fteread */
2408         0x00006d94,     /* ftewrite */
2409         0x00006d94,     /* fteexec */
2410         0x00006d94,     /* ftis */
2411         0x00006d94,     /* fteowned */
2412         0x00006d94,     /* ftrowned */
2413         0x00006d94,     /* ftzero */
2414         0x00006d9c,     /* ftsize */
2415         0x00006d8c,     /* ftmtime */
2416         0x00006d8c,     /* ftatime */
2417         0x00006d8c,     /* ftctime */
2418         0x00006d94,     /* ftsock */
2419         0x00006d94,     /* ftchr */
2420         0x00006d94,     /* ftblk */
2421         0x00006d94,     /* ftfile */
2422         0x00006d94,     /* ftdir */
2423         0x00006d94,     /* ftpipe */
2424         0x00006d94,     /* ftlink */
2425         0x00006d94,     /* ftsuid */
2426         0x00006d94,     /* ftsgid */
2427         0x00006d94,     /* ftsvtx */
2428         0x00006d14,     /* fttty */
2429         0x00006d94,     /* fttext */
2430         0x00006d94,     /* ftbinary */
2431         0x00009c1c,     /* chdir */
2432         0x0000251d,     /* chown */
2433         0x00009c9c,     /* chroot */
2434         0x0000259d,     /* unlink */
2435         0x0000251d,     /* chmod */
2436         0x0000251d,     /* utime */
2437         0x0001151c,     /* rename */
2438         0x0001151c,     /* link */
2439         0x0001151c,     /* symlink */
2440         0x00009c8c,     /* readlink */
2441         0x0001151c,     /* mkdir */
2442         0x00009c9c,     /* rmdir */
2443         0x00016514,     /* open_dir */
2444         0x00006c00,     /* readdir */
2445         0x00006c0c,     /* telldir */
2446         0x00016504,     /* seekdir */
2447         0x00006c04,     /* rewinddir */
2448         0x00006c14,     /* closedir */
2449         0x0000001c,     /* fork */
2450         0x0000001c,     /* wait */
2451         0x0001151c,     /* waitpid */
2452         0x0002951d,     /* system */
2453         0x0002955d,     /* exec */
2454         0x0000255d,     /* kill */
2455         0x0000001c,     /* getppid */
2456         0x00009c1c,     /* getpgrp */
2457         0x0009951c,     /* setpgrp */
2458         0x0001151c,     /* getpriority */
2459         0x0011151c,     /* setpriority */
2460         0x0000001c,     /* time */
2461         0x00000000,     /* tms */
2462         0x00009c08,     /* localtime */
2463         0x00009c08,     /* gmtime */
2464         0x00009c9c,     /* alarm */
2465         0x00009c1c,     /* sleep */
2466         0x0011151d,     /* shmget */
2467         0x0011151d,     /* shmctl */
2468         0x0111151d,     /* shmread */
2469         0x0111151d,     /* shmwrite */
2470         0x0001151d,     /* msgget */
2471         0x0011151d,     /* msgctl */
2472         0x0011151d,     /* msgsnd */
2473         0x1111151d,     /* msgrcv */
2474         0x0011151d,     /* semget */
2475         0x0111151d,     /* semctl */
2476         0x0001151d,     /* semop */
2477         0x00009cc0,     /* require */
2478         0x00001140,     /* dofile */
2479         0x00001c40,     /* entereval */
2480         0x00001100,     /* leaveeval */
2481         0x00000300,     /* entertry */
2482         0x00000500,     /* leavetry */
2483         0x00001c00,     /* ghbyname */
2484         0x00011500,     /* ghbyaddr */
2485         0x00000000,     /* ghostent */
2486         0x00001c00,     /* gnbyname */
2487         0x00011500,     /* gnbyaddr */
2488         0x00000000,     /* gnetent */
2489         0x00001c00,     /* gpbyname */
2490         0x00001500,     /* gpbynumber */
2491         0x00000000,     /* gprotoent */
2492         0x00011500,     /* gsbyname */
2493         0x00011500,     /* gsbyport */
2494         0x00000000,     /* gservent */
2495         0x00001c14,     /* shostent */
2496         0x00001c14,     /* snetent */
2497         0x00001c14,     /* sprotoent */
2498         0x00001c14,     /* sservent */
2499         0x00000014,     /* ehostent */
2500         0x00000014,     /* enetent */
2501         0x00000014,     /* eprotoent */
2502         0x00000014,     /* eservent */
2503         0x00001c00,     /* gpwnam */
2504         0x00001c00,     /* gpwuid */
2505         0x00000000,     /* gpwent */
2506         0x00000014,     /* spwent */
2507         0x00000014,     /* epwent */
2508         0x00001c00,     /* ggrnam */
2509         0x00001c00,     /* ggrgid */
2510         0x00000000,     /* ggrent */
2511         0x00000014,     /* sgrent */
2512         0x00000014,     /* egrent */
2513         0x0000000c,     /* getlogin */
2514         0x0002151d,     /* syscall */
2515         0x00001c04,     /* lock */
2516         0x00000044,     /* threadsv */
2517 };
2518 #endif