This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
B::Concise was failing an assertion on index "foo", "foo";
[perl5.git] / ext / B / B / Concise.pm
CommitLineData
c99ca59a 1package B::Concise;
c27ea44e 2# Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.
c99ca59a
SM
3# This program is free software; you can redistribute and/or modify it
4# under the same terms as Perl itself.
5
8ec8fbef
SM
6# Note: we need to keep track of how many use declarations/BEGIN
7# blocks this module uses, so we can avoid printing them when user
8# asks for the BEGIN blocks in her program. Update the comments and
9# the count in concise_specials if you add or delete one. The
10# -MO=Concise counts as use #1.
78ad9108 11
8ec8fbef
SM
12use strict; # use #2
13use warnings; # uses #3 and #4, since warnings uses Carp
78ad9108 14
8ec8fbef
SM
15use Exporter (); # use #5
16
9e0f9750 17our $VERSION = "0.74";
78ad9108 18our @ISA = qw(Exporter);
cc02ea56
JC
19our @EXPORT_OK = qw( set_style set_style_standard add_callback
20 concise_subref concise_cv concise_main
21 add_style walk_output compile reset_sequence );
22our %EXPORT_TAGS =
23 ( io => [qw( walk_output compile reset_sequence )],
24 style => [qw( add_style set_style_standard )],
25 cb => [qw( add_callback )],
26 mech => [qw( concise_subref concise_cv concise_main )], );
78ad9108 27
8ec8fbef 28# use #6
c99ca59a 29use B qw(class ppname main_start main_root main_cv cstring svref_2object
6a077020 30 SVf_IOK SVf_NOK SVf_POK SVf_IVisUV SVf_FAKE OPf_KIDS OPf_SPECIAL
6c5e080d 31 CVf_ANON PAD_FAKELEX_ANON PAD_FAKELEX_MULTI);
c99ca59a 32
f95e3c3c 33my %style =
c99ca59a 34 ("terse" =>
c3caa09d
SM
35 ["(?(#label =>\n)?)(*( )*)#class (#addr) #name (?([#targ])?) "
36 . "#svclass~(?((#svaddr))?)~#svval~(?(label \"#coplabel\")?)\n",
c99ca59a
SM
37 "(*( )*)goto #class (#addr)\n",
38 "#class pp_#name"],
39 "concise" =>
d5ec2987
NC
40 ["#hyphseq2 (*( (x( ;)x))*)<#classsym> #exname#arg(?([#targarglife])?)"
41 . "~#flags(?(/#private)?)(?(:#hints)?)(x(;~->#next)x)\n"
cc02ea56 42 , " (*( )*) goto #seq\n",
c99ca59a
SM
43 "(?(<#seq>)?)#exname#arg(?([#targarglife])?)"],
44 "linenoise" =>
45 ["(x(;(*( )*))x)#noise#arg(?([#targarg])?)(x( ;\n)x)",
46 "gt_#seq ",
47 "(?(#seq)?)#noise#arg(?([#targarg])?)"],
48 "debug" =>
49 ["#class (#addr)\n\top_next\t\t#nextaddr\n\top_sibling\t#sibaddr\n\t"
7252851f
NC
50 . "op_ppaddr\tPL_ppaddr[OP_#NAME]\n\top_type\t\t#typenum\n" .
51 ($] > 5.009 ? '' : "\top_seq\t\t#seqnum\n")
d5ec2987 52 . "\top_flags\t#flagval\n\top_private\t#privval\t#hintsval\n"
c99ca59a
SM
53 . "(?(\top_first\t#firstaddr\n)?)(?(\top_last\t\t#lastaddr\n)?)"
54 . "(?(\top_sv\t\t#svaddr\n)?)",
55 " GOTO #addr\n",
56 "#addr"],
57 "env" => [$ENV{B_CONCISE_FORMAT}, $ENV{B_CONCISE_GOTO_FORMAT},
58 $ENV{B_CONCISE_TREE_FORMAT}],
59 );
60
724aa791
JC
61# Renderings, ie how Concise prints, is controlled by these vars
62# primary:
63our $stylename; # selects current style from %style
64my $order = "basic"; # how optree is walked & printed: basic, exec, tree
65
66# rendering mechanics:
67# these 'formats' are the line-rendering templates
68# they're updated from %style when $stylename changes
69my ($format, $gotofmt, $treefmt);
70
71# lesser players:
72my $base = 36; # how <sequence#> is displayed
73my $big_endian = 1; # more <sequence#> display
74my $tree_style = 0; # tree-order details
75my $banner = 1; # print banner before optree is traversed
cc02ea56 76my $do_main = 0; # force printing of main routine
f18deeb9 77my $show_src; # show source code
724aa791 78
cc02ea56 79# another factor: can affect all styles!
724aa791
JC
80our @callbacks; # allow external management
81
82set_style_standard("concise");
83
c99ca59a 84my $curcv;
c27ea44e 85my $cop_seq_base;
78ad9108
PJ
86
87sub set_style {
88 ($format, $gotofmt, $treefmt) = @_;
724aa791 89 #warn "set_style: deprecated, use set_style_standard instead\n"; # someday
f95e3c3c
JC
90 die "expecting 3 style-format args\n" unless @_ == 3;
91}
92
93sub add_style {
94 my ($newstyle,@args) = @_;
95 die "style '$newstyle' already exists, choose a new name\n"
96 if exists $style{$newstyle};
97 die "expecting 3 style-format args\n" unless @args == 3;
98 $style{$newstyle} = [@args];
724aa791 99 $stylename = $newstyle; # update rendering state
78ad9108
PJ
100}
101
31b49ad4 102sub set_style_standard {
724aa791 103 ($stylename) = @_; # update rendering state
f95e3c3c
JC
104 die "err: style '$stylename' unknown\n" unless exists $style{$stylename};
105 set_style(@{$style{$stylename}});
31b49ad4
SM
106}
107
78ad9108
PJ
108sub add_callback {
109 push @callbacks, @_;
110}
c99ca59a 111
f95e3c3c 112# output handle, used with all Concise-output printing
cc02ea56
JC
113our $walkHandle; # public for your convenience
114BEGIN { $walkHandle = \*STDOUT }
f95e3c3c
JC
115
116sub walk_output { # updates $walkHandle
117 my $handle = shift;
cc02ea56
JC
118 return $walkHandle unless $handle; # allow use as accessor
119
f95e3c3c 120 if (ref $handle eq 'SCALAR') {
2ce64696
JC
121 require Config;
122 die "no perlio in this build, can't call walk_output (\\\$scalar)\n"
123 unless $Config::Config{useperlio};
f95e3c3c 124 # in 5.8+, open(FILEHANDLE,MODE,REFERENCE) writes to string
2ce64696 125 open my $tmp, '>', $handle; # but cant re-set existing STDOUT
f95e3c3c 126 $walkHandle = $tmp; # so use my $tmp as intermediate var
cc02ea56 127 return $walkHandle;
f95e3c3c 128 }
cc02ea56 129 my $iotype = ref $handle;
f95e3c3c 130 die "expecting argument/object that can print\n"
cc02ea56
JC
131 unless $iotype eq 'GLOB' or $iotype and $handle->can('print');
132 $walkHandle = $handle;
f95e3c3c
JC
133}
134
8ec8fbef 135sub concise_subref {
c0939cee 136 my($order, $coderef, $name) = @_;
f95e3c3c 137 my $codeobj = svref_2object($coderef);
cc02ea56 138
c0939cee 139 return concise_stashref(@_)
cc02ea56 140 unless ref $codeobj eq 'B::CV';
c0939cee 141 concise_cv_obj($order, $codeobj, $name);
8ec8fbef
SM
142}
143
cc02ea56
JC
144sub concise_stashref {
145 my($order, $h) = @_;
6cc5d258 146 local *s;
cc02ea56 147 foreach my $k (sort keys %$h) {
6cc5d258
JC
148 next unless defined $h->{$k};
149 *s = $h->{$k};
cc02ea56
JC
150 my $coderef = *s{CODE} or next;
151 reset_sequence();
152 print "FUNC: ", *s, "\n";
153 my $codeobj = svref_2object($coderef);
154 next unless ref $codeobj eq 'B::CV';
6cc5d258
JC
155 eval { concise_cv_obj($order, $codeobj, $k) };
156 warn "err $@ on $codeobj" if $@;
cc02ea56
JC
157 }
158}
159
8ec8fbef
SM
160# This should have been called concise_subref, but it was exported
161# under this name in versions before 0.56
c0939cee 162*concise_cv = \&concise_subref;
8ec8fbef
SM
163
164sub concise_cv_obj {
c0939cee
JC
165 my ($order, $cv, $name) = @_;
166 # name is either a string, or a CODE ref (copy of $cv arg??)
167
c99ca59a 168 $curcv = $cv;
d51cf0c9 169
2018a5c3 170 if (ref($cv->XSUBANY) =~ /B::(\w+)/) {
d51cf0c9
JC
171 print $walkHandle "$name is a constant sub, optimized to a $1\n";
172 return;
173 }
c0939cee
JC
174 if ($cv->XSUB) {
175 print $walkHandle "$name is XS code\n";
176 return;
177 }
178 if (class($cv->START) eq "NULL") {
179 no strict 'refs';
180 if (ref $name eq 'CODE') {
181 print $walkHandle "coderef $name has no START\n";
182 }
183 elsif (exists &$name) {
e75702e9 184 print $walkHandle "$name exists in stash, but has no START\n";
c0939cee
JC
185 }
186 else {
187 print $walkHandle "$name not in symbol table\n";
188 }
189 return;
190 }
c27ea44e 191 sequence($cv->START);
c99ca59a
SM
192 if ($order eq "exec") {
193 walk_exec($cv->START);
c0939cee
JC
194 }
195 elsif ($order eq "basic") {
196 # walk_topdown($cv->ROOT, sub { $_[0]->concise($_[1]) }, 0);
197 my $root = $cv->ROOT;
198 unless (ref $root eq 'B::NULL') {
199 walk_topdown($root, sub { $_[0]->concise($_[1]) }, 0);
200 } else {
201 print $walkHandle "B::NULL encountered doing ROOT on $cv. avoiding disaster\n";
202 }
c99ca59a 203 } else {
f95e3c3c 204 print $walkHandle tree($cv->ROOT, 0);
c99ca59a
SM
205 }
206}
207
31b49ad4
SM
208sub concise_main {
209 my($order) = @_;
210 sequence(main_start);
211 $curcv = main_cv;
212 if ($order eq "exec") {
213 return if class(main_start) eq "NULL";
214 walk_exec(main_start);
215 } elsif ($order eq "tree") {
216 return if class(main_root) eq "NULL";
f95e3c3c 217 print $walkHandle tree(main_root, 0);
31b49ad4
SM
218 } elsif ($order eq "basic") {
219 return if class(main_root) eq "NULL";
220 walk_topdown(main_root,
221 sub { $_[0]->concise($_[1]) }, 0);
222 }
223}
224
8ec8fbef
SM
225sub concise_specials {
226 my($name, $order, @cv_s) = @_;
227 my $i = 1;
228 if ($name eq "BEGIN") {
c0939cee 229 splice(@cv_s, 0, 8); # skip 7 BEGIN blocks in this file. NOW 8 ??
8ec8fbef
SM
230 } elsif ($name eq "CHECK") {
231 pop @cv_s; # skip the CHECK block that calls us
232 }
f95e3c3c
JC
233 for my $cv (@cv_s) {
234 print $walkHandle "$name $i:\n";
8ec8fbef 235 $i++;
c0939cee 236 concise_cv_obj($order, $cv, $name);
8ec8fbef
SM
237 }
238}
239
c99ca59a
SM
240my $start_sym = "\e(0"; # "\cN" sometimes also works
241my $end_sym = "\e(B"; # "\cO" respectively
242
f95e3c3c 243my @tree_decorations =
c99ca59a
SM
244 ([" ", "--", "+-", "|-", "| ", "`-", "-", 1],
245 [" ", "-", "+", "+", "|", "`", "", 0],
246 [" ", map("$start_sym$_$end_sym", "qq", "wq", "tq", "x ", "mq", "q"), 1],
247 [" ", map("$start_sym$_$end_sym", "q", "w", "t", "x", "m"), "", 0],
248 );
78ad9108 249
9e0f9750
JC
250my @render_packs; # collect -stash=<packages>
251
cc02ea56
JC
252sub compileOpts {
253 # set rendering state from options and args
c0939cee
JC
254 my (@options,@args);
255 if (@_) {
256 @options = grep(/^-/, @_);
257 @args = grep(!/^-/, @_);
258 }
c99ca59a 259 for my $o (@options) {
cc02ea56 260 # mode/order
c99ca59a
SM
261 if ($o eq "-basic") {
262 $order = "basic";
263 } elsif ($o eq "-exec") {
264 $order = "exec";
265 } elsif ($o eq "-tree") {
266 $order = "tree";
cc02ea56
JC
267 }
268 # tree-specific
269 elsif ($o eq "-compact") {
c99ca59a
SM
270 $tree_style |= 1;
271 } elsif ($o eq "-loose") {
272 $tree_style &= ~1;
273 } elsif ($o eq "-vt") {
274 $tree_style |= 2;
275 } elsif ($o eq "-ascii") {
276 $tree_style &= ~2;
cc02ea56
JC
277 }
278 # sequence numbering
279 elsif ($o =~ /^-base(\d+)$/) {
c99ca59a
SM
280 $base = $1;
281 } elsif ($o eq "-bigendian") {
282 $big_endian = 1;
283 } elsif ($o eq "-littleendian") {
284 $big_endian = 0;
cc02ea56 285 }
9e0f9750 286 # miscellaneous, presentation
cc02ea56 287 elsif ($o eq "-nobanner") {
724aa791 288 $banner = 0;
cc02ea56
JC
289 } elsif ($o eq "-banner") {
290 $banner = 1;
291 }
292 elsif ($o eq "-main") {
293 $do_main = 1;
294 } elsif ($o eq "-nomain") {
295 $do_main = 0;
f18deeb9
JC
296 } elsif ($o eq "-src") {
297 $show_src = 1;
9e0f9750
JC
298 }
299 elsif ($o =~ /^-stash=(.*)/) {
300 my $pkg = $1;
301 no strict 'refs';
302 eval "require $pkg" unless defined %{$pkg.'::'};
303 push @render_packs, $pkg;
724aa791 304 }
cc02ea56 305 # line-style options
724aa791 306 elsif (exists $style{substr($o, 1)}) {
f95e3c3c 307 $stylename = substr($o, 1);
724aa791 308 set_style_standard($stylename);
c99ca59a
SM
309 } else {
310 warn "Option $o unrecognized";
311 }
312 }
cc02ea56
JC
313 return (@args);
314}
315
316sub compile {
317 my (@args) = compileOpts(@_);
c27ea44e 318 return sub {
cc02ea56
JC
319 my @newargs = compileOpts(@_); # accept new rendering options
320 warn "disregarding non-options: @newargs\n" if @newargs;
321
322 for my $objname (@args) {
59910b6d
JC
323 next unless $objname; # skip null args to avoid noisy responses
324
cc02ea56
JC
325 if ($objname eq "BEGIN") {
326 concise_specials("BEGIN", $order,
c0939cee
JC
327 B::begin_av->isa("B::AV") ?
328 B::begin_av->ARRAY : ());
cc02ea56
JC
329 } elsif ($objname eq "INIT") {
330 concise_specials("INIT", $order,
c0939cee
JC
331 B::init_av->isa("B::AV") ?
332 B::init_av->ARRAY : ());
cc02ea56
JC
333 } elsif ($objname eq "CHECK") {
334 concise_specials("CHECK", $order,
c0939cee
JC
335 B::check_av->isa("B::AV") ?
336 B::check_av->ARRAY : ());
676456c2
AG
337 } elsif ($objname eq "UNITCHECK") {
338 concise_specials("UNITCHECK", $order,
339 B::unitcheck_av->isa("B::AV") ?
340 B::unitcheck_av->ARRAY : ());
cc02ea56
JC
341 } elsif ($objname eq "END") {
342 concise_specials("END", $order,
c0939cee
JC
343 B::end_av->isa("B::AV") ?
344 B::end_av->ARRAY : ());
cc02ea56
JC
345 }
346 else {
347 # convert function names to subrefs
348 my $objref;
349 if (ref $objname) {
350 print $walkHandle "B::Concise::compile($objname)\n"
351 if $banner;
352 $objref = $objname;
8ec8fbef 353 } else {
cc02ea56
JC
354 $objname = "main::" . $objname unless $objname =~ /::/;
355 print $walkHandle "$objname:\n";
356 no strict 'refs';
c0939cee
JC
357 unless (exists &$objname) {
358 print $walkHandle "err: unknown function ($objname)\n";
359 return;
360 }
cc02ea56 361 $objref = \&$objname;
8ec8fbef 362 }
c0939cee 363 concise_subref($order, $objref, $objname);
c99ca59a
SM
364 }
365 }
9e0f9750
JC
366 for my $pkg (@render_packs) {
367 no strict 'refs';
368 concise_stashref($order, \%{$pkg.'::'});
369 }
370
371 if (!@args or $do_main or @render_packs) {
f95e3c3c 372 print $walkHandle "main program:\n" if $do_main;
31b49ad4 373 concise_main($order);
c99ca59a 374 }
cc02ea56 375 return @args; # something
c99ca59a
SM
376 }
377}
378
379my %labels;
724aa791 380my $lastnext; # remembers op-chain, used to insert gotos
c99ca59a
SM
381
382my %opclass = ('OP' => "0", 'UNOP' => "1", 'BINOP' => "2", 'LOGOP' => "|",
383 'LISTOP' => "@", 'PMOP' => "/", 'SVOP' => "\$", 'GVOP' => "*",
051f02e9 384 'PVOP' => '"', 'LOOP' => "{", 'COP' => ";", 'PADOP' => "#");
c99ca59a 385
8ec8fbef 386no warnings 'qw'; # "Possible attempt to put comments..."; use #7
35fc55f1
RH
387my @linenoise =
388 qw'# () sc ( @? 1 $* gv *{ m$ m@ m% m? p/ *$ $ $# & a& pt \\ s\\ rf bl
c99ca59a
SM
389 ` *? <> ?? ?/ r/ c/ // qr s/ /c y/ = @= C sC Cp sp df un BM po +1 +I
390 -1 -I 1+ I+ 1- I- ** * i* / i/ %$ i% x + i+ - i- . " << >> < i<
391 > i> <= i, >= i. == i= != i! <? i? s< s> s, s. s= s! s? b& b^ b| -0 -i
392 ! ~ a2 si cs rd sr e^ lg sq in %x %o ab le ss ve ix ri sf FL od ch cy
393 uf lf uc lc qm @ [f [ @[ eh vl ky dl ex % ${ @{ uk pk st jn ) )[ a@
394 a% sl +] -] [- [+ so rv GS GW MS MW .. f. .f && || ^^ ?: &= |= -> s{ s}
395 v} ca wa di rs ;; ; ;d }{ { } {} f{ it {l l} rt }l }n }r dm }g }e ^o
396 ^c ^| ^# um bm t~ u~ ~d DB db ^s se ^g ^r {w }w pf pr ^O ^K ^R ^W ^d ^v
397 ^e ^t ^k t. fc ic fl .s .p .b .c .l .a .h g1 s1 g2 s2 ?. l? -R -W -X -r
398 -w -x -e -o -O -z -s -M -A -C -S -c -b -f -d -p -l -u -g -k -t -T -B cd
399 co cr u. cm ut r. l@ s@ r@ mD uD oD rD tD sD wD cD f$ w$ p$ sh e$ k$ g3
400 g4 s4 g5 s5 T@ C@ L@ G@ A@ S@ Hg Hc Hr Hw Mg Mc Ms Mr Sg Sc So rq do {e
401 e} {t t} g6 G6 6e g7 G7 7e g8 G8 8e g9 G9 9e 6s 7s 8s 9s 6E 7E 8E 9E Pn
c27ea44e 402 Pu GP SP EP Gn Gg GG SG EG g0 c$ lk t$ ;s n> // /= CO';
c99ca59a
SM
403
404my $chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
405
19e169bf 406sub op_flags { # common flags (see BASOP.op_flags in op.h)
c99ca59a
SM
407 my($x) = @_;
408 my(@v);
409 push @v, "v" if ($x & 3) == 1;
410 push @v, "s" if ($x & 3) == 2;
411 push @v, "l" if ($x & 3) == 3;
412 push @v, "K" if $x & 4;
413 push @v, "P" if $x & 8;
414 push @v, "R" if $x & 16;
415 push @v, "M" if $x & 32;
416 push @v, "S" if $x & 64;
417 push @v, "*" if $x & 128;
418 return join("", @v);
419}
420
421sub base_n {
422 my $x = shift;
423 return "-" . base_n(-$x) if $x < 0;
424 my $str = "";
425 do { $str .= substr($chars, $x % $base, 1) } while $x = int($x / $base);
426 $str = reverse $str if $big_endian;
427 return $str;
428}
429
c27ea44e
SM
430my %sequence_num;
431my $seq_max = 1;
432
f95e3c3c
JC
433sub reset_sequence {
434 # reset the sequence
435 %sequence_num = ();
436 $seq_max = 1;
cc02ea56 437 $lastnext = 0;
f95e3c3c
JC
438}
439
c27ea44e
SM
440sub seq {
441 my($op) = @_;
442 return "-" if not exists $sequence_num{$$op};
443 return base_n($sequence_num{$$op});
444}
c99ca59a
SM
445
446sub walk_topdown {
447 my($op, $sub, $level) = @_;
448 $sub->($op, $level);
449 if ($op->flags & OPf_KIDS) {
450 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
451 walk_topdown($kid, $sub, $level + 1);
452 }
453 }
c0939cee 454 elsif (class($op) eq "PMOP") {
c6e79e55
SM
455 my $maybe_root = $op->pmreplroot;
456 if (ref($maybe_root) and $maybe_root->isa("B::OP")) {
457 # It really is the root of the replacement, not something
458 # else stored here for lack of space elsewhere
459 walk_topdown($maybe_root, $sub, $level + 1);
460 }
c99ca59a
SM
461 }
462}
463
464sub walklines {
465 my($ar, $level) = @_;
466 for my $l (@$ar) {
467 if (ref($l) eq "ARRAY") {
468 walklines($l, $level + 1);
469 } else {
470 $l->concise($level);
471 }
472 }
473}
474
475sub walk_exec {
476 my($top, $level) = @_;
477 my %opsseen;
478 my @lines;
479 my @todo = ([$top, \@lines]);
480 while (@todo and my($op, $targ) = @{shift @todo}) {
481 for (; $$op; $op = $op->next) {
482 last if $opsseen{$$op}++;
483 push @$targ, $op;
484 my $name = $op->name;
62e36f8a 485 if (class($op) eq "LOGOP") {
c99ca59a
SM
486 my $ar = [];
487 push @$targ, $ar;
488 push @todo, [$op->other, $ar];
489 } elsif ($name eq "subst" and $ {$op->pmreplstart}) {
490 my $ar = [];
491 push @$targ, $ar;
492 push @todo, [$op->pmreplstart, $ar];
493 } elsif ($name =~ /^enter(loop|iter)$/) {
7252851f
NC
494 if ($] > 5.009) {
495 $labels{${$op->nextop}} = "NEXT";
496 $labels{${$op->lastop}} = "LAST";
497 $labels{${$op->redoop}} = "REDO";
498 } else {
499 $labels{$op->nextop->seq} = "NEXT";
500 $labels{$op->lastop->seq} = "LAST";
501 $labels{$op->redoop->seq} = "REDO";
502 }
c99ca59a
SM
503 }
504 }
505 }
506 walklines(\@lines, 0);
507}
508
c27ea44e
SM
509# The structure of this routine is purposely modeled after op.c's peep()
510sub sequence {
511 my($op) = @_;
512 my $oldop = 0;
513 return if class($op) eq "NULL" or exists $sequence_num{$$op};
514 for (; $$op; $op = $op->next) {
515 last if exists $sequence_num{$$op};
516 my $name = $op->name;
517 if ($name =~ /^(null|scalar|lineseq|scope)$/) {
518 next if $oldop and $ {$op->next};
519 } else {
520 $sequence_num{$$op} = $seq_max++;
521 if (class($op) eq "LOGOP") {
522 my $other = $op->other;
523 $other = $other->next while $other->name eq "null";
524 sequence($other);
525 } elsif (class($op) eq "LOOP") {
526 my $redoop = $op->redoop;
527 $redoop = $redoop->next while $redoop->name eq "null";
528 sequence($redoop);
529 my $nextop = $op->nextop;
530 $nextop = $nextop->next while $nextop->name eq "null";
531 sequence($nextop);
532 my $lastop = $op->lastop;
533 $lastop = $lastop->next while $lastop->name eq "null";
534 sequence($lastop);
535 } elsif ($name eq "subst" and $ {$op->pmreplstart}) {
536 my $replstart = $op->pmreplstart;
537 $replstart = $replstart->next while $replstart->name eq "null";
538 sequence($replstart);
539 }
540 }
541 $oldop = $op;
542 }
543}
544
724aa791 545sub fmt_line { # generate text-line for op.
cc02ea56
JC
546 my($hr, $op, $text, $level) = @_;
547
548 $_->($hr, $op, \$text, \$level, $stylename) for @callbacks;
549
724aa791 550 return '' if $hr->{SKIP}; # suppress line if a callback said so
cc02ea56 551 return '' if $hr->{goto} and $hr->{goto} eq '-'; # no goto nowhere
f95e3c3c 552
cc02ea56 553 # spec: (?(text1#varText2)?)
c99ca59a 554 $text =~ s/\(\?\(([^\#]*?)\#(\w+)([^\#]*?)\)\?\)/
f95e3c3c
JC
555 $hr->{$2} ? $1.$hr->{$2}.$3 : ""/eg;
556
cc02ea56 557 # spec: (x(exec_text;basic_text)x)
c99ca59a 558 $text =~ s/\(x\((.*?);(.*?)\)x\)/$order eq "exec" ? $1 : $2/egs;
cc02ea56
JC
559
560 # spec: (*(text)*)
c99ca59a 561 $text =~ s/\(\*\(([^;]*?)\)\*\)/$1 x $level/egs;
cc02ea56
JC
562
563 # spec: (*(text1;text2)*)
c99ca59a 564 $text =~ s/\(\*\((.*?);(.*?)\)\*\)/$1 x ($level - 1) . $2 x ($level>0)/egs;
cc02ea56
JC
565
566 # convert #Var to tag=>val form: Var\t#var
567 $text =~ s/\#([A-Z][a-z]+)(\d+)?/\t\u$1\t\L#$1$2/gs;
568
569 # spec: #varN
724aa791
JC
570 $text =~ s/\#([a-zA-Z]+)(\d+)/sprintf("%-$2s", $hr->{$1})/eg;
571
cc02ea56
JC
572 $text =~ s/\#([a-zA-Z]+)/$hr->{$1}/eg; # populate #var's
573 $text =~ s/[ \t]*~+[ \t]*/ /g; # squeeze tildes
f18deeb9
JC
574
575 $text = "# $hr->{src}\n$text" if $show_src and $hr->{src};
576
f95e3c3c
JC
577 chomp $text;
578 return "$text\n" if $text ne "";
579 return $text; # suppress empty lines
c99ca59a
SM
580}
581
19e169bf
JC
582our %priv; # used to display each opcode's BASEOP.op_private values
583
c99ca59a
SM
584$priv{$_}{128} = "LVINTRO"
585 for ("pos", "substr", "vec", "threadsv", "gvsv", "rv2sv", "rv2hv", "rv2gv",
586 "rv2av", "rv2arylen", "aelem", "helem", "aslice", "hslice", "padsv",
241416b8 587 "padav", "padhv", "enteriter");
c99ca59a
SM
588$priv{$_}{64} = "REFC" for ("leave", "leavesub", "leavesublv", "leavewrite");
589$priv{"aassign"}{64} = "COMMON";
461824dc 590$priv{"aassign"}{32} = $] < 5.009 ? "PHASH" : "STATE";
952306ac 591$priv{"sassign"}{32} = "STATE";
c99ca59a 592$priv{"sassign"}{64} = "BKWARD";
7abc42fc 593$priv{$_}{64} = "RTIME" for ("match", "subst", "substcont", "qr");
c99ca59a
SM
594@{$priv{"trans"}}{1,2,4,8,16,64} = ("<UTF", ">UTF", "IDENT", "SQUASH", "DEL",
595 "COMPL", "GROWS");
596$priv{"repeat"}{64} = "DOLIST";
597$priv{"leaveloop"}{64} = "CONT";
598@{$priv{$_}}{32,64,96} = ("DREFAV", "DREFHV", "DREFSV")
314d4778 599 for (qw(rv2gv rv2sv padsv aelem helem));
a5911867 600$priv{$_}{16} = "STATE" for ("padav", "padhv", "padsv");
d4797c1d 601@{$priv{"entersub"}}{16,32,64} = ("DBG","TARG","NOMOD");
c99ca59a
SM
602@{$priv{$_}}{4,8,128} = ("INARGS","AMPER","NO()") for ("entersub", "rv2cv");
603$priv{"gv"}{32} = "EARLYCV";
604$priv{"aelem"}{16} = $priv{"helem"}{16} = "LVDEFER";
241416b8
DM
605$priv{$_}{16} = "OURINTR" for ("gvsv", "rv2sv", "rv2av", "rv2hv", "r2gv",
606 "enteriter");
c99ca59a
SM
607$priv{$_}{16} = "TARGMY"
608 for (map(($_,"s$_"),"chop", "chomp"),
609 map(($_,"i_$_"), "postinc", "postdec", "multiply", "divide", "modulo",
610 "add", "subtract", "negate"), "pow", "concat", "stringify",
611 "left_shift", "right_shift", "bit_and", "bit_xor", "bit_or",
612 "complement", "atan2", "sin", "cos", "rand", "exp", "log", "sqrt",
613 "int", "hex", "oct", "abs", "length", "index", "rindex", "sprintf",
614 "ord", "chr", "crypt", "quotemeta", "join", "push", "unshift", "flock",
615 "chdir", "chown", "chroot", "unlink", "chmod", "utime", "rename",
616 "link", "symlink", "mkdir", "rmdir", "wait", "waitpid", "system",
617 "exec", "kill", "getppid", "getpgrp", "setpgrp", "getpriority",
618 "setpriority", "time", "sleep");
ef3e5ea9 619$priv{$_}{4} = "REVERSED" for ("enteriter", "iter");
d4797c1d 620@{$priv{"const"}}{4,8,16,32,64,128} = ("SHORT","STRICT","ENTERED",'$[',"BARE","WARN");
c99ca59a
SM
621$priv{"flip"}{64} = $priv{"flop"}{64} = "LINENUM";
622$priv{"list"}{64} = "GUESSED";
623$priv{"delete"}{64} = "SLICE";
624$priv{"exists"}{64} = "SUB";
7b9ef140 625@{$priv{"sort"}}{1,2,4,8,16,32,64} = ("NUM", "INT", "REV", "INPLACE","DESC","QSORT","STABLE");
c99ca59a 626$priv{"threadsv"}{64} = "SVREFd";
c27ea44e
SM
627@{$priv{$_}}{16,32,64,128} = ("INBIN","INCR","OUTBIN","OUTCR")
628 for ("open", "backtick");
c99ca59a 629$priv{"exit"}{128} = "VMS";
feaeca78
JH
630$priv{$_}{2} = "FTACCESS"
631 for ("ftrread", "ftrwrite", "ftrexec", "fteread", "ftewrite", "fteexec");
7b9ef140 632$priv{"entereval"}{2} = "HAS_HH";
32454ac8
NC
633if ($] >= 5.009) {
634 # Stacked filetests are post 5.8.x
635 $priv{$_}{4} = "FTSTACKED"
636 for ("ftrread", "ftrwrite", "ftrexec", "fteread", "ftewrite", "fteexec",
637 "ftis", "fteowned", "ftrowned", "ftzero", "ftsize", "ftmtime",
638 "ftatime", "ftctime", "ftsock", "ftchr", "ftblk", "ftfile", "ftdir",
639 "ftpipe", "ftlink", "ftsuid", "ftsgid", "ftsvtx", "fttty", "fttext",
640 "ftbinary");
641 # Lexical $_ is post 5.8.x
642 $priv{$_}{2} = "GREPLEX"
643 for ("mapwhile", "mapstart", "grepwhile", "grepstart");
644}
c99ca59a 645
d5ec2987
NC
646our %hints; # used to display each COP's op_hints values
647
648# strict refs, subs, vars
649@hints{2,512,1024} = ('$', '&', '*');
650# integers, locale, bytes, arybase
651@hints{1,4,8,16,32} = ('i', 'l', 'b', '[');
8b850bd5
NC
652# block scope, localise %^H, $^OPEN (in), $^OPEN (out)
653@hints{256,131072,262144,524288} = ('{','%','<','>');
d5ec2987
NC
654# overload new integer, float, binary, string, re
655@hints{4096,8192,16384,32768,65536} = ('I', 'F', 'B', 'S', 'R');
656# taint and eval
657@hints{1048576,2097152} = ('T', 'E');
584420f0
RGS
658# filetest access, UTF-8
659@hints{4194304,8388608} = ('X', 'U');
d5ec2987
NC
660
661sub _flags {
662 my($hash, $x) = @_;
c99ca59a 663 my @s;
d5ec2987
NC
664 for my $flag (sort {$b <=> $a} keys %$hash) {
665 if ($hash->{$flag} and $x & $flag and $x >= $flag) {
c99ca59a 666 $x -= $flag;
d5ec2987 667 push @s, $hash->{$flag};
c99ca59a
SM
668 }
669 }
670 push @s, $x if $x;
671 return join(",", @s);
672}
673
d5ec2987
NC
674sub private_flags {
675 my($name, $x) = @_;
676 _flags($priv{$name}, $x);
677}
678
679sub hints_flags {
680 my($x) = @_;
681 _flags(\%hints, $x);
682}
683
c27ea44e 684sub concise_sv {
2db5ca0a 685 my($sv, $hr, $preferpv) = @_;
c27ea44e 686 $hr->{svclass} = class($sv);
31b49ad4
SM
687 $hr->{svclass} = "UV"
688 if $hr->{svclass} eq "IV" and $sv->FLAGS & SVf_IVisUV;
5b493bdf 689 Carp::cluck("bad concise_sv: $sv") unless $sv and $$sv;
c27ea44e 690 $hr->{svaddr} = sprintf("%#x", $$sv);
50786ba8 691 if ($hr->{svclass} eq "GV" && $sv->isGV_with_GP()) {
c27ea44e 692 my $gv = $sv;
50786ba8 693 my $stash = $gv->STASH->NAME; if ($stash eq "main") {
c27ea44e
SM
694 $stash = "";
695 } else {
696 $stash = $stash . "::";
697 }
698 $hr->{svval} = "*$stash" . $gv->SAFENAME;
699 return "*$stash" . $gv->SAFENAME;
700 } else {
701 while (class($sv) eq "RV") {
702 $hr->{svval} .= "\\";
703 $sv = $sv->RV;
704 }
705 if (class($sv) eq "SPECIAL") {
40b5b14f 706 $hr->{svval} .= ["Null", "sv_undef", "sv_yes", "sv_no"]->[$$sv];
2db5ca0a
YST
707 } elsif ($preferpv && $sv->FLAGS & SVf_POK) {
708 $hr->{svval} .= cstring($sv->PV);
c27ea44e 709 } elsif ($sv->FLAGS & SVf_NOK) {
40b5b14f 710 $hr->{svval} .= $sv->NV;
c27ea44e 711 } elsif ($sv->FLAGS & SVf_IOK) {
31b49ad4 712 $hr->{svval} .= $sv->int_value;
c27ea44e 713 } elsif ($sv->FLAGS & SVf_POK) {
40b5b14f 714 $hr->{svval} .= cstring($sv->PV);
31b49ad4
SM
715 } elsif (class($sv) eq "HV") {
716 $hr->{svval} .= 'HASH';
c27ea44e 717 }
cc02ea56
JC
718
719 $hr->{svval} = 'undef' unless defined $hr->{svval};
720 my $out = $hr->{svclass};
721 return $out .= " $hr->{svval}" ;
c27ea44e
SM
722 }
723}
724
f18deeb9
JC
725my %srclines;
726
727sub fill_srclines {
9e0f9750
JC
728 my $fullnm = shift;
729 if ($fullnm eq '-e') {
730 $srclines{$fullnm} = [ $fullnm, "-src not supported for -e" ];
731 return;
6cc5d258 732 }
9e0f9750 733 open (my $fh, '<', $fullnm)
6cc5d258 734 or warn "# $fullnm: $!, (chdirs not supported by this feature yet)\n"
f18deeb9
JC
735 and return;
736 my @l = <$fh>;
737 chomp @l;
9e0f9750
JC
738 unshift @l, $fullnm; # like @{_<$fullnm} in debug, array starts at 1
739 $srclines{$fullnm} = \@l;
f18deeb9
JC
740}
741
c99ca59a
SM
742sub concise_op {
743 my ($op, $level, $format) = @_;
744 my %h;
745 $h{exname} = $h{name} = $op->name;
746 $h{NAME} = uc $h{name};
747 $h{class} = class($op);
748 $h{extarg} = $h{targ} = $op->targ;
749 $h{extarg} = "" unless $h{extarg};
750 if ($h{name} eq "null" and $h{targ}) {
8ec8fbef 751 # targ holds the old type
c99ca59a
SM
752 $h{exname} = "ex-" . substr(ppname($h{targ}), 3);
753 $h{extarg} = "";
8ec8fbef
SM
754 } elsif ($op->name =~ /^leave(sub(lv)?|write)?$/) {
755 # targ potentially holds a reference count
756 if ($op->private & 64) {
757 my $refs = "ref" . ($h{targ} != 1 ? "s" : "");
758 $h{targarglife} = $h{targarg} = "$h{targ} $refs";
759 }
c99ca59a
SM
760 } elsif ($h{targ}) {
761 my $padname = (($curcv->PADLIST->ARRAY)[0]->ARRAY)[$h{targ}];
762 if (defined $padname and class($padname) ne "SPECIAL") {
0b40bd6d 763 $h{targarg} = $padname->PVX;
127212b2 764 if ($padname->FLAGS & SVf_FAKE) {
4ac6efe6
NC
765 if ($] < 5.009) {
766 $h{targarglife} = "$h{targarg}:FAKE";
767 } else {
768 # These changes relate to the jumbo closure fix.
769 # See changes 19939 and 20005
770 my $fake = '';
6c5e080d
NC
771 $fake .= 'a'
772 if $padname->PARENT_FAKELEX_FLAGS & PAD_FAKELEX_ANON;
773 $fake .= 'm'
774 if $padname->PARENT_FAKELEX_FLAGS & PAD_FAKELEX_MULTI;
809abb02
NC
775 $fake .= ':' . $padname->PARENT_PAD_INDEX
776 if $curcv->CvFLAGS & CVf_ANON;
4ac6efe6
NC
777 $h{targarglife} = "$h{targarg}:FAKE:$fake";
778 }
127212b2
DM
779 }
780 else {
809abb02
NC
781 my $intro = $padname->COP_SEQ_RANGE_LOW - $cop_seq_base;
782 my $finish = int($padname->COP_SEQ_RANGE_HIGH) - $cop_seq_base;
127212b2
DM
783 $finish = "end" if $finish == 999999999 - $cop_seq_base;
784 $h{targarglife} = "$h{targarg}:$intro,$finish";
785 }
c99ca59a
SM
786 } else {
787 $h{targarglife} = $h{targarg} = "t" . $h{targ};
788 }
789 }
790 $h{arg} = "";
791 $h{svclass} = $h{svaddr} = $h{svval} = "";
792 if ($h{class} eq "PMOP") {
793 my $precomp = $op->precomp;
7a9b44b9 794 if (defined $precomp) {
c27ea44e
SM
795 $precomp = cstring($precomp); # Escape literal control sequences
796 $precomp = "/$precomp/";
797 } else {
798 $precomp = "";
7a9b44b9 799 }
b2a3cfdd 800 my $pmreplroot = $op->pmreplroot;
34a48b4b 801 my $pmreplstart;
c6e79e55 802 if (ref($pmreplroot) eq "B::GV") {
b2a3cfdd 803 # with C<@stash_array = split(/pat/, str);>,
c6e79e55 804 # *stash_array is stored in /pat/'s pmreplroot.
b2a3cfdd 805 $h{arg} = "($precomp => \@" . $pmreplroot->NAME . ")";
c6e79e55
SM
806 } elsif (!ref($pmreplroot) and $pmreplroot) {
807 # same as the last case, except the value is actually a
808 # pad offset for where the GV is kept (this happens under
809 # ithreads)
810 my $gv = (($curcv->PADLIST->ARRAY)[1]->ARRAY)[$pmreplroot];
811 $h{arg} = "($precomp => \@" . $gv->NAME . ")";
b2a3cfdd 812 } elsif ($ {$op->pmreplstart}) {
c99ca59a
SM
813 undef $lastnext;
814 $pmreplstart = "replstart->" . seq($op->pmreplstart);
815 $h{arg} = "(" . join(" ", $precomp, $pmreplstart) . ")";
816 } else {
817 $h{arg} = "($precomp)";
818 }
819 } elsif ($h{class} eq "PVOP" and $h{name} ne "trans") {
820 $h{arg} = '("' . $op->pv . '")';
821 $h{svval} = '"' . $op->pv . '"';
822 } elsif ($h{class} eq "COP") {
823 my $label = $op->label;
c3caa09d 824 $h{coplabel} = $label;
c99ca59a
SM
825 $label = $label ? "$label: " : "";
826 my $loc = $op->file;
9e0f9750 827 my $pathnm = $loc;
c99ca59a 828 $loc =~ s[.*/][];
9e0f9750
JC
829 my $ln = $op->line;
830 $loc .= ":$ln";
c99ca59a
SM
831 my($stash, $cseq) = ($op->stash->NAME, $op->cop_seq - $cop_seq_base);
832 my $arybase = $op->arybase;
833 $arybase = $arybase ? ' $[=' . $arybase : "";
834 $h{arg} = "($label$stash $cseq $loc$arybase)";
f18deeb9 835 if ($show_src) {
9e0f9750 836 fill_srclines($pathnm) unless exists $srclines{$pathnm};
e9c69003
NC
837 # Would love to retain Jim's use of // but this code needs to be
838 # portable to 5.8.x
839 my $line = $srclines{$pathnm}[$ln];
840 $line = "-src unavailable under -e" unless defined $line;
841 $h{src} = "$ln: $line";
f18deeb9 842 }
c99ca59a
SM
843 } elsif ($h{class} eq "LOOP") {
844 $h{arg} = "(next->" . seq($op->nextop) . " last->" . seq($op->lastop)
845 . " redo->" . seq($op->redoop) . ")";
846 } elsif ($h{class} eq "LOGOP") {
847 undef $lastnext;
848 $h{arg} = "(other->" . seq($op->other) . ")";
5b493bdf
JC
849 }
850 elsif ($h{class} eq "SVOP" or $h{class} eq "PADOP") {
6a077020 851 unless ($h{name} eq 'aelemfast' and $op->flags & OPf_SPECIAL) {
5b493bdf 852 my $idx = ($h{class} eq "SVOP") ? $op->targ : $op->padix;
2db5ca0a 853 my $preferpv = $h{name} eq "method_named";
5b493bdf
JC
854 if ($h{class} eq "PADOP" or !${$op->sv}) {
855 my $sv = (($curcv->PADLIST->ARRAY)[1]->ARRAY)[$idx];
2db5ca0a 856 $h{arg} = "[" . concise_sv($sv, \%h, $preferpv) . "]";
6a077020
DM
857 $h{targarglife} = $h{targarg} = "";
858 } else {
2db5ca0a 859 $h{arg} = "(" . concise_sv($op->sv, \%h, $preferpv) . ")";
6a077020 860 }
c99ca59a
SM
861 }
862 }
863 $h{seq} = $h{hyphseq} = seq($op);
864 $h{seq} = "" if $h{seq} eq "-";
7252851f
NC
865 if ($] > 5.009) {
866 $h{opt} = $op->opt;
7252851f
NC
867 $h{label} = $labels{$$op};
868 } else {
869 $h{seqnum} = $op->seq;
870 $h{label} = $labels{$op->seq};
871 }
c99ca59a
SM
872 $h{next} = $op->next;
873 $h{next} = (class($h{next}) eq "NULL") ? "(end)" : seq($h{next});
874 $h{nextaddr} = sprintf("%#x", $ {$op->next});
875 $h{sibaddr} = sprintf("%#x", $ {$op->sibling});
876 $h{firstaddr} = sprintf("%#x", $ {$op->first}) if $op->can("first");
877 $h{lastaddr} = sprintf("%#x", $ {$op->last}) if $op->can("last");
878
879 $h{classsym} = $opclass{$h{class}};
880 $h{flagval} = $op->flags;
881 $h{flags} = op_flags($op->flags);
882 $h{privval} = $op->private;
883 $h{private} = private_flags($h{name}, $op->private);
d5ec2987
NC
884 if ($op->can("hints")) {
885 $h{hintsval} = $op->hints;
886 $h{hints} = hints_flags($h{hintsval});
887 } else {
888 $h{hintsval} = $h{hints} = '';
889 }
c99ca59a 890 $h{addr} = sprintf("%#x", $$op);
c99ca59a
SM
891 $h{typenum} = $op->type;
892 $h{noise} = $linenoise[$op->type];
f95e3c3c 893
cc02ea56 894 return fmt_line(\%h, $op, $format, $level);
c99ca59a
SM
895}
896
897sub B::OP::concise {
898 my($op, $level) = @_;
899 if ($order eq "exec" and $lastnext and $$lastnext != $$op) {
724aa791 900 # insert a 'goto' line
cc02ea56
JC
901 my $synth = {"seq" => seq($lastnext), "class" => class($lastnext),
902 "addr" => sprintf("%#x", $$lastnext),
903 "goto" => seq($lastnext), # simplify goto '-' removal
904 };
905 print $walkHandle fmt_line($synth, $op, $gotofmt, $level+1);
c99ca59a
SM
906 }
907 $lastnext = $op->next;
f95e3c3c 908 print $walkHandle concise_op($op, $level, $format);
c99ca59a
SM
909}
910
31b49ad4
SM
911# B::OP::terse (see Terse.pm) now just calls this
912sub b_terse {
913 my($op, $level) = @_;
914
915 # This isn't necessarily right, but there's no easy way to get
916 # from an OP to the right CV. This is a limitation of the
917 # ->terse() interface style, and there isn't much to do about
918 # it. In particular, we can die in concise_op if the main pad
919 # isn't long enough, or has the wrong kind of entries, compared to
920 # the pad a sub was compiled with. The fix for that would be to
921 # make a backwards compatible "terse" format that never even
922 # looked at the pad, just like the old B::Terse. I don't think
923 # that's worth the effort, though.
924 $curcv = main_cv unless $curcv;
925
926 if ($order eq "exec" and $lastnext and $$lastnext != $$op) {
724aa791 927 # insert a 'goto'
31b49ad4
SM
928 my $h = {"seq" => seq($lastnext), "class" => class($lastnext),
929 "addr" => sprintf("%#x", $$lastnext)};
cc02ea56
JC
930 print # $walkHandle
931 fmt_line($h, $op, $style{"terse"}[1], $level+1);
31b49ad4
SM
932 }
933 $lastnext = $op->next;
cc02ea56
JC
934 print # $walkHandle
935 concise_op($op, $level, $style{"terse"}[0]);
31b49ad4
SM
936}
937
c99ca59a
SM
938sub tree {
939 my $op = shift;
940 my $level = shift;
941 my $style = $tree_decorations[$tree_style];
942 my($space, $single, $kids, $kid, $nokid, $last, $lead, $size) = @$style;
943 my $name = concise_op($op, $level, $treefmt);
944 if (not $op->flags & OPf_KIDS) {
945 return $name . "\n";
946 }
947 my @lines;
948 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
949 push @lines, tree($kid, $level+1);
950 }
951 my $i;
952 for ($i = $#lines; substr($lines[$i], 0, 1) eq " "; $i--) {
953 $lines[$i] = $space . $lines[$i];
954 }
955 if ($i > 0) {
956 $lines[$i] = $last . $lines[$i];
957 while ($i-- > 1) {
958 if (substr($lines[$i], 0, 1) eq " ") {
959 $lines[$i] = $nokid . $lines[$i];
960 } else {
f95e3c3c 961 $lines[$i] = $kid . $lines[$i];
c99ca59a
SM
962 }
963 }
964 $lines[$i] = $kids . $lines[$i];
965 } else {
966 $lines[0] = $single . $lines[0];
967 }
968 return("$name$lead" . shift @lines,
969 map(" " x (length($name)+$size) . $_, @lines));
970}
971
213a1a26
SM
972# *** Warning: fragile kludge ahead ***
973# Because the B::* modules run in the same interpreter as the code
2814eb74
PJ
974# they're compiling, their presence tends to distort the view we have of
975# the code we're looking at. In particular, perl gives sequence numbers
976# to COPs. If the program we're looking at were run on its own, this
977# would start at 1. Because all of B::Concise and all the modules it
978# uses are compiled first, though, by the time we get to the user's
979# program the sequence number is already pretty high, which could be
980# distracting if you're trying to tell OPs apart. Therefore we'd like to
981# subtract an offset from all the sequence numbers we display, to
982# restore the simpler view of the world. The trick is to know what that
983# offset will be, when we're still compiling B::Concise! If we
213a1a26 984# hardcoded a value, it would have to change every time B::Concise or
2814eb74
PJ
985# other modules we use do. To help a little, what we do here is compile
986# a little code at the end of the module, and compute the base sequence
987# number for the user's program as being a small offset later, so all we
988# have to worry about are changes in the offset.
7252851f
NC
989
990# [For 5.8.x and earlier perl is generating sequence numbers for all ops,
991# and using them to reference labels]
992
993
213a1a26
SM
994# When you say "perl -MO=Concise -e '$a'", the output should look like:
995
996# 4 <@> leave[t1] vKP/REFC ->(end)
997# 1 <0> enter ->2
998 #^ smallest OP sequence number should be 1
999# 2 <;> nextstate(main 1 -e:1) v ->3
1000 # ^ smallest COP sequence number should be 1
1001# - <1> ex-rv2sv vK/1 ->4
1002# 3 <$> gvsv(*a) s ->4
1003
c27ea44e
SM
1004# If the second of the marked numbers there isn't 1, it means you need
1005# to update the corresponding magic number in the next line.
1006# Remember, this needs to stay the last things in the module.
e69a2255 1007
c27ea44e 1008# Why is this different for MacOS? Does it matter?
8ec8fbef 1009my $cop_seq_mnum = $^O eq 'MacOS' ? 12 : 11;
e69a2255 1010$cop_seq_base = svref_2object(eval 'sub{0;}')->START->cop_seq + $cop_seq_mnum;
c99ca59a
SM
1011
10121;
1013
1014__END__
1015
1016=head1 NAME
1017
1018B::Concise - Walk Perl syntax tree, printing concise info about ops
1019
1020=head1 SYNOPSIS
1021
1022 perl -MO=Concise[,OPTIONS] foo.pl
1023
78ad9108
PJ
1024 use B::Concise qw(set_style add_callback);
1025
c99ca59a
SM
1026=head1 DESCRIPTION
1027
1028This compiler backend prints the internal OPs of a Perl program's syntax
1029tree in one of several space-efficient text formats suitable for debugging
1030the inner workings of perl or other compiler backends. It can print OPs in
1031the order they appear in the OP tree, in the order they will execute, or
1032in a text approximation to their tree structure, and the format of the
3c4b39be 1033information displayed is customizable. Its function is similar to that of
c99ca59a
SM
1034perl's B<-Dx> debugging flag or the B<B::Terse> module, but it is more
1035sophisticated and flexible.
1036
f8a679e6
RGS
1037=head1 EXAMPLE
1038
f9f861ec
JC
1039Here's two outputs (or 'renderings'), using the -exec and -basic
1040(i.e. default) formatting conventions on the same code snippet.
19e169bf
JC
1041
1042 % perl -MO=Concise,-exec -e '$a = $b + 42'
1043 1 <0> enter
1044 2 <;> nextstate(main 1 -e:1) v
1045 3 <#> gvsv[*b] s
1046 4 <$> const[IV 42] s
1047 * 5 <2> add[t3] sK/2
1048 6 <#> gvsv[*a] s
1049 7 <2> sassign vKS/2
1050 8 <@> leave[1 ref] vKP/REFC
1051
f9f861ec
JC
1052In this -exec rendering, each opcode is executed in the order shown.
1053The add opcode, marked with '*', is discussed in more detail.
19e169bf
JC
1054
1055The 1st column is the op's sequence number, starting at 1, and is
f9f861ec
JC
1056displayed in base 36 by default. Here they're purely linear; the
1057sequences are very helpful when looking at code with loops and
1058branches.
19e169bf
JC
1059
1060The symbol between angle brackets indicates the op's type, for
1061example; <2> is a BINOP, <@> a LISTOP, and <#> is a PADOP, which is
1062used in threaded perls. (see L</"OP class abbreviations">).
1063
f9f861ec 1064The opname, as in B<'add[t1]'>, may be followed by op-specific
19e169bf
JC
1065information in parentheses or brackets (ex B<'[t1]'>).
1066
f9f861ec 1067The op-flags (ex B<'sK/2'>) are described in (L</"OP flags
19e169bf 1068abbreviations">).
f8a679e6
RGS
1069
1070 % perl -MO=Concise -e '$a = $b + 42'
8ec8fbef 1071 8 <@> leave[1 ref] vKP/REFC ->(end)
f8a679e6
RGS
1072 1 <0> enter ->2
1073 2 <;> nextstate(main 1 -e:1) v ->3
1074 7 <2> sassign vKS/2 ->8
19e169bf 1075 * 5 <2> add[t1] sK/2 ->6
f8a679e6
RGS
1076 - <1> ex-rv2sv sK/1 ->4
1077 3 <$> gvsv(*b) s ->4
1078 4 <$> const(IV 42) s ->5
1079 - <1> ex-rv2sv sKRM*/1 ->7
1080 6 <$> gvsv(*a) s ->7
1081
19e169bf
JC
1082The default rendering is top-down, so they're not in execution order.
1083This form reflects the way the stack is used to parse and evaluate
1084expressions; the add operates on the two terms below it in the tree.
f8a679e6 1085
19e169bf
JC
1086Nullops appear as C<ex-opname>, where I<opname> is an op that has been
1087optimized away by perl. They're displayed with a sequence-number of
1088'-', because they are not executed (they don't appear in previous
1089example), they're printed here because they reflect the parse.
f8a679e6 1090
19e169bf
JC
1091The arrow points to the sequence number of the next op; they're not
1092displayed in -exec mode, for obvious reasons.
f8a679e6 1093
19e169bf
JC
1094Note that because this rendering was done on a non-threaded perl, the
1095PADOPs in the previous examples are now SVOPs, and some (but not all)
1096of the square brackets have been replaced by round ones. This is a
1097subtle feature to provide some visual distinction between renderings
1098on threaded and un-threaded perls.
f8a679e6 1099
f8a679e6 1100
c99ca59a
SM
1101=head1 OPTIONS
1102
1103Arguments that don't start with a hyphen are taken to be the names of
9e0f9750
JC
1104subroutines to render; if no such functions are specified, the main
1105body of the program (outside any subroutines, and not including use'd
1106or require'd files) is rendered. Passing C<BEGIN>, C<UNITCHECK>,
1107C<CHECK>, C<INIT>, or C<END> will cause all of the corresponding
1108special blocks to be printed. Arguments must follow options.
c99ca59a 1109
724aa791
JC
1110Options affect how things are rendered (ie printed). They're presented
1111here by their visual effect, 1st being strongest. They're grouped
1112according to how they interrelate; within each group the options are
1113mutually exclusive (unless otherwise stated).
1114
1115=head2 Options for Opcode Ordering
1116
1117These options control the 'vertical display' of opcodes. The display
1118'order' is also called 'mode' elsewhere in this document.
1119
c99ca59a
SM
1120=over 4
1121
1122=item B<-basic>
1123
1124Print OPs in the order they appear in the OP tree (a preorder
1125traversal, starting at the root). The indentation of each OP shows its
19e169bf
JC
1126level in the tree, and the '->' at the end of the line indicates the
1127next opcode in execution order. This mode is the default, so the flag
1128is included simply for completeness.
c99ca59a
SM
1129
1130=item B<-exec>
1131
1132Print OPs in the order they would normally execute (for the majority
1133of constructs this is a postorder traversal of the tree, ending at the
1134root). In most cases the OP that usually follows a given OP will
1135appear directly below it; alternate paths are shown by indentation. In
1136cases like loops when control jumps out of a linear path, a 'goto'
1137line is generated.
1138
1139=item B<-tree>
1140
1141Print OPs in a text approximation of a tree, with the root of the tree
1142at the left and 'left-to-right' order of children transformed into
1143'top-to-bottom'. Because this mode grows both to the right and down,
1144it isn't suitable for large programs (unless you have a very wide
1145terminal).
1146
724aa791
JC
1147=back
1148
1149=head2 Options for Line-Style
1150
1151These options select the line-style (or just style) used to render
1152each opcode, and dictates what info is actually printed into each line.
1153
1154=over 4
1155
1156=item B<-concise>
1157
1158Use the author's favorite set of formatting conventions. This is the
1159default, of course.
1160
1161=item B<-terse>
1162
1163Use formatting conventions that emulate the output of B<B::Terse>. The
1164basic mode is almost indistinguishable from the real B<B::Terse>, and the
1165exec mode looks very similar, but is in a more logical order and lacks
1166curly brackets. B<B::Terse> doesn't have a tree mode, so the tree mode
1167is only vaguely reminiscent of B<B::Terse>.
1168
1169=item B<-linenoise>
1170
1171Use formatting conventions in which the name of each OP, rather than being
1172written out in full, is represented by a one- or two-character abbreviation.
1173This is mainly a joke.
1174
1175=item B<-debug>
1176
1177Use formatting conventions reminiscent of B<B::Debug>; these aren't
1178very concise at all.
1179
1180=item B<-env>
1181
1182Use formatting conventions read from the environment variables
1183C<B_CONCISE_FORMAT>, C<B_CONCISE_GOTO_FORMAT>, and C<B_CONCISE_TREE_FORMAT>.
1184
1185=back
1186
1187=head2 Options for tree-specific formatting
1188
1189=over 4
1190
c99ca59a
SM
1191=item B<-compact>
1192
1193Use a tree format in which the minimum amount of space is used for the
1194lines connecting nodes (one character in most cases). This squeezes out
1195a few precious columns of screen real estate.
1196
1197=item B<-loose>
1198
1199Use a tree format that uses longer edges to separate OP nodes. This format
1200tends to look better than the compact one, especially in ASCII, and is
1201the default.
1202
1203=item B<-vt>
1204
1205Use tree connecting characters drawn from the VT100 line-drawing set.
1206This looks better if your terminal supports it.
1207
1208=item B<-ascii>
1209
1210Draw the tree with standard ASCII characters like C<+> and C<|>. These don't
1211look as clean as the VT100 characters, but they'll work with almost any
1212terminal (or the horizontal scrolling mode of less(1)) and are suitable
1213for text documentation or email. This is the default.
1214
724aa791 1215=back
c99ca59a 1216
724aa791
JC
1217These are pairwise exclusive, i.e. compact or loose, vt or ascii.
1218
1219=head2 Options controlling sequence numbering
1220
1221=over 4
c99ca59a
SM
1222
1223=item B<-base>I<n>
1224
1225Print OP sequence numbers in base I<n>. If I<n> is greater than 10, the
1226digit for 11 will be 'a', and so on. If I<n> is greater than 36, the digit
1227for 37 will be 'A', and so on until 62. Values greater than 62 are not
1228currently supported. The default is 36.
1229
1230=item B<-bigendian>
1231
1232Print sequence numbers with the most significant digit first. This is the
1233usual convention for Arabic numerals, and the default.
1234
1235=item B<-littleendian>
1236
724aa791
JC
1237Print seqence numbers with the least significant digit first. This is
1238obviously mutually exclusive with bigendian.
c99ca59a 1239
724aa791 1240=back
c99ca59a 1241
724aa791 1242=head2 Other options
c99ca59a 1243
f18deeb9
JC
1244=over 4
1245
1246=item B<-src>
1247
e6665613
JC
1248With this option, the rendering of each statement (starting with the
1249nextstate OP) will be preceded by the 1st line of source code that
1250generates it. For example:
f18deeb9
JC
1251
1252 1 <0> enter
1253 # 1: my $i;
1254 2 <;> nextstate(main 1 junk.pl:1) v:{
1255 3 <0> padsv[$i:1,10] vM/LVINTRO
1256 # 3: for $i (0..9) {
1257 4 <;> nextstate(main 3 junk.pl:3) v:{
1258 5 <0> pushmark s
1259 6 <$> const[IV 0] s
1260 7 <$> const[IV 9] s
1261 8 <{> enteriter(next->j last->m redo->9)[$i:1,10] lKS
1262 k <0> iter s
1263 l <|> and(other->9) vK/1
1264 # 4: print "line ";
1265 9 <;> nextstate(main 2 junk.pl:4) v
1266 a <0> pushmark s
1267 b <$> const[PV "line "] s
1268 c <@> print vK
1269 # 5: print "$i\n";
e6665613 1270 ...
f18deeb9 1271
9e0f9750
JC
1272=item B<-stash="somepackage">
1273
1274With this, "somepackage" will be required, then the stash is
1275inspected, and each function is rendered.
1276
f18deeb9
JC
1277=back
1278
1279The following options are pairwise exclusive.
cc02ea56 1280
724aa791 1281=over 4
c99ca59a 1282
724aa791 1283=item B<-main>
c99ca59a 1284
724aa791 1285Include the main program in the output, even if subroutines were also
cc02ea56
JC
1286specified. This rendering is normally suppressed when a subroutine
1287name or reference is given.
1288
1289=item B<-nomain>
1290
1291This restores the default behavior after you've changed it with '-main'
1292(it's not normally needed). If no subroutine name/ref is given, main is
1293rendered, regardless of this flag.
1294
1295=item B<-nobanner>
1296
1297Renderings usually include a banner line identifying the function name
1298or stringified subref. This suppresses the printing of the banner.
1299
1300TBC: Remove the stringified coderef; while it provides a 'cookie' for
1301each function rendered, the cookies used should be 1,2,3.. not a
1302random hex-address. It also complicates string comparison of two
1303different trees.
c99ca59a 1304
724aa791 1305=item B<-banner>
c99ca59a 1306
cc02ea56
JC
1307restores default banner behavior.
1308
1309=item B<-banneris> => subref
1310
1311TBC: a hookpoint (and an option to set it) for a user-supplied
1312function to produce a banner appropriate for users needs. It's not
1313ideal, because the rendering-state variables, which are a natural
1314candidate for use in concise.t, are unavailable to the user.
c99ca59a 1315
724aa791 1316=back
c99ca59a 1317
724aa791 1318=head2 Option Stickiness
c99ca59a 1319
724aa791
JC
1320If you invoke Concise more than once in a program, you should know that
1321the options are 'sticky'. This means that the options you provide in
1322the first call will be remembered for the 2nd call, unless you
1323re-specify or change them.
c99ca59a 1324
cc02ea56
JC
1325=head1 ABBREVIATIONS
1326
1327The concise style uses symbols to convey maximum info with minimal
1328clutter (like hex addresses). With just a little practice, you can
1329start to see the flowers, not just the branches, in the trees.
1330
1331=head2 OP class abbreviations
1332
1333These symbols appear before the op-name, and indicate the
1334B:: namespace that represents the ops in your Perl code.
1335
1336 0 OP (aka BASEOP) An OP with no children
1337 1 UNOP An OP with one child
1338 2 BINOP An OP with two children
1339 | LOGOP A control branch OP
1340 @ LISTOP An OP that could have lots of children
1341 / PMOP An OP with a regular expression
1342 $ SVOP An OP with an SV
1343 " PVOP An OP with a string
1344 { LOOP An OP that holds pointers for a loop
1345 ; COP An OP that marks the start of a statement
1346 # PADOP An OP with a GV on the pad
1347
1348=head2 OP flags abbreviations
1349
19e169bf
JC
1350OP flags are either public or private. The public flags alter the
1351behavior of each opcode in consistent ways, and are represented by 0
1352or more single characters.
cc02ea56
JC
1353
1354 v OPf_WANT_VOID Want nothing (void context)
1355 s OPf_WANT_SCALAR Want single value (scalar context)
1356 l OPf_WANT_LIST Want list of any length (list context)
19e169bf 1357 Want is unknown
cc02ea56
JC
1358 K OPf_KIDS There is a firstborn child.
1359 P OPf_PARENS This operator was parenthesized.
1360 (Or block needs explicit scope entry.)
1361 R OPf_REF Certified reference.
1362 (Return container, not containee).
1363 M OPf_MOD Will modify (lvalue).
1364 S OPf_STACKED Some arg is arriving on the stack.
1365 * OPf_SPECIAL Do something weird for this op (see op.h)
1366
19e169bf
JC
1367Private flags, if any are set for an opcode, are displayed after a '/'
1368
1369 8 <@> leave[1 ref] vKP/REFC ->(end)
1370 7 <2> sassign vKS/2 ->8
1371
1372They're opcode specific, and occur less often than the public ones, so
1373they're represented by short mnemonics instead of single-chars; see
00baac8f 1374F<op.h> for gory details, or try this quick 2-liner:
19e169bf
JC
1375
1376 $> perl -MB::Concise -de 1
1377 DB<1> |x \%B::Concise::priv
1378
c99ca59a
SM
1379=head1 FORMATTING SPECIFICATIONS
1380
724aa791
JC
1381For each line-style ('concise', 'terse', 'linenoise', etc.) there are
13823 format-specs which control how OPs are rendered.
1383
1384The first is the 'default' format, which is used in both basic and exec
1385modes to print all opcodes. The 2nd, goto-format, is used in exec
1386mode when branches are encountered. They're not real opcodes, and are
1387inserted to look like a closing curly brace. The tree-format is tree
1388specific.
1389
cc02ea56
JC
1390When a line is rendered, the correct format-spec is copied and scanned
1391for the following items; data is substituted in, and other
1392manipulations like basic indenting are done, for each opcode rendered.
1393
1394There are 3 kinds of items that may be populated; special patterns,
1395#vars, and literal text, which is copied verbatim. (Yes, it's a set
1396of s///g steps.)
1397
1398=head2 Special Patterns
1399
1400These items are the primitives used to perform indenting, and to
1401select text from amongst alternatives.
c99ca59a
SM
1402
1403=over 4
1404
1405=item B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>
1406
1407Generates I<exec_text> in exec mode, or I<basic_text> in basic mode.
1408
1409=item B<(*(>I<text>B<)*)>
1410
1411Generates one copy of I<text> for each indentation level.
1412
1413=item B<(*(>I<text1>B<;>I<text2>B<)*)>
1414
1415Generates one fewer copies of I<text1> than the indentation level, followed
1416by one copy of I<text2> if the indentation level is more than 0.
1417
1418=item B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>
1419
1420If the value of I<var> is true (not empty or zero), generates the
1421value of I<var> surrounded by I<text1> and I<Text2>, otherwise
1422nothing.
1423
cc02ea56
JC
1424=item B<~>
1425
1426Any number of tildes and surrounding whitespace will be collapsed to
1427a single space.
1428
1429=back
1430
1431=head2 # Variables
1432
1433These #vars represent opcode properties that you may want as part of
1434your rendering. The '#' is intended as a private sigil; a #var's
1435value is interpolated into the style-line, much like "read $this".
1436
1437These vars take 3 forms:
1438
1439=over 4
1440
c99ca59a
SM
1441=item B<#>I<var>
1442
cc02ea56
JC
1443A property named 'var' is assumed to exist for the opcodes, and is
1444interpolated into the rendering.
c99ca59a
SM
1445
1446=item B<#>I<var>I<N>
1447
cc02ea56
JC
1448Generates the value of I<var>, left justified to fill I<N> spaces.
1449Note that this means while you can have properties 'foo' and 'foo2',
1450you cannot render 'foo2', but you could with 'foo2a'. You would be
1451wise not to rely on this behavior going forward ;-)
c99ca59a 1452
cc02ea56 1453=item B<#>I<Var>
c99ca59a 1454
cc02ea56
JC
1455This ucfirst form of #var generates a tag-value form of itself for
1456display; it converts '#Var' into a 'Var => #var' style, which is then
1457handled as described above. (Imp-note: #Vars cannot be used for
1458conditional-fills, because the => #var transform is done after the check
1459for #Var's value).
c99ca59a
SM
1460
1461=back
1462
cc02ea56
JC
1463The following variables are 'defined' by B::Concise; when they are
1464used in a style, their respective values are plugged into the
1465rendering of each opcode.
1466
1467Only some of these are used by the standard styles, the others are
1468provided for you to delve into optree mechanics, should you wish to
1469add a new style (see L</add_style> below) that uses them. You can
00baac8f 1470also add new ones using L</add_callback>.
c99ca59a
SM
1471
1472=over 4
1473
1474=item B<#addr>
1475
cc02ea56 1476The address of the OP, in hexadecimal.
c99ca59a
SM
1477
1478=item B<#arg>
1479
1480The OP-specific information of the OP (such as the SV for an SVOP, the
cc02ea56 1481non-local exit pointers for a LOOP, etc.) enclosed in parentheses.
c99ca59a
SM
1482
1483=item B<#class>
1484
1485The B-determined class of the OP, in all caps.
1486
f8a679e6 1487=item B<#classsym>
c99ca59a
SM
1488
1489A single symbol abbreviating the class of the OP.
1490
c3caa09d
SM
1491=item B<#coplabel>
1492
1493The label of the statement or block the OP is the start of, if any.
1494
c99ca59a
SM
1495=item B<#exname>
1496
1497The name of the OP, or 'ex-foo' if the OP is a null that used to be a foo.
1498
1499=item B<#extarg>
1500
1501The target of the OP, or nothing for a nulled OP.
1502
1503=item B<#firstaddr>
1504
19e169bf 1505The address of the OP's first child, in hexadecimal.
c99ca59a
SM
1506
1507=item B<#flags>
1508
1509The OP's flags, abbreviated as a series of symbols.
1510
1511=item B<#flagval>
1512
1513The numeric value of the OP's flags.
1514
d5ec2987
NC
1515=item B<#hints>
1516
1517The COP's hint flags, rendered with abbreviated names if possible. An empty
4f948f3a
RGS
1518string if this is not a COP. Here are the symbols used:
1519
1520 $ strict refs
1521 & strict subs
1522 * strict vars
1523 i integers
1524 l locale
1525 b bytes
1526 [ arybase
1527 { block scope
1528 % localise %^H
1529 < open in
1530 > open out
1531 I overload int
1532 F overload float
1533 B overload binary
1534 S overload string
1535 R overload re
1536 T taint
1537 E eval
1538 X filetest access
1539 U utf-8
d5ec2987
NC
1540
1541=item B<#hintsval>
1542
1543The numeric value of the COP's hint flags, or an empty string if this is not
1544a COP.
1545
f8a679e6 1546=item B<#hyphseq>
c99ca59a
SM
1547
1548The sequence number of the OP, or a hyphen if it doesn't have one.
1549
1550=item B<#label>
1551
1552'NEXT', 'LAST', or 'REDO' if the OP is a target of one of those in exec
1553mode, or empty otherwise.
1554
1555=item B<#lastaddr>
1556
19e169bf 1557The address of the OP's last child, in hexadecimal.
c99ca59a
SM
1558
1559=item B<#name>
1560
1561The OP's name.
1562
1563=item B<#NAME>
1564
1565The OP's name, in all caps.
1566
1567=item B<#next>
1568
1569The sequence number of the OP's next OP.
1570
1571=item B<#nextaddr>
1572
19e169bf 1573The address of the OP's next OP, in hexadecimal.
c99ca59a
SM
1574
1575=item B<#noise>
1576
c27ea44e 1577A one- or two-character abbreviation for the OP's name.
c99ca59a
SM
1578
1579=item B<#private>
1580
1581The OP's private flags, rendered with abbreviated names if possible.
1582
1583=item B<#privval>
1584
1585The numeric value of the OP's private flags.
1586
1587=item B<#seq>
1588
2814eb74
PJ
1589The sequence number of the OP. Note that this is a sequence number
1590generated by B::Concise.
c99ca59a 1591
7252851f
NC
1592=item B<#seqnum>
1593
15945.8.x and earlier only. 5.9 and later do not provide this.
1595
1596The real sequence number of the OP, as a regular number and not adjusted
1597to be relative to the start of the real program. (This will generally be
1598a fairly large number because all of B<B::Concise> is compiled before
1599your program is).
1600
2814eb74 1601=item B<#opt>
c99ca59a 1602
2814eb74
PJ
1603Whether or not the op has been optimised by the peephole optimiser.
1604
7252851f
NC
1605Only available in 5.9 and later.
1606
c99ca59a
SM
1607=item B<#sibaddr>
1608
19e169bf 1609The address of the OP's next youngest sibling, in hexadecimal.
c99ca59a
SM
1610
1611=item B<#svaddr>
1612
19e169bf 1613The address of the OP's SV, if it has an SV, in hexadecimal.
c99ca59a
SM
1614
1615=item B<#svclass>
1616
1617The class of the OP's SV, if it has one, in all caps (e.g., 'IV').
1618
1619=item B<#svval>
1620
1621The value of the OP's SV, if it has one, in a short human-readable format.
1622
1623=item B<#targ>
1624
1625The numeric value of the OP's targ.
1626
1627=item B<#targarg>
1628
1629The name of the variable the OP's targ refers to, if any, otherwise the
1630letter t followed by the OP's targ in decimal.
1631
1632=item B<#targarglife>
1633
1634Same as B<#targarg>, but followed by the COP sequence numbers that delimit
1635the variable's lifetime (or 'end' for a variable in an open scope) for a
1636variable.
1637
1638=item B<#typenum>
1639
1640The numeric value of the OP's type, in decimal.
1641
1642=back
1643
f9f861ec
JC
1644=head1 One-Liner Command tips
1645
1646=over 4
1647
1648=item perl -MO=Concise,bar foo.pl
1649
1650Renders only bar() from foo.pl. To see main, drop the ',bar'. To see
1651both, add ',-main'
1652
1653=item perl -MDigest::MD5=md5 -MO=Concise,md5 -e1
1654
1655Identifies md5 as an XS function. The export is needed so that BC can
1656find it in main.
1657
1658=item perl -MPOSIX -MO=Concise,_POSIX_ARG_MAX -e1
1659
1660Identifies _POSIX_ARG_MAX as a constant sub, optimized to an IV.
1661Although POSIX isn't entirely consistent across platforms, this is
1662likely to be present in virtually all of them.
1663
1664=item perl -MPOSIX -MO=Concise,a -e 'print _POSIX_SAVED_IDS'
1665
1666This renders a print statement, which includes a call to the function.
1667It's identical to rendering a file with a use call and that single
1668statement, except for the filename which appears in the nextstate ops.
1669
1670=item perl -MPOSIX -MO=Concise,a -e 'sub a{_POSIX_SAVED_IDS}'
1671
1672This is B<very> similar to previous, only the first two ops differ. This
1673subroutine rendering is more representative, insofar as a single main
1674program will have many subs.
1675
6cc5d258
JC
1676=item perl -MB::Concise -e 'B::Concise::compile("-exec","-src", \%B::Concise::)->()'
1677
1678This renders all functions in the B::Concise package with the source
1679lines. It eschews the O framework so that the stashref can be passed
9e0f9750
JC
1680directly to B::Concise::compile(). See -stash option for a more
1681convenient way to render a package.
f9f861ec 1682
d5e42f17 1683=back
f9f861ec 1684
78ad9108
PJ
1685=head1 Using B::Concise outside of the O framework
1686
cc02ea56
JC
1687The common (and original) usage of B::Concise was for command-line
1688renderings of simple code, as given in EXAMPLE. But you can also use
1689B<B::Concise> from your code, and call compile() directly, and
724aa791 1690repeatedly. By doing so, you can avoid the compile-time only
cc02ea56
JC
1691operation of O.pm, and even use the debugger to step through
1692B::Concise::compile() itself.
f95e3c3c 1693
cc02ea56
JC
1694Once you're doing this, you may alter Concise output by adding new
1695rendering styles, and by optionally adding callback routines which
1696populate new variables, if such were referenced from those (just
1697added) styles.
f95e3c3c 1698
724aa791 1699=head2 Example: Altering Concise Renderings
78ad9108
PJ
1700
1701 use B::Concise qw(set_style add_callback);
cc02ea56 1702 add_style($yourStyleName => $defaultfmt, $gotofmt, $treefmt);
78ad9108 1703 add_callback
f95e3c3c
JC
1704 ( sub {
1705 my ($h, $op, $format, $level, $stylename) = @_;
78ad9108 1706 $h->{variable} = some_func($op);
cc02ea56
JC
1707 });
1708 $walker = B::Concise::compile(@options,@subnames,@subrefs);
1709 $walker->();
78ad9108 1710
f95e3c3c
JC
1711=head2 set_style()
1712
724aa791
JC
1713B<set_style> accepts 3 arguments, and updates the three format-specs
1714comprising a line-style (basic-exec, goto, tree). It has one minor
1715drawback though; it doesn't register the style under a new name. This
1716can become an issue if you render more than once and switch styles.
1717Thus you may prefer to use add_style() and/or set_style_standard()
1718instead.
1719
1720=head2 set_style_standard($name)
1721
1722This restores one of the standard line-styles: C<terse>, C<concise>,
1723C<linenoise>, C<debug>, C<env>, into effect. It also accepts style
1724names previously defined with add_style().
f95e3c3c
JC
1725
1726=head2 add_style()
78ad9108 1727
f95e3c3c
JC
1728This subroutine accepts a new style name and three style arguments as
1729above, and creates, registers, and selects the newly named style. It is
1730an error to re-add a style; call set_style_standard() to switch between
1731several styles.
1732
f95e3c3c
JC
1733=head2 add_callback()
1734
19e169bf
JC
1735If your newly minted styles refer to any new #variables, you'll need
1736to define a callback subroutine that will populate (or modify) those
1737variables. They are then available for use in the style you've
1738chosen.
f95e3c3c
JC
1739
1740The callbacks are called for each opcode visited by Concise, in the
1741same order as they are added. Each subroutine is passed five
1742parameters.
1743
1744 1. A hashref, containing the variable names and values which are
1745 populated into the report-line for the op
1746 2. the op, as a B<B::OP> object
1747 3. a reference to the format string
1748 4. the formatting (indent) level
1749 5. the selected stylename
78ad9108
PJ
1750
1751To define your own variables, simply add them to the hash, or change
1752existing values if you need to. The level and format are passed in as
1753references to scalars, but it is unlikely that they will need to be
1754changed or even used.
1755
724aa791 1756=head2 Running B::Concise::compile()
f95e3c3c
JC
1757
1758B<compile> accepts options as described above in L</OPTIONS>, and
1759arguments, which are either coderefs, or subroutine names.
1760
cc02ea56
JC
1761It constructs and returns a $treewalker coderef, which when invoked,
1762traverses, or walks, and renders the optrees of the given arguments to
1763STDOUT. You can reuse this, and can change the rendering style used
1764each time; thereafter the coderef renders in the new style.
f95e3c3c
JC
1765
1766B<walk_output> lets you change the print destination from STDOUT to
19e169bf
JC
1767another open filehandle, or into a string passed as a ref (unless
1768you've built perl with -Uuseperlio).
f95e3c3c 1769
cc02ea56 1770 my $walker = B::Concise::compile('-terse','aFuncName', \&aSubRef); # 1
f95e3c3c 1771 walk_output(\my $buf);
cc02ea56
JC
1772 $walker->(); # 1 renders -terse
1773 set_style_standard('concise'); # 2
1774 $walker->(); # 2 renders -concise
1775 $walker->(@new); # 3 renders whatever
1776 print "3 different renderings: terse, concise, and @new: $buf\n";
1777
1778When $walker is called, it traverses the subroutines supplied when it
1779was created, and renders them using the current style. You can change
1780the style afterwards in several different ways:
1781
1782 1. call C<compile>, altering style or mode/order
1783 2. call C<set_style_standard>
1784 3. call $walker, passing @new options
1785
1786Passing new options to the $walker is the easiest way to change
1787amongst any pre-defined styles (the ones you add are automatically
1788recognized as options), and is the only way to alter rendering order
1789without calling compile again. Note however that rendering state is
1790still shared amongst multiple $walker objects, so they must still be
1791used in a coordinated manner.
f95e3c3c
JC
1792
1793=head2 B::Concise::reset_sequence()
1794
1795This function (not exported) lets you reset the sequence numbers (note
1796that they're numbered arbitrarily, their goal being to be human
1797readable). Its purpose is mostly to support testing, i.e. to compare
1798the concise output from two identical anonymous subroutines (but
1799different instances). Without the reset, B::Concise, seeing that
1800they're separate optrees, generates different sequence numbers in
1801the output.
1802
1803=head2 Errors
1804
9a3b3024
JC
1805Errors in rendering (non-existent function-name, non-existent coderef)
1806are written to the STDOUT, or wherever you've set it via
1807walk_output().
31b49ad4 1808
9a3b3024
JC
1809Errors using the various *style* calls, and bad args to walk_output(),
1810result in die(). Use an eval if you wish to catch these errors and
1811continue processing.
78ad9108 1812
c99ca59a
SM
1813=head1 AUTHOR
1814
31b49ad4 1815Stephen McCamant, E<lt>smcc@CSUA.Berkeley.EDUE<gt>.
c99ca59a
SM
1816
1817=cut