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