Interface SsaInsn.Visitor

Enclosing class:
SsaInsn

public static interface SsaInsn.Visitor
Visitor interface for this class.
  • Method Details

    • 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