Home
last modified time | relevance | path

Searched refs:instrumented (Results 1 – 25 of 145) sorted by relevance

123456

/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/
Ddebug_info_noninstrumented_alloca.ll1 ; This test checks that non-instrumented allocas stay in the first basic block.
13 ; Won't be instrumented because of asan-skip-promotable-allocas.
16 ; Regular alloca, will get instrumented (forced by the ptrtoint below).
17 %instrumented = alloca i32, align 4
19 ; Won't be instrumented because of asan-skip-promotable-allocas.
25 ; Won't be instrumented because of asan-skip-promotable-allocas.
28 %ptr = ptrtoint i32* %instrumented to i32
Ddebug_info_noninstrumented_alloca2.ll1 ; Make sure we don't break the IR when moving non-instrumented allocas
13 %instrumented = alloca i32, align 4
14 %ptr = ptrtoint i32* %instrumented to i32
Dinstrument_initializer_metadata.ll47 ; CTOR with priority 0 should not be instrumented.
57 ; Check that xxx is instrumented.
66 ; Check that XXX is instrumented.
76 ; Check that yyy is NOT instrumented (as it does not have dynamic initializer).
85 ; Check that YYY is NOT instrumented (as it does not have dynamic initializer).
Dbasic-msvc64.ll24 ; Asan functions are not instrumented. Asan function may be called by
26 ; behavior of the instrumented code.
/external/llvm/test/Instrumentation/AddressSanitizer/
Ddebug_info_noninstrumented_alloca.ll1 ; This test checks that non-instrumented allocas stay in the first basic block.
13 ; Won't be instrumented because of asan-skip-promotable-allocas.
16 ; Regular alloca, will get instrumented (forced by the ptrtoint below).
17 %instrumented = alloca i32, align 4
19 ; Won't be instrumented because of asan-skip-promotable-allocas.
25 ; Won't be instrumented because of asan-skip-promotable-allocas.
28 %ptr = ptrtoint i32* %instrumented to i32
Dinstrument_initializer_metadata.ll46 ; CTOR with priority 0 should not be instrumented.
56 ; Check that xxx is instrumented.
65 ; Check that XXX is instrumented.
75 ; Check that yyy is NOT instrumented (as it does not have dynamic initializer).
84 ; Check that YYY is NOT instrumented (as it does not have dynamic initializer).
/external/clang/cmake/caches/
DREADME.txt31 The PGO CMake cache can be used to generate a multi-stage instrumented compiler.
38 stage2-instrumented:
40 llvm-profdata) then uses that compiler to build an instrumented stage2 compiler.
42 stage2-instrumented-generate-profdata:
43 Depends on "stage2-instrumented" and will use the instrumented compiler to
47 Depends on "stage2-instrumented-generate-profdata" and will use the stage1
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
DInstrumentingLoader.java61 final byte[] instrumented; in loadClass()
63 instrumented = instrumenter.instrument(bytes, name); in loadClass()
67 final Class<?> c = defineClass(name, instrumented, 0, in loadClass()
68 instrumented.length); in loadClass()
/external/llvm/docs/
DAdvancedBuilds.rst87 At a high level, the way PGO works is that you build an instrumented compiler,
88 then you run the instrumented compiler against sample source files. While the
89 instrumented compiler runs it will output a bunch of files containing
100 $ ninja stage2-instrumented-generate-profdata
114 <build dir>/tools/clang/stage2-instrumented-bins/utils/perf-training/clang.profdata
120 multi-stage builds. It generates three stages; stage1, stage2-instrumented, and
125 **stage2-instrumented**
127 llvm-profdata) then uses that compiler to build an instrumented stage2 compiler.
129 **stage2-instrumented-generate-profdata**
130 Depends on "stage2-instrumented" and will use the instrumented compiler to
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DAdvancedBuilds.rst87 At a high level, the way PGO works is that you build an instrumented compiler,
88 then you run the instrumented compiler against sample source files. While the
89 instrumented compiler runs it will output a bunch of files containing
100 $ ninja stage2-instrumented-generate-profdata
114 <build dir>/tools/clang/stage2-instrumented-bins/utils/perf-training/clang.profdata
120 multi-stage builds. It generates three stages; stage1, stage2-instrumented, and
125 **stage2-instrumented**
127 llvm-profdata) then uses that compiler to build an instrumented stage2 compiler.
129 **stage2-instrumented-generate-profdata**
130 Depends on "stage2-instrumented" and will use the instrumented compiler to
[all …]
/external/python/cpython2/PC/VS8.0/
Dbuild_pgo.bat3 rem building instrumented binaries, then running the testsuite, and
5 rem Note, after the first instrumented run, one can just keep on
30 rem build the instrumented version
/external/python/cpython2/PC/VS9.0/
Dbuild_pgo.bat3 rem building instrumented binaries, then running the testsuite, and
5 rem Note, after the first instrumented run, one can just keep on
30 rem build the instrumented version
/external/clang/docs/
DSourceBasedCodeCoverage.rst31 * Running the instrumented program.
66 Running the instrumented program
69 The next step is to run the instrumented program. When the program exits it
81 * "%Nm" expands out to the instrumented binary's signature. When this pattern
168 profile runtime library allows an instrumented program to merge profiling
193 into instrumented binaries. Tools must retain **backwards** compatibility
203 * Export a ``int __llvm_profile_runtime`` symbol from each instrumented shared
209 once from each instrumented executable. This function parses
DControlFlowIntegrityDesign.rst383 instrumented and several uninstrumented DSOs. Some of them may be
387 - Calls inside any instrumented DSO are fully protected.
388 - Calls between different instrumented DSOs are also protected, with
391 - Calls from an instrumented DSO to an uninstrumented one are
393 - Calls from an instrumented DSO outside of any known DSO are
396 In the monolithic scheme a call site is instrumented as
463 - Address in a CFI-instrumented DSO.
464 - Unchecked address (a “trusted” non-instrumented DSO). Encoded as
468 For a CFI-instrumented DSO, a shadow value encodes the address of the
DSanitizerCoverage.rst63 Every time you run an executable instrumented with SanitizerCoverage
65 If the executable is dynamically linked against instrumented DSOs,
138 set from the set of all instrumented PCs. The latter can be obtained by listing
148 sancov.py: found 3 instrumented PCs in a.out
223 Every indirect function call is instrumented with a run-time function call that
304 The first file will contain a textual description of all the instrumented points in the program
307 -- these integers are the indices into the array of instrumented points (the first file).
331 they will be called by the instrumented code.
DMemorySanitizer.rst171 MemorySanitizer requires that all program code is instrumented. This
180 to run MemorySanitizer-instrumented programs linked with
182 MemorySanitizer-instrumented Clang compiler by linking it with
183 self-built instrumented libc++ (as a replacement for libstdc++).
/external/swiftshader/third_party/subzero/tests_lit/asan_tests/
Dstartinitcall.ll8 ; notStart() should not be instrumented
20 ; _start() should be instrumented
/external/compiler-rt/lib/sanitizer_common/scripts/
Dsancov.py206 instrumented = GetInstrumentedPCs(binary)
208 len(instrumented),
212 missing = instrumented - covered
214 if (len(missing) > len(instrumented) - len(covered)):
/external/clang/test/Profile/
DREADME7 - the use of profile data from instrumented runs (-fprofile-instr-use).
9 In order to test -fprofile-instr-use without actually running an instrumented
/external/jacoco/jacoco-maven-plugin.test/it/it-offline-instrumentation/
Dverify.bsh17 throw new RuntimeException( "Could not find backup of instrumented class: " + file );
21 throw new RuntimeException( "Excluded file should not be instrumented: " + file );
/external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/
DBootstrapMethodReferenceTest.java86 final byte[] instrumented = instrumenter.instrument(original, in test()
88 assertEquals(42, run(className, instrumented)); in test()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DClassFileVersionsTest.java97 byte[] instrumented = instrumenter.instrument(original, "TestTarget"); in testVersion()
99 assertFrames(instrumented, frames); in testVersion()
DResizeInstructionsTest.java123 final byte[] instrumented = instrumenter.instrument(original, in should_not_require_computation_of_common_superclass()
125 new TargetLoader().add(className, instrumented); in should_not_require_computation_of_common_superclass()
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
DCoreTutorial.java117 final byte[] instrumented = instr.instrument(original, targetName); in execute()
128 memoryClassLoader.addDefinition(targetName, instrumented); in execute()
/external/compiler-rt/lib/asan/tests/
Dasan_test.ignore1 # blacklisted functions for instrumented ASan unit test

123456