blob: 80669d37f7692e2bbc7696a365b2db031429b672 [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//===----------------------------------------------------------------------===//
9//
10// This class implements rendering for code coverage of source code.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_COV_SOURCECOVERAGEVIEW_H
15#define LLVM_COV_SOURCECOVERAGEVIEW_H
16
17#include "CoverageViewOptions.h"
18#include "SourceCoverageDataManager.h"
19#include "llvm/ProfileData/CoverageMapping.h"
20#include "llvm/Support/MemoryBuffer.h"
21#include <vector>
22
23namespace llvm {
24
Justin Bogner5e1400a2014-09-17 05:33:20 +000025class SourceCoverageView;
26
27/// \brief A view that represents a macro or include expansion
28struct ExpansionView {
29 coverage::CounterMappingRegion Region;
30 std::unique_ptr<SourceCoverageView> View;
31
32 ExpansionView(const coverage::CounterMappingRegion &Region,
33 std::unique_ptr<SourceCoverageView> View)
34 : Region(Region), View(std::move(View)) {}
Justin Bogner99e95182014-09-17 06:32:48 +000035 ExpansionView(ExpansionView &&RHS)
36 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
37 ExpansionView &operator=(ExpansionView &&RHS) {
38 Region = std::move(RHS.Region);
39 View = std::move(RHS.View);
40 return *this;
41 }
Justin Bogner5e1400a2014-09-17 05:33:20 +000042
43 unsigned getLine() const { return Region.LineStart; }
44 unsigned getStartCol() const { return Region.ColumnStart; }
45 unsigned getEndCol() const { return Region.ColumnEnd; }
46
47 friend bool operator<(const ExpansionView &LHS, const ExpansionView &RHS) {
48 return LHS.Region.startLoc() < RHS.Region.startLoc();
49 }
50};
51
52/// \brief A view that represents a function instantiation
53struct InstantiationView {
54 StringRef FunctionName;
55 unsigned Line;
56 std::unique_ptr<SourceCoverageView> View;
57
58 InstantiationView(StringRef FunctionName, unsigned Line,
59 std::unique_ptr<SourceCoverageView> View)
60 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
Justin Bogner99e95182014-09-17 06:32:48 +000061 InstantiationView(InstantiationView &&RHS)
62 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)),
63 View(std::move(RHS.View)) {}
64 InstantiationView &operator=(InstantiationView &&RHS) {
65 FunctionName = std::move(RHS.FunctionName);
66 Line = std::move(RHS.Line);
67 View = std::move(RHS.View);
68 return *this;
69 }
Justin Bogner5e1400a2014-09-17 05:33:20 +000070
71 friend bool operator<(const InstantiationView &LHS,
72 const InstantiationView &RHS) {
73 return LHS.Line < RHS.Line;
74 }
75};
76
Alex Lorenze82d89c2014-08-22 22:56:03 +000077/// \brief A code coverage view of a specific source file.
78/// It can have embedded coverage views.
79class SourceCoverageView {
80public:
Alex Lorenze82d89c2014-08-22 22:56:03 +000081 /// \brief Coverage information for a single line.
82 struct LineCoverageInfo {
83 uint64_t ExecutionCount;
84 unsigned RegionCount;
85 bool Mapped;
86
87 LineCoverageInfo() : ExecutionCount(0), RegionCount(0), Mapped(false) {}
88
89 bool isMapped() const { return Mapped; }
90
91 bool hasMultipleRegions() const { return RegionCount > 1; }
92
93 void addRegionStartCount(uint64_t Count) {
94 Mapped = true;
95 ExecutionCount = Count;
96 ++RegionCount;
97 }
98
99 void addRegionCount(uint64_t Count) {
100 Mapped = true;
101 ExecutionCount = Count;
102 }
103 };
104
105 /// \brief A marker that points at the start
106 /// of a specific mapping region.
107 struct RegionMarker {
108 unsigned Line, Column;
109 uint64_t ExecutionCount;
110
111 RegionMarker(unsigned Line, unsigned Column, uint64_t Value)
112 : Line(Line), Column(Column), ExecutionCount(Value) {}
113 };
114
115 /// \brief A single line source range used to
116 /// render highlighted text.
117 struct HighlightRange {
118 enum HighlightKind {
119 /// The code that wasn't executed.
120 NotCovered,
121
122 /// The region of code that was expanded.
123 Expanded
124 };
125 HighlightKind Kind;
126 unsigned Line;
127 unsigned ColumnStart;
128 unsigned ColumnEnd;
129
130 HighlightRange(unsigned Line, unsigned ColumnStart, unsigned ColumnEnd,
131 HighlightKind Kind = NotCovered)
132 : Kind(Kind), Line(Line), ColumnStart(ColumnStart),
133 ColumnEnd(ColumnEnd) {}
134
135 bool operator<(const HighlightRange &Other) const {
136 if (Line == Other.Line)
137 return ColumnStart < Other.ColumnStart;
138 return Line < Other.Line;
139 }
140
141 bool columnStartOverlaps(const HighlightRange &Other) const {
142 return ColumnStart <= Other.ColumnStart && ColumnEnd > Other.ColumnStart;
143 }
144 bool columnEndOverlaps(const HighlightRange &Other) const {
145 return ColumnEnd >= Other.ColumnEnd && ColumnStart < Other.ColumnEnd;
146 }
147 bool contains(const HighlightRange &Other) const {
148 if (Line != Other.Line)
149 return false;
150 return ColumnStart <= Other.ColumnStart && ColumnEnd >= Other.ColumnEnd;
151 }
152
153 bool overlaps(const HighlightRange &Other) const {
154 if (Line != Other.Line)
155 return false;
156 return columnStartOverlaps(Other) || columnEndOverlaps(Other);
157 }
158 };
159
160private:
161 const MemoryBuffer &File;
162 const CoverageViewOptions &Options;
Justin Bogner7dad93b2014-09-15 03:41:04 +0000163 unsigned LineOffset;
Justin Bogner5e1400a2014-09-17 05:33:20 +0000164 std::vector<ExpansionView> ExpansionSubViews;
165 std::vector<InstantiationView> InstantiationSubViews;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000166 std::vector<LineCoverageInfo> LineStats;
167 std::vector<HighlightRange> HighlightRanges;
168 std::vector<RegionMarker> Markers;
Alex Lorenze82d89c2014-08-22 22:56:03 +0000169
Justin Bogner0b3614f2014-09-15 22:12:28 +0000170 /// \brief Initialize the visible source range for this view.
171 void setUpVisibleRange(SourceCoverageDataManager &Data);
172
Alex Lorenze82d89c2014-08-22 22:56:03 +0000173 /// \brief Create the line coverage information using the coverage data.
174 void createLineCoverageInfo(SourceCoverageDataManager &Data);
175
176 /// \brief Create the line highlighting ranges using the coverage data.
177 void createHighlightRanges(SourceCoverageDataManager &Data);
178
179 /// \brief Create the region markers using the coverage data.
180 void createRegionMarkers(SourceCoverageDataManager &Data);
181
Alex Lorenze82d89c2014-08-22 22:56:03 +0000182 /// \brief Render a source line with highlighting.
183 void renderLine(raw_ostream &OS, StringRef Line,
184 ArrayRef<HighlightRange> Ranges);
185
Justin Bogner76e251c2014-09-16 06:21:57 +0000186 void renderIndent(raw_ostream &OS, unsigned Level);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000187
188 void renderViewDivider(unsigned Offset, unsigned Length, raw_ostream &OS);
189
190 /// \brief Render the line's execution count column.
191 void renderLineCoverageColumn(raw_ostream &OS, const LineCoverageInfo &Line);
192
193 /// \brief Render the line number column.
194 void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo);
195
196 /// \brief Render all the region's execution counts on a line.
197 void renderRegionMarkers(raw_ostream &OS, ArrayRef<RegionMarker> Regions);
198
199 static const unsigned LineCoverageColumnWidth = 7;
200 static const unsigned LineNumberColumnWidth = 5;
201
202public:
203 SourceCoverageView(const MemoryBuffer &File,
204 const CoverageViewOptions &Options)
Justin Bogner5e1400a2014-09-17 05:33:20 +0000205 : File(File), Options(Options), LineOffset(0) {}
Alex Lorenze82d89c2014-08-22 22:56:03 +0000206
207 const CoverageViewOptions &getOptions() const { return Options; }
208
Justin Bogner5e1400a2014-09-17 05:33:20 +0000209 /// \brief Add an expansion subview to this view.
210 void addExpansion(const coverage::CounterMappingRegion &Region,
211 std::unique_ptr<SourceCoverageView> View) {
212 ExpansionSubViews.emplace_back(Region, std::move(View));
Alex Lorenze82d89c2014-08-22 22:56:03 +0000213 }
214
Justin Bogner5e1400a2014-09-17 05:33:20 +0000215 /// \brief Add a function instantiation subview to this view.
216 void addInstantiation(StringRef FunctionName, unsigned Line,
217 std::unique_ptr<SourceCoverageView> View) {
218 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View));
Alex Lorenze82d89c2014-08-22 22:56:03 +0000219 }
220
221 /// \brief Print the code coverage information for a specific
222 /// portion of a source file to the output stream.
Justin Bogner76e251c2014-09-16 06:21:57 +0000223 void render(raw_ostream &OS, unsigned IndentLevel = 0);
Alex Lorenze82d89c2014-08-22 22:56:03 +0000224
225 /// \brief Load the coverage information required for rendering
226 /// from the mapping regions in the data manager.
227 void load(SourceCoverageDataManager &Data);
228};
229
230} // namespace llvm
231
232#endif // LLVM_COV_SOURCECOVERAGEVIEW_H