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