Home
last modified time | relevance | path

Searched refs:FunctionCoverageSummary (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp99 FunctionCoverageSummary
100 FunctionCoverageSummary::get(const CoverageMapping &CM, in get()
105 FunctionCoverageSummary(Function.Name, Function.ExecutionCount); in get()
115 FunctionCoverageSummary
116 FunctionCoverageSummary::get(const InstantiationGroup &Group, in get()
117 ArrayRef<FunctionCoverageSummary> Summaries) { in get()
127 FunctionCoverageSummary Summary(Name, Group.getTotalExecutionCount()); in get()
H A DCoverageSummaryInfo.h246 struct FunctionCoverageSummary : CoverageDataSummary { struct
250 FunctionCoverageSummary(const std::string &Name, uint64_t ExecutionCount = 0) argument
255 static FunctionCoverageSummary get(const coverage::CoverageMapping &CM, argument
260 static FunctionCoverageSummary
262 ArrayRef<FunctionCoverageSummary> Summaries);
281 void addFunction(const FunctionCoverageSummary &Function) { in addFunction()
289 void addInstantiation(const FunctionCoverageSummary &Function) { in addInstantiation()
H A DCoverageFilters.cpp46 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
53 return PassesThreshold(FunctionCoverageSummary::get(CM, Function) in matches()
H A DCoverageReport.cpp330 void CoverageReport::render(const FunctionCoverageSummary &Function, in render()
427 FunctionCoverageSummary Totals("TOTAL"); in renderFunctionReports()
429 auto Function = FunctionCoverageSummary::get(Coverage, F); in renderFunctionReports()
450 std::vector<FunctionCoverageSummary> InstantiationSummaries; in prepareSingleFileReport()
454 auto InstantiationSummary = FunctionCoverageSummary::get(*Coverage, *F); in prepareSingleFileReport()
462 FunctionCoverageSummary::get(Group, InstantiationSummaries); in prepareSingleFileReport()
H A DCoverageReport.h31 void render(const FunctionCoverageSummary &Function, const DemangleCache &DC,