Home
last modified time | relevance | path

Searched refs:GCDA (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GCOVProfiling/
Dfunction-numbering.ll9 ; RUN: opt -insert-gcov-profiling -S < %t/2 | FileCheck --check-prefix GCDA %s
13 ; RUN: opt -passes=insert-gcov-profiling -S < %t/2 | FileCheck --check-prefix GCDA %s
19 ; GCDA: @[[FOO:[0-9]+]] = private unnamed_addr constant [4 x i8] c"foo\00"
20 ; GCDA-NOT: @{{[0-9]+}} = private unnamed_addr constant .* c"bar\00"
21 ; GCDA: @[[BAZ:[0-9]+]] = private unnamed_addr constant [4 x i8] c"baz\00"
22 ; GCDA: @__llvm_internal_gcov_emit_function_args.0 = internal unnamed_addr constant
23 ; GCDA-SAME: { i32 0, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @[[FOO]]
24 ; GCDA-SAME: { i32 1, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @[[BAZ]]
26 ; GCDA-LABEL: define internal void @__llvm_gcov_writeout() {{.*}} {
27 ; GCDA-NEXT: entry:
[all …]
/external/llvm/test/Transforms/GCOVProfiling/
Dfunction-numbering.ll8 ; RUN: opt -insert-gcov-profiling -S < %t2 | FileCheck --check-prefix GCDA %s
12 ; RUN: opt -passes=insert-gcov-profiling -S < %t2 | FileCheck --check-prefix GCDA %s
18 ; GCDA: @[[FOO:[0-9]+]] = private unnamed_addr constant [4 x i8] c"foo\00"
19 ; GCDA-NOT: @{{[0-9]+}} = private unnamed_addr constant .* c"bar\00"
20 ; GCDA: @[[BAZ:[0-9]+]] = private unnamed_addr constant [4 x i8] c"baz\00"
21 ; GCDA: define internal void @__llvm_gcov_writeout()
22 ; GCDA: call void @llvm_gcda_emit_function(i32 0, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @…
23 ; GCDA: call void @llvm_gcda_emit_function(i32 1, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @…
/external/llvm/tools/llvm-cov/
Dgcov.cpp42 std::string GCDA = InputGCDA.empty() in reportCoverage() local
60 MemoryBuffer::getFileOrSTDIN(GCDA); in reportCoverage()
63 errs() << GCDA << ": " << EC.message() << "\n"; in reportCoverage()
67 GCDA = "-"; in reportCoverage()
81 FI.print(llvm::outs(), SourceFile, GCNO, GCDA); in reportCoverage()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
Dgcov.cpp42 std::string GCDA = InputGCDA.empty() in reportCoverage() local
60 MemoryBuffer::getFileOrSTDIN(GCDA); in reportCoverage()
63 errs() << GCDA << ": " << EC.message() << "\n"; in reportCoverage()
67 GCDA = "-"; in reportCoverage()
81 FI.print(llvm::outs(), SourceFile, GCNO, GCDA); in reportCoverage()
/external/cn-cbor/cmake/
DCoverallsGenerateGcov.cmake139 message("GCDA files:")
144 foreach(GCDA ${GCDA_FILES})
145 message("Process: ${GCDA}")
147 get_filename_component(GCDA_DIR ${GCDA} PATH)
164 COMMAND ${GCOV_EXECUTABLE} -c -p -o ${GCDA_DIR} ${GCDA}
/external/bc/
DMakefile.in36 GCDA = %%GCDA%%
/external/modp_b64/
Dcommon.mk721 GCDA="$${GCNO%.gcno}.gcda"; \
722 if [ -e $${GCDA} ]; then \
723 FILES="$${FILES} $${GCDA}"; \
/external/minijail/
Dcommon.mk725 GCDA="$${GCNO%.gcno}.gcda"; \
726 if [ -e $${GCDA} ]; then \
727 FILES="$${FILES} $${GCDA}"; \
/external/minigbm/
Dcommon.mk711 GCDA="$${GCNO%.gcno}.gcda"; \
712 if [ -e $${GCDA} ]; then \
713 FILES="$${FILES} $${GCDA}"; \
/external/clang/include/clang/Frontend/
DCodeGenOptions.def40 CODEGENOPT(CoverageNoFunctionNamesInData, 1, 0) ///< Do not include function names in GCDA files.
64 CODEGENOPT(EmitGcovArcs , 1, 0) ///< Emit coverage data files, aka. GCDA.
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp124 enum class GCovFileType { GCNO, GCDA }; enumerator
955 std::string FilenameGcda = mangleName(CU, GCovFileType::GCDA); in insertCounterWriteout()