Home
last modified time | relevance | path

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

12

/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 …]
Dllvm-profdata.rst1 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/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() argument
50 } // end GCOV namespace
52 /// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
[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"
27 //===----------------------------------------------------------------------===//
30 /// readGCNO - Read GCNO buffer.
43 if (!GFun->readGCNO(Buffer, Version)) in readGCNO()
52 /// readGCDA - Read GCDA buffer. It is required that readGCDA() can only be
[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 //===----------------------------------------------------------------------===//
45 #define DEBUG_TYPE "insert-gcov-profiling"
48 DefaultGCOVVersion("default-gcov-version", cl::init("402*"), cl::Hidden,
50 static cl::opt<bool> DefaultExitBlockBeforeBody("gcov-exit-block-before-body",
54 GCOVOptions Options; in getDefault() local
55 Options.EmitNotes = true; in getDefault()
56 Options.EmitData = true; in getDefault()
[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"
29 const GCOV::Options &Options) { in reportCoverage() argument
32 // If no directory was specified with -o, look next to the source file. in reportCoverage()
70 GCDA = "-"; in reportCoverage()
82 FileInfo FI(Options); in reportCoverage()
98 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
[all …]
/external/llvm/include/llvm/Transforms/
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 =
87 /// Options for the frontend instrumentation based profiling pass.
[all …]
/external/eigen/cmake/
DEigenConfigureTesting.cmake27 set(EIGEN_TEST_BUILD_FLAGS " " CACHE STRING "Options passed to the build command of unit tests")
48 # un-set temporary variables so that it is like they never existed.
58 # configure Eigen related testing options
63 option(EIGEN_COVERAGE_TESTING "Enable/disable gcov" OFF)
65 set(COVERAGE_FLAGS "-fprofile-arcs -ftest-coverage")
71 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
74 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COVERAGE_FLAGS} -g2")
75 … set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${COVERAGE_FLAGS} -O2 -g2")
76 … set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${COVERAGE_FLAGS} -fno-inline-functions")
77 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${COVERAGE_FLAGS} -O0 -g3")
/external/google-benchmark/
D.travis.yml4 # travis-ci.org more readable.
7 - compiler: gcc
8 env: COMPILER=g++-4.6 STD=c++0x BUILD_TYPE=Coverage
9 - compiler: gcc
10 env: COMPILER=g++-4.6 STD=c++0x BUILD_TYPE=Debug
11 - compiler: gcc
12 env: COMPILER=g++-4.6 STD=c++0x BUILD_TYPE=Release
13 - compiler: gcc
14 env: COMPILER=g++-4.8 STD=c++11 BUILD_TYPE=Debug
15 - compiler: gcc
[all …]
/external/v8/tools/
Drun-tests.py104 DEBUG_FLAGS = ["--nohard-abort", "--nodead-code-elimination",
105 "--nofold-constants", "--enable-slow-asserts",
106 "--debug-code", "--verify-heap"]
107 RELEASE_FLAGS = ["--nohard-abort", "--nodead-code-elimination",
108 "--nofold-constants"]
133 # implies debug is set. Hence, the status file needs to assume debug-like
144 "flags": RELEASE_FLAGS + ["--enable-slow-asserts"],
152 GC_STRESS_FLAGS = ["--gc-interval=500", "--stress-compaction",
153 "--concurrent-recompilation-queue-length=64",
154 "--concurrent-recompilation-delay=500",
[all …]
/external/dbus/
DNEWS1 D-Bus 1.6.8 (2012-09-28)
6 • Follow up to CVE-2012-3524: The additional hardening
8 broke certain configurations of gnome-keyring. Given
10 changes to gnome-keyring, use of __secure_getenv() is
13 D-Bus 1.6.6 (2012-09-28)
18 • CVE-2012-3524: Don't access environment variables (fd.o #52202)
21 • Unix-specific:
26 D-Bus 1.6.4 (2012-07-18)
30 a non-default path such as --enable-console-auth-dir=/run/console
36 • Make --enable-developer default to "no" (regression in 1.6.2;
[all …]
/external/libvpx/libvpx/build/make/
Dconfigure.sh18 echo "See $0 --help for available options."
27 echo "toolchains, improper options selected, or another problem. If you"
41 cat -n $1 >>$logfile
58 opt2=`echo $opt | sed -e 's;_;-;g'`
60 eval "toggle_${opt}=\"--disable-${opt2}\""
62 eval "toggle_${opt}=\"--enable-${opt2} \""
67 Usage: configure [options]
68 Options:
70 Build options:
71 --help print this message
[all …]
/external/clang/include/clang/Driver/
DCC1Options.td1 //===--- CC1Options.td - Options for clang -cc1 ---------------------------===//
8 //===----------------------------------------------------------------------===//
10 // This file defines the options accepted by clang -cc1 and clang -cc1as.
12 //===----------------------------------------------------------------------===//
16 //===----------------------------------------------------------------------===//
17 // Target Options
18 //===----------------------------------------------------------------------===//
22 def target_cpu : Separate<["-"], "target-cpu">,
24 def target_feature : Separate<["-"], "target-feature">,
26 def triple : Separate<["-"], "triple">,
[all …]
/external/dbus/cmake/
DCMakeLists.txt61 set(DBUS_MACHINE_UUID_FILE ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
90 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_assert…
105 add_definitions(-D_POSIX_C_SOURCE=199309L -D_GNU_SOURCE)
129 ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
137 if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
138 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
139 else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
141 endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
143 if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
144 STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
[all …]
/external/pcre/dist/doc/
Dpcrebuild.33 PCRE - Perl-compatible regular expressions
10 library in Unix-like environments using the applications known as Autotools.
22 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt">
24 \fBNON-AUTOTOOLS-BUILD\fP.
31 file if you are building in a non-Unix-like environment.
34 .SH "PCRE BUILD-TIME OPTIONS"
40 options to \fBconfigure\fP before running the \fBmake\fP command. However, the
41 same options can be selected in both Unix-like and non-Unix-like environments
42 using the GUI facility of \fBcmake-gui\fP if you are using \fBCMake\fP instead
48 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt">
[all …]
/external/pcre/dist/
Dconfigure.ac9 dnl be defined as -RC2, for example. For real releases, it should be empty.
14 m4_define(pcre_date, [2015-11-23])
29 AM_INIT_AUTOMAKE([dist-bzip2 dist-zip])
36 # This was added at the suggestion of libtoolize (03-Jan-10)
39 # The default CFLAGS and CXXFLAGS in Autoconf are "-g -O2" for gcc and just
40 # "-g" for any other compiler. There doesn't seem to be a standard way of
41 # getting rid of the -g (which I don't think is needed for a production
44 # AC_PROG_CXX macros to find the compilers - if CFLAGS and CXXFLAGS are not
46 # values were not set, remove the -g from the Autoconf defaults.
47 # (PH 02-May-07)
[all …]
DCMakeLists.txt9 # 2007-09-14 mod by Sheri so 7.4 supported configuration options can be entered
10 # 2007-09-19 Adjusted by PH to retain previous default settings
11 # 2007-12-26 (a) On UNIX, use names libpcre instead of just pcre
13 # not a previously-installed one.
16 # 2008-01-20 Brought up to date to include several new features by Christian
18 # 2008-01-22 Sheri added options for backward compatibility of library names
24 # be built with suffix of "-0.dll". (The libraries will be named
25 # libpcre-0.dll, libpcreposix-0.dll and libpcrecpp-0.dll - same names
27 # 2008-01-23 PH removed the automatic build of pcredemo.
28 # 2008-04-22 PH modified READLINE support so it finds NCURSES when needed.
[all …]
/external/clang/include/clang/Frontend/
DCodeGenOptions.def1 //===--- CodeGenOptions.def - Code generation option database ------ C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 // This file defines the code generation options. Users of this file
12 // Optionally, the user may also define ENUM_CODEGENOPT (for options
16 //===----------------------------------------------------------------------===//
18 # error Define the CODEGENOPT macro to handle language options
31 CODEGENOPT(DisableIntegratedAS, 1, 0) ///< -no-integrated-as
32 CODEGENOPT(CompressDebugSections, 1, 0) ///< -Wa,-compress-debug-sections
33 CODEGENOPT(Autolink , 1, 1) ///< -fno-autolink
34 CODEGENOPT(AsmVerbose , 1, 0) ///< -dA, -fverbose-asm.
[all …]
/external/clang/lib/CodeGen/
DBackendUtil.cpp1 //===--- BackendUtil.cpp - LLVM Backend Utilities -------------------------===//
8 //===----------------------------------------------------------------------===//
68 return TM->getTargetIRAnalysis(); in getTargetIRAnalysis()
76 CodeGenPasses->add( in getCodeGenPasses()
85 PerModulePasses->add( in getPerModulePasses()
94 PerFunctionPasses->add( in getPerFunctionPasses()
223 // It can benefit from re-running some general purpose optimization passes. in addMemorySanitizerPass()
251 TLII->disableAllFunctions(); in createTLII()
255 TLII->addVectorizableFunctionsFromVecLib(TargetLibraryInfoImpl::Accelerate); in createTLII()
271 MPM->add(createRewriteSymbolsPass(DL)); in addSymbolRewriterPass()
[all …]
/external/libvpx/libvpx/
Dconfigure5 ## This script is the front-end to the build system. It provides a similar
22 Advanced options:
29 --cpu=CPU tune for the specified CPU (ARM: cortex-a8, X86: sse3)
30 --libc=PATH path to alternate libc
31 --size-limit=WxH max size to allow in the decoder
32 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
33 --sdk-path=PATH path to root of sdk (android builds only)
46 ${toggle_realtime_only} enable this option while building for real-time encoding
47 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
57 ${toggle_multi_res_encoding} enable multiple-resolution encoding
[all …]
/external/pcre/dist/doc/html/
Dpcrebuild.html17 <li><a name="TOC2" href="#SEC2">PCRE BUILD-TIME OPTIONS</a>
18 <li><a name="TOC3" href="#SEC3">BUILDING 8-BIT, 16-BIT AND 32-BIT LIBRARIES</a>
21 <li><a name="TOC6" href="#SEC6">UTF-8, UTF-16 AND UTF-32 SUPPORT</a>
23 <li><a name="TOC8" href="#SEC8">JUST-IN-TIME COMPILER SUPPORT</a>
32 <li><a name="TOC17" href="#SEC17">PCREGREP OPTIONS FOR COMPRESSED FILE SUPPORT</a>
44 library in Unix-like environments using the applications known as Autotools.
53 <a href="NON-AUTOTOOLS-BUILD.txt"><b>NON-AUTOTOOLS-BUILD</b>.</a>
56 file if you are building in a non-Unix-like environment.
58 <br><a name="SEC2" href="#TOC1">PCRE BUILD-TIME OPTIONS</a><br>
63 options to <b>configure</b> before running the <b>make</b> command. However, the
[all …]
/external/minijail/
Dcommon.mk2 # Use of this source code is governed by a BSD-style license that can be
10 # https://chromium.googlesource.com/chromiumos/platform2/+/master/common-mk
22 # 2. In your top-level Makefile, place "include common.mk" at the top
32 # - cc_binary, cxx_binary provide standard compilation steps for binaries
33 # - cxx_library, cc_library provide standard compilation steps for
36 # - update_archive creates/updates a given .a target
39 # - CXX_BINARY, CC_BINARY, CC_STATIC_BINARY, CXX_STATIC_BINARY
40 # - CXX_LIBRARY, CC_LIBRARY, CC_STATIC_LIBRARY, CXX_STATIC_LIBRARY
41 # - E.g., CXX_BINARY(mahbinary): foo.o
42 # - object.depends targets may be used when a prerequisite is required for an
[all …]
/external/modp_b64/
Dcommon.mk2 # use of this source code is governed by a bsd-style license that can be
10 # https://chromium.googlesource.com/chromiumos/platform2/+/master/common-mk
22 # 2. In your top-level Makefile, place "include common.mk" at the top
32 # - cc_binary, cxx_binary provide standard compilation steps for binaries
33 # - cxx_library, cc_library provide standard compilation steps for
36 # - update_archive creates/updates a given .a target
39 # - CXX_BINARY, CC_BINARY, CC_STATIC_BINARY, CXX_STATIC_BINARY
40 # - CXX_LIBRARY, CC_LIBRARY, CC_STATIC_LIBRARY, CXX_STATIC_LIBRARY
41 # - E.g., CXX_BINARY(mahbinary): foo.o
42 # - object.depends targets may be used when a prerequisite is required for an
[all …]
/external/clang/docs/
DUsersManual.rst11 The Clang Compiler is an open-source compiler for the C family of
14 allowing it to provide high-quality optimization and code generation
20 for an end-user, documenting the supported features, command line
21 options, etc. If you are interested in using Clang to build a tool that
23 `Clang Static Analyzer <http://clang-analyzer.llvm.org>`_, please see its web
27 which includes :ref:`C <c>`, :ref:`Objective-C <objc>`, :ref:`C++ <cxx>`, and
28 :ref:`Objective-C++ <objcxx>` as well as many dialects of those. For
29 language-specific information, please see the corresponding language
32 - :ref:`C Language <c>`: K&R C, ANSI C89, ISO C90, ISO C94 (C89+AMD1), ISO
34 - :ref:`Objective-C Language <objc>`: ObjC 1, ObjC 2, ObjC 2.1, plus
[all …]
/external/tlsdate/
Dconfigure.ac9 AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects foreign tar-ustar])
13 AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
32 dnl COMPILE_DATE is defined by the debian/rules file and if it is - we want to use
52 TLSDATE_CA_ROOTS="${sysconfdir}/$PACKAGE_NAME/ca-roots"
59 dnl HTTPS User-agent
60 AC_ARG_WITH([https-user-agent],
61 [AS_HELP_STRING([--with-https-user-agent=AGENT],
62 [a User-Agent value to send when running in HTTPS mode])],
67 [User-Agent value to send when running as an HTTPS client])
74 [AS_HELP_STRING([--with-polarssl=DIR],
[all …]

12