public interface IFlowGraphVisitor
Modifier and Type | Method and Description |
---|---|
boolean |
visitBlock(IBasicBlock b)
Visit a new Block.
|
void |
visitEnd(IBasicBlock b)
Finish visiting a Block.
|
void |
visitInstruction(Instruction insn)
Visit an Instruction within the most recently-visited Block.
|
boolean visitBlock(IBasicBlock b)
b
- - the Block to visit.void visitEnd(IBasicBlock b)
b
- - the Block. It must be the same block last visited by
visitBlock() where that call returned true.void visitInstruction(Instruction insn)
insn
- - the Instruction.Copyright © 2016 The Apache Software Foundation. All rights reserved.