Lines Matching refs:LowPC
285 uint64_t LowPC, HighPC, Index; in dumpAttribute() local
286 if (Die.getLowAndHighPC(LowPC, HighPC, Index)) in dumpAttribute()
427 Optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const { in getHighPC()
429 if (LowPC == Tombstone) in getHighPC()
438 return LowPC + *Offset; in getHighPC()
444 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, in getLowAndHighPC() argument
451 LowPC = LowPcAddr->Address; in getLowAndHighPC()
463 uint64_t LowPC, HighPC, Index; in getAddressRanges() local
464 if (getLowAndHighPC(LowPC, HighPC, Index)) in getAddressRanges()
465 return DWARFAddressRangesVector{{LowPC, HighPC, Index}}; in getAddressRanges()
500 if (R.LowPC <= Address && Address < R.HighPC) in addressRangeContainsAddress()