Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp977 if (BitIsSet(registers, i)) { in EmulatePUSH()
990 if (BitIsSet(registers, 15)) { in EmulatePUSH()
1063 if (BitIsSet(registers, 15) && InITBlock() && !LastInITBlock()) in EmulatePOP()
1083 if (BitIsSet(opcode, 13) && ArchVersion() >= ARMv7) in EmulatePOP()
1107 if (BitIsSet(registers, i)) { in EmulatePOP()
1119 if (BitIsSet(registers, 15)) { in EmulatePOP()
1309 setflags = BitIsSet(opcode, 20); in EmulateMOVRdRm()
1321 setflags = BitIsSet(opcode, 20); in EmulateMOVRdRm()
1395 setflags = BitIsSet(opcode, 20); in EmulateMOVRdImm()
1422 setflags = BitIsSet(opcode, 20); in EmulateMOVRdImm()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h89 static inline bool BitIsSet(const uint64_t value, const uint64_t bit) { in BitIsSet() function
107 if (BitIsSet(value, msbit)) { in SignedBits()
H A DARMUtils.h146 bool negative = BitIsSet(value, 31); in ASR_C()