Unify 5.008 and 5.009's B::Concise 0.56
[p5sagit/p5-mst-13.2.git] / ext / B / B / Concise.pm
CommitLineData
c99ca59a 1package B::Concise;
c27ea44e 2# Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.
c99ca59a 3# This program is free software; you can redistribute and/or modify it
4# under the same terms as Perl itself.
5
8ec8fbef 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 12use strict; # use #2
13use warnings; # uses #3 and #4, since warnings uses Carp
78ad9108 14
8ec8fbef 15use Exporter (); # use #5
16
f95e3c3c 17our $VERSION = "0.60";
78ad9108 18our @ISA = qw(Exporter);
31b49ad4 19our @EXPORT_OK = qw(set_style set_style_standard add_callback
f95e3c3c 20 concise_subref concise_cv concise_main
21 add_style walk_output);
78ad9108 22
8ec8fbef 23# use #6
c99ca59a 24use B qw(class ppname main_start main_root main_cv cstring svref_2object
6a077020 25 SVf_IOK SVf_NOK SVf_POK SVf_IVisUV SVf_FAKE OPf_KIDS OPf_SPECIAL
26 CVf_ANON);
c99ca59a 27
f95e3c3c 28my %style =
c99ca59a 29 ("terse" =>
c3caa09d 30 ["(?(#label =>\n)?)(*( )*)#class (#addr) #name (?([#targ])?) "
31 . "#svclass~(?((#svaddr))?)~#svval~(?(label \"#coplabel\")?)\n",
c99ca59a 32 "(*( )*)goto #class (#addr)\n",
33 "#class pp_#name"],
34 "concise" =>
35 ["#hyphseq2 (*( (x( ;)x))*)<#classsym> "
36 . "#exname#arg(?([#targarglife])?)~#flags(?(/#private)?)(x(;~->#next)x)\n",
37 " (*( )*) goto #seq\n",
38 "(?(<#seq>)?)#exname#arg(?([#targarglife])?)"],
39 "linenoise" =>
40 ["(x(;(*( )*))x)#noise#arg(?([#targarg])?)(x( ;\n)x)",
41 "gt_#seq ",
42 "(?(#seq)?)#noise#arg(?([#targarg])?)"],
43 "debug" =>
44 ["#class (#addr)\n\top_next\t\t#nextaddr\n\top_sibling\t#sibaddr\n\t"
2814eb74 45 . "op_ppaddr\tPL_ppaddr[OP_#NAME]\n\top_type\t\t#typenum\n"
46 . "\top_flags\t#flagval\n\top_private\t#privval\n"
c99ca59a 47 . "(?(\top_first\t#firstaddr\n)?)(?(\top_last\t\t#lastaddr\n)?)"
48 . "(?(\top_sv\t\t#svaddr\n)?)",
49 " GOTO #addr\n",
50 "#addr"],
51 "env" => [$ENV{B_CONCISE_FORMAT}, $ENV{B_CONCISE_GOTO_FORMAT},
52 $ENV{B_CONCISE_TREE_FORMAT}],
53 );
54
55my($format, $gotofmt, $treefmt);
56my $curcv;
c27ea44e 57my $cop_seq_base;
78ad9108 58my @callbacks;
f95e3c3c 59my $stylename;
78ad9108 60
61sub set_style {
62 ($format, $gotofmt, $treefmt) = @_;
f95e3c3c 63 die "expecting 3 style-format args\n" unless @_ == 3;
64}
65
66sub add_style {
67 my ($newstyle,@args) = @_;
68 die "style '$newstyle' already exists, choose a new name\n"
69 if exists $style{$newstyle};
70 die "expecting 3 style-format args\n" unless @args == 3;
71 $style{$newstyle} = [@args];
78ad9108 72}
73
31b49ad4 74sub set_style_standard {
f95e3c3c 75 ($stylename) = @_;
76 die "err: style '$stylename' unknown\n" unless exists $style{$stylename};
77 set_style(@{$style{$stylename}});
31b49ad4 78}
79
78ad9108 80sub add_callback {
81 push @callbacks, @_;
82}
c99ca59a 83
f95e3c3c 84# output handle, used with all Concise-output printing
85our $walkHandle = \*STDOUT; # public for your convenience
86
87sub walk_output { # updates $walkHandle
88 my $handle = shift;
89 if (ref $handle eq 'SCALAR') {
90 # in 5.8+, open(FILEHANDLE,MODE,REFERENCE) writes to string
91 open my $tmp, '>', $handle; # but cant re-set an existing filehandle
92 $walkHandle = $tmp; # so use my $tmp as intermediate var
93 return;
94 }
95 $walkHandle = $handle;
96 my $iotype = ref $walkHandle;
97 die "expecting argument/object that can print\n"
98 unless $iotype eq 'GLOB' or $iotype and $walkHandle->can('print');
99}
100
8ec8fbef 101sub concise_subref {
f95e3c3c 102 my($order, $coderef) = @_;
103 my $codeobj = svref_2object($coderef);
104 die "err: not a coderef: $coderef\n" unless ref $codeobj eq 'B::CV';#CODE';
105 concise_cv_obj($order, $codeobj);
8ec8fbef 106}
107
108# This should have been called concise_subref, but it was exported
109# under this name in versions before 0.56
110sub concise_cv { concise_subref(@_); }
111
112sub concise_cv_obj {
113 my ($order, $cv) = @_;
c99ca59a 114 $curcv = $cv;
f95e3c3c 115 die "err: coderef has no START\n" if class($cv->START) eq "NULL";
c27ea44e 116 sequence($cv->START);
c99ca59a 117 if ($order eq "exec") {
118 walk_exec($cv->START);
119 } elsif ($order eq "basic") {
120 walk_topdown($cv->ROOT, sub { $_[0]->concise($_[1]) }, 0);
121 } else {
f95e3c3c 122 print $walkHandle tree($cv->ROOT, 0);
c99ca59a 123 }
124}
125
31b49ad4 126sub concise_main {
127 my($order) = @_;
128 sequence(main_start);
129 $curcv = main_cv;
130 if ($order eq "exec") {
131 return if class(main_start) eq "NULL";
132 walk_exec(main_start);
133 } elsif ($order eq "tree") {
134 return if class(main_root) eq "NULL";
f95e3c3c 135 print $walkHandle tree(main_root, 0);
31b49ad4 136 } elsif ($order eq "basic") {
137 return if class(main_root) eq "NULL";
138 walk_topdown(main_root,
139 sub { $_[0]->concise($_[1]) }, 0);
140 }
141}
142
8ec8fbef 143sub concise_specials {
144 my($name, $order, @cv_s) = @_;
145 my $i = 1;
146 if ($name eq "BEGIN") {
147 splice(@cv_s, 0, 7); # skip 7 BEGIN blocks in this file
148 } elsif ($name eq "CHECK") {
149 pop @cv_s; # skip the CHECK block that calls us
150 }
f95e3c3c 151 for my $cv (@cv_s) {
152 print $walkHandle "$name $i:\n";
8ec8fbef 153 $i++;
154 concise_cv_obj($order, $cv);
155 }
156}
157
c99ca59a 158my $start_sym = "\e(0"; # "\cN" sometimes also works
159my $end_sym = "\e(B"; # "\cO" respectively
160
f95e3c3c 161my @tree_decorations =
c99ca59a 162 ([" ", "--", "+-", "|-", "| ", "`-", "-", 1],
163 [" ", "-", "+", "+", "|", "`", "", 0],
164 [" ", map("$start_sym$_$end_sym", "qq", "wq", "tq", "x ", "mq", "q"), 1],
165 [" ", map("$start_sym$_$end_sym", "q", "w", "t", "x", "m"), "", 0],
166 );
167my $tree_style = 0;
168
169my $base = 36;
170my $big_endian = 1;
171
172my $order = "basic";
173
31b49ad4 174set_style_standard("concise");
78ad9108 175
c99ca59a 176sub compile {
177 my @options = grep(/^-/, @_);
178 my @args = grep(!/^-/, @_);
179 my $do_main = 0;
c99ca59a 180 for my $o (@options) {
181 if ($o eq "-basic") {
182 $order = "basic";
183 } elsif ($o eq "-exec") {
184 $order = "exec";
185 } elsif ($o eq "-tree") {
186 $order = "tree";
187 } elsif ($o eq "-compact") {
188 $tree_style |= 1;
189 } elsif ($o eq "-loose") {
190 $tree_style &= ~1;
191 } elsif ($o eq "-vt") {
192 $tree_style |= 2;
193 } elsif ($o eq "-ascii") {
194 $tree_style &= ~2;
195 } elsif ($o eq "-main") {
196 $do_main = 1;
197 } elsif ($o =~ /^-base(\d+)$/) {
198 $base = $1;
199 } elsif ($o eq "-bigendian") {
200 $big_endian = 1;
201 } elsif ($o eq "-littleendian") {
202 $big_endian = 0;
203 } elsif (exists $style{substr($o, 1)}) {
f95e3c3c 204 $stylename = substr($o, 1);
205 set_style(@{$style{$stylename}});
c99ca59a 206 } else {
207 warn "Option $o unrecognized";
208 }
209 }
c27ea44e 210 return sub {
211 if (@args) {
c99ca59a 212 for my $objname (@args) {
8ec8fbef 213 if ($objname eq "BEGIN") {
214 concise_specials("BEGIN", $order,
215 B::begin_av->isa("B::AV") ?
216 B::begin_av->ARRAY : ());
217 } elsif ($objname eq "INIT") {
218 concise_specials("INIT", $order,
219 B::init_av->isa("B::AV") ?
220 B::init_av->ARRAY : ());
221 } elsif ($objname eq "CHECK") {
222 concise_specials("CHECK", $order,
223 B::check_av->isa("B::AV") ?
224 B::check_av->ARRAY : ());
225 } elsif ($objname eq "END") {
226 concise_specials("END", $order,
227 B::end_av->isa("B::AV") ?
228 B::end_av->ARRAY : ());
229 } else {
f95e3c3c 230 # convert function names to subrefs
231 my $objref;
232 if (ref $objname) {
233 print $walkHandle "B::Concise::compile($objname)\n";
234 $objref = $objname;
235 } else {
236 $objname = "main::" . $objname unless $objname =~ /::/;
237 print $walkHandle "$objname:\n";
238 no strict 'refs';
239 die "err: unknown function ($objname)\n"
240 unless *{$objname}{CODE};
241 $objref = \&$objname;
242 }
243 concise_subref($order, $objref);
8ec8fbef 244 }
c99ca59a 245 }
246 }
c27ea44e 247 if (!@args or $do_main) {
f95e3c3c 248 print $walkHandle "main program:\n" if $do_main;
31b49ad4 249 concise_main($order);
c99ca59a 250 }
251 }
252}
253
254my %labels;
255my $lastnext;
256
257my %opclass = ('OP' => "0", 'UNOP' => "1", 'BINOP' => "2", 'LOGOP' => "|",
258 'LISTOP' => "@", 'PMOP' => "/", 'SVOP' => "\$", 'GVOP' => "*",
051f02e9 259 'PVOP' => '"', 'LOOP' => "{", 'COP' => ";", 'PADOP' => "#");
c99ca59a 260
8ec8fbef 261no warnings 'qw'; # "Possible attempt to put comments..."; use #7
35fc55f1 262my @linenoise =
263 qw'# () sc ( @? 1 $* gv *{ m$ m@ m% m? p/ *$ $ $# & a& pt \\ s\\ rf bl
c99ca59a 264 ` *? <> ?? ?/ r/ c/ // qr s/ /c y/ = @= C sC Cp sp df un BM po +1 +I
265 -1 -I 1+ I+ 1- I- ** * i* / i/ %$ i% x + i+ - i- . " << >> < i<
266 > i> <= i, >= i. == i= != i! <? i? s< s> s, s. s= s! s? b& b^ b| -0 -i
267 ! ~ a2 si cs rd sr e^ lg sq in %x %o ab le ss ve ix ri sf FL od ch cy
268 uf lf uc lc qm @ [f [ @[ eh vl ky dl ex % ${ @{ uk pk st jn ) )[ a@
269 a% sl +] -] [- [+ so rv GS GW MS MW .. f. .f && || ^^ ?: &= |= -> s{ s}
270 v} ca wa di rs ;; ; ;d }{ { } {} f{ it {l l} rt }l }n }r dm }g }e ^o
271 ^c ^| ^# um bm t~ u~ ~d DB db ^s se ^g ^r {w }w pf pr ^O ^K ^R ^W ^d ^v
272 ^e ^t ^k t. fc ic fl .s .p .b .c .l .a .h g1 s1 g2 s2 ?. l? -R -W -X -r
273 -w -x -e -o -O -z -s -M -A -C -S -c -b -f -d -p -l -u -g -k -t -T -B cd
274 co cr u. cm ut r. l@ s@ r@ mD uD oD rD tD sD wD cD f$ w$ p$ sh e$ k$ g3
275 g4 s4 g5 s5 T@ C@ L@ G@ A@ S@ Hg Hc Hr Hw Mg Mc Ms Mr Sg Sc So rq do {e
276 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 277 Pu GP SP EP Gn Gg GG SG EG g0 c$ lk t$ ;s n> // /= CO';
c99ca59a 278
279my $chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
280
281sub op_flags {
282 my($x) = @_;
283 my(@v);
284 push @v, "v" if ($x & 3) == 1;
285 push @v, "s" if ($x & 3) == 2;
286 push @v, "l" if ($x & 3) == 3;
287 push @v, "K" if $x & 4;
288 push @v, "P" if $x & 8;
289 push @v, "R" if $x & 16;
290 push @v, "M" if $x & 32;
291 push @v, "S" if $x & 64;
292 push @v, "*" if $x & 128;
293 return join("", @v);
294}
295
296sub base_n {
297 my $x = shift;
298 return "-" . base_n(-$x) if $x < 0;
299 my $str = "";
300 do { $str .= substr($chars, $x % $base, 1) } while $x = int($x / $base);
301 $str = reverse $str if $big_endian;
302 return $str;
303}
304
c27ea44e 305my %sequence_num;
306my $seq_max = 1;
307
f95e3c3c 308sub reset_sequence {
309 # reset the sequence
310 %sequence_num = ();
311 $seq_max = 1;
312}
313
c27ea44e 314sub seq {
315 my($op) = @_;
316 return "-" if not exists $sequence_num{$$op};
317 return base_n($sequence_num{$$op});
318}
c99ca59a 319
320sub walk_topdown {
321 my($op, $sub, $level) = @_;
322 $sub->($op, $level);
323 if ($op->flags & OPf_KIDS) {
324 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
325 walk_topdown($kid, $sub, $level + 1);
326 }
327 }
c6e79e55 328 if (class($op) eq "PMOP") {
329 my $maybe_root = $op->pmreplroot;
330 if (ref($maybe_root) and $maybe_root->isa("B::OP")) {
331 # It really is the root of the replacement, not something
332 # else stored here for lack of space elsewhere
333 walk_topdown($maybe_root, $sub, $level + 1);
334 }
c99ca59a 335 }
336}
337
338sub walklines {
339 my($ar, $level) = @_;
340 for my $l (@$ar) {
341 if (ref($l) eq "ARRAY") {
342 walklines($l, $level + 1);
343 } else {
344 $l->concise($level);
345 }
346 }
347}
348
349sub walk_exec {
350 my($top, $level) = @_;
351 my %opsseen;
352 my @lines;
353 my @todo = ([$top, \@lines]);
354 while (@todo and my($op, $targ) = @{shift @todo}) {
355 for (; $$op; $op = $op->next) {
356 last if $opsseen{$$op}++;
357 push @$targ, $op;
358 my $name = $op->name;
62e36f8a 359 if (class($op) eq "LOGOP") {
c99ca59a 360 my $ar = [];
361 push @$targ, $ar;
362 push @todo, [$op->other, $ar];
363 } elsif ($name eq "subst" and $ {$op->pmreplstart}) {
364 my $ar = [];
365 push @$targ, $ar;
366 push @todo, [$op->pmreplstart, $ar];
367 } elsif ($name =~ /^enter(loop|iter)$/) {
2814eb74 368 $labels{${$op->nextop}} = "NEXT";
369 $labels{${$op->lastop}} = "LAST";
370 $labels{${$op->redoop}} = "REDO";
c99ca59a 371 }
372 }
373 }
374 walklines(\@lines, 0);
375}
376
c27ea44e 377# The structure of this routine is purposely modeled after op.c's peep()
378sub sequence {
379 my($op) = @_;
380 my $oldop = 0;
381 return if class($op) eq "NULL" or exists $sequence_num{$$op};
382 for (; $$op; $op = $op->next) {
383 last if exists $sequence_num{$$op};
384 my $name = $op->name;
385 if ($name =~ /^(null|scalar|lineseq|scope)$/) {
386 next if $oldop and $ {$op->next};
387 } else {
388 $sequence_num{$$op} = $seq_max++;
389 if (class($op) eq "LOGOP") {
390 my $other = $op->other;
391 $other = $other->next while $other->name eq "null";
392 sequence($other);
393 } elsif (class($op) eq "LOOP") {
394 my $redoop = $op->redoop;
395 $redoop = $redoop->next while $redoop->name eq "null";
396 sequence($redoop);
397 my $nextop = $op->nextop;
398 $nextop = $nextop->next while $nextop->name eq "null";
399 sequence($nextop);
400 my $lastop = $op->lastop;
401 $lastop = $lastop->next while $lastop->name eq "null";
402 sequence($lastop);
403 } elsif ($name eq "subst" and $ {$op->pmreplstart}) {
404 my $replstart = $op->pmreplstart;
405 $replstart = $replstart->next while $replstart->name eq "null";
406 sequence($replstart);
407 }
408 }
409 $oldop = $op;
410 }
411}
412
c99ca59a 413sub fmt_line {
f95e3c3c 414 my($hr, $text, $level) = @_;
415 return '' if $hr->{SKIP}; # another way to suppress lines of output
416
c99ca59a 417 $text =~ s/\(\?\(([^\#]*?)\#(\w+)([^\#]*?)\)\?\)/
f95e3c3c 418 $hr->{$2} ? $1.$hr->{$2}.$3 : ""/eg;
419
c99ca59a 420 $text =~ s/\(x\((.*?);(.*?)\)x\)/$order eq "exec" ? $1 : $2/egs;
421 $text =~ s/\(\*\(([^;]*?)\)\*\)/$1 x $level/egs;
422 $text =~ s/\(\*\((.*?);(.*?)\)\*\)/$1 x ($level - 1) . $2 x ($level>0)/egs;
423 $text =~ s/#([a-zA-Z]+)(\d+)/sprintf("%-$2s", $hr->{$1})/eg;
424 $text =~ s/#([a-zA-Z]+)/$hr->{$1}/eg;
425 $text =~ s/[ \t]*~+[ \t]*/ /g;
f95e3c3c 426 chomp $text;
427 return "$text\n" if $text ne "";
428 return $text; # suppress empty lines
c99ca59a 429}
430
431my %priv;
432$priv{$_}{128} = "LVINTRO"
433 for ("pos", "substr", "vec", "threadsv", "gvsv", "rv2sv", "rv2hv", "rv2gv",
434 "rv2av", "rv2arylen", "aelem", "helem", "aslice", "hslice", "padsv",
241416b8 435 "padav", "padhv", "enteriter");
c99ca59a 436$priv{$_}{64} = "REFC" for ("leave", "leavesub", "leavesublv", "leavewrite");
437$priv{"aassign"}{64} = "COMMON";
4ac6efe6 438$priv{"aassign"}{32} = "PHASH" if $] < 5.009;
c99ca59a 439$priv{"sassign"}{64} = "BKWARD";
440$priv{$_}{64} = "RTIME" for ("match", "subst", "substcont");
441@{$priv{"trans"}}{1,2,4,8,16,64} = ("<UTF", ">UTF", "IDENT", "SQUASH", "DEL",
442 "COMPL", "GROWS");
443$priv{"repeat"}{64} = "DOLIST";
444$priv{"leaveloop"}{64} = "CONT";
445@{$priv{$_}}{32,64,96} = ("DREFAV", "DREFHV", "DREFSV")
446 for ("entersub", map("rv2${_}v", "a", "s", "h", "g"), "aelem", "helem");
447$priv{"entersub"}{16} = "DBG";
448$priv{"entersub"}{32} = "TARG";
449@{$priv{$_}}{4,8,128} = ("INARGS","AMPER","NO()") for ("entersub", "rv2cv");
450$priv{"gv"}{32} = "EARLYCV";
451$priv{"aelem"}{16} = $priv{"helem"}{16} = "LVDEFER";
241416b8 452$priv{$_}{16} = "OURINTR" for ("gvsv", "rv2sv", "rv2av", "rv2hv", "r2gv",
453 "enteriter");
c99ca59a 454$priv{$_}{16} = "TARGMY"
455 for (map(($_,"s$_"),"chop", "chomp"),
456 map(($_,"i_$_"), "postinc", "postdec", "multiply", "divide", "modulo",
457 "add", "subtract", "negate"), "pow", "concat", "stringify",
458 "left_shift", "right_shift", "bit_and", "bit_xor", "bit_or",
459 "complement", "atan2", "sin", "cos", "rand", "exp", "log", "sqrt",
460 "int", "hex", "oct", "abs", "length", "index", "rindex", "sprintf",
461 "ord", "chr", "crypt", "quotemeta", "join", "push", "unshift", "flock",
462 "chdir", "chown", "chroot", "unlink", "chmod", "utime", "rename",
463 "link", "symlink", "mkdir", "rmdir", "wait", "waitpid", "system",
464 "exec", "kill", "getppid", "getpgrp", "setpgrp", "getpriority",
465 "setpriority", "time", "sleep");
7a9b44b9 466@{$priv{"const"}}{8,16,32,64,128} = ("STRICT","ENTERED", '$[', "BARE", "WARN");
c99ca59a 467$priv{"flip"}{64} = $priv{"flop"}{64} = "LINENUM";
468$priv{"list"}{64} = "GUESSED";
469$priv{"delete"}{64} = "SLICE";
470$priv{"exists"}{64} = "SUB";
471$priv{$_}{64} = "LOCALE"
472 for ("sort", "prtf", "sprintf", "slt", "sle", "seq", "sne", "sgt", "sge",
473 "scmp", "lc", "uc", "lcfirst", "ucfirst");
2b6e98cb 474@{$priv{"sort"}}{1,2,4,8} = ("NUM", "INT", "REV", "INPLACE");
c99ca59a 475$priv{"threadsv"}{64} = "SVREFd";
c27ea44e 476@{$priv{$_}}{16,32,64,128} = ("INBIN","INCR","OUTBIN","OUTCR")
477 for ("open", "backtick");
c99ca59a 478$priv{"exit"}{128} = "VMS";
feaeca78 479$priv{$_}{2} = "FTACCESS"
480 for ("ftrread", "ftrwrite", "ftrexec", "fteread", "ftewrite", "fteexec");
fbb0b3b3 481$priv{$_}{4} = "FTSTACKED"
482 for ("ftrread", "ftrwrite", "ftrexec", "fteread", "ftewrite", "fteexec",
483 "ftis", "fteowned", "ftrowned", "ftzero", "ftsize", "ftmtime",
484 "ftatime", "ftctime", "ftsock", "ftchr", "ftblk", "ftfile", "ftdir",
485 "ftpipe", "ftlink", "ftsuid", "ftsgid", "ftsvtx", "fttty", "fttext",
486 "ftbinary");
bf2b43ff 487$priv{$_}{2} = "GREPLEX"
488 for ("mapwhile", "mapstart", "grepwhile", "grepstart");
c99ca59a 489
490sub private_flags {
491 my($name, $x) = @_;
492 my @s;
493 for my $flag (128, 96, 64, 32, 16, 8, 4, 2, 1) {
494 if ($priv{$name}{$flag} and $x & $flag and $x >= $flag) {
495 $x -= $flag;
496 push @s, $priv{$name}{$flag};
497 }
498 }
499 push @s, $x if $x;
500 return join(",", @s);
501}
502
c27ea44e 503sub concise_sv {
504 my($sv, $hr) = @_;
505 $hr->{svclass} = class($sv);
31b49ad4 506 $hr->{svclass} = "UV"
507 if $hr->{svclass} eq "IV" and $sv->FLAGS & SVf_IVisUV;
c27ea44e 508 $hr->{svaddr} = sprintf("%#x", $$sv);
509 if ($hr->{svclass} eq "GV") {
510 my $gv = $sv;
511 my $stash = $gv->STASH->NAME;
512 if ($stash eq "main") {
513 $stash = "";
514 } else {
515 $stash = $stash . "::";
516 }
517 $hr->{svval} = "*$stash" . $gv->SAFENAME;
518 return "*$stash" . $gv->SAFENAME;
519 } else {
520 while (class($sv) eq "RV") {
521 $hr->{svval} .= "\\";
522 $sv = $sv->RV;
523 }
524 if (class($sv) eq "SPECIAL") {
40b5b14f 525 $hr->{svval} .= ["Null", "sv_undef", "sv_yes", "sv_no"]->[$$sv];
c27ea44e 526 } elsif ($sv->FLAGS & SVf_NOK) {
40b5b14f 527 $hr->{svval} .= $sv->NV;
c27ea44e 528 } elsif ($sv->FLAGS & SVf_IOK) {
31b49ad4 529 $hr->{svval} .= $sv->int_value;
c27ea44e 530 } elsif ($sv->FLAGS & SVf_POK) {
40b5b14f 531 $hr->{svval} .= cstring($sv->PV);
31b49ad4 532 } elsif (class($sv) eq "HV") {
533 $hr->{svval} .= 'HASH';
c27ea44e 534 }
535 return $hr->{svclass} . " " . $hr->{svval};
536 }
537}
538
c99ca59a 539sub concise_op {
540 my ($op, $level, $format) = @_;
541 my %h;
542 $h{exname} = $h{name} = $op->name;
543 $h{NAME} = uc $h{name};
544 $h{class} = class($op);
545 $h{extarg} = $h{targ} = $op->targ;
546 $h{extarg} = "" unless $h{extarg};
547 if ($h{name} eq "null" and $h{targ}) {
8ec8fbef 548 # targ holds the old type
c99ca59a 549 $h{exname} = "ex-" . substr(ppname($h{targ}), 3);
550 $h{extarg} = "";
8ec8fbef 551 } elsif ($op->name =~ /^leave(sub(lv)?|write)?$/) {
552 # targ potentially holds a reference count
553 if ($op->private & 64) {
554 my $refs = "ref" . ($h{targ} != 1 ? "s" : "");
555 $h{targarglife} = $h{targarg} = "$h{targ} $refs";
556 }
c99ca59a 557 } elsif ($h{targ}) {
558 my $padname = (($curcv->PADLIST->ARRAY)[0]->ARRAY)[$h{targ}];
559 if (defined $padname and class($padname) ne "SPECIAL") {
0b40bd6d 560 $h{targarg} = $padname->PVX;
127212b2 561 if ($padname->FLAGS & SVf_FAKE) {
4ac6efe6 562 if ($] < 5.009) {
563 $h{targarglife} = "$h{targarg}:FAKE";
564 } else {
565 # These changes relate to the jumbo closure fix.
566 # See changes 19939 and 20005
567 my $fake = '';
568 $fake .= 'a' if $padname->IVX & 1; # PAD_FAKELEX_ANON
569 $fake .= 'm' if $padname->IVX & 2; # PAD_FAKELEX_MULTI
570 $fake .= ':' . $padname->NVX if $curcv->CvFLAGS & CVf_ANON;
571 $h{targarglife} = "$h{targarg}:FAKE:$fake";
572 }
127212b2 573 }
574 else {
575 my $intro = $padname->NVX - $cop_seq_base;
576 my $finish = int($padname->IVX) - $cop_seq_base;
577 $finish = "end" if $finish == 999999999 - $cop_seq_base;
578 $h{targarglife} = "$h{targarg}:$intro,$finish";
579 }
c99ca59a 580 } else {
581 $h{targarglife} = $h{targarg} = "t" . $h{targ};
582 }
583 }
584 $h{arg} = "";
585 $h{svclass} = $h{svaddr} = $h{svval} = "";
586 if ($h{class} eq "PMOP") {
587 my $precomp = $op->precomp;
7a9b44b9 588 if (defined $precomp) {
c27ea44e 589 $precomp = cstring($precomp); # Escape literal control sequences
590 $precomp = "/$precomp/";
591 } else {
592 $precomp = "";
7a9b44b9 593 }
b2a3cfdd 594 my $pmreplroot = $op->pmreplroot;
34a48b4b 595 my $pmreplstart;
c6e79e55 596 if (ref($pmreplroot) eq "B::GV") {
b2a3cfdd 597 # with C<@stash_array = split(/pat/, str);>,
c6e79e55 598 # *stash_array is stored in /pat/'s pmreplroot.
b2a3cfdd 599 $h{arg} = "($precomp => \@" . $pmreplroot->NAME . ")";
c6e79e55 600 } elsif (!ref($pmreplroot) and $pmreplroot) {
601 # same as the last case, except the value is actually a
602 # pad offset for where the GV is kept (this happens under
603 # ithreads)
604 my $gv = (($curcv->PADLIST->ARRAY)[1]->ARRAY)[$pmreplroot];
605 $h{arg} = "($precomp => \@" . $gv->NAME . ")";
b2a3cfdd 606 } elsif ($ {$op->pmreplstart}) {
c99ca59a 607 undef $lastnext;
608 $pmreplstart = "replstart->" . seq($op->pmreplstart);
609 $h{arg} = "(" . join(" ", $precomp, $pmreplstart) . ")";
610 } else {
611 $h{arg} = "($precomp)";
612 }
613 } elsif ($h{class} eq "PVOP" and $h{name} ne "trans") {
614 $h{arg} = '("' . $op->pv . '")';
615 $h{svval} = '"' . $op->pv . '"';
616 } elsif ($h{class} eq "COP") {
617 my $label = $op->label;
c3caa09d 618 $h{coplabel} = $label;
c99ca59a 619 $label = $label ? "$label: " : "";
620 my $loc = $op->file;
621 $loc =~ s[.*/][];
622 $loc .= ":" . $op->line;
623 my($stash, $cseq) = ($op->stash->NAME, $op->cop_seq - $cop_seq_base);
624 my $arybase = $op->arybase;
625 $arybase = $arybase ? ' $[=' . $arybase : "";
626 $h{arg} = "($label$stash $cseq $loc$arybase)";
627 } elsif ($h{class} eq "LOOP") {
628 $h{arg} = "(next->" . seq($op->nextop) . " last->" . seq($op->lastop)
629 . " redo->" . seq($op->redoop) . ")";
630 } elsif ($h{class} eq "LOGOP") {
631 undef $lastnext;
632 $h{arg} = "(other->" . seq($op->other) . ")";
633 } elsif ($h{class} eq "SVOP") {
6a077020 634 unless ($h{name} eq 'aelemfast' and $op->flags & OPf_SPECIAL) {
635 if (! ${$op->sv}) {
636 my $sv = (($curcv->PADLIST->ARRAY)[1]->ARRAY)[$op->targ];
637 $h{arg} = "[" . concise_sv($sv, \%h) . "]";
638 $h{targarglife} = $h{targarg} = "";
639 } else {
640 $h{arg} = "(" . concise_sv($op->sv, \%h) . ")";
641 }
c99ca59a 642 }
31b49ad4 643 } elsif ($h{class} eq "PADOP") {
644 my $sv = (($curcv->PADLIST->ARRAY)[1]->ARRAY)[$op->padix];
645 $h{arg} = "[" . concise_sv($sv, \%h) . "]";
c99ca59a 646 }
647 $h{seq} = $h{hyphseq} = seq($op);
648 $h{seq} = "" if $h{seq} eq "-";
2814eb74 649 $h{opt} = $op->opt;
650 $h{static} = $op->static;
c99ca59a 651 $h{next} = $op->next;
652 $h{next} = (class($h{next}) eq "NULL") ? "(end)" : seq($h{next});
653 $h{nextaddr} = sprintf("%#x", $ {$op->next});
654 $h{sibaddr} = sprintf("%#x", $ {$op->sibling});
655 $h{firstaddr} = sprintf("%#x", $ {$op->first}) if $op->can("first");
656 $h{lastaddr} = sprintf("%#x", $ {$op->last}) if $op->can("last");
657
658 $h{classsym} = $opclass{$h{class}};
659 $h{flagval} = $op->flags;
660 $h{flags} = op_flags($op->flags);
661 $h{privval} = $op->private;
662 $h{private} = private_flags($h{name}, $op->private);
663 $h{addr} = sprintf("%#x", $$op);
2814eb74 664 $h{label} = $labels{$$op};
c99ca59a 665 $h{typenum} = $op->type;
666 $h{noise} = $linenoise[$op->type];
f95e3c3c 667
668 $_->(\%h, $op, \$format, \$level, $stylename) for @callbacks;
c99ca59a 669 return fmt_line(\%h, $format, $level);
670}
671
672sub B::OP::concise {
673 my($op, $level) = @_;
674 if ($order eq "exec" and $lastnext and $$lastnext != $$op) {
675 my $h = {"seq" => seq($lastnext), "class" => class($lastnext),
676 "addr" => sprintf("%#x", $$lastnext)};
f95e3c3c 677 print $walkHandle fmt_line($h, $gotofmt, $level+1);
c99ca59a 678 }
679 $lastnext = $op->next;
f95e3c3c 680 print $walkHandle concise_op($op, $level, $format);
c99ca59a 681}
682
31b49ad4 683# B::OP::terse (see Terse.pm) now just calls this
684sub b_terse {
685 my($op, $level) = @_;
686
687 # This isn't necessarily right, but there's no easy way to get
688 # from an OP to the right CV. This is a limitation of the
689 # ->terse() interface style, and there isn't much to do about
690 # it. In particular, we can die in concise_op if the main pad
691 # isn't long enough, or has the wrong kind of entries, compared to
692 # the pad a sub was compiled with. The fix for that would be to
693 # make a backwards compatible "terse" format that never even
694 # looked at the pad, just like the old B::Terse. I don't think
695 # that's worth the effort, though.
696 $curcv = main_cv unless $curcv;
697
698 if ($order eq "exec" and $lastnext and $$lastnext != $$op) {
699 my $h = {"seq" => seq($lastnext), "class" => class($lastnext),
700 "addr" => sprintf("%#x", $$lastnext)};
701 print fmt_line($h, $style{"terse"}[1], $level+1);
702 }
703 $lastnext = $op->next;
704 print concise_op($op, $level, $style{"terse"}[0]);
705}
706
c99ca59a 707sub tree {
708 my $op = shift;
709 my $level = shift;
710 my $style = $tree_decorations[$tree_style];
711 my($space, $single, $kids, $kid, $nokid, $last, $lead, $size) = @$style;
712 my $name = concise_op($op, $level, $treefmt);
713 if (not $op->flags & OPf_KIDS) {
714 return $name . "\n";
715 }
716 my @lines;
717 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) {
718 push @lines, tree($kid, $level+1);
719 }
720 my $i;
721 for ($i = $#lines; substr($lines[$i], 0, 1) eq " "; $i--) {
722 $lines[$i] = $space . $lines[$i];
723 }
724 if ($i > 0) {
725 $lines[$i] = $last . $lines[$i];
726 while ($i-- > 1) {
727 if (substr($lines[$i], 0, 1) eq " ") {
728 $lines[$i] = $nokid . $lines[$i];
729 } else {
f95e3c3c 730 $lines[$i] = $kid . $lines[$i];
c99ca59a 731 }
732 }
733 $lines[$i] = $kids . $lines[$i];
734 } else {
735 $lines[0] = $single . $lines[0];
736 }
737 return("$name$lead" . shift @lines,
738 map(" " x (length($name)+$size) . $_, @lines));
739}
740
213a1a26 741# *** Warning: fragile kludge ahead ***
742# Because the B::* modules run in the same interpreter as the code
2814eb74 743# they're compiling, their presence tends to distort the view we have of
744# the code we're looking at. In particular, perl gives sequence numbers
745# to COPs. If the program we're looking at were run on its own, this
746# would start at 1. Because all of B::Concise and all the modules it
747# uses are compiled first, though, by the time we get to the user's
748# program the sequence number is already pretty high, which could be
749# distracting if you're trying to tell OPs apart. Therefore we'd like to
750# subtract an offset from all the sequence numbers we display, to
751# restore the simpler view of the world. The trick is to know what that
752# offset will be, when we're still compiling B::Concise! If we
213a1a26 753# hardcoded a value, it would have to change every time B::Concise or
2814eb74 754# other modules we use do. To help a little, what we do here is compile
755# a little code at the end of the module, and compute the base sequence
756# number for the user's program as being a small offset later, so all we
757# have to worry about are changes in the offset.
f95e3c3c 758
213a1a26 759# When you say "perl -MO=Concise -e '$a'", the output should look like:
760
761# 4 <@> leave[t1] vKP/REFC ->(end)
762# 1 <0> enter ->2
763 #^ smallest OP sequence number should be 1
764# 2 <;> nextstate(main 1 -e:1) v ->3
765 # ^ smallest COP sequence number should be 1
766# - <1> ex-rv2sv vK/1 ->4
767# 3 <$> gvsv(*a) s ->4
768
c27ea44e 769# If the second of the marked numbers there isn't 1, it means you need
770# to update the corresponding magic number in the next line.
771# Remember, this needs to stay the last things in the module.
e69a2255 772
c27ea44e 773# Why is this different for MacOS? Does it matter?
8ec8fbef 774my $cop_seq_mnum = $^O eq 'MacOS' ? 12 : 11;
e69a2255 775$cop_seq_base = svref_2object(eval 'sub{0;}')->START->cop_seq + $cop_seq_mnum;
c99ca59a 776
7771;
778
779__END__
780
781=head1 NAME
782
783B::Concise - Walk Perl syntax tree, printing concise info about ops
784
785=head1 SYNOPSIS
786
787 perl -MO=Concise[,OPTIONS] foo.pl
788
78ad9108 789 use B::Concise qw(set_style add_callback);
790
c99ca59a 791=head1 DESCRIPTION
792
793This compiler backend prints the internal OPs of a Perl program's syntax
794tree in one of several space-efficient text formats suitable for debugging
795the inner workings of perl or other compiler backends. It can print OPs in
796the order they appear in the OP tree, in the order they will execute, or
797in a text approximation to their tree structure, and the format of the
798information displyed is customizable. Its function is similar to that of
799perl's B<-Dx> debugging flag or the B<B::Terse> module, but it is more
800sophisticated and flexible.
801
f8a679e6 802=head1 EXAMPLE
803
804Here's is a short example of output, using the default formatting
805conventions :
806
807 % perl -MO=Concise -e '$a = $b + 42'
8ec8fbef 808 8 <@> leave[1 ref] vKP/REFC ->(end)
f8a679e6 809 1 <0> enter ->2
810 2 <;> nextstate(main 1 -e:1) v ->3
811 7 <2> sassign vKS/2 ->8
812 5 <2> add[t1] sK/2 ->6
813 - <1> ex-rv2sv sK/1 ->4
814 3 <$> gvsv(*b) s ->4
815 4 <$> const(IV 42) s ->5
816 - <1> ex-rv2sv sKRM*/1 ->7
817 6 <$> gvsv(*a) s ->7
818
819Each line corresponds to an operator. Null ops appear as C<ex-opname>,
820where I<opname> is the op that has been optimized away by perl.
821
822The number on the first row indicates the op's sequence number. It's
823given in base 36 by default.
824
825The symbol between angle brackets indicates the op's type : for example,
826<2> is a BINOP, <@> a LISTOP, etc. (see L</"OP class abbreviations">).
827
828The opname may be followed by op-specific information in parentheses
829(e.g. C<gvsv(*b)>), and by targ information in brackets (e.g.
830C<leave[t1]>).
831
832Next come the op flags. The common flags are listed below
833(L</"OP flags abbreviations">). The private flags follow, separated
834by a slash. For example, C<vKP/REFC> means that the leave op has
835public flags OPf_WANT_VOID, OPf_KIDS, and OPf_PARENS, and the private
836flag OPpREFCOUNTED.
837
838Finally an arrow points to the sequence number of the next op.
839
c99ca59a 840=head1 OPTIONS
841
842Arguments that don't start with a hyphen are taken to be the names of
8ec8fbef 843subroutines to print the OPs of; if no such functions are specified,
844the main body of the program (outside any subroutines, and not
845including use'd or require'd files) is printed. Passing C<BEGIN>,
846C<CHECK>, C<INIT>, or C<END> will cause all of the corresponding
847special blocks to be printed.
c99ca59a 848
849=over 4
850
851=item B<-basic>
852
853Print OPs in the order they appear in the OP tree (a preorder
854traversal, starting at the root). The indentation of each OP shows its
855level in the tree. This mode is the default, so the flag is included
856simply for completeness.
857
858=item B<-exec>
859
860Print OPs in the order they would normally execute (for the majority
861of constructs this is a postorder traversal of the tree, ending at the
862root). In most cases the OP that usually follows a given OP will
863appear directly below it; alternate paths are shown by indentation. In
864cases like loops when control jumps out of a linear path, a 'goto'
865line is generated.
866
867=item B<-tree>
868
869Print OPs in a text approximation of a tree, with the root of the tree
870at the left and 'left-to-right' order of children transformed into
871'top-to-bottom'. Because this mode grows both to the right and down,
872it isn't suitable for large programs (unless you have a very wide
873terminal).
874
875=item B<-compact>
876
877Use a tree format in which the minimum amount of space is used for the
878lines connecting nodes (one character in most cases). This squeezes out
879a few precious columns of screen real estate.
880
881=item B<-loose>
882
883Use a tree format that uses longer edges to separate OP nodes. This format
884tends to look better than the compact one, especially in ASCII, and is
885the default.
886
887=item B<-vt>
888
889Use tree connecting characters drawn from the VT100 line-drawing set.
890This looks better if your terminal supports it.
891
892=item B<-ascii>
893
894Draw the tree with standard ASCII characters like C<+> and C<|>. These don't
895look as clean as the VT100 characters, but they'll work with almost any
896terminal (or the horizontal scrolling mode of less(1)) and are suitable
897for text documentation or email. This is the default.
898
899=item B<-main>
900
901Include the main program in the output, even if subroutines were also
902specified.
903
904=item B<-base>I<n>
905
906Print OP sequence numbers in base I<n>. If I<n> is greater than 10, the
907digit for 11 will be 'a', and so on. If I<n> is greater than 36, the digit
908for 37 will be 'A', and so on until 62. Values greater than 62 are not
909currently supported. The default is 36.
910
911=item B<-bigendian>
912
913Print sequence numbers with the most significant digit first. This is the
914usual convention for Arabic numerals, and the default.
915
916=item B<-littleendian>
917
918Print seqence numbers with the least significant digit first.
919
920=item B<-concise>
921
922Use the author's favorite set of formatting conventions. This is the
923default, of course.
924
925=item B<-terse>
926
a6d05634 927Use formatting conventions that emulate the output of B<B::Terse>. The
c99ca59a 928basic mode is almost indistinguishable from the real B<B::Terse>, and the
929exec mode looks very similar, but is in a more logical order and lacks
930curly brackets. B<B::Terse> doesn't have a tree mode, so the tree mode
931is only vaguely reminiscient of B<B::Terse>.
932
933=item B<-linenoise>
934
935Use formatting conventions in which the name of each OP, rather than being
936written out in full, is represented by a one- or two-character abbreviation.
937This is mainly a joke.
938
939=item B<-debug>
940
941Use formatting conventions reminiscient of B<B::Debug>; these aren't
942very concise at all.
943
944=item B<-env>
945
946Use formatting conventions read from the environment variables
947C<B_CONCISE_FORMAT>, C<B_CONCISE_GOTO_FORMAT>, and C<B_CONCISE_TREE_FORMAT>.
948
949=back
950
951=head1 FORMATTING SPECIFICATIONS
952
953For each general style ('concise', 'terse', 'linenoise', etc.) there are
954three specifications: one of how OPs should appear in the basic or exec
955modes, one of how 'goto' lines should appear (these occur in the exec
956mode only), and one of how nodes should appear in tree mode. Each has the
957same format, described below. Any text that doesn't match a special
958pattern is copied verbatim.
959
960=over 4
961
962=item B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>
963
964Generates I<exec_text> in exec mode, or I<basic_text> in basic mode.
965
966=item B<(*(>I<text>B<)*)>
967
968Generates one copy of I<text> for each indentation level.
969
970=item B<(*(>I<text1>B<;>I<text2>B<)*)>
971
972Generates one fewer copies of I<text1> than the indentation level, followed
973by one copy of I<text2> if the indentation level is more than 0.
974
975=item B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>
976
977If the value of I<var> is true (not empty or zero), generates the
978value of I<var> surrounded by I<text1> and I<Text2>, otherwise
979nothing.
980
981=item B<#>I<var>
982
983Generates the value of the variable I<var>.
984
985=item B<#>I<var>I<N>
986
987Generates the value of I<var>, left jutified to fill I<N> spaces.
988
989=item B<~>
990
991Any number of tildes and surrounding whitespace will be collapsed to
992a single space.
993
994=back
995
996The following variables are recognized:
997
998=over 4
999
1000=item B<#addr>
1001
1002The address of the OP, in hexidecimal.
1003
1004=item B<#arg>
1005
1006The OP-specific information of the OP (such as the SV for an SVOP, the
1007non-local exit pointers for a LOOP, etc.) enclosed in paretheses.
1008
1009=item B<#class>
1010
1011The B-determined class of the OP, in all caps.
1012
f8a679e6 1013=item B<#classsym>
c99ca59a 1014
1015A single symbol abbreviating the class of the OP.
1016
c3caa09d 1017=item B<#coplabel>
1018
1019The label of the statement or block the OP is the start of, if any.
1020
c99ca59a 1021=item B<#exname>
1022
1023The name of the OP, or 'ex-foo' if the OP is a null that used to be a foo.
1024
1025=item B<#extarg>
1026
1027The target of the OP, or nothing for a nulled OP.
1028
1029=item B<#firstaddr>
1030
1031The address of the OP's first child, in hexidecimal.
1032
1033=item B<#flags>
1034
1035The OP's flags, abbreviated as a series of symbols.
1036
1037=item B<#flagval>
1038
1039The numeric value of the OP's flags.
1040
f8a679e6 1041=item B<#hyphseq>
c99ca59a 1042
1043The sequence number of the OP, or a hyphen if it doesn't have one.
1044
1045=item B<#label>
1046
1047'NEXT', 'LAST', or 'REDO' if the OP is a target of one of those in exec
1048mode, or empty otherwise.
1049
1050=item B<#lastaddr>
1051
1052The address of the OP's last child, in hexidecimal.
1053
1054=item B<#name>
1055
1056The OP's name.
1057
1058=item B<#NAME>
1059
1060The OP's name, in all caps.
1061
1062=item B<#next>
1063
1064The sequence number of the OP's next OP.
1065
1066=item B<#nextaddr>
1067
1068The address of the OP's next OP, in hexidecimal.
1069
1070=item B<#noise>
1071
c27ea44e 1072A one- or two-character abbreviation for the OP's name.
c99ca59a 1073
1074=item B<#private>
1075
1076The OP's private flags, rendered with abbreviated names if possible.
1077
1078=item B<#privval>
1079
1080The numeric value of the OP's private flags.
1081
1082=item B<#seq>
1083
2814eb74 1084The sequence number of the OP. Note that this is a sequence number
1085generated by B::Concise.
c99ca59a 1086
2814eb74 1087=item B<#opt>
c99ca59a 1088
2814eb74 1089Whether or not the op has been optimised by the peephole optimiser.
1090
1091=item B<#static>
1092
1093Whether or not the op is statically defined. This flag is used by the
1094B::C compiler backend and indicates that the op should not be freed.
c99ca59a 1095
1096=item B<#sibaddr>
1097
1098The address of the OP's next youngest sibling, in hexidecimal.
1099
1100=item B<#svaddr>
1101
1102The address of the OP's SV, if it has an SV, in hexidecimal.
1103
1104=item B<#svclass>
1105
1106The class of the OP's SV, if it has one, in all caps (e.g., 'IV').
1107
1108=item B<#svval>
1109
1110The value of the OP's SV, if it has one, in a short human-readable format.
1111
1112=item B<#targ>
1113
1114The numeric value of the OP's targ.
1115
1116=item B<#targarg>
1117
1118The name of the variable the OP's targ refers to, if any, otherwise the
1119letter t followed by the OP's targ in decimal.
1120
1121=item B<#targarglife>
1122
1123Same as B<#targarg>, but followed by the COP sequence numbers that delimit
1124the variable's lifetime (or 'end' for a variable in an open scope) for a
1125variable.
1126
1127=item B<#typenum>
1128
1129The numeric value of the OP's type, in decimal.
1130
1131=back
1132
1133=head1 ABBREVIATIONS
1134
1135=head2 OP flags abbreviations
1136
1137 v OPf_WANT_VOID Want nothing (void context)
1138 s OPf_WANT_SCALAR Want single value (scalar context)
1139 l OPf_WANT_LIST Want list of any length (list context)
1140 K OPf_KIDS There is a firstborn child.
1141 P OPf_PARENS This operator was parenthesized.
1142 (Or block needs explicit scope entry.)
1143 R OPf_REF Certified reference.
1144 (Return container, not containee).
1145 M OPf_MOD Will modify (lvalue).
1146 S OPf_STACKED Some arg is arriving on the stack.
1147 * OPf_SPECIAL Do something weird for this op (see op.h)
1148
1149=head2 OP class abbreviations
1150
1151 0 OP (aka BASEOP) An OP with no children
1152 1 UNOP An OP with one child
1153 2 BINOP An OP with two children
1154 | LOGOP A control branch OP
1155 @ LISTOP An OP that could have lots of children
1156 / PMOP An OP with a regular expression
1157 $ SVOP An OP with an SV
1158 " PVOP An OP with a string
1159 { LOOP An OP that holds pointers for a loop
1160 ; COP An OP that marks the start of a statement
051f02e9 1161 # PADOP An OP with a GV on the pad
c99ca59a 1162
78ad9108 1163=head1 Using B::Concise outside of the O framework
1164
f95e3c3c 1165You can use B<B::Concise>, and call compile() directly, thereby
1166avoiding the compile-only operation of O. For example, you could use
1167the debugger to step through B::Concise::compile() itself.
1168
1169When doing so, you can alter Concise output by providing new output
1170styles, and optionally by adding callback routines which populate new
1171variables that may be rendered as part of those styles. For all
1172following sections, please review L</FORMATTING SPECIFICATIONS>.
1173
1174=head2 example: Altering Concise Output
78ad9108 1175
1176 use B::Concise qw(set_style add_callback);
f95e3c3c 1177 set_style($your_format, $your_gotofmt, $your_treefmt);
78ad9108 1178 add_callback
f95e3c3c 1179 ( sub {
1180 my ($h, $op, $format, $level, $stylename) = @_;
78ad9108 1181 $h->{variable} = some_func($op);
1182 }
f95e3c3c 1183 );
78ad9108 1184 B::Concise::compile(@options)->();
1185
f95e3c3c 1186=head2 set_style()
1187
1188B<set_style> accepts 3 arguments, and updates the three components of an
1189output style (basic-exec, goto, tree). It has one minor drawback though:
1190it doesn't register the style under a new name, thus you may prefer to use
1191add_style() and/or set_style_standard() instead.
1192
1193=head2 add_style()
78ad9108 1194
f95e3c3c 1195This subroutine accepts a new style name and three style arguments as
1196above, and creates, registers, and selects the newly named style. It is
1197an error to re-add a style; call set_style_standard() to switch between
1198several styles.
1199
1200=head2 set_style_standard($name)
1201
1202This restores one of the standard styles: C<terse>, C<concise>,
1203C<linenoise>, C<debug>, C<env>, into effect. It also accepts style
1204names previously defined with add_style().
1205
1206=head2 add_callback()
1207
1208If your newly minted styles refer to any #variables, you'll need to
1209define a callback subroutine that will populate (or modify) those
1210variables. They are then available for use in the style you've chosen.
1211
1212The callbacks are called for each opcode visited by Concise, in the
1213same order as they are added. Each subroutine is passed five
1214parameters.
1215
1216 1. A hashref, containing the variable names and values which are
1217 populated into the report-line for the op
1218 2. the op, as a B<B::OP> object
1219 3. a reference to the format string
1220 4. the formatting (indent) level
1221 5. the selected stylename
78ad9108 1222
1223To define your own variables, simply add them to the hash, or change
1224existing values if you need to. The level and format are passed in as
1225references to scalars, but it is unlikely that they will need to be
1226changed or even used.
1227
f95e3c3c 1228=head2 running B::Concise::compile()
1229
1230B<compile> accepts options as described above in L</OPTIONS>, and
1231arguments, which are either coderefs, or subroutine names.
1232
1233compile() constructs and returns a coderef, which when invoked, scans
1234the optree, and prints the results to STDOUT. Once you have the
1235coderef, you may change the output style; thereafter the coderef renders
1236in the new style.
1237
1238B<walk_output> lets you change the print destination from STDOUT to
1239another open filehandle, or into a string passed as a ref.
1240
1241 walk_output(\my $buf);
1242 B::Concise::compile('-concise','funcName', \&aSubRef)->();
1243 print "Concise Results: $buf\n";
1244
1245For each subroutine visited, the opcode info is preceded by a single
1246line containing either the subroutine name or the stringified coderef.
1247
31b49ad4 1248To switch back to one of the standard styles like C<concise> or
f95e3c3c 1249C<terse>, call C<set_style_standard>, or pass the style name into
1250B::Concise::compile() (as done above).
1251
1252=head2 B::Concise::reset_sequence()
1253
1254This function (not exported) lets you reset the sequence numbers (note
1255that they're numbered arbitrarily, their goal being to be human
1256readable). Its purpose is mostly to support testing, i.e. to compare
1257the concise output from two identical anonymous subroutines (but
1258different instances). Without the reset, B::Concise, seeing that
1259they're separate optrees, generates different sequence numbers in
1260the output.
1261
1262=head2 Errors
1263
1264All detected errors, (invalid arguments, internal errors, etc.) are
1265resolved with a die($message). Use an eval if you wish to catch these
1266errors and continue processing.
31b49ad4 1267
f95e3c3c 1268In particular, B<compile> will die as follows if you've asked for a
1269non-existent function-name, a non-existent coderef, or a non-CODE
1270reference.
78ad9108 1271
c99ca59a 1272=head1 AUTHOR
1273
31b49ad4 1274Stephen McCamant, E<lt>smcc@CSUA.Berkeley.EDUE<gt>.
c99ca59a 1275
1276=cut