/external/compiler-rt/test/asan/TestCases/Darwin/ |
reexec-insert-libraries-env.cc | 24 void foo() {} function
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
odr-violation.cc | 20 // RUN: echo "odr_violation:foo::ZZZ" > %t.supp 22 // RUN: echo "odr_violation:foo::G" > %t.supp 34 namespace foo { char G[SZ]; } namespace 37 namespace foo { char G[100]; } 39 // CHECK: size=100 'foo::G' {{.*}}odr-violation.cc:[[@LINE-2]]:22 40 // CHECK: size={{4|100}} 'foo::G' 42 printf("PASS: %p\n", &foo::G); 49 // CHECK: SUMMARY: AddressSanitizer: odr-violation: global 'foo::G' at {{.*}}odr-violation.cc
|
stack-trace-dlclose.cc | 20 void *foo() { function 30 void *(*foo)() = (void *(*)())dlsym(handle, "foo"); 31 assert(foo); 32 void *p = foo();
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
coverage-basic.cc | 9 void foo() { fprintf(stderr, "FOO\n"); } function 14 foo(); 18 foo();
|
dll_stack_use_after_return.cc | 9 void foo() { function 16 foo(); 24 // CHECK-NEXT: #0 {{.*}} foo{{.*}}dll_stack_use_after_return.cc
|
stack_use_after_return.cc | 6 void foo() { function 12 foo(); 19 // CHECK-NEXT: {{#0 0x.* in foo.*stack_use_after_return.cc}}
|
use_after_return_linkage.cc | 7 void foo(int *p) { *p = 42; } function 11 foo(&x);
|
/external/compiler-rt/test/asan/TestCases/ |
alloca_big_alignment.cc | 7 __attribute__((noinline)) void foo(int index, int len) { function 16 foo(10, 10);
|
alloca_instruments_all_paddings.cc | 9 __attribute__((noinline)) void foo(int index, int len) { function 18 foo(i, i); 21 foo(i, i);
|
alloca_overflow_partial.cc | 7 __attribute__((noinline)) void foo(int index, int len) { function 16 foo(10, 10);
|
alloca_overflow_right.cc | 7 __attribute__((noinline)) void foo(int index, int len) { function 16 foo(33, 10);
|
alloca_safe_access.cc | 7 __attribute__((noinline)) void foo(int index, int len) { function 14 foo(4, 5); 15 foo(39, 40);
|
alloca_underflow_left.cc | 7 __attribute__((noinline)) void foo(int index, int len) { function 16 foo(-1, 10);
|
asan_and_llvm_coverage_test.cc | 5 int foo() { return 1; } function 6 int XXX = foo();
|
coverage-order-pcs.cc | 26 void foo() { fprintf(stderr, "FOO\n"); } function 31 foo(); 35 foo(); 40 // CHECK: [[FOO:0x[0-9a-f]*]] 45 // CHECK-NEXT: [[FOO]] 49 // Run C: MAIN, BAR, FOO 52 // CHECK-NEXT: [[FOO]] 54 // Run D: MAIN, FOO, BAR 56 // CHECK-NEXT: [[FOO]] [all...] |
force_inline_opt0.cc | 6 void foo(int *x) { function 12 foo(&x);
|
vla_condition_overflow.cc | 9 __attribute__((noinline)) void foo(int index, int len) { function 20 foo(33, 10);
|
vla_loop_overfow.cc | 9 void foo(int index, int len) { function 20 foo(9, 21);
|
/external/compiler-rt/test/builtins/Unit/ |
gcc_personality_test.c | 24 * foo() is called by main() in gcc_personality_test_helper.cxx. 27 * routines for foo() and bar() were called by the personality 37 void foo() { function
|
/external/compiler-rt/test/profile/Inputs/ |
instrprof-shared-lib.c | 4 void foo(int n) { function
|
/external/compiler-rt/test/profile/ |
instrprof-write-file-only.c | 10 int foo(int); 25 return foo(0); 27 int foo(int X) { function 28 // There should be no profiling information for @foo, since it was called 31 // CHECK-LABEL: define {{.*}} @foo(
|
instrprof-write-file.c | 10 int foo(int); 21 int Ret = foo(0); 27 int foo(int X) { function 28 // CHECK-LABEL: define {{.*}} @foo(
|
/external/compiler-rt/test/tsan/ |
free_race2.c | 4 void __attribute__((noinline)) foo(int *mem) { function 14 foo(mem); 25 // CHECK: #{{1|2}} foo
|
longjmp.cc | 10 int foo(jmp_buf env) { function 20 foo(env);
|
longjmp2.cc | 10 int foo(sigjmp_buf env) { function 22 foo(env);
|