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

  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 61 uptr shadow_stack[kShadowStackSize]; member in struct:__tsan::Trace
tsan_rtl_thread.cc 98 thr->shadow_stack = &ThreadTrace(thr->tid)->shadow_stack[0];
99 thr->shadow_stack_pos = thr->shadow_stack;
100 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize;
104 thr->shadow_stack = (uptr*)internal_alloc(MBlockShadowStack,
106 thr->shadow_stack_pos = thr->shadow_stack;
107 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize;
tsan_rtl.cc 465 const int sz = thr->shadow_stack_end - thr->shadow_stack;
469 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
470 internal_free(thr->shadow_stack);
471 thr->shadow_stack = newstack;
491 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
929 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
949 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack);
tsan_rtl.h 355 uptr *shadow_stack; member in struct:__tsan::ThreadState
559 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
565 stack->Init(&thr->shadow_stack[start], size, toppc);
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_stack_test.cc 24 thr.shadow_stack = &stack[0];
54 thr.shadow_stack = &stack[0];

Completed in 63 milliseconds