This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regen/mk_invlists.pl: Add dependency
[perl5.git] / regen / opcodes
CommitLineData
f8a58b02
NC
1# New ops always go at the end
2# The restriction on having custom as the last op has been removed
3
4# A recapitulation of the format of this file:
5# The file consists of five columns: the name of the op, an English
6# description, the name of the "check" routine used to optimize this
7# operation, some flags, and a description of the operands.
8
9# The flags consist of options followed by a mandatory op class signifier
10
11# The classes are:
12# baseop - 0 unop - 1 binop - 2
13# logop - | listop - @ pmop - /
14# padop/svop - $ padop - # (unused) loop - {
15# baseop/unop - % loopexop - } filestatop - -
b46e009d 16# pvop/svop - " cop - ; methop - .
2f7c6295 17# unop_aux - +
f8a58b02
NC
18
19# Other options are:
738ec380
DM
20# needs stack mark - m (OA_MARK)
21# needs constant folding - f (OA_FOLDCONST)
22# produces a scalar - s (OA_RETSCALAR)
23# produces an integer - i (unused)
24# needs a target - t (OA_TARGET)
25# target can be in a pad - T (OA_TARGET|OA_TARGLEX)
26# has a corresponding integer version - I (OA_OTHERINT)
e791f90a 27# make temp copy in list assignment - d (OA_DANGEROUS)
738ec380 28# uses $_ if no argument given - u (OA_DEFGV)
f8a58b02
NC
29
30# Values for the operands are:
31# scalar - S list - L array - A
32# hash - H sub (CV) - C file - F
33# socket - Fs filetest - F- filetest_access - F-+
a9f19d0f 34# num-compare - S< dirhandle - DF infix bitwise - S|
f8a58b02
NC
35
36# reference - R
37# "?" denotes an optional operand.
38
39# Nothing.
40
41null null operation ck_null 0
42stub stub ck_null 0
43scalar scalar ck_fun s% S
44
45# Pushy stuff.
46
47pushmark pushmark ck_null s0
48wantarray wantarray ck_null is0
49
50const constant item ck_svconst s$
51
52gvsv scalar variable ck_null ds$
53gv glob value ck_null ds$
6e372f32 54gelem glob elem ck_null ds2 S S
f8a58b02
NC
55padsv private variable ck_null ds0
56padav private array ck_null d0
57padhv private hash ck_null d0
58padany private value ck_null d0
59
60pushre push regexp ck_null d/
61
62# References and stuff.
63
64rv2gv ref-to-glob cast ck_rvconst ds1
65rv2sv scalar dereference ck_rvconst ds1
66av2arylen array length ck_null is1
67rv2cv subroutine dereference ck_rvconst d1
01762542 68anoncode anonymous subroutine ck_anoncode s$
eb4ec35b 69prototype subroutine prototype ck_prototype su% S?
f8a58b02
NC
70refgen reference constructor ck_spair m1 L
71srefgen single ref constructor ck_null fs1 S
72ref reference-type operator ck_fun stu% S?
73bless bless ck_fun s@ S S?
74
75# Pushy I/O.
76
9ce1fb7d 77backtick quoted execution (``, qx) ck_backtick tu% S?
f8a58b02
NC
78# glob defaults its first arg to $_
79glob glob ck_glob t@ S?
80readline <HANDLE> ck_readline t% F?
81rcatline append I/O operator ck_null t$
82
83# Bindable operators.
84
85regcmaybe regexp internal guard ck_fun s1 S
86regcreset regexp internal reset ck_fun s1 S
87regcomp regexp compilation ck_null s| S
9d99d451 88match pattern match (m//) ck_match /
f8a58b02 89qr pattern quote (qr//) ck_match s/
7f581e76
FC
90subst substitution (s///) ck_match is/ S
91substcont substitution iterator ck_null is|
f8a58b02 92trans transliteration (tr///) ck_match is" S
bfa14884
NC
93# y///r
94transr transliteration (tr///) ck_match is" S
f8a58b02
NC
95
96# Lvalue operators.
97# sassign is special-cased for op class
98
99sassign scalar assignment ck_sassign s0
100aassign list assignment ck_null t2 L L
101
102chop chop ck_spair mts% L
103schop scalar chop ck_null stu% S?
104chomp chomp ck_spair mTs% L
105schomp scalar chomp ck_null sTu% S?
106defined defined operator ck_defined isu% S?
89c5c07e 107undef undef operator ck_fun s% R?
f8a58b02 108study study ck_fun su% S?
abe56f58 109pos match position ck_fun stu% R?
f8a58b02
NC
110
111preinc preincrement (++) ck_lfun dIs1 S
112i_preinc integer preincrement (++) ck_lfun dis1 S
113predec predecrement (--) ck_lfun dIs1 S
114i_predec integer predecrement (--) ck_lfun dis1 S
3baa0581
FC
115postinc postincrement (++) ck_lfun Ist1 S
116i_postinc integer postincrement (++) ck_lfun ist1 S
117postdec postdecrement (--) ck_lfun Ist1 S
118i_postdec integer postdecrement (--) ck_lfun ist1 S
f8a58b02
NC
119
120# Ordinary operators.
121
122pow exponentiation (**) ck_null fsT2 S S
123
124multiply multiplication (*) ck_null IfsT2 S S
125i_multiply integer multiplication (*) ck_null ifsT2 S S
126divide division (/) ck_null IfsT2 S S
127i_divide integer division (/) ck_null ifsT2 S S
128modulo modulus (%) ck_null IifsT2 S S
129i_modulo integer modulus (%) ck_null ifsT2 S S
21639bf4 130repeat repeat (x) ck_repeat fmt2 L S
f8a58b02
NC
131
132add addition (+) ck_null IfsT2 S S
133i_add integer addition (+) ck_null ifsT2 S S
134subtract subtraction (-) ck_null IfsT2 S S
135i_subtract integer subtraction (-) ck_null ifsT2 S S
136concat concatenation (.) or string ck_concat fsT2 S S
73f4c4fe 137stringify string ck_stringify fsT@ S
f8a58b02
NC
138
139left_shift left bitshift (<<) ck_bitop fsT2 S S
140right_shift right bitshift (>>) ck_bitop fsT2 S S
141
89474f50
FC
142lt numeric lt (<) ck_cmp Iifs2 S S<
143i_lt integer lt (<) ck_cmp ifs2 S S<
144gt numeric gt (>) ck_cmp Iifs2 S S<
145i_gt integer gt (>) ck_cmp ifs2 S S<
146le numeric le (<=) ck_cmp Iifs2 S S<
147i_le integer le (<=) ck_cmp ifs2 S S<
148ge numeric ge (>=) ck_cmp Iifs2 S S<
149i_ge integer ge (>=) ck_cmp ifs2 S S<
2b420b63
JC
150eq numeric eq (==) ck_null Iifs2 S S<
151i_eq integer eq (==) ck_null ifs2 S S<
152ne numeric ne (!=) ck_null Iifs2 S S<
153i_ne integer ne (!=) ck_null ifs2 S S<
154ncmp numeric comparison (<=>) ck_null Iifst2 S S<
21639bf4 155i_ncmp integer comparison (<=>) ck_null ifst2 S S<
f8a58b02
NC
156
157slt string lt ck_null ifs2 S S
158sgt string gt ck_null ifs2 S S
159sle string le ck_null ifs2 S S
160sge string ge ck_null ifs2 S S
161seq string eq ck_null ifs2 S S
162sne string ne ck_null ifs2 S S
21639bf4 163scmp string comparison (cmp) ck_null ifst2 S S
f8a58b02 164
a9f19d0f
FC
165bit_and bitwise and (&) ck_bitop fst2 S S|
166bit_xor bitwise xor (^) ck_bitop fst2 S S|
167bit_or bitwise or (|) ck_bitop fst2 S S|
168nbit_and numeric bitiwse and (&) ck_bitop fsT2 S S|
169nbit_xor numeric bitwise xor (^) ck_bitop fsT2 S S|
170nbit_or numeric bitwise or (|) ck_bitop fsT2 S S|
171sbit_and string bitiwse and (&) ck_bitop fst2 S S|
172sbit_xor string bitwise xor (^) ck_bitop fst2 S S|
173sbit_or string bitwise or (|) ck_bitop fst2 S S|
f8a58b02
NC
174
175negate negation (-) ck_null Ifst1 S
a9dec3fe 176i_negate integer negation (-) ck_null ifst1 S
f8a58b02 177not not ck_null ifs1 S
21639bf4 178complement 1's complement (~) ck_bitop fst1 S
5d01050a 179ncomplement numeric 1's complement (~) ck_bitop fsT1 S
a6eb74ec
FC
180# scomplement uses ck_bitop only for the experimental warning. Once the
181# warning is gone, this can change to ck_null.
182scomplement string 1's complement (~) ck_bitop fsT1 S
f8a58b02
NC
183
184smartmatch smart match ck_smartmatch s2
185
186# High falutin' math.
187
188atan2 atan2 ck_fun fsT@ S S
189sin sin ck_fun fsTu% S?
190cos cos ck_fun fsTu% S?
191rand rand ck_fun sT% S?
192srand srand ck_fun sT% S?
193exp exp ck_fun fsTu% S?
194log log ck_fun fsTu% S?
195sqrt sqrt ck_fun fsTu% S?
196
197# Lowbrow math.
198
199int int ck_fun fsTu% S?
200hex hex ck_fun fsTu% S?
201oct oct ck_fun fsTu% S?
202abs abs ck_fun fsTu% S?
203
204# String stuff.
205
e508c8a4 206length length ck_length ifsTu% S?
f8a58b02 207substr substr ck_substr st@ S S S? S?
21639bf4 208vec vec ck_fun ist@ S S S
f8a58b02
NC
209
210index index ck_index isT@ S S S?
211rindex rindex ck_index isT@ S S S?
212
69974ce6 213sprintf sprintf ck_lfun fmst@ S L
f8a58b02
NC
214formline formline ck_fun ms@ S L
215ord ord ck_fun ifsTu% S?
216chr chr ck_fun fsTu% S?
217crypt crypt ck_fun fsT@ S S
218ucfirst ucfirst ck_fun fstu% S?
219lcfirst lcfirst ck_fun fstu% S?
220uc uc ck_fun fstu% S?
221lc lc ck_fun fstu% S?
222quotemeta quotemeta ck_fun fstu% S?
223
224# Arrays.
225
226rv2av array dereference ck_rvconst dt1
689d8423 227aelemfast constant array element ck_null ds$ A S
bfa14884 228aelemfast_lex constant lexical array element ck_null d0 A S
f8a58b02
NC
229aelem array element ck_null s2 A S
230aslice array slice ck_null m@ A L
6dd3e0f2 231kvaslice index/value array slice ck_null m@ A L
f8a58b02 232
d86b3122 233aeach each on array ck_each d% A
f8a58b02 234akeys keys on array ck_each t% A
d86b3122 235avalues values on array ck_each dt% A
f8a58b02
NC
236
237# Hashes.
238
d86b3122
FC
239each each ck_each d% H
240values values ck_each dt% H
f8a58b02
NC
241keys keys ck_each t% H
242delete delete ck_delete % S
243exists exists ck_exists is% S
1a8bdda9 244rv2hv hash dereference ck_rvconst d1
f8a58b02
NC
245helem hash element ck_null s2 H S
246hslice hash slice ck_null m@ H L
5cae3edb 247kvhslice key/value hash slice ck_null m@ H L
f8a58b02 248
fedf30e1
DM
249# mixed array and hash access
250
251multideref array or hash lookup ck_null ds+
252
f8a58b02
NC
253# Explosives and implosives.
254
ea5703f4 255unpack unpack ck_fun u@ S S?
dd9a6ccf 256pack pack ck_fun fmst@ S L
21639bf4 257split split ck_split t@ S S S
987c9691 258join join or string ck_join fmst@ S L
f8a58b02
NC
259
260# List operators.
261
262list list ck_null m@ L
263lslice list slice ck_null 2 H L L
26321c2d 264anonlist anonymous array ([]) ck_fun ms@ L
f8a58b02
NC
265anonhash anonymous hash ({}) ck_fun ms@ L
266
d4fc4415
FC
267splice splice ck_fun m@ A S? S? L
268push push ck_fun imsT@ A L
f8a58b02
NC
269pop pop ck_shift s% A?
270shift shift ck_shift s% A?
d4fc4415 271unshift unshift ck_fun imsT@ A L
61aeaf96 272sort sort ck_sort m@ C? L
f8a58b02
NC
273reverse reverse ck_fun mt@ L
274
f39944c1
FC
275grepstart grep ck_grep m@ C L
276grepwhile grep iterator ck_null t|
f8a58b02 277
f39944c1
FC
278mapstart map ck_grep m@ C L
279mapwhile map iterator ck_null t|
f8a58b02
NC
280
281# Range stuff.
282
283range flipflop ck_null | S S
284flip range (or flip) ck_null 1 S S
285flop range (or flop) ck_null 1
286
287# Control.
288
289and logical and (&&) ck_null |
290or logical or (||) ck_null |
291xor logical xor ck_null fs2 S S
292dor defined or (//) ck_null |
aafd37e7 293cond_expr conditional expression ck_null |
f8a58b02
NC
294andassign logical and assignment (&&=) ck_null s|
295orassign logical or assignment (||=) ck_null s|
296dorassign defined or assignment (//=) ck_null s|
297
b46e009d 298method method lookup ck_method d.
57ee255e 299entersub subroutine entry ck_subr dm1 L
f8a58b02
NC
300leavesub subroutine exit ck_null 1
301leavesublv lvalue subroutine return ck_null 1
302caller caller ck_fun t% S?
303warn warn ck_fun imst@ L
2eb51413 304die die ck_fun imst@ L
f8a58b02
NC
305reset symbol reset ck_fun is% S?
306
307lineseq line sequence ck_null @
308nextstate next statement ck_null s;
309dbstate debug next statement ck_null s;
310unstack iteration finalizer ck_null s0
311enter block entry ck_null 0
312leave block exit ck_null @
313scope block ck_null @
314enteriter foreach loop entry ck_null d{
315iter foreach loop iterator ck_null 0
316enterloop loop entry ck_null d{
317leaveloop loop exit ck_null 2
b31e13ff
FC
318return return ck_return m@ L
319last last ck_null s}
320next next ck_null s}
321redo redo ck_null s}
f8a58b02 322dump dump ck_null ds}
b31e13ff 323goto goto ck_null s}
26812b4a 324exit exit ck_fun s% S?
b46e009d 325method_named method with known name ck_null d.
7d6c333c 326method_super super with known name ck_null d.
810bd8b7 327method_redir redirect method with known name ck_null d.
328method_redir_super redirect super method with known name ck_null d.
f8a58b02
NC
329
330entergiven given() ck_null d|
331leavegiven leave given block ck_null 1
332enterwhen when() ck_null d|
333leavewhen leave when block ck_null 1
334break break ck_null 0
335continue continue ck_null 0
336
337# I/O.
338
339open open ck_open ismt@ F S? L
340close close ck_fun is% F?
341pipe_op pipe ck_fun is@ F F
342
343fileno fileno ck_fun ist% F
344umask umask ck_fun ist% S?
345binmode binmode ck_fun s@ F S?
346
347tie tie ck_fun idms@ R S L
348untie untie ck_fun is% R
6575cde0 349tied tied ck_fun ds% R
f8a58b02
NC
350dbmopen dbmopen ck_fun is@ H S S
351dbmclose dbmclose ck_fun is% H
352
353sselect select system call ck_select t@ S S S S
354select select ck_select st@ F?
355
356getc getc ck_eof st% F?
357read read ck_fun imst@ F R S S?
fc5ae97d 358enterwrite write ck_fun is% F?
f8a58b02
NC
359leavewrite write exit ck_null 1
360
361prtf printf ck_listiob ims@ F? L
362print print ck_listiob ims@ F? L
363say say ck_listiob ims@ F? L
364
365sysopen sysopen ck_fun s@ F S S S?
366sysseek sysseek ck_fun s@ F S S
367sysread sysread ck_fun imst@ F R S S?
368syswrite syswrite ck_fun imst@ F S S? S?
369
370eof eof ck_eof is% F?
8dc99089 371tell tell ck_tell st% F?
423e8af5 372seek seek ck_tell s@ F S S
f8a58b02
NC
373# truncate really behaves as if it had both "S S" and "F S"
374truncate truncate ck_trunc is@ S S
375
376fcntl fcntl ck_fun st@ F S S
377ioctl ioctl ck_fun st@ F S S
378flock flock ck_fun isT@ F S
379
380# Sockets. OP_IS_SOCKET wants them consecutive (so moved 1st 2)
381
382send send ck_fun imst@ Fs S S S?
383recv recv ck_fun imst@ Fs R S S
384
385socket socket ck_fun is@ Fs S S S
386sockpair socketpair ck_fun is@ Fs Fs S S S
387
388bind bind ck_fun is@ Fs S
389connect connect ck_fun is@ Fs S
390listen listen ck_fun is@ Fs S
391accept accept ck_fun ist@ Fs Fs
392shutdown shutdown ck_fun ist@ Fs S
393
394gsockopt getsockopt ck_fun is@ Fs S S
395ssockopt setsockopt ck_fun is@ Fs S S S
396
397getsockname getsockname ck_fun is% Fs
398getpeername getpeername ck_fun is% Fs
399
400# Stat calls. OP_IS_FILETEST wants them consecutive.
401
465bc0f5
FC
402lstat lstat ck_ftst u- F?
403stat stat ck_ftst u- F?
f8a58b02
NC
404ftrread -R ck_ftst isu- F-+
405ftrwrite -W ck_ftst isu- F-+
406ftrexec -X ck_ftst isu- F-+
407fteread -r ck_ftst isu- F-+
408ftewrite -w ck_ftst isu- F-+
409fteexec -x ck_ftst isu- F-+
410ftis -e ck_ftst isu- F-
411ftsize -s ck_ftst istu- F-
412ftmtime -M ck_ftst stu- F-
413ftatime -A ck_ftst stu- F-
414ftctime -C ck_ftst stu- F-
415ftrowned -O ck_ftst isu- F-
416fteowned -o ck_ftst isu- F-
417ftzero -z ck_ftst isu- F-
418ftsock -S ck_ftst isu- F-
419ftchr -c ck_ftst isu- F-
420ftblk -b ck_ftst isu- F-
421ftfile -f ck_ftst isu- F-
422ftdir -d ck_ftst isu- F-
423ftpipe -p ck_ftst isu- F-
424ftsuid -u ck_ftst isu- F-
425ftsgid -g ck_ftst isu- F-
426ftsvtx -k ck_ftst isu- F-
427ftlink -l ck_ftst isu- F-
428fttty -t ck_ftst is- F-
429fttext -T ck_ftst isu- F-
430ftbinary -B ck_ftst isu- F-
431
432# File calls.
433
434# chdir really behaves as if it had both "S?" and "F?"
8777c9be 435chdir chdir ck_trunc isT% S?
f8a58b02
NC
436chown chown ck_fun imsT@ L
437chroot chroot ck_fun isTu% S?
438unlink unlink ck_fun imsTu@ L
439chmod chmod ck_fun imsT@ L
440utime utime ck_fun imsT@ L
441rename rename ck_fun isT@ S S
442link link ck_fun isT@ S S
443symlink symlink ck_fun isT@ S S
444readlink readlink ck_fun stu% S?
445mkdir mkdir ck_fun isTu@ S? S?
446rmdir rmdir ck_fun isTu% S?
447
448# Directory calls.
449
450open_dir opendir ck_fun is@ F S
332c2eac
JC
451readdir readdir ck_fun % DF
452telldir telldir ck_fun st% DF
453seekdir seekdir ck_fun s@ DF S
454rewinddir rewinddir ck_fun s% DF
455closedir closedir ck_fun is% DF
f8a58b02
NC
456
457# Process control.
458
459fork fork ck_null ist0
460wait wait ck_null isT0
461waitpid waitpid ck_fun isT@ S S
462system system ck_exec imsT@ S? L
1062548a 463exec exec ck_exec imsT@ S? L
9618b155 464kill kill ck_fun imsT@ L
f8a58b02
NC
465getppid getppid ck_null isT0
466getpgrp getpgrp ck_fun isT% S?
467setpgrp setpgrp ck_fun isT@ S? S?
468getpriority getpriority ck_fun isT@ S S
469setpriority setpriority ck_fun isT@ S S S
470
471# Time calls.
472
f8a58b02
NC
473time time ck_null isT0
474tms times ck_null 0
475localtime localtime ck_fun t% S?
476gmtime gmtime ck_fun t% S?
477alarm alarm ck_fun istu% S?
478sleep sleep ck_fun isT% S?
479
480# Shared memory.
481
482shmget shmget ck_fun imst@ S S S
483shmctl shmctl ck_fun imst@ S S S
484shmread shmread ck_fun imst@ S S S S
485shmwrite shmwrite ck_fun imst@ S S S S
486
487# Message passing.
488
489msgget msgget ck_fun imst@ S S
490msgctl msgctl ck_fun imst@ S S S
491msgsnd msgsnd ck_fun imst@ S S S
492msgrcv msgrcv ck_fun imst@ S S S S S
493
494# Semaphores.
495
496semop semop ck_fun imst@ S S
497semget semget ck_fun imst@ S S S
498semctl semctl ck_fun imst@ S S S S
499
500# Eval.
501
353d8d11 502require require ck_require dsu% S?
f8a58b02
NC
503dofile do "file" ck_fun d1 S
504hintseval eval hints ck_svconst s$
7d789282 505entereval eval "string" ck_eval du% S?
f8a58b02 506leaveeval eval "string" exit ck_null 1 S
f8a58b02
NC
507entertry eval {block} ck_eval d|
508leavetry eval {block} exit ck_null @
509
510# Get system info.
511
512ghbyname gethostbyname ck_fun % S
513ghbyaddr gethostbyaddr ck_fun @ S S
514ghostent gethostent ck_null 0
515gnbyname getnetbyname ck_fun % S
516gnbyaddr getnetbyaddr ck_fun @ S S
517gnetent getnetent ck_null 0
518gpbyname getprotobyname ck_fun % S
519gpbynumber getprotobynumber ck_fun @ S
520gprotoent getprotoent ck_null 0
521gsbyname getservbyname ck_fun @ S S
522gsbyport getservbyport ck_fun @ S S
523gservent getservent ck_null 0
524shostent sethostent ck_fun is% S
525snetent setnetent ck_fun is% S
526sprotoent setprotoent ck_fun is% S
527sservent setservent ck_fun is% S
528ehostent endhostent ck_null is0
529enetent endnetent ck_null is0
530eprotoent endprotoent ck_null is0
531eservent endservent ck_null is0
532gpwnam getpwnam ck_fun % S
533gpwuid getpwuid ck_fun % S
534gpwent getpwent ck_null 0
535spwent setpwent ck_null is0
536epwent endpwent ck_null is0
537ggrnam getgrnam ck_fun % S
538ggrgid getgrgid ck_fun % S
539ggrent getgrent ck_null 0
540sgrent setgrent ck_null is0
541egrent endgrent ck_null is0
542getlogin getlogin ck_null st0
543
544# Miscellaneous.
545
546syscall syscall ck_fun imst@ S L
547
548# For multi-threading
549lock lock ck_rfun s% R
550
551# For state support
552
553once once ck_null |
554
555custom unknown custom operator ck_null 0
556
557# For smart dereference for each/keys/values
d86b3122 558reach each on reference ck_each d% S
f8a58b02 559rkeys keys on reference ck_each t% S
d86b3122 560rvalues values on reference ck_each dt% S
deb8a388
FC
561
562# For CORE:: subs
563coreargs CORE:: subroutine ck_null $
84ed0108
FC
564
565runcv __SUB__ ck_null s0
838f2281
BF
566
567# fc and \F
568fc fc ck_fun fstu% S?
ac217057
FC
569
570padcv private subroutine ck_null d0
ecf9c8b7 571introcv private subroutine ck_null d0
13f89586 572clonecv private subroutine ck_null d0
a7fd8ef6 573padrange list of private variables ck_null d0
6e372f32 574refassign lvalue ref assignment ck_refassign ds2
4b6cf48b 575lvref lvalue ref assignment ck_null d%
16b99412 576lvrefslice lvalue ref assignment ck_null d@
2882b3ff 577lvavref lvalue array reference ck_null d%
b77472f9 578anonconst anonymous constant ck_null ds1