Home
last modified time | relevance | path

Searched refs:fake_stack_save (Results 1 – 4 of 4) sorted by relevance

/llvm-project/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_annotation.cpp128 void *fake_stack_save; in Run() local
129 __sanitizer_start_switch_fiber(&fake_stack_save, child_context.uc_stack.ss_sp, in Run()
137 __sanitizer_finish_switch_fiber(fake_stack_save, &from_stack, in Run()
172 void *fake_stack_save; in DoRunHugeStack() local
173 __sanitizer_start_switch_fiber(&fake_stack_save, in DoRunHugeStack()
181 fake_stack_save, (const void **)&child_huge_stack_context.uc_stack.ss_sp, in DoRunHugeStack()
/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp151 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, in Destroy()
163 if (fake_stack_save) in StartSwitchFiber()
164 *fake_stack_save = fake_stack_; in StartSwitchFiber()
167 // if fake_stack_save is null, the fiber will die, delete the fakestack in StartSwitchFiber()
168 if (!fake_stack_save && current_fake_stack) in StartSwitchFiber()
172 void AsanThread::FinishSwitchFiber(FakeStack *fake_stack_save, uptr *bottom_old, in StartSwitchFiber()
179 if (fake_stack_save) { in FinishSwitchFiber()
180 SetTLSFakeStack(fake_stack_save); in FinishSwitchFiber()
181 fake_stack_ = fake_stack_save; in FinishSwitchFiber()
153 StartSwitchFiber(FakeStack ** fake_stack_save,uptr bottom,uptr size) StartSwitchFiber() argument
174 FinishSwitchFiber(FakeStack * fake_stack_save,uptr * bottom_old,uptr * size_old) FinishSwitchFiber() argument
H A Dasan_thread.h111 void StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, uptr size); in DeleteFakeStack()
112 void FinishSwitchFiber(FakeStack *fake_stack_save, uptr *bottom_old, in DeleteFakeStack()
/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h461 /// \param[out] fake_stack_save Fake stack save location.
464 void SANITIZER_CDECL __sanitizer_start_switch_fiber(void **fake_stack_save,
476 /// \param fake_stack_save Fake stack save location.
479 void SANITIZER_CDECL __sanitizer_finish_switch_fiber(void *fake_stack_save,