Searched refs:toBeInserted (Results 1 – 1 of 1) sorted by relevance
146 public void insertInstructionAfter(MInsn toBeInserted, int insertionIdx) { in insertInstructionAfter() argument148 insertInstructionAt(toBeInserted, insertionIdx + 1); in insertInstructionAfter()152 toBeInserted.location = finalInsn.location + finalInsn.insn.getSize(); in insertInstructionAfter()153 mutatableInsns.add(toBeInserted); in insertInstructionAfter()160 public void insertInstructionAt(MInsn toBeInserted, int insertionIdx) { in insertInstructionAt() argument162 toBeInserted.location = currentInsn.location; in insertInstructionAt()163 mutatableInsns.add(insertionIdx , toBeInserted); in insertInstructionAt()164 updateInstructionLocationsAfter(toBeInserted, toBeInserted.insn.getSize()); in insertInstructionAt()