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