Lines Matching refs:Row
324 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows() local
330 Section.emitIntVal(Row.Address.Address, in emitLineTableRows()
335 (Row.Address.Address - Address) / LineTable.Prologue.MinInstLength; in emitLineTableRows()
343 if (FileNum != Row.File) { in emitLineTableRows()
344 FileNum = Row.File; in emitLineTableRows()
348 if (Column != Row.Column) { in emitLineTableRows()
349 Column = Row.Column; in emitLineTableRows()
357 if (Isa != Row.Isa) { in emitLineTableRows()
358 Isa = Row.Isa; in emitLineTableRows()
362 if (IsStatement != Row.IsStmt) { in emitLineTableRows()
363 IsStatement = Row.IsStmt; in emitLineTableRows()
366 if (Row.BasicBlock) in emitLineTableRows()
369 if (Row.PrologueEnd) in emitLineTableRows()
372 if (Row.EpilogueBegin) in emitLineTableRows()
375 int64_t LineDelta = int64_t(Row.Line) - LastLine; in emitLineTableRows()
376 if (!Row.EndSequence) { in emitLineTableRows()
381 Address = Row.Address.Address; in emitLineTableRows()
382 LastLine = Row.Line; in emitLineTableRows()