Home
last modified time | relevance | path

Searched refs:GetRangeBase (Results 1 – 25 of 35) sorted by relevance

12

/src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ !
H A DMemoryTagManagerAArch64MTE.cpp57 lldb::addr_t new_start = range.GetRangeBase(); in ExpandToGranule()
106 return region.GetRange().Contains(remaining_range.GetRangeBase()); in MakeTaggedRange()
115 tag_range.GetRangeBase(), in MakeTaggedRange()
153 return lhs.GetRange().GetRangeBase() < rhs.GetRange().GetRangeBase(); in MakeTaggedRanges()
198 std::max(range.GetRangeBase(), region.GetRange().GetRangeBase()); in MakeTaggedRanges()
/src/contrib/llvm-project/lldb/include/lldb/Utility/ !
H A DRangeMap.h45 BaseType GetRangeBase() const { return base; } in GetRangeBase() function
68 const BaseType lhs_base = this->GetRangeBase(); in Intersect()
69 const BaseType rhs_base = rhs.GetRangeBase(); in Intersect()
94 return (GetRangeBase() <= r) && (r < GetRangeEnd()); in Contains()
98 return (GetRangeBase() <= r) && (r <= GetRangeEnd()); in ContainsEndInclusive()
102 return Contains(range.GetRangeBase()) && in Contains()
108 const BaseType lhs_base = this->GetRangeBase(); in DoesAdjoinOrIntersect()
109 const BaseType rhs_base = rhs.GetRangeBase(); in DoesAdjoinOrIntersect()
269 return m_entries.front().GetRangeBase(); in GetMinRangeBase()
313 return lhs.GetRangeBase() < rhs.GetRangeBase(); in BaseLessThan()
[all …]
/src/contrib/llvm-project/lldb/source/Symbol/ !
H A DBlock.cpp48 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in GetDescription()
91 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in Dump()
174 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in DumpAddressRanges()
267 range_ptr->GetRangeBase()); in GetRangeContainingAddress()
309 range.GetBaseAddress().Slide(vm_range.GetRangeBase()); in GetRangeAtIndex()
327 range.GetBaseAddress().Slide(vm_range.GetRangeBase()); in GetRanges()
340 addr.Slide(m_ranges.GetEntryRef(0).GetRangeBase()); in GetStartAddress()
360 const addr_t block_start_addr = function_file_addr + range.GetRangeBase(); in AddRange()
H A DLineTable.cpp394 if (range.GetRangeBase() != LLDB_INVALID_ADDRESS) { in GetContiguousFileAddressRanges()
399 } else if (range.GetRangeBase() == LLDB_INVALID_ADDRESS) { in GetContiguousFileAddressRanges()
435 file_range_entry->GetRangeBase() + in LinkLineTable()
443 prev_file_range_entry->GetRangeBase() + prev_file_range_entry->data; in LinkLineTable()
465 prev_file_range_entry->GetRangeBase() + prev_file_range_entry->data; in LinkLineTable()
H A DSymtab.cpp977 addr_t curr_base_addr = entry->GetRangeBase(); in InitAddressIndexes()
986 (entry->GetRangeBase() - containing_section->GetRangeBase()); in InitAddressIndexes()
992 addr_t next_base_addr = next_entry->GetRangeBase(); in InitAddressIndexes()
/src/contrib/llvm-project/lldb/source/Commands/ !
H A DCommandObjectMemoryTag.cpp110 tagged_range->GetRangeBase(), tagged_range->GetByteSize()); in DoExecute()
120 addr_t addr = tagged_range->GetRangeBase(); in DoExecute()
259 .GetRangeBase(); in DoExecute()
289 Status status = process->WriteMemoryTags(tagged_range->GetRangeBase(), in DoExecute()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ !
H A DDWARFCompileUnit.cpp47 debug_aranges->AppendRange(cu_offset, range.GetRangeBase(), in BuildAddressRangeTable()
87 debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), in BuildAddressRangeTable()
H A DDWARFDebugAranges.cpp81 entry->GetRangeBase(), entry->GetRangeEnd()); in Dump()
H A DSymbolFileDWARFDebugMap.cpp847 exe_file_addr - debug_map_entry->GetRangeBase() + in ResolveSymbolContext()
1443 entry.GetRangeBase(), entry.GetRangeEnd(), entry.data, in FinalizeOSOFileRanges()
1461 oso_file_addr - oso_range_entry->GetRangeBase(); in LinkOSOFileAddress()
1463 debug_map_entry->GetRangeBase() + offset; in LinkOSOFileAddress()
1489 oso_file_addr - oso_range_entry->GetRangeBase(); in LinkOSOAddress()
1491 debug_map_entry->GetRangeBase() + offset; in LinkOSOAddress()
1520 entry->GetRangeBase(), in AddOSOARanges()
/src/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ !
H A DProcessElfCore.cpp125 if (last_entry && last_entry->GetRangeEnd() == range_entry.GetRangeBase() && in AddAddressRangeFromLoadSegment()
126 last_entry->data.GetRangeEnd() == range_entry.data.GetRangeBase() && in AddAddressRangeFromLoadSegment()
331 region_info.GetRange().SetRangeBase(permission_entry->GetRangeBase()); in DoGetMemoryRegionInfo()
349 m_core_tag_ranges.FindEntryStartsAt(permission_entry->GetRangeBase()); in DoGetMemoryRegionInfo()
353 } else if (load_addr < permission_entry->GetRangeBase()) { in DoGetMemoryRegionInfo()
355 region_info.GetRange().SetRangeEnd(permission_entry->GetRangeBase()); in DoGetMemoryRegionInfo()
392 const lldb::addr_t offset = addr - address_range->GetRangeBase(); in DoReadMemory()
393 const lldb::addr_t file_start = address_range->data.GetRangeBase(); in DoReadMemory()
450 tag_entry->GetRangeBase(), tag_entry->data.GetRangeBase(), addr, len); in ReadMemoryTags()
/src/contrib/llvm-project/lldb/include/lldb/Target/ !
H A DMemoryRegionInfo.h161 return lhs.GetRange().GetRangeBase() < rhs;
165 return lhs < rhs.GetRange().GetRangeBase();
H A DMemory.h81 lldb::addr_t GetBaseAddress() const { return m_range.GetRangeBase(); } in GetBaseAddress()
/src/contrib/llvm-project/lldb/source/Target/ !
H A DMemoryRegionInfo.cpp17 Info.GetRange().GetRangeBase(), in operator <<()
H A DMemory.cpp118 if (entry->GetRangeBase() == base_addr && in RemoveInvalidRange()
183 memcpy(dst, pos->second->GetBytes() + (addr - chunk_range.GetRangeBase()), in Read()
295 addr_t addr = free_block.GetRangeBase(); in ReserveBlock()
H A DMemoryTagMap.cpp40 addr = range.GetRangeBase(); in GetTags()
/src/contrib/llvm-project/lldb/source/Expression/ !
H A DDWARFExpressionList.cpp153 addr_t load_base = entry.GetRangeBase() + func_load_addr - m_func_file_addr; in DumpLocations()
193 llvm::DWARFFormValue::dumpAddress(os, addr_size, entry.GetRangeBase()); in GetDescription()
/src/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ !
H A DNativeProcessNetBSD.cpp640 assert((proc_entry_info.GetRange().GetRangeBase() >= prev_base_address) && in GetMemoryRegionInfo()
642 prev_base_address = proc_entry_info.GetRange().GetRangeBase(); in GetMemoryRegionInfo()
646 if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { in GetMemoryRegionInfo()
649 proc_entry_info.GetRange().GetRangeBase() - load_addr); in GetMemoryRegionInfo()
786 load_addr = it.first.GetRange().GetRangeBase(); in GetFileLoadAddress()
/src/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ !
H A DNativeProcessFreeBSD.cpp604 assert((proc_entry_info.GetRange().GetRangeBase() >= prev_base_address) && in GetMemoryRegionInfo()
606 prev_base_address = proc_entry_info.GetRange().GetRangeBase(); in GetMemoryRegionInfo()
610 if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { in GetMemoryRegionInfo()
613 proc_entry_info.GetRange().GetRangeBase() - load_addr); in GetMemoryRegionInfo()
767 load_addr = it.first.GetRange().GetRangeBase(); in GetFileLoadAddress()
/src/contrib/llvm-project/lldb/source/API/ !
H A DSBMemoryRegionInfo.cpp88 return m_opaque_up->GetRange().GetRangeBase(); in GetRegionBase()
/src/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ !
H A DObjectFileELF.cpp1834 auto It = Segments.find(Range.GetRangeBase()); in GetAddressInfo()
1837 if (It.start() <= Range.GetRangeBase()) { in GetAddressInfo()
1838 MaxSize = It.stop() - Range.GetRangeBase(); in GetAddressInfo()
1841 MaxSize = It.start() - Range.GetRangeBase(); in GetAddressInfo()
1849 Sections.overlaps(Range.GetRangeBase(), Range.GetRangeEnd())) { in GetAddressInfo()
1859 Segments.insert(Range.GetRangeBase(), Range.GetRangeEnd(), std::move(Seg)); in AddSegment()
1868 Sections.insert(Info.Range.GetRangeBase(), Info.Range.GetRangeEnd(), in AddSection()
1930 InfoOr->GetRangeBase(), InfoOr->GetByteSize(), PHdr.p_offset, in CreateSections()
1972 InfoOr->Range.GetRangeBase(), // VM address. in CreateSections()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ !
H A DPdbUtil.cpp98 lldb::addr_t base = range.GetRangeBase(); in AddMemberLocationRanges()
149 lldb::addr_t base = range.GetRangeBase(); in AddDwarfRange()
912 result.location.AddExpression(entry.GetRangeBase(), entry.GetRangeEnd(), in GetVariableLocationInfo()
/src/contrib/llvm-project/lldb/source/Core/ !
H A DDumpDataExtractor.cpp283 process_sp->ReadMemoryTags(range.GetRangeBase(), range.GetByteSize()); in GetMemoryTags()
286 memory_tag_map.InsertTags(range.GetRangeBase(), *tags_or_err); in GetMemoryTags()
H A DAddress.cpp755 DumpAddressRange(s->AsRawOstream(), range.GetRangeBase(), in Dump()
760 DumpAddressRange(s->AsRawOstream(), range->GetRangeBase(), in Dump()
/src/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ !
H A DProcessMinidump.cpp353 region.GetRange().GetRangeBase() <= section_range.GetRangeBase() && in BuildMemoryRegions()
/src/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ !
H A DScriptedProcess.cpp307 address += range.GetRangeBase() + range.GetByteSize(); in GetMemoryRegions()

12