Home
last modified time | relevance | path

Searched refs:DWARFAddressRange (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFAddressRange.h22 struct DWARFAddressRange { struct
27 DWARFAddressRange() = default; argument
30 DWARFAddressRange(uint64_t LowPC, uint64_t HighPC, uint64_t SectionIndex = 0)
38 bool intersects(const DWARFAddressRange &RHS) const { in intersects() argument
47 bool contains(const DWARFAddressRange &RHS) const { in contains() argument
56 static inline bool operator<(const DWARFAddressRange &LHS,
57 const DWARFAddressRange &RHS) {
61 raw_ostream &operator<<(raw_ostream &OS, const DWARFAddressRange &R);
64 using DWARFAddressRangesVector = std::vector<DWARFAddressRange>;
DDWARFVerifier.h42 std::vector<DWARFAddressRange> Ranges;
51 DieRangeInfo(std::vector<DWARFAddressRange> Ranges) in DieRangeInfo()
54 typedef std::vector<DWARFAddressRange>::const_iterator
63 address_range_iterator insert(const DWARFAddressRange &R);
66 address_range_iterator findRange(const DWARFAddressRange &R) const { in findRange()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugRnglists.cpp121 DWARFAddressRange E; in getAbsoluteRanges()
160 DWARFAddressRange(Entry.Value0, Entry.Value1) in dump()
191 DWARFAddressRange(Value0, Value0 + Value1).dump(OS, AddrSize, DumpOpts); in dump()
195 DWARFAddressRange(Value0 + CurrentBase, Value1 + CurrentBase) in dump()
199 DWARFAddressRange(Value0, Value1).dump(OS, AddrSize, DumpOpts); in dump()
DDWARFAddressRange.cpp17 void DWARFAddressRange::dump(raw_ostream &OS, uint32_t AddressSize, in dump()
26 raw_ostream &llvm::operator<<(raw_ostream &OS, const DWARFAddressRange &R) { in operator <<()
DCMakeLists.txt3 DWARFAddressRange.cpp
DDWARFDebugRangeList.cpp85 DWARFAddressRange E; in getAbsoluteRanges()
DDWARFDie.cpp66 for (const DWARFAddressRange &R : Ranges) { in dumpRanges()
DDWARFVerifier.cpp32 DWARFVerifier::DieRangeInfo::insert(const DWARFAddressRange &R) { in insert()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugInfoTest.cpp2884 DWARFAddressRange R(0x10, 0x20); in TEST()
2966 void AssertRangesIntersect(const DWARFAddressRange &LHS, in AssertRangesIntersect()
2967 const DWARFAddressRange &RHS) { in AssertRangesIntersect()
2971 void AssertRangesDontIntersect(const DWARFAddressRange &LHS, in AssertRangesDontIntersect()
2972 const DWARFAddressRange &RHS) { in AssertRangesDontIntersect()
2993 DWARFAddressRange R(0x10, 0x20); in TEST()