Lines Matching refs:stack
38 * Stack layout of a C stack frame.
39 * Kernel uses the packed stack layout (-mpacked-stack).
58 * current_frame_address() returns function stack frame address, which matches
60 * allocates stack for local variables or new stack frame to call other
155 * stack. Proper sign and zero extension of function arguments is
158 * rc = call_on_stack(nr, stack, rettype, fn, t1, a1, t2, a2, ...)
161 * - stack specifies the stack to be used.
168 #define call_on_stack(nr, stack, rettype, fn, ...) \
172 unsigned long __stack = stack; \
208 * Therefore the called function must not use r15 to access the stack.