Home
last modified time | relevance | path

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

/art/runtime/
Ddisassembler_arm.cc295 uint32_t op2 = (instr >> 20) & 0x7F; in DumpThumb32() local
302 if ((op2 & 0x64) == 0) { // 00x x0xx in DumpThumb32()
347 } else if ((op2 & 0x64) == 4) { // 00x x1xx in DumpThumb32()
362 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx in DumpThumb32()
486 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx in DumpThumb32()
600 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) { in DumpThumb32()
663 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) { in DumpThumb32()
739 if ((op2 & 0x38) != 0x38) { in DumpThumb32()
760 } else if (op2 == 0x3B) { in DumpThumb32()
771 if ((op2 & 0x38) == 0x38) { in DumpThumb32()
[all …]
/art/compiler/dex/quick/
Dmir_to_lir-inl.h42 int op1, int op2, int op3, int op4, LIR* target) { in RawLIR() argument
48 insn->operands[2] = op2; in RawLIR()
Dralloc_util.cc933 const Mir2Lir::RefCounts* op2 = reinterpret_cast<const Mir2Lir::RefCounts*>(val2); in SortCounts() local
937 return (op1->count == op2->count) in SortCounts()
938 ? (op1->s_reg - op2->s_reg) in SortCounts()
939 : (op1->count < op2->count ? 1 : -1); in SortCounts()
Dmir_to_lir.h263 int op2 = 0, int op3 = 0, int op4 = 0, LIR* target = NULL);