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