5 # Get function prototypes
6 require 'regen_lib.pl';
9 my $opcode_new = 'opcode.h-new';
10 my $opname_new = 'opnames.h-new';
11 open(OC, ">$opcode_new") || die "Can't create $opcode_new: $!\n";
13 open(ON, ">$opname_new") || die "Can't create $opname_new: $!\n";
20 my (@ops, %desc, %check, %ckname, %flags, %args, %opnum);
26 my ($key, $desc, $check, $flags, $args) = split(/\t+/, $_, 5);
27 $args = '' unless defined $args;
29 warn qq[Description "$desc" duplicates $seen{$desc}\n] if $seen{$desc};
30 die qq[Opcode "$key" duplicates $seen{$key}\n] if $seen{$key};
31 $seen{$desc} = qq[description of opcode "$key"];
32 $seen{$key} = qq[opcode "$key"];
37 $check{$key} = $check;
39 $flags{$key} = $flags;
47 # Format is "this function" => "does these op names"
49 Perl_do_kv => [qw( keys values )],
50 Perl_unimplemented_op => [qw(padany mapstart custom)],
51 # All the ops with a body of { return NORMAL; }
52 Perl_pp_null => [qw(scalar regcmaybe lineseq scope)],
54 Perl_pp_goto => ['dump'],
55 Perl_pp_require => ['dofile'],
56 Perl_pp_untie => ['dbmclose'],
57 Perl_pp_sysread => [qw(read recv)],
58 Perl_pp_sysseek => ['seek'],
59 Perl_pp_ioctl => ['fcntl'],
60 Perl_pp_ssockopt => ['gsockopt'],
61 Perl_pp_getpeername => ['getsockname'],
62 Perl_pp_stat => ['lstat'],
63 Perl_pp_ftrowned => [qw(fteowned ftzero ftsock ftchr ftblk
64 ftfile ftdir ftpipe ftsuid ftsgid
66 Perl_pp_fttext => ['ftbinary'],
67 Perl_pp_gmtime => ['localtime'],
68 Perl_pp_semget => [qw(shmget msgget)],
69 Perl_pp_semctl => [qw(shmctl msgctl)],
70 Perl_pp_ghostent => [qw(ghbyname ghbyaddr)],
71 Perl_pp_gnetent => [qw(gnbyname gnbyaddr)],
72 Perl_pp_gprotoent => [qw(gpbyname gpbynumber)],
73 Perl_pp_gservent => [qw(gsbyname gsbyport)],
74 Perl_pp_gpwent => [qw(gpwnam gpwuid)],
75 Perl_pp_ggrent => [qw(ggrnam ggrgid)],
76 Perl_pp_ftis => [qw(ftsize ftmtime ftatime ftctime)],
77 Perl_pp_chown => [qw(unlink chmod utime kill)],
78 Perl_pp_link => ['symlink'],
79 Perl_pp_ftrread => [qw(ftrwrite ftrexec fteread ftewrite
81 Perl_pp_shmwrite => [qw(shmread msgsnd msgrcv semop)],
82 Perl_pp_send => ['syswrite'],
83 Perl_pp_defined => [qw(dor dorassign)],
84 Perl_pp_and => ['andassign'],
85 Perl_pp_or => ['orassign'],
86 Perl_pp_ucfirst => ['lcfirst'],
87 Perl_pp_sle => [qw(slt sgt sge)],
88 Perl_pp_print => ['say'],
89 Perl_pp_index => ['rindex'],
90 Perl_pp_oct => ['hex'],
91 Perl_pp_shift => ['pop'],
92 Perl_pp_sin => [qw(cos exp log sqrt)],
93 Perl_pp_bit_or => ['bit_xor'],
94 Perl_pp_rv2av => ['rv2hv'],
95 Perl_pp_akeys => ['avalues'],
98 while (my ($func, $names) = splice @raw_alias, 0, 2) {
99 $alias{$_} = $func for @$names;
105 /* -*- buffer-read-only: t -*-
109 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
110 * 2001, 2002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others
112 * You may distribute under the terms of either the GNU General Public
113 * License or the Artistic License, as specified in the README file.
115 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
116 * This file is built by opcode.pl from its data. Any changes made here
120 #ifndef PERL_GLOBAL_STRUCT_INIT
122 #define Perl_pp_i_preinc Perl_pp_preinc
123 #define Perl_pp_i_predec Perl_pp_predec
124 #define Perl_pp_i_postinc Perl_pp_postinc
125 #define Perl_pp_i_postdec Perl_pp_postdec
127 PERL_PPDEF(Perl_unimplemented_op)
132 /* -*- buffer-read-only: t -*-
136 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
137 * 2007 by Larry Wall and others
139 * You may distribute under the terms of either the GNU General Public
140 * License or the Artistic License, as specified in the README file.
143 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
144 * This file is built by opcode.pl from its data. Any changes made here
148 typedef enum opcode {
153 # print ON "\t", &tab(3,"OP_\U$_,"), "/* ", $i++, " */\n";
154 print ON "\t", &tab(3,"OP_\U$_"), " = ", $i++, ",\n";
156 print ON "\t", &tab(3,"OP_max"), "\n";
157 print ON "} opcode;\n";
158 print ON "\n#define MAXO ", scalar @ops, "\n";
159 print ON "#define OP_phoney_INPUT_ONLY -1\n";
160 print ON "#define OP_phoney_OUTPUT_ONLY -2\n\n";
162 # Emit op names and descriptions.
167 #define OP_NAME(o) ((o)->op_type == OP_CUSTOM ? custom_op_name(o) : \\
168 PL_op_name[(o)->op_type])
169 #define OP_DESC(o) ((o)->op_type == OP_CUSTOM ? custom_op_desc(o) : \\
170 PL_op_desc[(o)->op_type])
173 EXTCONST char* const PL_op_name[];
175 EXTCONST char* const PL_op_name[] = {
190 EXTCONST char* const PL_op_desc[];
192 EXTCONST char* const PL_op_desc[] = {
196 my($safe_desc) = $desc{$_};
198 # Have to escape double quotes and escape characters.
199 $safe_desc =~ s/(^|[^\\])([\\"])/$1\\$2/g;
201 print qq(\t"$safe_desc",\n);
210 #endif /* !PERL_GLOBAL_STRUCT_INIT */
213 # Emit function declarations.
215 #for (sort keys %ckname) {
216 # print "OP *\t", &tab(3,$_),"(pTHX_ OP* o);\n";
222 # print "OP *\t", &tab(3, "pp_$_"), "(pTHX);\n";
225 # Emit ppcode switch array.
231 #ifdef PERL_GLOBAL_STRUCT_INIT
232 # define PERL_PPADDR_INITED
233 static const Perl_ppaddr_t Gppaddr[]
235 # ifndef PERL_GLOBAL_STRUCT
236 # define PERL_PPADDR_INITED
237 EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
239 #endif /* PERL_GLOBAL_STRUCT */
240 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
241 # define PERL_PPADDR_INITED
246 if (my $name = $alias{$_}) {
247 print "\tMEMBER_TO_FPTR($name),\t/* Perl_pp_$_ */\n";
250 print "\tMEMBER_TO_FPTR(Perl_pp_$_),\n";
257 #ifdef PERL_PPADDR_INITED
263 # Emit check routines.
266 #ifdef PERL_GLOBAL_STRUCT_INIT
267 # define PERL_CHECK_INITED
268 static const Perl_check_t Gcheck[]
270 # ifndef PERL_GLOBAL_STRUCT
271 # define PERL_CHECK_INITED
272 EXT Perl_check_t PL_check[] /* or perlvars.h */
275 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
276 # define PERL_CHECK_INITED
281 print "\t", &tab(3, "MEMBER_TO_FPTR(Perl_$check{$_}),"), "\t/* $_ */\n";
287 #ifdef PERL_CHECK_INITED
289 #endif /* #ifdef PERL_CHECK_INITED */
293 # Emit allowed argument types.
298 #ifndef PERL_GLOBAL_STRUCT_INIT
301 EXTCONST U32 PL_opargs[];
303 EXTCONST U32 PL_opargs[] = {
309 'A', 3, # array value
313 'R', 7, # scalar reference
323 '$', 6, # svop_or_padop
325 '"', 8, # pvop_or_svop
328 '%', 11, # baseop_or_unop
329 '-', 12, # filestatop
334 'm' => 1, # needs stack mark
335 'f' => 2, # fold constants
336 's' => 4, # always produces scalar
337 't' => 8, # needs target scalar
338 'T' => 8 | 256, # ... which may be lexical
339 'i' => 16, # always produces integer
340 'I' => 32, # has corresponding int op
341 'd' => 64, # danger, unknown side effects
342 'u' => 128, # defaults to $_
352 my $flags = $flags{$op};
353 for my $flag (keys %opflags) {
354 if ($flags =~ s/$flag//) {
355 die "Flag collision for '$op' ($flags{$op}, $flag)"
356 if $argsum & $opflags{$flag};
357 $argsum |= $opflags{$flag};
360 die qq[Opcode '$op' has no class indicator ($flags{$op} => $flags)]
361 unless exists $opclass{$flags};
362 $argsum |= $opclass{$flags} << $OCSHIFT;
363 my $argshift = $OASHIFT;
364 for my $arg (split(' ',$args{$op})) {
366 # record opnums of these opnames
367 $OP_IS_SOCKET{$op} = $opnum{$op} if $arg =~ s/s//;
368 $OP_IS_FILETEST{$op} = $opnum{$op} if $arg =~ s/-//;
370 my $argnum = ($arg =~ s/\?//) ? 8 : 0;
371 die "op = $op, arg = $arg\n"
372 unless exists $argnum{$arg};
373 $argnum += $argnum{$arg};
374 die "Argument overflow for '$op'\n"
375 if $argshift >= $ARGBITS ||
376 $argnum > ((1 << ($ARGBITS - $argshift)) - 1);
377 $argsum += $argnum << $argshift;
380 $argsum = sprintf("0x%08x", $argsum);
381 print "\t", &tab(3, "$argsum,"), "/* $op */\n";
388 #endif /* !PERL_GLOBAL_STRUCT_INIT */
394 # Emit OP_IS_* macros
396 print ON <<EO_OP_IS_COMMENT;
398 /* the OP_IS_(SOCKET|FILETEST) macros are optimized to a simple range
399 check because all the member OPs are contiguous in opcode.pl
400 <DATA> table. opcode.pl verifies the range contiguity. */
404 gen_op_is_macro( \%OP_IS_SOCKET, 'OP_IS_SOCKET');
405 gen_op_is_macro( \%OP_IS_FILETEST, 'OP_IS_FILETEST');
407 sub gen_op_is_macro {
408 my ($op_is, $macname) = @_;
411 # get opnames whose numbers are lowest and highest
412 my ($first, @rest) = sort {
413 $op_is->{$a} <=> $op_is->{$b}
416 my $last = pop @rest; # @rest slurped, get its last
418 # verify that op-ct matches 1st..last range (and fencepost)
419 # (we know there are no dups)
420 if ( $op_is->{$last} - $op_is->{$first} == scalar @rest + 1) {
422 # contiguous ops -> optimized version
423 print ON "#define $macname(op) \\\n\t(";
424 print ON "(op) >= OP_" . uc($first) . " && (op) <= OP_" . uc($last);
428 print ON "\n#define $macname(op) \\\n\t(";
429 print ON join(" || \\\n\t ",
430 map { "(op) == OP_" . uc() } sort keys %OP_IS_SOCKET);
436 print OC "/* ex: set ro: */\n";
437 print ON "/* ex: set ro: */\n";
439 close OC or die "Error closing opcode.h: $!";
440 close ON or die "Error closing opnames.h: $!";
442 foreach ('opcode.h', 'opnames.h') {
443 safer_rename_silent $_, "$_-old";
445 safer_rename $opcode_new, 'opcode.h';
446 safer_rename $opname_new, 'opnames.h';
448 my $pp_proto_new = 'pp_proto.h-new';
449 my $pp_sym_new = 'pp.sym-new';
451 open PP, ">$pp_proto_new" or die "Error creating $pp_proto_new: $!";
453 open PPSYM, ">$pp_sym_new" or die "Error creating $pp_sym_new: $!";
457 /* -*- buffer-read-only: t -*-
458 !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
459 This file is built by opcode.pl from its data. Any changes made here
466 # -*- buffer-read-only: t -*-
468 # !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
469 # This file is built by opcode.pl from its data. Any changes made here
476 for (sort keys %ckname) {
477 print PP "PERL_CKDEF(Perl_$_)\n";
478 print PPSYM "Perl_$_\n";
479 #OP *\t", &tab(3,$_),"(OP* o);\n";
485 next if /^i_(pre|post)(inc|dec)$/;
487 print PP "PERL_PPDEF(Perl_pp_$_)\n";
488 print PPSYM "Perl_pp_$_\n";
490 print PP "\n/* ex: set ro: */\n";
491 print PPSYM "\n# ex: set ro:\n";
493 close PP or die "Error closing pp_proto.h: $!";
494 close PPSYM or die "Error closing pp.sym: $!";
496 foreach ('pp_proto.h', 'pp.sym') {
497 safer_rename_silent $_, "$_-old";
499 safer_rename $pp_proto_new, 'pp_proto.h';
500 safer_rename $pp_sym_new, 'pp.sym';
503 foreach ('opcode.h', 'opnames.h', 'pp_proto.h', 'pp.sym') {
504 1 while unlink "$_-old";
508 ###########################################################################
511 $t .= "\t" x ($l - (length($t) + 1) / 8);
514 ###########################################################################
516 # Some comments about 'T' opcode classifier:
518 # Safe to set if the ppcode uses:
519 # tryAMAGICbin, tryAMAGICun, SETn, SETi, SETu, PUSHn, PUSHTARG, SETTARG,
520 # SETs(TARG), XPUSHn, XPUSHu,
522 # Unsafe to set if the ppcode uses dTARG or [X]RETPUSH[YES|NO|UNDEF]
524 # lt and friends do SETs (including ncmp, but not scmp)
526 # Additional mode of failure: the opcode can modify TARG before it "used"
527 # all the arguments (or may call an external function which does the same).
528 # If the target coincides with one of the arguments ==> kaboom.
530 # pp.c pos substr each not OK (RETPUSHUNDEF)
531 # substr vec also not OK due to LV to target (are they???)
532 # ref not OK (RETPUSHNO)
533 # trans not OK (dTARG; TARG = sv_newmortal();)
534 # ucfirst etc not OK: TMP arg processed inplace
535 # quotemeta not OK (unsafe when TARG == arg)
536 # each repeat not OK too due to list context
537 # pack split - unknown whether they are safe
538 # sprintf: is calling do_sprintf(TARG,...) which can act on TARG
539 # before other args are processed.
541 # Suspicious wrt "additional mode of failure" (and only it):
542 # schop, chop, postinc/dec, bit_and etc, negate, complement.
544 # Also suspicious: 4-arg substr, sprintf, uc/lc (POK_only), reverse, pack.
546 # substr/vec: doing TAINT_off()???
549 # readline - unknown whether it is safe
550 # match subst not OK (dTARG)
551 # grepwhile not OK (not always setting)
552 # join not OK (unsafe when TARG == arg)
554 # Suspicious wrt "additional mode of failure": concat (dealt with
555 # in ck_sassign()), join (same).
558 # mapwhile flip caller not OK (not always setting)
561 # backtick glob warn die not OK (not always setting)
562 # warn not OK (RETPUSHYES)
563 # open fileno getc sysread syswrite ioctl accept shutdown
564 # ftsize(etc) readlink telldir fork alarm getlogin not OK (RETPUSHUNDEF)
565 # umask select not OK (XPUSHs(&PL_sv_undef);)
566 # fileno getc sysread syswrite tell not OK (meth("FILENO" "GETC"))
567 # sselect shm* sem* msg* syscall - unknown whether they are safe
568 # gmtime not OK (list context)
570 # Suspicious wrt "additional mode of failure": warn, die, select.
574 # New ops always go at the end
575 # The restriction on having custom as the last op has been removed
577 # A recapitulation of the format of this file:
578 # The file consists of five columns: the name of the op, an English
579 # description, the name of the "check" routine used to optimize this
580 # operation, some flags, and a description of the operands.
582 # The flags consist of options followed by a mandatory op class signifier
585 # baseop - 0 unop - 1 binop - 2
586 # logop - | listop - @ pmop - /
587 # padop/svop - $ padop - # (unused) loop - {
588 # baseop/unop - % loopexop - } filestatop - -
589 # pvop/svop - " cop - ;
592 # needs stack mark - m
593 # needs constant folding - f
594 # produces a scalar - s
595 # produces an integer - i
597 # target can be in a pad - T
598 # has a corresponding integer version - I
599 # has side effects - d
600 # uses $_ if no argument given - u
602 # Values for the operands are:
603 # scalar - S list - L array - A
604 # hash - H sub (CV) - C file - F
605 # socket - Fs filetest - F- reference - R
606 # "?" denotes an optional operand.
610 null null operation ck_null 0
612 scalar scalar ck_fun s% S
616 pushmark pushmark ck_null s0
617 wantarray wantarray ck_null is0
619 const constant item ck_svconst s$
621 gvsv scalar variable ck_null ds$
622 gv glob value ck_null ds$
623 gelem glob elem ck_null d2 S S
624 padsv private variable ck_null ds0
625 padav private array ck_null d0
626 padhv private hash ck_null d0
627 padany private value ck_null d0
629 pushre push regexp ck_null d/
631 # References and stuff.
633 rv2gv ref-to-glob cast ck_rvconst ds1
634 rv2sv scalar dereference ck_rvconst ds1
635 av2arylen array length ck_null is1
636 rv2cv subroutine dereference ck_rvconst d1
637 anoncode anonymous subroutine ck_anoncode $
638 prototype subroutine prototype ck_null s% S
639 refgen reference constructor ck_spair m1 L
640 srefgen single ref constructor ck_null fs1 S
641 ref reference-type operator ck_fun stu% S?
642 bless bless ck_fun s@ S S?
646 backtick quoted execution (``, qx) ck_open tu% S?
647 # glob defaults its first arg to $_
648 glob glob ck_glob t@ S?
649 readline <HANDLE> ck_readline t% F?
650 rcatline append I/O operator ck_null t$
652 # Bindable operators.
654 regcmaybe regexp internal guard ck_fun s1 S
655 regcreset regexp internal reset ck_fun s1 S
656 regcomp regexp compilation ck_null s| S
657 match pattern match (m//) ck_match d/
658 qr pattern quote (qr//) ck_match s/
659 subst substitution (s///) ck_match dis/ S
660 substcont substitution iterator ck_null dis|
661 trans transliteration (tr///) ck_match is" S
664 # sassign is special-cased for op class
666 sassign scalar assignment ck_sassign s0
667 aassign list assignment ck_null t2 L L
669 chop chop ck_spair mts% L
670 schop scalar chop ck_null stu% S?
671 chomp chomp ck_spair mTs% L
672 schomp scalar chomp ck_null sTu% S?
673 defined defined operator ck_defined isu% S?
674 undef undef operator ck_lfun s% S?
675 study study ck_fun su% S?
676 pos match position ck_lfun stu% S?
678 preinc preincrement (++) ck_lfun dIs1 S
679 i_preinc integer preincrement (++) ck_lfun dis1 S
680 predec predecrement (--) ck_lfun dIs1 S
681 i_predec integer predecrement (--) ck_lfun dis1 S
682 postinc postincrement (++) ck_lfun dIst1 S
683 i_postinc integer postincrement (++) ck_lfun disT1 S
684 postdec postdecrement (--) ck_lfun dIst1 S
685 i_postdec integer postdecrement (--) ck_lfun disT1 S
687 # Ordinary operators.
689 pow exponentiation (**) ck_null fsT2 S S
691 multiply multiplication (*) ck_null IfsT2 S S
692 i_multiply integer multiplication (*) ck_null ifsT2 S S
693 divide division (/) ck_null IfsT2 S S
694 i_divide integer division (/) ck_null ifsT2 S S
695 modulo modulus (%) ck_null IifsT2 S S
696 i_modulo integer modulus (%) ck_null ifsT2 S S
697 repeat repeat (x) ck_repeat mt2 L S
699 add addition (+) ck_null IfsT2 S S
700 i_add integer addition (+) ck_null ifsT2 S S
701 subtract subtraction (-) ck_null IfsT2 S S
702 i_subtract integer subtraction (-) ck_null ifsT2 S S
703 concat concatenation (.) or string ck_concat fsT2 S S
704 stringify string ck_fun fsT@ S
706 left_shift left bitshift (<<) ck_bitop fsT2 S S
707 right_shift right bitshift (>>) ck_bitop fsT2 S S
709 lt numeric lt (<) ck_null Iifs2 S S
710 i_lt integer lt (<) ck_null ifs2 S S
711 gt numeric gt (>) ck_null Iifs2 S S
712 i_gt integer gt (>) ck_null ifs2 S S
713 le numeric le (<=) ck_null Iifs2 S S
714 i_le integer le (<=) ck_null ifs2 S S
715 ge numeric ge (>=) ck_null Iifs2 S S
716 i_ge integer ge (>=) ck_null ifs2 S S
717 eq numeric eq (==) ck_null Iifs2 S S
718 i_eq integer eq (==) ck_null ifs2 S S
719 ne numeric ne (!=) ck_null Iifs2 S S
720 i_ne integer ne (!=) ck_null ifs2 S S
721 ncmp numeric comparison (<=>) ck_null Iifst2 S S
722 i_ncmp integer comparison (<=>) ck_null ifst2 S S
724 slt string lt ck_null ifs2 S S
725 sgt string gt ck_null ifs2 S S
726 sle string le ck_null ifs2 S S
727 sge string ge ck_null ifs2 S S
728 seq string eq ck_null ifs2 S S
729 sne string ne ck_null ifs2 S S
730 scmp string comparison (cmp) ck_null ifst2 S S
732 bit_and bitwise and (&) ck_bitop fst2 S S
733 bit_xor bitwise xor (^) ck_bitop fst2 S S
734 bit_or bitwise or (|) ck_bitop fst2 S S
736 negate negation (-) ck_null Ifst1 S
737 i_negate integer negation (-) ck_null ifsT1 S
738 not not ck_null ifs1 S
739 complement 1's complement (~) ck_bitop fst1 S
741 smartmatch smart match ck_smartmatch s2
743 # High falutin' math.
745 atan2 atan2 ck_fun fsT@ S S
746 sin sin ck_fun fsTu% S?
747 cos cos ck_fun fsTu% S?
748 rand rand ck_fun sT% S?
749 srand srand ck_fun s% S?
750 exp exp ck_fun fsTu% S?
751 log log ck_fun fsTu% S?
752 sqrt sqrt ck_fun fsTu% S?
756 int int ck_fun fsTu% S?
757 hex hex ck_fun fsTu% S?
758 oct oct ck_fun fsTu% S?
759 abs abs ck_fun fsTu% S?
763 length length ck_fun ifsTu% S?
764 substr substr ck_substr st@ S S S? S?
765 vec vec ck_fun ist@ S S S
767 index index ck_index isT@ S S S?
768 rindex rindex ck_index isT@ S S S?
770 sprintf sprintf ck_fun mst@ S L
771 formline formline ck_fun ms@ S L
772 ord ord ck_fun ifsTu% S?
773 chr chr ck_fun fsTu% S?
774 crypt crypt ck_fun fsT@ S S
775 ucfirst ucfirst ck_fun fstu% S?
776 lcfirst lcfirst ck_fun fstu% S?
777 uc uc ck_fun fstu% S?
778 lc lc ck_fun fstu% S?
779 quotemeta quotemeta ck_fun fstu% S?
783 rv2av array dereference ck_rvconst dt1
784 aelemfast constant array element ck_null s$ A S
785 aelem array element ck_null s2 A S
786 aslice array slice ck_null m@ A L
788 aeach each on array ck_each % A
789 akeys keys on array ck_each t% A
790 avalues values on array ck_each t% A
794 each each ck_each % H
795 values values ck_each t% H
796 keys keys ck_each t% H
797 delete delete ck_delete % S
798 exists exists ck_exists is% S
799 rv2hv hash dereference ck_rvconst dt1
800 helem hash element ck_null s2 H S
801 hslice hash slice ck_null m@ H L
803 # Explosives and implosives.
805 unpack unpack ck_unpack @ S S?
806 pack pack ck_fun mst@ S L
807 split split ck_split t@ S S S
808 join join or string ck_join mst@ S L
812 list list ck_null m@ L
813 lslice list slice ck_null 2 H L L
814 anonlist anonymous list ([]) ck_fun ms@ L
815 anonhash anonymous hash ({}) ck_fun ms@ L
817 splice splice ck_fun m@ A S? S? L
818 push push ck_fun imsT@ A L
819 pop pop ck_shift s% A?
820 shift shift ck_shift s% A?
821 unshift unshift ck_fun imsT@ A L
822 sort sort ck_sort dm@ C? L
823 reverse reverse ck_fun mt@ L
825 grepstart grep ck_grep dm@ C L
826 grepwhile grep iterator ck_null dt|
828 mapstart map ck_grep dm@ C L
829 mapwhile map iterator ck_null dt|
833 range flipflop ck_null | S S
834 flip range (or flip) ck_null 1 S S
835 flop range (or flop) ck_null 1
839 and logical and (&&) ck_null |
840 or logical or (||) ck_null |
841 xor logical xor ck_null fs2 S S
842 dor defined or (//) ck_null |
843 cond_expr conditional expression ck_null d|
844 andassign logical and assignment (&&=) ck_null s|
845 orassign logical or assignment (||=) ck_null s|
846 dorassign defined or assignment (//=) ck_null s|
848 method method lookup ck_method d1
849 entersub subroutine entry ck_subr dmt1 L
850 leavesub subroutine exit ck_null 1
851 leavesublv lvalue subroutine return ck_null 1
852 caller caller ck_fun t% S?
853 warn warn ck_fun imst@ L
854 die die ck_die dimst@ L
855 reset symbol reset ck_fun is% S?
857 lineseq line sequence ck_null @
858 nextstate next statement ck_null s;
859 dbstate debug next statement ck_null s;
860 unstack iteration finalizer ck_null s0
861 enter block entry ck_null 0
862 leave block exit ck_null @
863 scope block ck_null @
864 enteriter foreach loop entry ck_null d{
865 iter foreach loop iterator ck_null 0
866 enterloop loop entry ck_null d{
867 leaveloop loop exit ck_null 2
868 return return ck_return dm@ L
869 last last ck_null ds}
870 next next ck_null ds}
871 redo redo ck_null ds}
872 dump dump ck_null ds}
873 goto goto ck_null ds}
874 exit exit ck_exit ds% S?
875 method_named method with known name ck_null d$
877 entergiven given() ck_null d|
878 leavegiven leave given block ck_null 1
879 enterwhen when() ck_null d|
880 leavewhen leave when block ck_null 1
881 break break ck_null 0
882 continue continue ck_null 0
886 open open ck_open ismt@ F S? L
887 close close ck_fun is% F?
888 pipe_op pipe ck_fun is@ F F
890 fileno fileno ck_fun ist% F
891 umask umask ck_fun ist% S?
892 binmode binmode ck_fun s@ F S?
894 tie tie ck_fun idms@ R S L
895 untie untie ck_fun is% R
896 tied tied ck_fun s% R
897 dbmopen dbmopen ck_fun is@ H S S
898 dbmclose dbmclose ck_fun is% H
900 sselect select system call ck_select t@ S S S S
901 select select ck_select st@ F?
903 getc getc ck_eof st% F?
904 read read ck_fun imst@ F R S S?
905 enterwrite write ck_fun dis% F?
906 leavewrite write exit ck_null 1
908 prtf printf ck_listiob ims@ F? L
909 print print ck_listiob ims@ F? L
910 say say ck_listiob ims@ F? L
912 sysopen sysopen ck_fun s@ F S S S?
913 sysseek sysseek ck_fun s@ F S S
914 sysread sysread ck_fun imst@ F R S S?
915 syswrite syswrite ck_fun imst@ F S S? S?
917 eof eof ck_eof is% F?
918 tell tell ck_fun st% F?
919 seek seek ck_fun s@ F S S
920 # truncate really behaves as if it had both "S S" and "F S"
921 truncate truncate ck_trunc is@ S S
923 fcntl fcntl ck_fun st@ F S S
924 ioctl ioctl ck_fun st@ F S S
925 flock flock ck_fun isT@ F S
927 # Sockets. OP_IS_SOCKET wants them consecutive (so moved 1st 2)
929 send send ck_fun imst@ Fs S S S?
930 recv recv ck_fun imst@ Fs R S S
932 socket socket ck_fun is@ Fs S S S
933 sockpair socketpair ck_fun is@ Fs Fs S S S
935 bind bind ck_fun is@ Fs S
936 connect connect ck_fun is@ Fs S
937 listen listen ck_fun is@ Fs S
938 accept accept ck_fun ist@ Fs Fs
939 shutdown shutdown ck_fun ist@ Fs S
941 gsockopt getsockopt ck_fun is@ Fs S S
942 ssockopt setsockopt ck_fun is@ Fs S S S
944 getsockname getsockname ck_fun is% Fs
945 getpeername getpeername ck_fun is% Fs
947 # Stat calls. OP_IS_FILETEST wants them consecutive.
949 lstat lstat ck_ftst u- F
950 stat stat ck_ftst u- F
951 ftrread -R ck_ftst isu- F-
952 ftrwrite -W ck_ftst isu- F-
953 ftrexec -X ck_ftst isu- F-
954 fteread -r ck_ftst isu- F-
955 ftewrite -w ck_ftst isu- F-
956 fteexec -x ck_ftst isu- F-
957 ftis -e ck_ftst isu- F-
958 ftsize -s ck_ftst istu- F-
959 ftmtime -M ck_ftst stu- F-
960 ftatime -A ck_ftst stu- F-
961 ftctime -C ck_ftst stu- F-
962 ftrowned -O ck_ftst isu- F-
963 fteowned -o ck_ftst isu- F-
964 ftzero -z ck_ftst isu- F-
965 ftsock -S ck_ftst isu- F-
966 ftchr -c ck_ftst isu- F-
967 ftblk -b ck_ftst isu- F-
968 ftfile -f ck_ftst isu- F-
969 ftdir -d ck_ftst isu- F-
970 ftpipe -p ck_ftst isu- F-
971 ftsuid -u ck_ftst isu- F-
972 ftsgid -g ck_ftst isu- F-
973 ftsvtx -k ck_ftst isu- F-
974 ftlink -l ck_ftst isu- F-
975 fttty -t ck_ftst is- F-
976 fttext -T ck_ftst isu- F-
977 ftbinary -B ck_ftst isu- F-
981 # chdir really behaves as if it had both "S?" and "F?"
982 chdir chdir ck_chdir isT% S?
983 chown chown ck_fun imsT@ L
984 chroot chroot ck_fun isTu% S?
985 unlink unlink ck_fun imsTu@ L
986 chmod chmod ck_fun imsT@ L
987 utime utime ck_fun imsT@ L
988 rename rename ck_fun isT@ S S
989 link link ck_fun isT@ S S
990 symlink symlink ck_fun isT@ S S
991 readlink readlink ck_fun stu% S?
992 mkdir mkdir ck_fun isTu@ S? S?
993 rmdir rmdir ck_fun isTu% S?
997 open_dir opendir ck_fun is@ F S
998 readdir readdir ck_fun % F
999 telldir telldir ck_fun st% F
1000 seekdir seekdir ck_fun s@ F S
1001 rewinddir rewinddir ck_fun s% F
1002 closedir closedir ck_fun is% F
1006 fork fork ck_null ist0
1007 wait wait ck_null isT0
1008 waitpid waitpid ck_fun isT@ S S
1009 system system ck_exec imsT@ S? L
1010 exec exec ck_exec dimsT@ S? L
1011 kill kill ck_fun dimsT@ L
1012 getppid getppid ck_null isT0
1013 getpgrp getpgrp ck_fun isT% S?
1014 setpgrp setpgrp ck_fun isT@ S? S?
1015 getpriority getpriority ck_fun isT@ S S
1016 setpriority setpriority ck_fun isT@ S S S
1020 # NOTE: MacOS patches the 'i' of time() away later when the interpreter
1021 # is created because in MacOS time() is already returning times > 2**31-1,
1022 # that is, non-integers.
1024 time time ck_null isT0
1026 localtime localtime ck_fun t% S?
1027 gmtime gmtime ck_fun t% S?
1028 alarm alarm ck_fun istu% S?
1029 sleep sleep ck_fun isT% S?
1033 shmget shmget ck_fun imst@ S S S
1034 shmctl shmctl ck_fun imst@ S S S
1035 shmread shmread ck_fun imst@ S S S S
1036 shmwrite shmwrite ck_fun imst@ S S S S
1040 msgget msgget ck_fun imst@ S S
1041 msgctl msgctl ck_fun imst@ S S S
1042 msgsnd msgsnd ck_fun imst@ S S S
1043 msgrcv msgrcv ck_fun imst@ S S S S S
1047 semop semop ck_fun imst@ S S
1048 semget semget ck_fun imst@ S S S
1049 semctl semctl ck_fun imst@ S S S S
1053 require require ck_require du% S?
1054 dofile do "file" ck_fun d1 S
1055 hintseval eval hints ck_svconst s$
1056 entereval eval "string" ck_eval d% S
1057 leaveeval eval "string" exit ck_null 1 S
1058 #evalonce eval constant string ck_null d1 S
1059 entertry eval {block} ck_null |
1060 leavetry eval {block} exit ck_null @
1064 ghbyname gethostbyname ck_fun % S
1065 ghbyaddr gethostbyaddr ck_fun @ S S
1066 ghostent gethostent ck_null 0
1067 gnbyname getnetbyname ck_fun % S
1068 gnbyaddr getnetbyaddr ck_fun @ S S
1069 gnetent getnetent ck_null 0
1070 gpbyname getprotobyname ck_fun % S
1071 gpbynumber getprotobynumber ck_fun @ S
1072 gprotoent getprotoent ck_null 0
1073 gsbyname getservbyname ck_fun @ S S
1074 gsbyport getservbyport ck_fun @ S S
1075 gservent getservent ck_null 0
1076 shostent sethostent ck_fun is% S
1077 snetent setnetent ck_fun is% S
1078 sprotoent setprotoent ck_fun is% S
1079 sservent setservent ck_fun is% S
1080 ehostent endhostent ck_null is0
1081 enetent endnetent ck_null is0
1082 eprotoent endprotoent ck_null is0
1083 eservent endservent ck_null is0
1084 gpwnam getpwnam ck_fun % S
1085 gpwuid getpwuid ck_fun % S
1086 gpwent getpwent ck_null 0
1087 spwent setpwent ck_null is0
1088 epwent endpwent ck_null is0
1089 ggrnam getgrnam ck_fun % S
1090 ggrgid getgrgid ck_fun % S
1091 ggrent getgrent ck_null 0
1092 sgrent setgrent ck_null is0
1093 egrent endgrent ck_null is0
1094 getlogin getlogin ck_null st0
1098 syscall syscall ck_fun imst@ S L
1100 # For multi-threading
1101 lock lock ck_rfun s% R
1107 custom unknown custom operator ck_null 0