Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_arm.cc453 uint32_t op2 = (instr >> 20) & 0x7F; in DumpThumb32() local
460 if ((op2 & 0x64) == 0) { // 00x x0xx in DumpThumb32()
505 } else if ((op2 & 0x64) == 4) { // 00x x1xx in DumpThumb32()
632 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx in DumpThumb32()
756 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx in DumpThumb32()
1022 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) { in DumpThumb32()
1085 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) { in DumpThumb32()
1161 if ((op2 & 0x38) != 0x38) { in DumpThumb32()
1182 } else if (op2 == 0x3B) { in DumpThumb32()
1193 if ((op2 & 0x38) == 0x38) { in DumpThumb32()
[all …]
/art/compiler/dex/quick/
Dmir_to_lir-inl.h45 int op1, int op2, int op3, int op4, LIR* target) { in RawLIR() argument
51 insn->operands[2] = op2; in RawLIR()
Dralloc_util.cc1184 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); in SortCounts() local
1189 return (op1->count == op2->count) in SortCounts()
1190 ? (op1->s_reg - op2->s_reg) in SortCounts()
1191 : (op1->count < op2->count ? 1 : -1); in SortCounts()
Dmir_to_lir.h677 int op2 = 0, int op3 = 0, int op4 = 0, LIR* target = NULL);
/art/compiler/utils/arm/
Dassembler_thumb2.cc163 uint32_t op2 = 0b00; in mul() local
167 op2 << 4 | in mul()
180 uint32_t op2 = 0b00; in mla() local
183 op2 << 4 | in mla()
196 uint32_t op2 = 0b01; in mls() local
199 op2 << 4 | in mls()
212 uint32_t op2 = 0b0000; in umull() local
215 op2 << 4 | in umull()
227 uint32_t op2 = 0b1111; in sdiv() local
230 op2 << 4 | in sdiv()
[all …]