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