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