Package br.usp.each.saeg.bytecode.analysis.graph

Examples of br.usp.each.saeg.bytecode.analysis.graph.BasicBlockGraphNodeJoiner


       
        graph = new ProgramGraph(
            className, methodNode.name, methodNode.desc, nodes.get(0));
       
        if ((type & BASIC_BLOCK) != 0) {
          new PreOrderTraversalStrategy(new BasicBlockGraphNodeJoiner()).traverse(graph.getRootNode());
        }
        if ((type & COMPUTE_DEF_USE) != 0) {
          new DataflowVerifierTraversalStrategy(new DefUseFrameComputer()).traverse(graph.getRootNode());
        }
        if ((type & REMOVE_LOCAL_USES) != 0) {
View Full Code Here

TOP

Related Classes of br.usp.each.saeg.bytecode.analysis.graph.BasicBlockGraphNodeJoiner

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.