mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
7d614bdaf0
Summary: Local testing has demonstrated a great speed improvement, compare the following: 1) Existing version: ``` $ time llvm-cov show -format=html -output-dir=report -instr-profile=... ... The tool has been launched: 00:00:00 Loading coverage data: 00:00:00 Get unique source files: 00:00:33 Creating an index out of the source files: 00:00:34 Going into prepareFileReports: 00:00:34 Going to emit summary information for each file: 00:28:55 <-- 28:21 min! Going to emit links to files with no function: 00:28:55 Launching 32 threads for generating HTML files: 00:28:55 real 37m43.651s user 112m5.540s sys 7m39.872s ``` 2) Multi-threaded version with 32 CPUs: ``` $ time llvm-cov show -format=html -output-dir=report -instr-profile=... ... The tool has been launched: 00:00:00 Loading coverage data: 00:00:00 Get unique source files: 00:00:38 Creating an index out of the source files: 00:00:40 Going into prepareFileReports: 00:00:40 Preparing file reports using 32 threads: 00:00:40 # Creating thread tasks for the following number of files: 16422 Going to emit summary information for each file: 00:01:57 <-- 1:17 min! Going to emit links to files with no function: 00:01:58 Launching 32 threads for generating HTML files: 00:01:58 real 11m2.044s user 134m48.124s sys 7m53.388s ``` Reviewers: vsk, morehouse Reviewed By: vsk Subscribers: Dor1s, llvm-commits, kcc Differential Revision: https://reviews.llvm.org/D41206 llvm-svn: 321871
220 lines
6.7 KiB
C++
220 lines
6.7 KiB
C++
//===- CoverageSummaryInfo.h - Coverage summary for function/file ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// These structures are used to represent code coverage metrics
|
|
// for functions/files.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_COV_COVERAGESUMMARYINFO_H
|
|
#define LLVM_COV_COVERAGESUMMARYINFO_H
|
|
|
|
#include "llvm/ProfileData/Coverage/CoverageMapping.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// \brief Provides information about region coverage for a function/file.
|
|
class RegionCoverageInfo {
|
|
/// \brief The number of regions that were executed at least once.
|
|
size_t Covered;
|
|
|
|
/// \brief The total number of regions in a function/file.
|
|
size_t NumRegions;
|
|
|
|
public:
|
|
RegionCoverageInfo() : Covered(0), NumRegions(0) {}
|
|
|
|
RegionCoverageInfo(size_t Covered, size_t NumRegions)
|
|
: Covered(Covered), NumRegions(NumRegions) {
|
|
assert(Covered <= NumRegions && "Covered regions over-counted");
|
|
}
|
|
|
|
RegionCoverageInfo &operator+=(const RegionCoverageInfo &RHS) {
|
|
Covered += RHS.Covered;
|
|
NumRegions += RHS.NumRegions;
|
|
return *this;
|
|
}
|
|
|
|
void merge(const RegionCoverageInfo &RHS) {
|
|
Covered = std::max(Covered, RHS.Covered);
|
|
NumRegions = std::max(NumRegions, RHS.NumRegions);
|
|
}
|
|
|
|
size_t getCovered() const { return Covered; }
|
|
|
|
size_t getNumRegions() const { return NumRegions; }
|
|
|
|
bool isFullyCovered() const { return Covered == NumRegions; }
|
|
|
|
double getPercentCovered() const {
|
|
assert(Covered <= NumRegions && "Covered regions over-counted");
|
|
if (NumRegions == 0)
|
|
return 0.0;
|
|
return double(Covered) / double(NumRegions) * 100.0;
|
|
}
|
|
};
|
|
|
|
/// \brief Provides information about line coverage for a function/file.
|
|
class LineCoverageInfo {
|
|
/// \brief The number of lines that were executed at least once.
|
|
size_t Covered;
|
|
|
|
/// \brief The total number of lines in a function/file.
|
|
size_t NumLines;
|
|
|
|
public:
|
|
LineCoverageInfo() : Covered(0), NumLines(0) {}
|
|
|
|
LineCoverageInfo(size_t Covered, size_t NumLines)
|
|
: Covered(Covered), NumLines(NumLines) {
|
|
assert(Covered <= NumLines && "Covered lines over-counted");
|
|
}
|
|
|
|
LineCoverageInfo &operator+=(const LineCoverageInfo &RHS) {
|
|
Covered += RHS.Covered;
|
|
NumLines += RHS.NumLines;
|
|
return *this;
|
|
}
|
|
|
|
void merge(const LineCoverageInfo &RHS) {
|
|
Covered = std::max(Covered, RHS.Covered);
|
|
NumLines = std::max(NumLines, RHS.NumLines);
|
|
}
|
|
|
|
size_t getCovered() const { return Covered; }
|
|
|
|
size_t getNumLines() const { return NumLines; }
|
|
|
|
bool isFullyCovered() const { return Covered == NumLines; }
|
|
|
|
double getPercentCovered() const {
|
|
assert(Covered <= NumLines && "Covered lines over-counted");
|
|
if (NumLines == 0)
|
|
return 0.0;
|
|
return double(Covered) / double(NumLines) * 100.0;
|
|
}
|
|
};
|
|
|
|
/// \brief Provides information about function coverage for a file.
|
|
class FunctionCoverageInfo {
|
|
/// \brief The number of functions that were executed.
|
|
size_t Executed;
|
|
|
|
/// \brief The total number of functions in this file.
|
|
size_t NumFunctions;
|
|
|
|
public:
|
|
FunctionCoverageInfo() : Executed(0), NumFunctions(0) {}
|
|
|
|
FunctionCoverageInfo(size_t Executed, size_t NumFunctions)
|
|
: Executed(Executed), NumFunctions(NumFunctions) {}
|
|
|
|
FunctionCoverageInfo &operator+=(const FunctionCoverageInfo &RHS) {
|
|
Executed += RHS.Executed;
|
|
NumFunctions += RHS.NumFunctions;
|
|
return *this;
|
|
}
|
|
|
|
void addFunction(bool Covered) {
|
|
if (Covered)
|
|
++Executed;
|
|
++NumFunctions;
|
|
}
|
|
|
|
size_t getExecuted() const { return Executed; }
|
|
|
|
size_t getNumFunctions() const { return NumFunctions; }
|
|
|
|
bool isFullyCovered() const { return Executed == NumFunctions; }
|
|
|
|
double getPercentCovered() const {
|
|
assert(Executed <= NumFunctions && "Covered functions over-counted");
|
|
if (NumFunctions == 0)
|
|
return 0.0;
|
|
return double(Executed) / double(NumFunctions) * 100.0;
|
|
}
|
|
};
|
|
|
|
/// \brief A summary of function's code coverage.
|
|
struct FunctionCoverageSummary {
|
|
std::string Name;
|
|
uint64_t ExecutionCount;
|
|
RegionCoverageInfo RegionCoverage;
|
|
LineCoverageInfo LineCoverage;
|
|
|
|
FunctionCoverageSummary(const std::string &Name)
|
|
: Name(Name), ExecutionCount(0), RegionCoverage(), LineCoverage() {}
|
|
|
|
FunctionCoverageSummary(const std::string &Name, uint64_t ExecutionCount,
|
|
const RegionCoverageInfo &RegionCoverage,
|
|
const LineCoverageInfo &LineCoverage)
|
|
: Name(Name), ExecutionCount(ExecutionCount),
|
|
RegionCoverage(RegionCoverage), LineCoverage(LineCoverage) {}
|
|
|
|
/// \brief Compute the code coverage summary for the given function coverage
|
|
/// mapping record.
|
|
static FunctionCoverageSummary get(const coverage::CoverageMapping &CM,
|
|
const coverage::FunctionRecord &Function);
|
|
|
|
/// Compute the code coverage summary for an instantiation group \p Group,
|
|
/// given a list of summaries for each instantiation in \p Summaries.
|
|
static FunctionCoverageSummary
|
|
get(const coverage::InstantiationGroup &Group,
|
|
ArrayRef<FunctionCoverageSummary> Summaries);
|
|
};
|
|
|
|
/// \brief A summary of file's code coverage.
|
|
struct FileCoverageSummary {
|
|
StringRef Name;
|
|
RegionCoverageInfo RegionCoverage;
|
|
LineCoverageInfo LineCoverage;
|
|
FunctionCoverageInfo FunctionCoverage;
|
|
FunctionCoverageInfo InstantiationCoverage;
|
|
|
|
FileCoverageSummary(StringRef Name)
|
|
: Name(Name), RegionCoverage(), LineCoverage(), FunctionCoverage(),
|
|
InstantiationCoverage() {}
|
|
|
|
FileCoverageSummary &operator+=(const FileCoverageSummary &RHS) {
|
|
RegionCoverage += RHS.RegionCoverage;
|
|
LineCoverage += RHS.LineCoverage;
|
|
FunctionCoverage += RHS.FunctionCoverage;
|
|
InstantiationCoverage += RHS.InstantiationCoverage;
|
|
return *this;
|
|
}
|
|
|
|
void addFunction(const FunctionCoverageSummary &Function) {
|
|
RegionCoverage += Function.RegionCoverage;
|
|
LineCoverage += Function.LineCoverage;
|
|
FunctionCoverage.addFunction(/*Covered=*/Function.ExecutionCount > 0);
|
|
}
|
|
|
|
void addInstantiation(const FunctionCoverageSummary &Function) {
|
|
InstantiationCoverage.addFunction(/*Covered=*/Function.ExecutionCount > 0);
|
|
}
|
|
};
|
|
|
|
/// \brief A cache for demangled symbols.
|
|
struct DemangleCache {
|
|
StringMap<std::string> DemangledNames;
|
|
|
|
/// \brief Demangle \p Sym if possible. Otherwise, just return \p Sym.
|
|
StringRef demangle(StringRef Sym) const {
|
|
const auto DemangledName = DemangledNames.find(Sym);
|
|
if (DemangledName == DemangledNames.end())
|
|
return Sym;
|
|
return DemangledName->getValue();
|
|
}
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif // LLVM_COV_COVERAGESUMMARYINFO_H
|