coins.backend.cfg
Interface DfstHook


public interface DfstHook

Depth First Ordering Hook


Method Summary
 void postOrder(BasicBlk blk)
          Entry called when the block blk last visited.
 void preOrder(BasicBlk blk, BasicBlk from)
          Entry called when the block blk first visited.
 

Method Detail

preOrder

public void preOrder(BasicBlk blk,
                     BasicBlk from)
Entry called when the block blk first visited. Block from is the parent node.


postOrder

public void postOrder(BasicBlk blk)
Entry called when the block blk last visited.