Home
last modified time | relevance | path

Searched refs:LoPC (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugAranges.h25 : LoPC(lo), Length(hi-lo), Offset(off) {} in LoPC() function
28 LoPC = -1ULL; in clear()
34 if (HiPC == -1ULL || HiPC <= LoPC) in setHiPC()
37 Length = HiPC - LoPC; in setHiPC()
41 return LoPC + Length; in HiPC()
50 return curr_range.HiPC() + n >= next_range.LoPC; in SortedOverlapCheck()
54 return LoPC <= range.LoPC && range.HiPC() <= HiPC(); in contains()
58 uint64_t LoPC; // Start of address range member
64 bool allRangesAreContiguous(uint64_t& LoPC, uint64_t& HiPC) const;
65 bool getMaxRange(uint64_t& LoPC, uint64_t& HiPC) const;
DDWARFDebugAranges.cpp22 return range1.LoPC < range2.LoPC; in RangeLessThan()
45 range.LoPC = arange_desc_ptr->Address; in operator ()()
104 (uint64_t)range.LoPC, (uint64_t)range.HiPC()); in dump()
109 OS << format("{0x%8.8x}: [0x%8.8llx - 0x%8.8llx)\n", Offset, LoPC, HiPC()); in dump()
183 if (pos != end && pos->LoPC <= address && address < pos->HiPC()) { in findAddress()
187 if (pos->LoPC <= address && address < pos->HiPC()) in findAddress()
195 DWARFDebugAranges::allRangesAreContiguous(uint64_t &LoPC, uint64_t &HiPC) const{ in allRangesAreContiguous() argument
203 if (pos != begin && pos->LoPC != next_addr) in allRangesAreContiguous()
208 LoPC = Aranges.front().LoPC; in allRangesAreContiguous()
214 bool DWARFDebugAranges::getMaxRange(uint64_t &LoPC, uint64_t &HiPC) const { in getMaxRange() argument
[all …]