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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp1 //===-- VMRange.cpp ---------------------------------------------*- C++ -*-===//
9 #include "lldb/Utility/VMRange.h"
24 bool VMRange::ContainsValue(const VMRange::collection &coll,
26 return llvm::find_if(coll, [&](const VMRange &r) {
31 bool VMRange::ContainsRange(const VMRange::collection &coll,
32 const VMRange &range) {
33 return llvm::find_if(coll, [&](const VMRange &r) {
38 void VMRange
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DVMRange.h1 //===-- VMRange.h -----------------------------------------------*- C++ -*-===//
23 class VMRange { class in namespace:lldb_private
25 typedef std::vector<VMRange> collection;
29 VMRange() : m_base_addr(0), m_byte_size(0) {} function in class:lldb_private::VMRange
31 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) function in class:lldb_private::VMRange
35 ~VMRange() {}
73 bool Contains(const VMRange &range) const {
84 static bool ContainsValue(const VMRange::collection &coll,
87 static bool ContainsRange(const VMRange::collection &coll,
88 const VMRange
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1662 using VMRange = lldb_private::Range<addr_t, addr_t>;
1666 VMRange Range;
1685 VMRange GetVMRange(const ELFSectionHeader &H) {
1694 return VMRange(Address, Size);
1705 llvm::Optional<VMRange> GetAddressInfo(const ELFProgramHeader &H) {
1717 return VMRange(H.p_vaddr, H.p_memsz);
1721 VMRange Range = GetVMRange(H);
1747 void AddSegment(const VMRange &Range, SectionSP Seg) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp17 #include "lldb/Utility/VMRange.h"
306 VMRange range(addr, addr + m_byte_size);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h271 class VMRange;
/freebsd-11-stable/lib/clang/liblldb/
H A DMakefile644 SRCS+= Utility/VMRange.cpp

Completed in 104 milliseconds