Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cc522 const int sz = thr->shadow_stack_end - thr->shadow_stack; in GrowShadowStack()
530 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
539 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in CurrentStackId()
541 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
992 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncEntry()
994 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
1012 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncExit()
H A Dtsan_rtl_thread.cc101 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize; in OnStarted()
108 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize; in OnStarted()
133 thr->shadow_stack_end = nullptr; in OnFinished()
H A Dtsan_rtl.h402 uptr *shadow_stack_end; member