Lines Matching refs:stack
47 * Stack layout of a C stack frame.
67 * current_frame_address() returns function stack frame address, which matches
69 * allocates stack for local variables or new stack frame to call other
111 #define CALL_ON_STACK(fn, stack, nr, args...) \
124 : [_stack] "R" (stack), \
191 * stack. Proper sign and zero extension of function arguments is
194 * rc = call_on_stack(nr, stack, rettype, fn, t1, a1, t2, a2, ...)
197 * - stack specifies the stack to be used.
204 #define call_on_stack(nr, stack, rettype, fn, ...) \
208 unsigned long __stack = stack; \
228 #define CALL_ON_STACK_NORETURN(fn, stack) \
235 [_stack] "a" (stack), [_fn] "X" (fn)); \