Lines Matching refs:Sequence
503 DWARFDebugLine::Sequence::Sequence() { reset(); } in Sequence() function in DWARFDebugLine::Sequence
505 void DWARFDebugLine::Sequence::reset() { in reset()
548 Sequence.reset(); in resetRowAndSequence()
553 if (Sequence.Empty) { in appendRowToMatrix()
555 Sequence.Empty = false; in appendRowToMatrix()
556 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix()
557 Sequence.FirstRowIndex = RowNumber; in appendRowToMatrix()
562 Sequence.HighPC = Row.Address.Address; in appendRowToMatrix()
563 Sequence.LastRowIndex = RowNumber + 1; in appendRowToMatrix()
564 Sequence.SectionIndex = Row.Address.SectionIndex; in appendRowToMatrix()
565 if (Sequence.isValid()) in appendRowToMatrix()
566 LineTable->appendSequence(Sequence); in appendRowToMatrix()
567 Sequence.reset(); in appendRowToMatrix()
1191 if (!State.Sequence.Empty) in parse()
1200 llvm::sort(Sequences, Sequence::orderByHighPC); in parse()
1218 const DWARFDebugLine::Sequence &Seq, in findRowInSeq()
1259 DWARFDebugLine::Sequence Sequence; in lookupAddressImpl() local
1260 Sequence.SectionIndex = Address.SectionIndex; in lookupAddressImpl()
1261 Sequence.HighPC = Address.Address; in lookupAddressImpl()
1262 SequenceIter It = llvm::upper_bound(Sequences, Sequence, in lookupAddressImpl()
1263 DWARFDebugLine::Sequence::orderByHighPC); in lookupAddressImpl()
1292 DWARFDebugLine::Sequence Sequence; in lookupAddressRangeImpl() local
1293 Sequence.SectionIndex = Address.SectionIndex; in lookupAddressRangeImpl()
1294 Sequence.HighPC = Address.Address; in lookupAddressRangeImpl()
1297 Sequences, Sequence, DWARFDebugLine::Sequence::orderByHighPC); in lookupAddressRangeImpl()
1307 const DWARFDebugLine::Sequence &CurSeq = *SeqPos; in lookupAddressRangeImpl()