Lines Matching refs:BITS5

252 #define BITS5(_b4,_b3,_b2,_b1,_b0)  \  macro
18809 case BITS5(0,0,1,1,0): in disInstr_THUMB_WRK()
18810 case BITS5(0,0,1,1,1): { in disInstr_THUMB_WRK()
18828 case BITS5(1,0,1,0,0): { in disInstr_THUMB_WRK()
18842 case BITS5(1,0,1,0,1): { in disInstr_THUMB_WRK()
18852 case BITS5(0,0,1,0,1): { in disInstr_THUMB_WRK()
18866 case BITS5(0,0,1,0,0): { in disInstr_THUMB_WRK()
18883 case BITS5(0,1,0,0,1): { in disInstr_THUMB_WRK()
18903 case BITS5(0,1,1,0,0): /* STR */ in disInstr_THUMB_WRK()
18904 case BITS5(0,1,1,0,1): { /* LDR */ in disInstr_THUMB_WRK()
18928 case BITS5(1,0,0,0,0): /* STRH */ in disInstr_THUMB_WRK()
18929 case BITS5(1,0,0,0,1): { /* LDRH */ in disInstr_THUMB_WRK()
18953 case BITS5(0,1,1,1,0): /* STRB */ in disInstr_THUMB_WRK()
18954 case BITS5(0,1,1,1,1): { /* LDRB */ in disInstr_THUMB_WRK()
18978 case BITS5(1,0,0,1,0): /* STR */ in disInstr_THUMB_WRK()
18979 case BITS5(1,0,0,1,1): { /* LDR */ in disInstr_THUMB_WRK()
19002 case BITS5(1,1,0,0,1): { in disInstr_THUMB_WRK()
19048 case BITS5(1,1,0,0,0): { in disInstr_THUMB_WRK()
19094 case BITS5(0,0,0,0,0): /* LSLS */ in disInstr_THUMB_WRK()
19095 case BITS5(0,0,0,0,1): /* LSRS */ in disInstr_THUMB_WRK()
19096 case BITS5(0,0,0,1,0): { /* ASRS */ in disInstr_THUMB_WRK()
19113 case BITS5(0,0,0,0,0): in disInstr_THUMB_WRK()
19119 case BITS5(0,0,0,0,1): in disInstr_THUMB_WRK()
19125 case BITS5(0,0,0,1,0): in disInstr_THUMB_WRK()
19143 case BITS5(1,1,1,0,0): { in disInstr_THUMB_WRK()
19257 if (BITS5(1,1,1,1,0) == INSN0(15,11) && BITS2(1,1) == INSN1(15,14)) { in disInstr_THUMB_WRK()
19380 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19381 && INSN0(9,5) == BITS5(0,1,0,0,0) in disInstr_THUMB_WRK()
19408 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19433 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19455 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19486 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19487 && (INSN0(9,5) == BITS5(0,1,1,0,1) // SUB in disInstr_THUMB_WRK()
19488 || INSN0(9,5) == BITS5(0,1,1,1,0)) // RSB in disInstr_THUMB_WRK()
19490 Bool isRSB = INSN0(9,5) == BITS5(0,1,1,1,0); in disInstr_THUMB_WRK()
19523 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19548 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19549 && ( INSN0(9,5) == BITS5(0,1,0,1,0) // ADC in disInstr_THUMB_WRK()
19550 || INSN0(9,5) == BITS5(0,1,0,1,1)) // SBC in disInstr_THUMB_WRK()
19568 case BITS5(0,1,0,1,0): // ADC in disInstr_THUMB_WRK()
19579 case BITS5(0,1,0,1,1): // SBC in disInstr_THUMB_WRK()
19603 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
19604 && ( INSN0(9,5) == BITS5(0,0,0,1,0) // ORR in disInstr_THUMB_WRK()
19605 || INSN0(9,5) == BITS5(0,0,0,0,0) // AND in disInstr_THUMB_WRK()
19606 || INSN0(9,5) == BITS5(0,0,0,0,1) // BIC in disInstr_THUMB_WRK()
19607 || INSN0(9,5) == BITS5(0,0,1,0,0) // EOR in disInstr_THUMB_WRK()
19608 || INSN0(9,5) == BITS5(0,0,0,1,1)) // ORN in disInstr_THUMB_WRK()
19618 case BITS5(0,0,0,1,0): op = Iop_Or32; nm = "orr"; break; in disInstr_THUMB_WRK()
19619 case BITS5(0,0,0,0,0): op = Iop_And32; nm = "and"; break; in disInstr_THUMB_WRK()
19620 case BITS5(0,0,0,0,1): op = Iop_And32; nm = "bic"; in disInstr_THUMB_WRK()
19622 case BITS5(0,0,1,0,0): op = Iop_Xor32; nm = "eor"; break; in disInstr_THUMB_WRK()
19623 case BITS5(0,0,0,1,1): op = Iop_Or32; nm = "orn"; in disInstr_THUMB_WRK()
19948 && ( INSN0(8,4) == BITS5(0,0,0,0,1) // TST in disInstr_THUMB_WRK()
19949 || INSN0(8,4) == BITS5(0,1,0,0,1)) // TEQ in disInstr_THUMB_WRK()
19955 Bool isTST = INSN0(8,4) == BITS5(0,0,0,0,1); in disInstr_THUMB_WRK()
19989 && ( INSN0(8,4) == BITS5(1,1,0,1,1) // CMP in disInstr_THUMB_WRK()
19990 || INSN0(8,4) == BITS5(1,0,0,0,1)) // CMN in disInstr_THUMB_WRK()
19996 Bool isCMN = INSN0(8,4) == BITS5(1,0,0,0,1); in disInstr_THUMB_WRK()
20021 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
20022 && ( INSN0(9,5) == BITS5(0,0,0,1,0) // MOV in disInstr_THUMB_WRK()
20023 || INSN0(9,5) == BITS5(0,0,0,1,1)) // MVN in disInstr_THUMB_WRK()
20052 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
20066 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
20101 case BITS5(0,0,0,0,0): // strb in disInstr_THUMB_WRK()
20103 case BITS5(0,0,0,0,1): // ldrb in disInstr_THUMB_WRK()
20105 case BITS5(1,0,0,0,1): // ldrsb in disInstr_THUMB_WRK()
20107 case BITS5(0,0,0,1,0): // strh in disInstr_THUMB_WRK()
20109 case BITS5(0,0,0,1,1): // ldrh in disInstr_THUMB_WRK()
20111 case BITS5(1,0,0,1,1): // ldrsh in disInstr_THUMB_WRK()
20113 case BITS5(0,0,1,0,0): // str in disInstr_THUMB_WRK()
20115 case BITS5(0,0,1,0,1): in disInstr_THUMB_WRK()
20293 case BITS5(0,0,0,0,0): // strb in disInstr_THUMB_WRK()
20295 case BITS5(0,0,0,0,1): // ldrb in disInstr_THUMB_WRK()
20297 case BITS5(1,0,0,0,1): // ldrsb in disInstr_THUMB_WRK()
20299 case BITS5(0,0,0,1,0): // strh in disInstr_THUMB_WRK()
20301 case BITS5(0,0,0,1,1): // ldrh in disInstr_THUMB_WRK()
20303 case BITS5(1,0,0,1,1): // ldrsh in disInstr_THUMB_WRK()
20305 case BITS5(0,0,1,0,0): // str in disInstr_THUMB_WRK()
20307 case BITS5(0,0,1,0,1): in disInstr_THUMB_WRK()
20687 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()
20727 if (INSN0(15,11) == BITS5(1,1,1,1,0) in disInstr_THUMB_WRK()