Lines Matching full:row
325 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows() local
331 Section.emitIntVal(Row.Address.Address, in emitLineTableRows()
336 (Row.Address.Address - Address) / LineTable.Prologue.MinInstLength; in emitLineTableRows()
344 if (FileNum != Row.File) { in emitLineTableRows()
345 FileNum = Row.File; in emitLineTableRows()
349 if (Column != Row.Column) { in emitLineTableRows()
350 Column = Row.Column; in emitLineTableRows()
354 if (Discriminator != Row.Discriminator && MC->getDwarfVersion() >= 4) { in emitLineTableRows()
355 Discriminator = Row.Discriminator; in emitLineTableRows()
364 if (Isa != Row.Isa) { in emitLineTableRows()
365 Isa = Row.Isa; in emitLineTableRows()
369 if (IsStatement != Row.IsStmt) { in emitLineTableRows()
370 IsStatement = Row.IsStmt; in emitLineTableRows()
373 if (Row.BasicBlock) in emitLineTableRows()
376 if (Row.PrologueEnd) in emitLineTableRows()
379 if (Row.EpilogueBegin) in emitLineTableRows()
382 int64_t LineDelta = int64_t(Row.Line) - LastLine; in emitLineTableRows()
383 if (!Row.EndSequence) { in emitLineTableRows()
388 Address = Row.Address.Address; in emitLineTableRows()
389 LastLine = Row.Line; in emitLineTableRows()