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