Lines Matching refs:LowPC
174 uint64_t LowPC, HighPC, Index; in dumpAttribute() local
175 if (Die.getLowAndHighPC(LowPC, HighPC, Index)) in dumpAttribute()
348 Optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const { in getHighPC()
350 if (LowPC == Tombstone) in getHighPC()
359 return LowPC + *Offset; in getHighPC()
365 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, in getLowAndHighPC() argument
372 LowPC = LowPcAddr->Address; in getLowAndHighPC()
384 uint64_t LowPC, HighPC, Index; in getAddressRanges() local
385 if (getLowAndHighPC(LowPC, HighPC, Index)) in getAddressRanges()
386 return DWARFAddressRangesVector{{LowPC, HighPC, Index}}; in getAddressRanges()
405 if (R.LowPC <= Address && Address < R.HighPC) in addressRangeContainsAddress()