/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | ValuePrinter.java | 216 Opcode opcode = mInsn.insn.info.opcode; in getInstructionOutputType() local 217 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO) { in getInstructionOutputType() 220 if (opcode == Opcode.IGET_BOOLEAN || opcode == Opcode.SGET_BOOLEAN) { in getInstructionOutputType() 223 if (opcode == Opcode.IGET_BYTE || opcode == Opcode.SGET_BYTE in getInstructionOutputType() 224 || opcode == Opcode.INT_TO_BYTE) { in getInstructionOutputType() 227 if (opcode == Opcode.IGET_CHAR || opcode == Opcode.SGET_CHAR in getInstructionOutputType() 228 || opcode == Opcode.INT_TO_CHAR) { in getInstructionOutputType() 231 if (opcode == Opcode.IGET_SHORT || opcode == Opcode.SGET_SHORT in getInstructionOutputType() 232 || opcode == Opcode.INT_TO_SHORT) { in getInstructionOutputType() 235 if (opcode == Opcode.NEG_INT || opcode == Opcode.NOT_INT in getInstructionOutputType() [all …]
|
D | InvokeChanger.java | 152 Opcode opcode = mInsn.insn.info.opcode; in getDifferentInvokeCallOpcode() local 153 if (isSimpleInvokeInst(opcode)) { in getDifferentInvokeCallOpcode() 154 int index = opcode.ordinal() - Opcode.INVOKE_VIRTUAL.ordinal(); in getDifferentInvokeCallOpcode() 157 } else if (isRangeInvokeInst(opcode)) { in getDifferentInvokeCallOpcode() 158 int index = opcode.ordinal() - Opcode.INVOKE_VIRTUAL_RANGE.ordinal(); in getDifferentInvokeCallOpcode() 162 return opcode; in getDifferentInvokeCallOpcode() 165 private boolean isSimpleInvokeInst(Opcode opcode){ in isSimpleInvokeInst() argument 166 return Opcode.isBetween(opcode, Opcode.INVOKE_VIRTUAL, Opcode.INVOKE_INTERFACE); in isSimpleInvokeInst() 169 private boolean isRangeInvokeInst(Opcode opcode){ in isRangeInvokeInst() argument 170 return Opcode.isBetween(opcode, Opcode.INVOKE_VIRTUAL_RANGE, Opcode.INVOKE_INTERFACE_RANGE); in isRangeInvokeInst() [all …]
|
D | RandomBranchChanger.java | 53 Opcode opcode = mInsn.insn.info.opcode; in getModifiedOpcode() local 54 if (Opcode.isBetween(opcode, Opcode.IF_EQ, Opcode.IF_LE)) { in getModifiedOpcode() 55 int index = opcode.ordinal() - Opcode.IF_EQ.ordinal(); in getModifiedOpcode() 58 } else if (Opcode.isBetween(opcode, Opcode.IF_EQZ, Opcode.IF_LEZ)) { in getModifiedOpcode() 59 int index = opcode.ordinal() - Opcode.IF_EQZ.ordinal(); in getModifiedOpcode() 63 return opcode; in getModifiedOpcode()
|
D | CmpBiasChanger.java | 134 Opcode opcode = mInsn.insn.info.opcode; in getLegalDifferentOpcode() local 135 if (opcode == Opcode.CMPG_DOUBLE) { in getLegalDifferentOpcode() 138 if (opcode == Opcode.CMPL_DOUBLE) { in getLegalDifferentOpcode() 141 if (opcode == Opcode.CMPG_FLOAT) { in getLegalDifferentOpcode() 148 Opcode opcode = mInsn.insn.info.opcode; in isCmpBiasOperation() local 149 if (Opcode.isBetween(opcode, Opcode.CMPL_FLOAT, Opcode.CMPG_DOUBLE)) { in isCmpBiasOperation()
|
D | InstructionDuplicator.java | 74 Opcode opcode = oldInsn.insn.info.opcode; in generateMutation() local 76 if (opcode == Opcode.SPARSE_SWITCH || opcode == Opcode.PACKED_SWITCH in generateMutation() 77 || opcode == Opcode.FILL_ARRAY_DATA || oldInsn.insn.justRaw) { in generateMutation()
|
D | OppositeBranchChanger.java | 36 Opcode opcode = mInsn.insn.info.opcode; in getModifiedOpcode() local 37 switch (opcode) { in getModifiedOpcode() 64 return opcode; in getModifiedOpcode()
|
/art/libdexfile/dex/ |
D | dex_instruction_utils.h | 54 constexpr bool IsInstructionDirectConst(Instruction::Code opcode) { in IsInstructionDirectConst() argument 55 return Instruction::CONST_4 <= opcode && opcode <= Instruction::CONST_WIDE_HIGH16; in IsInstructionDirectConst() 58 constexpr bool IsInstructionConstWide(Instruction::Code opcode) { in IsInstructionConstWide() argument 59 return Instruction::CONST_WIDE_16 <= opcode && opcode <= Instruction::CONST_WIDE_HIGH16; in IsInstructionConstWide() 62 constexpr bool IsInstructionReturn(Instruction::Code opcode) { in IsInstructionReturn() argument 63 return Instruction::RETURN_VOID <= opcode && opcode <= Instruction::RETURN_OBJECT; in IsInstructionReturn() 66 constexpr bool IsInstructionInvoke(Instruction::Code opcode) { in IsInstructionInvoke() argument 67 return Instruction::INVOKE_VIRTUAL <= opcode && opcode <= Instruction::INVOKE_INTERFACE_RANGE && in IsInstructionInvoke() 68 opcode != Instruction::RETURN_VOID_NO_BARRIER; in IsInstructionInvoke() 71 constexpr bool IsInstructionQuickInvoke(Instruction::Code opcode) { in IsInstructionQuickInvoke() argument [all …]
|
D | dex_instruction.cc | 43 static constexpr int8_t InstructionSizeInCodeUnitsByOpcode(Instruction::Code opcode, in InstructionSizeInCodeUnitsByOpcode() argument 45 if (opcode == Instruction::Code::NOP) { in InstructionSizeInCodeUnitsByOpcode() 63 #define INSTRUCTION_DESCR(opcode, c, p, format, index, flags, eflags, vflags) \ argument 94 Code opcode = static_cast<Code>(insn & 0xFF); in CanFlowThrough() local 95 return FlagsOf(opcode) & Instruction::kContinue; in CanFlowThrough() 177 const char* opcode = kInstructionNames[Opcode()]; in DumpString() local 179 case k10x: os << opcode; break; in DumpString() 180 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString() 181 case k11n: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_11n(), VRegB_11n()); break; in DumpString() 182 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break; in DumpString() [all …]
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | CodeItem.java | 149 Opcode opcode = insn.info.opcode; in incrementIndex() local 152 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO) { in incrementIndex() 160 if (opcode == Opcode.CONST_CLASS in incrementIndex() 161 || opcode == Opcode.CHECK_CAST in incrementIndex() 162 || opcode == Opcode.NEW_INSTANCE in incrementIndex() 163 || opcode == Opcode.FILLED_NEW_ARRAY in incrementIndex() 164 || opcode == Opcode.FILLED_NEW_ARRAY_RANGE) { in incrementIndex() 169 } else if (opcode == Opcode.INSTANCE_OF || opcode == Opcode.NEW_ARRAY) { in incrementIndex() 177 if (Opcode.isBetween(opcode, Opcode.SGET, Opcode.SPUT_SHORT)) { in incrementIndex() 182 } else if (Opcode.isBetween(opcode, Opcode.IGET, Opcode.IPUT_SHORT)) { in incrementIndex() [all …]
|
D | OpcodeInfo.java | 27 public final Opcode opcode; field in OpcodeInfo 35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) { in OpcodeInfo() argument 36 this.opcode = opcode; in OpcodeInfo()
|
/art/compiler/dex/ |
D | inline_method_analyser.h | 86 InlineMethodOpcode opcode; member 106 static constexpr bool IsInstructionIGet(Instruction::Code opcode) { in IsInstructionIGet() argument 107 return Instruction::IGET <= opcode && opcode <= Instruction::IGET_SHORT; in IsInstructionIGet() 110 static constexpr bool IsInstructionIPut(Instruction::Code opcode) { in IsInstructionIPut() argument 111 return Instruction::IPUT <= opcode && opcode <= Instruction::IPUT_SHORT; in IsInstructionIPut() 114 static constexpr uint16_t IGetVariant(Instruction::Code opcode) { in IGetVariant() argument 115 return opcode - Instruction::IGET; in IGetVariant() 118 static constexpr uint16_t IPutVariant(Instruction::Code opcode) { in IPutVariant() argument 119 return opcode - Instruction::IPUT; in IPutVariant()
|
D | inline_method_analyser.cc | 61 template <Instruction::Code opcode> bool Opcode(); 111 template <Instruction::Code opcode> 113 return instruction_->Opcode() == opcode; in Opcode() 394 result->opcode = kInlineOpConstructor; in AnalyseConstructor() 453 Instruction::Code opcode = code_item->begin()->Opcode(); in AnalyseMethodCode() local 455 switch (opcode) { in AnalyseMethodCode() 458 result->opcode = kInlineOpNop; in AnalyseMethodCode() 533 result->opcode = kInlineOpReturnArg; in AnalyseReturnMethod() 569 result->opcode = kInlineOpNonWideConst; in AnalyseConstMethod() 581 Instruction::Code opcode = instruction->Opcode(); in AnalyseIGetMethod() local [all …]
|
/art/disassembler/ |
D | disassembler_mips.cc | 527 std::string opcode; in Dump() local 533 opcode = StringPrintf("op=%d fn=%d", op, function); in Dump() 537 opcode = gMipsInstructions[i].name; in Dump() 575 case 0: opcode += ".s"; break; in Dump() 576 case 1: opcode += ".d"; break; in Dump() 577 case 4: opcode += ".w"; break; in Dump() 578 case 5: opcode += ".l"; break; in Dump() 579 case 6: opcode += ".ps"; break; in Dump() 580 default: opcode += ".?"; break; in Dump() 667 case 0: opcode += ".w"; break; in Dump() [all …]
|
/art/runtime/interpreter/mterp/arm64/ |
D | control_flow.S | 152 b.ne .L${opcode}_check 153 .L${opcode}_return: 157 .L${opcode}_check: 159 b .L${opcode}_return 170 b.ne .L${opcode}_check 171 .L${opcode}_return: 174 .L${opcode}_check: 176 b .L${opcode}_return 182 b.ne .L${opcode}_check 183 .L${opcode}_return: [all …]
|
/art/runtime/interpreter/mterp/common/ |
D | gen_setup.py | 27 opcode = "" variable 37 global opnum, opcode 38 opnum, opcode = str(num), name 47 opnum, opcode = None, None 55 name = "mterp_" + opcode + "_helper"
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 113 uint8_t opcode = *pc; in GetInstructionSize() local 125 switch (opcode) { in GetInstructionSize() 146 opcode = *pc; in GetInstructionSize() 156 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) { in GetInstructionSize() 157 opcode = *pc; in GetInstructionSize() 161 if (opcode == 0x0f) { in GetInstructionSize() 164 opcode = *pc; in GetInstructionSize() 171 switch (opcode) { in GetInstructionSize() 187 switch (opcode) { in GetInstructionSize() 227 immediate_size = (opcode == 0xf6) ? 1 : (operand_size_prefix ? 2 : 4); in GetInstructionSize() [all …]
|
/art/runtime/interpreter/mterp/mips/ |
D | floating_point.S | 18 GET_INST_OPCODE(t0) # extract opcode from rINST 38 GET_INST_OPCODE(t0) # extract opcode from rINST 63 GET_INST_OPCODE(t0) # extract opcode from rINST 86 GET_INST_OPCODE(t0) # extract opcode from rINST 103 GET_INST_OPCODE(t1) # extract opcode from rINST 119 GET_INST_OPCODE(t0) # extract opcode from rINST 190 GET_INST_OPCODE(t0) # extract opcode from rINST 241 GET_INST_OPCODE(t0) # extract opcode from rINST 280 GET_INST_OPCODE(t1) # extract opcode from rINST 309 GET_INST_OPCODE(t1) # extract opcode from rINST [all …]
|
D | other.S | 16 GET_INST_OPCODE(t0) # extract opcode from rINST 32 GET_INST_OPCODE(t0) # extract opcode from rINST 40 GET_INST_OPCODE(t0) # extract opcode from rINST 50 GET_INST_OPCODE(t0) # extract opcode from rINST 62 GET_INST_OPCODE(t0) # extract opcode from rINST 87 GET_INST_OPCODE(t0) # extract opcode from rINST 100 GET_INST_OPCODE(t0) # extract opcode from rINST 109 GET_INST_OPCODE(t0) # extract opcode from rINST 120 GET_INST_OPCODE(t0) # extract opcode from rINST 130 GET_INST_OPCODE(t0) # extract opcode from rINST [all …]
|
D | arithmetic.S | 31 GET_INST_OPCODE(t0) # extract opcode from rINST 60 GET_INST_OPCODE(t0) # extract opcode from rINST 89 GET_INST_OPCODE(t0) # extract opcode from rINST 120 GET_INST_OPCODE(t0) # extract opcode from rINST 155 GET_INST_OPCODE(t0) # extract opcode from rINST 186 GET_INST_OPCODE(t0) # extract opcode from rINST 205 GET_INST_OPCODE(t1) # extract opcode from rINST 222 GET_INST_OPCODE(t0) # extract opcode from rINST 241 GET_INST_OPCODE(t0) # extract opcode from rINST 258 GET_INST_OPCODE(t0) # extract opcode from rINST [all …]
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/ |
D | Format21c.java | 67 if (info.opcode == Opcode.CONST_STRING) { in getPoolIndexKind() 70 if (info.opcode == Opcode.CONST_CLASS in getPoolIndexKind() 71 || info.opcode == Opcode.CHECK_CAST in getPoolIndexKind() 72 || info.opcode == Opcode.NEW_INSTANCE) { in getPoolIndexKind()
|
/art/runtime/interpreter/mterp/mips64/ |
D | other.S | 16 GET_INST_OPCODE v0 # extract opcode from rINST 32 GET_INST_OPCODE v0 # extract opcode from rINST 41 GET_INST_OPCODE v0 # extract opcode from rINST 51 GET_INST_OPCODE v0 # extract opcode from rINST 64 GET_INST_OPCODE v0 # extract opcode from rINST 91 GET_INST_OPCODE v0 # extract opcode from rINST 105 GET_INST_OPCODE v0 # extract opcode from rINST 114 GET_INST_OPCODE v0 # extract opcode from rINST 125 GET_INST_OPCODE v0 # extract opcode from rINST 135 GET_INST_OPCODE v0 # extract opcode from rINST [all …]
|
/art/libelffile/dwarf/ |
D | debug_line_opcode_writer.h | 180 int opcode = kOpcodeBase + (delta_line - kLineBase) + in AddRow() local 182 if (opcode > UINT8_MAX) { in AddRow() 185 opcode -= (kLineRange * const_advance); in AddRow() 186 if (opcode <= UINT8_MAX) { in AddRow() 192 opcode = kOpcodeBase + (delta_line - kLineBase); in AddRow() 195 DCHECK(kOpcodeBase <= opcode && opcode <= 0xFF); in AddRow() 196 this->PushUint8(opcode); // Special opcode. in AddRow()
|
/art/runtime/interpreter/mterp/arm/ |
D | other.S | 17 GET_INST_OPCODE ip @ extract opcode from rINST 33 GET_INST_OPCODE ip @ extract opcode from rINST 43 GET_INST_OPCODE ip @ extract opcode from rINST 51 GET_INST_OPCODE ip @ ip<- opcode from rINST 65 GET_INST_OPCODE ip @ extract opcode from rINST 91 GET_INST_OPCODE ip @ extract opcode from rINST 106 GET_INST_OPCODE ip @ extract opcode from rINST 118 GET_INST_OPCODE ip @ extract opcode from rINST 132 GET_INST_OPCODE ip @ extract opcode from rINST 145 GET_INST_OPCODE ip @ extract opcode from rINST [all …]
|
/art/runtime/interpreter/mterp/x86/ |
D | arithmetic.S | 18 jz .L${opcode}_8 # Do 8-bit divide 21 jz .L${opcode}_16 # Do 16-bit divide 23 jne .L${opcode}_32 25 jne .L${opcode}_32 27 jmp .L${opcode}_finish 31 .L${opcode}_32: 34 jmp .L${opcode}_finish 35 .L${opcode}_8: 44 jmp .L${opcode}_finish 45 .L${opcode}_16: [all …]
|
D | floating_point.S | 24 jp .L${opcode}_nan_is_${nanval} 25 je .L${opcode}_finish 26 jb .L${opcode}_less 27 .L${opcode}_nan_is_pos: 29 jmp .L${opcode}_finish 30 .L${opcode}_nan_is_neg: 31 .L${opcode}_less: 33 .L${opcode}_finish:
|