Lines Matching refs:Bit32
624 const uint32_t sf = Bit32(opcode, 31); in EmulateADDSUBImm()
625 const uint32_t op = Bit32(opcode, 30); in EmulateADDSUBImm()
626 const uint32_t S = Bit32(opcode, 29); in EmulateADDSUBImm()
705 uint32_t V = Bit32(opcode, 26); in EmulateLDPSTP()
706 uint32_t L = Bit32(opcode, 22); in EmulateLDPSTP()
956 if (Bit32(opc, 1) == 0) { in EmulateLDRSTRImm()
957 memop = Bit32(opc, 0) == 1 ? MemOp_LOAD : MemOp_STORE; in EmulateLDRSTRImm()
960 if (size == 2 && Bit32(opc, 0) == 1) in EmulateLDRSTRImm()
1070 BranchType branch_type = Bit32(opcode, 31) ? BranchType_CALL : BranchType_JMP; in EmulateB()
1133 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ()
1168 uint32_t bit_pos = (Bit32(opcode, 31) << 6) | (Bits32(opcode, 23, 19)); in EmulateTBZ()
1169 uint32_t bit_val = Bit32(opcode, 24); in EmulateTBZ()
1177 if (m_ignore_conditions || Bit32(operand, bit_pos) == bit_val) { in EmulateTBZ()