Lines Matching refs:LnStats
862 LineStats LnStats; in collectStatsForObjectFile() local
930 LnStats.NumBytes += Seq.HighPC - Seq.LowPC; in collectStatsForObjectFile()
932 LnStats.NumEntries += Seq.LastRowIndex - Seq.FirstRowIndex - 1; in collectStatsForObjectFile()
937 LnStats.NumIsStmtEntries += 1; in collectStatsForObjectFile()
947 LnStats.NumLineZeroBytes += EntryEndAddress - EntryStartAddress; in collectStatsForObjectFile()
954 LnStats.NumUniqueEntries = UniqueLines.size(); in collectStatsForObjectFile()
955 LnStats.NumUniqueNonZeroEntries = UniqueNonZeroLines.size(); in collectStatsForObjectFile()
1118 printDatum(J, "#bytes with line information", LnStats.NumBytes.Value); in collectStatsForObjectFile()
1119 printDatum(J, "#bytes with line-0 locations", LnStats.NumLineZeroBytes.Value); in collectStatsForObjectFile()
1120 printDatum(J, "#line entries", LnStats.NumEntries.Value); in collectStatsForObjectFile()
1121 printDatum(J, "#line entries (is_stmt)", LnStats.NumIsStmtEntries.Value); in collectStatsForObjectFile()
1122 printDatum(J, "#line entries (unique)", LnStats.NumUniqueEntries.Value); in collectStatsForObjectFile()
1124 LnStats.NumUniqueNonZeroEntries.Value); in collectStatsForObjectFile()