Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DNonsenseStringPrinter.java127 MInsn streamLoadInsn = new MInsn(); in applyMutation() local
128 streamLoadInsn.insn = new Instruction(); in applyMutation()
129 streamLoadInsn.insn.info = Instruction.getOpcodeInfo(Opcode.SGET_OBJECT); in applyMutation()
130 streamLoadInsn.insn.vregB = outFieldIdx; in applyMutation()
131 streamLoadInsn.insn.vregA = streamRegister; in applyMutation()
146 mutatableCode.insertInstructionAt(streamLoadInsn, mutation.insertionIdx); in applyMutation()
DValuePrinter.java165 MInsn streamLoadInsn = new MInsn(); in applyMutation() local
166 streamLoadInsn.insn = new Instruction(); in applyMutation()
167 streamLoadInsn.insn.info = Instruction.getOpcodeInfo(Opcode.SGET_OBJECT); in applyMutation()
168 streamLoadInsn.insn.vregB = outFieldIdx; in applyMutation()
169 streamLoadInsn.insn.vregA = streamRegister; in applyMutation()
187 mutatableCode.insertInstructionAfter(streamLoadInsn, mutation.printedOutputIdx); in applyMutation()