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