Lines Matching refs:LowPC
171 uint64_t LowPC, HighPC, Index; in dumpAttribute() local
172 if (Die.getLowAndHighPC(LowPC, HighPC, Index)) in dumpAttribute()
345 std::optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const { in getHighPC()
347 if (LowPC == Tombstone) in getHighPC()
356 return LowPC + *Offset; in getHighPC()
362 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, in getLowAndHighPC() argument
369 LowPC = LowPcAddr->Address; in getLowAndHighPC()
381 uint64_t LowPC, HighPC, Index; in getAddressRanges() local
382 if (getLowAndHighPC(LowPC, HighPC, Index)) in getAddressRanges()
383 return DWARFAddressRangesVector{{LowPC, HighPC, Index}}; in getAddressRanges()
402 if (R.LowPC <= Address && Address < R.HighPC) in addressRangeContainsAddress()