Home
last modified time | relevance | path

Searched refs:op3 (Results 1 – 3 of 3) sorted by relevance

/art/disassembler/
Ddisassembler_arm.cc506 uint32_t op3 = (instr >> 23) & 3; in DumpThumb32() local
513 if ((op3 & 2) == 2) { // 1x in DumpThumb32()
536 if (op3 == 0) { // op3 is 00, op4 is 00 in DumpThumb32()
572 if (op3 == 0) { // op3 is 00, op4 is 01 in DumpThumb32()
641 uint32_t op3 = (instr >> 21) & 0xF; in DumpThumb32() local
650 switch (op3) { in DumpThumb32()
719 default: opcode << "UNKNOWN DPSR-" << op3; break; in DumpThumb32()
765 uint32_t op3 = (instr >> 20) & 0x3F; in DumpThumb32() local
770 if (op3 < 0x20 && (op3 & ~5) != 0) { // 0xxxxx and not 000x0x in DumpThumb32()
810 } else if ((op3 >> 1) == 2) { // 00010x 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
52 insn->operands[3] = op3; in RawLIR()
Dmir_to_lir.h677 int op2 = 0, int op3 = 0, int op4 = 0, LIR* target = NULL);