Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDVMRange.cpp24 bool VMRange::ContainsValue(const VMRange::collection &coll, in ContainsValue()
26 return llvm::find_if(coll, [&](const VMRange &r) { in ContainsValue()
31 bool VMRange::ContainsRange(const VMRange::collection &coll, in ContainsRange()
32 const VMRange &range) { in ContainsRange()
33 return llvm::find_if(coll, [&](const VMRange &r) { in ContainsRange()
38 void VMRange::Dump(llvm::raw_ostream &s, lldb::addr_t offset, in Dump()
44 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) { in operator ==()
49 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) { in operator !=()
53 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) { in operator <()
61 bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) { in operator <=()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDVMRange.h23 class VMRange {
25 typedef std::vector<VMRange> collection;
29 VMRange() : m_base_addr(0), m_byte_size(0) {} in VMRange() function
31 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) in VMRange() function
35 ~VMRange() {} in ~VMRange()
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-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
HDObjectFileELF.cpp1662 using VMRange = lldb_private::Range<addr_t, addr_t>; typedef
1666 VMRange Range;
1685 VMRange GetVMRange(const ELFSectionHeader &H) { in GetVMRange()
1694 return VMRange(Address, Size); in GetVMRange()
1705 llvm::Optional<VMRange> GetAddressInfo(const ELFProgramHeader &H) { in GetAddressInfo()
1717 return VMRange(H.p_vaddr, H.p_memsz); in GetAddressInfo()
1721 VMRange Range = GetVMRange(H); in GetAddressInfo()
1747 void AddSegment(const VMRange &Range, SectionSP Seg) { in AddSegment()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDSection.cpp306 VMRange range(addr, addr + m_byte_size); in Dump()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
HDlldb-forward.h271 class VMRange; variable
/freebsd-11-stable/lib/clang/liblldb/
HDMakefile644 SRCS+= Utility/VMRange.cpp