Searched refs:Bit32 (Results 1 – 3 of 3) sorted by relevance
/external/lldb/source/Plugins/Process/Utility/ |
D | ARMUtils.h | 102 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0; in LSL_C() 126 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0; in LSR_C() 153 carry_out = Bit32(value, amount - 1); in ASR_C() 186 carry_out = Bit32(value, 31); in ROR_C() 206 carry_out = Bit32(value, 0); in RRX_C() 207 return Bit32(carry_in, 0) << 31 | Bits32(value, 31, 1); in RRX_C() 303 carry_out = Bit32(imm32, 31); in ARMExpandImm_C() 351 carry_out = Bit32(imm32, 31); in ThumbExpandImm_C()
|
D | InstructionUtils.h | 37 Bit32 (const uint32_t bits, const uint32_t bit) in Bit32() function
|
/external/lldb/source/Plugins/Instruction/ARM/ |
D | EmulateInstructionARM.cpp | 34 #define APSR_C Bit32(m_opcode_cpsr, CPSR_C_POS) 35 #define APSR_V Bit32(m_opcode_cpsr, CPSR_V_POS) 372 if (Bit32(opcode, 8)) in EmulatePUSH() 495 if (Bit32(opcode, 8)) in EmulatePOP() 505 if (BitCount(registers) < 2 || (Bit32(opcode, 15) && Bit32(opcode, 14))) in EmulatePOP() 744 Rd = Bit32(opcode, 7) << 3 | Bits32(opcode, 2, 0); in EmulateMOVRdRm() 854 uint32_t i = Bit32 (opcode, 26); in EmulateMOVRdImm() 1023 SetBit32 (m_new_inst_cpsr, CPSR_N_POS, Bit32 (result, 31)); in EmulateMUL() 1460 uint32_t S = Bit32(opcode, 26); in EmulateBLXImmediate() 1462 uint32_t J1 = Bit32(opcode, 13); in EmulateBLXImmediate() [all …]
|