Menu

code analysis

2009-06-20
2013-05-02
  • soorejkv busy

    soorejkv busy - 2009-06-20

    hey anyone interested in tracing the code ...
    is there any provision to get the disassembled code..
    i mean the byte code from the decompiler...........

     
    • Trevor Harmon

      Trevor Harmon - 2009-06-20

      If you just want disassembled code, why not use javap?

      If you want to get the bytecode corresponding to an individual block, JODE has no built-in facility to do that. However, I have modified JODE to support this. You can find the fork in the Volta project (see http://volta.sourceforge.net\). There is also a high-level interface that I wrote on top of JODE called Cascade. For example, you can obtain the BCEL instructions of a particular control flow node by calling Node.getInstructions:

      http://volta.sourceforge.net/api/edu/uci/eecs/doc/cascade/controlflow/Node.html#getInstructions\()

      More information on Cascade is here:

      http://volta.sourceforge.net/doc/manual/multi-page/ch03.html

      P.S. Please do not cross-post the same question to three different sections of the same project.

       

Log in to post a comment.