Home
last modified time | relevance | path

Searched refs:toBeDeleted (Results 1 – 2 of 2) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DInstructionDeleter.java92 MInsn toBeDeleted = in applyMutation() local
95 Log.info("Deleting " + toBeDeleted); in applyMutation()
103 if (toBeDeleted instanceof MInsnWithData) { in applyMutation()
104 Log.info(toBeDeleted + " had associated data, so the data insn was deleted."); in applyMutation()
107 ((MInsnWithData)toBeDeleted).dataTarget; in applyMutation()
112 if (toBeDeleted.insn.justRaw) { in applyMutation()
114 Log.info(toBeDeleted in applyMutation()
121 if (((MInsnWithData)mInsn).dataTarget == toBeDeleted) { in applyMutation()
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java235 private void deleteInstructionFull(MInsn toBeDeleted, int toBeDeletedIdx) { in deleteInstructionFull() argument
237 updateInstructionLocationsAfter(toBeDeleted, -(toBeDeleted.insn.getSize())); in deleteInstructionFull()
256 if (target == toBeDeleted) { in deleteInstructionFull()
266 if (target == toBeDeleted) { in deleteInstructionFull()
281 updateTryBlocksWithReplacementInsn(toBeDeleted, replacementTarget, false); in deleteInstructionFull()
287 public void deleteInstruction(MInsn toBeDeleted) { in deleteInstruction() argument
288 deleteInstructionFull(toBeDeleted, mutatableInsns.indexOf(toBeDeleted)); in deleteInstruction()