Home
last modified time | relevance | path

Searched refs:getOpcodeInfo (Results 1 – 14 of 14) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DNewMethodCaller.java148 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_VIRTUAL); in applyMutation()
151 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_DIRECT); in applyMutation()
154 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_SUPER); in applyMutation()
157 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_STATIC); in applyMutation()
160 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_INTERFACE); in applyMutation()
DValuePrinter.java156 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_OBJECT_16); in applyMutation()
158 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_WIDE_16); in applyMutation()
160 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_16); in applyMutation()
167 streamLoadInsn.insn.info = Instruction.getOpcodeInfo(Opcode.SGET_OBJECT); in applyMutation()
173 invokeInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_VIRTUAL_RANGE); in applyMutation()
DNonsenseStringPrinter.java123 constStringInsn.insn.info = Instruction.getOpcodeInfo(Opcode.CONST_STRING); in applyMutation()
129 streamLoadInsn.insn.info = Instruction.getOpcodeInfo(Opcode.SGET_OBJECT); in applyMutation()
135 invokeInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_VIRTUAL_RANGE); in applyMutation()
DRandomInstructionGenerator.java144 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(newOpcode); in generateMutation()
204 Opcode newOpcode = Instruction.getOpcodeInfo(mutation.newOpcode).opcode; in applyMutation()
219 newInsn.insn.info = Instruction.getOpcodeInfo(mutation.newOpcode); in applyMutation()
265 exitInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MONITOR_EXIT); in applyMutation()
270 enterInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MONITOR_ENTER); in applyMutation()
DRegisterClobber.java91 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.CONST_16); in applyMutation()
DIfBranchChanger.java129 ifBranchInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
DCmpBiasChanger.java123 cmpBiasInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
DNewArrayLengthChanger.java131 newInsn.insn.info = Instruction.getOpcodeInfo(Opcode.CONST_16); in applyMutation()
DConversionRepeater.java168 newInsnThere.insn.info = Instruction.getOpcodeInfo(oppositeOpcode); in applyMutation()
DInvokeChanger.java141 invokeInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
DArithOpChanger.java116 newOpcodeInfo = Instruction.getOpcodeInfo(getLegalDifferentOpcode(randomInsn)); in generateMutation()
138 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(mutation.newOpcode); in applyMutation()
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java377 moveInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_OBJECT_16); in finishedUsingTemporaryVRegs()
379 moveInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_WIDE_16); in finishedUsingTemporaryVRegs()
382 moveInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_16); in finishedUsingTemporaryVRegs()
DCodeTranslator.java562 nop.insn.info = Instruction.getOpcodeInfo(Opcode.NOP); in alignDataInstructions()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DInstruction.java121 info = getOpcodeInfo(opcodeValue); in read()
300 public static OpcodeInfo getOpcodeInfo(Opcode opcode) { in getOpcodeInfo() method in Instruction
304 public static OpcodeInfo getOpcodeInfo(int opcodeValue) { in getOpcodeInfo() method in Instruction