| /external/llvm/docs/CommandGuide/ |
| D | llvm-cov.rst | 1 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 …]
|
| D | llvm-profdata.rst | 1 llvm-profdata - Profile data tool 5 -------- 7 :program:`llvm-profdata` *command* [*args...*] 10 ----------- 12 The :program:`llvm-profdata` tool is a small utility for working with profile 16 -------- 18 * :ref:`merge <profdata-merge>` 19 * :ref:`show <profdata-show>` 21 .. program:: llvm-profdata merge 23 .. _profdata-merge: [all …]
|
| /external/strace/m4/ |
| D | ax_code_coverage.m4 | 2 # 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/ |
| D | ax_code_coverage.m4 | 2 # 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/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | cmake.yml | 4 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/llvm/include/llvm/Support/ |
| D | GCOV.h | 1 //===- 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/ |
| D | GCOV.h | 1 //===- 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/ |
| D | GCOV.cpp | 1 //===- 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/rust/crates/grpcio-sys/grpc/third_party/cares/cares/m4/ |
| D | ax_code_coverage.m4 | 2 # http://www.gnu.org/software/autoconf-archive/ax_code_coverage.html 17 # corresponds to the value of the --enable-code-coverage option, which 20 # Test also for gcov program and create GCOV variable that could be 38 # This results in a "check-code-coverage" rule being added to any 40 # has been configured with --enable-code-coverage). Running `make 41 # check-code-coverage` in that directory will run the module's test suite 73 dnl Check for --enable-code-coverage 76 # allow to override gcov location 77 AC_ARG_WITH([gcov], 78 [AS_HELP_STRING([--with-gcov[=GCOV]], [use given GCOV for coverage (GCOV=gcov).])], [all …]
|
| /external/llvm/tools/llvm-cov/ |
| D | gcov.cpp | 1 //===- 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/ |
| D | GCOV.cpp | 1 //===- 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/ |
| D | GCOVProfiling.cpp | 1 //===- 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/ |
| D | GCOVProfiling.cpp | 1 //===- 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/rust/crates/grpcio-sys/grpc/third_party/cares/cares/travis/ |
| D | covupload.sh | 2 set -e 4 coveralls --gcov /usr/bin/gcov-4.8 --gcov-options '\-lp'
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Instrumentation/ |
| D | GCOVProfiler.h | 1 //===- 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/ |
| D | GCOVProfiler.h | 1 //===- 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
|
| D | Instrumentation.h | 1 //===- 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/one-true-awk/ |
| D | makefile | 25 CFLAGS = -fsanitize=address -O1 -g -fno-omit-frame-pointer -fno-optimize-sibling-calls 26 CFLAGS = -g 28 CFLAGS = -O2 30 # compiler options 31 #CC = gcc -Wall -g -Wwrite-strings 32 #CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing 33 #CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov 34 HOSTCC = gcc -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/ |
| D | Instrumentation.h | 1 //===- 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/openthread/script/ |
| D | test | 33 set -euo pipefail 35 readonly OT_BUILDDIR="${OT_BUILDDIR:-${PWD}/build}" 43 readonly OT_NODE_TYPE="${OT_NODE_TYPE:-cli}" 44 readonly OT_NATIVE_IP="${OT_NATIVE_IP:-0}" 45 readonly THREAD_VERSION="${THREAD_VERSION:-1.3}" 46 readonly INTER_OP="${INTER_OP:-0}" 47 readonly VERBOSE="${VERBOSE:-0}" 48 readonly BORDER_ROUTING="${BORDER_ROUTING:-1}" 49 readonly NAT64="${NAT64:-0}" 50 readonly INTER_OP_BBR="${INTER_OP_BBR:-1}" [all …]
|
| /external/eigen/cmake/ |
| D | EigenConfigureTesting.cmake | 20 set(EIGEN_TEST_BUILD_FLAGS "" CACHE STRING "Options passed to the build command of unit tests") 29 string(REGEX MATCH "MakeCommand:.*-- (.*)\nDefaultCTestConfigurationType" EIGEN_DUMMY ${EIGEN_DART_… 33 …akeCommand: ${CMAKE_COMMAND} --build . --target ${EIGEN_DASHBOARD_BUILD_TARGET} --config \"\${CTES… 42 # configure Eigen related testing options 47 option(EIGEN_COVERAGE_TESTING "Enable/disable gcov" OFF) 49 set(COVERAGE_FLAGS "-fprofile-arcs -ftest-coverage")
|
| /external/OpenCSD/decoder/tests/auto-fdo/ |
| D | autofdo.md | 9 optimization - PGO) uses a profile of a program's execution to guide the 55 * ETB: A small circular buffer (64-128 kilobytes) that stores the most 59 * TPIU: Sends data to an off-chip capture device (e.g. Arm DSTREAM) 70 lot of data very quickly - typically an ETM will generate ~1 bit of data 75 only record small slices of execution - e.g. collect ~5000 cycles of data 76 every 50M cycles. This reduces the data rate to a manageable level - a few 90 <https://gitlab.arm.com/linux-arm/linux-coresight-backports> 95 git clone https://git.gitlab.arm.com/linux-arm/linux-coresight-backports.git 100 format-patch`). 102 …ards, the only patch which needs to be applied is the one enabling strobing - etm4x: `Enable strob… [all …]
|
| /external/elfutils/ |
| D | ChangeLog | 1 2022-11-02 Mark Wielaard <mark@klomp.org> 6 2022-10-31 Aaron Merey <amerey@redhat.com> 10 2022-10-20 Mark Wielaard <mark@klomp.org> 12 * Makefile.am (rpm): Remove --sign. 14 2022-10-22 Mark Wielaard <mark@klomp.org> 19 2022-09-13 Aleksei Vetrov <vvvvvv@google.com> 23 2022-09-27 Taketo Kabe <kabe@sra-tohoku.co.jp> 25 * debuginfod/debuginfod-client.c: Correctly get timestamp when 26 compiling with -D_TIME_BITS=64 on 32bit environment. 28 2022-04-28 Di Chen <dichen@redhat.com> [all …]
|
| /external/e2fsprogs/ |
| D | configure.ac | 18 E2FSPROGS_DAY=$(echo $E2FSPROGS_DATE | awk -F- '{print $1}' | sed -e '/^[[1-9]]$/s/^/0/') 19 MONTH=`echo $E2FSPROGS_DATE | awk -F- '{print $2}'` 20 YEAR=`echo $E2FSPROGS_DATE | awk -F- '{print $3}'` 47 sed -e 's/-WIP//' -e 's/pre-//' -e 's/-PLUS//'` 52 *-WIP|pre-*) 73 AC_ARG_WITH([diet-libc], 74 AS_HELP_STRING([--with-diet-libc],[use diet libc]), 75 CC="diet cc -nostdinc" 77 if test -z "$LIBS" 79 LIBS="-lcompat" [all …]
|
| /external/ImageMagick/ |
| D | Install-unix.txt | 3 ImageMagick builds on a variety of Unix and Unix-like operating systems 23 default options, and build from within the source directory, you can simply 26 $magick> cd ImageMagick-7.0.9 36 Host system type: x86_64-unknown-linux-gnu 37 Build system type: x86_64-unknown-linux-gnu 40 ---------------------------------------------------------------------------- 41 Shared libraries --enable-shared=yes yes 42 Static libraries --enable-static=yes yes 43 Module support --with-modules=yes yes 44 GNU ld --with-gnu-ld=yes yes [all …]
|