HomeSort by relevance Sort by last modified time
    Searched defs:fake_stack (Results 1 - 6 of 6) sorted by null

  /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);
  /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);
  /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/perfetto/src/profiling/memory/
unwinding_unittest.cc 39 uint8_t fake_stack[1] = {120}; local
42 StackOverlayMemory memory(mem, 0u, fake_stack, 1);
53 uint8_t fake_stack[1] = {120}; local
56 StackOverlayMemory memory(mem, 0u, fake_stack, 1);
  /art/compiler/
exception_test.cc 172 std::vector<uintptr_t> fake_stack; local
183 fake_stack.push_back(reinterpret_cast<uintptr_t>(save_method));
186 fake_stack.push_back(0);
189 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc(
193 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
194 fake_stack.push_back(0);
195 fake_stack.push_back(0);
196 fake_stack.push_back(method_g_->GetOatQuickMethodHeader(0)->ToNativeQuickPc(
200 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
201 fake_stack.push_back(0)
    [all...]
  /external/compiler-rt/lib/asan/
asan_thread.h 104 FakeStack *fake_stack() { function in class:__asan::AsanThread

Completed in 602 milliseconds