Searched refs:fake_stack_save (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h323 /// \param fake_stack_save [out] Fake stack save location.
326 void __sanitizer_start_switch_fiber(void **fake_stack_save,
337 /// \param fake_stack_save Fake stack save location.
340 void __sanitizer_finish_switch_fiber(void *fake_stack_save,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp117 void AsanThread::StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, argument
129 if (fake_stack_save)
130 *fake_stack_save = fake_stack_;
133 // if fake_stack_save is null, the fiber will die, delete the fakestack
134 if (!fake_stack_save && current_fake_stack)
138 void AsanThread::FinishSwitchFiber(FakeStack *fake_stack_save, argument
146 if (fake_stack_save) {
147 SetTLSFakeStack(fake_stack_save);
148 fake_stack_ = fake_stack_save;
H A Dasan_thread.h105 void StartSwitchFiber(FakeStack **fake_stack_save, uptr bottom, uptr size);
106 void FinishSwitchFiber(FakeStack *fake_stack_save, uptr *bottom_old,

Completed in 161 milliseconds