HomeSort by: relevance | last modified time | path
    Searched refs:shadow_stack_pos (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_stack_test.cc 25 thr.shadow_stack_pos = &stack[0];
35 *thr.shadow_stack_pos++ = 100;
36 *thr.shadow_stack_pos++ = 101;
55 thr.shadow_stack_pos = &stack[0];
59 *thr.shadow_stack_pos++ = 100 + i;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.cc 529 thr->shadow_stack_pos = newstack + sz;
539 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
541 if (thr->shadow_stack_pos == thr->shadow_stack_end)
544 thr->shadow_stack_pos[0] = pc;
545 thr->shadow_stack_pos++;
548 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
550 thr->shadow_stack_pos--;
990 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
992 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
994 if (thr->shadow_stack_pos == thr->shadow_stack_end
    [all...]
tsan_rtl_thread.cc 100 thr->shadow_stack_pos = thr->shadow_stack;
107 thr->shadow_stack_pos = thr->shadow_stack;
132 thr->shadow_stack_pos = nullptr;
tsan_rtl.h 340 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
403 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
645 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
tsan_interceptors.cc 504 buf->shadow_stack_pos = thr->shadow_stack_pos;
541 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
543 while (thr->shadow_stack_pos > buf->shadow_stack_pos)

Completed in 38 milliseconds