Home
last modified time | relevance | path

Searched refs:newOpcode (Results 1 – 5 of 5) sorted by relevance

/aosp12/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DRandomInstructionGenerator.java45 public int newOpcode; field in RandomInstructionGenerator.AssociatedMutation
61 newOpcode, in getString()
79 newOpcode = Integer.parseInt(elements[3]); in parseString()
126 Opcode newOpcode = null; in generateMutation() local
131 newOpcode = Opcode.values()[rng.nextInt(opcodeCount)]; in generateMutation()
144 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(newOpcode); in generateMutation()
149 mutation.newOpcode = newOpcodeInfo.value; in generateMutation()
190 if (Opcode.isBetween(newOpcode, Opcode.IF_EQ, Opcode.IF_LEZ) in generateMutation()
191 || Opcode.isBetween(newOpcode, Opcode.GOTO, Opcode.GOTO_32)) { in generateMutation()
204 Opcode newOpcode = Instruction.getOpcodeInfo(mutation.newOpcode).opcode; in applyMutation() local
[all …]
H A DArithOpChanger.java40 public int newOpcode; field in ArithOpChanger.AssociatedMutation
46 builder.append(newOpcode); in getString()
53 newOpcode = Integer.parseInt(elements[3]); in parseString()
122 mutation.newOpcode = newOpcodeInfo.value; in generateMutation()
138 OpcodeInfo newOpcodeInfo = Instruction.getOpcodeInfo(mutation.newOpcode); in applyMutation()
H A DIfBranchChanger.java127 Opcode newOpcode = getModifiedOpcode(ifBranchInsn); in applyMutation() local
129 ifBranchInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
H A DCmpBiasChanger.java121 Opcode newOpcode = getLegalDifferentOpcode(cmpBiasInsn); in applyMutation() local
123 cmpBiasInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
H A DInvokeChanger.java139 Opcode newOpcode = getDifferentInvokeCallOpcode(invokeInsn); in applyMutation() local
141 invokeInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()