Home
last modified time | relevance | path

Searched refs:GetRangeEnd (Results 1 – 25 of 27) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DRangeMap.h59 auto new_end = std::max<BaseType>(GetRangeEnd(), rhs.GetRangeEnd()); in Union()
70 const BaseType lhs_end = this->GetRangeEnd(); in Intersect()
71 const BaseType rhs_end = rhs.GetRangeEnd(); in Intersect()
78 BaseType GetRangeEnd() const { return base + size; } in GetRangeEnd() function
94 return (GetRangeBase() <= r) && (r < GetRangeEnd()); in Contains()
98 return (GetRangeBase() <= r) && (r <= GetRangeEnd()); in ContainsEndInclusive()
103 ContainsEndInclusive(range.GetRangeEnd()); in Contains()
110 const BaseType lhs_end = this->GetRangeEnd(); in DoesAdjoinOrIntersect()
111 const BaseType rhs_end = rhs.GetRangeEnd(); in DoesAdjoinOrIntersect()
161 if (pos1->GetRangeEnd() < pos2->GetRangeEnd()) in GetOverlaps()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp116 tag_range.GetRangeEnd()); in MakeTaggedRange()
123 lldb::addr_t old_end = remaining_range.GetRangeEnd(); in MakeTaggedRange()
124 remaining_range.SetRangeBase(region->GetRange().GetRangeEnd()); in MakeTaggedRange()
200 std::min(range.GetRangeEnd(), region.GetRange().GetRangeEnd()); in MakeTaggedRanges()
205 lldb::addr_t old_end = range.GetRangeEnd(); in MakeTaggedRanges()
207 range.SetRangeBase(region.GetRange().GetRangeEnd()); in MakeTaggedRanges()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp202 last_entry->GetRangeEnd() == range_entry.GetRangeBase() && in CreateMemoryRegions()
203 last_entry->data.GetRangeEnd() == range_entry.data.GetRangeBase()) { in CreateMemoryRegions()
204 last_entry->SetRangeEnd(range_entry.GetRangeEnd()); in CreateMemoryRegions()
205 last_entry->data.SetRangeEnd(range_entry.data.GetRangeEnd()); in CreateMemoryRegions()
352 lldb::addr_t section_vm_addr_end = entry->GetRangeEnd(); in LoadBinariesViaExhaustiveSearch()
594 const addr_t bytes_left = core_memory_entry->GetRangeEnd() - curr_addr; in DoReadMemory()
624 region_info.GetRange().SetRangeEnd(permission_entry->GetRangeEnd()); in DoGetMemoryRegionInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp50 range.GetRangeEnd()); in BuildAddressRangeTable()
91 range.GetRangeEnd()); in BuildAddressRangeTable()
H A DDWARFDebugAranges.cpp80 entry->GetRangeBase(), entry->GetRangeEnd()); in Dump()
H A DSymbolFileDWARFDebugMap.cpp1395 entry.GetRangeBase(), entry.GetRangeEnd(), entry.data, in FinalizeOSOFileRanges()
1472 entry->GetRangeEnd()); in AddOSOARanges()
H A DDWARFDebugInfoEntry.cpp720 r.GetRangeEnd()); in BuildFunctionAddressRangeTable()
H A DSymbolFileDWARF.cpp1321 block->GetID(), range_base, range.GetRangeEnd(), in ParseBlocksRecursive()
/openbsd-src/gnu/llvm/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()
128 last_entry->SetRangeEnd(range_entry.GetRangeEnd()); in AddAddressRangeFromLoadSegment()
129 last_entry->data.SetRangeEnd(range_entry.data.GetRangeEnd()); in AddAddressRangeFromLoadSegment()
322 region_info.GetRange().SetRangeEnd(permission_entry->GetRangeEnd()); in DoGetMemoryRegionInfo()
341 tag_entry->GetRangeEnd() == permission_entry->GetRangeEnd()) in DoGetMemoryRegionInfo()
375 if (address_range == nullptr || address_range->GetRangeEnd() < addr) { in DoReadMemory()
384 const lldb::addr_t file_end = address_range->data.GetRangeEnd(); in DoReadMemory()
431 if (!tag_entry || (addr + len) >= tag_entry->GetRangeEnd()) in ReadMemoryTags()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DBlock.cpp49 base_addr + range.GetRangeEnd(), 4); in GetDescription()
92 base_addr + range.GetRangeEnd(), 4); in Dump()
175 base_addr + range.GetRangeEnd(), 4); in DumpAddressRanges()
345 const addr_t block_end_addr = function_file_addr + range.GetRangeEnd(); in AddRange()
H A DLineTable.cpp442 prev_file_range_entry->GetRangeEnd()) - in LinkLineTable()
464 prev_file_range_entry->GetRangeEnd()) - in LinkLineTable()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DMemoryRegionInfo.cpp18 Info.GetRange().GetRangeEnd(), Info.GetReadable(), in operator <<()
H A DMemoryTagMap.cpp39 lldb::addr_t end_addr = range.GetRangeEnd(); in GetTags()
H A DMemory.cpp303 free_block.SetRangeBase(reserved_block.GetRangeEnd()); in ReserveBlock()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp99 lldb::addr_t end = range.GetRangeEnd(); in AddMemberLocationRanges()
105 base = entry->GetRangeEnd(); in AddMemberLocationRanges()
107 lldb::addr_t entry_end = entry->GetRangeEnd(); in AddMemberLocationRanges()
150 lldb::addr_t end = range.GetRangeEnd(); in AddDwarfRange()
160 if (end == entry->GetRangeEnd()) in AddDwarfRange()
178 if (entry->GetRangeEnd() == end) in AddDwarfRange()
908 result.location.AddExpression(entry.GetRangeBase(), entry.GetRangeEnd(), in GetVariableLocationInfo()
/openbsd-src/gnu/llvm/lldb/source/Expression/
H A DDWARFExpressionList.cpp154 addr_t load_end = entry.GetRangeEnd() + func_load_addr - m_func_file_addr; in DumpLocations()
195 llvm::DWARFFormValue::dumpAddress(os, addr_size, entry.GetRangeEnd()); in GetDescription()
H A DIRMemoryMap.cpp114 if (region_info.GetRange().GetRangeEnd() - 1 >= end_of_memory) { in FindSpace()
118 ret = region_info.GetRange().GetRangeEnd(); in FindSpace()
120 } else if (ret + size < region_info.GetRange().GetRangeEnd()) { in FindSpace()
127 region_info.GetRange().GetRangeEnd(), region_info); in FindSpace()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBMemoryRegionInfo.cpp94 return m_opaque_up->GetRange().GetRangeEnd(); in GetRegionEnd()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DAddress.cpp750 range.GetRangeEnd(), addr_size); in Dump()
755 range->GetRangeEnd(), addr_size); in Dump()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemory.cpp1733 range_info.GetRange().GetRangeEnd(), range_info.GetReadable(), in DumpRegion()
1831 addr = region_info.GetRange().GetRangeEnd(); in DoExecute()
1844 m_prev_end_addr = range.first.GetRange().GetRangeEnd(); in DoExecute()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp431 section_range.GetRangeEnd() <= region.GetRange().GetRangeEnd()) { in BuildMemoryRegions()
H A DMinidumpParser.cpp699 region.GetRange().SetRangeBase(std::prev(pos)->GetRange().GetRangeEnd()); in GetMemoryRegionInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2610 if (addr + size > region.GetRange().GetRangeEnd()) { in FlashErase()
2641 if (range.GetRangeBase() < last_range.GetRangeEnd()) { in FlashErase()
2642 auto overlap = last_range.GetRangeEnd() - range.GetRangeBase(); in FlashErase()
2732 if (addr + size > region.GetRange().GetRangeEnd()) in DoWriteMemory()
2733 size = region.GetRange().GetRangeEnd() - addr; in DoWriteMemory()
H A DGDBRemoteCommunicationClient.cpp1546 if (region_info.GetRange().GetRangeEnd() < in GetMemoryRegionInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1803 Sections.overlaps(Range.GetRangeBase(), Range.GetRangeEnd())) { in GetAddressInfo()
1813 Segments.insert(Range.GetRangeBase(), Range.GetRangeEnd(), std::move(Seg)); in AddSegment()
1822 Sections.insert(Info.Range.GetRangeBase(), Info.Range.GetRangeEnd(), in AddSection()

12