1 #ifndef _LINUX_LINKAGE_H
2 #define _LINUX_LINKAGE_H
4 #include <linux/compiler.h>
5 #include <asm/linkage.h>
8 #define CPP_ASMLINKAGE extern "C"
10 #define CPP_ASMLINKAGE
14 #define asmlinkage CPP_ASMLINKAGE
21 #define __page_aligned_data __section(.data.page_aligned) __aligned(PAGE_SIZE)
22 #define __page_aligned_bss __section(.bss.page_aligned) __aligned(PAGE_SIZE)
25 * This is used by architectures to keep arguments on the stack
26 * untouched by the compiler by keeping them live until the end.
27 * The argument stack may be owned by the assembly-language
28 * caller, not the callee, and gcc doesn't always understand
31 * We have the return value, and a maximum of six arguments.
33 * This should always be followed by a "return ret" for the
34 * protection to work (ie no more work that the compiler might
35 * end up needing stack temporaries for).
37 /* Assembly files may be compiled with -traditional .. */
39 #ifndef asmlinkage_protect
40 # define asmlinkage_protect(n, ret, args...) do { } while (0)
45 #define __ALIGN .align 4,0x90
46 #define __ALIGN_STR ".align 4,0x90"
52 #define ALIGN_STR __ALIGN_STR
72 /* If symbol 'name' is treated as a subroutine (gets called, and returns)
73 * then please use ENDPROC to mark 'name' as STT_FUNC for the benefit of
74 * static analysis tools such as stack depth analyzer.
77 #define ENDPROC(name) \
78 .type name, @function; \
84 #define NORET_TYPE /**/
85 #define ATTRIB_NORET __attribute__((noreturn))
86 #define NORET_AND noreturn,