blob: 3244dc8e8bb4cab2a2935cb0b9ec59b47d034ea2 [file] [log] [blame]
Alex Lorenze82d89c2014-08-22 22:56:03 +00001//===- SourceCoverageView.h - Code coverage view for source code ----------===//
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//===----------------------------------------------------------------------===//
Vedant Kumaree5a5e92016-06-25 05:48:54 +00009///
10/// \file This class implements rendering for code coverage of source code.
11///
Alex Lorenze82d89c2014-08-22 22:56:03 +000012//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_COV_SOURCECOVERAGEVIEW_H
15#define LLVM_COV_SOURCECOVERAGEVIEW_H
16
17#include "CoverageViewOptions.h"
Easwaran Ramandc707122016-04-29 18:53:05 +000018#include "llvm/ProfileData/Coverage/CoverageMapping.h"
Alex Lorenze82d89c2014-08-22 22:56:03 +000019#include "llvm/Support/MemoryBuffer.h"
20#include <vector>
21
22namespace llvm {
23
Justin Bogner5e1400a2014-09-17 05:33:20 +000024class SourceCoverageView;
25
Vedant Kumaree5a5e92016-06-25 05:48:54 +000026/// \brief A view that represents a macro or include expansion.
Justin Bogner5e1400a2014-09-17 05:33:20 +000027struct ExpansionView {
28 coverage::CounterMappingRegion Region;
29 std::unique_ptr<SourceCoverageView> View;
30
31 ExpansionView(const coverage::CounterMappingRegion &Region,
32 std::unique_ptr<SourceCoverageView> View)
33 : Region(Region), View(std::move(View)) {}
Justin Bogner99e95182014-09-17 06:32:48 +000034 ExpansionView(ExpansionView &&RHS)
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
36 ExpansionView &operator=(ExpansionView &&RHS) {
37 Region = std::move(RHS.Region);
38 View = std::move(RHS.View);
39 return *this;
40 }
Justin Bogner5e1400a2014-09-17 05:33:20 +000041
42 unsigned getLine() const { return Region.LineStart; }
43 unsigned getStartCol() const { return Region.ColumnStart; }
44 unsigned getEndCol() const { return Region.ColumnEnd; }
45
46 friend bool operator<(const ExpansionView &LHS, const ExpansionView &RHS) {
47 return LHS.Region.startLoc() < RHS.Region.startLoc();
48 }
49};
50
Vedant Kumaree5a5e92016-06-25 05:48:54 +000051/// \brief A view that represents a function instantiation.
Justin Bogner5e1400a2014-09-17 05:33:20 +000052struct InstantiationView {
53 StringRef FunctionName;
54 unsigned Line;
55 std::unique_ptr<SourceCoverageView> View;
56
57 InstantiationView(StringRef FunctionName, unsigned Line,
58 std::unique_ptr<SourceCoverageView> View)
59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
Justin Bogner99e95182014-09-17 06:32:48 +000060 InstantiationView(InstantiationView &&RHS)
61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)),
62 View(std::move(RHS.View)) {}
63 InstantiationView &operator=(InstantiationView &&RHS) {
64 FunctionName = std::move(RHS.FunctionName);
65 Line = std::move(RHS.Line);
66 View = std::move(RHS.View);
67 return *this;
68 }
Justin Bogner5e1400a2014-09-17 05:33:20 +000069
70 friend bool operator<(const InstantiationView &LHS,
71 const InstantiationView &RHS) {
72 return LHS.Line < RHS.Line;
73 }
74};
75
Vedant Kumar60dcb482016-06-24 00:34:48 +000076/// \brief Coverage statistics for a single line.
77struct LineCoverageStats {
78 uint64_t ExecutionCount;
79 unsigned RegionCount;
80 bool Mapped;
81
82 LineCoverageStats() : ExecutionCount(0), RegionCount(0), Mapped(false) {}
83
84 bool isMapped() const { return Mapped; }
85
86 bool hasMultipleRegions() const { return RegionCount > 1; }
87
88 void addRegionStartCount(uint64_t Count) {
89 // The max of all region starts is the most interesting value.
90 addRegionCount(RegionCount ? std::max(ExecutionCount, Count) : Count);
91 ++RegionCount;
92 }
93
94 void addRegionCount(uint64_t Count) {
95 Mapped = true;
96 ExecutionCount = Count;
97 }
98};
99
Vedant Kumar9cbad2c2016-06-28 16:12:24 +0000100/// \brief A file manager that handles format-aware file creation.
101class CoveragePrinter {
102 const CoverageViewOptions &Opts;
103
104public:
105 struct StreamDestructor {
106 void operator()(raw_ostream *OS) const;
107 };
108
109 using OwnedStream = std::unique_ptr<raw_ostream, StreamDestructor>;
110
111protected:
112 CoveragePrinter(const CoverageViewOptions &Opts) : Opts(Opts) {}
113
114 /// \brief Return `OutputDir/ToplevelDir/Path.Extension`.
115 std::string getOutputPath(StringRef Path, StringRef Extension,
116 bool InToplevel);
117
118 /// \brief If directory output is enabled, create a file in that directory
119 /// at the path given by getOutputPath(). Otherwise, return stdout.
120 Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension,
121 bool InToplevel);
122
123 /// \brief Return the sub-directory name for file coverage reports.
124 static StringRef getCoverageDir() { return "coverage"; }
125
126public:
127 static std::unique_ptr<CoveragePrinter>
128 create(const CoverageViewOptions &Opts);
129
130 virtual ~CoveragePrinter() {}
131
132 /// @name File Creation Interface
133 /// @{
134
135 /// \brief Create a file to print a coverage view into.
136 virtual Expected<OwnedStream> createViewFile(StringRef Path,
137 bool InToplevel) = 0;
138
139 /// \brief Close a file which has been used to print a coverage view.
140 virtual void closeViewFile(OwnedStream OS) = 0;
141
142 /// \brief Create an index which lists reports for the given source files.
143 virtual Error createIndexFile(ArrayRef<StringRef> SourceFiles) = 0;
144
145 /// @}
146};
147
Vedant Kumaree5a5e92016-06-25 05:48:54 +0000148/// \brief A code coverage view of a source file or function.
149///
150/// A source coverage view and its nested sub-views form a file-oriented
151/// representation of code coverage data. This view can be printed out by a
Vedant Kumar9cbad2c2016-06-28 16:12:24 +0000152/// renderer which implements the Rendering Interface.
Alex Lorenze82d89c2014-08-22 22:56:03 +0000153class SourceCoverageView {
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000154 /// A function or file name.
155 StringRef SourceName;
156
157 /// A memory buffer backing the source on display.
Alex Lorenze82d89c2014-08-22 22:56:03 +0000158 const MemoryBuffer &File;
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000159
160 /// Various options to guide the coverage renderer.
Alex Lorenze82d89c2014-08-22 22:56:03 +0000161 const CoverageViewOptions &Options;
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000162
163 /// Complete coverage information about the source on display.
Justin Bogner953e2402014-09-20 15:31:56 +0000164 coverage::CoverageData CoverageInfo;
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000165
166 /// A container for all expansions (e.g macros) in the source on display.
Justin Bogner5e1400a2014-09-17 05:33:20 +0000167 std::vector<ExpansionView> ExpansionSubViews;
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000168
169 /// A container for all instantiations (e.g template functions) in the source
170 /// on display.
Justin Bogner5e1400a2014-09-17 05:33:20 +0000171 std::vector<InstantiationView> InstantiationSubViews;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000172
Vedant Kumarf9151b92016-06-25 02:58:30 +0000173protected:
174 struct LineRef {
175 StringRef Line;
176 int64_t LineNo;
177
178 LineRef(StringRef Line, int64_t LineNo) : Line(Line), LineNo(LineNo) {}
179 };
180
181 using CoverageSegmentArray = ArrayRef<const coverage::CoverageSegment *>;
182
183 /// @name Rendering Interface
184 /// @{
185
186 /// \brief Render the source name for the view.
187 virtual void renderSourceName(raw_ostream &OS) = 0;
188
189 /// \brief Render the line prefix at the given \p ViewDepth.
190 virtual void renderLinePrefix(raw_ostream &OS, unsigned ViewDepth) = 0;
191
192 /// \brief Render a view divider at the given \p ViewDepth.
193 virtual void renderViewDivider(raw_ostream &OS, unsigned ViewDepth) = 0;
194
Alex Lorenze82d89c2014-08-22 22:56:03 +0000195 /// \brief Render a source line with highlighting.
Vedant Kumarf9151b92016-06-25 02:58:30 +0000196 virtual void renderLine(raw_ostream &OS, LineRef L,
197 const coverage::CoverageSegment *WrappedSegment,
198 CoverageSegmentArray Segments, unsigned ExpansionCol,
199 unsigned ViewDepth) = 0;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000200
201 /// \brief Render the line's execution count column.
Vedant Kumarf9151b92016-06-25 02:58:30 +0000202 virtual void renderLineCoverageColumn(raw_ostream &OS,
203 const LineCoverageStats &Line) = 0;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000204
205 /// \brief Render the line number column.
Vedant Kumarf9151b92016-06-25 02:58:30 +0000206 virtual void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) = 0;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000207
208 /// \brief Render all the region's execution counts on a line.
Vedant Kumarf9151b92016-06-25 02:58:30 +0000209 virtual void renderRegionMarkers(raw_ostream &OS,
210 CoverageSegmentArray Segments,
211 unsigned ViewDepth) = 0;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000212
Vedant Kumar861a19c2016-06-26 02:45:13 +0000213 /// \brief Render the site of an expansion.
214 virtual void
215 renderExpansionSite(raw_ostream &OS, ExpansionView &ESV, LineRef L,
Vedant Kumar8b12ecb2016-06-25 05:48:59 +0000216 const coverage::CoverageSegment *WrappedSegment,
217 CoverageSegmentArray Segments, unsigned ExpansionCol,
218 unsigned ViewDepth) = 0;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000219
Vedant Kumar861a19c2016-06-26 02:45:13 +0000220 /// \brief Render an expansion view and any nested views.
221 virtual void renderExpansionView(raw_ostream &OS, ExpansionView &ESV,
222 unsigned ViewDepth) = 0;
223
224 /// \brief Render an instantiation view and any nested views.
Vedant Kumarf9151b92016-06-25 02:58:30 +0000225 virtual void renderInstantiationView(raw_ostream &OS, InstantiationView &ISV,
226 unsigned ViewDepth) = 0;
227
228 /// @}
229
230 /// \brief Format a count using engineering notation with 3 significant
231 /// digits.
232 static std::string formatCount(uint64_t N);
233
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000234 SourceCoverageView(StringRef SourceName, const MemoryBuffer &File,
Justin Bogner953e2402014-09-20 15:31:56 +0000235 const CoverageViewOptions &Options,
236 coverage::CoverageData &&CoverageInfo)
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000237 : SourceName(SourceName), File(File), Options(Options),
238 CoverageInfo(std::move(CoverageInfo)) {}
239
Vedant Kumarf9151b92016-06-25 02:58:30 +0000240public:
241 static std::unique_ptr<SourceCoverageView>
242 create(StringRef SourceName, const MemoryBuffer &File,
243 const CoverageViewOptions &Options,
244 coverage::CoverageData &&CoverageInfo);
245
246 virtual ~SourceCoverageView() {}
247
Vedant Kumar9d70d0b2016-06-24 00:34:51 +0000248 StringRef getSourceName() const { return SourceName; }
Alex Lorenze82d89c2014-08-22 22:56:03 +0000249
250 const CoverageViewOptions &getOptions() const { return Options; }
251
Justin Bogner5e1400a2014-09-17 05:33:20 +0000252 /// \brief Add an expansion subview to this view.
253 void addExpansion(const coverage::CounterMappingRegion &Region,
Vedant Kumarf9151b92016-06-25 02:58:30 +0000254 std::unique_ptr<SourceCoverageView> View);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000255
Justin Bogner5e1400a2014-09-17 05:33:20 +0000256 /// \brief Add a function instantiation subview to this view.
257 void addInstantiation(StringRef FunctionName, unsigned Line,
Vedant Kumarf9151b92016-06-25 02:58:30 +0000258 std::unique_ptr<SourceCoverageView> View);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000259
Vedant Kumarf9151b92016-06-25 02:58:30 +0000260 /// \brief Print the code coverage information for a specific portion of a
261 /// source file to the output stream.
262 void print(raw_ostream &OS, bool WholeFile, bool ShowSourceName,
263 unsigned ViewDepth = 0);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000264};
265
266} // namespace llvm
267
268#endif // LLVM_COV_SOURCECOVERAGEVIEW_H