From: Peter C. M. <Pet...@na...> - 2009-01-07 21:14:52
|
you have access to the code, the constpool, local var names and handler blocks, so you could re-engineer sources. However, normal execution mode is not very effective for this - you don't want traces but the complete control flow of a method. You could build the CFG by a different interpreter mode though (branching over ifs etc.) -- Peter On Jan 7, 2009, at 12:58 PM, Mido wrote: > Implementing VMListener, allows me to get a trace of the executed > byte code > instructions. > Is it possible to obtain the corresponding Java source-code of the > executed > byte code similar to what JAD does? > > Thanks. |