Lines Matching refs:Row
510 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit()
549 for (DWARFDebugLine::Row &Row : Rows) { in emitLineTableForUnit()
555 MS->emitIntValue(Row.Address.Address, PointerSize); in emitLineTableForUnit()
559 AddressDelta = (Row.Address.Address - Address) / MinInstLength; in emitLineTableForUnit()
567 if (FileNum != Row.File) { in emitLineTableForUnit()
568 FileNum = Row.File; in emitLineTableForUnit()
573 if (Column != Row.Column) { in emitLineTableForUnit()
574 Column = Row.Column; in emitLineTableForUnit()
583 if (Isa != Row.Isa) { in emitLineTableForUnit()
584 Isa = Row.Isa; in emitLineTableForUnit()
589 if (IsStatement != Row.IsStmt) { in emitLineTableForUnit()
590 IsStatement = Row.IsStmt; in emitLineTableForUnit()
594 if (Row.BasicBlock) { in emitLineTableForUnit()
599 if (Row.PrologueEnd) { in emitLineTableForUnit()
604 if (Row.EpilogueBegin) { in emitLineTableForUnit()
609 int64_t LineDelta = int64_t(Row.Line) - LastLine; in emitLineTableForUnit()
610 if (!Row.EndSequence) { in emitLineTableForUnit()
615 Address = Row.Address.Address; in emitLineTableForUnit()
616 LastLine = Row.Line; in emitLineTableForUnit()