Home | History | Annotate | Download | only in disassembler

Lines Matching refs:op5

508         // uint32_t op5 = (instr >> 4) & 0xF;
545 int op5 = (instr >> 4) & 0xf;
546 switch (op5) {
549 opcode << ((op5 == 4) ? "strexb" : "strexh");
580 int op5 = (instr >> 4) & 0xf;
581 switch (op5) {
590 opcode << ((op5 == 4) ? "ldrexb" : "ldrexh");
853 // |1110|1110|1|D|11|op5 | Vd |101|S|.|1|M|0| Vm | ... (see below)
893 op5 | Vd |101|S|op|1|M|0| Vm | VCVT
894 uint32_t op5 = (instr >> 16) & 0xF;
896 // Register types in VCVT instructions rely on the combination of op5 and S.
901 if (op5 == 0) {
904 } else if (op5 == 1) {
907 } else if (op5 == 4) {
913 } else if (op5 == 5) {
922 } else if (op5 == 0xD) {
932 } else if (op5 == 0xC) {
942 } else if (op5 == 0x8) {
952 } else if (op5 == 0x7) {
964 } else if ((op5 & 0xa) == 0xa) {
1184 uint32_t op5 = (instr >> 4) & 0xF;
1185 switch (op5) {