Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DInstructionUtils.h21 static inline uint64_t Bits64(const uint64_t bits, const uint32_t msbit, in Bits64() function
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp11588 if (!MemAWrite(context, address, Bits64(data, 63, 32), in EmulateVSTM()
11594 if (!MemAWrite(context, address + 4, Bits64(data, 31, 0), in EmulateVSTM()
11600 if (!MemAWrite(context, address, Bits64(data, 31, 0), addr_byte_size)) in EmulateVSTM()
11605 if (!MemAWrite(context, address + 4, Bits64(data, 63, 32), in EmulateVSTM()
11854 if (!MemAWrite(context, address, Bits64(data, 63, 32), addr_byte_size)) in EmulateVSTR()
11859 if (!MemAWrite(context, address + 4, Bits64(data, 31, 0), in EmulateVSTR()
11863 if (!MemAWrite(context, address, Bits64(data, 31, 0), addr_byte_size)) in EmulateVSTR()
11868 if (!MemAWrite(context, address + 4, Bits64(data, 63, 32), in EmulateVSTR()
12195 mask = mask | Bits64(all_ones, (index * esize) - 1, in EmulateVLD1Single()
12354 uint64_t word = Bits64(register_data, ((e + 1) * esize) - 1, e * esize); in EmulateVST1Multiple()
[all …]
/external/llvm-project/lldb/source/Plugins/Instruction/ARM64/
DEmulateInstructionARM64.cpp580 result = Bits64(result, N - 1, 0); in AddWithCarry()