• Home
  • Raw
  • Download

Lines Matching refs:DWARFDebugLine

20 DWARFDebugLine::Prologue::Prologue() { clear(); }  in Prologue()
22 void DWARFDebugLine::Prologue::clear() { in clear()
32 void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const { in dump()
67 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data, in parse()
132 DWARFDebugLine::Row::Row(bool default_is_stmt) { reset(default_is_stmt); } in Row()
134 void DWARFDebugLine::Row::postAppend() { in postAppend()
140 void DWARFDebugLine::Row::reset(bool default_is_stmt) { in reset()
154 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump()
163 DWARFDebugLine::Sequence::Sequence() { reset(); } in Sequence()
165 void DWARFDebugLine::Sequence::reset() { in reset()
173 DWARFDebugLine::LineTable::LineTable() { clear(); } in LineTable()
175 void DWARFDebugLine::LineTable::dump(raw_ostream &OS) const { in dump()
189 void DWARFDebugLine::LineTable::clear() { in clear()
195 DWARFDebugLine::ParsingState::ParsingState(struct LineTable *LT) in ParsingState()
200 void DWARFDebugLine::ParsingState::resetRowAndSequence() { in resetRowAndSequence()
205 void DWARFDebugLine::ParsingState::appendRowToMatrix(uint32_t offset) { in appendRowToMatrix()
225 const DWARFDebugLine::LineTable *
226 DWARFDebugLine::getLineTable(uint32_t offset) const { in getLineTable()
233 const DWARFDebugLine::LineTable *
234 DWARFDebugLine::getOrParseLineTable(DataExtractor debug_line_data, in getOrParseLineTable()
246 bool DWARFDebugLine::LineTable::parse(DataExtractor debug_line_data, in parse()
527 DWARFDebugLine::LineTable::findRowInSeq(const DWARFDebugLine::Sequence &seq, in findRowInSeq()
534 DWARFDebugLine::Row row; in findRowInSeq()
539 first_row, last_row, row, DWARFDebugLine::Row::orderByAddress); in findRowInSeq()
553 uint32_t DWARFDebugLine::LineTable::lookupAddress(uint64_t address) const { in lookupAddress()
557 DWARFDebugLine::Sequence sequence; in lookupAddress()
562 first_seq, last_seq, sequence, DWARFDebugLine::Sequence::orderByLowPC); in lookupAddress()
563 DWARFDebugLine::Sequence found_seq; in lookupAddress()
576 bool DWARFDebugLine::LineTable::lookupAddressRange( in lookupAddressRange()
582 DWARFDebugLine::Sequence sequence; in lookupAddressRange()
587 first_seq, last_seq, sequence, DWARFDebugLine::Sequence::orderByLowPC); in lookupAddressRange()
602 const DWARFDebugLine::Sequence &cur_seq = *seq_pos; in lookupAddressRange()
627 bool DWARFDebugLine::LineTable::getFileNameByIndex(uint64_t FileIndex, in getFileNameByIndex()
663 bool DWARFDebugLine::LineTable::getFileLineInfoForAddress( in getFileLineInfoForAddress()