Lines Matching refs:Row
1071 for (const DWARFDebugLine::Row &Row : LineTable.Rows) { in emitLineTableRows() local
1077 MS->emitIntValue(Row.Address.Address, AddressByteSize); in emitLineTableRows()
1083 (Row.Address.Address - Address) / LineTable.Prologue.MinInstLength; in emitLineTableRows()
1091 if (FileNum != Row.File) { in emitLineTableRows()
1092 FileNum = Row.File; in emitLineTableRows()
1097 if (Column != Row.Column) { in emitLineTableRows()
1098 Column = Row.Column; in emitLineTableRows()
1103 if (Discriminator != Row.Discriminator && in emitLineTableRows()
1105 Discriminator = Row.Discriminator; in emitLineTableRows()
1116 if (Isa != Row.Isa) { in emitLineTableRows()
1117 Isa = Row.Isa; in emitLineTableRows()
1122 if (IsStatement != Row.IsStmt) { in emitLineTableRows()
1123 IsStatement = Row.IsStmt; in emitLineTableRows()
1127 if (Row.BasicBlock) { in emitLineTableRows()
1132 if (Row.PrologueEnd) { in emitLineTableRows()
1137 if (Row.EpilogueBegin) { in emitLineTableRows()
1142 int64_t LineDelta = int64_t(Row.Line) - LastLine; in emitLineTableRows()
1143 if (!Row.EndSequence) { in emitLineTableRows()
1149 Address = Row.Address.Address; in emitLineTableRows()
1150 LastLine = Row.Line; in emitLineTableRows()