Lines Matching refs:Sequence

510 DWARFDebugLine::Sequence::Sequence() { reset(); }  in Sequence()  function in DWARFDebugLine::Sequence
512 void DWARFDebugLine::Sequence::reset() { in reset()
555 Sequence.reset(); in resetRowAndSequence()
560 if (Sequence.Empty) { in appendRowToMatrix()
562 Sequence.Empty = false; in appendRowToMatrix()
563 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix()
564 Sequence.FirstRowIndex = RowNumber; in appendRowToMatrix()
569 Sequence.HighPC = Row.Address.Address; in appendRowToMatrix()
570 Sequence.LastRowIndex = RowNumber + 1; in appendRowToMatrix()
571 Sequence.SectionIndex = Row.Address.SectionIndex; in appendRowToMatrix()
572 if (Sequence.isValid()) in appendRowToMatrix()
573 LineTable->appendSequence(Sequence); in appendRowToMatrix()
574 Sequence.reset(); in appendRowToMatrix()
1246 if (!State.Sequence.Empty) in parse()
1255 llvm::sort(Sequences, Sequence::orderByHighPC); in parse()
1273 const DWARFDebugLine::Sequence &Seq, in findRowInSeq()
1317 DWARFDebugLine::Sequence Sequence; in lookupAddressImpl() local
1318 Sequence.SectionIndex = Address.SectionIndex; in lookupAddressImpl()
1319 Sequence.HighPC = Address.Address; in lookupAddressImpl()
1320 SequenceIter It = llvm::upper_bound(Sequences, Sequence, in lookupAddressImpl()
1321 DWARFDebugLine::Sequence::orderByHighPC); in lookupAddressImpl()
1350 DWARFDebugLine::Sequence Sequence; in lookupAddressRangeImpl() local
1351 Sequence.SectionIndex = Address.SectionIndex; in lookupAddressRangeImpl()
1352 Sequence.HighPC = Address.Address; in lookupAddressRangeImpl()
1355 Sequences, Sequence, DWARFDebugLine::Sequence::orderByHighPC); in lookupAddressRangeImpl()
1365 const DWARFDebugLine::Sequence &CurSeq = *SeqPos; in lookupAddressRangeImpl()