Home
last modified time | relevance | path

Searched refs:Bit32 (Results 1 – 3 of 3) sorted by relevance

/trueos/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
HDARMUtils.h102 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()
HDInstructionUtils.h37 Bit32 (const uint32_t bits, const uint32_t bit) in Bit32() function
/trueos/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
HDEmulateInstructionARM.cpp34 #define APSR_C Bit32(m_opcode_cpsr, CPSR_C_POS)
35 #define APSR_V Bit32(m_opcode_cpsr, CPSR_V_POS)
400 if (Bit32(opcode, 8)) in EmulatePUSH()
523 if (Bit32(opcode, 8)) in EmulatePOP()
533 if (BitCount(registers) < 2 || (Bit32(opcode, 15) && Bit32(opcode, 14))) in EmulatePOP()
772 Rd = Bit32(opcode, 7) << 3 | Bits32(opcode, 2, 0); in EmulateMOVRdRm()
882 uint32_t i = Bit32 (opcode, 26); in EmulateMOVRdImm()
1051 SetBit32 (m_new_inst_cpsr, CPSR_N_POS, Bit32 (result, 31)); in EmulateMUL()
1488 uint32_t S = Bit32(opcode, 26); in EmulateBLXImmediate()
1490 uint32_t J1 = Bit32(opcode, 13); in EmulateBLXImmediate()
[all …]