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