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