com.android.dx.ssa
Interface SsaInsn.Visitor

Enclosing class:
SsaInsn

public static interface SsaInsn.Visitor

Visitor interface for this class.


Method Summary
 void visitMoveInsn(NormalSsaInsn insn)
          Any non-phi move instruction
 void visitNonMoveInsn(NormalSsaInsn insn)
          Any insn that isn't a move or a phi (which is also a move).
 void visitPhiInsn(PhiInsn insn)
          Any phi insn
 

Method Detail

visitMoveInsn

void visitMoveInsn(NormalSsaInsn insn)
Any non-phi move instruction

Parameters:
insn - non-null; the instruction to visit

visitPhiInsn

void visitPhiInsn(PhiInsn insn)
Any phi insn

Parameters:
insn - non-null; the instruction to visit

visitNonMoveInsn

void visitNonMoveInsn(NormalSsaInsn insn)
Any insn that isn't a move or a phi (which is also a move).

Parameters:
insn - non-null; the instruction to visit


Copyright © 2015. All rights reserved.