Home | History | Annotate | Download | only in DebugInfo

Lines Matching full:highpc

275                                                  uint64_t &HighPC) const {
276 HighPC = -1ULL;
279 HighPC = getAttributeValueAsUnsigned(CU, DW_AT_high_pc, -1ULL);
280 return (HighPC != -1ULL);
289 uint64_t LowPC, HighPC;
290 if (getLowAndHighPC(CU, LowPC, HighPC)) {
291 DebugAranges->appendRange(CU->getOffset(), LowPC, HighPC);
311 uint64_t LowPC, HighPC;
312 if (getLowAndHighPC(CU, LowPC, HighPC))
313 return (LowPC <= Address && Address <= HighPC);