home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / perl / 5.8.8 / B / Deparse.pm < prev    next >
Encoding:
Perl POD Document  |  2006-07-07  |  121.3 KB  |  4,155 lines

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