Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h46 BaseType GetRangeBase() const { return base; } in GetRangeBase() function
78 return (GetRangeBase() <= r) && (r < GetRangeEnd()); in Contains()
82 return (GetRangeBase() <= r) && (r <= GetRangeEnd()); in ContainsEndInclusive()
86 return Contains(range.GetRangeBase()) && in Contains()
92 const BaseType lhs_base = this->GetRangeBase(); in DoesAdjoinOrIntersect()
93 const BaseType rhs_base = rhs.GetRangeBase(); in DoesAdjoinOrIntersect()
102 const BaseType lhs_base = this->GetRangeBase(); in DoesIntersect()
103 const BaseType rhs_base = rhs.GetRangeBase(); in DoesIntersect()
226 return m_entries.front().GetRangeBase(); in GetMinRangeBase()
270 return lhs.GetRangeBase() < rhs.GetRangeBase(); in BaseLessThan()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp47 debug_aranges->AppendRange(cu_offset, range.GetRangeBase(), in BuildAddressRangeTable()
72 debug_aranges->AppendRange(cu_offset, range.GetRangeBase(), in BuildAddressRangeTable()
95 debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), in BuildAddressRangeTable()
H A DSymbolFileDWARFDebugMap.cpp794 exe_file_addr - debug_map_entry->GetRangeBase() + in ResolveSymbolContext()
1361 entry.GetRangeBase(), entry.GetRangeEnd(), entry.data, in FinalizeOSOFileRanges()
1379 oso_file_addr - oso_range_entry->GetRangeBase(); in LinkOSOFileAddress()
1381 debug_map_entry->GetRangeBase() + offset; in LinkOSOFileAddress()
1407 oso_file_addr - oso_range_entry->GetRangeBase(); in LinkOSOAddress()
1409 debug_map_entry->GetRangeBase() + offset; in LinkOSOAddress()
1437 debug_aranges->AppendRange(dwarf2Data->GetID(), entry->GetRangeBase(), in AddOSOARanges()
H A DDWARFDebugAranges.cpp80 entry->GetRangeBase(), entry->GetRangeEnd()); in Dump()
H A DDWARFDebugInfoEntry.cpp701 debug_aranges->AppendRange(GetOffset(), r.GetRangeBase(), in BuildFunctionAddressRangeTable()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemoryTag.cpp97 tagged_range->GetRangeBase(), tagged_range->GetByteSize()); in DoExecute()
108 addr_t addr = tagged_range->GetRangeBase(); in DoExecute()
243 .GetRangeBase(); in DoExecute()
269 Status status = process->WriteMemoryTags(tagged_range->GetRangeBase(), in DoExecute()
H A DCommandObjectMemory.cpp1673 range_info.GetRange().GetRangeBase(), in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp47 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in GetDescription()
90 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in Dump()
163 DumpAddressRange(s->AsRawOstream(), base_addr + range.GetRangeBase(), in DumpAddressRanges()
256 range_ptr->GetRangeBase()); in GetRangeContainingAddress()
298 range.GetBaseAddress().Slide(vm_range.GetRangeBase()); in GetRangeAtIndex()
313 addr.Slide(m_ranges.GetEntryRef(0).GetRangeBase()); in GetStartAddress()
333 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.cpp958 addr_t curr_base_addr = entry->GetRangeBase(); in InitAddressIndexes()
967 (entry->GetRangeBase() - containing_section->GetRangeBase()); in InitAddressIndexes()
973 addr_t next_base_addr = next_entry->GetRangeBase(); in InitAddressIndexes()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp55 lldb::addr_t new_start = range.GetRangeBase(); in ExpandToGranule()
100 return region.GetRange().Contains(remaining_range.GetRangeBase()); in MakeTaggedRange()
109 tag_range.GetRangeBase(), in MakeTaggedRange()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemoryRegionInfo.h147 return lhs.GetRange().GetRangeBase() < rhs;
151 return lhs < rhs.GetRange().GetRangeBase();
H A DMemory.h79 lldb::addr_t GetBaseAddress() const { return m_range.GetRangeBase(); } in GetBaseAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp129 if (last_entry && last_entry->GetRangeEnd() == range_entry.GetRangeBase() && in AddAddressRangeFromLoadSegment()
130 last_entry->data.GetRangeEnd() == range_entry.data.GetRangeBase() && in AddAddressRangeFromLoadSegment()
301 region_info.GetRange().SetRangeBase(permission_entry->GetRangeBase()); in GetMemoryRegionInfo()
314 } else if (load_addr < permission_entry->GetRangeBase()) { in GetMemoryRegionInfo()
316 region_info.GetRange().SetRangeEnd(permission_entry->GetRangeBase()); in GetMemoryRegionInfo()
351 const lldb::addr_t offset = addr - address_range->GetRangeBase(); in DoReadMemory()
352 const lldb::addr_t file_start = address_range->data.GetRangeBase(); in DoReadMemory()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DMemoryRegionInfo.cpp17 Info.GetRange().GetRangeBase(), in operator <<()
H A DMemory.cpp117 if (entry->GetRangeBase() == base_addr && in RemoveInvalidRange()
145 memcpy(dst, pos->second->GetBytes() + (addr - chunk_range.GetRangeBase()), in Read()
280 addr_t addr = free_block.GetRangeBase(); in ReserveBlock()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp620 assert((proc_entry_info.GetRange().GetRangeBase() >= prev_base_address) && in GetMemoryRegionInfo()
622 prev_base_address = proc_entry_info.GetRange().GetRangeBase(); in GetMemoryRegionInfo()
626 if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { in GetMemoryRegionInfo()
629 proc_entry_info.GetRange().GetRangeBase() - load_addr); in GetMemoryRegionInfo()
766 load_addr = it.first.GetRange().GetRangeBase(); in GetFileLoadAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp571 assert((proc_entry_info.GetRange().GetRangeBase() >= prev_base_address) && in GetMemoryRegionInfo()
573 prev_base_address = proc_entry_info.GetRange().GetRangeBase(); in GetMemoryRegionInfo()
577 if (load_addr < proc_entry_info.GetRange().GetRangeBase()) { in GetMemoryRegionInfo()
580 proc_entry_info.GetRange().GetRangeBase() - load_addr); in GetMemoryRegionInfo()
726 load_addr = it.first.GetRange().GetRangeBase(); in GetFileLoadAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBMemoryRegionInfo.cpp80 return m_opaque_up->GetRange().GetRangeBase(); in GetRegionBase()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp192 memory_info.GetRange().GetRangeBase() == base_addr && in LoadModuleAtAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp280 address += range.GetRangeBase() + range.GetByteSize(); in GetMemoryRegions()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1741 auto It = Segments.find(Range.GetRangeBase()); in GetAddressInfo()
1744 if (It.start() <= Range.GetRangeBase()) { in GetAddressInfo()
1745 MaxSize = It.stop() - Range.GetRangeBase(); in GetAddressInfo()
1748 MaxSize = It.start() - Range.GetRangeBase(); in GetAddressInfo()
1756 Sections.overlaps(Range.GetRangeBase(), Range.GetRangeEnd())) { in GetAddressInfo()
1766 Segments.insert(Range.GetRangeBase(), Range.GetRangeEnd(), std::move(Seg)); in AddSegment()
1775 Sections.insert(Info.Range.GetRangeBase(), Info.Range.GetRangeEnd(), in AddSection()
1804 InfoOr->GetRangeBase(), InfoOr->GetByteSize(), PHdr.p_offset, in CreateSections()
1846 InfoOr->Range.GetRangeBase(), // VM address. in CreateSections()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp434 region.GetRange().GetRangeBase() <= section_range.GetRangeBase() && in BuildMemoryRegions()
H A DMinidumpParser.cpp708 region.GetRange().SetRangeEnd(pos->GetRange().GetRangeBase()); in GetMemoryRegionInfo()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2881 if (range.GetRangeBase() < last_range.GetRangeEnd()) { in FlashErase()
2882 auto overlap = last_range.GetRangeEnd() - range.GetRangeBase(); in FlashErase()
2886 range.SetRangeBase(range.GetRangeBase() + overlap); in FlashErase()
2891 packet.Printf("vFlashErase:%" PRIx64 ",%" PRIx64, range.GetRangeBase(), in FlashErase()

12