2014-08-23 00:56:03 +02:00
|
|
|
//===- SourceCoverageView.h - Code coverage view for source code ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-06-25 07:48:54 +02:00
|
|
|
///
|
|
|
|
/// \file This class implements rendering for code coverage of source code.
|
|
|
|
///
|
2014-08-23 00:56:03 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_COV_SOURCECOVERAGEVIEW_H
|
|
|
|
#define LLVM_COV_SOURCECOVERAGEVIEW_H
|
|
|
|
|
|
|
|
#include "CoverageViewOptions.h"
|
2017-09-19 04:00:12 +02:00
|
|
|
#include "CoverageSummaryInfo.h"
|
2016-04-29 20:53:05 +02:00
|
|
|
#include "llvm/ProfileData/Coverage/CoverageMapping.h"
|
2014-08-23 00:56:03 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-10-19 01:58:27 +02:00
|
|
|
using namespace coverage;
|
|
|
|
|
2017-10-03 13:05:28 +02:00
|
|
|
class CoverageFiltersMatchAll;
|
2014-09-17 07:33:20 +02:00
|
|
|
class SourceCoverageView;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// A view that represents a macro or include expansion.
|
2014-09-17 07:33:20 +02:00
|
|
|
struct ExpansionView {
|
2017-10-19 01:58:27 +02:00
|
|
|
CounterMappingRegion Region;
|
2014-09-17 07:33:20 +02:00
|
|
|
std::unique_ptr<SourceCoverageView> View;
|
|
|
|
|
2017-10-19 01:58:27 +02:00
|
|
|
ExpansionView(const CounterMappingRegion &Region,
|
2014-09-17 07:33:20 +02:00
|
|
|
std::unique_ptr<SourceCoverageView> View)
|
|
|
|
: Region(Region), View(std::move(View)) {}
|
2014-09-17 08:32:48 +02:00
|
|
|
ExpansionView(ExpansionView &&RHS)
|
|
|
|
: Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
|
|
|
|
ExpansionView &operator=(ExpansionView &&RHS) {
|
|
|
|
Region = std::move(RHS.Region);
|
|
|
|
View = std::move(RHS.View);
|
|
|
|
return *this;
|
|
|
|
}
|
2014-09-17 07:33:20 +02:00
|
|
|
|
|
|
|
unsigned getLine() const { return Region.LineStart; }
|
|
|
|
unsigned getStartCol() const { return Region.ColumnStart; }
|
|
|
|
unsigned getEndCol() const { return Region.ColumnEnd; }
|
|
|
|
|
|
|
|
friend bool operator<(const ExpansionView &LHS, const ExpansionView &RHS) {
|
|
|
|
return LHS.Region.startLoc() < RHS.Region.startLoc();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// A view that represents a function instantiation.
|
2014-09-17 07:33:20 +02:00
|
|
|
struct InstantiationView {
|
|
|
|
StringRef FunctionName;
|
|
|
|
unsigned Line;
|
|
|
|
std::unique_ptr<SourceCoverageView> View;
|
|
|
|
|
|
|
|
InstantiationView(StringRef FunctionName, unsigned Line,
|
|
|
|
std::unique_ptr<SourceCoverageView> View)
|
|
|
|
: FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
|
|
|
|
|
|
|
|
friend bool operator<(const InstantiationView &LHS,
|
|
|
|
const InstantiationView &RHS) {
|
|
|
|
return LHS.Line < RHS.Line;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// A file manager that handles format-aware file creation.
|
2016-06-28 18:12:24 +02:00
|
|
|
class CoveragePrinter {
|
|
|
|
public:
|
|
|
|
struct StreamDestructor {
|
|
|
|
void operator()(raw_ostream *OS) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
using OwnedStream = std::unique_ptr<raw_ostream, StreamDestructor>;
|
|
|
|
|
|
|
|
protected:
|
2016-07-22 01:26:15 +02:00
|
|
|
const CoverageViewOptions &Opts;
|
|
|
|
|
2016-06-28 18:12:24 +02:00
|
|
|
CoveragePrinter(const CoverageViewOptions &Opts) : Opts(Opts) {}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Return `OutputDir/ToplevelDir/Path.Extension`. If \p InToplevel is
|
2016-06-29 23:55:46 +02:00
|
|
|
/// false, skip the ToplevelDir component. If \p Relative is false, skip the
|
|
|
|
/// OutputDir component.
|
2016-06-28 18:12:24 +02:00
|
|
|
std::string getOutputPath(StringRef Path, StringRef Extension,
|
2016-09-09 03:32:51 +02:00
|
|
|
bool InToplevel, bool Relative = true) const;
|
2016-06-28 18:12:24 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// If directory output is enabled, create a file in that directory
|
2016-06-28 18:12:24 +02:00
|
|
|
/// at the path given by getOutputPath(). Otherwise, return stdout.
|
|
|
|
Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension,
|
2016-09-09 03:32:51 +02:00
|
|
|
bool InToplevel) const;
|
2016-06-28 18:12:24 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Return the sub-directory name for file coverage reports.
|
2016-06-28 18:12:24 +02:00
|
|
|
static StringRef getCoverageDir() { return "coverage"; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
static std::unique_ptr<CoveragePrinter>
|
|
|
|
create(const CoverageViewOptions &Opts);
|
|
|
|
|
|
|
|
virtual ~CoveragePrinter() {}
|
|
|
|
|
|
|
|
/// @name File Creation Interface
|
|
|
|
/// @{
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Create a file to print a coverage view into.
|
2016-06-28 18:12:24 +02:00
|
|
|
virtual Expected<OwnedStream> createViewFile(StringRef Path,
|
|
|
|
bool InToplevel) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Close a file which has been used to print a coverage view.
|
2016-06-28 18:12:24 +02:00
|
|
|
virtual void closeViewFile(OwnedStream OS) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Create an index which lists reports for the given source files.
|
2016-09-23 20:57:32 +02:00
|
|
|
virtual Error createIndexFile(ArrayRef<std::string> SourceFiles,
|
2017-10-19 01:58:27 +02:00
|
|
|
const CoverageMapping &Coverage,
|
2017-10-03 13:05:28 +02:00
|
|
|
const CoverageFiltersMatchAll &Filters) = 0;
|
2016-06-28 18:12:24 +02:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
};
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// A code coverage view of a source file or function.
|
2016-06-25 07:48:54 +02:00
|
|
|
///
|
|
|
|
/// A source coverage view and its nested sub-views form a file-oriented
|
|
|
|
/// representation of code coverage data. This view can be printed out by a
|
2016-06-28 18:12:24 +02:00
|
|
|
/// renderer which implements the Rendering Interface.
|
2016-06-24 02:34:48 +02:00
|
|
|
class SourceCoverageView {
|
2016-06-24 02:34:51 +02:00
|
|
|
/// A function or file name.
|
|
|
|
StringRef SourceName;
|
|
|
|
|
|
|
|
/// A memory buffer backing the source on display.
|
2014-08-23 00:56:03 +02:00
|
|
|
const MemoryBuffer &File;
|
2016-06-24 02:34:51 +02:00
|
|
|
|
|
|
|
/// Various options to guide the coverage renderer.
|
2014-08-23 00:56:03 +02:00
|
|
|
const CoverageViewOptions &Options;
|
2016-06-24 02:34:51 +02:00
|
|
|
|
|
|
|
/// Complete coverage information about the source on display.
|
2017-10-19 01:58:27 +02:00
|
|
|
CoverageData CoverageInfo;
|
2016-06-24 02:34:51 +02:00
|
|
|
|
|
|
|
/// A container for all expansions (e.g macros) in the source on display.
|
2014-09-17 07:33:20 +02:00
|
|
|
std::vector<ExpansionView> ExpansionSubViews;
|
2016-06-24 02:34:51 +02:00
|
|
|
|
|
|
|
/// A container for all instantiations (e.g template functions) in the source
|
|
|
|
/// on display.
|
2014-09-17 07:33:20 +02:00
|
|
|
std::vector<InstantiationView> InstantiationSubViews;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2016-09-06 21:31:18 +02:00
|
|
|
/// Get the first uncovered line number for the source file.
|
|
|
|
unsigned getFirstUncoveredLineNo();
|
|
|
|
|
2016-06-25 04:58:30 +02:00
|
|
|
protected:
|
|
|
|
struct LineRef {
|
|
|
|
StringRef Line;
|
|
|
|
int64_t LineNo;
|
|
|
|
|
|
|
|
LineRef(StringRef Line, int64_t LineNo) : Line(Line), LineNo(LineNo) {}
|
|
|
|
};
|
|
|
|
|
2017-10-19 01:58:27 +02:00
|
|
|
using CoverageSegmentArray = ArrayRef<const CoverageSegment *>;
|
2016-06-25 04:58:30 +02:00
|
|
|
|
|
|
|
/// @name Rendering Interface
|
|
|
|
/// @{
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render a header for the view.
|
2016-06-29 02:38:21 +02:00
|
|
|
virtual void renderViewHeader(raw_ostream &OS) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render a footer for the view.
|
2016-06-29 02:38:21 +02:00
|
|
|
virtual void renderViewFooter(raw_ostream &OS) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the source name for the view.
|
2016-09-10 21:37:26 +02:00
|
|
|
virtual void renderSourceName(raw_ostream &OS, bool WholeFile) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the line prefix at the given \p ViewDepth.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderLinePrefix(raw_ostream &OS, unsigned ViewDepth) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the line suffix at the given \p ViewDepth.
|
2016-06-29 02:38:21 +02:00
|
|
|
virtual void renderLineSuffix(raw_ostream &OS, unsigned ViewDepth) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render a view divider at the given \p ViewDepth.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderViewDivider(raw_ostream &OS, unsigned ViewDepth) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render a source line with highlighting.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderLine(raw_ostream &OS, LineRef L,
|
2017-10-18 20:52:28 +02:00
|
|
|
const LineCoverageStats &LCS, unsigned ExpansionCol,
|
2016-06-25 04:58:30 +02:00
|
|
|
unsigned ViewDepth) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the line's execution count column.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderLineCoverageColumn(raw_ostream &OS,
|
|
|
|
const LineCoverageStats &Line) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the line number column.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render all the region's execution counts on a line.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderRegionMarkers(raw_ostream &OS,
|
2017-10-18 20:52:28 +02:00
|
|
|
const LineCoverageStats &Line,
|
2016-06-25 04:58:30 +02:00
|
|
|
unsigned ViewDepth) = 0;
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the site of an expansion.
|
2017-10-18 20:52:28 +02:00
|
|
|
virtual void renderExpansionSite(raw_ostream &OS, LineRef L,
|
|
|
|
const LineCoverageStats &LCS,
|
|
|
|
unsigned ExpansionCol,
|
|
|
|
unsigned ViewDepth) = 0;
|
2016-06-25 04:58:30 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render an expansion view and any nested views.
|
2016-06-26 04:45:13 +02:00
|
|
|
virtual void renderExpansionView(raw_ostream &OS, ExpansionView &ESV,
|
|
|
|
unsigned ViewDepth) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render an instantiation view and any nested views.
|
2016-06-25 04:58:30 +02:00
|
|
|
virtual void renderInstantiationView(raw_ostream &OS, InstantiationView &ISV,
|
|
|
|
unsigned ViewDepth) = 0;
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render \p Title, a project title if one is available, and the
|
2016-09-15 06:45:59 +02:00
|
|
|
/// created time.
|
|
|
|
virtual void renderTitle(raw_ostream &OS, StringRef CellText) = 0;
|
2016-08-24 16:27:23 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Render the table header for a given source file.
|
2016-09-10 21:37:26 +02:00
|
|
|
virtual void renderTableHeader(raw_ostream &OS, unsigned FirstUncoveredLineNo,
|
|
|
|
unsigned IndentLevel) = 0;
|
2016-08-24 16:27:23 +02:00
|
|
|
|
2016-06-25 04:58:30 +02:00
|
|
|
/// @}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Format a count using engineering notation with 3 significant
|
2016-06-25 04:58:30 +02:00
|
|
|
/// digits.
|
|
|
|
static std::string formatCount(uint64_t N);
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Check if region marker output is expected for a line.
|
2017-11-09 03:33:44 +01:00
|
|
|
bool shouldRenderRegionMarkers(const LineCoverageStats &LCS) const;
|
2016-06-29 02:38:21 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Check if there are any sub-views attached to this view.
|
2016-06-29 02:38:21 +02:00
|
|
|
bool hasSubViews() const;
|
|
|
|
|
2016-06-24 02:34:51 +02:00
|
|
|
SourceCoverageView(StringRef SourceName, const MemoryBuffer &File,
|
2014-09-20 17:31:56 +02:00
|
|
|
const CoverageViewOptions &Options,
|
2017-10-19 01:58:27 +02:00
|
|
|
CoverageData &&CoverageInfo)
|
2016-06-24 02:34:51 +02:00
|
|
|
: SourceName(SourceName), File(File), Options(Options),
|
2016-09-08 02:56:48 +02:00
|
|
|
CoverageInfo(std::move(CoverageInfo)) {}
|
2016-06-24 02:34:51 +02:00
|
|
|
|
2016-06-25 04:58:30 +02:00
|
|
|
public:
|
|
|
|
static std::unique_ptr<SourceCoverageView>
|
|
|
|
create(StringRef SourceName, const MemoryBuffer &File,
|
2017-10-19 01:58:27 +02:00
|
|
|
const CoverageViewOptions &Options, CoverageData &&CoverageInfo);
|
2016-06-25 04:58:30 +02:00
|
|
|
|
|
|
|
virtual ~SourceCoverageView() {}
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Return the source name formatted for the host OS.
|
2016-09-08 02:56:48 +02:00
|
|
|
std::string getSourceName() const;
|
2016-09-06 23:41:38 +02:00
|
|
|
|
2014-08-23 00:56:03 +02:00
|
|
|
const CoverageViewOptions &getOptions() const { return Options; }
|
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Add an expansion subview to this view.
|
2017-10-19 01:58:27 +02:00
|
|
|
void addExpansion(const CounterMappingRegion &Region,
|
2016-06-25 04:58:30 +02:00
|
|
|
std::unique_ptr<SourceCoverageView> View);
|
2014-08-23 00:56:03 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Add a function instantiation subview to this view.
|
2014-09-17 07:33:20 +02:00
|
|
|
void addInstantiation(StringRef FunctionName, unsigned Line,
|
2016-06-25 04:58:30 +02:00
|
|
|
std::unique_ptr<SourceCoverageView> View);
|
2016-06-24 02:34:51 +02:00
|
|
|
|
2018-05-01 17:54:18 +02:00
|
|
|
/// Print the code coverage information for a specific portion of a
|
2016-06-25 04:58:30 +02:00
|
|
|
/// source file to the output stream.
|
|
|
|
void print(raw_ostream &OS, bool WholeFile, bool ShowSourceName,
|
2017-09-28 12:07:30 +02:00
|
|
|
bool ShowTitle, unsigned ViewDepth = 0);
|
2014-08-23 00:56:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_COV_SOURCECOVERAGEVIEW_H
|