Searched refs:Bit32 (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | ARMUtils.h | 97 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0; in LSL_C() 121 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0; in LSR_C() 147 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() 335 carry_out = Bit32(imm32, 31); in ThumbExpandImm_C()
|
| H A D | InstructionUtils.h | 37 static inline uint32_t Bit32(const uint32_t bits, const uint32_t bit) { in Bit32() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.cpp | 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() 1143 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() 1179 uint32_t bit_val = Bit32(opcode, 24); in EmulateTBZ() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 83 const uint32_t J = Bit32(cpsr, 24); in OverrideStopInfo() 84 const uint32_t T = Bit32(cpsr, 5); in OverrideStopInfo()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/ |
| H A D | EmulateInstructionARM.cpp | 945 if (Bit32(opcode, 8)) in EmulatePUSH() 1060 if (Bit32(opcode, 8)) in EmulatePOP() 1071 if (BitCount(registers) < 2 || (Bit32(opcode, 15) && Bit32(opcode, 14))) in EmulatePOP() 1419 uint32_t i = Bit32(opcode, 26); in EmulateMOVRdImm() 1886 setflags = Bit32(opcode, 20); in EmulateADDSPImm() 1902 uint32_t i = Bit32(opcode, 26); in EmulateADDSPImm() 8755 wordhigher = (Bit32(opcode, 24) == Bit32(opcode, 23)); in EmulateRFE() 11265 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVLDM() 11300 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVLDM() 11459 if ((Bit32(opcode, 24) == Bit32(opcode, 23)) && BitIsSet(opcode, 21)) in EmulateVSTM() [all …]
|