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

  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 89 , shadow_stack_pos(&shadow_stack[0])
306 u32 id = StackDepotPut(thr->shadow_stack,
307 thr->shadow_stack_pos - thr->shadow_stack);
641 DCHECK_GE(thr->shadow_stack_pos, &thr->shadow_stack[0]);
643 DCHECK_LT(thr->shadow_stack_pos, &thr->shadow_stack[kShadowStackSize]);
646 const int sz = thr->shadow_stack_end - thr->shadow_stack;
650 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
651 internal_free(thr->shadow_stack);
652 thr->shadow_stack = newstack;
669 DCHECK_GT(thr->shadow_stack_pos, &thr->shadow_stack[0])
    [all...]
tsan_sync.cc 257 n_ = thr->shadow_stack_pos - thr->shadow_stack;
272 s_[i] = thr->shadow_stack[start + i];
tsan_rtl_thread.cc 101 args->thr->shadow_stack = (uptr*)internal_alloc(MBlockShadowStack,
103 args->thr->shadow_stack_pos = thr->shadow_stack;
104 args->thr->shadow_stack_end = thr->shadow_stack + kInitStackSize;
tsan_rtl.h 419 uptr shadow_stack[kShadowStackSize]; member in struct:__tsan::ThreadState
422 uptr *shadow_stack; member in struct:__tsan::ThreadState

Completed in 132 milliseconds