Home
last modified time | relevance | path

Searched +full:- +full:- +full:gcov +full:- +full:options (Results 1 – 25 of 102) sorted by relevance

12345

/external/llvm/docs/CommandGuide/
Dllvm-cov.rst1 llvm-cov - emit coverage information
5 --------
7 :program:`llvm-cov` *command* [*args...*]
10 -----------
12 The :program:`llvm-cov` tool shows code coverage information for
14 work with ``gcov``\-style coverage or with ``clang``\'s instrumentation
17 If the program is invoked with a base name of ``gcov``, it will behave as if
18 the :program:`llvm-cov gcov` command were called. Otherwise, a command should
22 --------
24 * :ref:`gcov <llvm-cov-gcov>`
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/m4/
Dax_code_coverage.m42 # https://www.gnu.org/software/autoconf-archive/ax_code_coverage.html
18 # value of the --enable-code-coverage option, which defaults to being
21 # Test also for gcov program and create GCOV variable that could be
42 # clean-local: code-coverage-clean
43 # distclean-local: code-coverage-dist-clean
45 # This results in a "check-code-coverage" rule being added to any
47 # (assuming the module has been configured with --enable-code-coverage).
48 # Running `make check-code-coverage` in that directory will run the
84 # - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting.
87 # - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated
[all …]
/external/strace/m4/
Dax_code_coverage.m42 # https://www.gnu.org/software/autoconf-archive/ax_code_coverage.html
19 # --enable-code-coverage option, which defaults to being disabled.
21 # Test also for gcov program and create GCOV variable that could be
41 # This results in a "check-code-coverage" rule being added to any
43 # has been configured with --enable-code-coverage). Running `make
44 # check-code-coverage` in that directory will run the module's test suite
64 # Copyright (c) 2016-2017 The strace developers.
83 dnl Check for --enable-code-coverage
86 # allow to override gcov location
87 AC_ARG_WITH([gcov],
[all …]
/external/harfbuzz_ng/m4/
Dax_code_coverage.m42 # https://www.gnu.org/software/autoconf-archive/ax_code_coverage.html
19 # --enable-code-coverage option, which defaults to being disabled.
21 # Test also for gcov program and create GCOV variable that could be
41 # This results in a "check-code-coverage" rule being added to any
43 # has been configured with --enable-code-coverage). Running `make
44 # check-code-coverage` in that directory will run the module's test suite
81 dnl Check for --enable-code-coverage
84 # allow to override gcov location
85 AC_ARG_WITH([gcov],
86 [AS_HELP_STRING([--with-gcov[=GCOV]], [use given GCOV for coverage (GCOV=gcov).])],
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ProfileData/
DGCOV.cpp1 //===- GCOV.cpp - LLVM coverage tool --------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // GCOV implements the interface to read and write coverage files that use
10 // 'gcov' format.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ProfileData/GCOV.h"
17 #include "llvm/Config/llvm-config.h"
74 Context(const GCOV::Options &Options) : options(Options) {} in Context() argument
93 const GCOV::Options &options; member in __anon788e85d70211::Context
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dcmake.yml4 ci-cmake:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Ubuntu 18.04 GCC
12 os: ubuntu-18.04
14 cxx-compiler: g++
16 - name: Ubuntu GCC ASAN
17 os: ubuntu-latest
19 cxx-compiler: g++
20 cmake-args: -DWITH_SANITIZER=Address
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ProfileData/
DGCOV.h1 //===- GCOV.h - LLVM coverage tool ------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // use 'gcov' format.
12 //===----------------------------------------------------------------------===//
39 namespace GCOV {
43 /// A struct for passing gcov options between functions.
44 struct Options { struct
45 Options(bool A, bool B, bool C, bool F, bool P, bool U, bool I, bool L, in Options() argument
68 } // end namespace GCOV
[all …]
/external/llvm/include/llvm/Support/
DGCOV.h1 //===- GCOV.h - LLVM coverage tool ----------------------------------------===//
8 //===----------------------------------------------------------------------===//
11 // use 'gcov' format.
13 //===----------------------------------------------------------------------===//
32 namespace GCOV {
35 /// \brief A struct for passing gcov options between functions.
36 struct Options { struct
37 Options(bool A, bool B, bool C, bool F, bool P, bool U, bool L, bool N) in Options() function
50 } // end GCOV namespace
52 /// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DGCOV.h1 //===- GCOV.h - LLVM coverage tool ------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // use 'gcov' format.
12 //===----------------------------------------------------------------------===//
41 namespace GCOV {
45 /// A struct for passing gcov options between functions.
46 struct Options { struct
47 Options(bool A, bool B, bool C, bool F, bool P, bool U, bool L, bool N, bool X) in Options() function
63 } // end namespace GCOV
[all …]
/external/llvm/lib/IR/
DGCOV.cpp1 //===- GCOV.cpp - LLVM coverage tool --------------------------------------===//
8 //===----------------------------------------------------------------------===//
10 // GCOV implements the interface to read and write coverage files that use
11 // 'gcov' format.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Support/GCOV.h"
28 //===----------------------------------------------------------------------===//
31 /// readGCNO - Read GCNO buffer.
44 if (!GFun->readGCNO(Buffer, Version)) in readGCNO()
53 /// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be
[all …]
/external/llvm/tools/llvm-cov/
Dgcov.cpp1 //===- gcov.cpp - GCOV compatible LLVM coverage tool ----------------------===//
8 //===----------------------------------------------------------------------===//
10 // llvm-cov is a command line tools to analyze and report coverage information.
12 //===----------------------------------------------------------------------===//
18 #include "llvm/Support/GCOV.h"
26 const GCOV::Options &Options) { in reportCoverage() argument
29 // If no directory was specified with -o, look next to the source file. in reportCoverage()
67 GCDA = "-"; in reportCoverage()
79 FileInfo FI(Options); in reportCoverage()
90 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DGCOV.cpp1 //===- GCOV.cpp - LLVM coverage tool --------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // GCOV implements the interface to read and write coverage files that use
10 // 'gcov' format.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ProfileData/GCOV.h"
16 #include "llvm/Config/llvm-config.h"
28 //===----------------------------------------------------------------------===//
31 /// readGCNO - Read GCNO buffer.
[all …]
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
8 //===----------------------------------------------------------------------===//
10 // This pass implements GCOV-style profiling. When this pass is run it emits
15 //===----------------------------------------------------------------------===//
46 #define DEBUG_TYPE "insert-gcov-profiling"
49 DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
51 static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
55 GCOVOptions Options; in getDefault() local
56 Options.EmitNotes = true; in getDefault()
57 Options.EmitData = true; in getDefault()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This pass implements GCOV-style profiling. When this pass is run it emits
14 //===----------------------------------------------------------------------===//
50 #define DEBUG_TYPE "insert-gcov-profiling"
53 DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
55 static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
59 GCOVOptions Options; in getDefault() local
60 Options.EmitNotes = true; in getDefault()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Instrumentation/
DGCOVProfiler.h1 //===- Transforms/Instrumentation/GCOVProfiler.h ----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 /// This file provides the interface for the GCOV style profiler pass.
10 //===----------------------------------------------------------------------===//
19 /// The gcov-style instrumentation pass
22 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { } in GCOVOpts() argument
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/Instrumentation/
DGCOVProfiler.h1 //===- Transforms/Instrumentation/GCOVProfiler.h ----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 /// This file provides the interface for the GCOV style profiler pass.
10 //===----------------------------------------------------------------------===//
19 /// The gcov-style instrumentation pass
22 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { } in GCOVOpts() argument
/external/llvm/include/llvm/Transforms/
DGCOVProfiler.h1 //===- Transforms/GCOVProfiler.h - GCOVProfiler pass ----------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 /// This file provides the interface for the GCOV style profiler pass.
11 //===----------------------------------------------------------------------===//
20 /// The gcov-style instrumentation pass
23 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { } in GCOVOpts() argument
DInstrumentation.h1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
23 extern __thread __attribute__((tls_model("initial-exec"))) in getDFSanArgTLSPtrForJIT()
29 extern __thread __attribute__((tls_model("initial-exec"))) in getDFSanRetValTLSPtrForJIT()
50 // Insert GCOV profiling instrumentation
60 // A four-byte version string. The meaning of a version string is described in
61 // gcc's gcov-io.h
79 ModulePass *createGCOVProfilerPass(const GCOVOptions &Options =
88 /// Options for the frontend instrumentation based profiling pass.
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This pass implements GCOV-style profiling. When this pass is run it emits
14 //===----------------------------------------------------------------------===//
51 #define DEBUG_TYPE "insert-gcov-profiling"
62 static cl::opt<std::string> DefaultGCOVVersion("default-gcov-version",
66 static cl::opt<bool> AtomicCounter("gcov-atomic-counter", cl::Hidden,
71 // Length + NUL-terminated string + 0~3 padding NULs. in wordsOfString()
76 GCOVOptions Options; in getDefault() local
[all …]
/external/one-true-awk/
Dmakefile25 CFLAGS = -fsanitize=address -O1 -g -fno-omit-frame-pointer -fno-optimize-sibling-calls
26 CFLAGS = -g
28 CFLAGS = -O2
30 # compiler options
31 #CC = cc -Wall -g -Wwrite-strings
32 #CC = cc -O4 -Wall -pedantic -fno-strict-aliasing
33 #CC = cc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
34 HOSTCC = cc -g -Wall -pedantic -Wcast-qual
35 CC = $(HOSTCC) # change this is cross-compiling.
39 # YACC = yacc -d -b awkgram
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/
DInstrumentation.h1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
40 // Create a constant for Str so that we can pass it to the run-time lib.
51 // Insert GCOV profiling instrumentation
61 // A four-byte version string. The meaning of a version string is described in
62 // gcc's gcov-io.h
80 // Regexes separated by a semi-colon to filter the files to instrument.
83 // Regexes separated by a semi-colon to filter the files to not instrument.
[all …]
/external/sdv/vsomeip/third_party/boost/any/
D.travis.yml5 # Copyright Antony Polukhin 2014-2021.
16 # `--coverage` flags required to generate coverage info for Coveralls
19- env: B2_ARGS='cxxstd=98,03,11,14,1y toolset=gcc-6 cxxflags="--coverage -fsanitize=address,leak,u…
20 name: "GCC-6, no RTTI"
23 sources: ubuntu-toolchain-r-test
24 packages: g++-6
26- env: B2_ARGS='cxxstd=98,03,11,14,1z toolset=gcc-8 cxxflags="--coverage -fsanitize=address,leak,u…
27 name: "GCC-8"
31 sources: ubuntu-toolchain-r-test
32 packages: g++-8
[all …]
/external/sdv/vsomeip/third_party/boost/variant/
D.travis.yml5 # Copyright Antony Polukhin 2014-2021.
17 # `--coverage` flags required to generate coverage info for Coveralls
20- env: B2_ARGS='cxxstd=98,03,11,14,1y toolset=gcc-6 cxxflags="--coverage -fsanitize=address,leak,u…
21 name: "GCC-6, no RTTI"
24 sources: ubuntu-toolchain-r-test
25 packages: g++-6
27- env: B2_ARGS='cxxstd=98,03,11,14,1z toolset=gcc-8 cxxflags="--coverage -fsanitize=address,leak,u…
28 name: "GCC-8"
32 sources: ubuntu-toolchain-r-test
33 packages: g++-8
[all …]
/external/sdv/vsomeip/third_party/boost/lexical_cast/
D.travis.yml5 # Copyright Antony Polukhin 2014-2021.
16 # `--coverage` flags required to generate coverage info for Coveralls
19- env: B2_ARGS='cxxstd=98,03,11,14,1y toolset=gcc-6 cxxflags="--coverage -fsanitize=address,leak,u…
20 name: "GCC-6"
23 sources: ubuntu-toolchain-r-test
24 packages: g++-6
26- env: B2_ARGS='cxxstd=98,03,11,14,1z toolset=gcc-8 cxxflags="--coverage -fsanitize=address,leak,u…
27 name: "GCC-8"
31 sources: ubuntu-toolchain-r-test
32 packages: g++-8
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/ci/
Dcovupload.sh2 set -e
11 coveralls --gcov-options '\-lp'

12345