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