Package org.teavm.model.util
Interface DominatorWalkerContext
-
public interface DominatorWalkerContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanallPredecessorsVisited(int blockIndex)GraphgetControlFlowGraph()DominatorTreegetDominatorTree()booleanisExceptionHandler(int blockIndex)booleanisVisited(int blockIndex)
-
-
-
Method Detail
-
getDominatorTree
DominatorTree getDominatorTree()
-
getControlFlowGraph
Graph getControlFlowGraph()
-
isVisited
boolean isVisited(int blockIndex)
-
isExceptionHandler
boolean isExceptionHandler(int blockIndex)
-
allPredecessorsVisited
default boolean allPredecessorsVisited(int blockIndex)
-
-