HomeSort by relevance Sort by last modified time
    Searched refs:shadow_stack_pos (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/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;
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 480 thr->shadow_stack_pos = newstack + sz;
490 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
492 if (thr->shadow_stack_pos == thr->shadow_stack_end)
495 thr->shadow_stack_pos[0] = pc;
496 thr->shadow_stack_pos++;
499 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
501 thr->shadow_stack_pos--;
937 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
939 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
941 if (thr->shadow_stack_pos == thr->shadow_stack_end
    [all...]
tsan_rtl_thread.cc 99 thr->shadow_stack_pos = thr->shadow_stack;
106 thr->shadow_stack_pos = thr->shadow_stack;
tsan_rtl.h 325 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
387 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
592 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
tsan_interceptors.cc 470 buf->shadow_stack_pos = thr->shadow_stack_pos;
496 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
498 while (thr->shadow_stack_pos > buf->shadow_stack_pos)
    [all...]

Completed in 101 milliseconds