Searched defs:LowPC (Results 1 - 3 of 3) sorted by relevance
/external/llvm/lib/DebugInfo/ |
H A D | DWARFDebugInfoEntry.cpp | 466 uint64_t &LowPC, 469 LowPC = getAttributeValueAsUnsigned(CU, DW_AT_low_pc, -1ULL); 470 if (LowPC != -1ULL) 481 uint64_t LowPC, HighPC; local 482 if (getLowAndHighPC(CU, LowPC, HighPC)) { 483 DebugAranges->appendRange(CU->getOffset(), LowPC, HighPC); 503 uint64_t LowPC, HighPC; 504 if (getLowAndHighPC(CU, LowPC, HighPC)) 505 return (LowPC <= Address && Address <= HighPC); 465 getLowAndHighPC(const DWARFCompileUnit *CU, uint64_t &LowPC, uint64_t &HighPC) const argument
|
H A D | DWARFDebugLine.cpp | 102 Sequence::LowPC = Address; member in class:Sequence 488 sequence.LowPC = address; 496 } else if (seq_pos->LowPC == address) { 536 sequence.LowPC = address; 541 if (seq_pos == last_seq || seq_pos->LowPC != address) { 554 while (seq_pos != last_seq && seq_pos->LowPC < end_addr) {
|
H A D | DWARFDebugLine.h | 139 // Sequence describes instructions at address range [LowPC, HighPC) 141 uint64_t LowPC; member in struct:llvm::DWARFDebugLine::Sequence 149 LowPC = 0; 156 return LHS.LowPC < RHS.LowPC; 159 return !Empty && (LowPC < HighPC) && (FirstRowIndex < LastRowIndex); 162 return (LowPC <= pc && pc < HighPC);
|
Completed in 123 milliseconds