Class CFGBuilder


public class CFGBuilder extends MethodAnalysis<CFG<Stmt>>
  • Field Details

  • Constructor Details

  • Method Details

    • analyze

      public CFG<Stmt> analyze(IR ir)
      Description copied from class: MethodAnalysis
      Runs this analysis for the given IR. The result will be stored in IR. If the result is not used by following analyses, then this method should return null.
      Specified by:
      analyze in class MethodAnalysis<CFG<Stmt>>
      Parameters:
      ir - IR of the method to be analyzed
      Returns:
      the analysis result for given ir.