/external/elfutils/tests/ |
D | Makefile.am | 80 TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \ 82 run-show-die-info.sh run-get-files.sh run-get-lines.sh \ 83 run-next-files.sh run-next-lines.sh \ 84 run-get-pubnames.sh run-get-aranges.sh run-allfcts.sh \ 85 run-show-abbrev.sh run-line2addr.sh hash \ 86 newscn run-strip-test.sh run-strip-test2.sh \ 87 run-strip-test3.sh run-strip-test4.sh run-strip-test5.sh \ 88 run-strip-test6.sh run-strip-test7.sh run-strip-test8.sh \ 89 run-strip-test9.sh run-strip-test10.sh run-strip-test11.sh \ 90 run-strip-test12.sh \ [all …]
|
/external/clang/test/Driver/ |
D | gfortran.f90 | 5 ! RUN: %clang -no-canonical-prefixes -target i386-linux -### %s -o %t 2>&1 \ 6 ! RUN: -Aquestion=answer \ 7 ! RUN: -A-question=answer \ 8 ! RUN: -C \ 9 ! RUN: -CC \ 10 ! RUN: -Dmacro \ 11 ! RUN: -Dmacro=value \ 12 ! RUN: -H \ 13 ! RUN: -Isome/directory \ 14 ! RUN: -Jsome/other/directory \ [all …]
|
D | cl-options.c | 7 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=c %s 10 // RUN: %clang_cl /C -### -- %s 2>&1 | FileCheck -check-prefix=C %s 13 // RUN: %clang_cl /C /P -### -- %s 2>&1 | FileCheck -check-prefix=C_P %s 17 // RUN: %clang_cl /Dfoo=bar /D bar=baz /DMYDEF#value /DMYDEF2=foo#bar /DMYDEF3#a=b /DMYDEF4# \ 18 // RUN: -### -- %s 2>&1 | FileCheck -check-prefix=D %s 26 // RUN: %clang_cl /E -### -- %s 2>&1 | FileCheck -check-prefix=E %s 30 // RUN: %clang_cl /EP -### -- %s 2>&1 | FileCheck -check-prefix=EP %s 35 // RUN: %clang_cl /fp:fast /fp:except -### -- %s 2>&1 | FileCheck -check-prefix=fpexcept %s 38 // RUN: %clang_cl /fp:fast /fp:except /fp:except- -### -- %s 2>&1 | FileCheck -check-prefix=fpexcep… 41 // RUN: %clang_cl /fp:precise /fp:fast -### -- %s 2>&1 | FileCheck -check-prefix=fpfast %s [all …]
|
D | pic.c | 48 // RUN: %clang -c %s -target i386-unknown-unknown -### 2>&1 \ 49 // RUN: | FileCheck %s --check-prefix=CHECK-NO-PIC 50 // RUN: %clang -c %s -target i386-unknown-unknown -fpic -### 2>&1 \ 51 // RUN: | FileCheck %s --check-prefix=CHECK-PIC1 52 // RUN: %clang -c %s -target i386-unknown-unknown -fPIC -### 2>&1 \ 53 // RUN: | FileCheck %s --check-prefix=CHECK-PIC2 54 // RUN: %clang -c %s -target i386-unknown-unknown -fpie -### 2>&1 \ 55 // RUN: | FileCheck %s --check-prefix=CHECK-PIE1 56 // RUN: %clang -c %s -target i386-unknown-unknown -fPIE -### 2>&1 \ 57 // RUN: | FileCheck %s --check-prefix=CHECK-PIE2 [all …]
|
D | clang_f_opts.c | 3 // RUN: %clang -### -S -fasm -fblocks -fbuiltin -fno-math-errno -fcommon -fpascal-strings -fno-bloc… 4 // RUN: %clang -### -S -fasm -fblocks -fbuiltin -fno-math-errno -fcommon -fpascal-strings -fno-asm … 19 // RUN: %clang -### -S -Wwrite-strings %s 2>&1 | FileCheck -check-prefix=WRITE-STRINGS1 %s 21 // RUN: %clang -### -S -Wwrite-strings -Wno-write-strings %s 2>&1 | FileCheck -check-prefix=WRITE-S… 23 // RUN: %clang -### -S -Wwrite-strings -w %s 2>&1 | FileCheck -check-prefix=WRITE-STRINGS3 %s 26 // RUN: %clang -### -x c++ -c %s 2>&1 | FileCheck -check-prefix=DEPRECATED-ON-CHECK %s 27 // RUN: %clang -### -x c++ -c -Wdeprecated %s 2>&1 | FileCheck -check-prefix=DEPRECATED-ON-CHECK %s 28 // RUN: %clang -### -x c++ -c -Wno-deprecated %s 2>&1 | FileCheck -check-prefix=DEPRECATED-OFF-CHEC… 29 // RUN: %clang -### -x c++ -c -Wno-deprecated -Wdeprecated %s 2>&1 | FileCheck -check-prefix=DEPREC… 30 // RUN: %clang -### -x c++ -c -w %s 2>&1 | FileCheck -check-prefix=DEPRECATED-ON-CHECK %s [all …]
|
D | constructors.c | 7 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \ 8 // RUN: -target i386-unknown-linux \ 9 // RUN: --sysroot=%S/Inputs/fake_install_tree \ 10 // RUN: --gcc-toolchain="" \ 11 // RUN: | FileCheck --check-prefix=CHECK-INIT-ARRAY %s 13 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \ 14 // RUN: -fno-use-init-array \ 15 // RUN: -target i386-unknown-linux \ 16 // RUN: --sysroot=%S/Inputs/fake_install_tree \ 17 // RUN: --gcc-toolchain="" \ [all …]
|
D | mips-abi.c | 3 // RUN: %clang -target mips-linux-gnu -### -c %s 2>&1 \ 4 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 5 // RUN: %clang -target mips64-linux-gnu -mips32r2 -mabi=32 -### -c %s 2>&1 \ 6 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 12 // RUN: not %clang -target mips-linux-gnu -c %s \ 13 // RUN: -march=mips64r2 -mabi=32 2>&1 \ 14 // RUN: | FileCheck -check-prefix=MIPS64R2-O32 %s 17 // RUN: %clang -target mips64-linux-gnu -### -c %s 2>&1 \ 18 // RUN: | FileCheck -check-prefix=MIPS64R2-N64 %s 19 // RUN: %clang -target mips-img-linux-gnu -mips64r2 -### -c %s 2>&1 \ [all …]
|
D | fast-math.c | 10 // RUN: %clang -### -fno-honor-infinities -c %s 2>&1 \ 11 // RUN: | FileCheck --check-prefix=CHECK-NO-INFS %s 13 // RUN: %clang -### -fno-honor-infinites -c %s 2>&1 \ 14 // RUN: | FileCheck --check-prefix=CHECK-NO-INFS %s 18 // RUN: %clang -### -fno-fast-math -fno-honor-infinities -c %s 2>&1 \ 19 // RUN: | FileCheck --check-prefix=CHECK-NO-FAST-MATH-NO-INFS %s 23 // RUN: %clang -### -fno-honor-infinities -fno-fast-math -c %s 2>&1 \ 24 // RUN: | FileCheck --check-prefix=CHECK-NO-INFS-NO-FAST-MATH %s 28 // RUN: %clang -### -fno-signed-zeros -c %s 2>&1 \ 29 // RUN: | FileCheck --check-prefix=CHECK-NO-SIGNED-ZEROS %s [all …]
|
D | sparc-as.c | 3 // RUN: %clang -target sparc-linux -### -c %s 2>&1 \ 4 // RUN: | FileCheck -check-prefix=NO-IAS %s 6 // RUN: %clang -target sparc-linux -fintegrated-as -### -c %s 2>&1 \ 7 // RUN: | FileCheck -check-prefix=IAS %s 9 // RUN: %clang -target sparc-linux -fno-integrated-as -### -c %s 2>&1 \ 10 // RUN: | FileCheck -check-prefix=NO-IAS %s 15 // RUN: %clang -no-canonical-prefixes -target sparc--netbsd \ 16 // RUN: -no-integrated-as --sysroot=%S/Inputs/basic_netbsd_tree %s -### 2>&1 \ 17 // RUN: | FileCheck -check-prefix=SPARC %s 19 // RUN: %clang -mcpu=v8 -no-canonical-prefixes -target sparc--netbsd \ [all …]
|
/external/clang/test/Modules/ |
D | stress1.cpp | 1 // RUN: rm -rf %t 2 // RUN: cd %S 4 // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \ 5 // RUN: -I Inputs/stress1 \ 6 // RUN: -fno-implicit-modules \ 7 // RUN: -fmodules-cache-path=%t \ 8 // RUN: -fmodule-map-file-home-is-cwd \ 9 // RUN: -emit-module -fmodule-name=m00 -o %t/m00.pcm \ 10 // RUN: Inputs/stress1/module.modulemap 12 // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \ [all …]
|
D | macro-ambiguity.cpp | 1 // RUN: rm -rf %t 2 // RUN: cd %S 4 // RUN: %clang_cc1 -fmodules -x c++ -fmodules-cache-path=%t \ 5 // RUN: -v \ 6 // RUN: -iquote Inputs/macro-ambiguity/a/quote \ 7 // RUN: -isystem Inputs/macro-ambiguity/a/system \ 8 // RUN: -fno-implicit-modules \ 9 // RUN: -fmodule-map-file-home-is-cwd \ 10 // RUN: -emit-module -fmodule-name=a -o %t/a.pcm \ 11 // RUN: Inputs/macro-ambiguity/module.modulemap [all …]
|
D | exponential-paths.cpp | 3 // RUN: rm -rf %t 4 // RUN: mkdir %t 9 // RUN: echo 'module a0 { header "a0.h" export * }' > %t/module.modulemap 10 // RUN: echo 'module b0 { header "b0.h" export * }' >> %t/module.modulemap 11 // RUN: echo 'module a1 { header "a1.h" export * }' >> %t/module.modulemap 12 // RUN: echo 'module b1 { header "b1.h" export * }' >> %t/module.modulemap 13 // RUN: echo 'module a2 { header "a2.h" export * }' >> %t/module.modulemap 14 // RUN: echo 'module b2 { header "b2.h" export * }' >> %t/module.modulemap 15 // RUN: echo 'module a3 { header "a3.h" export * }' >> %t/module.modulemap 16 // RUN: echo 'module b3 { header "b3.h" export * }' >> %t/module.modulemap [all …]
|
/external/honggfuzz/ |
D | fuzz.c | 133 /* No need to add files to the new coverage dir, if this is just the dry-run phase */ in fuzz_addFileToFileQ() 143 static void fuzz_setDynamicMainState(run_t* run) { in fuzz_setDynamicMainState() argument 151 if (fuzz_getState(run->global) == _HF_STATE_DYNAMIC_MAIN) { in fuzz_setDynamicMainState() 157 if (ATOMIC_GET(cnt) == run->global->threads.threadsMax) { in fuzz_setDynamicMainState() 167 snprintf(run->origFileName, sizeof(run->origFileName), "[DYNAMIC]"); in fuzz_setDynamicMainState() 168 ATOMIC_SET(run->global->feedback.state, _HF_STATE_DYNAMIC_MAIN); in fuzz_setDynamicMainState() 174 if (run->global->io.dynfileqCnt == 0) { in fuzz_setDynamicMainState() 175 const char* single_byte = run->global->cfg.only_printable ? " " : "\0"; in fuzz_setDynamicMainState() 176 fuzz_addFileToFileQ(run->global, (const uint8_t*)single_byte, 1U); in fuzz_setDynamicMainState() 180 static void fuzz_perfFeedback(run_t* run) { in fuzz_perfFeedback() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ThinLTO/X86/ |
D | cache.ll | 3 ; RUN: opt -module-summary %s -o %t.bc 4 ; RUN: opt -module-summary %p/Inputs/cache.ll -o %t2.bc 7 ; RUN: rm -Rf %t.cache && mkdir %t.cache 8 ; RUN: llvm-lto -thinlto-action=run -exported-symbol=globalfunc %t2.bc %t.bc -thinlto-cache-dir %t.… 9 ; RUN: ls %t.cache/llvmcache.timestamp 10 ; RUN: ls %t.cache | count 1 13 ; RUN: rm -Rf %t.cache 14 ; RUN: llvm-lto2 run -o %t.o %t2.bc %t.bc -cache-dir %t.cache \ 15 ; RUN: -r=%t2.bc,_main,plx \ 16 ; RUN: -r=%t2.bc,_globalfunc,lx \ [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/ |
D | pass-pipeline-parsing.ll | 1 ; RUN: opt -disable-output -debug-pass-manager \ 2 ; RUN: -passes=no-op-module,no-op-module %s 2>&1 \ 3 ; RUN: | FileCheck %s --check-prefix=CHECK-TWO-NOOP-MP 4 ; CHECK-TWO-NOOP-MP: Starting llvm::Module pass manager run 7 ; CHECK-TWO-NOOP-MP: Finished llvm::Module pass manager run 9 ; RUN: opt -disable-output -debug-pass-manager \ 10 ; RUN: -passes='module(no-op-module,no-op-module)' %s 2>&1 \ 11 ; RUN: | FileCheck %s --check-prefix=CHECK-NESTED-TWO-NOOP-MP 12 ; CHECK-NESTED-TWO-NOOP-MP: Starting llvm::Module pass manager run 13 ; CHECK-NESTED-TWO-NOOP-MP: Starting llvm::Module pass manager run [all …]
|
D | new-pass-manager.ll | 8 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 9 ; RUN: -passes=no-op-module %s 2>&1 \ 10 ; RUN: | FileCheck %s --check-prefix=CHECK-MODULE-PASS 11 ; CHECK-MODULE-PASS: Starting llvm::Module pass manager run 13 ; CHECK-MODULE-PASS-NEXT: Finished llvm::Module pass manager run 15 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 16 ; RUN: -passes=no-op-cgscc %s 2>&1 \ 17 ; RUN: | FileCheck %s --check-prefix=CHECK-CGSCC-PASS 18 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 19 ; RUN: -passes='cgscc(no-op-cgscc)' %s 2>&1 \ [all …]
|
/external/llvm/test/Other/ |
D | pass-pipeline-parsing.ll | 1 ; RUN: opt -disable-output -debug-pass-manager \ 2 ; RUN: -passes=no-op-module,no-op-module %s 2>&1 \ 3 ; RUN: | FileCheck %s --check-prefix=CHECK-TWO-NOOP-MP 4 ; CHECK-TWO-NOOP-MP: Starting llvm::Module pass manager run 7 ; CHECK-TWO-NOOP-MP: Finished llvm::Module pass manager run 9 ; RUN: opt -disable-output -debug-pass-manager \ 10 ; RUN: -passes='module(no-op-module,no-op-module)' %s 2>&1 \ 11 ; RUN: | FileCheck %s --check-prefix=CHECK-NESTED-TWO-NOOP-MP 12 ; CHECK-NESTED-TWO-NOOP-MP: Starting llvm::Module pass manager run 13 ; CHECK-NESTED-TWO-NOOP-MP: Starting llvm::Module pass manager run [all …]
|
D | new-pass-manager.ll | 8 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 9 ; RUN: -passes=no-op-module %s 2>&1 \ 10 ; RUN: | FileCheck %s --check-prefix=CHECK-MODULE-PASS 11 ; CHECK-MODULE-PASS: Starting llvm::Module pass manager run 13 ; CHECK-MODULE-PASS-NEXT: Finished llvm::Module pass manager run 15 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 16 ; RUN: -passes=no-op-cgscc %s 2>&1 \ 17 ; RUN: | FileCheck %s --check-prefix=CHECK-CGSCC-PASS 18 ; RUN: opt -disable-output -disable-verify -debug-pass-manager \ 19 ; RUN: -passes='cgscc(no-op-cgscc)' %s 2>&1 \ [all …]
|
/external/compiler-rt/test/asan/TestCases/Android/ |
D | coverage-android.cc | 4 // RUN: %clangxx_asan -fsanitize-coverage=func -DSHARED %s -shared -o %T/libcoverage_android_test_1… 5 // RUN: %clangxx_asan -fsanitize-coverage=func -DSO_DIR=\"%device\" %s -o %t 7 // RUN: adb shell rm -rf %device/coverage-android 8 // RUN: rm -rf %T/coverage-android 10 // RUN: adb shell mkdir -p %device/coverage-android/direct 11 // RUN: mkdir -p %T/coverage-android/direct 12 // RUN: %env_asan_opts=coverage=1:coverage_direct=1:coverage_dir=%device/coverage-android/direct:ve… 13 // RUN: adb pull %device/coverage-android/direct %T/coverage-android/direct 14 // RUN: ls; pwd 15 // RUN: cd %T/coverage-android/direct [all …]
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | interface_symbols_linux.c | 3 // RUN: %clang_asan -O2 %s -o %t.exe 4 // RUN: nm -D %t.exe | grep " T " | sed "s/.* T //" \ 5 // RUN: | grep "__asan_" | sed "s/___asan_/__asan_/" \ 6 // RUN: | sed -E "s/__asan_version_mismatch_check_v[0-9]+/__asan_version_mismatch_check/" \ 7 // RUN: | grep -v "__asan_default_options" \ 8 // RUN: | grep -v "__asan_stack_" \ 9 // RUN: | grep -v "__asan_on_error" > %t.symbols 10 // RUN: cat %p/../../../../lib/asan/asan_interface_internal.h \ 11 // RUN: | sed "s/\/\/.*//" | sed "s/typedef.*//" \ 12 // RUN: | grep -v "OPTIONAL" \ [all …]
|
/external/compiler-rt/test/asan/TestCases/Darwin/ |
D | interface_symbols_darwin.c | 5 // RUN: %clang_asan -dead_strip -O2 %s -o %t.exe 6 // RUN: rm -f %t.symbols %t.interface 8 // RUN: nm -g `%clang_asan %s -fsanitize=address -### 2>&1 | grep "libclang_rt.asan_osx_dynamic.dyl… 9 // RUN: | grep " T " | sed "s/.* T //" \ 10 // RUN: | grep "__asan_" | sed "s/___asan_/__asan_/" \ 11 // RUN: | sed -E "s/__asan_version_mismatch_check_v[0-9]+/__asan_version_mismatch_check/" \ 12 // RUN: | grep -v "__asan_default_options" \ 13 // RUN: | grep -v "__asan_on_error" > %t.symbols 15 // RUN: cat %p/../../../../lib/asan/asan_interface_internal.h \ 16 // RUN: | sed "s/\/\/.*//" | sed "s/typedef.*//" \ [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/ |
D | invalid.test | 1 RUN: not llvm-dis -disable-output %p/Inputs/invalid-empty.bc 2>&1 | \ 2 RUN: FileCheck --check-prefix=INVALID-EMPTY %s 3 RUN: not llvm-dis -disable-output %p/Inputs/invalid-pr20485.bc 2>&1 | \ 4 RUN: FileCheck --check-prefix=INVALID-ENCODING %s 5 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev.bc 2>&1 | \ 6 RUN: FileCheck --check-prefix=BAD-ABBREV %s 7 RUN: not llvm-dis -disable-output %p/Inputs/invalid-unexpected-eof.bc 2>&1 | \ 8 RUN: FileCheck --check-prefix=UNEXPECTED-EOF %s 9 RUN: not llvm-dis -disable-output %p/Inputs/invalid-bad-abbrev-number.bc 2>&1 | \ 10 RUN: FileCheck --check-prefix=BAD-ABBREV-NUMBER %s [all …]
|
/external/llvm/test/Bitcode/ |
D | invalid.test | 1 RUN: not llvm-dis -disable-output %p/Inputs/invalid-pr20485.bc 2>&1 | \ 2 RUN: FileCheck --check-prefix=INVALID-ENCODING %s 3 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev.bc 2>&1 | \ 4 RUN: FileCheck --check-prefix=BAD-ABBREV %s 5 RUN: not llvm-dis -disable-output %p/Inputs/invalid-unexpected-eof.bc 2>&1 | \ 6 RUN: FileCheck --check-prefix=UNEXPECTED-EOF %s 7 RUN: not llvm-dis -disable-output %p/Inputs/invalid-bad-abbrev-number.bc 2>&1 | \ 8 RUN: FileCheck --check-prefix=BAD-ABBREV-NUMBER %s 9 RUN: not llvm-dis -disable-output %p/Inputs/invalid-type-table-forward-ref.bc 2>&1 | \ 10 RUN: FileCheck --check-prefix=BAD-TYPE-TABLE-FORWARD-REF %s [all …]
|
/external/honggfuzz/linux/ |
D | perf.c | 56 __attribute__((hot)) static inline void arch_perfBtsCount(run_t* run) { in arch_perfBtsCount() argument 57 struct perf_event_mmap_page* pem = (struct perf_event_mmap_page*)run->linux.perfMmapBuf; in arch_perfBtsCount() 65 struct bts_branch* br = (struct bts_branch*)run->linux.perfMmapAux; in arch_perfBtsCount() 66 for (; br < ((struct bts_branch*)(run->linux.perfMmapAux + aux_head)); br++) { in arch_perfBtsCount() 71 if (run->global->linux.kernelOnly == false && in arch_perfBtsCount() 77 if (br->from >= run->global->linux.dynamicCutOffAddr || in arch_perfBtsCount() 78 br->to >= run->global->linux.dynamicCutOffAddr) { in arch_perfBtsCount() 84 register uint8_t prev = ATOMIC_BTS(run->global->feedback.feedbackMap->bbMapPc, pos); in arch_perfBtsCount() 86 run->linux.hwCnts.newBBCnt++; in arch_perfBtsCount() 92 static inline void arch_perfMmapParse(run_t* run HF_ATTR_UNUSED) { in arch_perfMmapParse() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-profdata/ |
D | invalid-profdata.test | 1 RUN: echo ":ir" > %t.input 2 RUN: echo "_ZN6Thread5StartEv" >> %t.input 3 RUN: echo "# Func Hash:" >> %t.input 4 RUN: echo "288793635542036872" >> %t.input 5 RUN: echo "# Num Counters:" >> %t.input 6 RUN: echo "3" >> %t.input 7 RUN: echo "# Counter Values:" >> %t.input 8 RUN: echo "0" >> %t.input 9 RUN: echo "12" >> %t.input 10 RUN: echo "12" >> %t.input [all …]
|