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.cc451 const int sz = thr->shadow_stack_end - thr->shadow_stack; in GrowShadowStack()
459 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
468 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in CurrentStackId()
470 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
917 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncEntry()
919 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
937 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncExit()
Dtsan_rtl_thread.cc98 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize; in OnStarted()
105 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize; in OnStarted()
Dtsan_rtl.h355 uptr *shadow_stack_end; member