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