Merge git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
[linux-2.6/x86.git] / include / linux / linkage.h
blob3faf599ea58ec4cac70121f874efa9ec4d6ca5f4
1 #ifndef _LINUX_LINKAGE_H
2 #define _LINUX_LINKAGE_H
4 #include <asm/linkage.h>
6 #ifdef __cplusplus
7 #define CPP_ASMLINKAGE extern "C"
8 #else
9 #define CPP_ASMLINKAGE
10 #endif
12 #ifndef asmlinkage
13 #define asmlinkage CPP_ASMLINKAGE
14 #endif
16 #ifndef asmregparm
17 # define asmregparm
18 #endif
20 #ifndef prevent_tail_call
21 # define prevent_tail_call(ret) do { } while (0)
22 #endif
24 #ifndef __ALIGN
25 #define __ALIGN .align 4,0x90
26 #define __ALIGN_STR ".align 4,0x90"
27 #endif
29 #ifdef __ASSEMBLY__
31 #define ALIGN __ALIGN
32 #define ALIGN_STR __ALIGN_STR
34 #ifndef ENTRY
35 #define ENTRY(name) \
36 .globl name; \
37 ALIGN; \
38 name:
39 #endif
41 #ifndef WEAK
42 #define WEAK(name) \
43 .weak name; \
44 name:
45 #endif
47 #define KPROBE_ENTRY(name) \
48 .pushsection .kprobes.text, "ax"; \
49 ENTRY(name)
51 #define KPROBE_END(name) \
52 END(name); \
53 .popsection
55 #ifndef END
56 #define END(name) \
57 .size name, .-name
58 #endif
60 /* If symbol 'name' is treated as a subroutine (gets called, and returns)
61 * then please use ENDPROC to mark 'name' as STT_FUNC for the benefit of
62 * static analysis tools such as stack depth analyzer.
64 #ifndef ENDPROC
65 #define ENDPROC(name) \
66 .type name, @function; \
67 END(name)
68 #endif
70 #endif
72 #define NORET_TYPE /**/
73 #define ATTRIB_NORET __attribute__((noreturn))
74 #define NORET_AND noreturn,
76 #ifndef FASTCALL
77 #define FASTCALL(x) x
78 #define fastcall
79 #endif
81 #endif