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