Home
last modified time | relevance | path

Searched refs:Coverage (Results 1 – 13 of 13) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp60 CoverageMapping &Coverage);
64 createFunctionView(const FunctionRecord &Function, CoverageMapping &Coverage);
68 createSourceFileView(StringRef SourceFile, CoverageMapping &Coverage);
126 CoverageMapping &Coverage) { in attachExpansionSubViews() argument
130 auto ExpansionCoverage = Coverage.getCoverageForExpansion(Expansion); in attachExpansionSubViews()
140 attachExpansionSubViews(*SubView, SubViewExpansions, Coverage); in attachExpansionSubViews()
147 CoverageMapping &Coverage) { in createFunctionView() argument
148 auto FunctionCoverage = Coverage.getCoverageForFunction(Function); in createFunctionView()
158 attachExpansionSubViews(*View, Expansions, Coverage); in createFunctionView()
165 CoverageMapping &Coverage) { in createSourceFileView() argument
[all …]
H A DCoverageSummary.cpp31 CoverageSummary::createSummaries(const coverage::CoverageMapping &Coverage) { in createSummaries() argument
32 for (StringRef Filename : Coverage.getUniqueSourceFiles()) { in createSummaries()
34 for (const auto &F : Coverage.getCoveredFunctions(Filename)) in createSummaries()
H A DCoverageSummary.h33 void createSummaries(const coverage::CoverageMapping &Coverage);
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DGCOV.cpp694 GCOVCoverage &Coverage, uint32_t &EdgeNo) { in printBranchInfo() argument
702 if (Block.getCount()) ++Coverage.BranchesExec; in printBranchInfo()
703 if (Edge->Count) ++Coverage.BranchesTaken; in printBranchInfo()
704 ++Coverage.Branches; in printBranchInfo()
731 void FileInfo::printCoverage(const GCOVCoverage &Coverage) const { in printCoverage()
733 double(Coverage.LinesExec)*100/Coverage.LogicalLines, in printCoverage()
734 Coverage.LogicalLines); in printCoverage()
736 if (Coverage.Branches) { in printCoverage()
738 double(Coverage.BranchesExec)*100/Coverage.Branches, in printCoverage()
739 Coverage.Branches); in printCoverage()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp139 SmallBitVector Coverage(RegSize, false); in AddMachineRegPiece() local
150 Intersection ^= Coverage; in AddMachineRegPiece()
160 Coverage.set(Offset, Offset + Size); in AddMachineRegPiece()
/minix3/external/bsd/llvm/dist/llvm/lib/ProfileData/
H A DCoverageMapping.cpp183 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping()); in load() local
193 Coverage->MismatchedFunctionCount++; in load()
208 Coverage->MismatchedFunctionCount++; in load()
212 Coverage->Functions.push_back(std::move(Function)); in load()
215 return std::move(Coverage); in load()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp129 if (GlobalVariable *Coverage = M.getNamedGlobal("__llvm_coverage_mapping")) { in runOnModule() local
130 lowerCoverageData(Coverage); in runOnModule()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DGCOV.h406 GCOVCoverage &Coverage, uint32_t &EdgeNo);
410 void printCoverage(const GCOVCoverage &Coverage) const;
/minix3/external/bsd/llvm/dist/clang/www/
H A Dmenu.html.incl53 <a href="http://buildd-clang.debian.net/coverage/">Testing Coverage</a>
/minix3/external/bsd/llvm/dist/llvm/test/MC/Disassembler/X86/
H A Dx86-64.txt3 # Coverage
H A Dx86-32.txt3 # Coverage
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DCoverageMappingFormat.rst5 LLVM Code Coverage Mapping Format
252 i32 0, ; Coverage mapping format version
/minix3/external/bsd/llvm/dist/llvm/
H A DMakefile.rules377 BuildMode := $(BuildMode)+Coverage