Package soot.toolkits.graph

Examples of soot.toolkits.graph.BriefBlockGraph


    if(this.m_cfg instanceof ExceptionalUnitGraph)
      this.m_blockCFG = new ExceptionalBlockGraph((ExceptionalUnitGraph)this.m_cfg);
    else if(this.m_cfg instanceof EnhancedUnitGraph)
      this.m_blockCFG = new EnhancedBlockGraph((EnhancedUnitGraph)this.m_cfg);
    else if(this.m_cfg instanceof BriefUnitGraph)
      this.m_blockCFG = new BriefBlockGraph((BriefUnitGraph)this.m_cfg);
    else
      throw new RuntimeException("Unsupported CFG passed into the RegionAnalyis constructor!");
   
 
   
View Full Code Here

TOP

Related Classes of soot.toolkits.graph.BriefBlockGraph

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.