Package dk.brics.xact.analysis.transformations

Examples of dk.brics.xact.analysis.transformations.Splitter


      return output;
  }
 
  private List<FlowGraph> splitFlowGraph(FlowGraph g) {
    startPhase("Splitting flow graph...");
    List<FlowGraph> list = new Splitter().split(g);
    Debug.println(2, true, "Created " + list.size() + " subgraphs");
    diagnostics.afterSplit(g, list);
    endPhase();
    return list;
  }
View Full Code Here

TOP

Related Classes of dk.brics.xact.analysis.transformations.Splitter

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.