Searched refs:newOpcode (Results 1 – 5 of 5) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | RandomInstructionGenerator.java | 45 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() 133 if (Opcode.isBetween(newOpcode, Opcode.FILLED_NEW_ARRAY, Opcode.FILL_ARRAY_DATA) in generateMutation() 134 || Opcode.isBetween(newOpcode, Opcode.PACKED_SWITCH, Opcode.SPARSE_SWITCH) in generateMutation() 135 || Opcode.isBetween(newOpcode, Opcode.INVOKE_VIRTUAL, Opcode.INVOKE_INTERFACE) in generateMutation() 136 || Opcode.isBetween(newOpcode, in generateMutation() 139 || Opcode.isBetween(newOpcode, Opcode.IGET_QUICK, Opcode.IPUT_SHORT_QUICK) in generateMutation() [all …]
|
D | IfBranchChanger.java | 127 Opcode newOpcode = getModifiedOpcode(ifBranchInsn); in applyMutation() local 129 ifBranchInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
|
D | CmpBiasChanger.java | 121 Opcode newOpcode = getLegalDifferentOpcode(cmpBiasInsn); in applyMutation() local 123 cmpBiasInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
|
D | ArithOpChanger.java | 40 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()
|
D | InvokeChanger.java | 139 Opcode newOpcode = getDifferentInvokeCallOpcode(invokeInsn); in applyMutation() local 141 invokeInsn.insn.info = Instruction.getOpcodeInfo(newOpcode); in applyMutation()
|