Lines Matching refs:LowPC
290 uint64_t LowPC, HighPC, Index; in dumpAttribute() local
291 if (Die.getLowAndHighPC(LowPC, HighPC, Index)) in dumpAttribute()
437 Optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const { in getHighPC()
439 if (LowPC == Tombstone) in getHighPC()
448 return LowPC + *Offset; in getHighPC()
454 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, in getLowAndHighPC() argument
461 LowPC = LowPcAddr->Address; in getLowAndHighPC()
473 uint64_t LowPC, HighPC, Index; in getAddressRanges() local
474 if (getLowAndHighPC(LowPC, HighPC, Index)) in getAddressRanges()
475 return DWARFAddressRangesVector{{LowPC, HighPC, Index}}; in getAddressRanges()
509 if (R.LowPC <= Address && Address < R.HighPC) in addressRangeContainsAddress()