blob: 18b270433cd7dd80d3ced9ce58ca8caca60f15d4 [file] [log] [blame]
Alex Lorenze82d89c2014-08-22 22:56:03 +00001//===- 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
Justin Bogner15562d02014-09-12 06:52:44 +000018#include "llvm/ProfileData/CoverageMapping.h"
Alex Lorenze82d89c2014-08-22 22:56:03 +000019#include "llvm/Support/raw_ostream.h"
20
21namespace llvm {
22
23/// \brief Provides information about region coverage for a function/file.
24struct 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.
46struct 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.
71struct 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.
90struct 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.
Justin Bogner15562d02014-09-12 06:52:44 +0000103 static FunctionCoverageSummary
Justin Bogner953e2402014-09-20 15:31:56 +0000104 get(const coverage::FunctionRecord &Function);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000105};
106
107/// \brief A summary of file's code coverage.
108struct FileCoverageSummary {
109 StringRef Name;
110 RegionCoverageInfo RegionCoverage;
111 LineCoverageInfo LineCoverage;
112 FunctionCoverageInfo FunctionCoverage;
113 /// \brief The summary of every function
114 /// in this file.
115 ArrayRef<FunctionCoverageSummary> FunctionSummaries;
116
117 FileCoverageSummary(StringRef Name, const RegionCoverageInfo &RegionCoverage,
118 const LineCoverageInfo &LineCoverage,
119 const FunctionCoverageInfo &FunctionCoverage,
120 ArrayRef<FunctionCoverageSummary> FunctionSummaries)
121 : Name(Name), RegionCoverage(RegionCoverage), LineCoverage(LineCoverage),
122 FunctionCoverage(FunctionCoverage),
123 FunctionSummaries(FunctionSummaries) {}
124
125 /// \brief Compute the code coverage summary for a file.
126 static FileCoverageSummary
127 get(StringRef Name, ArrayRef<FunctionCoverageSummary> FunctionSummaries);
128};
129
130} // namespace llvm
131
132#endif // LLVM_COV_COVERAGESUMMARYINFO_H