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