Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cc529 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack()
541 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
544 thr->shadow_stack_pos[0] = pc; in CurrentStackId()
545 thr->shadow_stack_pos++; in CurrentStackId()
550 thr->shadow_stack_pos--; in CurrentStackId()
990 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack); in FuncEntry()
994 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
997 thr->shadow_stack_pos[0] = pc; in FuncEntry()
998 thr->shadow_stack_pos++; in FuncEntry()
1014 thr->shadow_stack_pos--; in FuncExit()
[all …]
H A Dtsan_rtl_thread.cc100 thr->shadow_stack_pos = thr->shadow_stack; in OnStarted()
107 thr->shadow_stack_pos = thr->shadow_stack; in OnStarted()
132 thr->shadow_stack_pos = nullptr; in OnFinished()
H A Dtsan_rtl.h340 uptr *shadow_stack_pos; member
403 uptr *shadow_stack_pos; member
645 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
H A Dtsan_interceptors.cc499 buf->shadow_stack_pos = thr->shadow_stack_pos; in SetJmp()
536 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos); in LongJmp()
538 while (thr->shadow_stack_pos > buf->shadow_stack_pos) in LongJmp()