home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / perl / 5.10.0 / B / Deparse.pm < prev    next >
Encoding:
Perl POD Document  |  2009-06-26  |  125.6 KB  |  4,332 lines

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