Package soot.toolkits.graph

Examples of soot.toolkits.graph.Block.toShortString()


    String s = new String("");
    s += "Headers: " + cfg.getHeads().size() + " " + cfg.getHeads();
    for (Iterator<Block> it = cfg.iterator(); it.hasNext(); )
    {
        Block node = it.next();
        s += "Node = " + node.toShortString() + "\n";
        s += "Preds:\n";
        for (Iterator<Block> predsIt = cfg.getPredsOf(node).iterator(); predsIt.hasNext(); )
        {
          s += "     ";
          s += predsIt.next().toShortString() + "\n";
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.