Home
last modified time | relevance | path

Searched refs:GetMaxU64 (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp25 static bool GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function
29 *value = data.GetMaxU64(offset, byte_size); in GetMaxU64()
33 static bool GetMaxU64(const lldb_private::DataExtractor &data, in GetMaxU64() function
39 if (!GetMaxU64(data, offset, value, byte_size)) { in GetMaxU64()
133 if (!GetMaxU64(data, offset, &e_entry, byte_size, 3)) in Parse()
237 if (!GetMaxU64(data, offset, &sh_flags, byte_size)) in Parse()
241 if (!GetMaxU64(data, offset, &sh_addr, byte_size, 3)) in Parse()
249 if (!GetMaxU64(data, offset, &sh_addralign, byte_size, 2)) in Parse()
336 if (!GetMaxU64(data, offset, &st_value, byte_size, 2)) in Parse()
379 if (!GetMaxU64(data, offset, &p_offset, byte_size, 5)) in Parse()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_mips64.cpp62 v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
67 v =m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
H A DRegisterContextPOSIXCore_s390x.cpp60 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
69 uint64_t v = m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
H A DRegisterContextPOSIXCore_powerpc.cpp69 uint64_t v = m_fpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
82 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
H A DRegisterContextPOSIXCore_arm.cpp48 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
H A DRegisterContextPOSIXCore_ppc64le.cpp116 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
H A DThreadElfCore.cpp447 pr_uid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse()
448 pr_gid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp47 data.GetMaxU64(offset_ptr, DWARFUnit::GetAddressByteSize(m_unit)); in ExtractValue()
80 m_value.uval = data.GetMaxU64( in ExtractValue()
98 m_value.uval = data.GetMaxU64(offset_ptr, 3); in ExtractValue()
123 m_value.uval = data.GetMaxU64( in ExtractValue()
493 return symbol_file.GetDWARFContext().getOrLoadAddrData().GetMaxU64( in Address()
H A DDWARFUnit.cpp1082 return m_dwarf.GetDWARFContext().getOrLoadStrOffsetsData().GetMaxU64( in GetStringOffsetSectionItem()
1121 m_dwarf.GetDWARFContext().getOrLoadAddrData().GetMaxU64( in FindRnglistFromOffset()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp522 return GetMaxU64(offset_ptr, byte_size); in GetMaxU32()
525 uint64_t DataExtractor::GetMaxU64(offset_t *offset_ptr, in GetMaxU64() function in DataExtractor
570 uint64_t u64 = GetMaxU64(offset_ptr, byte_size); in GetMaxS64()
578 uint64_t uval64 = GetMaxU64(offset_ptr, size); in GetMaxU64Bitfield()
652 return GetMaxU64(offset_ptr, m_addr_size); in GetAddress()
H A DRegisterValue.cpp198 SetUInt64(src.GetMaxU64(&src_offset, src_len)); in SetValueFromData()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessStructReader.h93 return (RetType)(m_data.GetMaxU64(&offset, size));
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp274 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject()
279 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
284 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
H A DABISysV_arm64.cpp316 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject()
321 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
326 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.cpp1745 uint32_t raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
1749 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
1753 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
1757 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp696 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
701 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
705 raw_value = data.GetMaxU64(&offset, num_bytes - offset); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/LoongArch/
H A DABISysV_loongarch.cpp292 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
313 raw_value = data.GetMaxU64(&offset, num_bytes - reg_size); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataExtractor.h485 uint64_t GetMaxU64(lldb::offset_t *offset_ptr, size_t byte_size) const;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp69 u64 = data.GetMaxU64(offset_ptr, (uint32_t)bytes_left); in GetAPInt()
87 u64 = data.GetMaxU64(&temp_offset, (uint32_t)bytes_left); in GetAPInt()
H A DEmulateInstruction.cpp188 uval64 = data.GetMaxU64(&offset, byte_size); in ReadMemoryUnsigned()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp403 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
421 raw_value = data.GetMaxU64(&offset, num_bytes - reg_size); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp417 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/
H A DABISysV_arc.cpp346 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIWindows_x86_64.cpp336 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_arm64.cpp386 uint64_t retval = regdata.GetMaxU64(&offset, 8); in ReadRegister()

12