Home | History | Annotate | Download | only in disassembler

Lines Matching defs:op2

492   // |111|op1| op2   |    |                |
502 uint32_t op2 = (instr >> 20) & 0x7F;
509 if ((op2 & 0x64) == 0) { // 00x x0xx
517 // |111|01| op2 | | |
554 } else if ((op2 & 0x64) == 4) { // 00x x1xx
681 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
805 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
1068 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
1131 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
1212 // |111|10| op2 | |1|op3|op4 | |
1218 if ((op2 & 0x38) != 0x38) {
1239 } else if (op2 == 0x3B) {
1250 if ((op2 & 0x38) == 0x38) {
1251 if (op2 == 0x7F) {
1322 switch (op2) {
1336 opcode << "UNKNOWN " << op2 << " [SIMD]";
1428 DCHECK_LT(op2 >> 1, arraysize(lit_type));
1429 DCHECK_NE(lit_type[op2 >> 1], kT2LitInvalid);
1430 DumpThumb2Literal(args, instr_ptr, lo_adr, hi_adr, U, imm12, lit_type[op2 >> 1]);
1501 if ((op2 >> 4) == 2) { // 010xxxx
1513 } else if ((op2 >> 3) == 6) { // 0110xxx
1516 op2 = (instr >> 4) & 0x1;
1523 if (op2 == 0) {
1544 } else if ((op2 >> 3) == 7) { // 0111xxx
1547 op2 = (instr >> 4) & 0xf;
1588 opcode << "UNKNOWN " << op2;