in reply to Re: How can I read assemble code ?
in thread How can I read assemble code ?

Terse was replaced with Concise (and now Terse is just a wrapper that calls Concise). Concise, by default shows a bit more info:
$ perl -MO=Concise -e 'print "foo!\n"' 6 <@> leave[1 ref] vKP/REFC ->(end) 1 <0> enter ->2 2 <;> nextstate(main 1 -e:1) v ->3 5 <@> print vK ->6 3 <0> pushmark s ->4 4 <$> const[PV "foo!\n"] s ->5 -e syntax OK
Or in execution order, instead of the syntax tree:
$ perl -MO=Concise,-exec -e 'print "foo!\n"' 1 <0> enter 2 <;> nextstate(main 1 -e:1) v 3 <0> pushmark s 4 <$> const[PV "foo!\n"] s 5 <@> print vK 6 <@> leave[1 ref] vKP/REFC -e syntax OK
See B::Concise for what all that densely packed info means.

Replies are listed 'Best First'.
Re^3: How can I read assemble code ?
by roboticus (Chancellor) on Oct 13, 2007 at 15:45 UTC