Package com.android.dx.ssa
Interface SsaInsn.Visitor
- Enclosing class:
SsaInsn
public static interface SsaInsn.Visitor
Visitor interface for this class.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
visitMoveInsn
(NormalSsaInsn insn) Any non-phi move instructionvoid
Any insn that isn't a move or a phi (which is also a move).void
visitPhiInsn
(PhiInsn insn) Any phi insn
-
Method Details
-
visitMoveInsn
Any non-phi move instruction- Parameters:
insn
-non-null;
the instruction to visit
-
visitPhiInsn
Any phi insn- Parameters:
insn
-non-null;
the instruction to visit
-
visitNonMoveInsn
Any insn that isn't a move or a phi (which is also a move).- Parameters:
insn
-non-null;
the instruction to visit
-