Lines Matching defs:Sequence
526 DWARFDebugLine::Sequence::Sequence() { reset(); }
528 void DWARFDebugLine::Sequence::reset() {
571 Sequence.reset();
576 if (Sequence.Empty) {
578 Sequence.Empty = false;
579 Sequence.LowPC = Row.Address.Address;
580 Sequence.FirstRowIndex = RowNumber;
585 Sequence.HighPC = Row.Address.Address;
586 Sequence.LastRowIndex = RowNumber + 1;
587 Sequence.SectionIndex = Row.Address.SectionIndex;
588 if (Sequence.isValid())
589 LineTable->appendSequence(Sequence);
590 Sequence.reset();
1262 if (!State.Sequence.Empty)
1271 llvm::sort(Sequences, Sequence::orderByHighPC);
1289 const DWARFDebugLine::Sequence &Seq,
1333 DWARFDebugLine::Sequence Sequence;
1334 Sequence.SectionIndex = Address.SectionIndex;
1335 Sequence.HighPC = Address.Address;
1336 SequenceIter It = llvm::upper_bound(Sequences, Sequence,
1337 DWARFDebugLine::Sequence::orderByHighPC);
1366 DWARFDebugLine::Sequence Sequence;
1367 Sequence.SectionIndex = Address.SectionIndex;
1368 Sequence.HighPC = Address.Address;
1371 Sequences, Sequence, DWARFDebugLine::Sequence::orderByHighPC);
1381 const DWARFDebugLine::Sequence &CurSeq = *SeqPos;