Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp981 if (BitIsSet(registers, i)) { in EmulatePUSH()
993 if (BitIsSet(registers, 15)) { in EmulatePUSH()
1065 if (BitIsSet(registers, 15) && InITBlock() && !LastInITBlock()) in EmulatePOP()
1085 if (BitIsSet(opcode, 13) && ArchVersion() >= ARMv7) in EmulatePOP()
1109 if (BitIsSet(registers, i)) { in EmulatePOP()
1121 if (BitIsSet(registers, 15)) { in EmulatePOP()
1311 setflags = BitIsSet(opcode, 20); in EmulateMOVRdRm()
1323 setflags = BitIsSet(opcode, 20); in EmulateMOVRdRm()
1397 setflags = BitIsSet(opcode, 20); in EmulateMOVRdImm()
1424 setflags = BitIsSet(opcode, 20); in EmulateMOVRdImm()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DInstructionUtils.h89 static inline bool BitIsSet(const uint64_t value, const uint64_t bit) { in BitIsSet() function
107 if (BitIsSet(value, msbit)) { in SignedBits()
DARMUtils.h144 bool negative = BitIsSet(value, 31); in ASR_C()