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

Examples of br.usp.each.saeg.bytecode.analysis.graph.defuse.DefUseFrameComputer


       
        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) {
          new PreOrderTraversalStrategy(new LocalUseRemover()).traverse(graph.getRootNode());
        }
        if ((type & REMOVE_UNUSED_DEFS) != 0) {
View Full Code Here

TOP

Related Classes of br.usp.each.saeg.bytecode.analysis.graph.defuse.DefUseFrameComputer

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.