Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 1 | //===- 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 Kumar | ee5a5e9 | 2016-06-25 05:48:54 +0000 | [diff] [blame] | 9 | /// |
| 10 | /// \file This class implements rendering for code coverage of source code. |
| 11 | /// |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_COV_SOURCECOVERAGEVIEW_H |
| 15 | #define LLVM_COV_SOURCECOVERAGEVIEW_H |
| 16 | |
| 17 | #include "CoverageViewOptions.h" |
Easwaran Raman | dc70712 | 2016-04-29 18:53:05 +0000 | [diff] [blame] | 18 | #include "llvm/ProfileData/Coverage/CoverageMapping.h" |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 19 | #include "llvm/Support/MemoryBuffer.h" |
| 20 | #include <vector> |
| 21 | |
| 22 | namespace llvm { |
| 23 | |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 24 | class SourceCoverageView; |
| 25 | |
Vedant Kumar | ee5a5e9 | 2016-06-25 05:48:54 +0000 | [diff] [blame] | 26 | /// \brief A view that represents a macro or include expansion. |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 27 | struct 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 Bogner | 99e9518 | 2014-09-17 06:32:48 +0000 | [diff] [blame] | 34 | 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 Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 41 | |
| 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 Kumar | ee5a5e9 | 2016-06-25 05:48:54 +0000 | [diff] [blame] | 51 | /// \brief A view that represents a function instantiation. |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 52 | struct 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 Bogner | 99e9518 | 2014-09-17 06:32:48 +0000 | [diff] [blame] | 60 | 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 Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 69 | |
| 70 | friend bool operator<(const InstantiationView &LHS, |
| 71 | const InstantiationView &RHS) { |
| 72 | return LHS.Line < RHS.Line; |
| 73 | } |
| 74 | }; |
| 75 | |
Vedant Kumar | 60dcb48 | 2016-06-24 00:34:48 +0000 | [diff] [blame] | 76 | /// \brief Coverage statistics for a single line. |
| 77 | struct 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 Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 100 | /// \brief A file manager that handles format-aware file creation. |
| 101 | class CoveragePrinter { |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 102 | public: |
| 103 | struct StreamDestructor { |
| 104 | void operator()(raw_ostream *OS) const; |
| 105 | }; |
| 106 | |
| 107 | using OwnedStream = std::unique_ptr<raw_ostream, StreamDestructor>; |
| 108 | |
| 109 | protected: |
Vedant Kumar | c076c49 | 2016-07-21 23:26:15 +0000 | [diff] [blame] | 110 | const CoverageViewOptions &Opts; |
| 111 | |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 112 | CoveragePrinter(const CoverageViewOptions &Opts) : Opts(Opts) {} |
| 113 | |
Vedant Kumar | d6d192c | 2016-06-29 21:55:46 +0000 | [diff] [blame] | 114 | /// \brief Return `OutputDir/ToplevelDir/Path.Extension`. If \p InToplevel is |
| 115 | /// false, skip the ToplevelDir component. If \p Relative is false, skip the |
| 116 | /// OutputDir component. |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 117 | std::string getOutputPath(StringRef Path, StringRef Extension, |
Vedant Kumar | d6d192c | 2016-06-29 21:55:46 +0000 | [diff] [blame] | 118 | bool InToplevel, bool Relative = true); |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 119 | |
| 120 | /// \brief If directory output is enabled, create a file in that directory |
| 121 | /// at the path given by getOutputPath(). Otherwise, return stdout. |
| 122 | Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension, |
| 123 | bool InToplevel); |
| 124 | |
| 125 | /// \brief Return the sub-directory name for file coverage reports. |
| 126 | static StringRef getCoverageDir() { return "coverage"; } |
| 127 | |
| 128 | public: |
| 129 | static std::unique_ptr<CoveragePrinter> |
| 130 | create(const CoverageViewOptions &Opts); |
| 131 | |
| 132 | virtual ~CoveragePrinter() {} |
| 133 | |
| 134 | /// @name File Creation Interface |
| 135 | /// @{ |
| 136 | |
| 137 | /// \brief Create a file to print a coverage view into. |
| 138 | virtual Expected<OwnedStream> createViewFile(StringRef Path, |
| 139 | bool InToplevel) = 0; |
| 140 | |
| 141 | /// \brief Close a file which has been used to print a coverage view. |
| 142 | virtual void closeViewFile(OwnedStream OS) = 0; |
| 143 | |
| 144 | /// \brief Create an index which lists reports for the given source files. |
| 145 | virtual Error createIndexFile(ArrayRef<StringRef> SourceFiles) = 0; |
| 146 | |
| 147 | /// @} |
| 148 | }; |
| 149 | |
Vedant Kumar | ee5a5e9 | 2016-06-25 05:48:54 +0000 | [diff] [blame] | 150 | /// \brief A code coverage view of a source file or function. |
| 151 | /// |
| 152 | /// A source coverage view and its nested sub-views form a file-oriented |
| 153 | /// representation of code coverage data. This view can be printed out by a |
Vedant Kumar | 9cbad2c | 2016-06-28 16:12:24 +0000 | [diff] [blame] | 154 | /// renderer which implements the Rendering Interface. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 155 | class SourceCoverageView { |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 156 | /// A function or file name. |
| 157 | StringRef SourceName; |
| 158 | |
| 159 | /// A memory buffer backing the source on display. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 160 | const MemoryBuffer &File; |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 161 | |
| 162 | /// Various options to guide the coverage renderer. |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 163 | const CoverageViewOptions &Options; |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 164 | |
| 165 | /// Complete coverage information about the source on display. |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 166 | coverage::CoverageData CoverageInfo; |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 167 | |
| 168 | /// A container for all expansions (e.g macros) in the source on display. |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 169 | std::vector<ExpansionView> ExpansionSubViews; |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 170 | |
| 171 | /// A container for all instantiations (e.g template functions) in the source |
| 172 | /// on display. |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 173 | std::vector<InstantiationView> InstantiationSubViews; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 174 | |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 175 | /// Specifies whether or not the view is a function view. |
| 176 | bool FunctionView; |
| 177 | |
Ying Yi | d36b47c | 2016-09-06 19:31:18 +0000 | [diff] [blame] | 178 | /// Get the first uncovered line number for the source file. |
| 179 | unsigned getFirstUncoveredLineNo(); |
| 180 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 181 | protected: |
| 182 | struct LineRef { |
| 183 | StringRef Line; |
| 184 | int64_t LineNo; |
| 185 | |
| 186 | LineRef(StringRef Line, int64_t LineNo) : Line(Line), LineNo(LineNo) {} |
| 187 | }; |
| 188 | |
| 189 | using CoverageSegmentArray = ArrayRef<const coverage::CoverageSegment *>; |
| 190 | |
| 191 | /// @name Rendering Interface |
| 192 | /// @{ |
| 193 | |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 194 | /// \brief Render a header for the view. |
| 195 | virtual void renderViewHeader(raw_ostream &OS) = 0; |
| 196 | |
| 197 | /// \brief Render a footer for the view. |
| 198 | virtual void renderViewFooter(raw_ostream &OS) = 0; |
| 199 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 200 | /// \brief Render the source name for the view. |
Ying Yi | d36b47c | 2016-09-06 19:31:18 +0000 | [diff] [blame] | 201 | virtual void renderSourceName(raw_ostream &OS, bool WholeFile, |
| 202 | unsigned FirstUncoveredLineNo) = 0; |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 203 | |
| 204 | /// \brief Render the line prefix at the given \p ViewDepth. |
| 205 | virtual void renderLinePrefix(raw_ostream &OS, unsigned ViewDepth) = 0; |
| 206 | |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 207 | /// \brief Render the line suffix at the given \p ViewDepth. |
| 208 | virtual void renderLineSuffix(raw_ostream &OS, unsigned ViewDepth) = 0; |
| 209 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 210 | /// \brief Render a view divider at the given \p ViewDepth. |
| 211 | virtual void renderViewDivider(raw_ostream &OS, unsigned ViewDepth) = 0; |
| 212 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 213 | /// \brief Render a source line with highlighting. |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 214 | virtual void renderLine(raw_ostream &OS, LineRef L, |
| 215 | const coverage::CoverageSegment *WrappedSegment, |
| 216 | CoverageSegmentArray Segments, unsigned ExpansionCol, |
| 217 | unsigned ViewDepth) = 0; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 218 | |
| 219 | /// \brief Render the line's execution count column. |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 220 | virtual void renderLineCoverageColumn(raw_ostream &OS, |
| 221 | const LineCoverageStats &Line) = 0; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 222 | |
| 223 | /// \brief Render the line number column. |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 224 | virtual void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) = 0; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 225 | |
| 226 | /// \brief Render all the region's execution counts on a line. |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 227 | virtual void renderRegionMarkers(raw_ostream &OS, |
| 228 | CoverageSegmentArray Segments, |
| 229 | unsigned ViewDepth) = 0; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 230 | |
Vedant Kumar | 861a19c | 2016-06-26 02:45:13 +0000 | [diff] [blame] | 231 | /// \brief Render the site of an expansion. |
| 232 | virtual void |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 233 | renderExpansionSite(raw_ostream &OS, LineRef L, |
Vedant Kumar | 8b12ecb | 2016-06-25 05:48:59 +0000 | [diff] [blame] | 234 | const coverage::CoverageSegment *WrappedSegment, |
| 235 | CoverageSegmentArray Segments, unsigned ExpansionCol, |
| 236 | unsigned ViewDepth) = 0; |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 237 | |
Vedant Kumar | 861a19c | 2016-06-26 02:45:13 +0000 | [diff] [blame] | 238 | /// \brief Render an expansion view and any nested views. |
| 239 | virtual void renderExpansionView(raw_ostream &OS, ExpansionView &ESV, |
| 240 | unsigned ViewDepth) = 0; |
| 241 | |
| 242 | /// \brief Render an instantiation view and any nested views. |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 243 | virtual void renderInstantiationView(raw_ostream &OS, InstantiationView &ISV, |
| 244 | unsigned ViewDepth) = 0; |
| 245 | |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 246 | /// \brief Render the project title, the report title \p CellText and the |
| 247 | /// created time for the view. |
| 248 | virtual void renderCellInTitle(raw_ostream &OS, StringRef CellText) = 0; |
| 249 | |
| 250 | /// \brief Render the table header for a given source file |
| 251 | virtual void renderTableHeader(raw_ostream &OS, unsigned IndentLevel = 0) = 0; |
| 252 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 253 | /// @} |
| 254 | |
| 255 | /// \brief Format a count using engineering notation with 3 significant |
| 256 | /// digits. |
| 257 | static std::string formatCount(uint64_t N); |
| 258 | |
Vedant Kumar | 8d74cb2 | 2016-06-29 00:38:21 +0000 | [diff] [blame] | 259 | /// \brief Check if region marker output is expected for a line. |
| 260 | bool shouldRenderRegionMarkers(bool LineHasMultipleRegions) const; |
| 261 | |
| 262 | /// \brief Check if there are any sub-views attached to this view. |
| 263 | bool hasSubViews() const; |
| 264 | |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 265 | SourceCoverageView(StringRef SourceName, const MemoryBuffer &File, |
Justin Bogner | 953e240 | 2014-09-20 15:31:56 +0000 | [diff] [blame] | 266 | const CoverageViewOptions &Options, |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 267 | coverage::CoverageData &&CoverageInfo, bool FunctionView) |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 268 | : SourceName(SourceName), File(File), Options(Options), |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 269 | CoverageInfo(std::move(CoverageInfo)), FunctionView(FunctionView) {} |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 270 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 271 | public: |
| 272 | static std::unique_ptr<SourceCoverageView> |
| 273 | create(StringRef SourceName, const MemoryBuffer &File, |
| 274 | const CoverageViewOptions &Options, |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 275 | coverage::CoverageData &&CoverageInfo, bool FucntionView = false); |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 276 | |
| 277 | virtual ~SourceCoverageView() {} |
| 278 | |
Vedant Kumar | 9d70d0b | 2016-06-24 00:34:51 +0000 | [diff] [blame] | 279 | StringRef getSourceName() const { return SourceName; } |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 280 | |
Ying Yi | 24e91bd | 2016-09-06 21:41:38 +0000 | [diff] [blame^] | 281 | /// \brief Return the source name formatted for the host OS. |
| 282 | std::string getNativeSourceName() const; |
| 283 | |
Ying Yi | 84dc971 | 2016-08-24 14:27:23 +0000 | [diff] [blame] | 284 | bool isFunctionView() const { return FunctionView; } |
| 285 | |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 286 | const CoverageViewOptions &getOptions() const { return Options; } |
| 287 | |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 288 | /// \brief Add an expansion subview to this view. |
| 289 | void addExpansion(const coverage::CounterMappingRegion &Region, |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 290 | std::unique_ptr<SourceCoverageView> View); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 291 | |
Justin Bogner | 5e1400a | 2014-09-17 05:33:20 +0000 | [diff] [blame] | 292 | /// \brief Add a function instantiation subview to this view. |
| 293 | void addInstantiation(StringRef FunctionName, unsigned Line, |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 294 | std::unique_ptr<SourceCoverageView> View); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 295 | |
Vedant Kumar | f9151b9 | 2016-06-25 02:58:30 +0000 | [diff] [blame] | 296 | /// \brief Print the code coverage information for a specific portion of a |
| 297 | /// source file to the output stream. |
| 298 | void print(raw_ostream &OS, bool WholeFile, bool ShowSourceName, |
| 299 | unsigned ViewDepth = 0); |
Alex Lorenz | e82d89c | 2014-08-22 22:56:03 +0000 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | } // namespace llvm |
| 303 | |
| 304 | #endif // LLVM_COV_SOURCECOVERAGEVIEW_H |