Examples of MHGPostDominatorsFinder


Examples of soot.toolkits.graph.MHGPostDominatorsFinder

  @SuppressWarnings("unchecked")
  protected void handleExplicitThrowEdges()
  {
    MHGDominatorTree dom = new MHGDominatorTree(new MHGDominatorsFinder<Unit>(this));
    MHGDominatorTree pdom = new MHGDominatorTree(new MHGPostDominatorsFinder(this));
   
    //this keeps a map from the entry of a try-catch-block to a selected merge point
    Hashtable<Unit, Unit> x2mergePoint = new Hashtable<Unit, Unit>();
   
    List<Unit> tails = this.getTails();
View Full Code Here

Examples of soot.toolkits.graph.MHGPostDominatorsFinder

   
       
   
    try{
   
      this.m_pdom = new MHGDominatorTree(new MHGPostDominatorsFinder(m_blockCFG));
   
      if(Options.v().verbose())
        G.v().out.println("[RegionAnalysis] PostDominator tree: ");
     
      List heads = this.m_pdom.getHeads();
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.