Package org.objectweb.asm.tree.analysis

Examples of org.objectweb.asm.tree.analysis.DataflowInterpreter


   * least one xLOAD corresponding instruction in their successor instructions
   * (in the control flow graph).
   */
 
  public static boolean analyze (ClassNode c, MethodNode m) throws Exception {
    Analyzer a = new Analyzer(new DataflowInterpreter());
    Frame[] frames = a.analyze(c, m);

    // for each xLOAD instruction, we find the xSTORE instructions that can
    // produce the value loaded by this instruction, and we put them in 'stores'
    Set stores = new HashSet();
View Full Code Here

TOP

Related Classes of org.objectweb.asm.tree.analysis.DataflowInterpreter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.