Home
last modified time | relevance | path

Searched refs:GetMaxU64 (Results 1 – 25 of 34) 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/SymbolFile/DWARF/
H A DDWARFFormValue.cpp48 data.GetMaxU64(offset_ptr, DWARFUnit::GetAddressByteSize(m_unit)); in ExtractValue()
80 m_value.value.uval = data.GetMaxU64(offset_ptr, 4); in ExtractValue()
97 m_value.value.uval = data.GetMaxU64(offset_ptr, 3); in ExtractValue()
126 m_value.value.uval = data.GetMaxU64(offset_ptr, ref_addr_size); in ExtractValue()
499 return symbol_file.GetDWARFContext().getOrLoadAddrData().GetMaxU64( in Address()
H A DDWARFDebugArangeSet.cpp116 arangeDescriptor.address = data.GetMaxU64(offset_ptr, m_header.addr_size); in extract()
117 arangeDescriptor.length = data.GetMaxU64(offset_ptr, m_header.addr_size); in extract()
H A DDWARFDataExtractor.cpp21 return GetMaxU64(offset_ptr, GetDWARFSizeOfOffset()); in GetDWARFOffset()
/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 DThreadElfCore.cpp385 pr_uid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse()
386 pr_gid = data.GetMaxU64(&offset, data.GetAddressByteSize() >> 1); in Parse()
H A DRegisterContextPOSIXCore_ppc64le.cpp116 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size); in ReadRegister()
/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.cpp276 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject()
281 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
286 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
H A DABISysV_arm64.cpp249 uint64_t raw_value = data.GetMaxU64(&offset, byte_size); in SetReturnValueObject()
254 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
259 raw_value = data.GetMaxU64(&offset, byte_size - offset); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp702 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
707 uint64_t raw_value = data.GetMaxU64(&offset, 8); in SetReturnValueObject()
711 raw_value = data.GetMaxU64(&offset, num_bytes - offset); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.cpp1749 uint32_t 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()
1761 raw_value = data.GetMaxU64(&offset, 4); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp325 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
343 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/ARC/
H A DABISysV_arc.cpp345 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes); in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp416 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.cpp335 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