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