Lines Matching defs:LowPC
170 uint64_t LowPC, HighPC, Index;
171 if (Die.getLowAndHighPC(LowPC, HighPC, Index))
354 std::optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const {
356 if (LowPC == Tombstone)
364 // High PC is an offset from LowPC.
365 return LowPC + *Offset;
371 bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC,
378 LowPC = LowPcAddr->Address;
390 uint64_t LowPC, HighPC, Index;
391 if (getLowAndHighPC(LowPC, HighPC, Index))
392 return DWARFAddressRangesVector{{LowPC, HighPC, Index}};
411 if (R.LowPC <= Address && Address < R.HighPC)