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

  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 68 uptr shadow_stack[kShadowStackSize]; member in struct:__tsan::Trace
tsan_stack_trace.cc 63 n_ = thr->shadow_stack_pos - thr->shadow_stack;
83 s_[i] = thr->shadow_stack[start + i];
tsan_rtl_thread.cc 91 thr->shadow_stack = &ThreadTrace(thr->tid)->shadow_stack[0];
92 thr->shadow_stack_pos = thr->shadow_stack;
93 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize;
97 thr->shadow_stack = (uptr*)internal_alloc(MBlockShadowStack,
99 thr->shadow_stack_pos = thr->shadow_stack;
100 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize;
tsan_rtl.cc 426 const int sz = thr->shadow_stack_end - thr->shadow_stack;
430 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
431 internal_free(thr->shadow_stack);
432 thr->shadow_stack = newstack;
451 u32 id = StackDepotPut(thr->shadow_stack,
452 thr->shadow_stack_pos - thr->shadow_stack);
904 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack);
924 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack);
tsan_rtl.h 345 uptr *shadow_stack; member in struct:__tsan::ThreadState
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_stack_test.cc 23 thr.shadow_stack = &stack[0];
67 thr.shadow_stack = &stack[0];

Completed in 5468 milliseconds