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