Home
last modified time | relevance | path

Searched refs:coverage (Results 1 – 25 of 141) sorted by relevance

123456

/freebsd-12.1/contrib/libucl/
H A DMakefile.am12 COVERAGE_REPORT_DIR = $(top_builddir)/coverage
14 .PHONY = coverage-requirement-check clean-coverage-report
16 coverage-requirement-check:
22 coverage: coverage-requirement-check clean-coverage coverage-build coverage-check coverage-report target
25 coverage-build: coverage-requirement-check
39 coverage-check: coverage-requirement-check
48 coverage-lcov: coverage-check coverage-requirement-check
57 coverage-report: coverage-lcov
67 clean-coverage-report:
71 clean-coverage: clean-coverage-report
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp21 const coverage::CoverageMapping &, in matches()
22 const coverage::FunctionRecord &Function) const { in matches()
28 const coverage::CoverageMapping &, in matches()
29 const coverage::FunctionRecord &Function) const { in matches()
38 const coverage::CoverageMapping &, in matches()
39 const coverage::FunctionRecord &Function) const { in matches()
44 const coverage::CoverageMapping &CM, in matches()
45 const coverage::FunctionRecord &Function) const { in matches()
51 const coverage::CoverageMapping &CM, in matches()
52 const coverage::FunctionRecord &Function) const { in matches()
[all …]
H A DCoverageFilters.h31 virtual bool matches(const coverage::CoverageMapping &CM, in matches()
32 const coverage::FunctionRecord &Function) const { in matches()
49 bool matches(const coverage::CoverageMapping &CM,
50 const coverage::FunctionRecord &Function) const override;
60 bool matches(const coverage::CoverageMapping &CM,
61 const coverage::FunctionRecord &Function) const override;
75 bool matches(const coverage::CoverageMapping &CM,
112 bool matches(const coverage::CoverageMapping &CM,
124 bool matches(const coverage::CoverageMapping &CM,
141 bool matches(const coverage::CoverageMapping &CM,
[all …]
H A DCoverageExporterLcov.cpp54 const iterator_range<coverage::FunctionRecordIterator> &Functions) { in renderFunctions()
64 const coverage::CoverageData &FileCoverage) { in renderLineExecutionCounts()
65 coverage::LineCoverageIterator LCI{FileCoverage, 1}; in renderLineExecutionCounts()
66 coverage::LineCoverageIterator LCIEnd = LCI.getEnd(); in renderLineExecutionCounts()
68 const coverage::LineCoverageStats &LCS = *LCI; in renderLineExecutionCounts()
80 void renderFile(raw_ostream &OS, const coverage::CoverageMapping &Coverage, in renderFile()
100 void renderFiles(raw_ostream &OS, const coverage::CoverageMapping &Coverage, in renderFiles()
H A DCoverageExporterJson.cpp58 json::Array renderSegment(const coverage::CoverageSegment &Segment) { in renderSegment()
63 json::Array renderRegion(const coverage::CountedRegion &Region) { in renderRegion()
70 json::Array renderRegions(ArrayRef<coverage::CountedRegion> Regions) { in renderRegions()
77 json::Object renderExpansion(const coverage::ExpansionRecord &Expansion) { in renderExpansion()
112 json::Array renderFileExpansions(const coverage::CoverageData &FileCoverage, in renderFileExpansions()
120 json::Array renderFileSegments(const coverage::CoverageData &FileCoverage, in renderFileSegments()
128 json::Object renderFile(const coverage::CoverageMapping &Coverage, in renderFile()
143 json::Array renderFiles(const coverage::CoverageMapping &Coverage, in renderFiles()
155 const iterator_range<coverage::FunctionRecordIterator> &Functions) { in renderFunctions()
H A DCoverageReport.h26 const coverage::CoverageMapping &Coverage;
34 const coverage::CoverageMapping &Coverage) in CoverageReport()
42 prepareFileReports(const coverage::CoverageMapping &Coverage,
49 const coverage::CoverageMapping *Coverage,
H A DSourceCoverageViewHTML.h21 using namespace coverage; variable
34 const coverage::CoverageMapping &Coverage,
91 coverage::CoverageData &&CoverageInfo) in SourceCoverageViewHTML()
H A DCoverageExporter.h28 const coverage::CoverageMapping &Coverage;
36 CoverageExporter(const coverage::CoverageMapping &CoverageMapping, in CoverageExporter()
H A DCoverageSummaryInfo.cpp18 using namespace coverage;
22 const coverage::FunctionRecord &Function) { in get()
H A DCoverageSummaryInfo.h163 static FunctionCoverageSummary get(const coverage::CoverageMapping &CM,
164 const coverage::FunctionRecord &Function);
169 get(const coverage::InstantiationGroup &Group,
/freebsd-12.1/contrib/file/magic/Magdir/
H A Dcoverage3 # $File: coverage,v 1.1 2016/06/05 00:26:32 christos Exp $
4 # xoverage: file(1) magic for test coverage data
6 # File formats used to store test coverage data
11 # gcc -ftest-coverage
21 # GCC coverage tracefiles
29 0 lelong 0x67636e6f GCC gcno coverage (-ftest-coverage),
34 0 belong 0x67636e6f GCC gcno coverage (-ftest-coverage),
41 0 lelong 0x67636461 GCC gcda coverage (-fprofile-arcs),
54 >&0 search/64 \nSF:/ LCOV coverage tracefile
58 # i.e. source code annoted with coverage information
[all …]
/freebsd-12.1/contrib/libucl/m4/
H A Dgcov.m43 # Add code coverage support with gcov/lcov.
9 # Provides a --enable-coverage option which checks for available
14 # $Id: coverage.m4 40881 2013-08-20 17:54:39Z damon $
28 AC_ARG_ENABLE(coverage, AC_HELP_STRING([--enable-coverage],[configure code coverage analysis tools]…
51 # include coverage compiler options
65 COVERAGE_CFLAGS="-fprofile-arcs -ftest-coverage"
66 COVERAGE_LDFLAGS="--coverage -fprofile-arcs -ftest-coverage"
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_activation.cc31 bool coverage; member
57 cf.coverage = coverage; in OverrideFromActivationFlags()
76 coverage = cf.coverage; in OverrideFromActivationFlags()
90 allocator_options.may_return_null, coverage, coverage_dir, in Print()
105 asan_deactivated_flags.coverage = common_flags()->coverage; in AsanDeactivate()
/freebsd-12.1/contrib/gcc/
H A Dgcov.c242 coverage_t coverage; member
524 coverage_t coverage; in process_file() local
526 memset (&coverage, 0, sizeof (coverage)); in process_file()
1315 coverage->calls++; in add_branch_counts()
1382 if (coverage->lines) in function_summary()
1384 format_gcov (coverage->lines_executed, coverage->lines, 2), in function_summary()
1385 coverage->lines); in function_summary()
1406 format_gcov (coverage->calls_executed, coverage->calls, 2), in function_summary()
1407 coverage->calls); in function_summary()
1513 if (coverage) in add_line_counts()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/
H A DCC1Options.td236 HelpText<"Emit coverage data to this filename.">;
240 HelpText<"Emit coverage notes to this filename.">;
251 def test_coverage : Flag<["-"], "test-coverage">,
252 HelpText<"Do not generate coverage files or remove coverage changes from IR">;
319 : Flag<["-"], "fsanitize-coverage-trace-bb">,
322 : Flag<["-"], "fsanitize-coverage-trace-cmp">,
325 : Flag<["-"], "fsanitize-coverage-trace-div">,
328 : Flag<["-"], "fsanitize-coverage-trace-gep">,
337 : Flag<["-"], "fsanitize-coverage-pc-table">,
340 : Flag<["-"], "fsanitize-coverage-trace-pc">,
[all …]
/freebsd-12.1/cddl/usr.sbin/dwatch/libexec/
H A Dudplite29 this uint16_t coverage;
52 this->coverage = (uint16_t)args[4]->udplite_coverage;
81 this->coverage,
82 this->coverage == 1 ? "" : "s");
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.def168 CODEGENOPT(CoverageMapping , 1, 0) ///< Generate coverage mapping regions to
169 ///< enable code coverage analysis.
198 CODEGENOPT(SanitizeCoverageType, 2, 0) ///< Type of sanitizer coverage
203 ///< in sanitizer coverage.
205 ///< in sanitizer coverage.
207 ///< in sanitizer coverage.
209 ///< in sanitizer coverage.
211 ///< in sanitizer coverage.
213 ///< in sanitizer coverage.
215 ///< in sanitizer coverage.
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h47 namespace coverage {
662 getLineCoverageStats(const coverage::CoverageData &CD) { in getLineCoverageStats()
788 template<> struct DenseMapInfo<coverage::CounterExpression> {
789 static inline coverage::CounterExpression getEmptyKey() {
790 using namespace coverage;
797 static inline coverage::CounterExpression getTombstoneKey() {
798 using namespace coverage;
805 static unsigned getHashValue(const coverage::CounterExpression &V) {
811 static bool isEqual(const coverage::CounterExpression &LHS,
812 const coverage::CounterExpression &RHS) {
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_fuchsia.cc72 if (end > start && *start == 0 && common_flags()->coverage) { in InitTracePcGuard()
127 DCHECK(common_flags()->coverage); in Setup()
189 CHECK_EQ(enabled, common_flags()->coverage); in InitializeCoverage()
/freebsd-12.1/sys/contrib/zstd/tests/fuzz/
H A DREADME.md39 coverage instrumentation `--enable-coverage`.
57 ./fuzz.py build all --enable-coverage --enable-asan --enable-ubsan --lib-fuzzing-engine Fuzzer/libF…
59 CC=clang CXX=clang++ LIB_FUZZING_ENGINE=Fuzzer/libFuzzer.a ./fuzz.py build all --enable-coverage --…
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def53 " save coverage summary to a given file."
56 " load coverage summary from a given file."
57 " Treat this coverage as belonging to the first corpus. "
71 FUZZER_FLAG_INT(use_counters, 1, "Use coverage counters")
108 FUZZER_FLAG_INT(print_coverage, 0, "If 1, print coverage information as text"
111 " If 1, dump coverage information as a"
/freebsd-12.1/cddl/usr.sbin/dtrace/tests/common/pid/
H A DMakefile22 tst.coverage.d \
56 tst.coverage.exe \
/freebsd-12.1/contrib/openpam/misc/
H A DMakefile.in102 CONFIG_CLEAN_FILES = coverage.sh coverity.sh
125 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/coverage.sh.in \
250 noinst_SCRIPTS = coverage.sh coverity.sh
283 coverage.sh: $(top_builddir)/config.status $(srcdir)/coverage.sh.in
H A DMakefile.am1 noinst_SCRIPTS = coverage.sh coverity.sh
/freebsd-12.1/contrib/gcc/doc/
H A Dgcov.texi31 @settitle coverage testing tool
38 test code coverage in your programs.
52 @command{gcov} is a test coverage program. Use it in concert with GCC
80 Software developers also use coverage testing in concert with
82 Testsuites can verify that a program works as expected; a coverage
108 compatible with any other profiling or test coverage mechanism.
220 the coverage information of the source file they correspond to.
264 special GCC options: @samp{-fprofile-arcs -ftest-coverage}.
281 $ gcc -fprofile-arcs -ftest-coverage tmp.c
496 particular inlineable function, they will also both contain coverage
[all …]

123456