Package soot.toolkits.graph

Examples of soot.toolkits.graph.ExceptionalBlockGraph


     * the appropriate block CFG. Note that almost all of the processing
     * is done on the block CFG.
     */
   
    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
View Full Code Here

TOP

Related Classes of soot.toolkits.graph.ExceptionalBlockGraph

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.