Interface DominatorWalkerCallback<T>

  • Type Parameters:
    T - type of state that can be saved for each visited node.

    public interface DominatorWalkerCallback<T>
    An object that receives information from DominatorWalker
    • Method Detail

      • filter

        default boolean filter​(BasicBlock block)
        Called before visiting block. This method should tell whether this block and all of its descendant blocks should be visited.
      • endVisit

        default void endVisit​(BasicBlock block,
                              T state)