This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix deparsing of undefined hint hash values
[perl5.git] / dist / B-Deparse / Deparse.pm
CommitLineData
6e90668e 1# B::Deparse.pm
4ca8de37
SM
2# Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.
3# All rights reserved.
6e90668e
SM
4# This module is free software; you can redistribute and/or modify
5# it under the same terms as Perl itself.
6
7# This is based on the module of the same name by Malcolm Beattie,
8# but essentially none of his code remains.
9
a798dbf2 10package B::Deparse;
ff97752d 11use Carp;
51a5edaf 12use B qw(class main_root main_start main_cv svref_2object opnumber perlstring
bd0865ec 13 OPf_WANT OPf_WANT_VOID OPf_WANT_SCALAR OPf_WANT_LIST
2be95ceb 14 OPf_KIDS OPf_REF OPf_STACKED OPf_SPECIAL OPf_MOD
ce4e655d 15 OPpLVAL_INTRO OPpOUR_INTRO OPpENTERSUB_AMPER OPpSLICE OPpCONST_BARE
3ed82cfc 16 OPpTRANS_SQUASH OPpTRANS_DELETE OPpTRANS_COMPLEMENT OPpTARGET_MY
e1dccc0d 17 OPpEXISTS_SUB OPpSORT_NUMERIC OPpSORT_INTEGER
2be95ceb 18 OPpSORT_REVERSE
d989cdac 19 SVf_IOK SVf_NOK SVf_ROK SVf_POK SVpad_OUR SVf_FAKE SVs_RMG SVs_SMG
e95ab0c0 20 CVf_METHOD CVf_LVALUE
2be95ceb 21 PMf_KEEP PMf_GLOBAL PMf_CONTINUE PMf_EVAL PMf_ONCE
ff0cf12f 22 PMf_MULTILINE PMf_SINGLELINE PMf_FOLD PMf_EXTENDED);
540b6786 23$VERSION = "1.10";
a798dbf2 24use strict;
2ae48fff 25use vars qw/$AUTOLOAD/;
34a48b4b 26use warnings ();
a798dbf2 27
aa381260 28BEGIN {
ff0cf12f 29 # List version-specific constants here.
2be95ceb
NC
30 # Easiest way to keep this code portable between version looks to
31 # be to fake up a dummy constant that will never actually be true.
32 foreach (qw(OPpSORT_INPLACE OPpSORT_DESCEND OPpITER_REVERSED OPpCONST_NOVER
ff0cf12f 33 OPpPAD_STATE PMf_SKIPWHITE RXf_SKIPWHITE
24fcb59f 34 CVf_LOCKED OPpREVERSE_INPLACE OPpSUBSTR_REPL_FIRST
7d789282 35 PMf_NONDESTRUCT OPpCONST_ARYBASE OPpEVAL_BYTES)) {
ff0cf12f 36 eval { import B $_ };
2be95ceb
NC
37 no strict 'refs';
38 *{$_} = sub () {0} unless *{$_}{CODE};
39 }
aa381260
NC
40}
41
6e90668e
SM
42# Changes between 0.50 and 0.51:
43# - fixed nulled leave with live enter in sort { }
44# - fixed reference constants (\"str")
45# - handle empty programs gracefully
c4a6f826 46# - handle infinite loops (for (;;) {}, while (1) {})
e38ccfd9 47# - differentiate between 'for my $x ...' and 'my $x; for $x ...'
6e90668e
SM
48# - various minor cleanups
49# - moved globals into an object
e38ccfd9 50# - added '-u', like B::C
6e90668e
SM
51# - package declarations using cop_stash
52# - subs, formats and code sorted by cop_seq
f6f9bdb7 53# Changes between 0.51 and 0.52:
4d1ff10f 54# - added pp_threadsv (special variables under USE_5005THREADS)
f6f9bdb7 55# - added documentation
bd0865ec 56# Changes between 0.52 and 0.53:
9d2c6865 57# - many changes adding precedence contexts and associativity
e38ccfd9 58# - added '-p' and '-s' output style options
9d2c6865 59# - various other minor fixes
bd0865ec 60# Changes between 0.53 and 0.54:
e38ccfd9 61# - added support for new 'for (1..100)' optimization,
d7f5b6da 62# thanks to Gisle Aas
bd0865ec 63# Changes between 0.54 and 0.55:
90be192f
SM
64# - added support for new qr// construct
65# - added support for new pp_regcreset OP
bd0865ec 66# Changes between 0.55 and 0.56:
f5aa8f4e
SM
67# - tested on base/*.t, cmd/*.t, comp/*.t, io/*.t
68# - fixed $# on non-lexicals broken in last big rewrite
69# - added temporary fix for change in opcode of OP_STRINGIFY
e38ccfd9 70# - fixed problem in 0.54's for() patch in 'for (@ary)'
f5aa8f4e 71# - fixed precedence in conditional of ?:
e38ccfd9 72# - tweaked list paren elimination in 'my($x) = @_'
f5aa8f4e
SM
73# - made continue-block detection trickier wrt. null ops
74# - fixed various prototype problems in pp_entersub
75# - added support for sub prototypes that never get GVs
76# - added unquoting for special filehandle first arg in truncate
e38ccfd9 77# - print doubled rv2gv (a bug) as '*{*GV}' instead of illegal '**GV'
f5aa8f4e 78# - added semicolons at the ends of blocks
e38ccfd9 79# - added -l '#line' declaration option -- fixes cmd/subval.t 27,28
bd0865ec
GS
80# Changes between 0.56 and 0.561:
81# - fixed multiply-declared my var in pp_truncate (thanks to Sarathy)
82# - used new B.pm symbolic constants (done by Nick Ing-Simmons)
83# Changes between 0.561 and 0.57:
84# - stylistic changes to symbolic constant stuff
85# - handled scope in s///e replacement code
86# - added unquote option for expanding "" into concats, etc.
87# - split method and proto parts of pp_entersub into separate functions
88# - various minor cleanups
f4a44678
SM
89# Changes after 0.57:
90# - added parens in \&foo (patch by Albert Dvornik)
91# Changes between 0.57 and 0.58:
e38ccfd9 92# - fixed '0' statements that weren't being printed
f4a44678
SM
93# - added methods for use from other programs
94# (based on patches from James Duncan and Hugo van der Sanden)
95# - added -si and -sT to control indenting (also based on a patch from Hugo)
96# - added -sv to print something else instead of '???'
97# - preliminary version of utf8 tr/// handling
3ed82cfc
GS
98# Changes after 0.58:
99# - uses of $op->ppaddr changed to new $op->name (done by Sarathy)
d989cdac 100# - added support for Hugo's new OP_SETSTATE (like nextstate)
3ed82cfc
GS
101# Changes between 0.58 and 0.59
102# - added support for Chip's OP_METHOD_NAMED
103# - added support for Ilya's OPpTARGET_MY optimization
e38ccfd9 104# - elided arrows before '()' subscripts when possible
58cccf98 105# Changes between 0.59 and 0.60
c4a6f826 106# - support for method attributes was added
58cccf98
SM
107# - some warnings fixed
108# - separate recognition of constant subs
c4a6f826 109# - rewrote continue block handling, now recognizing for loops
58cccf98 110# - added more control of expanding control structures
c7f67cde
RH
111# Changes between 0.60 and 0.61 (mostly by Robin Houston)
112# - many bug-fixes
113# - support for pragmas and 'use'
114# - support for the little-used $[ variable
115# - support for __DATA__ sections
116# - UTF8 support
117# - BEGIN, CHECK, INIT and END blocks
118# - scoping of subroutine declarations fixed
119# - compile-time output from the input program can be suppressed, so that the
120# output is just the deparsed code. (a change to O.pm in fact)
121# - our() declarations
122# - *all* the known bugs are now listed in the BUGS section
123# - comprehensive test mechanism (TEST -deparse)
9a58b761
RGS
124# Changes between 0.62 and 0.63 (mostly by Rafael Garcia-Suarez)
125# - bug-fixes
126# - new switch -P
127# - support for command-line switches (-l, -0, etc.)
d989cdac
SM
128# Changes between 0.63 and 0.64
129# - support for //, CHECK blocks, and assertions
130# - improved handling of foreach loops and lexicals
131# - option to use Data::Dumper for constants
132# - more bug fixes
133# - discovered lots more bugs not yet fixed
0d863452
RH
134#
135# ...
136#
137# Changes between 0.72 and 0.73
138# - support new switch constructs
6e90668e
SM
139
140# Todo:
2a9e2f8a
RH
141# (See also BUGS section at the end of this file)
142#
f4a44678
SM
143# - finish tr/// changes
144# - add option for even more parens (generalize \&foo change)
90be192f 145# - left/right context
58cccf98 146# - copy comments (look at real text with $^P?)
f5aa8f4e 147# - avoid semis in one-statement blocks
9d2c6865 148# - associativity of &&=, ||=, ?:
6e90668e
SM
149# - ',' => '=>' (auto-unquote?)
150# - break long lines ("\r" as discretionary break?)
f4a44678
SM
151# - configurable syntax highlighting: ANSI color, HTML, TeX, etc.
152# - more style options: brace style, hex vs. octal, quotes, ...
153# - print big ints as hex/octal instead of decimal (heuristic?)
e38ccfd9 154# - handle 'my $x if 0'?
6e90668e
SM
155# - version using op_next instead of op_first/sibling?
156# - avoid string copies (pass arrays, one big join?)
9d2c6865 157# - here-docs?
6e90668e 158
d989cdac 159# Current test.deparse failures
d989cdac
SM
160# comp/hints 6 - location of BEGIN blocks wrt. block openings
161# run/switchI 1 - missing -I switches entirely
162# perl -Ifoo -e 'print @INC'
163# op/caller 2 - warning mask propagates backwards before warnings::register
164# 'use warnings; BEGIN {${^WARNING_BITS} eq "U"x12;} use warnings::register'
165# op/getpid 2 - can't assign to shared my() declaration (threads only)
166# 'my $x : shared = 5'
c4a6f826 167# op/override 7 - parens on overridden require change v-string interpretation
d989cdac
SM
168# 'BEGIN{*CORE::GLOBAL::require=sub {}} require v5.6'
169# c.f. 'BEGIN { *f = sub {0} }; f 2'
170# op/pat 774 - losing Unicode-ness of Latin1-only strings
171# 'use charnames ":short"; $x="\N{latin:a with acute}"'
172# op/recurse 12 - missing parens on recursive call makes it look like method
173# 'sub f { f($x) }'
174# op/subst 90 - inconsistent handling of utf8 under "use utf8"
175# op/taint 29 - "use re 'taint'" deparsed in the wrong place wrt. block open
176# op/tiehandle compile - "use strict" deparsed in the wrong place
177# uni/tr_ several
178# ext/B/t/xref 11 - line numbers when we add newlines to one-line subs
179# ext/Data/Dumper/t/dumper compile
180# ext/DB_file/several
181# ext/Encode/several
182# ext/Ernno/Errno warnings
183# ext/IO/lib/IO/t/io_sel 23
184# ext/PerlIO/t/encoding compile
185# ext/POSIX/t/posix 6
186# ext/Socket/Socket 8
187# ext/Storable/t/croak compile
188# lib/Attribute/Handlers/t/multi compile
189# lib/bignum/ several
190# lib/charnames 35
191# lib/constant 32
192# lib/English 40
193# lib/ExtUtils/t/bytes 4
194# lib/File/DosGlob compile
195# lib/Filter/Simple/t/data 1
196# lib/Math/BigInt/t/constant 1
197# lib/Net/t/config Deparse-warning
198# lib/overload compile
199# lib/Switch/ several
200# lib/Symbol 4
201# lib/Test/Simple several
202# lib/Term/Complete
203# lib/Tie/File/t/29_downcopy 5
204# lib/vars 22
f5aa8f4e 205
6e90668e
SM
206# Object fields (were globals):
207#
208# avoid_local:
209# (local($a), local($b)) and local($a, $b) have the same internal
210# representation but the short form looks better. We notice we can
211# use a large-scale local when checking the list, but need to prevent
d989cdac 212# individual locals too. This hash holds the addresses of OPs that
6e90668e
SM
213# have already had their local-ness accounted for. The same thing
214# is done with my().
215#
216# curcv:
217# CV for current sub (or main program) being deparsed
218#
8510e997
RH
219# curcvlex:
220# Cached hash of lexical variables for curcv: keys are names,
221# each value is an array of pairs, indicating the cop_seq of scopes
222# in which a var of that name is valid.
223#
34a48b4b
RH
224# curcop:
225# COP for statement being deparsed
226#
6e90668e
SM
227# curstash:
228# name of the current package for deparsed code
229#
230# subs_todo:
34a48b4b 231# array of [cop_seq, CV, is_format?] for subs and formats we still
6e90668e
SM
232# want to deparse
233#
f5aa8f4e
SM
234# protos_todo:
235# as above, but [name, prototype] for subs that never got a GV
236#
6e90668e
SM
237# subs_done, forms_done:
238# keys are addresses of GVs for subs and formats we've already
239# deparsed (or at least put into subs_todo)
9d2c6865 240#
0ca62a8e
RH
241# subs_declared
242# keys are names of subs for which we've printed declarations.
4a1ac32e
FC
243# That means we can omit parentheses from the arguments. It also means we
244# need to put CORE:: on core functions of the same name.
0ca62a8e 245#
1d38190f
RGS
246# subs_deparsed
247# Keeps track of fully qualified names of all deparsed subs.
248#
9d2c6865 249# parens: -p
f5aa8f4e 250# linenums: -l
bd0865ec 251# unquote: -q
e38ccfd9 252# cuddle: ' ' or '\n', depending on -sC
f4a44678
SM
253# indent_size: -si
254# use_tabs: -sT
255# ex_const: -sv
9d2c6865
SM
256
257# A little explanation of how precedence contexts and associativity
258# work:
259#
260# deparse() calls each per-op subroutine with an argument $cx (short
261# for context, but not the same as the cx* in the perl core), which is
262# a number describing the op's parents in terms of precedence, whether
f5aa8f4e 263# they're inside an expression or at statement level, etc. (see
9d2c6865
SM
264# chart below). When ops with children call deparse on them, they pass
265# along their precedence. Fractional values are used to implement
e38ccfd9 266# associativity ('($x + $y) + $z' => '$x + $y + $y') and related
9d2c6865
SM
267# parentheses hacks. The major disadvantage of this scheme is that
268# it doesn't know about right sides and left sides, so say if you
269# assign a listop to a variable, it can't tell it's allowed to leave
270# the parens off the listop.
271
272# Precedences:
273# 26 [TODO] inside interpolation context ("")
274# 25 left terms and list operators (leftward)
275# 24 left ->
276# 23 nonassoc ++ --
277# 22 right **
278# 21 right ! ~ \ and unary + and -
279# 20 left =~ !~
280# 19 left * / % x
281# 18 left + - .
282# 17 left << >>
283# 16 nonassoc named unary operators
284# 15 nonassoc < > <= >= lt gt le ge
285# 14 nonassoc == != <=> eq ne cmp
286# 13 left &
287# 12 left | ^
288# 11 left &&
289# 10 left ||
290# 9 nonassoc .. ...
291# 8 right ?:
292# 7 right = += -= *= etc.
293# 6 left , =>
294# 5 nonassoc list operators (rightward)
295# 4 right not
296# 3 left and
297# 2 left or xor
298# 1 statement modifiers
d989cdac 299# 0.5 statements, but still print scopes as do { ... }
9d2c6865
SM
300# 0 statement level
301
302# Nonprinting characters with special meaning:
303# \cS - steal parens (see maybe_parens_unop)
304# \n - newline and indent
305# \t - increase indent
e38ccfd9 306# \b - decrease indent ('outdent')
f5aa8f4e 307# \f - flush left (no indent)
9d2c6865 308# \cK - kill following semicolon, if any
6e90668e
SM
309
310sub null {
311 my $op = shift;
312 return class($op) eq "NULL";
313}
314
315sub todo {
316 my $self = shift;
34a48b4b 317 my($cv, $is_form) = @_;
e31885a0 318 return unless ($cv->FILE eq $0 || exists $self->{files}{$cv->FILE});
6e90668e 319 my $seq;
d989cdac
SM
320 if ($cv->OUTSIDE_SEQ) {
321 $seq = $cv->OUTSIDE_SEQ;
322 } elsif (!null($cv->START) and is_state($cv->START)) {
6e90668e
SM
323 $seq = $cv->START->cop_seq;
324 } else {
325 $seq = 0;
326 }
34a48b4b 327 push @{$self->{'subs_todo'}}, [$seq, $cv, $is_form];
1d38190f
RGS
328 unless ($is_form || class($cv->STASH) eq 'SPECIAL') {
329 $self->{'subs_deparsed'}{$cv->STASH->NAME."::".$cv->GV->NAME} = 1;
330 }
6e90668e
SM
331}
332
333sub next_todo {
334 my $self = shift;
335 my $ent = shift @{$self->{'subs_todo'}};
34a48b4b
RH
336 my $cv = $ent->[1];
337 my $gv = $cv->GV;
338 my $name = $self->gv_name($gv);
6e90668e
SM
339 if ($ent->[2]) {
340 return "format $name =\n"
e31885a0 341 . $self->deparse_format($ent->[1]). "\n";
6e90668e 342 } else {
0ca62a8e 343 $self->{'subs_declared'}{$name} = 1;
34a48b4b
RH
344 if ($name eq "BEGIN") {
345 my $use_dec = $self->begin_is_use($cv);
d989cdac 346 if (defined ($use_dec) and $self->{'expand'} < 5) {
0e7fe0f0
RH
347 return () if 0 == length($use_dec);
348 return $use_dec;
349 }
34a48b4b 350 }
a0035eb8
RH
351 my $l = '';
352 if ($self->{'linenums'}) {
353 my $line = $gv->LINE;
354 my $file = $gv->FILE;
355 $l = "\n\f#line $line \"$file\"\n";
356 }
127212b2
DM
357 my $p = '';
358 if (class($cv->STASH) ne "SPECIAL") {
359 my $stash = $cv->STASH->NAME;
360 if ($stash ne $self->{'curstash'}) {
361 $p = "package $stash;\n";
362 $name = "$self->{'curstash'}::$name" unless $name =~ /::/;
363 $self->{'curstash'} = $stash;
364 }
8b2d6640 365 $name =~ s/^\Q$stash\E::(?!\z|.*::)//;
127212b2
DM
366 }
367 return "${p}${l}sub $name " . $self->deparse_sub($cv);
34a48b4b
RH
368 }
369}
370
371# Return a "use" declaration for this BEGIN block, if appropriate
372sub begin_is_use {
373 my ($self, $cv) = @_;
374 my $root = $cv->ROOT;
80dc0729 375 local @$self{qw'curcv curcvlex'} = ($cv);
34a48b4b
RH
376#require B::Debug;
377#B::walkoptree($cv->ROOT, "debug");
378 my $lineseq = $root->first;
379 return if $lineseq->name ne "lineseq";
380
381 my $req_op = $lineseq->first->sibling;
382 return if $req_op->name ne "require";
383
384 my $module;
385 if ($req_op->first->private & OPpCONST_BARE) {
386 # Actually it should always be a bareword
387 $module = $self->const_sv($req_op->first)->PV;
388 $module =~ s[/][::]g;
389 $module =~ s/.pm$//;
390 }
391 else {
d989cdac 392 $module = $self->const($self->const_sv($req_op->first), 6);
34a48b4b
RH
393 }
394
395 my $version;
396 my $version_op = $req_op->sibling;
397 return if class($version_op) eq "NULL";
398 if ($version_op->name eq "lineseq") {
399 # We have a version parameter; skip nextstate & pushmark
400 my $constop = $version_op->first->next->next;
401
402 return unless $self->const_sv($constop)->PV eq $module;
403 $constop = $constop->sibling;
a58644de 404 $version = $self->const_sv($constop);
d989cdac
SM
405 if (class($version) eq "IV") {
406 $version = $version->int_value;
407 } elsif (class($version) eq "NV") {
408 $version = $version->NV;
409 } elsif (class($version) ne "PVMG") {
410 # Includes PVIV and PVNV
a58644de
RGS
411 $version = $version->PV;
412 } else {
413 # version specified as a v-string
414 $version = 'v'.join '.', map ord, split //, $version->PV;
415 }
34a48b4b
RH
416 $constop = $constop->sibling;
417 return if $constop->name ne "method_named";
418 return if $self->const_sv($constop)->PV ne "VERSION";
419 }
420
421 $lineseq = $version_op->sibling;
422 return if $lineseq->name ne "lineseq";
423 my $entersub = $lineseq->first->sibling;
424 if ($entersub->name eq "stub") {
425 return "use $module $version ();\n" if defined $version;
426 return "use $module ();\n";
427 }
428 return if $entersub->name ne "entersub";
429
430 # See if there are import arguments
431 my $args = '';
432
6ec152c3
RH
433 my $svop = $entersub->first->sibling; # Skip over pushmark
434 return unless $self->const_sv($svop)->PV eq $module;
34a48b4b
RH
435
436 # Pull out the arguments
6ec152c3
RH
437 for ($svop=$svop->sibling; $svop->name ne "method_named";
438 $svop = $svop->sibling) {
34a48b4b 439 $args .= ", " if length($args);
6ec152c3 440 $args .= $self->deparse($svop, 6);
34a48b4b
RH
441 }
442
443 my $use = 'use';
6ec152c3 444 my $method_named = $svop;
34a48b4b
RH
445 return if $method_named->name ne "method_named";
446 my $method_name = $self->const_sv($method_named)->PV;
447
448 if ($method_name eq "unimport") {
449 $use = 'no';
450 }
451
452 # Certain pragmas are dealt with using hint bits,
453 # so we ignore them here
454 if ($module eq 'strict' || $module eq 'integer'
0ced6c29
RGS
455 || $module eq 'bytes' || $module eq 'warnings'
456 || $module eq 'feature') {
34a48b4b
RH
457 return "";
458 }
459
460 if (defined $version && length $args) {
461 return "$use $module $version ($args);\n";
462 } elsif (defined $version) {
463 return "$use $module $version;\n";
464 } elsif (length $args) {
465 return "$use $module ($args);\n";
466 } else {
467 return "$use $module;\n";
6e90668e
SM
468 }
469}
470
6e90668e 471sub stash_subs {
34a48b4b
RH
472 my ($self, $pack) = @_;
473 my (@ret, $stash);
474 if (!defined $pack) {
475 $pack = '';
476 $stash = \%::;
f5aa8f4e 477 }
34a48b4b
RH
478 else {
479 $pack =~ s/(::)?$/::/;
480 no strict 'refs';
d1dc589d 481 $stash = \%{"main::$pack"};
34a48b4b
RH
482 }
483 my %stash = svref_2object($stash)->ARRAY;
484 while (my ($key, $val) = each %stash) {
f5aa8f4e
SM
485 my $class = class($val);
486 if ($class eq "PV") {
a0035eb8
RH
487 # Just a prototype. As an ugly but fairly effective way
488 # to find out if it belongs here is to see if the AUTOLOAD
489 # (if any) for the stash was defined in one of our files.
490 my $A = $stash{"AUTOLOAD"};
491 if (defined ($A) && class($A) eq "GV" && defined($A->CV)
492 && class($A->CV) eq "CV") {
493 my $AF = $A->FILE;
494 next unless $AF eq $0 || exists $self->{'files'}{$AF};
495 }
f5aa8f4e 496 push @{$self->{'protos_todo'}}, [$pack . $key, $val->PV];
5b4ee549 497 } elsif ($class eq "IV" && !($val->FLAGS & SVf_ROK)) {
a0035eb8 498 # Just a name. As above.
5b4ee549
NC
499 # But skip proxy constant subroutines, as some form of perl-space
500 # visible code must have created them, be it a use statement, or
501 # some direct symbol-table manipulation code that we will Deparse
a0035eb8
RH
502 my $A = $stash{"AUTOLOAD"};
503 if (defined ($A) && class($A) eq "GV" && defined($A->CV)
504 && class($A->CV) eq "CV") {
505 my $AF = $A->FILE;
506 next unless $AF eq $0 || exists $self->{'files'}{$AF};
507 }
d989cdac 508 push @{$self->{'protos_todo'}}, [$pack . $key, undef];
f5aa8f4e 509 } elsif ($class eq "GV") {
34a48b4b 510 if (class(my $cv = $val->CV) ne "SPECIAL") {
f5aa8f4e 511 next if $self->{'subs_done'}{$$val}++;
e31885a0 512 next if $$val != ${$cv->GV}; # Ignore imposters
8510e997 513 $self->todo($cv, 0);
f5aa8f4e 514 }
e31885a0 515 if (class(my $cv = $val->FORM) ne "SPECIAL") {
f5aa8f4e 516 next if $self->{'forms_done'}{$$val}++;
e31885a0
RH
517 next if $$val != ${$cv->GV}; # Ignore imposters
518 $self->todo($cv, 1);
f5aa8f4e 519 }
34a48b4b 520 if (class($val->HV) ne "SPECIAL" && $key =~ /::$/) {
8b2d6640
FC
521 $self->stash_subs($pack . $key)
522 unless $pack eq '' && $key eq 'main::';
523 # avoid infinite recursion
34a48b4b 524 }
6e90668e
SM
525 }
526 }
527}
a798dbf2 528
f5aa8f4e
SM
529sub print_protos {
530 my $self = shift;
531 my $ar;
532 my @ret;
533 foreach $ar (@{$self->{'protos_todo'}}) {
534 my $proto = (defined $ar->[1] ? " (". $ar->[1] . ")" : "");
535 push @ret, "sub " . $ar->[0] . "$proto;\n";
536 }
537 delete $self->{'protos_todo'};
538 return @ret;
539}
540
9d2c6865
SM
541sub style_opts {
542 my $self = shift;
543 my $opts = shift;
544 my $opt;
545 while (length($opt = substr($opts, 0, 1))) {
546 if ($opt eq "C") {
547 $self->{'cuddle'} = " ";
f4a44678
SM
548 $opts = substr($opts, 1);
549 } elsif ($opt eq "i") {
550 $opts =~ s/^i(\d+)//;
551 $self->{'indent_size'} = $1;
552 } elsif ($opt eq "T") {
553 $self->{'use_tabs'} = 1;
554 $opts = substr($opts, 1);
555 } elsif ($opt eq "v") {
556 $opts =~ s/^v([^.]*)(.|$)//;
557 $self->{'ex_const'} = $1;
9d2c6865 558 }
9d2c6865
SM
559 }
560}
561
f4a44678
SM
562sub new {
563 my $class = shift;
564 my $self = bless {}, $class;
f4a44678 565 $self->{'cuddle'} = "\n";
d989cdac
SM
566 $self->{'curcop'} = undef;
567 $self->{'curstash'} = "main";
568 $self->{'ex_const'} = "'???'";
793e2a70 569 $self->{'expand'} = 0;
d989cdac
SM
570 $self->{'files'} = {};
571 $self->{'indent_size'} = 4;
793e2a70
RH
572 $self->{'linenums'} = 0;
573 $self->{'parens'} = 0;
d989cdac
SM
574 $self->{'subs_todo'} = [];
575 $self->{'unquote'} = 0;
576 $self->{'use_dumper'} = 0;
577 $self->{'use_tabs'} = 0;
08c6f5ec 578
bc6b2ef6 579 $self->{'ambient_arybase'} = 0;
e31885a0 580 $self->{'ambient_warnings'} = undef; # Assume no lexical warnings
a0405c92 581 $self->{'ambient_hints'} = 0;
0ced6c29 582 $self->{'ambient_hinthash'} = undef;
08c6f5ec
RH
583 $self->init();
584
f4a44678 585 while (my $arg = shift @_) {
d989cdac
SM
586 if ($arg eq "-d") {
587 $self->{'use_dumper'} = 1;
588 require Data::Dumper;
589 } elsif ($arg =~ /^-f(.*)/) {
34a48b4b 590 $self->{'files'}{$1} = 1;
d989cdac
SM
591 } elsif ($arg eq "-l") {
592 $self->{'linenums'} = 1;
f4a44678
SM
593 } elsif ($arg eq "-p") {
594 $self->{'parens'} = 1;
acaaef34
RGS
595 } elsif ($arg eq "-P") {
596 $self->{'noproto'} = 1;
f4a44678
SM
597 } elsif ($arg eq "-q") {
598 $self->{'unquote'} = 1;
599 } elsif (substr($arg, 0, 2) eq "-s") {
600 $self->style_opts(substr $arg, 2);
58cccf98
SM
601 } elsif ($arg =~ /^-x(\d)$/) {
602 $self->{'expand'} = $1;
f4a44678
SM
603 }
604 }
605 return $self;
606}
607
810aef70
RH
608{
609 # Mask out the bits that L<warnings::register> uses
610 my $WARN_MASK;
611 BEGIN {
612 $WARN_MASK = $warnings::Bits{all} | $warnings::DeadBits{all};
613 }
614 sub WARN_MASK () {
615 return $WARN_MASK;
616 }
34a48b4b
RH
617}
618
08c6f5ec
RH
619# Initialise the contextual information, either from
620# defaults provided with the ambient_pragmas method,
621# or from perl's own defaults otherwise.
622sub init {
623 my $self = shift;
624
bc6b2ef6 625 $self->{'arybase'} = $self->{'ambient_arybase'};
e31885a0
RH
626 $self->{'warnings'} = defined ($self->{'ambient_warnings'})
627 ? $self->{'ambient_warnings'} & WARN_MASK
628 : undef;
d5ec2987 629 $self->{'hints'} = $self->{'ambient_hints'};
e412117e 630 $self->{'hints'} &= 0xFF if $] < 5.009;
0ced6c29 631 $self->{'hinthash'} = $self->{'ambient_hinthash'};
217aba5d
RH
632
633 # also a convenient place to clear out subs_declared
634 delete $self->{'subs_declared'};
08c6f5ec
RH
635}
636
a798dbf2 637sub compile {
6e90668e 638 my(@args) = @_;
d989cdac 639 return sub {
f4a44678 640 my $self = B::Deparse->new(@args);
d2bc402e
RGS
641 # First deparse command-line args
642 if (defined $^I) { # deparse -i
51a5edaf 643 print q(BEGIN { $^I = ).perlstring($^I).qq(; }\n);
d2bc402e
RGS
644 }
645 if ($^W) { # deparse -w
646 print qq(BEGIN { \$^W = $^W; }\n);
647 }
648 if ($/ ne "\n" or defined $O::savebackslash) { # deparse -l and -0
51a5edaf
RGS
649 my $fs = perlstring($/) || 'undef';
650 my $bs = perlstring($O::savebackslash) || 'undef';
d2bc402e
RGS
651 print qq(BEGIN { \$/ = $fs; \$\\ = $bs; }\n);
652 }
34a48b4b 653 my @BEGINs = B::begin_av->isa("B::AV") ? B::begin_av->ARRAY : ();
676456c2
AG
654 my @UNITCHECKs = B::unitcheck_av->isa("B::AV")
655 ? B::unitcheck_av->ARRAY
656 : ();
ece599bd 657 my @CHECKs = B::check_av->isa("B::AV") ? B::check_av->ARRAY : ();
34a48b4b
RH
658 my @INITs = B::init_av->isa("B::AV") ? B::init_av->ARRAY : ();
659 my @ENDs = B::end_av->isa("B::AV") ? B::end_av->ARRAY : ();
676456c2 660 for my $block (@BEGINs, @UNITCHECKs, @CHECKs, @INITs, @ENDs) {
e31885a0 661 $self->todo($block, 0);
34a48b4b
RH
662 }
663 $self->stash_subs();
d989cdac
SM
664 local($SIG{"__DIE__"}) =
665 sub {
666 if ($self->{'curcop'}) {
667 my $cop = $self->{'curcop'};
668 my($line, $file) = ($cop->line, $cop->file);
669 print STDERR "While deparsing $file near line $line,\n";
670 }
671 };
6e90668e 672 $self->{'curcv'} = main_cv;
8510e997 673 $self->{'curcvlex'} = undef;
f5aa8f4e 674 print $self->print_protos;
6e90668e 675 @{$self->{'subs_todo'}} =
f4a44678 676 sort {$a->[0] <=> $b->[0]} @{$self->{'subs_todo'}};
d989cdac 677 print $self->indent($self->deparse_root(main_root)), "\n"
f4a44678 678 unless null main_root;
6e90668e
SM
679 my @text;
680 while (scalar(@{$self->{'subs_todo'}})) {
681 push @text, $self->next_todo;
682 }
6f611a1a 683 print $self->indent(join("", @text)), "\n" if @text;
e31885a0
RH
684
685 # Print __DATA__ section, if necessary
686 no strict 'refs';
96c57f7e
RGS
687 my $laststash = defined $self->{'curcop'}
688 ? $self->{'curcop'}->stash->NAME : $self->{'curstash'};
689 if (defined *{$laststash."::DATA"}{IO}) {
127212b2
DM
690 print "package $laststash;\n"
691 unless $laststash eq $self->{'curstash'};
e31885a0 692 print "__DATA__\n";
96c57f7e 693 print readline(*{$laststash."::DATA"});
e31885a0 694 }
a798dbf2 695 }
a798dbf2
MB
696}
697
f4a44678
SM
698sub coderef2text {
699 my $self = shift;
700 my $sub = shift;
0853f172 701 croak "Usage: ->coderef2text(CODEREF)" unless UNIVERSAL::isa($sub, "CODE");
08c6f5ec
RH
702
703 $self->init();
f4a44678
SM
704 return $self->indent($self->deparse_sub(svref_2object($sub)));
705}
706
08c6f5ec
RH
707sub ambient_pragmas {
708 my $self = shift;
bc6b2ef6 709 my ($arybase, $hint_bits, $warning_bits, $hinthash) = (0, 0);
08c6f5ec
RH
710
711 while (@_ > 1) {
712 my $name = shift();
713 my $val = shift();
714
715 if ($name eq 'strict') {
716 require strict;
717
718 if ($val eq 'none') {
719 $hint_bits &= ~strict::bits(qw/refs subs vars/);
720 next();
721 }
722
723 my @names;
724 if ($val eq "all") {
725 @names = qw/refs subs vars/;
726 }
727 elsif (ref $val) {
728 @names = @$val;
729 }
730 else {
a0405c92 731 @names = split' ', $val;
08c6f5ec
RH
732 }
733 $hint_bits |= strict::bits(@names);
734 }
735
bc6b2ef6
Z
736 elsif ($name eq '$[') {
737 if (OPpCONST_ARYBASE) {
738 $arybase = $val;
739 } else {
740 croak "\$[ can't be non-zero on this perl" unless $val == 0;
741 }
742 }
743
a0405c92
RH
744 elsif ($name eq 'integer'
745 || $name eq 'bytes'
746 || $name eq 'utf8') {
747 require "$name.pm";
08c6f5ec 748 if ($val) {
a0405c92
RH
749 $hint_bits |= ${$::{"${name}::"}{"hint_bits"}};
750 }
751 else {
752 $hint_bits &= ~${$::{"${name}::"}{"hint_bits"}};
753 }
754 }
755
756 elsif ($name eq 're') {
757 require re;
758 if ($val eq 'none') {
2570cdf1 759 $hint_bits &= ~re::bits(qw/taint eval/);
a0405c92
RH
760 next();
761 }
762
763 my @names;
764 if ($val eq 'all') {
2570cdf1 765 @names = qw/taint eval/;
a0405c92
RH
766 }
767 elsif (ref $val) {
768 @names = @$val;
08c6f5ec
RH
769 }
770 else {
a0405c92 771 @names = split' ',$val;
08c6f5ec 772 }
a0405c92 773 $hint_bits |= re::bits(@names);
08c6f5ec
RH
774 }
775
776 elsif ($name eq 'warnings') {
08c6f5ec 777 if ($val eq 'none') {
810aef70 778 $warning_bits = $warnings::NONE;
08c6f5ec
RH
779 next();
780 }
781
782 my @names;
783 if (ref $val) {
784 @names = @$val;
785 }
786 else {
787 @names = split/\s+/, $val;
788 }
789
810aef70 790 $warning_bits = $warnings::NONE if !defined ($warning_bits);
08c6f5ec
RH
791 $warning_bits |= warnings::bits(@names);
792 }
793
794 elsif ($name eq 'warning_bits') {
795 $warning_bits = $val;
796 }
797
798 elsif ($name eq 'hint_bits') {
799 $hint_bits = $val;
800 }
801
0ced6c29
RGS
802 elsif ($name eq '%^H') {
803 $hinthash = $val;
804 }
805
08c6f5ec
RH
806 else {
807 croak "Unknown pragma type: $name";
808 }
809 }
810 if (@_) {
811 croak "The ambient_pragmas method expects an even number of args";
812 }
813
bc6b2ef6 814 $self->{'ambient_arybase'} = $arybase;
08c6f5ec 815 $self->{'ambient_warnings'} = $warning_bits;
a0405c92 816 $self->{'ambient_hints'} = $hint_bits;
0ced6c29 817 $self->{'ambient_hinthash'} = $hinthash;
08c6f5ec
RH
818}
819
d989cdac 820# This method is the inner loop, so try to keep it simple
6e90668e
SM
821sub deparse {
822 my $self = shift;
d989cdac 823 my($op, $cx) = @_;
34a48b4b
RH
824
825 Carp::confess("Null op in deparse") if !defined($op)
826 || class($op) eq "NULL";
3f872cb9 827 my $meth = "pp_" . $op->name;
9d2c6865 828 return $self->$meth($op, $cx);
a798dbf2
MB
829}
830
6e90668e 831sub indent {
f4a44678 832 my $self = shift;
6e90668e
SM
833 my $txt = shift;
834 my @lines = split(/\n/, $txt);
835 my $leader = "";
f4a44678 836 my $level = 0;
6e90668e
SM
837 my $line;
838 for $line (@lines) {
f4a44678
SM
839 my $cmd = substr($line, 0, 1);
840 if ($cmd eq "\t" or $cmd eq "\b") {
841 $level += ($cmd eq "\t" ? 1 : -1) * $self->{'indent_size'};
842 if ($self->{'use_tabs'}) {
843 $leader = "\t" x ($level / 8) . " " x ($level % 8);
844 } else {
845 $leader = " " x $level;
846 }
6e90668e
SM
847 $line = substr($line, 1);
848 }
f5aa8f4e
SM
849 if (substr($line, 0, 1) eq "\f") {
850 $line = substr($line, 1); # no indent
851 } else {
852 $line = $leader . $line;
853 }
9d2c6865 854 $line =~ s/\cK;?//g;
6e90668e
SM
855 }
856 return join("\n", @lines);
857}
858
6e90668e
SM
859sub deparse_sub {
860 my $self = shift;
861 my $cv = shift;
862 my $proto = "";
ce4e655d 863Carp::confess("NULL in deparse_sub") if !defined($cv) || $cv->isa("B::NULL");
34a48b4b
RH
864Carp::confess("SPECIAL in deparse_sub") if $cv->isa("B::SPECIAL");
865 local $self->{'curcop'} = $self->{'curcop'};
6e90668e
SM
866 if ($cv->FLAGS & SVf_POK) {
867 $proto = "(". $cv->PV . ") ";
868 }
aa381260 869 if ($cv->CvFLAGS & (CVf_METHOD|CVf_LOCKED|CVf_LVALUE)) {
6aaf4108
SC
870 $proto .= ": ";
871 $proto .= "lvalue " if $cv->CvFLAGS & CVf_LVALUE;
aa381260 872 $proto .= "locked " if $cv->CvFLAGS & CVf_LOCKED;
6aaf4108
SC
873 $proto .= "method " if $cv->CvFLAGS & CVf_METHOD;
874 }
875
6e90668e 876 local($self->{'curcv'}) = $cv;
8510e997 877 local($self->{'curcvlex'});
0ced6c29
RGS
878 local(@$self{qw'curstash warnings hints hinthash'})
879 = @$self{qw'curstash warnings hints hinthash'};
ce4e655d 880 my $body;
6e90668e 881 if (not null $cv->ROOT) {
ce4e655d
RH
882 my $lineseq = $cv->ROOT->first;
883 if ($lineseq->name eq "lineseq") {
884 my @ops;
885 for(my$o=$lineseq->first; $$o; $o=$o->sibling) {
886 push @ops, $o;
887 }
888 $body = $self->lineseq(undef, @ops).";";
889 my $scope_en = $self->find_scope_en($lineseq);
890 if (defined $scope_en) {
891 my $subs = join"", $self->seq_subs($scope_en);
892 $body .= ";\n$subs" if length($subs);
893 }
894 }
895 else {
896 $body = $self->deparse($cv->ROOT->first, 0);
897 }
de3f1649 898 }
ce4e655d
RH
899 else {
900 my $sv = $cv->const_sv;
901 if ($$sv) {
902 # uh-oh. inlinable sub... format it differently
d989cdac 903 return $proto . "{ " . $self->const($sv, 0) . " }\n";
ce4e655d
RH
904 } else { # XSUB? (or just a declaration)
905 return "$proto;\n";
906 }
6e90668e 907 }
ce4e655d 908 return $proto ."{\n\t$body\n\b}" ."\n";
6e90668e
SM
909}
910
911sub deparse_format {
912 my $self = shift;
913 my $form = shift;
914 my @text;
915 local($self->{'curcv'}) = $form;
8510e997 916 local($self->{'curcvlex'});
67fc2416 917 local($self->{'in_format'}) = 1;
0ced6c29
RGS
918 local(@$self{qw'curstash warnings hints hinthash'})
919 = @$self{qw'curstash warnings hints hinthash'};
6e90668e
SM
920 my $op = $form->ROOT;
921 my $kid;
fb725297
RGS
922 return "\f." if $op->first->name eq 'stub'
923 || $op->first->name eq 'nextstate';
6e90668e
SM
924 $op = $op->first->first; # skip leavewrite, lineseq
925 while (not null $op) {
926 $op = $op->sibling; # skip nextstate
927 my @exprs;
928 $kid = $op->first->sibling; # skip pushmark
a5b0cd91 929 push @text, "\f".$self->const_sv($kid)->PV;
6e90668e
SM
930 $kid = $kid->sibling;
931 for (; not null $kid; $kid = $kid->sibling) {
9d2c6865 932 push @exprs, $self->deparse($kid, 0);
6e90668e 933 }
a5b0cd91 934 push @text, "\f".join(", ", @exprs)."\n" if @exprs;
6e90668e
SM
935 $op = $op->sibling;
936 }
a5b0cd91 937 return join("", @text) . "\f.";
6e90668e
SM
938}
939
6e90668e 940sub is_scope {
a798dbf2 941 my $op = shift;
3f872cb9
GS
942 return $op->name eq "leave" || $op->name eq "scope"
943 || $op->name eq "lineseq"
d989cdac 944 || ($op->name eq "null" && class($op) eq "UNOP"
3f872cb9 945 && (is_scope($op->first) || $op->first->name eq "enter"));
6e90668e
SM
946}
947
948sub is_state {
3f872cb9
GS
949 my $name = $_[0]->name;
950 return $name eq "nextstate" || $name eq "dbstate" || $name eq "setstate";
6e90668e
SM
951}
952
e38ccfd9 953sub is_miniwhile { # check for one-line loop ('foo() while $y--')
6e90668e 954 my $op = shift;
d989cdac 955 return (!null($op) and null($op->sibling)
3f872cb9
GS
956 and $op->name eq "null" and class($op) eq "UNOP"
957 and (($op->first->name =~ /^(and|or)$/
958 and $op->first->first->sibling->name eq "lineseq")
959 or ($op->first->name eq "lineseq"
6e90668e 960 and not null $op->first->first->sibling
3f872cb9 961 and $op->first->first->sibling->name eq "unstack")
6e90668e
SM
962 ));
963}
964
d989cdac
SM
965# Check if the op and its sibling are the initialization and the rest of a
966# for (..;..;..) { ... } loop
967sub is_for_loop {
968 my $op = shift;
969 # This OP might be almost anything, though it won't be a
970 # nextstate. (It's the initialization, so in the canonical case it
eae48c89
Z
971 # will be an sassign.) The sibling is (old style) a lineseq whose
972 # first child is a nextstate and whose second is a leaveloop, or
973 # (new style) an unstack whose sibling is a leaveloop.
d989cdac 974 my $lseq = $op->sibling;
eae48c89
Z
975 return 0 unless !is_state($op) and !null($lseq);
976 if ($lseq->name eq "lineseq") {
d989cdac
SM
977 if ($lseq->first && !null($lseq->first) && is_state($lseq->first)
978 && (my $sib = $lseq->first->sibling)) {
979 return (!null($sib) && $sib->name eq "leaveloop");
980 }
eae48c89
Z
981 } elsif ($lseq->name eq "unstack" && ($lseq->flags & OPf_SPECIAL)) {
982 my $sib = $lseq->sibling;
983 return $sib && !null($sib) && $sib->name eq "leaveloop";
d989cdac
SM
984 }
985 return 0;
986}
987
6e90668e
SM
988sub is_scalar {
989 my $op = shift;
3f872cb9
GS
990 return ($op->name eq "rv2sv" or
991 $op->name eq "padsv" or
992 $op->name eq "gv" or # only in array/hash constructs
bd0865ec 993 $op->flags & OPf_KIDS && !null($op->first)
3f872cb9 994 && $op->first->name eq "gvsv");
6e90668e
SM
995}
996
9d2c6865
SM
997sub maybe_parens {
998 my $self = shift;
999 my($text, $cx, $prec) = @_;
1000 if ($prec < $cx # unary ops nest just fine
1001 or $prec == $cx and $cx != 4 and $cx != 16 and $cx != 21
1002 or $self->{'parens'})
1003 {
1004 $text = "($text)";
1005 # In a unop, let parent reuse our parens; see maybe_parens_unop
1006 $text = "\cS" . $text if $cx == 16;
1007 return $text;
1008 } else {
1009 return $text;
1010 }
1011}
1012
e38ccfd9 1013# same as above, but get around the 'if it looks like a function' rule
9d2c6865
SM
1014sub maybe_parens_unop {
1015 my $self = shift;
1016 my($name, $kid, $cx) = @_;
1017 if ($cx > 16 or $self->{'parens'}) {
a0035eb8
RH
1018 $kid = $self->deparse($kid, 1);
1019 if ($name eq "umask" && $kid =~ /^\d+$/) {
1020 $kid = sprintf("%#o", $kid);
1021 }
4a1ac32e 1022 return $self->keyword($name) . "($kid)";
9d2c6865
SM
1023 } else {
1024 $kid = $self->deparse($kid, 16);
a0035eb8
RH
1025 if ($name eq "umask" && $kid =~ /^\d+$/) {
1026 $kid = sprintf("%#o", $kid);
1027 }
4a1ac32e 1028 $name = $self->keyword($name);
9d2c6865
SM
1029 if (substr($kid, 0, 1) eq "\cS") {
1030 # use kid's parens
1031 return $name . substr($kid, 1);
1032 } elsif (substr($kid, 0, 1) eq "(") {
1033 # avoid looks-like-a-function trap with extra parens
e38ccfd9 1034 # ('+' can lead to ambiguities)
9d2c6865
SM
1035 return "$name(" . $kid . ")";
1036 } else {
1037 return "$name $kid";
1038 }
1039 }
1040}
1041
1042sub maybe_parens_func {
1043 my $self = shift;
1044 my($func, $text, $cx, $prec) = @_;
1045 if ($prec <= $cx or substr($text, 0, 1) eq "(" or $self->{'parens'}) {
1046 return "$func($text)";
1047 } else {
1048 return "$func $text";
1049 }
1050}
1051
6e90668e
SM
1052sub maybe_local {
1053 my $self = shift;
9d2c6865 1054 my($op, $cx, $text) = @_;
ce4e655d
RH
1055 my $our_intro = ($op->name =~ /^(gv|rv2)[ash]v$/) ? OPpOUR_INTRO : 0;
1056 if ($op->private & (OPpLVAL_INTRO|$our_intro)
1057 and not $self->{'avoid_local'}{$$op}) {
1058 my $our_local = ($op->private & OPpLVAL_INTRO) ? "local" : "our";
8e3542b6 1059 if( $our_local eq 'our' ) {
640d5d41
FC
1060 if ( $text !~ /^\W(\w+::)*\w+\z/
1061 and !utf8::decode($text) || $text !~ /^\W(\w+::)*\w+\z/
1062 ) {
1063 die "Unexpected our($text)\n";
1064 }
d989cdac 1065 $text =~ s/(\w+::)+//;
8e3542b6 1066 }
e8d3f51b 1067 if (want_scalar($op)) {
ce4e655d 1068 return "$our_local $text";
e8d3f51b 1069 } else {
ce4e655d 1070 return $self->maybe_parens_func("$our_local", $text, $cx, 16);
e8d3f51b 1071 }
6e90668e
SM
1072 } else {
1073 return $text;
a798dbf2 1074 }
a798dbf2
MB
1075}
1076
3ed82cfc
GS
1077sub maybe_targmy {
1078 my $self = shift;
1079 my($op, $cx, $func, @args) = @_;
1080 if ($op->private & OPpTARGET_MY) {
1081 my $var = $self->padname($op->targ);
1082 my $val = $func->($self, $op, 7, @args);
1083 return $self->maybe_parens("$var = $val", $cx, 7);
1084 } else {
1085 return $func->($self, $op, $cx, @args);
1086 }
1087}
1088
6e90668e
SM
1089sub padname_sv {
1090 my $self = shift;
1091 my $targ = shift;
d989cdac 1092 return $self->{'curcv'}->PADLIST->ARRAYelt(0)->ARRAYelt($targ);
6e90668e
SM
1093}
1094
1095sub maybe_my {
1096 my $self = shift;
9d2c6865 1097 my($op, $cx, $text) = @_;
4c1f658f 1098 if ($op->private & OPpLVAL_INTRO and not $self->{'avoid_local'}{$$op}) {
80e3f4ad
FC
1099 my $my = $op->private & OPpPAD_STATE
1100 ? $self->keyword("state")
1101 : "my";
e8d3f51b 1102 if (want_scalar($op)) {
3462b4ac 1103 return "$my $text";
e8d3f51b 1104 } else {
3462b4ac 1105 return $self->maybe_parens_func($my, $text, $cx, 16);
e8d3f51b 1106 }
6e90668e
SM
1107 } else {
1108 return $text;
1109 }
1110}
1111
9d2c6865
SM
1112# The following OPs don't have functions:
1113
1114# pp_padany -- does not exist after parsing
9d2c6865 1115
2ae48fff
RGS
1116sub AUTOLOAD {
1117 if ($AUTOLOAD =~ s/^.*::pp_//) {
1118 warn "unexpected OP_".uc $AUTOLOAD;
1119 return "XXX";
1120 } else {
1121 die "Undefined subroutine $AUTOLOAD called";
1122 }
9d2c6865 1123}
6e90668e 1124
611c1e95
IZ
1125sub DESTROY {} # Do not AUTOLOAD
1126
ce4e655d
RH
1127# $root should be the op which represents the root of whatever
1128# we're sequencing here. If it's undefined, then we don't append
1129# any subroutine declarations to the deparsed ops, otherwise we
1130# append appropriate declarations.
58cccf98 1131sub lineseq {
ce4e655d 1132 my($self, $root, @ops) = @_;
58cccf98 1133 my($expr, @exprs);
ce4e655d
RH
1134
1135 my $out_cop = $self->{'curcop'};
1136 my $out_seq = defined($out_cop) ? $out_cop->cop_seq : undef;
1137 my $limit_seq;
1138 if (defined $root) {
1139 $limit_seq = $out_seq;
76df5e8f
DM
1140 my $nseq;
1141 $nseq = $self->find_scope_st($root->sibling) if ${$root->sibling};
ce4e655d
RH
1142 $limit_seq = $nseq if !defined($limit_seq)
1143 or defined($nseq) && $nseq < $limit_seq;
1144 }
1145 $limit_seq = $self->{'limit_seq'}
1146 if defined($self->{'limit_seq'})
1147 && (!defined($limit_seq) || $self->{'limit_seq'} < $limit_seq);
1148 local $self->{'limit_seq'} = $limit_seq;
09d856fb
CK
1149
1150 $self->walk_lineseq($root, \@ops,
1151 sub { push @exprs, $_[0]} );
1152
ce4e655d
RH
1153 my $body = join(";\n", grep {length} @exprs);
1154 my $subs = "";
67fc2416 1155 if (defined $root && defined $limit_seq && !$self->{'in_format'}) {
ce4e655d
RH
1156 $subs = join "\n", $self->seq_subs($limit_seq);
1157 }
1158 return join(";\n", grep {length} $body, $subs);
6e90668e
SM
1159}
1160
58cccf98 1161sub scopeop {
d989cdac 1162 my($real_block, $self, $op, $cx) = @_;
58cccf98
SM
1163 my $kid;
1164 my @kids;
a0405c92 1165
0ced6c29
RGS
1166 local(@$self{qw'curstash warnings hints hinthash'})
1167 = @$self{qw'curstash warnings hints hinthash'} if $real_block;
58cccf98
SM
1168 if ($real_block) {
1169 $kid = $op->first->sibling; # skip enter
1170 if (is_miniwhile($kid)) {
1171 my $top = $kid->first;
1172 my $name = $top->name;
1173 if ($name eq "and") {
1174 $name = "while";
1175 } elsif ($name eq "or") {
1176 $name = "until";
1177 } else { # no conditional -> while 1 or until 0
1178 return $self->deparse($top->first, 1) . " while 1";
1179 }
1180 my $cond = $top->first;
1181 my $body = $cond->sibling->first; # skip lineseq
1182 $cond = $self->deparse($cond, 1);
1183 $body = $self->deparse($body, 1);
1184 return "$body $name $cond";
6e90668e 1185 }
58cccf98
SM
1186 } else {
1187 $kid = $op->first;
1188 }
1189 for (; !null($kid); $kid = $kid->sibling) {
1190 push @kids, $kid;
6e90668e 1191 }
d989cdac 1192 if ($cx > 0) { # inside an expression, (a do {} while for lineseq)
ce4e655d 1193 return "do {\n\t" . $self->lineseq($op, @kids) . "\n\b}";
9d2c6865 1194 } else {
ce4e655d 1195 my $lineseq = $self->lineseq($op, @kids);
7a9b44b9 1196 return (length ($lineseq) ? "$lineseq;" : "");
6e90668e 1197 }
6e90668e
SM
1198}
1199
ce4e655d 1200sub pp_scope { scopeop(0, @_); }
58cccf98
SM
1201sub pp_lineseq { scopeop(0, @_); }
1202sub pp_leave { scopeop(1, @_); }
9d2c6865 1203
d989cdac
SM
1204# This is a special case of scopeop and lineseq, for the case of the
1205# main_root. The difference is that we print the output statements as
1206# soon as we get them, for the sake of impatient users.
1207sub deparse_root {
1208 my $self = shift;
1209 my($op) = @_;
0ced6c29
RGS
1210 local(@$self{qw'curstash warnings hints hinthash'})
1211 = @$self{qw'curstash warnings hints hinthash'};
d989cdac 1212 my @kids;
4ca8de37 1213 return if null $op->first; # Can happen, e.g., for Bytecode without -k
d989cdac
SM
1214 for (my $kid = $op->first->sibling; !null($kid); $kid = $kid->sibling) {
1215 push @kids, $kid;
1216 }
09d856fb
CK
1217 $self->walk_lineseq($op, \@kids,
1218 sub { print $self->indent($_[0].';');
1219 print "\n" unless $_[1] == $#kids;
1220 });
1221}
1222
1223sub walk_lineseq {
1224 my ($self, $op, $kids, $callback) = @_;
1225 my @kids = @$kids;
d989cdac
SM
1226 for (my $i = 0; $i < @kids; $i++) {
1227 my $expr = "";
1228 if (is_state $kids[$i]) {
09d856fb 1229 $expr = $self->deparse($kids[$i++], 0);
d989cdac 1230 if ($i > $#kids) {
09d856fb 1231 $callback->($expr, $i);
d989cdac
SM
1232 last;
1233 }
1234 }
1235 if (is_for_loop($kids[$i])) {
eae48c89
Z
1236 $callback->($expr . $self->for_loop($kids[$i], 0),
1237 $i += $kids[$i]->sibling->name eq "unstack" ? 2 : 1);
d989cdac
SM
1238 next;
1239 }
1240 $expr .= $self->deparse($kids[$i], (@kids != 1)/2);
1241 $expr =~ s/;\n?\z//;
09d856fb 1242 $callback->($expr, $i);
d989cdac
SM
1243 }
1244}
1245
6e90668e
SM
1246# The BEGIN {} is used here because otherwise this code isn't executed
1247# when you run B::Deparse on itself.
1248my %globalnames;
1249BEGIN { map($globalnames{$_}++, "SIG", "STDIN", "STDOUT", "STDERR", "INC",
1250 "ENV", "ARGV", "ARGVOUT", "_"); }
1251
1252sub gv_name {
1253 my $self = shift;
1254 my $gv = shift;
c6e79e55 1255Carp::confess() unless ref($gv) eq "B::GV";
6e90668e 1256 my $stash = $gv->STASH->NAME;
d9963e60 1257 my $name = $gv->SAFENAME;
8b2d6640
FC
1258 if ($stash eq 'main' && $name =~ /^::/) {
1259 $stash = '::';
1260 }
1261 elsif (($stash eq 'main' && $globalnames{$name})
1262 or ($stash eq $self->{'curstash'} && !$globalnames{$name}
1263 && ($stash eq 'main' || $name !~ /::/))
644838b9 1264 or $name =~ /^[^A-Za-z_:]/)
9d2c6865 1265 {
6e90668e
SM
1266 $stash = "";
1267 } else {
1268 $stash = $stash . "::";
a798dbf2 1269 }
083bda02
MS
1270 if ($name =~ /^(\^..|{)/) {
1271 $name = "{$name}"; # ${^WARNING_BITS}, etc and ${
6e90668e
SM
1272 }
1273 return $stash . $name;
a798dbf2
MB
1274}
1275
8510e997
RH
1276# Return the name to use for a stash variable.
1277# If a lexical with the same name is in scope, it may need to be
1278# fully-qualified.
1279sub stash_variable {
bb8996b8 1280 my ($self, $prefix, $name, $cx) = @_;
8510e997
RH
1281
1282 return "$prefix$name" if $name =~ /::/;
1283
d989cdac 1284 unless ($prefix eq '$' || $prefix eq '@' || #'
8510e997
RH
1285 $prefix eq '%' || $prefix eq '$#') {
1286 return "$prefix$name";
1287 }
1288
61154ac0
FC
1289 if ($name =~ /^[^\w+-]$/) {
1290 if (defined $cx && $cx == 26) {
1291 if ($prefix eq '@') {
bb8996b8
HY
1292 return "$prefix\{$name}";
1293 }
61154ac0
FC
1294 elsif ($name eq '#') { return '${#}' } # "${#}a" vs "$#a"
1295 }
1296 if ($prefix eq '$#') {
6ec73527 1297 return "\$#{$name}";
61154ac0 1298 }
6ec73527 1299 }
bb8996b8 1300
8510e997
RH
1301 my $v = ($prefix eq '$#' ? '@' : $prefix) . $name;
1302 return $prefix .$self->{'curstash'}.'::'. $name if $self->lex_in_scope($v);
1303 return "$prefix$name";
1304}
1305
1306sub lex_in_scope {
1307 my ($self, $name) = @_;
1308 $self->populate_curcvlex() if !defined $self->{'curcvlex'};
1309
6ec152c3 1310 return 0 if !defined($self->{'curcop'});
8510e997
RH
1311 my $seq = $self->{'curcop'}->cop_seq;
1312 return 0 if !exists $self->{'curcvlex'}{$name};
1313 for my $a (@{$self->{'curcvlex'}{$name}}) {
1314 my ($st, $en) = @$a;
1315 return 1 if $seq > $st && $seq <= $en;
1316 }
1317 return 0;
1318}
1319
1320sub populate_curcvlex {
1321 my $self = shift;
ce4e655d 1322 for (my $cv = $self->{'curcv'}; class($cv) eq "CV"; $cv = $cv->OUTSIDE) {
7dafbf52
DM
1323 my $padlist = $cv->PADLIST;
1324 # an undef CV still in lexical chain
1325 next if class($padlist) eq "SPECIAL";
1326 my @padlist = $padlist->ARRAY;
8510e997
RH
1327 my @ns = $padlist[0]->ARRAY;
1328
1329 for (my $i=0; $i<@ns; ++$i) {
1330 next if class($ns[$i]) eq "SPECIAL";
ce4e655d 1331 next if $ns[$i]->FLAGS & SVpad_OUR; # Skip "our" vars
0f2fe21d
RH
1332 if (class($ns[$i]) eq "PV") {
1333 # Probably that pesky lexical @_
1334 next;
1335 }
8510e997 1336 my $name = $ns[$i]->PVX;
7dafbf52
DM
1337 my ($seq_st, $seq_en) =
1338 ($ns[$i]->FLAGS & SVf_FAKE)
1339 ? (0, 999999)
809abb02 1340 : ($ns[$i]->COP_SEQ_RANGE_LOW, $ns[$i]->COP_SEQ_RANGE_HIGH);
8510e997
RH
1341
1342 push @{$self->{'curcvlex'}{$name}}, [$seq_st, $seq_en];
1343 }
1344 }
1345}
1346
ce4e655d
RH
1347sub find_scope_st { ((find_scope(@_))[0]); }
1348sub find_scope_en { ((find_scope(@_))[1]); }
1349
1350# Recurses down the tree, looking for pad variable introductions and COPs
1351sub find_scope {
1352 my ($self, $op, $scope_st, $scope_en) = @_;
ff97752d 1353 carp("Undefined op in find_scope") if !defined $op;
ce4e655d
RH
1354 return ($scope_st, $scope_en) unless $op->flags & OPf_KIDS;
1355
b6b46d6f
AB
1356 my @queue = ($op);
1357 while(my $op = shift @queue ) {
1358 for (my $o=$op->first; $$o; $o=$o->sibling) {
1359 if ($o->name =~ /^pad.v$/ && $o->private & OPpLVAL_INTRO) {
1360 my $s = int($self->padname_sv($o->targ)->COP_SEQ_RANGE_LOW);
1361 my $e = $self->padname_sv($o->targ)->COP_SEQ_RANGE_HIGH;
1362 $scope_st = $s if !defined($scope_st) || $s < $scope_st;
1363 $scope_en = $e if !defined($scope_en) || $e > $scope_en;
1364 return ($scope_st, $scope_en);
1365 }
1366 elsif (is_state($o)) {
1367 my $c = $o->cop_seq;
1368 $scope_st = $c if !defined($scope_st) || $c < $scope_st;
1369 $scope_en = $c if !defined($scope_en) || $c > $scope_en;
1370 return ($scope_st, $scope_en);
1371 }
1372 elsif ($o->flags & OPf_KIDS) {
1373 unshift (@queue, $o);
1374 }
34a48b4b
RH
1375 }
1376 }
ce4e655d
RH
1377
1378 return ($scope_st, $scope_en);
34a48b4b
RH
1379}
1380
1381# Returns a list of subs which should be inserted before the COP
1382sub cop_subs {
1383 my ($self, $op, $out_seq) = @_;
1384 my $seq = $op->cop_seq;
1385 # If we have nephews, then our sequence number indicates
1386 # the cop_seq of the end of some sort of scope.
1387 if (class($op->sibling) ne "NULL" && $op->sibling->flags & OPf_KIDS
ce4e655d
RH
1388 and my $nseq = $self->find_scope_st($op->sibling) ) {
1389 $seq = $nseq;
34a48b4b
RH
1390 }
1391 $seq = $out_seq if defined($out_seq) && $out_seq < $seq;
1392 return $self->seq_subs($seq);
1393}
1394
1395sub seq_subs {
1396 my ($self, $seq) = @_;
1397 my @text;
1398#push @text, "# ($seq)\n";
1399
ce4e655d 1400 return "" if !defined $seq;
34a48b4b
RH
1401 while (scalar(@{$self->{'subs_todo'}})
1402 and $seq > $self->{'subs_todo'}[0][0]) {
1403 push @text, $self->next_todo;
1404 }
1405 return @text;
1406}
1407
08c6f5ec 1408# Notice how subs and formats are inserted between statements here;
bc6b2ef6 1409# also $[ assignments and pragmas.
6e90668e
SM
1410sub pp_nextstate {
1411 my $self = shift;
9d2c6865 1412 my($op, $cx) = @_;
34a48b4b 1413 $self->{'curcop'} = $op;
6e90668e 1414 my @text;
34a48b4b 1415 push @text, $self->cop_subs($op);
11faa288 1416 my $stash = $op->stashpv;
6e90668e
SM
1417 if ($stash ne $self->{'curstash'}) {
1418 push @text, "package $stash;\n";
1419 $self->{'curstash'} = $stash;
1420 }
08c6f5ec 1421
bc6b2ef6
Z
1422 if (OPpCONST_ARYBASE && $self->{'arybase'} != $op->arybase) {
1423 push @text, '$[ = '. $op->arybase .";\n";
1424 $self->{'arybase'} = $op->arybase;
1425 }
1426
7a9b44b9
RH
1427 my $warnings = $op->warnings;
1428 my $warning_bits;
1429 if ($warnings->isa("B::SPECIAL") && $$warnings == 4) {
810aef70 1430 $warning_bits = $warnings::Bits{"all"} & WARN_MASK;
7a9b44b9 1431 }
e31885a0 1432 elsif ($warnings->isa("B::SPECIAL") && $$warnings == 5) {
810aef70 1433 $warning_bits = $warnings::NONE;
7a9b44b9 1434 }
e31885a0
RH
1435 elsif ($warnings->isa("B::SPECIAL")) {
1436 $warning_bits = undef;
1437 }
7a9b44b9 1438 else {
34a48b4b 1439 $warning_bits = $warnings->PV & WARN_MASK;
7a9b44b9
RH
1440 }
1441
e31885a0
RH
1442 if (defined ($warning_bits) and
1443 !defined($self->{warnings}) || $self->{'warnings'} ne $warning_bits) {
08c6f5ec 1444 push @text, declare_warnings($self->{'warnings'}, $warning_bits);
7a9b44b9
RH
1445 $self->{'warnings'} = $warning_bits;
1446 }
1447
2be95ceb
NC
1448 my $hints = $] < 5.008009 ? $op->private : $op->hints;
1449 if ($self->{'hints'} != $hints) {
1450 push @text, declare_hints($self->{'hints'}, $hints);
1451 $self->{'hints'} = $hints;
a0405c92
RH
1452 }
1453
0ced6c29 1454 # hack to check that the hint hash hasn't changed
e9c69003
NC
1455 if ($] > 5.009 &&
1456 "@{[sort %{$self->{'hinthash'} || {}}]}"
1457 ne "@{[sort %{$op->hints_hash->HASH || {}}]}") {
0ced6c29
RGS
1458 push @text, declare_hinthash($self->{'hinthash'}, $op->hints_hash->HASH, $self->{indent_size});
1459 $self->{'hinthash'} = $op->hints_hash->HASH;
1460 }
1461
d989cdac
SM
1462 # This should go after of any branches that add statements, to
1463 # increase the chances that it refers to the same line it did in
1464 # the original program.
1465 if ($self->{'linenums'}) {
1466 push @text, "\f#line " . $op->line .
1467 ' "' . $op->file, qq'"\n';
1468 }
1469
98a1a137
Z
1470 push @text, $op->label . ": " if $op->label;
1471
6e90668e
SM
1472 return join("", @text);
1473}
1474
08c6f5ec
RH
1475sub declare_warnings {
1476 my ($from, $to) = @_;
e6f1f756 1477 if (($to & WARN_MASK) eq (warnings::bits("all") & WARN_MASK)) {
a0405c92
RH
1478 return "use warnings;\n";
1479 }
e6f1f756 1480 elsif (($to & WARN_MASK) eq ("\0"x length($to) & WARN_MASK)) {
a0405c92
RH
1481 return "no warnings;\n";
1482 }
51a5edaf 1483 return "BEGIN {\${^WARNING_BITS} = ".perlstring($to)."}\n";
a0405c92
RH
1484}
1485
1486sub declare_hints {
1487 my ($from, $to) = @_;
a0035eb8
RH
1488 my $use = $to & ~$from;
1489 my $no = $from & ~$to;
1490 my $decls = "";
1491 for my $pragma (hint_pragmas($use)) {
1492 $decls .= "use $pragma;\n";
1493 }
1494 for my $pragma (hint_pragmas($no)) {
1495 $decls .= "no $pragma;\n";
1496 }
1497 return $decls;
1498}
1499
493c23c6
NC
1500# Internal implementation hints that the core sets automatically, so don't need
1501# (or want) to be passed back to the user
1502my %ignored_hints = (
1503 'open<' => 1,
1504 'open>' => 1,
dca6062a 1505 ':' => 1,
2e8342de 1506);
493c23c6 1507
0ced6c29
RGS
1508sub declare_hinthash {
1509 my ($from, $to, $indent) = @_;
1510 my @decls;
1511 for my $key (keys %$to) {
493c23c6 1512 next if $ignored_hints{$key};
04be0204
FC
1513 if (!exists $from->{$key} or $from->{$key} ne $to->{$key}) {
1514 push @decls, qq(\$^H{'$key'} = )
1515 . (defined $to->{$key} ? qq(q($to->{$key})) : 'undef')
1516 . qq(;);
0ced6c29
RGS
1517 }
1518 }
1519 for my $key (keys %$from) {
493c23c6 1520 next if $ignored_hints{$key};
0ced6c29
RGS
1521 if (!exists $to->{$key}) {
1522 push @decls, qq(delete \$^H{'$key'};);
1523 }
1524 }
1525 @decls or return '';
1526 return join("\n" . (" " x $indent), "BEGIN {", @decls) . "\n}\n";
1527}
1528
a0035eb8
RH
1529sub hint_pragmas {
1530 my ($bits) = @_;
1531 my @pragmas;
1532 push @pragmas, "integer" if $bits & 0x1;
1533 push @pragmas, "strict 'refs'" if $bits & 0x2;
1534 push @pragmas, "bytes" if $bits & 0x8;
1535 return @pragmas;
08c6f5ec
RH
1536}
1537
6e90668e 1538sub pp_dbstate { pp_nextstate(@_) }
3f872cb9 1539sub pp_setstate { pp_nextstate(@_) }
6e90668e
SM
1540
1541sub pp_unstack { return "" } # see also leaveloop
1542
80e3f4ad
FC
1543my %feature_keywords = (
1544 # keyword => 'feature',
1545 state => 'state',
1546 say => 'say',
1547 given => 'switch',
1548 when => 'switch',
1549 default => 'switch',
e36901c8 1550 break => 'switch',
7d789282 1551 evalbytes=>'evalbytes',
84ed0108 1552 __SUB__ => '__SUB__',
80e3f4ad
FC
1553);
1554
4a1ac32e
FC
1555sub keyword {
1556 my $self = shift;
1557 my $name = shift;
1558 return $name if $name =~ /^CORE::/; # just in case
80e3f4ad 1559 if (exists $feature_keywords{$name}) {
7d789282
FC
1560 return "CORE::$name"
1561 if !$self->{'hinthash'}
1562 || !$self->{'hinthash'}{"feature_$feature_keywords{$name}"}
80e3f4ad 1563 }
4a1ac32e 1564 if (
a598d0e5 1565 $name !~ /^(?:chom?p|do|exec|glob|s(?:elect|ystem))\z/
4a1ac32e
FC
1566 && !defined eval{prototype "CORE::$name"}
1567 ) { return $name }
1568 if (
1569 exists $self->{subs_declared}{$name}
1570 or
1571 exists &{"$self->{curstash}::$name"}
1572 ) {
1573 return "CORE::$name"
1574 }
1575 return $name;
1576}
1577
6e90668e
SM
1578sub baseop {
1579 my $self = shift;
9d2c6865 1580 my($op, $cx, $name) = @_;
4a1ac32e 1581 return $self->keyword($name);
6e90668e
SM
1582}
1583
e99ebc55
RH
1584sub pp_stub {
1585 my $self = shift;
1586 my($op, $cx, $name) = @_;
d989cdac 1587 if ($cx >= 1) {
e99ebc55
RH
1588 return "()";
1589 }
1590 else {
1591 return "();";
1592 }
1593}
6e90668e
SM
1594sub pp_wantarray { baseop(@_, "wantarray") }
1595sub pp_fork { baseop(@_, "fork") }
3ed82cfc
GS
1596sub pp_wait { maybe_targmy(@_, \&baseop, "wait") }
1597sub pp_getppid { maybe_targmy(@_, \&baseop, "getppid") }
1598sub pp_time { maybe_targmy(@_, \&baseop, "time") }
6e90668e
SM
1599sub pp_tms { baseop(@_, "times") }
1600sub pp_ghostent { baseop(@_, "gethostent") }
1601sub pp_gnetent { baseop(@_, "getnetent") }
1602sub pp_gprotoent { baseop(@_, "getprotoent") }
1603sub pp_gservent { baseop(@_, "getservent") }
1604sub pp_ehostent { baseop(@_, "endhostent") }
1605sub pp_enetent { baseop(@_, "endnetent") }
1606sub pp_eprotoent { baseop(@_, "endprotoent") }
1607sub pp_eservent { baseop(@_, "endservent") }
1608sub pp_gpwent { baseop(@_, "getpwent") }
1609sub pp_spwent { baseop(@_, "setpwent") }
1610sub pp_epwent { baseop(@_, "endpwent") }
1611sub pp_ggrent { baseop(@_, "getgrent") }
1612sub pp_sgrent { baseop(@_, "setgrent") }
1613sub pp_egrent { baseop(@_, "endgrent") }
1614sub pp_getlogin { baseop(@_, "getlogin") }
1615
1616sub POSTFIX () { 1 }
1617
9d2c6865
SM
1618# I couldn't think of a good short name, but this is the category of
1619# symbolic unary operators with interesting precedence
1620
1621sub pfixop {
1622 my $self = shift;
1623 my($op, $cx, $name, $prec, $flags) = (@_, 0);
1624 my $kid = $op->first;
1625 $kid = $self->deparse($kid, $prec);
1626 return $self->maybe_parens(($flags & POSTFIX) ? "$kid$name" : "$name$kid",
1627 $cx, $prec);
1628}
1629
1630sub pp_preinc { pfixop(@_, "++", 23) }
1631sub pp_predec { pfixop(@_, "--", 23) }
3ed82cfc
GS
1632sub pp_postinc { maybe_targmy(@_, \&pfixop, "++", 23, POSTFIX) }
1633sub pp_postdec { maybe_targmy(@_, \&pfixop, "--", 23, POSTFIX) }
9d2c6865
SM
1634sub pp_i_preinc { pfixop(@_, "++", 23) }
1635sub pp_i_predec { pfixop(@_, "--", 23) }
3ed82cfc
GS
1636sub pp_i_postinc { maybe_targmy(@_, \&pfixop, "++", 23, POSTFIX) }
1637sub pp_i_postdec { maybe_targmy(@_, \&pfixop, "--", 23, POSTFIX) }
68cc8748 1638sub pp_complement { maybe_targmy(@_, \&pfixop, "~", 21) }
9d2c6865 1639
3ed82cfc
GS
1640sub pp_negate { maybe_targmy(@_, \&real_negate) }
1641sub real_negate {
9d2c6865
SM
1642 my $self = shift;
1643 my($op, $cx) = @_;
3f872cb9 1644 if ($op->first->name =~ /^(i_)?negate$/) {
9d2c6865
SM
1645 # avoid --$x
1646 $self->pfixop($op, $cx, "-", 21.5);
1647 } else {
1648 $self->pfixop($op, $cx, "-", 21);
1649 }
1650}
1651sub pp_i_negate { pp_negate(@_) }
1652
1653sub pp_not {
1654 my $self = shift;
1655 my($op, $cx) = @_;
1656 if ($cx <= 4) {
4a1ac32e 1657 $self->pfixop($op, $cx, $self->keyword("not")." ", 4);
9d2c6865
SM
1658 } else {
1659 $self->pfixop($op, $cx, "!", 21);
1660 }
1661}
1662
6e90668e
SM
1663sub unop {
1664 my $self = shift;
f4a44678 1665 my($op, $cx, $name) = @_;
6e90668e 1666 my $kid;
9d2c6865 1667 if ($op->flags & OPf_KIDS) {
aaf643ce 1668 $kid = $op->first;
1c85afce
YO
1669 if (not $name) {
1670 # this deals with 'boolkeys' right now
1671 return $self->deparse($kid,$cx);
1672 }
deb20ba3
RGS
1673 my $builtinname = $name;
1674 $builtinname =~ /^CORE::/ or $builtinname = "CORE::$name";
1675 if (defined prototype($builtinname)
1676 && prototype($builtinname) =~ /^;?\*/
e31885a0
RH
1677 && $kid->name eq "rv2gv") {
1678 $kid = $kid->first;
1679 }
1680
9d2c6865 1681 return $self->maybe_parens_unop($name, $kid, $cx);
6e90668e 1682 } else {
4a1ac32e
FC
1683 return $self->keyword($name)
1684 . ($op->flags & OPf_SPECIAL ? "()" : "");
6e90668e 1685 }
6e90668e
SM
1686}
1687
3ed82cfc
GS
1688sub pp_chop { maybe_targmy(@_, \&unop, "chop") }
1689sub pp_chomp { maybe_targmy(@_, \&unop, "chomp") }
1690sub pp_schop { maybe_targmy(@_, \&unop, "chop") }
1691sub pp_schomp { maybe_targmy(@_, \&unop, "chomp") }
6e90668e
SM
1692sub pp_defined { unop(@_, "defined") }
1693sub pp_undef { unop(@_, "undef") }
1694sub pp_study { unop(@_, "study") }
6e90668e
SM
1695sub pp_ref { unop(@_, "ref") }
1696sub pp_pos { maybe_local(@_, unop(@_, "pos")) }
1697
3ed82cfc
GS
1698sub pp_sin { maybe_targmy(@_, \&unop, "sin") }
1699sub pp_cos { maybe_targmy(@_, \&unop, "cos") }
1700sub pp_rand { maybe_targmy(@_, \&unop, "rand") }
6e90668e 1701sub pp_srand { unop(@_, "srand") }
3ed82cfc
GS
1702sub pp_exp { maybe_targmy(@_, \&unop, "exp") }
1703sub pp_log { maybe_targmy(@_, \&unop, "log") }
1704sub pp_sqrt { maybe_targmy(@_, \&unop, "sqrt") }
1705sub pp_int { maybe_targmy(@_, \&unop, "int") }
1706sub pp_hex { maybe_targmy(@_, \&unop, "hex") }
1707sub pp_oct { maybe_targmy(@_, \&unop, "oct") }
1708sub pp_abs { maybe_targmy(@_, \&unop, "abs") }
1709
1710sub pp_length { maybe_targmy(@_, \&unop, "length") }
1711sub pp_ord { maybe_targmy(@_, \&unop, "ord") }
1712sub pp_chr { maybe_targmy(@_, \&unop, "chr") }
6e90668e
SM
1713
1714sub pp_each { unop(@_, "each") }
1715sub pp_values { unop(@_, "values") }
1716sub pp_keys { unop(@_, "keys") }
09dcfa7d 1717{ no strict 'refs'; *{"pp_r$_"} = *{"pp_$_"} for qw< keys each values >; }
1c85afce
YO
1718sub pp_boolkeys {
1719 # no name because its an optimisation op that has no keyword
1720 unop(@_,"");
1721}
644741fd
NC
1722sub pp_aeach { unop(@_, "each") }
1723sub pp_avalues { unop(@_, "values") }
1724sub pp_akeys { unop(@_, "keys") }
6e90668e
SM
1725sub pp_pop { unop(@_, "pop") }
1726sub pp_shift { unop(@_, "shift") }
1727
1728sub pp_caller { unop(@_, "caller") }
1729sub pp_reset { unop(@_, "reset") }
1730sub pp_exit { unop(@_, "exit") }
1731sub pp_prototype { unop(@_, "prototype") }
1732
1733sub pp_close { unop(@_, "close") }
1734sub pp_fileno { unop(@_, "fileno") }
1735sub pp_umask { unop(@_, "umask") }
6e90668e
SM
1736sub pp_untie { unop(@_, "untie") }
1737sub pp_tied { unop(@_, "tied") }
1738sub pp_dbmclose { unop(@_, "dbmclose") }
1739sub pp_getc { unop(@_, "getc") }
1740sub pp_eof { unop(@_, "eof") }
1741sub pp_tell { unop(@_, "tell") }
1742sub pp_getsockname { unop(@_, "getsockname") }
1743sub pp_getpeername { unop(@_, "getpeername") }
1744
3ed82cfc
GS
1745sub pp_chdir { maybe_targmy(@_, \&unop, "chdir") }
1746sub pp_chroot { maybe_targmy(@_, \&unop, "chroot") }
6e90668e 1747sub pp_readlink { unop(@_, "readlink") }
3ed82cfc 1748sub pp_rmdir { maybe_targmy(@_, \&unop, "rmdir") }
6e90668e
SM
1749sub pp_readdir { unop(@_, "readdir") }
1750sub pp_telldir { unop(@_, "telldir") }
1751sub pp_rewinddir { unop(@_, "rewinddir") }
1752sub pp_closedir { unop(@_, "closedir") }
3ed82cfc 1753sub pp_getpgrp { maybe_targmy(@_, \&unop, "getpgrp") }
6e90668e
SM
1754sub pp_localtime { unop(@_, "localtime") }
1755sub pp_gmtime { unop(@_, "gmtime") }
1756sub pp_alarm { unop(@_, "alarm") }
3ed82cfc 1757sub pp_sleep { maybe_targmy(@_, \&unop, "sleep") }
6e90668e
SM
1758
1759sub pp_dofile { unop(@_, "do") }
7d789282
FC
1760sub pp_entereval {
1761 unop(
1762 @_,
1763 $_[1]->private & OPpEVAL_BYTES ? $_[0]->keyword('evalbytes') : "eval"
1764 )
1765}
6e90668e
SM
1766
1767sub pp_ghbyname { unop(@_, "gethostbyname") }
1768sub pp_gnbyname { unop(@_, "getnetbyname") }
1769sub pp_gpbyname { unop(@_, "getprotobyname") }
1770sub pp_shostent { unop(@_, "sethostent") }
1771sub pp_snetent { unop(@_, "setnetent") }
1772sub pp_sprotoent { unop(@_, "setprotoent") }
1773sub pp_sservent { unop(@_, "setservent") }
1774sub pp_gpwnam { unop(@_, "getpwnam") }
1775sub pp_gpwuid { unop(@_, "getpwuid") }
1776sub pp_ggrnam { unop(@_, "getgrnam") }
1777sub pp_ggrgid { unop(@_, "getgrgid") }
1778
1779sub pp_lock { unop(@_, "lock") }
1780
0d863452 1781sub pp_continue { unop(@_, "continue"); }
c08f093b 1782sub pp_break { unop(@_, "break"); }
0d863452
RH
1783
1784sub givwhen {
1785 my $self = shift;
1786 my($op, $cx, $givwhen) = @_;
1787
1788 my $enterop = $op->first;
1789 my ($head, $block);
1790 if ($enterop->flags & OPf_SPECIAL) {
80e3f4ad 1791 $head = $self->keyword("default");
0d863452
RH
1792 $block = $self->deparse($enterop->first, 0);
1793 }
1794 else {
1795 my $cond = $enterop->first;
1796 my $cond_str = $self->deparse($cond, 1);
1797 $head = "$givwhen ($cond_str)";
1798 $block = $self->deparse($cond->sibling, 0);
1799 }
1800
1801 return "$head {\n".
1802 "\t$block\n".
1803 "\b}\cK";
1804}
1805
80e3f4ad
FC
1806sub pp_leavegiven { givwhen(@_, $_[0]->keyword("given")); }
1807sub pp_leavewhen { givwhen(@_, $_[0]->keyword("when")); }
0d863452 1808
6e90668e
SM
1809sub pp_exists {
1810 my $self = shift;
9d2c6865 1811 my($op, $cx) = @_;
34a48b4b
RH
1812 my $arg;
1813 if ($op->private & OPpEXISTS_SUB) {
1814 # Checking for the existence of a subroutine
1815 return $self->maybe_parens_func("exists",
1816 $self->pp_rv2cv($op->first, 16), $cx, 16);
1817 }
1818 if ($op->flags & OPf_SPECIAL) {
1819 # Array element, not hash element
1820 return $self->maybe_parens_func("exists",
1821 $self->pp_aelem($op->first, 16), $cx, 16);
1822 }
9d2c6865
SM
1823 return $self->maybe_parens_func("exists", $self->pp_helem($op->first, 16),
1824 $cx, 16);
6e90668e
SM
1825}
1826
6e90668e
SM
1827sub pp_delete {
1828 my $self = shift;
9d2c6865 1829 my($op, $cx) = @_;
6e90668e
SM
1830 my $arg;
1831 if ($op->private & OPpSLICE) {
34a48b4b
RH
1832 if ($op->flags & OPf_SPECIAL) {
1833 # Deleting from an array, not a hash
1834 return $self->maybe_parens_func("delete",
1835 $self->pp_aslice($op->first, 16),
1836 $cx, 16);
1837 }
9d2c6865
SM
1838 return $self->maybe_parens_func("delete",
1839 $self->pp_hslice($op->first, 16),
1840 $cx, 16);
6e90668e 1841 } else {
34a48b4b
RH
1842 if ($op->flags & OPf_SPECIAL) {
1843 # Deleting from an array, not a hash
1844 return $self->maybe_parens_func("delete",
1845 $self->pp_aelem($op->first, 16),
1846 $cx, 16);
1847 }
9d2c6865
SM
1848 return $self->maybe_parens_func("delete",
1849 $self->pp_helem($op->first, 16),
1850 $cx, 16);
6e90668e 1851 }
6e90668e
SM
1852}
1853
6e90668e
SM
1854sub pp_require {
1855 my $self = shift;
9d2c6865 1856 my($op, $cx) = @_;
d5889722 1857 my $opname = $op->flags & OPf_SPECIAL ? 'CORE::require' : 'require';
3f872cb9 1858 if (class($op) eq "UNOP" and $op->first->name eq "const"
4c1f658f 1859 and $op->first->private & OPpCONST_BARE)
6e90668e 1860 {
18228111 1861 my $name = $self->const_sv($op->first)->PV;
6e90668e
SM
1862 $name =~ s[/][::]g;
1863 $name =~ s/\.pm//g;
d5889722 1864 return "$opname $name";
6e90668e 1865 } else {
30fcd6c4 1866 $self->unop($op, $cx, $op->first->private & OPpCONST_NOVER ? "no" : $opname);
6e90668e
SM
1867 }
1868}
1869
d989cdac 1870sub pp_scalar {
9d2c6865 1871 my $self = shift;
d9002312 1872 my($op, $cx) = @_;
9d2c6865
SM
1873 my $kid = $op->first;
1874 if (not null $kid->sibling) {
1875 # XXX Was a here-doc
1876 return $self->dquote($op);
1877 }
1878 $self->unop(@_, "scalar");
1879}
1880
1881
6e90668e
SM
1882sub padval {
1883 my $self = shift;
1884 my $targ = shift;
d989cdac 1885 return $self->{'curcv'}->PADLIST->ARRAYelt(1)->ARRAYelt($targ);
6e90668e
SM
1886}
1887
78c72037
NC
1888sub anon_hash_or_list {
1889 my $self = shift;
d9002312 1890 my($op, $cx) = @_;
78c72037
NC
1891
1892 my($pre, $post) = @{{"anonlist" => ["[","]"],
1893 "anonhash" => ["{","}"]}->{$op->name}};
1894 my($expr, @exprs);
1895 $op = $op->first->sibling; # skip pushmark
1896 for (; !null($op); $op = $op->sibling) {
1897 $expr = $self->deparse($op, 6);
1898 push @exprs, $expr;
1899 }
d9002312
SM
1900 if ($pre eq "{" and $cx < 1) {
1901 # Disambiguate that it's not a block
1902 $pre = "+{";
1903 }
78c72037
NC
1904 return $pre . join(", ", @exprs) . $post;
1905}
1906
1907sub pp_anonlist {
d9002312
SM
1908 my $self = shift;
1909 my ($op, $cx) = @_;
78c72037 1910 if ($op->flags & OPf_SPECIAL) {
d9002312 1911 return $self->anon_hash_or_list($op, $cx);
78c72037
NC
1912 }
1913 warn "Unexpected op pp_" . $op->name() . " without OPf_SPECIAL";
1914 return 'XXX';
1915}
1916
1917*pp_anonhash = \&pp_anonlist;
1918
6e90668e
SM
1919sub pp_refgen {
1920 my $self = shift;
9d2c6865 1921 my($op, $cx) = @_;
6e90668e 1922 my $kid = $op->first;
3f872cb9 1923 if ($kid->name eq "null") {
6e90668e 1924 $kid = $kid->first;
35925e80 1925 if (!null($kid->sibling) and
3f872cb9 1926 $kid->sibling->name eq "anoncode") {
09d856fb 1927 return $self->e_anoncode({ code => $self->padval($kid->sibling->targ) });
3f872cb9
GS
1928 } elsif ($kid->name eq "pushmark") {
1929 my $sib_name = $kid->sibling->name;
1930 if ($sib_name =~ /^(pad|rv2)[ah]v$/
c8c62db7
AD
1931 and not $kid->sibling->flags & OPf_REF)
1932 {
1933 # The @a in \(@a) isn't in ref context, but only when the
1934 # parens are there.
127212b2 1935 return "\\(" . $self->pp_list($op->first) . ")";
3f872cb9 1936 } elsif ($sib_name eq 'entersub') {
c8c62db7
AD
1937 my $text = $self->deparse($kid->sibling, 1);
1938 # Always show parens for \(&func()), but only with -p otherwise
1939 $text = "($text)" if $self->{'parens'}
1940 or $kid->sibling->private & OPpENTERSUB_AMPER;
1941 return "\\$text";
1942 }
1943 }
6e90668e 1944 }
9d2c6865 1945 $self->pfixop($op, $cx, "\\", 20);
6e90668e
SM
1946}
1947
09d856fb
CK
1948sub e_anoncode {
1949 my ($self, $info) = @_;
1950 my $text = $self->deparse_sub($info->{code});
1951 return "sub " . $text;
1952}
1953
6e90668e
SM
1954sub pp_srefgen { pp_refgen(@_) }
1955
1956sub pp_readline {
1957 my $self = shift;
9d2c6865 1958 my($op, $cx) = @_;
6e90668e 1959 my $kid = $op->first;
3f872cb9 1960 $kid = $kid->first if $kid->name eq "rv2gv"; # <$fh>
e31885a0
RH
1961 return "<" . $self->deparse($kid, 1) . ">" if is_scalar($kid);
1962 return $self->unop($op, $cx, "readline");
6e90668e
SM
1963}
1964
ad8caead
RGS
1965sub pp_rcatline {
1966 my $self = shift;
1967 my($op) = @_;
d989cdac 1968 return "<" . $self->gv_name($self->gv_or_padgv($op)) . ">";
ad8caead
RGS
1969}
1970
bd0865ec
GS
1971# Unary operators that can occur as pseudo-listops inside double quotes
1972sub dq_unop {
1973 my $self = shift;
1974 my($op, $cx, $name, $prec, $flags) = (@_, 0, 0);
1975 my $kid;
1976 if ($op->flags & OPf_KIDS) {
1977 $kid = $op->first;
1978 # If there's more than one kid, the first is an ex-pushmark.
1979 $kid = $kid->sibling if not null $kid->sibling;
1980 return $self->maybe_parens_unop($name, $kid, $cx);
1981 } else {
d989cdac 1982 return $name . ($op->flags & OPf_SPECIAL ? "()" : "");
bd0865ec
GS
1983 }
1984}
1985
1986sub pp_ucfirst { dq_unop(@_, "ucfirst") }
1987sub pp_lcfirst { dq_unop(@_, "lcfirst") }
1988sub pp_uc { dq_unop(@_, "uc") }
1989sub pp_lc { dq_unop(@_, "lc") }
3ed82cfc 1990sub pp_quotemeta { maybe_targmy(@_, \&dq_unop, "quotemeta") }
bd0865ec 1991
6e90668e
SM
1992sub loopex {
1993 my $self = shift;
9d2c6865 1994 my ($op, $cx, $name) = @_;
6e90668e 1995 if (class($op) eq "PVOP") {
9d2c6865
SM
1996 return "$name " . $op->pv;
1997 } elsif (class($op) eq "OP") {
1998 return $name;
6e90668e 1999 } elsif (class($op) eq "UNOP") {
9d2c6865
SM
2000 # Note -- loop exits are actually exempt from the
2001 # looks-like-a-func rule, but a few extra parens won't hurt
2002 return $self->maybe_parens_unop($name, $op->first, $cx);
6e90668e 2003 }
6e90668e
SM
2004}
2005
2006sub pp_last { loopex(@_, "last") }
2007sub pp_next { loopex(@_, "next") }
2008sub pp_redo { loopex(@_, "redo") }
2009sub pp_goto { loopex(@_, "goto") }
4a1ac32e 2010sub pp_dump { loopex(@_, $_[0]->keyword("dump")) }
6e90668e
SM
2011
2012sub ftst {
2013 my $self = shift;
9d2c6865 2014 my($op, $cx, $name) = @_;
6e90668e 2015 if (class($op) eq "UNOP") {
e38ccfd9 2016 # Genuine '-X' filetests are exempt from the LLAFR, but not
9d2c6865
SM
2017 # l?stat(); for the sake of clarity, give'em all parens
2018 return $self->maybe_parens_unop($name, $op->first, $cx);
d989cdac 2019 } elsif (class($op) =~ /^(SV|PAD)OP$/) {
9d2c6865 2020 return $self->maybe_parens_func($name, $self->pp_gv($op, 1), $cx, 16);
6e90668e 2021 } else { # I don't think baseop filetests ever survive ck_ftst, but...
9d2c6865 2022 return $name;
6e90668e 2023 }
6e90668e
SM
2024}
2025
d989cdac
SM
2026sub pp_lstat { ftst(@_, "lstat") }
2027sub pp_stat { ftst(@_, "stat") }
2028sub pp_ftrread { ftst(@_, "-R") }
6e90668e 2029sub pp_ftrwrite { ftst(@_, "-W") }
d989cdac
SM
2030sub pp_ftrexec { ftst(@_, "-X") }
2031sub pp_fteread { ftst(@_, "-r") }
e31885a0 2032sub pp_ftewrite { ftst(@_, "-w") }
d989cdac
SM
2033sub pp_fteexec { ftst(@_, "-x") }
2034sub pp_ftis { ftst(@_, "-e") }
6e90668e
SM
2035sub pp_fteowned { ftst(@_, "-O") }
2036sub pp_ftrowned { ftst(@_, "-o") }
d989cdac
SM
2037sub pp_ftzero { ftst(@_, "-z") }
2038sub pp_ftsize { ftst(@_, "-s") }
2039sub pp_ftmtime { ftst(@_, "-M") }
2040sub pp_ftatime { ftst(@_, "-A") }
2041sub pp_ftctime { ftst(@_, "-C") }
2042sub pp_ftsock { ftst(@_, "-S") }
2043sub pp_ftchr { ftst(@_, "-c") }
2044sub pp_ftblk { ftst(@_, "-b") }
2045sub pp_ftfile { ftst(@_, "-f") }
2046sub pp_ftdir { ftst(@_, "-d") }
2047sub pp_ftpipe { ftst(@_, "-p") }
2048sub pp_ftlink { ftst(@_, "-l") }
2049sub pp_ftsuid { ftst(@_, "-u") }
2050sub pp_ftsgid { ftst(@_, "-g") }
2051sub pp_ftsvtx { ftst(@_, "-k") }
2052sub pp_fttty { ftst(@_, "-t") }
2053sub pp_fttext { ftst(@_, "-T") }
6e90668e
SM
2054sub pp_ftbinary { ftst(@_, "-B") }
2055
a798dbf2 2056sub SWAP_CHILDREN () { 1 }
6e90668e 2057sub ASSIGN () { 2 } # has OP= variant
7013e6ae 2058sub LIST_CONTEXT () { 4 } # Assignment is in list context
6e90668e 2059
9d2c6865
SM
2060my(%left, %right);
2061
2062sub assoc_class {
2063 my $op = shift;
3f872cb9
GS
2064 my $name = $op->name;
2065 if ($name eq "concat" and $op->first->name eq "concat") {
e38ccfd9 2066 # avoid spurious '=' -- see comment in pp_concat
3f872cb9 2067 return "concat";
9d2c6865 2068 }
3f872cb9
GS
2069 if ($name eq "null" and class($op) eq "UNOP"
2070 and $op->first->name =~ /^(and|x?or)$/
9d2c6865
SM
2071 and null $op->first->sibling)
2072 {
2073 # Like all conditional constructs, OP_ANDs and OP_ORs are topped
2074 # with a null that's used as the common end point of the two
2075 # flows of control. For precedence purposes, ignore it.
2076 # (COND_EXPRs have these too, but we don't bother with
2077 # their associativity).
2078 return assoc_class($op->first);
2079 }
2080 return $name . ($op->flags & OPf_STACKED ? "=" : "");
2081}
2082
e38ccfd9 2083# Left associative operators, like '+', for which
9d2c6865
SM
2084# $a + $b + $c is equivalent to ($a + $b) + $c
2085
2086BEGIN {
3f872cb9
GS
2087 %left = ('multiply' => 19, 'i_multiply' => 19,
2088 'divide' => 19, 'i_divide' => 19,
2089 'modulo' => 19, 'i_modulo' => 19,
2090 'repeat' => 19,
2091 'add' => 18, 'i_add' => 18,
2092 'subtract' => 18, 'i_subtract' => 18,
2093 'concat' => 18,
2094 'left_shift' => 17, 'right_shift' => 17,
2095 'bit_and' => 13,
2096 'bit_or' => 12, 'bit_xor' => 12,
2097 'and' => 3,
2098 'or' => 2, 'xor' => 2,
9d2c6865
SM
2099 );
2100}
2101
2102sub deparse_binop_left {
2103 my $self = shift;
2104 my($op, $left, $prec) = @_;
58231d39 2105 if ($left{assoc_class($op)} && $left{assoc_class($left)}
9d2c6865
SM
2106 and $left{assoc_class($op)} == $left{assoc_class($left)})
2107 {
2108 return $self->deparse($left, $prec - .00001);
2109 } else {
2110 return $self->deparse($left, $prec);
2111 }
2112}
2113
e38ccfd9 2114# Right associative operators, like '=', for which
9d2c6865
SM
2115# $a = $b = $c is equivalent to $a = ($b = $c)
2116
2117BEGIN {
3f872cb9
GS
2118 %right = ('pow' => 22,
2119 'sassign=' => 7, 'aassign=' => 7,
2120 'multiply=' => 7, 'i_multiply=' => 7,
2121 'divide=' => 7, 'i_divide=' => 7,
2122 'modulo=' => 7, 'i_modulo=' => 7,
2123 'repeat=' => 7,
2124 'add=' => 7, 'i_add=' => 7,
2125 'subtract=' => 7, 'i_subtract=' => 7,
2126 'concat=' => 7,
2127 'left_shift=' => 7, 'right_shift=' => 7,
2128 'bit_and=' => 7,
2129 'bit_or=' => 7, 'bit_xor=' => 7,
2130 'andassign' => 7,
2131 'orassign' => 7,
9d2c6865
SM
2132 );
2133}
2134
2135sub deparse_binop_right {
2136 my $self = shift;
2137 my($op, $right, $prec) = @_;
58231d39 2138 if ($right{assoc_class($op)} && $right{assoc_class($right)}
9d2c6865
SM
2139 and $right{assoc_class($op)} == $right{assoc_class($right)})
2140 {
2141 return $self->deparse($right, $prec - .00001);
2142 } else {
2143 return $self->deparse($right, $prec);
2144 }
2145}
2146
a798dbf2 2147sub binop {
6e90668e 2148 my $self = shift;
9d2c6865 2149 my ($op, $cx, $opname, $prec, $flags) = (@_, 0);
a798dbf2
MB
2150 my $left = $op->first;
2151 my $right = $op->last;
9d2c6865
SM
2152 my $eq = "";
2153 if ($op->flags & OPf_STACKED && $flags & ASSIGN) {
2154 $eq = "=";
2155 $prec = 7;
2156 }
a798dbf2
MB
2157 if ($flags & SWAP_CHILDREN) {
2158 ($left, $right) = ($right, $left);
2159 }
9d2c6865 2160 $left = $self->deparse_binop_left($op, $left, $prec);
90c0eb26
RH
2161 $left = "($left)" if $flags & LIST_CONTEXT
2162 && $left !~ /^(my|our|local|)[\@\(]/;
9d2c6865
SM
2163 $right = $self->deparse_binop_right($op, $right, $prec);
2164 return $self->maybe_parens("$left $opname$eq $right", $cx, $prec);
2165}
2166
3ed82cfc
GS
2167sub pp_add { maybe_targmy(@_, \&binop, "+", 18, ASSIGN) }
2168sub pp_multiply { maybe_targmy(@_, \&binop, "*", 19, ASSIGN) }
2169sub pp_subtract { maybe_targmy(@_, \&binop, "-",18, ASSIGN) }
2170sub pp_divide { maybe_targmy(@_, \&binop, "/", 19, ASSIGN) }
2171sub pp_modulo { maybe_targmy(@_, \&binop, "%", 19, ASSIGN) }
2172sub pp_i_add { maybe_targmy(@_, \&binop, "+", 18, ASSIGN) }
2173sub pp_i_multiply { maybe_targmy(@_, \&binop, "*", 19, ASSIGN) }
2174sub pp_i_subtract { maybe_targmy(@_, \&binop, "-", 18, ASSIGN) }
2175sub pp_i_divide { maybe_targmy(@_, \&binop, "/", 19, ASSIGN) }
2176sub pp_i_modulo { maybe_targmy(@_, \&binop, "%", 19, ASSIGN) }
2177sub pp_pow { maybe_targmy(@_, \&binop, "**", 22, ASSIGN) }
2178
2179sub pp_left_shift { maybe_targmy(@_, \&binop, "<<", 17, ASSIGN) }
2180sub pp_right_shift { maybe_targmy(@_, \&binop, ">>", 17, ASSIGN) }
2181sub pp_bit_and { maybe_targmy(@_, \&binop, "&", 13, ASSIGN) }
2182sub pp_bit_or { maybe_targmy(@_, \&binop, "|", 12, ASSIGN) }
2183sub pp_bit_xor { maybe_targmy(@_, \&binop, "^", 12, ASSIGN) }
9d2c6865
SM
2184
2185sub pp_eq { binop(@_, "==", 14) }
2186sub pp_ne { binop(@_, "!=", 14) }
2187sub pp_lt { binop(@_, "<", 15) }
2188sub pp_gt { binop(@_, ">", 15) }
2189sub pp_ge { binop(@_, ">=", 15) }
2190sub pp_le { binop(@_, "<=", 15) }
2191sub pp_ncmp { binop(@_, "<=>", 14) }
2192sub pp_i_eq { binop(@_, "==", 14) }
2193sub pp_i_ne { binop(@_, "!=", 14) }
2194sub pp_i_lt { binop(@_, "<", 15) }
2195sub pp_i_gt { binop(@_, ">", 15) }
2196sub pp_i_ge { binop(@_, ">=", 15) }
2197sub pp_i_le { binop(@_, "<=", 15) }
2198sub pp_i_ncmp { binop(@_, "<=>", 14) }
2199
2200sub pp_seq { binop(@_, "eq", 14) }
2201sub pp_sne { binop(@_, "ne", 14) }
2202sub pp_slt { binop(@_, "lt", 15) }
2203sub pp_sgt { binop(@_, "gt", 15) }
2204sub pp_sge { binop(@_, "ge", 15) }
2205sub pp_sle { binop(@_, "le", 15) }
2206sub pp_scmp { binop(@_, "cmp", 14) }
2207
2208sub pp_sassign { binop(@_, "=", 7, SWAP_CHILDREN) }
7013e6ae 2209sub pp_aassign { binop(@_, "=", 7, SWAP_CHILDREN | LIST_CONTEXT) }
6e90668e 2210
0d863452
RH
2211sub pp_smartmatch {
2212 my ($self, $op, $cx) = @_;
2213 if ($op->flags & OPf_SPECIAL) {
9210de83 2214 return $self->deparse($op->last, $cx);
0d863452
RH
2215 }
2216 else {
2217 binop(@_, "~~", 14);
2218 }
2219}
2220
e38ccfd9 2221# '.' is special because concats-of-concats are optimized to save copying
6e90668e 2222# by making all but the first concat stacked. The effect is as if the
e38ccfd9 2223# programmer had written '($a . $b) .= $c', except legal.
3ed82cfc
GS
2224sub pp_concat { maybe_targmy(@_, \&real_concat) }
2225sub real_concat {
6e90668e 2226 my $self = shift;
9d2c6865 2227 my($op, $cx) = @_;
6e90668e
SM
2228 my $left = $op->first;
2229 my $right = $op->last;
2230 my $eq = "";
9d2c6865 2231 my $prec = 18;
3f872cb9 2232 if ($op->flags & OPf_STACKED and $op->first->name ne "concat") {
6e90668e 2233 $eq = "=";
9d2c6865 2234 $prec = 7;
6e90668e 2235 }
9d2c6865
SM
2236 $left = $self->deparse_binop_left($op, $left, $prec);
2237 $right = $self->deparse_binop_right($op, $right, $prec);
2238 return $self->maybe_parens("$left .$eq $right", $cx, $prec);
6e90668e
SM
2239}
2240
e38ccfd9 2241# 'x' is weird when the left arg is a list
6e90668e
SM
2242sub pp_repeat {
2243 my $self = shift;
9d2c6865 2244 my($op, $cx) = @_;
6e90668e
SM
2245 my $left = $op->first;
2246 my $right = $op->last;
9d2c6865
SM
2247 my $eq = "";
2248 my $prec = 19;
2249 if ($op->flags & OPf_STACKED) {
2250 $eq = "=";
2251 $prec = 7;
2252 }
6e90668e
SM
2253 if (null($right)) { # list repeat; count is inside left-side ex-list
2254 my $kid = $left->first->sibling; # skip pushmark
2255 my @exprs;
2256 for (; !null($kid->sibling); $kid = $kid->sibling) {
9d2c6865 2257 push @exprs, $self->deparse($kid, 6);
6e90668e
SM
2258 }
2259 $right = $kid;
2260 $left = "(" . join(", ", @exprs). ")";
2261 } else {
9d2c6865 2262 $left = $self->deparse_binop_left($op, $left, $prec);
6e90668e 2263 }
9d2c6865
SM
2264 $right = $self->deparse_binop_right($op, $right, $prec);
2265 return $self->maybe_parens("$left x$eq $right", $cx, $prec);
6e90668e
SM
2266}
2267
2268sub range {
2269 my $self = shift;
9d2c6865 2270 my ($op, $cx, $type) = @_;
6e90668e
SM
2271 my $left = $op->first;
2272 my $right = $left->sibling;
9d2c6865
SM
2273 $left = $self->deparse($left, 9);
2274 $right = $self->deparse($right, 9);
2275 return $self->maybe_parens("$left $type $right", $cx, 9);
6e90668e
SM
2276}
2277
2278sub pp_flop {
2279 my $self = shift;
9d2c6865 2280 my($op, $cx) = @_;
6e90668e
SM
2281 my $flip = $op->first;
2282 my $type = ($flip->flags & OPf_SPECIAL) ? "..." : "..";
9d2c6865 2283 return $self->range($flip->first, $cx, $type);
6e90668e
SM
2284}
2285
2286# one-line while/until is handled in pp_leave
2287
2288sub logop {
2289 my $self = shift;
9d2c6865 2290 my ($op, $cx, $lowop, $lowprec, $highop, $highprec, $blockname) = @_;
6e90668e
SM
2291 my $left = $op->first;
2292 my $right = $op->first->sibling;
d989cdac 2293 if ($cx < 1 and is_scope($right) and $blockname
58cccf98
SM
2294 and $self->{'expand'} < 7)
2295 { # if ($a) {$b}
9d2c6865
SM
2296 $left = $self->deparse($left, 1);
2297 $right = $self->deparse($right, 0);
2298 return "$blockname ($left) {\n\t$right\n\b}\cK";
d989cdac 2299 } elsif ($cx < 1 and $blockname and not $self->{'parens'}
58cccf98 2300 and $self->{'expand'} < 7) { # $b if $a
9d2c6865
SM
2301 $right = $self->deparse($right, 1);
2302 $left = $self->deparse($left, 1);
2303 return "$right $blockname $left";
2304 } elsif ($cx > $lowprec and $highop) { # $a && $b
2305 $left = $self->deparse_binop_left($op, $left, $highprec);
2306 $right = $self->deparse_binop_right($op, $right, $highprec);
2307 return $self->maybe_parens("$left $highop $right", $cx, $highprec);
2308 } else { # $a and $b
2309 $left = $self->deparse_binop_left($op, $left, $lowprec);
2310 $right = $self->deparse_binop_right($op, $right, $lowprec);
d989cdac 2311 return $self->maybe_parens("$left $lowop $right", $cx, $lowprec);
9d2c6865
SM
2312 }
2313}
2314
2315sub pp_and { logop(@_, "and", 3, "&&", 11, "if") }
f4a44678 2316sub pp_or { logop(@_, "or", 2, "||", 10, "unless") }
5b99f273 2317sub pp_dor { logop(@_, "//", 10) }
3ed82cfc
GS
2318
2319# xor is syntactically a logop, but it's really a binop (contrary to
2320# old versions of opcode.pl). Syntax is what matters here.
9d2c6865 2321sub pp_xor { logop(@_, "xor", 2, "", 0, "") }
6e90668e
SM
2322
2323sub logassignop {
2324 my $self = shift;
9d2c6865 2325 my ($op, $cx, $opname) = @_;
6e90668e
SM
2326 my $left = $op->first;
2327 my $right = $op->first->sibling->first; # skip sassign
9d2c6865
SM
2328 $left = $self->deparse($left, 7);
2329 $right = $self->deparse($right, 7);
2330 return $self->maybe_parens("$left $opname $right", $cx, 7);
a798dbf2
MB
2331}
2332
6e90668e 2333sub pp_andassign { logassignop(@_, "&&=") }
c963b151
BD
2334sub pp_orassign { logassignop(@_, "||=") }
2335sub pp_dorassign { logassignop(@_, "//=") }
6e90668e
SM
2336
2337sub listop {
2338 my $self = shift;
24fcb59f 2339 my($op, $cx, $name, $kid) = @_;
9d2c6865
SM
2340 my(@exprs);
2341 my $parens = ($cx >= 5) || $self->{'parens'};
24fcb59f 2342 $kid ||= $op->first->sibling;
4a1ac32e 2343 return $self->keyword($name) if null $kid;
e31885a0 2344 my $first;
fb725297 2345 $name = "socketpair" if $name eq "sockpair";
4a1ac32e 2346 my $fullname = $self->keyword($name);
b72c97e8
RGS
2347 my $proto = prototype("CORE::$name");
2348 if (defined $proto
2349 && $proto =~ /^;?\*/
e31885a0
RH
2350 && $kid->name eq "rv2gv") {
2351 $first = $self->deparse($kid->first, 6);
2352 }
2353 else {
2354 $first = $self->deparse($kid, 6);
2355 }
e99ebc55 2356 if ($name eq "chmod" && $first =~ /^\d+$/) {
a0035eb8 2357 $first = sprintf("%#o", $first);
e99ebc55 2358 }
9d2c6865
SM
2359 $first = "+$first" if not $parens and substr($first, 0, 1) eq "(";
2360 push @exprs, $first;
2361 $kid = $kid->sibling;
e1f56625 2362 if (defined $proto && $proto =~ /^\*\*/ && $kid->name eq "rv2gv") {
b72c97e8
RGS
2363 push @exprs, $self->deparse($kid->first, 6);
2364 $kid = $kid->sibling;
2365 }
9d2c6865
SM
2366 for (; !null($kid); $kid = $kid->sibling) {
2367 push @exprs, $self->deparse($kid, 6);
2368 }
689e417f 2369 if ($name eq "reverse" && ($op->private & OPpREVERSE_INPLACE)) {
4a1ac32e
FC
2370 return "$exprs[0] = $fullname"
2371 . ($parens ? "($exprs[0])" : " $exprs[0]");
689e417f 2372 }
9d2c6865 2373 if ($parens) {
4a1ac32e 2374 return "$fullname(" . join(", ", @exprs) . ")";
9d2c6865 2375 } else {
4a1ac32e 2376 return "$fullname " . join(", ", @exprs);
6e90668e 2377 }
6e90668e 2378}
a798dbf2 2379
6e90668e 2380sub pp_bless { listop(@_, "bless") }
3ed82cfc 2381sub pp_atan2 { maybe_targmy(@_, \&listop, "atan2") }
24fcb59f
FC
2382sub pp_substr {
2383 my ($self,$op,$cx) = @_;
2384 if ($op->private & OPpSUBSTR_REPL_FIRST) {
2385 return
2386 listop($self, $op, 7, "substr", $op->first->sibling->sibling)
2387 . " = "
2388 . $self->deparse($op->first->sibling, 7);
2389 }
2390 maybe_local(@_, listop(@_, "substr"))
2391}
6e90668e 2392sub pp_vec { maybe_local(@_, listop(@_, "vec")) }
3ed82cfc
GS
2393sub pp_index { maybe_targmy(@_, \&listop, "index") }
2394sub pp_rindex { maybe_targmy(@_, \&listop, "rindex") }
2395sub pp_sprintf { maybe_targmy(@_, \&listop, "sprintf") }
6e90668e 2396sub pp_formline { listop(@_, "formline") } # see also deparse_format
3ed82cfc 2397sub pp_crypt { maybe_targmy(@_, \&listop, "crypt") }
6e90668e
SM
2398sub pp_unpack { listop(@_, "unpack") }
2399sub pp_pack { listop(@_, "pack") }
3ed82cfc 2400sub pp_join { maybe_targmy(@_, \&listop, "join") }
6e90668e 2401sub pp_splice { listop(@_, "splice") }
3ed82cfc
GS
2402sub pp_push { maybe_targmy(@_, \&listop, "push") }
2403sub pp_unshift { maybe_targmy(@_, \&listop, "unshift") }
6e90668e
SM
2404sub pp_reverse { listop(@_, "reverse") }
2405sub pp_warn { listop(@_, "warn") }
2406sub pp_die { listop(@_, "die") }
9d2c6865
SM
2407# Actually, return is exempt from the LLAFR (see examples in this very
2408# module!), but for consistency's sake, ignore that fact
6e90668e
SM
2409sub pp_return { listop(@_, "return") }
2410sub pp_open { listop(@_, "open") }
2411sub pp_pipe_op { listop(@_, "pipe") }
2412sub pp_tie { listop(@_, "tie") }
82bafd27 2413sub pp_binmode { listop(@_, "binmode") }
6e90668e
SM
2414sub pp_dbmopen { listop(@_, "dbmopen") }
2415sub pp_sselect { listop(@_, "select") }
2416sub pp_select { listop(@_, "select") }
2417sub pp_read { listop(@_, "read") }
2418sub pp_sysopen { listop(@_, "sysopen") }
2419sub pp_sysseek { listop(@_, "sysseek") }
2420sub pp_sysread { listop(@_, "sysread") }
2421sub pp_syswrite { listop(@_, "syswrite") }
2422sub pp_send { listop(@_, "send") }
2423sub pp_recv { listop(@_, "recv") }
2424sub pp_seek { listop(@_, "seek") }
6e90668e
SM
2425sub pp_fcntl { listop(@_, "fcntl") }
2426sub pp_ioctl { listop(@_, "ioctl") }
3ed82cfc 2427sub pp_flock { maybe_targmy(@_, \&listop, "flock") }
6e90668e
SM
2428sub pp_socket { listop(@_, "socket") }
2429sub pp_sockpair { listop(@_, "sockpair") }
2430sub pp_bind { listop(@_, "bind") }
2431sub pp_connect { listop(@_, "connect") }
2432sub pp_listen { listop(@_, "listen") }
2433sub pp_accept { listop(@_, "accept") }
2434sub pp_shutdown { listop(@_, "shutdown") }
2435sub pp_gsockopt { listop(@_, "getsockopt") }
2436sub pp_ssockopt { listop(@_, "setsockopt") }
3ed82cfc
GS
2437sub pp_chown { maybe_targmy(@_, \&listop, "chown") }
2438sub pp_unlink { maybe_targmy(@_, \&listop, "unlink") }
2439sub pp_chmod { maybe_targmy(@_, \&listop, "chmod") }
2440sub pp_utime { maybe_targmy(@_, \&listop, "utime") }
2441sub pp_rename { maybe_targmy(@_, \&listop, "rename") }
2442sub pp_link { maybe_targmy(@_, \&listop, "link") }
2443sub pp_symlink { maybe_targmy(@_, \&listop, "symlink") }
2444sub pp_mkdir { maybe_targmy(@_, \&listop, "mkdir") }
6e90668e
SM
2445sub pp_open_dir { listop(@_, "opendir") }
2446sub pp_seekdir { listop(@_, "seekdir") }
3ed82cfc
GS
2447sub pp_waitpid { maybe_targmy(@_, \&listop, "waitpid") }
2448sub pp_system { maybe_targmy(@_, \&listop, "system") }
2449sub pp_exec { maybe_targmy(@_, \&listop, "exec") }
2450sub pp_kill { maybe_targmy(@_, \&listop, "kill") }
2451sub pp_setpgrp { maybe_targmy(@_, \&listop, "setpgrp") }
2452sub pp_getpriority { maybe_targmy(@_, \&listop, "getpriority") }
2453sub pp_setpriority { maybe_targmy(@_, \&listop, "setpriority") }
6e90668e
SM
2454sub pp_shmget { listop(@_, "shmget") }
2455sub pp_shmctl { listop(@_, "shmctl") }
2456sub pp_shmread { listop(@_, "shmread") }
2457sub pp_shmwrite { listop(@_, "shmwrite") }
2458sub pp_msgget { listop(@_, "msgget") }
2459sub pp_msgctl { listop(@_, "msgctl") }
2460sub pp_msgsnd { listop(@_, "msgsnd") }
2461sub pp_msgrcv { listop(@_, "msgrcv") }
2462sub pp_semget { listop(@_, "semget") }
2463sub pp_semctl { listop(@_, "semctl") }
2464sub pp_semop { listop(@_, "semop") }
2465sub pp_ghbyaddr { listop(@_, "gethostbyaddr") }
2466sub pp_gnbyaddr { listop(@_, "getnetbyaddr") }
2467sub pp_gpbynumber { listop(@_, "getprotobynumber") }
2468sub pp_gsbyname { listop(@_, "getservbyname") }
2469sub pp_gsbyport { listop(@_, "getservbyport") }
2470sub pp_syscall { listop(@_, "syscall") }
2471
2472sub pp_glob {
2473 my $self = shift;
9d2c6865 2474 my($op, $cx) = @_;
6e90668e 2475 my $text = $self->dq($op->first->sibling); # skip pushmark
a32fbbd8
FC
2476 my $keyword =
2477 $op->flags & OPf_SPECIAL ? 'glob' : $self->keyword('glob');
6e90668e 2478 if ($text =~ /^\$?(\w|::|\`)+$/ # could look like a readline
a32fbbd8
FC
2479 or $keyword =~ /^CORE::/
2480 or $text =~ /[<>]/) {
2481 return "$keyword(" . single_delim('qq', '"', $text) . ')';
6e90668e
SM
2482 } else {
2483 return '<' . $text . '>';
2484 }
2485}
2486
f5aa8f4e
SM
2487# Truncate is special because OPf_SPECIAL makes a bareword first arg
2488# be a filehandle. This could probably be better fixed in the core
2489# by moving the GV lookup into ck_truc.
2490
2491sub pp_truncate {
2492 my $self = shift;
2493 my($op, $cx) = @_;
2494 my(@exprs);
2495 my $parens = ($cx >= 5) || $self->{'parens'};
2496 my $kid = $op->first->sibling;
acba1d67 2497 my $fh;
f5aa8f4e
SM
2498 if ($op->flags & OPf_SPECIAL) {
2499 # $kid is an OP_CONST
18228111 2500 $fh = $self->const_sv($kid)->PV;
f5aa8f4e
SM
2501 } else {
2502 $fh = $self->deparse($kid, 6);
2503 $fh = "+$fh" if not $parens and substr($fh, 0, 1) eq "(";
2504 }
2505 my $len = $self->deparse($kid->sibling, 6);
4a1ac32e 2506 my $name = $self->keyword('truncate');
f5aa8f4e 2507 if ($parens) {
4a1ac32e 2508 return "$name($fh, $len)";
f5aa8f4e 2509 } else {
4a1ac32e 2510 return "$name $fh, $len";
f5aa8f4e 2511 }
f5aa8f4e
SM
2512}
2513
6e90668e
SM
2514sub indirop {
2515 my $self = shift;
9d2c6865 2516 my($op, $cx, $name) = @_;
6e90668e 2517 my($expr, @exprs);
521795fe 2518 my $firstkid = my $kid = $op->first->sibling;
6e90668e
SM
2519 my $indir = "";
2520 if ($op->flags & OPf_STACKED) {
2521 $indir = $kid;
2522 $indir = $indir->first; # skip rv2gv
2523 if (is_scope($indir)) {
9d2c6865 2524 $indir = "{" . $self->deparse($indir, 0) . "}";
d989cdac 2525 $indir = "{;}" if $indir eq "{}";
c73811ab
RH
2526 } elsif ($indir->name eq "const" && $indir->private & OPpCONST_BARE) {
2527 $indir = $self->const_sv($indir)->PV;
6e90668e 2528 } else {
9d2c6865 2529 $indir = $self->deparse($indir, 24);
6e90668e
SM
2530 }
2531 $indir = $indir . " ";
2532 $kid = $kid->sibling;
2533 }
7e80da18 2534 if ($name eq "sort" && $op->private & (OPpSORT_NUMERIC | OPpSORT_INTEGER)) {
3ac6e0f9 2535 $indir = ($op->private & OPpSORT_DESCEND) ? '{$b <=> $a} '
7e80da18
RH
2536 : '{$a <=> $b} ';
2537 }
3ac6e0f9 2538 elsif ($name eq "sort" && $op->private & OPpSORT_DESCEND) {
7e80da18
RH
2539 $indir = '{$b cmp $a} ';
2540 }
6e90668e 2541 for (; !null($kid); $kid = $kid->sibling) {
521795fe 2542 $expr = $self->deparse($kid, !$indir && $kid == $firstkid && $name eq "sort" && $firstkid->name eq "entersub" ? 16 : 6);
6e90668e
SM
2543 push @exprs, $expr;
2544 }
4a1ac32e 2545 my $name2;
3ac6e0f9 2546 if ($name eq "sort" && $op->private & OPpSORT_REVERSE) {
4a1ac32e 2547 $name2 = $self->keyword('reverse') . ' ' . $self->keyword('sort');
3ac6e0f9 2548 }
4a1ac32e 2549 else { $name2 = $self->keyword($name) }
2b6e98cb 2550 if ($name eq "sort" && ($op->private & OPpSORT_INPLACE)) {
3ac6e0f9 2551 return "$exprs[0] = $name2 $indir $exprs[0]";
2b6e98cb
DM
2552 }
2553
d989cdac 2554 my $args = $indir . join(", ", @exprs);
521795fe 2555 if ($indir ne "" && $name eq "sort") {
d989cdac
SM
2556 # We don't want to say "sort(f 1, 2, 3)", since perl -w will
2557 # give bareword warnings in that case. Therefore if context
2558 # requires, we'll put parens around the outside "(sort f 1, 2,
2559 # 3)". Unfortunately, we'll currently think the parens are
3c4b39be 2560 # necessary more often that they really are, because we don't
d989cdac
SM
2561 # distinguish which side of an assignment we're on.
2562 if ($cx >= 5) {
3ac6e0f9 2563 return "($name2 $args)";
d989cdac 2564 } else {
3ac6e0f9 2565 return "$name2 $args";
d989cdac 2566 }
521795fe
FC
2567 } elsif (
2568 !$indir && $name eq "sort"
2569 && $op->first->sibling->name eq 'entersub'
2570 ) {
2571 # We cannot say sort foo(bar), as foo will be interpreted as a
2572 # comparison routine. We have to say sort(...) in that case.
2573 return "$name2($args)";
d989cdac 2574 } else {
3ac6e0f9 2575 return $self->maybe_parens_func($name2, $args, $cx, 5);
d989cdac
SM
2576 }
2577
6e90668e
SM
2578}
2579
2580sub pp_prtf { indirop(@_, "printf") }
2581sub pp_print { indirop(@_, "print") }
9b08e3d3 2582sub pp_say { indirop(@_, "say") }
6e90668e
SM
2583sub pp_sort { indirop(@_, "sort") }
2584
2585sub mapop {
2586 my $self = shift;
9d2c6865 2587 my($op, $cx, $name) = @_;
6e90668e
SM
2588 my($expr, @exprs);
2589 my $kid = $op->first; # this is the (map|grep)start
2590 $kid = $kid->first->sibling; # skip a pushmark
2591 my $code = $kid->first; # skip a null
2592 if (is_scope $code) {
f4a44678 2593 $code = "{" . $self->deparse($code, 0) . "} ";
6e90668e 2594 } else {
9d2c6865 2595 $code = $self->deparse($code, 24) . ", ";
6e90668e
SM
2596 }
2597 $kid = $kid->sibling;
2598 for (; !null($kid); $kid = $kid->sibling) {
9d2c6865 2599 $expr = $self->deparse($kid, 6);
9a58b761 2600 push @exprs, $expr if defined $expr;
6e90668e 2601 }
9d2c6865 2602 return $self->maybe_parens_func($name, $code . join(", ", @exprs), $cx, 5);
6e90668e
SM
2603}
2604
d989cdac
SM
2605sub pp_mapwhile { mapop(@_, "map") }
2606sub pp_grepwhile { mapop(@_, "grep") }
11e09183
SP
2607sub pp_mapstart { baseop(@_, "map") }
2608sub pp_grepstart { baseop(@_, "grep") }
6e90668e
SM
2609
2610sub pp_list {
2611 my $self = shift;
9d2c6865 2612 my($op, $cx) = @_;
6e90668e
SM
2613 my($expr, @exprs);
2614 my $kid = $op->first->sibling; # skip pushmark
958ed56b 2615 return '' if class($kid) eq 'NULL';
6e90668e 2616 my $lop;
3462b4ac 2617 my $local = "either"; # could be local(...), my(...), state(...) or our(...)
6e90668e
SM
2618 for ($lop = $kid; !null($lop); $lop = $lop->sibling) {
2619 # This assumes that no other private flags equal 128, and that
2620 # OPs that store things other than flags in their op_private,
2621 # like OP_AELEMFAST, won't be immediate children of a list.
b8e103fc
RH
2622 #
2623 # OP_ENTERSUB can break this logic, so check for it.
2624 # I suspect that open and exit can too.
2625
2626 if (!($lop->private & (OPpLVAL_INTRO|OPpOUR_INTRO)
ce4e655d 2627 or $lop->name eq "undef")
b8e103fc
RH
2628 or $lop->name eq "entersub"
2629 or $lop->name eq "exit"
2630 or $lop->name eq "open")
6e90668e
SM
2631 {
2632 $local = ""; # or not
2633 last;
2634 }
3462b4ac
RGS
2635 if ($lop->name =~ /^pad[ash]v$/) {
2636 if ($lop->private & OPpPAD_STATE) { # state()
2637 ($local = "", last) if $local =~ /^(?:local|our|my)$/;
2638 $local = "state";
2639 } else { # my()
2640 ($local = "", last) if $local =~ /^(?:local|our|state)$/;
2641 $local = "my";
2642 }
b8e103fc
RH
2643 } elsif ($lop->name =~ /^(gv|rv2)[ash]v$/
2644 && $lop->private & OPpOUR_INTRO
2645 or $lop->name eq "null" && $lop->first->name eq "gvsv"
2646 && $lop->first->private & OPpOUR_INTRO) { # our()
3462b4ac 2647 ($local = "", last) if $local =~ /^(?:my|local|state)$/;
ce4e655d 2648 $local = "our";
3ac6e0f9
RGS
2649 } elsif ($lop->name ne "undef"
2650 # specifically avoid the "reverse sort" optimisation,
2651 # where "reverse" is nullified
36d57d93 2652 && !($lop->name eq 'sort' && ($lop->flags & OPpSORT_REVERSE)))
3ac6e0f9
RGS
2653 {
2654 # local()
3462b4ac 2655 ($local = "", last) if $local =~ /^(?:my|our|state)$/;
6e90668e
SM
2656 $local = "local";
2657 }
2658 }
2659 $local = "" if $local eq "either"; # no point if it's all undefs
f5aa8f4e 2660 return $self->deparse($kid, $cx) if null $kid->sibling and not $local;
6e90668e
SM
2661 for (; !null($kid); $kid = $kid->sibling) {
2662 if ($local) {
3f872cb9 2663 if (class($kid) eq "UNOP" and $kid->first->name eq "gvsv") {
6e90668e
SM
2664 $lop = $kid->first;
2665 } else {
2666 $lop = $kid;
2667 }
2668 $self->{'avoid_local'}{$$lop}++;
9d2c6865 2669 $expr = $self->deparse($kid, 6);
6e90668e
SM
2670 delete $self->{'avoid_local'}{$$lop};
2671 } else {
9d2c6865 2672 $expr = $self->deparse($kid, 6);
6e90668e
SM
2673 }
2674 push @exprs, $expr;
2675 }
9d2c6865
SM
2676 if ($local) {
2677 return "$local(" . join(", ", @exprs) . ")";
2678 } else {
2679 return $self->maybe_parens( join(", ", @exprs), $cx, 6);
2680 }
6e90668e
SM
2681}
2682
6f611a1a
GS
2683sub is_ifelse_cont {
2684 my $op = shift;
2685 return ($op->name eq "null" and class($op) eq "UNOP"
2686 and $op->first->name =~ /^(and|cond_expr)$/
2687 and is_scope($op->first->first->sibling));
2688}
2689
6e90668e
SM
2690sub pp_cond_expr {
2691 my $self = shift;
9d2c6865 2692 my($op, $cx) = @_;
6e90668e
SM
2693 my $cond = $op->first;
2694 my $true = $cond->sibling;
2695 my $false = $true->sibling;
9d2c6865 2696 my $cuddle = $self->{'cuddle'};
d989cdac 2697 unless ($cx < 1 and (is_scope($true) and $true->name ne "null") and
58cccf98
SM
2698 (is_scope($false) || is_ifelse_cont($false))
2699 and $self->{'expand'} < 7) {
f5aa8f4e 2700 $cond = $self->deparse($cond, 8);
cfaba469 2701 $true = $self->deparse($true, 6);
9d2c6865
SM
2702 $false = $self->deparse($false, 8);
2703 return $self->maybe_parens("$cond ? $true : $false", $cx, 8);
6f611a1a
GS
2704 }
2705
f5aa8f4e 2706 $cond = $self->deparse($cond, 1);
d989cdac 2707 $true = $self->deparse($true, 0);
6f611a1a
GS
2708 my $head = "if ($cond) {\n\t$true\n\b}";
2709 my @elsifs;
2710 while (!null($false) and is_ifelse_cont($false)) {
2711 my $newop = $false->first;
2712 my $newcond = $newop->first;
2713 my $newtrue = $newcond->sibling;
2714 $false = $newtrue->sibling; # last in chain is OP_AND => no else
7ecdd211
PJ
2715 if ($newcond->name eq "lineseq")
2716 {
2717 # lineseq to ensure correct line numbers in elsif()
2718 # Bug #37302 fixed by change #33710.
2719 $newcond = $newcond->first->sibling;
2720 }
6f611a1a
GS
2721 $newcond = $self->deparse($newcond, 1);
2722 $newtrue = $self->deparse($newtrue, 0);
2723 push @elsifs, "elsif ($newcond) {\n\t$newtrue\n\b}";
2724 }
d989cdac 2725 if (!null($false)) {
6f611a1a
GS
2726 $false = $cuddle . "else {\n\t" .
2727 $self->deparse($false, 0) . "\n\b}\cK";
2728 } else {
2729 $false = "\cK";
6e90668e 2730 }
d989cdac 2731 return $head . join($cuddle, "", @elsifs) . $false;
6e90668e
SM
2732}
2733
95562366
NC
2734sub pp_once {
2735 my ($self, $op, $cx) = @_;
2736 my $cond = $op->first;
2737 my $true = $cond->sibling;
2738
2739 return $self->deparse($true, $cx);
2740}
2741
58cccf98 2742sub loop_common {
6e90668e 2743 my $self = shift;
58cccf98 2744 my($op, $cx, $init) = @_;
6e90668e
SM
2745 my $enter = $op->first;
2746 my $kid = $enter->sibling;
0ced6c29
RGS
2747 local(@$self{qw'curstash warnings hints hinthash'})
2748 = @$self{qw'curstash warnings hints hinthash'};
6e90668e 2749 my $head = "";
9d2c6865 2750 my $bare = 0;
58cccf98
SM
2751 my $body;
2752 my $cond = undef;
d989cdac 2753 if ($kid->name eq "lineseq") { # bare or infinite loop
241416b8 2754 if ($kid->last->name eq "unstack") { # infinite
e99ebc55 2755 $head = "while (1) "; # Can't use for(;;) if there's a continue
58cccf98 2756 $cond = "";
9d2c6865
SM
2757 } else {
2758 $bare = 1;
6e90668e 2759 }
58cccf98 2760 $body = $kid;
3f872cb9 2761 } elsif ($enter->name eq "enteriter") { # foreach
6e90668e
SM
2762 my $ary = $enter->first->sibling; # first was pushmark
2763 my $var = $ary->sibling;
36d57d93
RGS
2764 if ($ary->name eq 'null' and $enter->private & OPpITER_REVERSED) {
2765 # "reverse" was optimised away
aae53c41 2766 $ary = listop($self, $ary->first->sibling, 1, 'reverse');
36d57d93 2767 } elsif ($enter->flags & OPf_STACKED
f5aa8f4e
SM
2768 and not null $ary->first->sibling->sibling)
2769 {
d7f5b6da
SM
2770 $ary = $self->deparse($ary->first->sibling, 9) . " .. " .
2771 $self->deparse($ary->first->sibling->sibling, 9);
d8d95777
GA
2772 } else {
2773 $ary = $self->deparse($ary, 1);
2774 }
6e90668e 2775 if (null $var) {
823eff14
NC
2776 if (($enter->flags & OPf_SPECIAL) && ($] < 5.009)) {
2777 # thread special var, under 5005threads
9d2c6865 2778 $var = $self->pp_threadsv($enter, 1);
f6f9bdb7 2779 } else { # regular my() variable
9d2c6865 2780 $var = $self->pp_padsv($enter, 1);
6e90668e 2781 }
3f872cb9 2782 } elsif ($var->name eq "rv2gv") {
9d2c6865 2783 $var = $self->pp_rv2sv($var, 1);
241416b8
DM
2784 if ($enter->private & OPpOUR_INTRO) {
2785 # our declarations don't have package names
2786 $var =~ s/^(.).*::/$1/;
2787 $var = "our $var";
2788 }
3f872cb9 2789 } elsif ($var->name eq "gv") {
9d2c6865 2790 $var = "\$" . $self->deparse($var, 1);
6e90668e 2791 }
58cccf98 2792 $body = $kid->first->first->sibling; # skip OP_AND and OP_ITER
cf24a840
SM
2793 if (!is_state $body->first and $body->first->name ne "stub") {
2794 confess unless $var eq '$_';
2795 $body = $body->first;
2796 return $self->deparse($body, 2) . " foreach ($ary)";
2797 }
2798 $head = "foreach $var ($ary) ";
3f872cb9 2799 } elsif ($kid->name eq "null") { # while/until
6e90668e 2800 $kid = $kid->first;
58cccf98
SM
2801 my $name = {"and" => "while", "or" => "until"}->{$kid->name};
2802 $cond = $self->deparse($kid->first, 1);
2803 $head = "$name ($cond) ";
2804 $body = $kid->first->sibling;
3f872cb9 2805 } elsif ($kid->name eq "stub") { # bare and empty
9d2c6865 2806 return "{;}"; # {} could be a hashref
6e90668e 2807 }
58cccf98 2808 # If there isn't a continue block, then the next pointer for the loop
241416b8 2809 # will point to the unstack, which is kid's last child, except
58cccf98 2810 # in a bare loop, when it will point to the leaveloop. When neither of
241416b8 2811 # these conditions hold, then the second-to-last child is the continue
58cccf98
SM
2812 # block (or the last in a bare loop).
2813 my $cont_start = $enter->nextop;
2814 my $cont;
241416b8 2815 if ($$cont_start != $$op && ${$cont_start} != ${$body->last}) {
58cccf98
SM
2816 if ($bare) {
2817 $cont = $body->last;
2818 } else {
2819 $cont = $body->first;
241416b8 2820 while (!null($cont->sibling->sibling)) {
58cccf98
SM
2821 $cont = $cont->sibling;
2822 }
2823 }
2824 my $state = $body->first;
2825 my $cuddle = $self->{'cuddle'};
2826 my @states;
2827 for (; $$state != $$cont; $state = $state->sibling) {
2828 push @states, $state;
2829 }
ce4e655d 2830 $body = $self->lineseq(undef, @states);
58cccf98
SM
2831 if (defined $cond and not is_scope $cont and $self->{'expand'} < 3) {
2832 $head = "for ($init; $cond; " . $self->deparse($cont, 1) .") ";
2833 $cont = "\cK";
2834 } else {
2835 $cont = $cuddle . "continue {\n\t" .
2836 $self->deparse($cont, 0) . "\n\b}\cK";
6e90668e 2837 }
6e90668e 2838 } else {
7a9b44b9 2839 return "" if !defined $body;
c73811ab
RH
2840 if (length $init) {
2841 $head = "for ($init; $cond;) ";
2842 }
9d2c6865 2843 $cont = "\cK";
58cccf98 2844 $body = $self->deparse($body, 0);
6e90668e 2845 }
ce4e655d 2846 $body =~ s/;?$/;\n/;
34a48b4b
RH
2847
2848 return $head . "{\n\t" . $body . "\b}" . $cont;
58cccf98
SM
2849}
2850
09d856fb 2851sub pp_leaveloop { shift->loop_common(@_, "") }
58cccf98
SM
2852
2853sub for_loop {
2854 my $self = shift;
2855 my($op, $cx) = @_;
2856 my $init = $self->deparse($op, 1);
eae48c89
Z
2857 my $s = $op->sibling;
2858 my $ll = $s->name eq "unstack" ? $s->sibling : $s->first->sibling;
2859 return $self->loop_common($ll, $cx, $init);
6e90668e
SM
2860}
2861
2862sub pp_leavetry {
2863 my $self = shift;
9d2c6865 2864 return "eval {\n\t" . $self->pp_leave(@_) . "\n\b}";
bd0865ec 2865}
6e90668e 2866
a3ba843f
FC
2867BEGIN { for (qw[ const stringify rv2sv list glob ]) {
2868 eval "sub OP_\U$_ () { " . opnumber($_) . "}"
2869}}
f5aa8f4e 2870
a798dbf2 2871sub pp_null {
6e90668e 2872 my $self = shift;
d989cdac 2873 my($op, $cx) = @_;
6e90668e 2874 if (class($op) eq "OP") {
f4a44678
SM
2875 # old value is lost
2876 return $self->{'ex_const'} if $op->targ == OP_CONST;
3f872cb9 2877 } elsif ($op->first->name eq "pushmark") {
9d2c6865 2878 return $self->pp_list($op, $cx);
3f872cb9 2879 } elsif ($op->first->name eq "enter") {
9d2c6865 2880 return $self->pp_leave($op, $cx);
31c6271a
RD
2881 } elsif ($op->first->name eq "leave") {
2882 return $self->pp_leave($op->first, $cx);
2883 } elsif ($op->first->name eq "scope") {
2884 return $self->pp_scope($op->first, $cx);
bd0865ec 2885 } elsif ($op->targ == OP_STRINGIFY) {
6f611a1a 2886 return $self->dquote($op, $cx);
f4002a4b
FC
2887 } elsif ($op->targ == OP_GLOB) {
2888 return $self->pp_glob(
2889 $op->first # entersub
2890 ->first # ex-list
2891 ->first # pushmark
2892 ->sibling, # glob
2893 $cx
2894 );
6e90668e 2895 } elsif (!null($op->first->sibling) and
3f872cb9 2896 $op->first->sibling->name eq "readline" and
6e90668e 2897 $op->first->sibling->flags & OPf_STACKED) {
9d2c6865
SM
2898 return $self->maybe_parens($self->deparse($op->first, 7) . " = "
2899 . $self->deparse($op->first->sibling, 7),
2900 $cx, 7);
6e90668e 2901 } elsif (!null($op->first->sibling) and
3f872cb9 2902 $op->first->sibling->name eq "trans" and
6e90668e 2903 $op->first->sibling->flags & OPf_STACKED) {
9d2c6865
SM
2904 return $self->maybe_parens($self->deparse($op->first, 20) . " =~ "
2905 . $self->deparse($op->first->sibling, 20),
2906 $cx, 20);
d989cdac
SM
2907 } elsif ($op->flags & OPf_SPECIAL && $cx < 1 && !$op->targ) {
2908 return "do {\n\t". $self->deparse($op->first, $cx) ."\n\b};";
ad8caead
RGS
2909 } elsif (!null($op->first->sibling) and
2910 $op->first->sibling->name eq "null" and
2911 class($op->first->sibling) eq "UNOP" and
2912 $op->first->sibling->first->flags & OPf_STACKED and
2913 $op->first->sibling->first->name eq "rcatline") {
2914 return $self->maybe_parens($self->deparse($op->first, 18) . " .= "
2915 . $self->deparse($op->first->sibling, 18),
2916 $cx, 18);
6e90668e 2917 } else {
9d2c6865 2918 return $self->deparse($op->first, $cx);
6e90668e 2919 }
a798dbf2
MB
2920}
2921
6e90668e
SM
2922sub padname {
2923 my $self = shift;
2924 my $targ = shift;
68223ea3 2925 return $self->padname_sv($targ)->PVX;
6e90668e
SM
2926}
2927
2928sub padany {
2929 my $self = shift;
2930 my $op = shift;
2931 return substr($self->padname($op->targ), 1); # skip $/@/%
2932}
2933
2934sub pp_padsv {
2935 my $self = shift;
9d2c6865
SM
2936 my($op, $cx) = @_;
2937 return $self->maybe_my($op, $cx, $self->padname($op->targ));
6e90668e
SM
2938}
2939
2940sub pp_padav { pp_padsv(@_) }
2941sub pp_padhv { pp_padsv(@_) }
2942
e0ab66ad 2943my @threadsv_names = B::threadsv_names;
f6f9bdb7
SM
2944sub pp_threadsv {
2945 my $self = shift;
9d2c6865
SM
2946 my($op, $cx) = @_;
2947 return $self->maybe_local($op, $cx, "\$" . $threadsv_names[$op->targ]);
d989cdac 2948}
f6f9bdb7 2949
6f611a1a 2950sub gv_or_padgv {
18228111
GS
2951 my $self = shift;
2952 my $op = shift;
6f611a1a
GS
2953 if (class($op) eq "PADOP") {
2954 return $self->padval($op->padix);
2955 } else { # class($op) eq "SVOP"
2956 return $op->gv;
18228111 2957 }
18228111
GS
2958}
2959
6e90668e
SM
2960sub pp_gvsv {
2961 my $self = shift;
9d2c6865 2962 my($op, $cx) = @_;
6f611a1a 2963 my $gv = $self->gv_or_padgv($op);
8510e997 2964 return $self->maybe_local($op, $cx, $self->stash_variable("\$",
bb8996b8 2965 $self->gv_name($gv), $cx));
6e90668e
SM
2966}
2967
2968sub pp_gv {
2969 my $self = shift;
9d2c6865 2970 my($op, $cx) = @_;
6f611a1a 2971 my $gv = $self->gv_or_padgv($op);
18228111 2972 return $self->gv_name($gv);
6e90668e
SM
2973}
2974
93bad3fd
NC
2975sub pp_aelemfast_lex {
2976 my $self = shift;
2977 my($op, $cx) = @_;
2978 my $name = $self->padname($op->targ);
2979 $name =~ s/^@/\$/;
bc6b2ef6 2980 return $name . "[" . ($op->private + $self->{'arybase'}) . "]";
93bad3fd
NC
2981}
2982
6e90668e
SM
2983sub pp_aelemfast {
2984 my $self = shift;
9d2c6865 2985 my($op, $cx) = @_;
93bad3fd
NC
2986 # optimised PADAV, pre 5.15
2987 return $self->pp_aelemfast_lex(@_) if ($op->flags & OPf_SPECIAL);
ce4e655d 2988
93bad3fd
NC
2989 my $gv = $self->gv_or_padgv($op);
2990 my $name = $self->gv_name($gv);
2991 $name = $self->{'curstash'}."::$name"
2992 if $name !~ /::/ && $self->lex_in_scope('@'.$name);
2993 $name = '$' . $name;
bc6b2ef6 2994 return $name . "[" . ($op->private + $self->{'arybase'}) . "]";
6e90668e
SM
2995}
2996
2997sub rv2x {
2998 my $self = shift;
9d2c6865 2999 my($op, $cx, $type) = @_;
90c0eb26
RH
3000
3001 if (class($op) eq 'NULL' || !$op->can("first")) {
ff97752d 3002 carp("Unexpected op in pp_rv2x");
90c0eb26
RH
3003 return 'XXX';
3004 }
6e90668e 3005 my $kid = $op->first;
d989cdac 3006 if ($kid->name eq "gv") {
bb8996b8 3007 return $self->stash_variable($type, $self->deparse($kid, 0), $cx);
d989cdac
SM
3008 } elsif (is_scalar $kid) {
3009 my $str = $self->deparse($kid, 0);
3010 if ($str =~ /^\$([^\w\d])\z/) {
3011 # "$$+" isn't a legal way to write the scalar dereference
3012 # of $+, since the lexer can't tell you aren't trying to
3013 # do something like "$$ + 1" to get one more than your
3014 # PID. Either "${$+}" or "$${+}" are workable
3015 # disambiguations, but if the programmer did the former,
3016 # they'd be in the "else" clause below rather than here.
3017 # It's not clear if this should somehow be unified with
3018 # the code in dq and re_dq that also adds lexer
3019 # disambiguation braces.
3020 $str = '$' . "{$1}"; #'
3021 }
3022 return $type . $str;
3023 } else {
3024 return $type . "{" . $self->deparse($kid, 0) . "}";
3025 }
6e90668e
SM
3026}
3027
3028sub pp_rv2sv { maybe_local(@_, rv2x(@_, "\$")) }
3029sub pp_rv2hv { maybe_local(@_, rv2x(@_, "%")) }
3030sub pp_rv2gv { maybe_local(@_, rv2x(@_, "*")) }
3031
3032# skip rv2av
3033sub pp_av2arylen {
3034 my $self = shift;
9d2c6865 3035 my($op, $cx) = @_;
3f872cb9 3036 if ($op->first->name eq "padav") {
9d2c6865 3037 return $self->maybe_local($op, $cx, '$#' . $self->padany($op->first));
6e90668e 3038 } else {
f5aa8f4e
SM
3039 return $self->maybe_local($op, $cx,
3040 $self->rv2x($op->first, $cx, '$#'));
6e90668e
SM
3041 }
3042}
3043
3044# skip down to the old, ex-rv2cv
90c0eb26
RH
3045sub pp_rv2cv {
3046 my ($self, $op, $cx) = @_;
3047 if (!null($op->first) && $op->first->name eq 'null' &&
3048 $op->first->targ eq OP_LIST)
3049 {
3050 return $self->rv2x($op->first->first->sibling, $cx, "&")
3051 }
3052 else {
3053 return $self->rv2x($op, $cx, "")
3054 }
3055}
6e90668e 3056
d989cdac
SM
3057sub list_const {
3058 my $self = shift;
3059 my($cx, @list) = @_;
3060 my @a = map $self->const($_, 6), @list;
3061 if (@a == 0) {
3062 return "()";
3063 } elsif (@a == 1) {
3064 return $a[0];
3065 } elsif ( @a > 2 and !grep(!/^-?\d+$/, @a)) {
3066 # collapse (-1,0,1,2) into (-1..2)
3067 my ($s, $e) = @a[0,-1];
3068 my $i = $s;
3069 return $self->maybe_parens("$s..$e", $cx, 9)
3070 unless grep $i++ != $_, @a;
3071 }
3072 return $self->maybe_parens(join(", ", @a), $cx, 6);
3073}
3074
6e90668e
SM
3075sub pp_rv2av {
3076 my $self = shift;
9d2c6865 3077 my($op, $cx) = @_;
6e90668e 3078 my $kid = $op->first;
3f872cb9 3079 if ($kid->name eq "const") { # constant list
18228111 3080 my $av = $self->const_sv($kid);
d989cdac 3081 return $self->list_const($cx, $av->ARRAY);
6e90668e 3082 } else {
9d2c6865 3083 return $self->maybe_local($op, $cx, $self->rv2x($op, $cx, "\@"));
6e90668e
SM
3084 }
3085 }
3086
3ed82cfc
GS
3087sub is_subscriptable {
3088 my $op = shift;
3089 if ($op->name =~ /^[ahg]elem/) {
3090 return 1;
3091 } elsif ($op->name eq "entersub") {
3092 my $kid = $op->first;
3093 return 0 unless null $kid->sibling;
3094 $kid = $kid->first;
3095 $kid = $kid->sibling until null $kid->sibling;
3096 return 0 if is_scope($kid);
3097 $kid = $kid->first;
3098 return 0 if $kid->name eq "gv";
3099 return 0 if is_scalar($kid);
3100 return is_subscriptable($kid);
3101 } else {
3102 return 0;
3103 }
3104}
6e90668e 3105
21b7468a
BL
3106sub elem_or_slice_array_name
3107{
6e90668e 3108 my $self = shift;
21b7468a
BL
3109 my ($array, $left, $padname, $allow_arrow) = @_;
3110
3f872cb9 3111 if ($array->name eq $padname) {
21b7468a 3112 return $self->padany($array);
6e90668e 3113 } elsif (is_scope($array)) { # ${expr}[0]
21b7468a 3114 return "{" . $self->deparse($array, 0) . "}";
ce4e655d
RH
3115 } elsif ($array->name eq "gv") {
3116 $array = $self->gv_name($self->gv_or_padgv($array));
3117 if ($array !~ /::/) {
3118 my $prefix = ($left eq '[' ? '@' : '%');
3119 $array = $self->{curstash}.'::'.$array
3120 if $self->lex_in_scope($prefix . $array);
3121 }
21b7468a
BL
3122 return $array;
3123 } elsif (!$allow_arrow || is_scalar $array) { # $x[0], $$x[0], ...
3124 return $self->deparse($array, 24);
6e90668e 3125 } else {
21b7468a 3126 return undef;
6e90668e 3127 }
21b7468a
BL
3128}
3129
3130sub elem_or_slice_single_index
3131{
3132 my $self = shift;
3133 my ($idx) = @_;
3134
9d2c6865 3135 $idx = $self->deparse($idx, 1);
7a9b44b9
RH
3136
3137 # Outer parens in an array index will confuse perl
3138 # if we're interpolating in a regular expression, i.e.
3139 # /$x$foo[(-1)]/ is *not* the same as /$x$foo[-1]/
3140 #
3141 # If $self->{parens}, then an initial '(' will
3142 # definitely be paired with a final ')'. If
3143 # !$self->{parens}, the misleading parens won't
3144 # have been added in the first place.
3145 #
3146 # [You might think that we could get "(...)...(...)"
3147 # where the initial and final parens do not match
3148 # each other. But we can't, because the above would
3149 # only happen if there's an infix binop between the
3150 # two pairs of parens, and *that* means that the whole
3151 # expression would be parenthesized as well.]
3152 #
3153 $idx =~ s/^\((.*)\)$/$1/ if $self->{'parens'};
3154
098251bc
RH
3155 # Hash-element braces will autoquote a bareword inside themselves.
3156 # We need to make sure that C<$hash{warn()}> doesn't come out as
3157 # C<$hash{warn}>, which has a quite different meaning. Currently
3158 # B::Deparse will always quote strings, even if the string was a
3159 # bareword in the original (i.e. the OPpCONST_BARE flag is ignored
3160 # for constant strings.) So we can cheat slightly here - if we see
3161 # a bareword, we know that it is supposed to be a function call.
3162 #
3163 $idx =~ s/^([A-Za-z_]\w*)$/$1()/;
3164
21b7468a
BL
3165 return $idx;
3166}
3167
3168sub elem {
3169 my $self = shift;
3170 my ($op, $cx, $left, $right, $padname) = @_;
3171 my($array, $idx) = ($op->first, $op->first->sibling);
3172
3173 $idx = $self->elem_or_slice_single_index($idx);
3174
3175 unless ($array->name eq $padname) { # Maybe this has been fixed
3176 $array = $array->first; # skip rv2av (or ex-rv2av in _53+)
3177 }
3178 if (my $array_name=$self->elem_or_slice_array_name
3179 ($array, $left, $padname, 1)) {
3180 return "\$" . $array_name . $left . $idx . $right;
3181 } else {
3182 # $x[20][3]{hi} or expr->[20]
3183 my $arrow = is_subscriptable($array) ? "" : "->";
3184 return $self->deparse($array, 24) . $arrow . $left . $idx . $right;
3185 }
3186
6e90668e
SM
3187}
3188
3f872cb9
GS
3189sub pp_aelem { maybe_local(@_, elem(@_, "[", "]", "padav")) }
3190sub pp_helem { maybe_local(@_, elem(@_, "{", "}", "padhv")) }
6e90668e
SM
3191
3192sub pp_gelem {
3193 my $self = shift;
9d2c6865 3194 my($op, $cx) = @_;
6e90668e
SM
3195 my($glob, $part) = ($op->first, $op->last);
3196 $glob = $glob->first; # skip rv2gv
3f872cb9 3197 $glob = $glob->first if $glob->name eq "rv2gv"; # this one's a bug
9d2c6865
SM
3198 my $scope = is_scope($glob);
3199 $glob = $self->deparse($glob, 0);
3200 $part = $self->deparse($part, 1);
6e90668e
SM
3201 return "*" . ($scope ? "{$glob}" : $glob) . "{$part}";
3202}
3203
3204sub slice {
3205 my $self = shift;
9d2c6865 3206 my ($op, $cx, $left, $right, $regname, $padname) = @_;
6e90668e
SM
3207 my $last;
3208 my(@elems, $kid, $array, $list);
3209 if (class($op) eq "LISTOP") {
3210 $last = $op->last;
3211 } else { # ex-hslice inside delete()
3212 for ($kid = $op->first; !null $kid->sibling; $kid = $kid->sibling) {}
3213 $last = $kid;
3214 }
3215 $array = $last;
3216 $array = $array->first
3f872cb9 3217 if $array->name eq $regname or $array->name eq "null";
21b7468a 3218 $array = $self->elem_or_slice_array_name($array,$left,$padname,0);
6e90668e 3219 $kid = $op->first->sibling; # skip pushmark
3f872cb9 3220 if ($kid->name eq "list") {
6e90668e
SM
3221 $kid = $kid->first->sibling; # skip list, pushmark
3222 for (; !null $kid; $kid = $kid->sibling) {
9d2c6865 3223 push @elems, $self->deparse($kid, 6);
6e90668e
SM
3224 }
3225 $list = join(", ", @elems);
3226 } else {
21b7468a 3227 $list = $self->elem_or_slice_single_index($kid);
6e90668e
SM
3228 }
3229 return "\@" . $array . $left . $list . $right;
3230}
3231
3ed82cfc
GS
3232sub pp_aslice { maybe_local(@_, slice(@_, "[", "]", "rv2av", "padav")) }
3233sub pp_hslice { maybe_local(@_, slice(@_, "{", "}", "rv2hv", "padhv")) }
6e90668e
SM
3234
3235sub pp_lslice {
3236 my $self = shift;
9d2c6865 3237 my($op, $cx) = @_;
6e90668e
SM
3238 my $idx = $op->first;
3239 my $list = $op->last;
3240 my(@elems, $kid);
9d2c6865
SM
3241 $list = $self->deparse($list, 1);
3242 $idx = $self->deparse($idx, 1);
3243 return "($list)" . "[$idx]";
6e90668e
SM
3244}
3245
6e90668e
SM
3246sub want_scalar {
3247 my $op = shift;
3248 return ($op->flags & OPf_WANT) == OPf_WANT_SCALAR;
3249}
3250
bd0865ec
GS
3251sub want_list {
3252 my $op = shift;
3253 return ($op->flags & OPf_WANT) == OPf_WANT_LIST;
3254}
3255
09d856fb 3256sub _method {
6e90668e 3257 my $self = shift;
9d2c6865 3258 my($op, $cx) = @_;
bd0865ec
GS
3259 my $kid = $op->first->sibling; # skip pushmark
3260 my($meth, $obj, @exprs);
3f872cb9 3261 if ($kid->name eq "list" and want_list $kid) {
bd0865ec
GS
3262 # When an indirect object isn't a bareword but the args are in
3263 # parens, the parens aren't part of the method syntax (the LLAFR
3264 # doesn't apply), but they make a list with OPf_PARENS set that
3265 # doesn't get flattened by the append_elem that adds the method,
3266 # making a (object, arg1, arg2, ...) list where the object
d989cdac 3267 # usually is. This can be distinguished from
e38ccfd9 3268 # '($obj, $arg1, $arg2)->meth()' (which is legal if $arg2 is an
bd0865ec
GS
3269 # object) because in the later the list is in scalar context
3270 # as the left side of -> always is, while in the former
3271 # the list is in list context as method arguments always are.
3272 # (Good thing there aren't method prototypes!)
3ed82cfc 3273 $meth = $kid->sibling;
bd0865ec
GS
3274 $kid = $kid->first->sibling; # skip pushmark
3275 $obj = $kid;
6e90668e 3276 $kid = $kid->sibling;
bd0865ec 3277 for (; not null $kid; $kid = $kid->sibling) {
09d856fb 3278 push @exprs, $kid;
6e90668e 3279 }
bd0865ec
GS
3280 } else {
3281 $obj = $kid;
3282 $kid = $kid->sibling;
35a99a08 3283 for (; !null ($kid->sibling) && $kid->name!~/^method(?:_named)?\z/;
90c0eb26 3284 $kid = $kid->sibling) {
09d856fb 3285 push @exprs, $kid
6e90668e 3286 }
3ed82cfc 3287 $meth = $kid;
bd0865ec 3288 }
09d856fb 3289
3ed82cfc 3290 if ($meth->name eq "method_named") {
18228111 3291 $meth = $self->const_sv($meth)->PV;
bd0865ec 3292 } else {
3ed82cfc
GS
3293 $meth = $meth->first;
3294 if ($meth->name eq "const") {
3295 # As of 5.005_58, this case is probably obsoleted by the
3296 # method_named case above
18228111 3297 $meth = $self->const_sv($meth)->PV; # needs to be bare
3ed82cfc 3298 }
bd0865ec 3299 }
09d856fb
CK
3300
3301 return { method => $meth, variable_method => ref($meth),
3302 object => $obj, args => \@exprs };
3303}
3304
3305# compat function only
3306sub method {
3307 my $self = shift;
3308 my $info = $self->_method(@_);
3309 return $self->e_method( $self->_method(@_) );
3310}
3311
3312sub e_method {
3313 my ($self, $info) = @_;
3314 my $obj = $self->deparse($info->{object}, 24);
3315
3316 my $meth = $info->{method};
3317 $meth = $self->deparse($meth, 1) if $info->{variable_method};
3318 my $args = join(", ", map { $self->deparse($_, 6) } @{$info->{args}} );
3319 my $kid = $obj . "->" . $meth;
145eb477 3320 if (length $args) {
bd0865ec
GS
3321 return $kid . "(" . $args . ")"; # parens mandatory
3322 } else {
3323 return $kid;
3324 }
3325}
3326
3327# returns "&" if the prototype doesn't match the args,
3328# or ("", $args_after_prototype_demunging) if it does.
3329sub check_proto {
3330 my $self = shift;
acaaef34 3331 return "&" if $self->{'noproto'};
bd0865ec
GS
3332 my($proto, @args) = @_;
3333 my($arg, $real);
3334 my $doneok = 0;
3335 my @reals;
3336 # An unbackslashed @ or % gobbles up the rest of the args
2ae48fff 3337 1 while $proto =~ s/(?<!\\)([@%])[^\]]+$/$1/;
bd0865ec 3338 while ($proto) {
21b52158 3339 $proto =~ s/^(\\?[\$\@&%*_]|\\\[[\$\@&%*]+\]|;)//;
bd0865ec
GS
3340 my $chr = $1;
3341 if ($chr eq "") {
3342 return "&" if @args;
3343 } elsif ($chr eq ";") {
3344 $doneok = 1;
3345 } elsif ($chr eq "@" or $chr eq "%") {
3346 push @reals, map($self->deparse($_, 6), @args);
3347 @args = ();
6e90668e 3348 } else {
bd0865ec
GS
3349 $arg = shift @args;
3350 last unless $arg;
21b52158 3351 if ($chr eq "\$" || $chr eq "_") {
bd0865ec
GS
3352 if (want_scalar $arg) {
3353 push @reals, $self->deparse($arg, 6);
3354 } else {
3355 return "&";
3356 }
3357 } elsif ($chr eq "&") {
3f872cb9 3358 if ($arg->name =~ /^(s?refgen|undef)$/) {
bd0865ec
GS
3359 push @reals, $self->deparse($arg, 6);
3360 } else {
3361 return "&";
3362 }
3363 } elsif ($chr eq "*") {
3f872cb9
GS
3364 if ($arg->name =~ /^s?refgen$/
3365 and $arg->first->first->name eq "rv2gv")
bd0865ec
GS
3366 {
3367 $real = $arg->first->first; # skip refgen, null
3f872cb9 3368 if ($real->first->name eq "gv") {
bd0865ec
GS
3369 push @reals, $self->deparse($real, 6);
3370 } else {
3371 push @reals, $self->deparse($real->first, 6);
3372 }
3373 } else {
3374 return "&";
3375 }
3376 } elsif (substr($chr, 0, 1) eq "\\") {
2ae48fff 3377 $chr =~ tr/\\[]//d;
3f872cb9 3378 if ($arg->name =~ /^s?refgen$/ and
bd0865ec 3379 !null($real = $arg->first) and
2ae48fff
RGS
3380 ($chr =~ /\$/ && is_scalar($real->first)
3381 or ($chr =~ /@/
3382 && class($real->first->sibling) ne 'NULL'
3f872cb9
GS
3383 && $real->first->sibling->name
3384 =~ /^(rv2|pad)av$/)
2ae48fff
RGS
3385 or ($chr =~ /%/
3386 && class($real->first->sibling) ne 'NULL'
3f872cb9
GS
3387 && $real->first->sibling->name
3388 =~ /^(rv2|pad)hv$/)
2ae48fff 3389 #or ($chr =~ /&/ # This doesn't work
3f872cb9 3390 # && $real->first->name eq "rv2cv")
2ae48fff 3391 or ($chr =~ /\*/
3f872cb9 3392 && $real->first->name eq "rv2gv")))
bd0865ec
GS
3393 {
3394 push @reals, $self->deparse($real, 6);
3395 } else {
3396 return "&";
3397 }
3398 }
3399 }
9d2c6865 3400 }
e38ccfd9 3401 return "&" if $proto and !$doneok; # too few args and no ';'
bd0865ec
GS
3402 return "&" if @args; # too many args
3403 return ("", join ", ", @reals);
3404}
3405
3406sub pp_entersub {
3407 my $self = shift;
3408 my($op, $cx) = @_;
09d856fb
CK
3409 return $self->e_method($self->_method($op, $cx))
3410 unless null $op->first->sibling;
bd0865ec
GS
3411 my $prefix = "";
3412 my $amper = "";
3413 my($kid, @exprs);
90c0eb26 3414 if ($op->flags & OPf_SPECIAL && !($op->flags & OPf_MOD)) {
9d2c6865
SM
3415 $prefix = "do ";
3416 } elsif ($op->private & OPpENTERSUB_AMPER) {
3417 $amper = "&";
3418 }
3419 $kid = $op->first;
3420 $kid = $kid->first->sibling; # skip ex-list, pushmark
3421 for (; not null $kid->sibling; $kid = $kid->sibling) {
3422 push @exprs, $kid;
3423 }
bd0865ec
GS
3424 my $simple = 0;
3425 my $proto = undef;
9d2c6865
SM
3426 if (is_scope($kid)) {
3427 $amper = "&";
3428 $kid = "{" . $self->deparse($kid, 0) . "}";
3f872cb9 3429 } elsif ($kid->first->name eq "gv") {