3 # Get function prototypes
4 require 'regen_lib.pl';
7 $opcode_new = 'opcode.h-new';
8 $opname_new = 'opnames.h-new';
9 open(OC, ">$opcode_new") || die "Can't create $opcode_new: $!\n";
11 open(ON, ">$opname_new") || die "Can't create $opname_new: $!\n";
21 ($key, $desc, $check, $flags, $args) = split(/\t+/, $_, 5);
23 warn qq[Description "$desc" duplicates $seen{$desc}\n] if $seen{$desc};
24 die qq[Opcode "$key" duplicates $seen{$key}\n] if $seen{$key};
25 $seen{$desc} = qq[description of opcode "$key"];
26 $seen{$key} = qq[opcode "$key"];
30 $check{$key} = $check;
32 $flags{$key} = $flags;
40 # Format is "this function" => "does these op names"
42 Perl_do_kv => [qw( keys values )],
43 Perl_unimplemented_op => [qw(padany threadsv mapstart)],
44 # All the ops with a body of { return NORMAL; }
45 Perl_pp_null => [qw(scalar regcmaybe lineseq scope)],
47 Perl_pp_goto => ['dump'],
48 Perl_pp_require => ['dofile'],
49 Perl_pp_untie => ['dbmclose'],
50 Perl_pp_sysread => [qw(read recv)],
51 Perl_pp_sysseek => ['seek'],
52 Perl_pp_ioctl => ['fcntl'],
53 Perl_pp_ssockopt => ['gsockopt'],
54 Perl_pp_getpeername => ['getsockname'],
55 Perl_pp_stat => ['lstat'],
56 Perl_pp_ftrowned => [qw(fteowned ftzero ftsock ftchr ftblk
57 ftfile ftdir ftpipe ftsuid ftsgid
59 Perl_pp_fttext => ['ftbinary'],
60 Perl_pp_gmtime => ['localtime'],
61 Perl_pp_semget => [qw(shmget msgget)],
62 Perl_pp_semctl => [qw(shmctl msgctl)],
63 Perl_pp_ghostent => [qw(ghbyname ghbyaddr)],
64 Perl_pp_gnetent => [qw(gnbyname gnbyaddr)],
65 Perl_pp_gprotoent => [qw(gpbyname gpbynumber)],
66 Perl_pp_gservent => [qw(gsbyname gsbyport)],
67 Perl_pp_gpwent => [qw(gpwnam gpwuid)],
68 Perl_pp_ggrent => [qw(ggrnam ggrgid)],
69 Perl_pp_ftis => [qw(ftsize ftmtime ftatime ftctime)],
70 Perl_pp_chown => [qw(unlink chmod utime kill)],
71 Perl_pp_link => ['symlink'],
72 Perl_pp_ftrread => [qw(ftrwrite ftrexec fteread ftewrite
74 Perl_pp_shmwrite => [qw(shmread msgsnd msgrcv semop)],
75 Perl_pp_send => ['syswrite'],
76 Perl_pp_defined => [qw(dor dorassign)],
77 Perl_pp_and => ['andassign'],
78 Perl_pp_or => ['orassign'],
79 Perl_pp_ucfirst => ['lcfirst'],
80 Perl_pp_sle => [qw(slt sgt sge)],
81 Perl_pp_print => ['say'],
82 Perl_pp_index => ['rindex'],
83 Perl_pp_oct => ['hex'],
84 Perl_pp_shift => ['pop'],
85 Perl_pp_sin => [qw(cos exp log sqrt)],
86 Perl_pp_bit_or => ['bit_xor'],
89 while (my ($func, $names) = splice @raw_alias, 0, 2) {
90 $alias{$_} = $func for @$names;
97 /* -*- buffer-read-only: t -*-
101 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
102 * 2001, 2002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others
104 * You may distribute under the terms of either the GNU General Public
105 * License or the Artistic License, as specified in the README file.
107 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
108 * This file is built by opcode.pl from its data. Any changes made here
112 #ifndef PERL_GLOBAL_STRUCT_INIT
114 #define Perl_pp_i_preinc Perl_pp_preinc
115 #define Perl_pp_i_predec Perl_pp_predec
116 #define Perl_pp_i_postinc Perl_pp_postinc
117 #define Perl_pp_i_postdec Perl_pp_postdec
119 PERL_PPDEF(Perl_unimplemented_op)
124 /* -*- buffer-read-only: t -*-
128 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
129 * 2007 by Larry Wall and others
131 * You may distribute under the terms of either the GNU General Public
132 * License or the Artistic License, as specified in the README file.
135 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
136 * This file is built by opcode.pl from its data. Any changes made here
140 typedef enum opcode {
144 print ON "\t", &tab(3,"OP_\U$_,"), "/* ", $i++, " */\n";
146 print ON "\t", &tab(3,"OP_max"), "\n";
147 print ON "} opcode;\n";
148 print ON "\n#define MAXO ", scalar @ops, "\n";
149 print ON "#define OP_phoney_INPUT_ONLY -1\n";
150 print ON "#define OP_phoney_OUTPUT_ONLY -2\n\n";
152 # Emit op names and descriptions.
157 #define OP_NAME(o) ((o)->op_type == OP_CUSTOM ? custom_op_name(o) : \\
158 PL_op_name[(o)->op_type])
159 #define OP_DESC(o) ((o)->op_type == OP_CUSTOM ? custom_op_desc(o) : \\
160 PL_op_desc[(o)->op_type])
163 EXTCONST char* const PL_op_name[];
165 EXTCONST char* const PL_op_name[] = {
180 EXTCONST char* const PL_op_desc[];
182 EXTCONST char* const PL_op_desc[] = {
186 my($safe_desc) = $desc{$_};
188 # Have to escape double quotes and escape characters.
189 $safe_desc =~ s/(^|[^\\])([\\"])/$1\\$2/g;
191 print qq(\t"$safe_desc",\n);
200 #endif /* !PERL_GLOBAL_STRUCT_INIT */
203 # Emit function declarations.
205 #for (sort keys %ckname) {
206 # print "OP *\t", &tab(3,$_),"(pTHX_ OP* o);\n";
212 # print "OP *\t", &tab(3, "pp_$_"), "(pTHX);\n";
215 # Emit ppcode switch array.
221 #ifdef PERL_GLOBAL_STRUCT_INIT
222 # define PERL_PPADDR_INITED
223 static const Perl_ppaddr_t Gppaddr[]
225 # ifndef PERL_GLOBAL_STRUCT
226 # define PERL_PPADDR_INITED
227 EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
229 #endif /* PERL_GLOBAL_STRUCT */
230 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
231 # define PERL_PPADDR_INITED
236 $_ eq "custom" and next;
237 if (my $name = $alias{$_}) {
238 print "\tMEMBER_TO_FPTR($name),\t/* Perl_pp_$_ */\n";
241 print "\tMEMBER_TO_FPTR(Perl_pp_$_),\n";
248 #ifdef PERL_PPADDR_INITED
254 # Emit check routines.
257 #ifdef PERL_GLOBAL_STRUCT_INIT
258 # define PERL_CHECK_INITED
259 static const Perl_check_t Gcheck[]
261 # ifndef PERL_GLOBAL_STRUCT
262 # define PERL_CHECK_INITED
263 EXT Perl_check_t PL_check[] /* or perlvars.h */
266 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
267 # define PERL_CHECK_INITED
272 print "\t", &tab(3, "MEMBER_TO_FPTR(Perl_$check{$_}),"), "\t/* $_ */\n";
278 #ifdef PERL_CHECK_INITED
280 #endif /* #ifdef PERL_CHECK_INITED */
284 # Emit allowed argument types.
287 #ifndef PERL_GLOBAL_STRUCT_INIT
290 EXTCONST U32 PL_opargs[];
292 EXTCONST U32 PL_opargs[] = {
302 R, 7, # scalar reference
312 '$', 6, # svop_or_padop
314 '"', 8, # pvop_or_svop
317 '%', 11, # baseop_or_unop
318 '-', 12, # filestatop
328 $argsum |= 1 if $flags =~ /m/; # needs stack mark
329 $argsum |= 2 if $flags =~ /f/; # fold constants
330 $argsum |= 4 if $flags =~ /s/; # always produces scalar
331 $argsum |= 8 if $flags =~ /t/; # needs target scalar
332 $argsum |= (8|256) if $flags =~ /T/; # ... which may be lexical
333 $argsum |= 16 if $flags =~ /i/; # always produces integer
334 $argsum |= 32 if $flags =~ /I/; # has corresponding int op
335 $argsum |= 64 if $flags =~ /d/; # danger, unknown side effects
336 $argsum |= 128 if $flags =~ /u/; # defaults to $_
337 $flags =~ /([\W\d_])/ or die qq[Opcode "$_" has no class indicator];
338 $argsum |= $opclass{$1} << 9;
339 $mul = 0x2000; # 2 ^ OASHIFT
340 for $arg (split(' ',$args{$_})) {
342 $OP_IS_SOCKET{$_} = 1 if $arg =~ s/s//;
343 $OP_IS_FILETEST{$_} = 1 if $arg =~ s/-//;
345 $argnum = ($arg =~ s/\?//) ? 8 : 0;
346 die "op = $_, arg = $arg\n" unless length($arg) == 1;
347 $argnum += $argnum{$arg};
348 warn "# Conflicting bit 32 for '$_'.\n"
349 if $argnum & 8 and $mul == 0x10000000;
350 $argsum += $argnum * $mul;
353 $argsum = sprintf("0x%08x", $argsum);
354 print "\t", &tab(3, "$argsum,"), "/* $_ */\n";
363 #endif /* !PERL_GLOBAL_STRUCT_INIT */
366 if (keys %OP_IS_SOCKET) {
367 print ON "\n#define OP_IS_SOCKET(op) \\\n\t(";
368 print ON join(" || \\\n\t ",
369 map { "(op) == OP_" . uc() } sort keys %OP_IS_SOCKET);
373 if (keys %OP_IS_FILETEST) {
374 print ON "\n#define OP_IS_FILETEST(op) \\\n\t(";
375 print ON join(" || \\\n\t ",
376 map { "(op) == OP_" . uc() } sort keys %OP_IS_FILETEST);
380 print OC "/* ex: set ro: */\n";
381 print ON "/* ex: set ro: */\n";
383 close OC or die "Error closing opcode.h: $!";
384 close ON or die "Error closing opnames.h: $!";
386 foreach ('opcode.h', 'opnames.h') {
387 safer_rename_silent $_, "$_-old";
389 safer_rename $opcode_new, 'opcode.h';
390 safer_rename $opname_new, 'opnames.h';
392 $pp_proto_new = 'pp_proto.h-new';
393 $pp_sym_new = 'pp.sym-new';
395 open PP, ">$pp_proto_new" or die "Error creating $pp_proto_new: $!";
397 open PPSYM, ">$pp_sym_new" or die "Error creating $pp_sym_new: $!";
401 /* -*- buffer-read-only: t -*-
402 !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
403 This file is built by opcode.pl from its data. Any changes made here
410 # -*- buffer-read-only: t -*-
412 # !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
413 # This file is built by opcode.pl from its data. Any changes made here
420 for (sort keys %ckname) {
421 print PP "PERL_CKDEF(Perl_$_)\n";
422 print PPSYM "Perl_$_\n";
423 #OP *\t", &tab(3,$_),"(OP* o);\n";
429 next if /^i_(pre|post)(inc|dec)$/;
431 print PP "PERL_PPDEF(Perl_pp_$_)\n";
432 print PPSYM "Perl_pp_$_\n";
434 print PP "\n/* ex: set ro: */\n";
435 print PPSYM "\n# ex: set ro:\n";
437 close PP or die "Error closing pp_proto.h: $!";
438 close PPSYM or die "Error closing pp.sym: $!";
440 foreach ('pp_proto.h', 'pp.sym') {
441 safer_rename_silent $_, "$_-old";
443 safer_rename $pp_proto_new, 'pp_proto.h';
444 safer_rename $pp_sym_new, 'pp.sym';
447 foreach ('opcode.h', 'opnames.h', 'pp_proto.h', 'pp.sym') {
448 1 while unlink "$_-old";
452 ###########################################################################
455 $t .= "\t" x ($l - (length($t) + 1) / 8);
458 ###########################################################################
460 # Some comments about 'T' opcode classifier:
462 # Safe to set if the ppcode uses:
463 # tryAMAGICbin, tryAMAGICun, SETn, SETi, SETu, PUSHn, PUSHTARG, SETTARG,
464 # SETs(TARG), XPUSHn, XPUSHu,
466 # Unsafe to set if the ppcode uses dTARG or [X]RETPUSH[YES|NO|UNDEF]
468 # lt and friends do SETs (including ncmp, but not scmp)
470 # Additional mode of failure: the opcode can modify TARG before it "used"
471 # all the arguments (or may call an external function which does the same).
472 # If the target coincides with one of the arguments ==> kaboom.
474 # pp.c pos substr each not OK (RETPUSHUNDEF)
475 # substr vec also not OK due to LV to target (are they???)
476 # ref not OK (RETPUSHNO)
477 # trans not OK (dTARG; TARG = sv_newmortal();)
478 # ucfirst etc not OK: TMP arg processed inplace
479 # quotemeta not OK (unsafe when TARG == arg)
480 # each repeat not OK too due to list context
481 # pack split - unknown whether they are safe
482 # sprintf: is calling do_sprintf(TARG,...) which can act on TARG
483 # before other args are processed.
485 # Suspicious wrt "additional mode of failure" (and only it):
486 # schop, chop, postinc/dec, bit_and etc, negate, complement.
488 # Also suspicious: 4-arg substr, sprintf, uc/lc (POK_only), reverse, pack.
490 # substr/vec: doing TAINT_off()???
493 # readline - unknown whether it is safe
494 # match subst not OK (dTARG)
495 # grepwhile not OK (not always setting)
496 # join not OK (unsafe when TARG == arg)
498 # Suspicious wrt "additional mode of failure": concat (dealt with
499 # in ck_sassign()), join (same).
502 # mapwhile flip caller not OK (not always setting)
505 # backtick glob warn die not OK (not always setting)
506 # warn not OK (RETPUSHYES)
507 # open fileno getc sysread syswrite ioctl accept shutdown
508 # ftsize(etc) readlink telldir fork alarm getlogin not OK (RETPUSHUNDEF)
509 # umask select not OK (XPUSHs(&PL_sv_undef);)
510 # fileno getc sysread syswrite tell not OK (meth("FILENO" "GETC"))
511 # sselect shm* sem* msg* syscall - unknown whether they are safe
512 # gmtime not OK (list context)
514 # Suspicious wrt "additional mode of failure": warn, die, select.
518 # New ops always go at the end, just before 'custom'
520 # A recapitulation of the format of this file:
521 # The file consists of five columns: the name of the op, an English
522 # description, the name of the "check" routine used to optimize this
523 # operation, some flags, and a description of the operands.
525 # The flags consist of options followed by a mandatory op class signifier
528 # baseop - 0 unop - 1 binop - 2
529 # logop - | listop - @ pmop - /
530 # padop/svop - $ padop - # (unused) loop - {
531 # baseop/unop - % loopexop - } filestatop - -
532 # pvop/svop - " cop - ;
535 # needs stack mark - m
536 # needs constant folding - f
537 # produces a scalar - s
538 # produces an integer - i
540 # target can be in a pad - T
541 # has a corresponding integer version - I
542 # has side effects - d
543 # uses $_ if no argument given - u
545 # Values for the operands are:
546 # scalar - S list - L array - A
547 # hash - H sub (CV) - C file - F
548 # socket - Fs filetest - F- reference - R
549 # "?" denotes an optional operand.
553 null null operation ck_null 0
555 scalar scalar ck_fun s% S
559 pushmark pushmark ck_null s0
560 wantarray wantarray ck_null is0
562 const constant item ck_svconst s$
564 gvsv scalar variable ck_null ds$
565 gv glob value ck_null ds$
566 gelem glob elem ck_null d2 S S
567 padsv private variable ck_null ds0
568 padav private array ck_null d0
569 padhv private hash ck_null d0
570 padany private value ck_null d0
572 pushre push regexp ck_null d/
574 # References and stuff.
576 rv2gv ref-to-glob cast ck_rvconst ds1
577 rv2sv scalar dereference ck_rvconst ds1
578 av2arylen array length ck_null is1
579 rv2cv subroutine dereference ck_rvconst d1
580 anoncode anonymous subroutine ck_anoncode $
581 prototype subroutine prototype ck_null s% S
582 refgen reference constructor ck_spair m1 L
583 srefgen single ref constructor ck_null fs1 S
584 ref reference-type operator ck_fun stu% S?
585 bless bless ck_fun s@ S S?
589 backtick quoted execution (``, qx) ck_open t% S
590 # glob defaults its first arg to $_
591 glob glob ck_glob t@ S?
592 readline <HANDLE> ck_null t% F?
593 rcatline append I/O operator ck_null t$
595 # Bindable operators.
597 regcmaybe regexp internal guard ck_fun s1 S
598 regcreset regexp internal reset ck_fun s1 S
599 regcomp regexp compilation ck_null s| S
600 match pattern match (m//) ck_match d/
601 qr pattern quote (qr//) ck_match s/
602 subst substitution (s///) ck_match dis/ S
603 substcont substitution iterator ck_null dis|
604 trans transliteration (tr///) ck_match is" S
607 # sassign is special-cased for op class
609 sassign scalar assignment ck_sassign s0
610 aassign list assignment ck_null t2 L L
612 chop chop ck_spair mts% L
613 schop scalar chop ck_null stu% S?
614 chomp chomp ck_spair mTs% L
615 schomp scalar chomp ck_null sTu% S?
616 defined defined operator ck_defined isu% S?
617 undef undef operator ck_lfun s% S?
618 study study ck_fun su% S?
619 pos match position ck_lfun stu% S?
621 preinc preincrement (++) ck_lfun dIs1 S
622 i_preinc integer preincrement (++) ck_lfun dis1 S
623 predec predecrement (--) ck_lfun dIs1 S
624 i_predec integer predecrement (--) ck_lfun dis1 S
625 postinc postincrement (++) ck_lfun dIst1 S
626 i_postinc integer postincrement (++) ck_lfun disT1 S
627 postdec postdecrement (--) ck_lfun dIst1 S
628 i_postdec integer postdecrement (--) ck_lfun disT1 S
630 # Ordinary operators.
632 pow exponentiation (**) ck_null fsT2 S S
634 multiply multiplication (*) ck_null IfsT2 S S
635 i_multiply integer multiplication (*) ck_null ifsT2 S S
636 divide division (/) ck_null IfsT2 S S
637 i_divide integer division (/) ck_null ifsT2 S S
638 modulo modulus (%) ck_null IifsT2 S S
639 i_modulo integer modulus (%) ck_null ifsT2 S S
640 repeat repeat (x) ck_repeat mt2 L S
642 add addition (+) ck_null IfsT2 S S
643 i_add integer addition (+) ck_null ifsT2 S S
644 subtract subtraction (-) ck_null IfsT2 S S
645 i_subtract integer subtraction (-) ck_null ifsT2 S S
646 concat concatenation (.) or string ck_concat fsT2 S S
647 stringify string ck_fun fsT@ S
649 left_shift left bitshift (<<) ck_bitop fsT2 S S
650 right_shift right bitshift (>>) ck_bitop fsT2 S S
652 lt numeric lt (<) ck_null Iifs2 S S
653 i_lt integer lt (<) ck_null ifs2 S S
654 gt numeric gt (>) ck_null Iifs2 S S
655 i_gt integer gt (>) ck_null ifs2 S S
656 le numeric le (<=) ck_null Iifs2 S S
657 i_le integer le (<=) ck_null ifs2 S S
658 ge numeric ge (>=) ck_null Iifs2 S S
659 i_ge integer ge (>=) ck_null ifs2 S S
660 eq numeric eq (==) ck_null Iifs2 S S
661 i_eq integer eq (==) ck_null ifs2 S S
662 ne numeric ne (!=) ck_null Iifs2 S S
663 i_ne integer ne (!=) ck_null ifs2 S S
664 ncmp numeric comparison (<=>) ck_null Iifst2 S S
665 i_ncmp integer comparison (<=>) ck_null ifst2 S S
667 slt string lt ck_null ifs2 S S
668 sgt string gt ck_null ifs2 S S
669 sle string le ck_null ifs2 S S
670 sge string ge ck_null ifs2 S S
671 seq string eq ck_null ifs2 S S
672 sne string ne ck_null ifs2 S S
673 scmp string comparison (cmp) ck_null ifst2 S S
675 bit_and bitwise and (&) ck_bitop fst2 S S
676 bit_xor bitwise xor (^) ck_bitop fst2 S S
677 bit_or bitwise or (|) ck_bitop fst2 S S
679 negate negation (-) ck_null Ifst1 S
680 i_negate integer negation (-) ck_null ifsT1 S
681 not not ck_null ifs1 S
682 complement 1's complement (~) ck_bitop fst1 S
684 # High falutin' math.
686 atan2 atan2 ck_fun fsT@ S S
687 sin sin ck_fun fsTu% S?
688 cos cos ck_fun fsTu% S?
689 rand rand ck_fun sT% S?
690 srand srand ck_fun s% S?
691 exp exp ck_fun fsTu% S?
692 log log ck_fun fsTu% S?
693 sqrt sqrt ck_fun fsTu% S?
697 int int ck_fun fsTu% S?
698 hex hex ck_fun fsTu% S?
699 oct oct ck_fun fsTu% S?
700 abs abs ck_fun fsTu% S?
704 length length ck_lengthconst isTu% S?
705 substr substr ck_substr st@ S S S? S?
706 vec vec ck_fun ist@ S S S
708 index index ck_index isT@ S S S?
709 rindex rindex ck_index isT@ S S S?
711 sprintf sprintf ck_fun mst@ S L
712 formline formline ck_fun ms@ S L
713 ord ord ck_fun ifsTu% S?
714 chr chr ck_fun fsTu% S?
715 crypt crypt ck_fun fsT@ S S
716 ucfirst ucfirst ck_fun fstu% S?
717 lcfirst lcfirst ck_fun fstu% S?
718 uc uc ck_fun fstu% S?
719 lc lc ck_fun fstu% S?
720 quotemeta quotemeta ck_fun fstu% S?
724 rv2av array dereference ck_rvconst dt1
725 aelemfast constant array element ck_null s$ A S
726 aelem array element ck_null s2 A S
727 aslice array slice ck_null m@ A L
732 values values ck_fun t% H
733 keys keys ck_fun t% H
734 delete delete ck_delete % S
735 exists exists ck_exists is% S
736 rv2hv hash dereference ck_rvconst dt1
737 helem hash element ck_null s2@ H S
738 hslice hash slice ck_null m@ H L
740 # Explosives and implosives.
742 unpack unpack ck_unpack @ S S?
743 pack pack ck_fun mst@ S L
744 split split ck_split t@ S S S
745 join join or string ck_join mst@ S L
749 list list ck_null m@ L
750 lslice list slice ck_null 2 H L L
751 anonlist anonymous list ([]) ck_fun ms@ L
752 anonhash anonymous hash ({}) ck_fun ms@ L
754 splice splice ck_fun m@ A S? S? L
755 push push ck_fun imsT@ A L
756 pop pop ck_shift s% A?
757 shift shift ck_shift s% A?
758 unshift unshift ck_fun imsT@ A L
759 sort sort ck_sort dm@ C? L
760 reverse reverse ck_fun mt@ L
762 grepstart grep ck_grep dm@ C L
763 grepwhile grep iterator ck_null dt|
765 mapstart map ck_grep dm@ C L
766 mapwhile map iterator ck_null dt|
770 range flipflop ck_null | S S
771 flip range (or flip) ck_null 1 S S
772 flop range (or flop) ck_null 1
776 and logical and (&&) ck_null |
777 or logical or (||) ck_null |
778 xor logical xor ck_null fs2 S S
779 cond_expr conditional expression ck_null d|
780 andassign logical and assignment (&&=) ck_null s|
781 orassign logical or assignment (||=) ck_null s|
783 method method lookup ck_method d1
784 entersub subroutine entry ck_subr dmt1 L
785 leavesub subroutine exit ck_null 1
786 leavesublv lvalue subroutine return ck_null 1
787 caller caller ck_fun t% S?
788 warn warn ck_fun imst@ L
789 die die ck_die dimst@ L
790 reset symbol reset ck_fun is% S?
792 lineseq line sequence ck_null @
793 nextstate next statement ck_null s;
794 dbstate debug next statement ck_null s;
795 unstack iteration finalizer ck_null s0
796 enter block entry ck_null 0
797 leave block exit ck_null @
798 scope block ck_null @
799 enteriter foreach loop entry ck_null d{
800 iter foreach loop iterator ck_null 0
801 enterloop loop entry ck_null d{
802 leaveloop loop exit ck_null 2
803 return return ck_return dm@ L
804 last last ck_null ds}
805 next next ck_null ds}
806 redo redo ck_null ds}
807 dump dump ck_null ds}
808 goto goto ck_null ds}
809 exit exit ck_exit ds% S?
812 #nswitch numeric switch ck_null d
813 #cswitch character switch ck_null d
817 open open ck_open ismt@ F S? L
818 close close ck_fun is% F?
819 pipe_op pipe ck_fun is@ F F
821 fileno fileno ck_fun ist% F
822 umask umask ck_fun ist% S?
823 binmode binmode ck_fun s@ F S?
825 tie tie ck_fun idms@ R S L
826 untie untie ck_fun is% R
827 tied tied ck_fun s% R
828 dbmopen dbmopen ck_fun is@ H S S
829 dbmclose dbmclose ck_fun is% H
831 sselect select system call ck_select t@ S S S S
832 select select ck_select st@ F?
834 getc getc ck_eof st% F?
835 read read ck_fun imst@ F R S S?
836 enterwrite write ck_fun dis% F?
837 leavewrite write exit ck_null 1
839 prtf printf ck_listiob ims@ F? L
840 print print ck_listiob ims@ F? L
842 sysopen sysopen ck_fun s@ F S S S?
843 sysseek sysseek ck_fun s@ F S S
844 sysread sysread ck_fun imst@ F R S S?
845 syswrite syswrite ck_fun imst@ F S S? S?
847 send send ck_fun imst@ Fs S S S?
848 recv recv ck_fun imst@ Fs R S S
850 eof eof ck_eof is% F?
851 tell tell ck_fun st% F?
852 seek seek ck_fun s@ F S S
853 # truncate really behaves as if it had both "S S" and "F S"
854 truncate truncate ck_trunc is@ S S
856 fcntl fcntl ck_fun st@ F S S
857 ioctl ioctl ck_fun st@ F S S
858 flock flock ck_fun isT@ F S
862 socket socket ck_fun is@ Fs S S S
863 sockpair socketpair ck_fun is@ Fs Fs S S S
865 bind bind ck_fun is@ Fs S
866 connect connect ck_fun is@ Fs S
867 listen listen ck_fun is@ Fs S
868 accept accept ck_fun ist@ Fs Fs
869 shutdown shutdown ck_fun ist@ Fs S
871 gsockopt getsockopt ck_fun is@ Fs S S
872 ssockopt setsockopt ck_fun is@ Fs S S S
874 getsockname getsockname ck_fun is% Fs
875 getpeername getpeername ck_fun is% Fs
879 lstat lstat ck_ftst u- F
880 stat stat ck_ftst u- F
881 ftrread -R ck_ftst isu- F-
882 ftrwrite -W ck_ftst isu- F-
883 ftrexec -X ck_ftst isu- F-
884 fteread -r ck_ftst isu- F-
885 ftewrite -w ck_ftst isu- F-
886 fteexec -x ck_ftst isu- F-
887 ftis -e ck_ftst isu- F-
888 ftsize -s ck_ftst istu- F-
889 ftmtime -M ck_ftst stu- F-
890 ftatime -A ck_ftst stu- F-
891 ftctime -C ck_ftst stu- F-
892 ftrowned -O ck_ftst isu- F-
893 fteowned -o ck_ftst isu- F-
894 ftzero -z ck_ftst isu- F-
895 ftsock -S ck_ftst isu- F-
896 ftchr -c ck_ftst isu- F-
897 ftblk -b ck_ftst isu- F-
898 ftfile -f ck_ftst isu- F-
899 ftdir -d ck_ftst isu- F-
900 ftpipe -p ck_ftst isu- F-
901 ftsuid -u ck_ftst isu- F-
902 ftsgid -g ck_ftst isu- F-
903 ftsvtx -k ck_ftst isu- F-
904 ftlink -l ck_ftst isu- F-
905 fttty -t ck_ftst is- F-
906 fttext -T ck_ftst isu- F-
907 ftbinary -B ck_ftst isu- F-
911 # chdir really behaves as if it had both "S?" and "F?"
912 chdir chdir ck_chdir isT% S?
913 chown chown ck_fun imsT@ L
914 chroot chroot ck_fun isTu% S?
915 unlink unlink ck_fun imsTu@ L
916 chmod chmod ck_fun imsT@ L
917 utime utime ck_fun imsT@ L
918 rename rename ck_fun isT@ S S
919 link link ck_fun isT@ S S
920 symlink symlink ck_fun isT@ S S
921 readlink readlink ck_fun stu% S?
922 mkdir mkdir ck_fun isTu@ S? S?
923 rmdir rmdir ck_fun isTu% S?
927 open_dir opendir ck_fun is@ F S
928 readdir readdir ck_fun % F
929 telldir telldir ck_fun st% F
930 seekdir seekdir ck_fun s@ F S
931 rewinddir rewinddir ck_fun s% F
932 closedir closedir ck_fun is% F
936 fork fork ck_null ist0
937 wait wait ck_null isT0
938 waitpid waitpid ck_fun isT@ S S
939 system system ck_exec imsT@ S? L
940 exec exec ck_exec dimsT@ S? L
941 kill kill ck_fun dimsT@ L
942 getppid getppid ck_null isT0
943 getpgrp getpgrp ck_fun isT% S?
944 setpgrp setpgrp ck_fun isT@ S? S?
945 getpriority getpriority ck_fun isT@ S S
946 setpriority setpriority ck_fun isT@ S S S
950 # NOTE: MacOS patches the 'i' of time() away later when the interpreter
951 # is created because in MacOS time() is already returning times > 2**31-1,
952 # that is, non-integers.
954 time time ck_null isT0
956 localtime localtime ck_fun t% S?
957 gmtime gmtime ck_fun t% S?
958 alarm alarm ck_fun istu% S?
959 sleep sleep ck_fun isT% S?
963 shmget shmget ck_fun imst@ S S S
964 shmctl shmctl ck_fun imst@ S S S
965 shmread shmread ck_fun imst@ S S S S
966 shmwrite shmwrite ck_fun imst@ S S S S
970 msgget msgget ck_fun imst@ S S
971 msgctl msgctl ck_fun imst@ S S S
972 msgsnd msgsnd ck_fun imst@ S S S
973 msgrcv msgrcv ck_fun imst@ S S S S S
977 semop semop ck_fun imst@ S S
978 semget semget ck_fun imst@ S S S
979 semctl semctl ck_fun imst@ S S S S
983 require require ck_require du% S?
984 dofile do "file" ck_fun d1 S
985 entereval eval "string" ck_eval d% S
986 leaveeval eval "string" exit ck_null 1 S
987 #evalonce eval constant string ck_null d1 S
988 entertry eval {block} ck_null |
989 leavetry eval {block} exit ck_null @
993 ghbyname gethostbyname ck_fun % S
994 ghbyaddr gethostbyaddr ck_fun @ S S
995 ghostent gethostent ck_null 0
996 gnbyname getnetbyname ck_fun % S
997 gnbyaddr getnetbyaddr ck_fun @ S S
998 gnetent getnetent ck_null 0
999 gpbyname getprotobyname ck_fun % S
1000 gpbynumber getprotobynumber ck_fun @ S
1001 gprotoent getprotoent ck_null 0
1002 gsbyname getservbyname ck_fun @ S S
1003 gsbyport getservbyport ck_fun @ S S
1004 gservent getservent ck_null 0
1005 shostent sethostent ck_fun is% S
1006 snetent setnetent ck_fun is% S
1007 sprotoent setprotoent ck_fun is% S
1008 sservent setservent ck_fun is% S
1009 ehostent endhostent ck_null is0
1010 enetent endnetent ck_null is0
1011 eprotoent endprotoent ck_null is0
1012 eservent endservent ck_null is0
1013 gpwnam getpwnam ck_fun % S
1014 gpwuid getpwuid ck_fun % S
1015 gpwent getpwent ck_null 0
1016 spwent setpwent ck_null is0
1017 epwent endpwent ck_null is0
1018 ggrnam getgrnam ck_fun % S
1019 ggrgid getgrgid ck_fun % S
1020 ggrent getgrent ck_null 0
1021 sgrent setgrent ck_null is0
1022 egrent endgrent ck_null is0
1023 getlogin getlogin ck_null st0
1027 syscall syscall ck_fun imst@ S L
1029 # For multi-threading
1030 lock lock ck_rfun s% R
1031 threadsv per-thread value ck_null ds0
1034 setstate set statement info ck_null s;
1035 method_named method with known name ck_null d$
1037 dor defined or (//) ck_null |
1038 dorassign defined or assignment (//=) ck_null s|
1040 entergiven given() ck_null d|
1041 leavegiven leave given block ck_null 1
1042 enterwhen when() ck_null d|
1043 leavewhen leave when block ck_null 1
1044 break break ck_null 0
1045 continue continue ck_null 0
1046 smartmatch smart match ck_smartmatch s2
1048 say say ck_listiob ims@ F? L
1050 # Add new ops before this, the custom operator.
1052 custom unknown custom operator ck_null 0