Lines Matching defs:Sequence
525 DWARFDebugLine::Sequence::Sequence() { reset(); }
527 void DWARFDebugLine::Sequence::reset() {
570 Sequence.reset();
575 if (Sequence.Empty) {
577 Sequence.Empty = false;
578 Sequence.LowPC = Row.Address.Address;
579 Sequence.FirstRowIndex = RowNumber;
584 Sequence.HighPC = Row.Address.Address;
585 Sequence.LastRowIndex = RowNumber + 1;
586 Sequence.SectionIndex = Row.Address.SectionIndex;
587 if (Sequence.isValid())
588 LineTable->appendSequence(Sequence);
589 Sequence.reset();
1262 if (!State.Sequence.Empty)
1271 llvm::sort(Sequences, Sequence::orderByHighPC);
1289 const DWARFDebugLine::Sequence &Seq,
1338 DWARFDebugLine::Sequence Sequence;
1339 Sequence.SectionIndex = Address.SectionIndex;
1340 Sequence.HighPC = Address.Address;
1341 SequenceIter It = llvm::upper_bound(Sequences, Sequence,
1342 DWARFDebugLine::Sequence::orderByHighPC);
1388 DWARFDebugLine::Sequence Sequence;
1389 Sequence.SectionIndex = Address.SectionIndex;
1390 Sequence.HighPC = Address.Address;
1393 Sequences, Sequence, DWARFDebugLine::Sequence::orderByHighPC);
1403 const DWARFDebugLine::Sequence &CurSeq = *SeqPos;