Searched refs:Bit32 (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | ARMUtils.h | 96 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0; in LSL_C() 120 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0; in LSR_C() 146 carry_out = Bit32(value, amount - 1); in ASR_C() 177 carry_out = Bit32(value, 31); in ROR_C() 197 carry_out = Bit32(value, 0); in RRX_C() 198 return Bit32(carry_in, 0) << 31 | Bits32(value, 31, 1); in RRX_C() 289 carry_out = Bit32(imm32, 31); in ARMExpandImm_C() 334 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
|
| /llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.cpp | 614 const uint32_t sf = Bit32(opcode, 31); in EmulateADDSUBImm() 615 const uint32_t op = Bit32(opcode, 30); in EmulateADDSUBImm() 616 const uint32_t S = Bit32(opcode, 29); in EmulateADDSUBImm() 695 uint32_t V = Bit32(opcode, 26); in EmulateLDPSTP() 696 uint32_t L = Bit32(opcode, 22); in EmulateLDPSTP() 946 if (Bit32(opc, 1) == 0) { in EmulateLDRSTRImm() 947 memop = Bit32(opc, 0) == 1 ? MemOp_LOAD : MemOp_STORE; in EmulateLDRSTRImm() 950 if (size == 2 && Bit32(opc, 0) == 1) in EmulateLDRSTRImm() 1123 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() 1159 uint32_t bit_val = Bit32(opcode, 24); in EmulateTBZ() [all …]
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/ |
| H A D | EmulateInstructionARM.cpp | 930 if (Bit32(opcode, 8)) in EmulatePUSH() 1045 if (Bit32(opcode, 8)) in EmulatePOP() 1056 if (BitCount(registers) < 2 || (Bit32(opcode, 15) && Bit32(opcode, 14))) in EmulatePOP() 1406 uint32_t i = Bit32(opcode, 26); in EmulateMOVRdImm() 1873 setflags = Bit32(opcode, 20); in EmulateADDSPImm() 1889 uint32_t i = Bit32(opcode, 26); in EmulateADDSPImm() 8742 wordhigher = (Bit32(opcode, 24) == Bit32(opcode, 23)); in EmulateRFE() 11252 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVLDM() 11287 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVLDM() 11446 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVSTM() [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-ar/ |
| H A D | llvm-ar.cpp | 222 enum class BitModeTy { Bit32, Bit64, Bit32_64, Any, Unknown }; enumerator 224 static BitModeTy BitMode = BitModeTy::Bit32; 674 if ((Is64Bit && (BitMode == BitModeTy::Bit32)) || in isValidInBitMode() 1271 .Case("32", BitModeTy::Bit32) in getBitMode() 1332 BitMode = BitModeTy::Bit32; in ar_main()
|
| /llvm-project-15.0.7/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 87 enum class BitModeTy { Bit32, Bit64, Bit32_64, Any }; enumerator 1667 return isSymbolList64Bit(Obj) ? BitMode != BitModeTy::Bit32 in shouldDump() 2378 BitMode = BitModeTy::Bit32; in main()
|