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