Home
last modified time | relevance | path

Searched refs:shadow_stack_end (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp579 const int sz = thr->shadow_stack_end - thr->shadow_stack; in GrowShadowStack()
587 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
596 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in CurrentStackId()
598 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
1048 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncEntry()
1050 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
1067 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncExit()
H A Dtsan_rtl_thread.cpp98 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize; in OnStarted()
105 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize; in OnStarted()
129 thr->shadow_stack_end = nullptr; in OnFinished()
H A Dtsan_rtl.h393 uptr *shadow_stack_end; member