Home | History | Annotate | Download | only in rtl

Lines Matching refs:shadow_stack

87   , shadow_stack_pos(&shadow_stack[0])
277 u32 id = StackDepotPut(thr->shadow_stack,
278 thr->shadow_stack_pos - thr->shadow_stack);
570 DCHECK_GE(thr->shadow_stack_pos, &thr->shadow_stack[0]);
572 DCHECK_LT(thr->shadow_stack_pos, &thr->shadow_stack[kShadowStackSize]);
575 const int sz = thr->shadow_stack_end - thr->shadow_stack;
579 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
580 internal_free(thr->shadow_stack);
581 thr->shadow_stack = newstack;
598 DCHECK_GT(thr->shadow_stack_pos, &thr->shadow_stack[0]);
600 DCHECK_LT(thr->shadow_stack_pos, &thr->shadow_stack[kShadowStackSize]);