Searched refs:shadow_stack (Results 1 – 5 of 5) sorted by relevance
96 thr->shadow_stack = &ThreadTrace(thr->tid)->shadow_stack[0]; in OnStarted()97 thr->shadow_stack_pos = thr->shadow_stack; in OnStarted()98 thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize; in OnStarted()102 thr->shadow_stack = (uptr*)internal_alloc(MBlockShadowStack, in OnStarted()104 thr->shadow_stack_pos = thr->shadow_stack; in OnStarted()105 thr->shadow_stack_end = thr->shadow_stack + kInitStackSize; in OnStarted()
451 const int sz = thr->shadow_stack_end - thr->shadow_stack; in GrowShadowStack()455 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr)); in GrowShadowStack()456 internal_free(thr->shadow_stack); in GrowShadowStack()457 thr->shadow_stack = newstack; in GrowShadowStack()477 StackTrace(thr->shadow_stack, thr->shadow_stack_pos - thr->shadow_stack)); in CurrentStackId()915 DCHECK_GE(thr->shadow_stack_pos, thr->shadow_stack); in FuncEntry()935 DCHECK_GT(thr->shadow_stack_pos, thr->shadow_stack); in FuncExit()
61 uptr shadow_stack[kShadowStackSize]; member
354 uptr *shadow_stack; member550 uptr size = thr->shadow_stack_pos - thr->shadow_stack; in ObtainCurrentStack()556 stack->Init(&thr->shadow_stack[start], size, toppc); in ObtainCurrentStack()
24 thr.shadow_stack = &stack[0]; in TestStackTrace()54 thr.shadow_stack = &stack[0]; in TestTrim()