Lines Matching defs:LowPC
171 uint64_t LowPC, HighPC, Index;
172 if (Die.getLowAndHighPC(LowPC, HighPC, Index))
345 std::optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const {
347 if (LowPC == Tombstone)
355 // High PC is an offset from LowPC.
356 return LowPC + *Offset;
362 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC,
369 LowPC = LowPcAddr->Address;
381 uint64_t LowPC, HighPC, Index;
382 if (getLowAndHighPC(LowPC, HighPC, Index))
383 return DWARFAddressRangesVector{{LowPC, HighPC, Index}};
402 if (R.LowPC <= Address && Address < R.HighPC)