Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_stack_test.cpp30 *thr.shadow_stack_pos++ = 100; in TestStackTrace()
31 *thr.shadow_stack_pos++ = 101; in TestStackTrace()
49 *thr.shadow_stack_pos++ = 100 + i; in TestTrim()
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h102 uptr *shadow_stack_pos; member
165 uptr *shadow_stack_pos; member
467 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
784 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack); in FuncEntry()
786 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncEntry()
788 if (thr->shadow_stack_pos == thr->shadow_stack_end) in FuncEntry()
791 thr->shadow_stack_pos[0] = pc; in FuncEntry()
792 thr->shadow_stack_pos++; in FuncEntry()
800 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack); in FuncExit()
802 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in FuncExit()
[all …]
H A Dtsan_rtl.cpp425 shadow_stack_pos = shadow_stack; in ThreadState()
882 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack()
894 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end); in CurrentStackId()
896 if (thr->shadow_stack_pos == thr->shadow_stack_end) in CurrentStackId()
899 thr->shadow_stack_pos[0] = pc; in CurrentStackId()
900 thr->shadow_stack_pos++; in CurrentStackId()
903 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack)); in CurrentStackId()
905 thr->shadow_stack_pos--; in CurrentStackId()
988 uptr* pos = Max(&thr->shadow_stack[0], thr->shadow_stack_pos - kMaxFrames); in TraceSwitchPartImpl()
989 for (; pos < thr->shadow_stack_pos; pos++) { in TraceSwitchPartImpl()
[all …]
H A Dtsan_rtl_thread.cpp244 thr->shadow_stack_pos = nullptr; in ThreadFinish()
H A Dtsan_interceptors_posix.cpp545 buf->shadow_stack_pos = thr->shadow_stack_pos; in SetJmp()
559 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos); in LongJmp()
561 while (thr->shadow_stack_pos > buf->shadow_stack_pos) in LongJmp()