Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_stack_test.cc26 thr.shadow_stack_end = &stack[128]; in TestStackTrace()
56 thr.shadow_stack_end = &stack[kShadowStackSize]; in TestTrim()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl.cc473 const int sz = thr->shadow_stack_end - thr->shadow_stack; in GrowShadowStack()
481 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
490 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in CurrentStackId()
492 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
939 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncEntry()
941 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
959 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncExit()
Dtsan_rtl_thread.cc100 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize; in OnStarted()
107 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize; in OnStarted()
Dtsan_rtl.h386 uptr *shadow_stack_end; member