Home
last modified time | relevance | path

Searched refs:stack_var (Results 1 – 6 of 6) sorted by relevance

/llvm-project/compiler-rt/test/lsan/TestCases/
H A Duse_after_return.cpp16 void *stack_var = malloc(1337); in main() local
17 print_address("Test alloc: ", 1, stack_var); in main()
19 print_address("Stack var at: ", 1, &stack_var); in main()
H A Duse_stacks.cpp12 void *stack_var = malloc(1337); in main() local
13 print_address("Test alloc: ", 1, stack_var); in main()
/llvm-project/compiler-rt/test/tsan/
H A Ddebug_locate.cpp14 long stack_var; in main() local
17 fprintf(stderr, "stack_var = %p\n", &stack_var); in main()
28 type = __tsan_locate_address(&stack_var, name, 128, &start, &size); in main()
/llvm-project/compiler-rt/test/lsan/TestCases/Linux/
H A Dlog-path_test.cpp22 void *stack_var = malloc(1337); in main() local
23 print_address("Test alloc: ", 1, stack_var); in main()
/llvm-project/llvm/test/CodeGen/WebAssembly/
H A Dexception-legacy.ll186 ; int stack_var = 0;
187 ; bar(stack_var);
222 %stack_var = alloca i32, align 4
223 call void @bar(ptr %stack_var)
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cpp213 int stack_var; in TestThreadInfo() local
216 EXPECT_GT((uptr)&stack_var, stk_begin); in TestThreadInfo()
217 EXPECT_LT((uptr)&stack_var, stk_end); in TestThreadInfo()