Searched refs:Bit32 (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | ARMUtils.h | 98 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0; in LSL_C() 122 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0; in LSR_C() 148 carry_out = Bit32(value, amount - 1); in ASR_C() 178 carry_out = Bit32(value, 31); in ROR_C() 198 carry_out = Bit32(value, 0); in RRX_C() 199 return Bit32(carry_in, 0) << 31 | Bits32(value, 31, 1); in RRX_C() 290 carry_out = Bit32(imm32, 31); in ARMExpandImm_C() 337 carry_out = Bit32(imm32, 31); in ThumbExpandImm_C()
|
H A D | InstructionUtils.h | 36 static inline uint32_t Bit32(const uint32_t bits, const uint32_t bit) { in Bit32() function
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
H A D | EmulateInstructionARM64.cpp | 616 const uint32_t sf = Bit32(opcode, 31); in EmulateADDSUBImm() 617 const uint32_t op = Bit32(opcode, 30); in EmulateADDSUBImm() 618 const uint32_t S = Bit32(opcode, 29); in EmulateADDSUBImm() 698 uint32_t V = Bit32(opcode, 26); in EmulateLDPSTP() 699 uint32_t L = Bit32(opcode, 22); in EmulateLDPSTP() 960 if (Bit32(opc, 1) == 0) { in EmulateLDRSTRImm() 961 memop = Bit32(opc, 0) == 1 ? MemOp_LOAD : MemOp_STORE; in EmulateLDRSTRImm() 964 if (size == 2 && Bit32(opc, 0) == 1) in EmulateLDRSTRImm() 1081 BranchType branch_type = Bit32(opcode, 31) ? BranchType_CALL : BranchType_JMP; in EmulateB() 1144 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/ |
H A D | ArchitectureArm.cpp | 77 const uint32_t J = Bit32(cpsr, 24); in OverrideStopInfo() 78 const uint32_t T = Bit32(cpsr, 5); in OverrideStopInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.cpp | 36 #define APSR_C Bit32(m_opcode_cpsr, CPSR_C_POS) in LLDB_PLUGIN_DEFINE_ADV() 37 #define APSR_V Bit32(m_opcode_cpsr, CPSR_V_POS) in LLDB_PLUGIN_DEFINE_ADV() 932 if (Bit32(opcode, 8)) in EmulatePUSH() 1048 if (Bit32(opcode, 8)) in EmulatePOP() 1059 if (BitCount(registers) < 2 || (Bit32(opcode, 15) && Bit32(opcode, 14))) in EmulatePOP() 1293 Rd = Bit32(opcode, 7) << 3 | Bits32(opcode, 2, 0); in EmulateMOVRdRm() 1409 uint32_t i = Bit32(opcode, 26); in EmulateMOVRdImm() 1580 SetBit32(m_new_inst_cpsr, CPSR_N_POS, Bit32(result, 31)); in EmulateMUL() 1876 setflags = Bit32(opcode, 20); in EmulateADDSPImm() 1892 uint32_t i = Bit32(opcode, 26); in EmulateADDSPImm() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 217 enum class BitModeTy { Bit32, Bit64, Bit32_64, Any, Unknown }; enumerator 219 static BitModeTy BitMode = BitModeTy::Bit32; 651 if ((Is64Bit && (BitMode == BitModeTy::Bit32)) || in isValidInBitMode() 1288 .Case("32", BitModeTy::Bit32) in getBitMode() 1348 BitMode = BitModeTy::Bit32; in ar_main() 1490 case BitModeTy::Bit32: in ranlib_main()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 89 enum class BitModeTy { Bit32, Bit64, Bit32_64, Any }; enumerator 1695 return Obj.is64Bit() ? BitMode != BitModeTy::Bit32 in shouldDump() 2483 .Case("32", BitModeTy::Bit32) in llvm_nm_main() 2487 .Default(BitModeTy::Bit32); in llvm_nm_main() 2494 BitMode = BitModeTy::Bit32; in llvm_nm_main()
|