Lines Matching refs:Row
495 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit()
535 auto &Row = Rows[Idx]; in emitLineTableForUnit() local
542 MS->emitIntValue(Row.Address.Address, PointerSize); in emitLineTableForUnit()
546 AddressDelta = (Row.Address.Address - Address) / MinInstLength; in emitLineTableForUnit()
554 if (FileNum != Row.File) { in emitLineTableForUnit()
555 FileNum = Row.File; in emitLineTableForUnit()
560 if (Column != Row.Column) { in emitLineTableForUnit()
561 Column = Row.Column; in emitLineTableForUnit()
570 if (Isa != Row.Isa) { in emitLineTableForUnit()
571 Isa = Row.Isa; in emitLineTableForUnit()
576 if (IsStatement != Row.IsStmt) { in emitLineTableForUnit()
577 IsStatement = Row.IsStmt; in emitLineTableForUnit()
581 if (Row.BasicBlock) { in emitLineTableForUnit()
586 if (Row.PrologueEnd) { in emitLineTableForUnit()
591 if (Row.EpilogueBegin) { in emitLineTableForUnit()
596 int64_t LineDelta = int64_t(Row.Line) - LastLine; in emitLineTableForUnit()
597 if (!Row.EndSequence) { in emitLineTableForUnit()
602 Address = Row.Address.Address; in emitLineTableForUnit()
603 LastLine = Row.Line; in emitLineTableForUnit()