pp_pop can be implemented by pp_shift.
[p5sagit/p5-mst-13.2.git] / opcode.pl
1 #!/usr/bin/perl
2 BEGIN {
3     # Get function prototypes
4     require 'regen_lib.pl';
5 }
6
7 $opcode_new = 'opcode.h-new';
8 $opname_new = 'opnames.h-new';
9 open(OC, ">$opcode_new") || die "Can't create $opcode_new: $!\n";
10 binmode OC;
11 open(ON, ">$opname_new") || die "Can't create $opname_new: $!\n";
12 binmode ON;
13 select OC;
14
15 # Read data.
16
17 while (<DATA>) {
18     chop;
19     next unless $_;
20     next if /^#/;
21     ($key, $desc, $check, $flags, $args) = split(/\t+/, $_, 5);
22
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"];
27
28     push(@ops, $key);
29     $desc{$key} = $desc;
30     $check{$key} = $check;
31     $ckname{$check}++;
32     $flags{$key} = $flags;
33     $args{$key} = $args;
34 }
35
36 # Set up aliases
37
38 my %alias;
39
40 # Format is "this function" => "does these op names"
41 my @raw_alias = (
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)],
46
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
58                                          ftsvtx)],
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
73                                         fteexec)],
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                 );
86
87 while (my ($func, $names) = splice @raw_alias, 0, 2) {
88     $alias{$_} = $func for @$names;
89 }
90
91 # Emit defines.
92
93 $i = 0;
94 print <<"END";
95 /* -*- buffer-read-only: t -*-
96  *
97  *    opcode.h
98  *
99  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
100  *    2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
101  *
102  *    You may distribute under the terms of either the GNU General Public
103  *    License or the Artistic License, as specified in the README file.
104  *
105  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
106  *  This file is built by opcode.pl from its data.  Any changes made here
107  *  will be lost!
108  */
109
110 #ifndef PERL_GLOBAL_STRUCT_INIT
111
112 #define Perl_pp_i_preinc Perl_pp_preinc
113 #define Perl_pp_i_predec Perl_pp_predec
114 #define Perl_pp_i_postinc Perl_pp_postinc
115 #define Perl_pp_i_postdec Perl_pp_postdec
116
117 PERL_PPDEF(Perl_unimplemented_op)
118
119 END
120
121 print ON <<"END";
122 /* -*- buffer-read-only: t -*-
123  *
124  *    opnames.h
125  *
126  *    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
127  *    by Larry Wall and others
128  *
129  *    You may distribute under the terms of either the GNU General Public
130  *    License or the Artistic License, as specified in the README file.
131  *
132  *
133  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
134  *  This file is built by opcode.pl from its data.  Any changes made here
135  *  will be lost!
136  */
137
138 typedef enum opcode {
139 END
140
141 for (@ops) {
142     print ON "\t", &tab(3,"OP_\U$_,"), "/* ", $i++, " */\n";
143 }
144 print ON "\t", &tab(3,"OP_max"), "\n";
145 print ON "} opcode;\n";
146 print ON "\n#define MAXO ", scalar @ops, "\n";
147 print ON "#define OP_phoney_INPUT_ONLY -1\n";
148 print ON "#define OP_phoney_OUTPUT_ONLY -2\n\n";
149
150 # Emit op names and descriptions.
151
152 print <<END;
153 START_EXTERN_C
154
155 #define OP_NAME(o) ((o)->op_type == OP_CUSTOM ? custom_op_name(o) : \\
156                     PL_op_name[(o)->op_type])
157 #define OP_DESC(o) ((o)->op_type == OP_CUSTOM ? custom_op_desc(o) : \\
158                     PL_op_desc[(o)->op_type])
159
160 #ifndef DOINIT
161 EXTCONST char* const PL_op_name[];
162 #else
163 EXTCONST char* const PL_op_name[] = {
164 END
165
166 for (@ops) {
167     print qq(\t"$_",\n);
168 }
169
170 print <<END;
171 };
172 #endif
173
174 END
175
176 print <<END;
177 #ifndef DOINIT
178 EXTCONST char* const PL_op_desc[];
179 #else
180 EXTCONST char* const PL_op_desc[] = {
181 END
182
183 for (@ops) {
184     my($safe_desc) = $desc{$_};
185
186     # Have to escape double quotes and escape characters.
187     $safe_desc =~ s/(^|[^\\])([\\"])/$1\\$2/g;
188
189     print qq(\t"$safe_desc",\n);
190 }
191
192 print <<END;
193 };
194 #endif
195
196 END_EXTERN_C
197
198 #endif /* !PERL_GLOBAL_STRUCT_INIT */
199 END
200
201 # Emit function declarations.
202
203 #for (sort keys %ckname) {
204 #    print "OP *\t", &tab(3,$_),"(pTHX_ OP* o);\n";
205 #}
206 #
207 #print "\n";
208 #
209 #for (@ops) {
210 #    print "OP *\t", &tab(3, "pp_$_"), "(pTHX);\n";
211 #}
212
213 # Emit ppcode switch array.
214
215 print <<END;
216
217 START_EXTERN_C
218
219 #ifdef PERL_GLOBAL_STRUCT_INIT
220 #  define PERL_PPADDR_INITED
221 static const Perl_ppaddr_t Gppaddr[]
222 #else
223 #  ifndef PERL_GLOBAL_STRUCT
224 #    define PERL_PPADDR_INITED
225 EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
226 #  endif
227 #endif /* PERL_GLOBAL_STRUCT */
228 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
229 #  define PERL_PPADDR_INITED
230 = {
231 END
232
233 for (@ops) {
234     $_ eq "custom" and next;
235     if (my $name = $alias{$_}) {
236         print "\tMEMBER_TO_FPTR($name),\t/* Perl_pp_$_ */\n";
237     }
238     else {
239         print "\tMEMBER_TO_FPTR(Perl_pp_$_),\n";
240     }
241 }
242
243 print <<END;
244 }
245 #endif
246 #ifdef PERL_PPADDR_INITED
247 ;
248 #endif
249
250 END
251
252 # Emit check routines.
253
254 print <<END;
255 #ifdef PERL_GLOBAL_STRUCT_INIT
256 #  define PERL_CHECK_INITED
257 static const Perl_check_t Gcheck[]
258 #else
259 #  ifndef PERL_GLOBAL_STRUCT
260 #    define PERL_CHECK_INITED
261 EXT Perl_check_t PL_check[] /* or perlvars.h */
262 #  endif
263 #endif
264 #if (defined(DOINIT) && !defined(PERL_GLOBAL_STRUCT)) || defined(PERL_GLOBAL_STRUCT_INIT)
265 #  define PERL_CHECK_INITED
266 = {
267 END
268
269 for (@ops) {
270     print "\t", &tab(3, "MEMBER_TO_FPTR(Perl_$check{$_}),"), "\t/* $_ */\n";
271 }
272
273 print <<END;
274 }
275 #endif
276 #ifdef PERL_CHECK_INITED
277 ;
278 #endif /* #ifdef PERL_CHECK_INITED */
279
280 END
281
282 # Emit allowed argument types.
283
284 print <<END;
285 #ifndef PERL_GLOBAL_STRUCT_INIT
286
287 #ifndef DOINIT
288 EXT const U32 PL_opargs[];
289 #else
290 EXT const U32 PL_opargs[] = {
291 END
292
293 %argnum = (
294     S,  1,              # scalar
295     L,  2,              # list
296     A,  3,              # array value
297     H,  4,              # hash value
298     C,  5,              # code value
299     F,  6,              # file value
300     R,  7,              # scalar reference
301 );
302
303 %opclass = (
304     '0',  0,            # baseop
305     '1',  1,            # unop
306     '2',  2,            # binop
307     '|',  3,            # logop
308     '@',  4,            # listop
309     '/',  5,            # pmop
310     '$',  6,            # svop_or_padop
311     '#',  7,            # padop
312     '"',  8,            # pvop_or_svop
313     '{',  9,            # loop
314     ';',  10,           # cop
315     '%',  11,           # baseop_or_unop
316     '-',  12,           # filestatop
317     '}',  13,           # loopexop
318 );
319
320 my %OP_IS_SOCKET;
321 my %OP_IS_FILETEST;
322
323 for (@ops) {
324     $argsum = 0;
325     $flags = $flags{$_};
326     $argsum |= 1 if $flags =~ /m/;              # needs stack mark
327     $argsum |= 2 if $flags =~ /f/;              # fold constants
328     $argsum |= 4 if $flags =~ /s/;              # always produces scalar
329     $argsum |= 8 if $flags =~ /t/;              # needs target scalar
330     $argsum |= (8|256) if $flags =~ /T/;        # ... which may be lexical
331     $argsum |= 16 if $flags =~ /i/;             # always produces integer
332     $argsum |= 32 if $flags =~ /I/;             # has corresponding int op
333     $argsum |= 64 if $flags =~ /d/;             # danger, unknown side effects
334     $argsum |= 128 if $flags =~ /u/;            # defaults to $_
335     $flags =~ /([\W\d_])/ or die qq[Opcode "$_" has no class indicator];
336     $argsum |= $opclass{$1} << 9;
337     $mul = 0x2000;                              # 2 ^ OASHIFT
338     for $arg (split(' ',$args{$_})) {
339         if ($arg =~ /^F/) {
340            $OP_IS_SOCKET{$_}   = 1 if $arg =~ s/s//;
341            $OP_IS_FILETEST{$_} = 1 if $arg =~ s/-//;
342         }
343         $argnum = ($arg =~ s/\?//) ? 8 : 0;
344         die "op = $_, arg = $arg\n" unless length($arg) == 1;
345         $argnum += $argnum{$arg};
346         warn "# Conflicting bit 32 for '$_'.\n"
347             if $argnum & 8 and $mul == 0x10000000;
348         $argsum += $argnum * $mul;
349         $mul <<= 4;
350     }
351     $argsum = sprintf("0x%08x", $argsum);
352     print "\t", &tab(3, "$argsum,"), "/* $_ */\n";
353 }
354
355 print <<END;
356 };
357 #endif
358
359 END_EXTERN_C
360
361 #endif /* !PERL_GLOBAL_STRUCT_INIT */
362 END
363
364 if (keys %OP_IS_SOCKET) {
365     print ON "\n#define OP_IS_SOCKET(op)        \\\n\t(";
366     print ON join(" || \\\n\t ",
367                map { "(op) == OP_" . uc() } sort keys %OP_IS_SOCKET);
368     print ON ")\n\n";
369 }
370
371 if (keys %OP_IS_FILETEST) {
372     print ON "\n#define OP_IS_FILETEST(op)      \\\n\t(";
373     print ON join(" || \\\n\t ",
374                map { "(op) == OP_" . uc() } sort keys %OP_IS_FILETEST);
375     print ON ")\n\n";
376 }
377
378 print OC "/* ex: set ro: */\n";
379 print ON "/* ex: set ro: */\n";
380
381 close OC or die "Error closing opcode.h: $!";
382 close ON or die "Error closing opnames.h: $!";
383
384 foreach ('opcode.h', 'opnames.h') {
385     safer_rename_silent $_, "$_-old";
386 }
387 safer_rename $opcode_new, 'opcode.h';
388 safer_rename $opname_new, 'opnames.h';
389
390 $pp_proto_new = 'pp_proto.h-new';
391 $pp_sym_new  = 'pp.sym-new';
392
393 open PP, ">$pp_proto_new" or die "Error creating $pp_proto_new: $!";
394 binmode PP;
395 open PPSYM, ">$pp_sym_new" or die "Error creating $pp_sym_new: $!";
396 binmode PPSYM;
397
398 print PP <<"END";
399 /* -*- buffer-read-only: t -*-
400    !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
401    This file is built by opcode.pl from its data.  Any changes made here
402    will be lost!
403 */
404
405 END
406
407 print PPSYM <<"END";
408 # -*- buffer-read-only: t -*-
409 #
410 # !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
411 #   This file is built by opcode.pl from its data.  Any changes made here
412 #   will be lost!
413 #
414
415 END
416
417
418 for (sort keys %ckname) {
419     print PP "PERL_CKDEF(Perl_$_)\n";
420     print PPSYM "Perl_$_\n";
421 #OP *\t", &tab(3,$_),"(OP* o);\n";
422 }
423
424 print PP "\n\n";
425
426 for (@ops) {
427     next if /^i_(pre|post)(inc|dec)$/;
428     next if /^custom$/;
429     print PP "PERL_PPDEF(Perl_pp_$_)\n";
430     print PPSYM "Perl_pp_$_\n";
431 }
432 print PP "\n/* ex: set ro: */\n";
433 print PPSYM "\n# ex: set ro:\n";
434
435 close PP or die "Error closing pp_proto.h: $!";
436 close PPSYM or die "Error closing pp.sym: $!";
437
438 foreach ('pp_proto.h', 'pp.sym') {
439     safer_rename_silent $_, "$_-old";
440 }
441 safer_rename $pp_proto_new, 'pp_proto.h';
442 safer_rename $pp_sym_new, 'pp.sym';
443
444 END {
445   foreach ('opcode.h', 'opnames.h', 'pp_proto.h', 'pp.sym') {
446     1 while unlink "$_-old";
447   }
448 }
449
450 ###########################################################################
451 sub tab {
452     local($l, $t) = @_;
453     $t .= "\t" x ($l - (length($t) + 1) / 8);
454     $t;
455 }
456 ###########################################################################
457
458 # Some comments about 'T' opcode classifier:
459
460 # Safe to set if the ppcode uses:
461 #       tryAMAGICbin, tryAMAGICun, SETn, SETi, SETu, PUSHn, PUSHTARG, SETTARG,
462 #       SETs(TARG), XPUSHn, XPUSHu,
463
464 # Unsafe to set if the ppcode uses dTARG or [X]RETPUSH[YES|NO|UNDEF]
465
466 # lt and friends do SETs (including ncmp, but not scmp)
467
468 # Additional mode of failure: the opcode can modify TARG before it "used"
469 # all the arguments (or may call an external function which does the same).
470 # If the target coincides with one of the arguments ==> kaboom.
471
472 # pp.c  pos substr each not OK (RETPUSHUNDEF)
473 #       substr vec also not OK due to LV to target (are they???)
474 #       ref not OK (RETPUSHNO)
475 #       trans not OK (dTARG; TARG = sv_newmortal();)
476 #       ucfirst etc not OK: TMP arg processed inplace
477 #       quotemeta not OK (unsafe when TARG == arg)
478 #       each repeat not OK too due to list context
479 #       pack split - unknown whether they are safe
480 #       sprintf: is calling do_sprintf(TARG,...) which can act on TARG
481 #         before other args are processed.
482
483 #       Suspicious wrt "additional mode of failure" (and only it):
484 #       schop, chop, postinc/dec, bit_and etc, negate, complement.
485
486 #       Also suspicious: 4-arg substr, sprintf, uc/lc (POK_only), reverse, pack.
487
488 #       substr/vec: doing TAINT_off()???
489
490 # pp_hot.c
491 #       readline - unknown whether it is safe
492 #       match subst not OK (dTARG)
493 #       grepwhile not OK (not always setting)
494 #       join not OK (unsafe when TARG == arg)
495
496 #       Suspicious wrt "additional mode of failure": concat (dealt with
497 #       in ck_sassign()), join (same).
498
499 # pp_ctl.c
500 #       mapwhile flip caller not OK (not always setting)
501
502 # pp_sys.c
503 #       backtick glob warn die not OK (not always setting)
504 #       warn not OK (RETPUSHYES)
505 #       open fileno getc sysread syswrite ioctl accept shutdown
506 #        ftsize(etc) readlink telldir fork alarm getlogin not OK (RETPUSHUNDEF)
507 #       umask select not OK (XPUSHs(&PL_sv_undef);)
508 #       fileno getc sysread syswrite tell not OK (meth("FILENO" "GETC"))
509 #       sselect shm* sem* msg* syscall - unknown whether they are safe
510 #       gmtime not OK (list context)
511
512 #       Suspicious wrt "additional mode of failure": warn, die, select.
513
514 __END__
515
516 # New ops always go at the end, just before 'custom'
517
518 # A recapitulation of the format of this file:
519 # The file consists of five columns: the name of the op, an English
520 # description, the name of the "check" routine used to optimize this
521 # operation, some flags, and a description of the operands.
522
523 # The flags consist of options followed by a mandatory op class signifier
524
525 # The classes are:
526 # baseop      - 0            unop     - 1            binop      - 2
527 # logop       - |            listop   - @            pmop       - /
528 # padop/svop  - $            padop    - # (unused)   loop       - {
529 # baseop/unop - %            loopexop - }            filestatop - -
530 # pvop/svop   - "            cop      - ;
531
532 # Other options are:
533 #   needs stack mark                    - m
534 #   needs constant folding              - f
535 #   produces a scalar                   - s
536 #   produces an integer                 - i
537 #   needs a target                      - t
538 #   target can be in a pad              - T
539 #   has a corresponding integer version - I
540 #   has side effects                    - d
541 #   uses $_ if no argument given        - u
542
543 # Values for the operands are:
544 # scalar      - S            list     - L            array     - A
545 # hash        - H            sub (CV) - C            file      - F
546 # socket      - Fs           filetest - F-           reference - R
547 # "?" denotes an optional operand.
548
549 # Nothing.
550
551 null            null operation          ck_null         0       
552 stub            stub                    ck_null         0
553 scalar          scalar                  ck_fun          s%      S
554
555 # Pushy stuff.
556
557 pushmark        pushmark                ck_null         s0      
558 wantarray       wantarray               ck_null         is0     
559
560 const           constant item           ck_svconst      s$      
561
562 gvsv            scalar variable         ck_null         ds$     
563 gv              glob value              ck_null         ds$     
564 gelem           glob elem               ck_null         d2      S S
565 padsv           private variable        ck_null         ds0
566 padav           private array           ck_null         d0
567 padhv           private hash            ck_null         d0
568 padany          private value           ck_null         d0
569
570 pushre          push regexp             ck_null         d/
571
572 # References and stuff.
573
574 rv2gv           ref-to-glob cast        ck_rvconst      ds1     
575 rv2sv           scalar dereference      ck_rvconst      ds1     
576 av2arylen       array length            ck_null         is1     
577 rv2cv           subroutine dereference  ck_rvconst      d1
578 anoncode        anonymous subroutine    ck_anoncode     $       
579 prototype       subroutine prototype    ck_null         s%      S
580 refgen          reference constructor   ck_spair        m1      L
581 srefgen         single ref constructor  ck_null         fs1     S
582 ref             reference-type operator ck_fun          stu%    S?
583 bless           bless                   ck_fun          s@      S S?
584
585 # Pushy I/O.
586
587 backtick        quoted execution (``, qx)       ck_open         t%      
588 # glob defaults its first arg to $_
589 glob            glob                    ck_glob         t@      S?
590 readline        <HANDLE>                ck_null         t%      F?
591 rcatline        append I/O operator     ck_null         t$
592
593 # Bindable operators.
594
595 regcmaybe       regexp internal guard   ck_fun          s1      S
596 regcreset       regexp internal reset   ck_fun          s1      S
597 regcomp         regexp compilation      ck_null         s|      S
598 match           pattern match (m//)     ck_match        d/
599 qr              pattern quote (qr//)    ck_match        s/
600 subst           substitution (s///)     ck_match        dis/    S
601 substcont       substitution iterator   ck_null         dis|    
602 trans           transliteration (tr///) ck_match        is"     S
603
604 # Lvalue operators.
605 # sassign is special-cased for op class
606
607 sassign         scalar assignment       ck_sassign      s0
608 aassign         list assignment         ck_null         t2      L L
609
610 chop            chop                    ck_spair        mts%    L
611 schop           scalar chop             ck_null         stu%    S?
612 chomp           chomp                   ck_spair        mTs%    L
613 schomp          scalar chomp            ck_null         sTu%    S?
614 defined         defined operator        ck_defined      isu%    S?
615 undef           undef operator          ck_lfun         s%      S?
616 study           study                   ck_fun          su%     S?
617 pos             match position          ck_lfun         stu%    S?
618
619 preinc          preincrement (++)               ck_lfun         dIs1    S
620 i_preinc        integer preincrement (++)       ck_lfun         dis1    S
621 predec          predecrement (--)               ck_lfun         dIs1    S
622 i_predec        integer predecrement (--)       ck_lfun         dis1    S
623 postinc         postincrement (++)              ck_lfun         dIst1   S
624 i_postinc       integer postincrement (++)      ck_lfun         disT1   S
625 postdec         postdecrement (--)              ck_lfun         dIst1   S
626 i_postdec       integer postdecrement (--)      ck_lfun         disT1   S
627
628 # Ordinary operators.
629
630 pow             exponentiation (**)     ck_null         fsT2    S S
631
632 multiply        multiplication (*)      ck_null         IfsT2   S S
633 i_multiply      integer multiplication (*)      ck_null         ifsT2   S S
634 divide          division (/)            ck_null         IfsT2   S S
635 i_divide        integer division (/)    ck_null         ifsT2   S S
636 modulo          modulus (%)             ck_null         IifsT2  S S
637 i_modulo        integer modulus (%)     ck_null         ifsT2   S S
638 repeat          repeat (x)              ck_repeat       mt2     L S
639
640 add             addition (+)            ck_null         IfsT2   S S
641 i_add           integer addition (+)    ck_null         ifsT2   S S
642 subtract        subtraction (-)         ck_null         IfsT2   S S
643 i_subtract      integer subtraction (-) ck_null         ifsT2   S S
644 concat          concatenation (.) or string     ck_concat       fsT2    S S
645 stringify       string                  ck_fun          fsT@    S
646
647 left_shift      left bitshift (<<)      ck_bitop        fsT2    S S
648 right_shift     right bitshift (>>)     ck_bitop        fsT2    S S
649
650 lt              numeric lt (<)          ck_null         Iifs2   S S
651 i_lt            integer lt (<)          ck_null         ifs2    S S
652 gt              numeric gt (>)          ck_null         Iifs2   S S
653 i_gt            integer gt (>)          ck_null         ifs2    S S
654 le              numeric le (<=)         ck_null         Iifs2   S S
655 i_le            integer le (<=)         ck_null         ifs2    S S
656 ge              numeric ge (>=)         ck_null         Iifs2   S S
657 i_ge            integer ge (>=)         ck_null         ifs2    S S
658 eq              numeric eq (==)         ck_null         Iifs2   S S
659 i_eq            integer eq (==)         ck_null         ifs2    S S
660 ne              numeric ne (!=)         ck_null         Iifs2   S S
661 i_ne            integer ne (!=)         ck_null         ifs2    S S
662 ncmp            numeric comparison (<=>)        ck_null         Iifst2  S S
663 i_ncmp          integer comparison (<=>)        ck_null         ifst2   S S
664
665 slt             string lt               ck_null         ifs2    S S
666 sgt             string gt               ck_null         ifs2    S S
667 sle             string le               ck_null         ifs2    S S
668 sge             string ge               ck_null         ifs2    S S
669 seq             string eq               ck_null         ifs2    S S
670 sne             string ne               ck_null         ifs2    S S
671 scmp            string comparison (cmp) ck_null         ifst2   S S
672
673 bit_and         bitwise and (&)         ck_bitop        fst2    S S
674 bit_xor         bitwise xor (^)         ck_bitop        fst2    S S
675 bit_or          bitwise or (|)          ck_bitop        fst2    S S
676
677 negate          negation (-)            ck_null         Ifst1   S
678 i_negate        integer negation (-)    ck_null         ifsT1   S
679 not             not                     ck_null         ifs1    S
680 complement      1's complement (~)      ck_bitop        fst1    S
681
682 # High falutin' math.
683
684 atan2           atan2                   ck_fun          fsT@    S S
685 sin             sin                     ck_fun          fsTu%   S?
686 cos             cos                     ck_fun          fsTu%   S?
687 rand            rand                    ck_fun          sT%     S?
688 srand           srand                   ck_fun          s%      S?
689 exp             exp                     ck_fun          fsTu%   S?
690 log             log                     ck_fun          fsTu%   S?
691 sqrt            sqrt                    ck_fun          fsTu%   S?
692
693 # Lowbrow math.
694
695 int             int                     ck_fun          fsTu%   S?
696 hex             hex                     ck_fun          fsTu%   S?
697 oct             oct                     ck_fun          fsTu%   S?
698 abs             abs                     ck_fun          fsTu%   S?
699
700 # String stuff.
701
702 length          length                  ck_lengthconst  isTu%   S?
703 substr          substr                  ck_substr       st@     S S S? S?
704 vec             vec                     ck_fun          ist@    S S S
705
706 index           index                   ck_index        isT@    S S S?
707 rindex          rindex                  ck_index        isT@    S S S?
708
709 sprintf         sprintf                 ck_fun          mst@    S L
710 formline        formline                ck_fun          ms@     S L
711 ord             ord                     ck_fun          ifsTu%  S?
712 chr             chr                     ck_fun          fsTu%   S?
713 crypt           crypt                   ck_fun          fsT@    S S
714 ucfirst         ucfirst                 ck_fun          fstu%   S?
715 lcfirst         lcfirst                 ck_fun          fstu%   S?
716 uc              uc                      ck_fun          fstu%   S?
717 lc              lc                      ck_fun          fstu%   S?
718 quotemeta       quotemeta               ck_fun          fstu%   S?
719
720 # Arrays.
721
722 rv2av           array dereference       ck_rvconst      dt1     
723 aelemfast       constant array element  ck_null         s$      A S
724 aelem           array element           ck_null         s2      A S
725 aslice          array slice             ck_null         m@      A L
726
727 # Hashes.
728
729 each            each                    ck_fun          %       H
730 values          values                  ck_fun          t%      H
731 keys            keys                    ck_fun          t%      H
732 delete          delete                  ck_delete       %       S
733 exists          exists                  ck_exists       is%     S
734 rv2hv           hash dereference        ck_rvconst      dt1     
735 helem           hash element            ck_null         s2@     H S
736 hslice          hash slice              ck_null         m@      H L
737
738 # Explosives and implosives.
739
740 unpack          unpack                  ck_unpack       @       S S?
741 pack            pack                    ck_fun          mst@    S L
742 split           split                   ck_split        t@      S S S
743 join            join or string          ck_join         mst@    S L
744
745 # List operators.
746
747 list            list                    ck_null         m@      L
748 lslice          list slice              ck_null         2       H L L
749 anonlist        anonymous list ([])     ck_fun          ms@     L
750 anonhash        anonymous hash ({})     ck_fun          ms@     L
751
752 splice          splice                  ck_fun          m@      A S? S? L
753 push            push                    ck_fun          imsT@   A L
754 pop             pop                     ck_shift        s%      A?
755 shift           shift                   ck_shift        s%      A?
756 unshift         unshift                 ck_fun          imsT@   A L
757 sort            sort                    ck_sort         dm@     C? L
758 reverse         reverse                 ck_fun          mt@     L
759
760 grepstart       grep                    ck_grep         dm@     C L
761 grepwhile       grep iterator           ck_null         dt|     
762
763 mapstart        map                     ck_grep         dm@     C L
764 mapwhile        map iterator            ck_null         dt|
765
766 # Range stuff.
767
768 range           flipflop                ck_null         |       S S
769 flip            range (or flip)         ck_null         1       S S
770 flop            range (or flop)         ck_null         1
771
772 # Control.
773
774 and             logical and (&&)                ck_null         |       
775 or              logical or (||)                 ck_null         |       
776 xor             logical xor                     ck_null         fs2     S S     
777 cond_expr       conditional expression          ck_null         d|      
778 andassign       logical and assignment (&&=)    ck_null         s|      
779 orassign        logical or assignment (||=)     ck_null         s|      
780
781 method          method lookup           ck_method       d1
782 entersub        subroutine entry        ck_subr         dmt1    L
783 leavesub        subroutine exit         ck_null         1       
784 leavesublv      lvalue subroutine return        ck_null         1       
785 caller          caller                  ck_fun          t%      S?
786 warn            warn                    ck_fun          imst@   L
787 die             die                     ck_die          dimst@  L
788 reset           symbol reset            ck_fun          is%     S?
789
790 lineseq         line sequence           ck_null         @       
791 nextstate       next statement          ck_null         s;      
792 dbstate         debug next statement    ck_null         s;      
793 unstack         iteration finalizer     ck_null         s0
794 enter           block entry             ck_null         0       
795 leave           block exit              ck_null         @       
796 scope           block                   ck_null         @       
797 enteriter       foreach loop entry      ck_null         d{      
798 iter            foreach loop iterator   ck_null         0       
799 enterloop       loop entry              ck_null         d{      
800 leaveloop       loop exit               ck_null         2       
801 return          return                  ck_return       dm@     L
802 last            last                    ck_null         ds}     
803 next            next                    ck_null         ds}     
804 redo            redo                    ck_null         ds}     
805 dump            dump                    ck_null         ds}     
806 goto            goto                    ck_null         ds}     
807 exit            exit                    ck_exit         ds%     S?
808 # continued below
809
810 #nswitch        numeric switch          ck_null         d       
811 #cswitch        character switch        ck_null         d       
812
813 # I/O.
814
815 open            open                    ck_open         ismt@   F S? L
816 close           close                   ck_fun          is%     F?
817 pipe_op         pipe                    ck_fun          is@     F F
818
819 fileno          fileno                  ck_fun          ist%    F
820 umask           umask                   ck_fun          ist%    S?
821 binmode         binmode                 ck_fun          s@      F S?
822
823 tie             tie                     ck_fun          idms@   R S L
824 untie           untie                   ck_fun          is%     R
825 tied            tied                    ck_fun          s%      R
826 dbmopen         dbmopen                 ck_fun          is@     H S S
827 dbmclose        dbmclose                ck_fun          is%     H
828
829 sselect         select system call      ck_select       t@      S S S S
830 select          select                  ck_select       st@     F?
831
832 getc            getc                    ck_eof          st%     F?
833 read            read                    ck_fun          imst@   F R S S?
834 enterwrite      write                   ck_fun          dis%    F?
835 leavewrite      write exit              ck_null         1       
836
837 prtf            printf                  ck_listiob      ims@    F? L
838 print           print                   ck_listiob      ims@    F? L
839
840 sysopen         sysopen                 ck_fun          s@      F S S S?
841 sysseek         sysseek                 ck_fun          s@      F S S
842 sysread         sysread                 ck_fun          imst@   F R S S?
843 syswrite        syswrite                ck_fun          imst@   F S S? S?
844
845 send            send                    ck_fun          imst@   Fs S S S?
846 recv            recv                    ck_fun          imst@   Fs R S S
847
848 eof             eof                     ck_eof          is%     F?
849 tell            tell                    ck_fun          st%     F?
850 seek            seek                    ck_fun          s@      F S S
851 # truncate really behaves as if it had both "S S" and "F S"
852 truncate        truncate                ck_trunc        is@     S S
853
854 fcntl           fcntl                   ck_fun          st@     F S S
855 ioctl           ioctl                   ck_fun          st@     F S S
856 flock           flock                   ck_fun          isT@    F S
857
858 # Sockets.
859
860 socket          socket                  ck_fun          is@     Fs S S S
861 sockpair        socketpair              ck_fun          is@     Fs Fs S S S
862
863 bind            bind                    ck_fun          is@     Fs S
864 connect         connect                 ck_fun          is@     Fs S
865 listen          listen                  ck_fun          is@     Fs S
866 accept          accept                  ck_fun          ist@    Fs Fs
867 shutdown        shutdown                ck_fun          ist@    Fs S
868
869 gsockopt        getsockopt              ck_fun          is@     Fs S S
870 ssockopt        setsockopt              ck_fun          is@     Fs S S S
871
872 getsockname     getsockname             ck_fun          is%     Fs
873 getpeername     getpeername             ck_fun          is%     Fs
874
875 # Stat calls.
876
877 lstat           lstat                   ck_ftst         u-      F
878 stat            stat                    ck_ftst         u-      F
879 ftrread         -R                      ck_ftst         isu-    F-
880 ftrwrite        -W                      ck_ftst         isu-    F-
881 ftrexec         -X                      ck_ftst         isu-    F-
882 fteread         -r                      ck_ftst         isu-    F-
883 ftewrite        -w                      ck_ftst         isu-    F-
884 fteexec         -x                      ck_ftst         isu-    F-
885 ftis            -e                      ck_ftst         isu-    F-
886 fteowned        -o                      ck_ftst         isu-    F-
887 ftrowned        -O                      ck_ftst         isu-    F-
888 ftzero          -z                      ck_ftst         isu-    F-
889 ftsize          -s                      ck_ftst         istu-   F-
890 ftmtime         -M                      ck_ftst         stu-    F-
891 ftatime         -A                      ck_ftst         stu-    F-
892 ftctime         -C                      ck_ftst         stu-    F-
893 ftsock          -S                      ck_ftst         isu-    F-
894 ftchr           -c                      ck_ftst         isu-    F-
895 ftblk           -b                      ck_ftst         isu-    F-
896 ftfile          -f                      ck_ftst         isu-    F-
897 ftdir           -d                      ck_ftst         isu-    F-
898 ftpipe          -p                      ck_ftst         isu-    F-
899 ftlink          -l                      ck_ftst         isu-    F-
900 ftsuid          -u                      ck_ftst         isu-    F-
901 ftsgid          -g                      ck_ftst         isu-    F-
902 ftsvtx          -k                      ck_ftst         isu-    F-
903 fttty           -t                      ck_ftst         is-     F-
904 fttext          -T                      ck_ftst         isu-    F-
905 ftbinary        -B                      ck_ftst         isu-    F-
906
907 # File calls.
908
909 chdir           chdir                   ck_fun          isT%    S?
910 chown           chown                   ck_fun          imsT@   L
911 chroot          chroot                  ck_fun          isTu%   S?
912 unlink          unlink                  ck_fun          imsTu@  L
913 chmod           chmod                   ck_fun          imsT@   L
914 utime           utime                   ck_fun          imsT@   L
915 rename          rename                  ck_fun          isT@    S S
916 link            link                    ck_fun          isT@    S S
917 symlink         symlink                 ck_fun          isT@    S S
918 readlink        readlink                ck_fun          stu%    S?
919 mkdir           mkdir                   ck_fun          isTu@   S? S?
920 rmdir           rmdir                   ck_fun          isTu%   S?
921
922 # Directory calls.
923
924 open_dir        opendir                 ck_fun          is@     F S
925 readdir         readdir                 ck_fun          %       F
926 telldir         telldir                 ck_fun          st%     F
927 seekdir         seekdir                 ck_fun          s@      F S
928 rewinddir       rewinddir               ck_fun          s%      F
929 closedir        closedir                ck_fun          is%     F
930
931 # Process control.
932
933 fork            fork                    ck_null         ist0    
934 wait            wait                    ck_null         isT0    
935 waitpid         waitpid                 ck_fun          isT@    S S
936 system          system                  ck_exec         imsT@   S? L
937 exec            exec                    ck_exec         dimsT@  S? L
938 kill            kill                    ck_fun          dimsT@  L
939 getppid         getppid                 ck_null         isT0    
940 getpgrp         getpgrp                 ck_fun          isT%    S?
941 setpgrp         setpgrp                 ck_fun          isT@    S? S?
942 getpriority     getpriority             ck_fun          isT@    S S
943 setpriority     setpriority             ck_fun          isT@    S S S
944
945 # Time calls.
946
947 # NOTE: MacOS patches the 'i' of time() away later when the interpreter
948 # is created because in MacOS time() is already returning times > 2**31-1,
949 # that is, non-integers.
950
951 time            time                    ck_null         isT0    
952 tms             times                   ck_null         0       
953 localtime       localtime               ck_fun          t%      S?
954 gmtime          gmtime                  ck_fun          t%      S?
955 alarm           alarm                   ck_fun          istu%   S?
956 sleep           sleep                   ck_fun          isT%    S?
957
958 # Shared memory.
959
960 shmget          shmget                  ck_fun          imst@   S S S
961 shmctl          shmctl                  ck_fun          imst@   S S S
962 shmread         shmread                 ck_fun          imst@   S S S S
963 shmwrite        shmwrite                ck_fun          imst@   S S S S
964
965 # Message passing.
966
967 msgget          msgget                  ck_fun          imst@   S S
968 msgctl          msgctl                  ck_fun          imst@   S S S
969 msgsnd          msgsnd                  ck_fun          imst@   S S S
970 msgrcv          msgrcv                  ck_fun          imst@   S S S S S
971
972 # Semaphores.
973
974 semget          semget                  ck_fun          imst@   S S S
975 semctl          semctl                  ck_fun          imst@   S S S S
976 semop           semop                   ck_fun          imst@   S S
977
978 # Eval.
979
980 require         require                 ck_require      du%     S?
981 dofile          do "file"               ck_fun          d1      S
982 entereval       eval "string"           ck_eval         d%      S
983 leaveeval       eval "string" exit      ck_null         1       S
984 #evalonce       eval constant string    ck_null         d1      S
985 entertry        eval {block}            ck_null         |       
986 leavetry        eval {block} exit       ck_null         @       
987
988 # Get system info.
989
990 ghbyname        gethostbyname           ck_fun          %       S
991 ghbyaddr        gethostbyaddr           ck_fun          @       S S
992 ghostent        gethostent              ck_null         0       
993 gnbyname        getnetbyname            ck_fun          %       S
994 gnbyaddr        getnetbyaddr            ck_fun          @       S S
995 gnetent         getnetent               ck_null         0       
996 gpbyname        getprotobyname          ck_fun          %       S
997 gpbynumber      getprotobynumber        ck_fun          @       S
998 gprotoent       getprotoent             ck_null         0       
999 gsbyname        getservbyname           ck_fun          @       S S
1000 gsbyport        getservbyport           ck_fun          @       S S
1001 gservent        getservent              ck_null         0       
1002 shostent        sethostent              ck_fun          is%     S
1003 snetent         setnetent               ck_fun          is%     S
1004 sprotoent       setprotoent             ck_fun          is%     S
1005 sservent        setservent              ck_fun          is%     S
1006 ehostent        endhostent              ck_null         is0     
1007 enetent         endnetent               ck_null         is0     
1008 eprotoent       endprotoent             ck_null         is0     
1009 eservent        endservent              ck_null         is0     
1010 gpwnam          getpwnam                ck_fun          %       S
1011 gpwuid          getpwuid                ck_fun          %       S
1012 gpwent          getpwent                ck_null         0       
1013 spwent          setpwent                ck_null         is0     
1014 epwent          endpwent                ck_null         is0     
1015 ggrnam          getgrnam                ck_fun          %       S
1016 ggrgid          getgrgid                ck_fun          %       S
1017 ggrent          getgrent                ck_null         0       
1018 sgrent          setgrent                ck_null         is0     
1019 egrent          endgrent                ck_null         is0     
1020 getlogin        getlogin                ck_null         st0     
1021
1022 # Miscellaneous.
1023
1024 syscall         syscall                 ck_fun          imst@   S L
1025
1026 # For multi-threading
1027 lock            lock                    ck_rfun         s%      R
1028 threadsv        per-thread value        ck_null         ds0
1029
1030 # Control (contd.)
1031 setstate        set statement info      ck_null         s;
1032 method_named    method with known name  ck_null         d$
1033
1034 dor             defined or (//)                 ck_null         |
1035 dorassign       defined or assignment (//=)     ck_null         s|
1036
1037 entergiven      given()                 ck_null         d|
1038 leavegiven      leave given block       ck_null         1
1039 enterwhen       when()                  ck_null         d|
1040 leavewhen       leave when block        ck_null         1
1041 break           break                   ck_null         0
1042 continue        continue                ck_null         0
1043 smartmatch      smart match             ck_smartmatch   s2
1044
1045 say             say                     ck_say          ims@    F? L
1046
1047 # Add new ops before this, the custom operator.
1048
1049 custom          unknown custom operator         ck_null         0