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