Pass a && to getLazyBitcodeModule.
[oota-llvm.git] / tools / llvm-cov / CoverageSummaryInfo.h
1 //===- CoverageSummaryInfo.h - Coverage summary for function/file ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // These structures are used to represent code coverage metrics
11 // for functions/files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_COV_COVERAGESUMMARYINFO_H
16 #define LLVM_COV_COVERAGESUMMARYINFO_H
17
18 #include "FunctionCoverageMapping.h"
19 #include "llvm/Support/raw_ostream.h"
20
21 namespace llvm {
22
23 /// \brief Provides information about region coverage for a function/file.
24 struct RegionCoverageInfo {
25   /// \brief The number of regions that were executed at least once.
26   size_t Covered;
27
28   /// \brief The number of regions that weren't executed.
29   size_t NotCovered;
30
31   /// \brief The total number of regions in a function/file.
32   size_t NumRegions;
33
34   RegionCoverageInfo(size_t Covered, size_t NumRegions)
35       : Covered(Covered), NotCovered(NumRegions - Covered),
36         NumRegions(NumRegions) {}
37
38   bool isFullyCovered() const { return Covered == NumRegions; }
39
40   double getPercentCovered() const {
41     return double(Covered) / double(NumRegions) * 100.0;
42   }
43 };
44
45 /// \brief Provides information about line coverage for a function/file.
46 struct LineCoverageInfo {
47   /// \brief The number of lines that were executed at least once.
48   size_t Covered;
49
50   /// \brief The number of lines that weren't executed.
51   size_t NotCovered;
52
53   /// \brief The number of lines that aren't code.
54   size_t NonCodeLines;
55
56   /// \brief The total number of lines in a function/file.
57   size_t NumLines;
58
59   LineCoverageInfo(size_t Covered, size_t NumNonCodeLines, size_t NumLines)
60       : Covered(Covered), NotCovered(NumLines - NumNonCodeLines - Covered),
61         NonCodeLines(NumNonCodeLines), NumLines(NumLines) {}
62
63   bool isFullyCovered() const { return Covered == (NumLines - NonCodeLines); }
64
65   double getPercentCovered() const {
66     return double(Covered) / double(NumLines - NonCodeLines) * 100.0;
67   }
68 };
69
70 /// \brief Provides information about function coverage for a file.
71 struct FunctionCoverageInfo {
72   /// \brief The number of functions that have full
73   /// region coverage.
74   size_t FullyCovered;
75
76   /// \brief The total number of functions in this file.
77   size_t NumFunctions;
78
79   FunctionCoverageInfo(size_t FullyCovered, size_t NumFunctions)
80       : FullyCovered(FullyCovered), NumFunctions(NumFunctions) {}
81
82   bool isFullyCovered() const { return FullyCovered == NumFunctions; }
83
84   double getPercentCovered() const {
85     return double(FullyCovered) / double(NumFunctions) * 100.0;
86   }
87 };
88
89 /// \brief A summary of function's code coverage.
90 struct FunctionCoverageSummary {
91   StringRef Name;
92   RegionCoverageInfo RegionCoverage;
93   LineCoverageInfo LineCoverage;
94
95   FunctionCoverageSummary(StringRef Name,
96                           const RegionCoverageInfo &RegionCoverage,
97                           const LineCoverageInfo &LineCoverage)
98       : Name(Name), RegionCoverage(RegionCoverage), LineCoverage(LineCoverage) {
99   }
100
101   /// \brief Compute the code coverage summary for the given function coverage
102   /// mapping record.
103   static FunctionCoverageSummary get(const FunctionCoverageMapping &Function);
104 };
105
106 /// \brief A summary of file's code coverage.
107 struct FileCoverageSummary {
108   StringRef Name;
109   RegionCoverageInfo RegionCoverage;
110   LineCoverageInfo LineCoverage;
111   FunctionCoverageInfo FunctionCoverage;
112   /// \brief The summary of every function
113   /// in this file.
114   ArrayRef<FunctionCoverageSummary> FunctionSummaries;
115
116   FileCoverageSummary(StringRef Name, const RegionCoverageInfo &RegionCoverage,
117                       const LineCoverageInfo &LineCoverage,
118                       const FunctionCoverageInfo &FunctionCoverage,
119                       ArrayRef<FunctionCoverageSummary> FunctionSummaries)
120       : Name(Name), RegionCoverage(RegionCoverage), LineCoverage(LineCoverage),
121         FunctionCoverage(FunctionCoverage),
122         FunctionSummaries(FunctionSummaries) {}
123
124   /// \brief Compute the code coverage summary for a file.
125   static FileCoverageSummary
126   get(StringRef Name, ArrayRef<FunctionCoverageSummary> FunctionSummaries);
127 };
128
129 } // namespace llvm
130
131 #endif // LLVM_COV_COVERAGESUMMARYINFO_H