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

  /external/compiler-rt/lib/tsan/tests/unit/
tsan_stack_test.cc 24 thr.shadow_stack_pos = &stack[0];
34 *thr.shadow_stack_pos++ = 100;
35 *thr.shadow_stack_pos++ = 101;
68 thr.shadow_stack_pos = &stack[0];
71 *thr.shadow_stack_pos++ = 100;
72 *thr.shadow_stack_pos++ = 101;
73 *thr.shadow_stack_pos++ = 102;
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 433 thr->shadow_stack_pos = newstack + sz;
439 if (thr->shadow_stack_pos == 0) // May happen during bootstrap.
443 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end);
445 if (thr->shadow_stack_pos == thr->shadow_stack_end)
448 thr->shadow_stack_pos[0] = pc;
449 thr->shadow_stack_pos++;
452 thr->shadow_stack_pos - thr->shadow_stack);
454 thr->shadow_stack_pos--;
904 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
906 DCHECK_LT(thr->shadow_stack_pos, thr->shadow_stack_end)
    [all...]
tsan_stack_trace.cc 63 n_ = thr->shadow_stack_pos - thr->shadow_stack;
tsan_rtl_thread.cc 92 thr->shadow_stack_pos = thr->shadow_stack;
99 thr->shadow_stack_pos = thr->shadow_stack;
tsan_rtl.h 315 uptr *shadow_stack_pos; member in struct:__tsan::JmpBuf
347 uptr *shadow_stack_pos; member in struct:__tsan::ThreadState
tsan_interceptors.cc 366 if (thr->shadow_stack_pos == 0) // called from libc guts during bootstrap
374 buf->shadow_stack_pos = thr->shadow_stack_pos;
383 CHECK_GE(thr->shadow_stack_pos, buf->shadow_stack_pos);
385 while (thr->shadow_stack_pos > buf->shadow_stack_pos)
    [all...]

Completed in 169 milliseconds