Lines Matching refs:Bit32
630 const uint32_t sf = Bit32(opcode, 31); in EmulateADDSUBImm()
631 const uint32_t op = Bit32(opcode, 30); in EmulateADDSUBImm()
632 const uint32_t S = Bit32(opcode, 29); in EmulateADDSUBImm()
711 uint32_t V = Bit32(opcode, 26); in EmulateLDPSTP()
712 uint32_t L = Bit32(opcode, 22); in EmulateLDPSTP()
966 if (Bit32(opc, 1) == 0) { in EmulateLDRSTRImm()
967 memop = Bit32(opc, 0) == 1 ? MemOp_LOAD : MemOp_STORE; in EmulateLDRSTRImm()
970 if (size == 2 && Bit32(opc, 0) == 1) in EmulateLDRSTRImm()
1080 BranchType branch_type = Bit32(opcode, 31) ? BranchType_CALL : BranchType_JMP; in EmulateB()
1143 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ()
1178 uint32_t bit_pos = (Bit32(opcode, 31) << 6) | (Bits32(opcode, 23, 19)); in EmulateTBZ()
1179 uint32_t bit_val = Bit32(opcode, 24); in EmulateTBZ()
1187 if (m_ignore_conditions || Bit32(operand, bit_pos) == bit_val) { in EmulateTBZ()