Home
last modified time | relevance | path

Searched refs:VMRange (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp24 bool VMRange::ContainsValue(const VMRange::collection &coll, in ContainsValue()
27 [&](const VMRange &r) { return r.Contains(value); }); in ContainsValue()
30 bool VMRange::ContainsRange(const VMRange::collection &coll, in ContainsRange()
31 const VMRange &range) { in ContainsRange()
33 [&](const VMRange &r) { return r.Contains(range); }); in ContainsRange()
36 void VMRange::Dump(llvm::raw_ostream &s, lldb::addr_t offset, in Dump()
42 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) { in operator ==()
47 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) { in operator !=()
51 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) { in operator <()
59 bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) { in operator <=()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DVMRange.h23 class VMRange {
25 typedef std::vector<VMRange> collection;
29 VMRange() = default;
31 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) in VMRange() function
35 ~VMRange() = default;
73 bool Contains(const VMRange &range) const { in Contains()
84 static bool ContainsValue(const VMRange::collection &coll,
87 static bool ContainsRange(const VMRange::collection &coll,
88 const VMRange &range);
95 bool operator==(const VMRange &lhs, const VMRange &rhs);
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1768 using VMRange = lldb_private::Range<addr_t, addr_t>; typedef
1772 VMRange Range;
1791 VMRange GetVMRange(const ELFSectionHeader &H) { in GetVMRange()
1805 return VMRange(Address, Size); in GetVMRange()
1816 std::optional<VMRange> GetAddressInfo(const ELFProgramHeader &H) { in GetAddressInfo()
1828 return VMRange(H.p_vaddr, H.p_memsz); in GetAddressInfo()
1832 VMRange Range = GetVMRange(H); in GetAddressInfo()
1858 void AddSegment(const VMRange &Range, SectionSP Seg) { in AddSegment()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp294 VMRange range(addr, addr + m_byte_size); in Dump()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h283 class VMRange; variable
/freebsd/lib/clang/liblldb/
H A DMakefile743 SRCS+= Utility/VMRange.cpp