Examples of Jimple2FlowGraph


Examples of dk.brics.xact.analysis.soot.Jimple2FlowGraph

   * Builds the flow graph and finds schema URLs.
   * This method is <i>not</i> thread-safe (because of Soot).
   */
  public TranslationResult buildFlowGraph() {
    startPhase("Building flow graph...");
    TranslationResult tr = new Jimple2FlowGraph(config, errors).run();
    FlowGraph g = tr.getGraph();
    Debug.println(2, true, "Flow graph nodes: " + g.getNodes().size()
        + ", edges: " + g.getNumberOfEdges()
        + ", entries: " + g.getEntries().size());
    dumpFlowGraph(g, "fg1.dot");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.