/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_stacktrace_test.cc | 27 trace.Unwind(max_depth, start_pc, (uptr)&fake_stack[0], 0, fake_top, 33 uhwptr *fake_stack; member in class:__sanitizer::FastUnwindTest 51 fake_stack = (uhwptr *)((uptr)mapping + ps + sizeof(uhwptr)); 56 fake_stack[i] = (uptr)&fake_stack[i+2]; // fp 57 fake_stack[i+1] = PC(i + 1); // retaddr 60 fake_stack[RoundDownTo(fake_stack_size - 1, 2)] = (uhwptr)&fake_stack[0]; 63 fake_top = (uhwptr)&fake_stack[fake_stack_size + 2]; 88 fake_stack[4] = (uhwptr)&fake_stack[4] [all...] |
/external/compiler-rt/test/asan/TestCases/Posix/ |
gc-test.cc | 18 void *fake_stack = __asan_get_current_fake_stack(); local 20 if (fake_stack) { 21 fprintf(stderr, "fake stack found: %p; var: %p\n", fake_stack, var); 26 __asan_addr_is_in_fake_stack(fake_stack, &var[0], &beg, &end); 34 __asan_addr_is_in_fake_stack(fake_stack, ptr, &beg1, &end1);
|
/art/compiler/ |
exception_test.cc | 168 std::vector<uintptr_t> fake_stack; local 184 fake_stack.push_back(reinterpret_cast<uintptr_t>(save_method)); 187 fake_stack.push_back(0); 190 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc( 194 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); 195 fake_stack.push_back(0); 196 fake_stack.push_back(0); 197 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc( 201 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); 202 fake_stack.push_back(0) [all...] |
/external/compiler-rt/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/sanitizer/ |
asan_interface.h | 141 // If fake_stack is non-NULL and addr belongs to a fake frame in 142 // fake_stack, returns the address on real stack that corresponds to 147 // fake_stack, but the owner thread need to be alive. 148 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/ |
asan_interface.h | 137 // If fake_stack is non-NULL and addr belongs to a fake frame in 138 // fake_stack, returns the address on real stack that corresponds to 143 // fake_stack, but the owner thread need to be alive. 144 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/sanitizer/ |
asan_interface.h | 141 // If fake_stack is non-NULL and addr belongs to a fake frame in 142 // fake_stack, returns the address on real stack that corresponds to 147 // fake_stack, but the owner thread need to be alive. 148 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg,
|
/external/compiler-rt/lib/asan/ |
asan_fake_stack.cc | 191 return t->fake_stack(); 249 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg, 251 FakeStack *fs = reinterpret_cast<FakeStack*>(fake_stack);
|
asan_thread.cc | 219 bottom = fake_stack()->AddrIsInFakeStack(addr); 258 if (t->has_fake_stack() && t->fake_stack()->AddrIsInFakeStack((uptr)addr)) 343 t->fake_stack()->ForEachFakeFrame(callback, arg);
|
asan_thread.h | 97 FakeStack *fake_stack() { function in class:__asan::AsanThread
|
asan_rtl.cc | 614 curr_thread->fake_stack()->HandleNoReturn();
|
/external/compiler-rt/lib/asan/tests/ |
asan_fake_stack_test.cc | 66 FakeStack *fake_stack = FakeStack::Create(stack_size_log); local 67 fake_stack->Destroy(0);
|