Lines Matching refs:stack
3 * Common arm64 stack unwinder code.
32 * @stack: The stack currently being unwound.
44 struct stack_info stack;
77 state->stack = stackinfo_get_unknown();
95 * unwind_consume_stack() - Check if an object is on an accessible stack,
96 * updating stack boundaries so that future unwind steps cannot consume this
111 if (stackinfo_on_stack(&state->stack, sp, size))
120 * transitioned from one stack to another, it's never valid to
121 * unwind back to the old stack.
123 * Remove the current stack from the list of stacks so that it cannot
132 * ... so we do not check the specific order of stack
135 state->stack = *next;
140 * Future unwind steps can only consume stack above this frame record.
141 * Update the current stack to start immediately above it.
143 state->stack.low = sp + size;