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 473 const int sz = thr->shadow_stack_end - thr->shadow_stack;
477 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
478 internal_free(thr->shadow_stack);
479 thr->shadow_stack = newstack;
499 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack));
937 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
957 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack);
tsan_rtl.h 385 uptr *shadow_stack; member in struct:__tsan::ThreadState
592 uptr size = thr->shadow_stack_pos - thr->shadow_stack;
598 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 55 milliseconds