Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_LINKAGE_H |
| 2 | #define _LINUX_LINKAGE_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <asm/linkage.h> |
| 5 | |
| 6 | #ifdef __cplusplus |
| 7 | #define CPP_ASMLINKAGE extern "C" |
| 8 | #else |
| 9 | #define CPP_ASMLINKAGE |
| 10 | #endif |
| 11 | |
| 12 | #ifndef asmlinkage |
| 13 | #define asmlinkage CPP_ASMLINKAGE |
| 14 | #endif |
| 15 | |
Ingo Molnar | d50efc6 | 2008-01-30 13:33:00 +0100 | [diff] [blame] | 16 | #ifndef asmregparm |
| 17 | # define asmregparm |
| 18 | #endif |
| 19 | |
Linus Torvalds | d10d89e | 2008-04-10 17:35:23 -0700 | [diff] [blame] | 20 | /* |
| 21 | * This is used by architectures to keep arguments on the stack |
| 22 | * untouched by the compiler by keeping them live until the end. |
| 23 | * The argument stack may be owned by the assembly-language |
| 24 | * caller, not the callee, and gcc doesn't always understand |
| 25 | * that. |
| 26 | * |
| 27 | * We have the return value, and a maximum of six arguments. |
| 28 | * |
| 29 | * This should always be followed by a "return ret" for the |
| 30 | * protection to work (ie no more work that the compiler might |
| 31 | * end up needing stack temporaries for). |
| 32 | */ |
Heiko Carstens | b0fac02 | 2008-04-11 13:46:54 +0200 | [diff] [blame] | 33 | /* Assembly files may be compiled with -traditional .. */ |
| 34 | #ifndef __ASSEMBLY__ |
Roland McGrath | 54a0151 | 2008-04-10 15:37:38 -0700 | [diff] [blame] | 35 | #ifndef asmlinkage_protect |
| 36 | # define asmlinkage_protect(n, ret, args...) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #endif |
Heiko Carstens | b0fac02 | 2008-04-11 13:46:54 +0200 | [diff] [blame] | 38 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #ifndef __ALIGN |
| 41 | #define __ALIGN .align 4,0x90 |
| 42 | #define __ALIGN_STR ".align 4,0x90" |
| 43 | #endif |
| 44 | |
| 45 | #ifdef __ASSEMBLY__ |
| 46 | |
| 47 | #define ALIGN __ALIGN |
| 48 | #define ALIGN_STR __ALIGN_STR |
| 49 | |
Jan Beulich | ab7efcc | 2006-03-24 03:16:17 -0800 | [diff] [blame] | 50 | #ifndef ENTRY |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define ENTRY(name) \ |
| 52 | .globl name; \ |
| 53 | ALIGN; \ |
| 54 | name: |
Jan Beulich | ab7efcc | 2006-03-24 03:16:17 -0800 | [diff] [blame] | 55 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Rusty Russell | 214541d | 2007-10-21 16:41:34 -0700 | [diff] [blame] | 57 | #ifndef WEAK |
| 58 | #define WEAK(name) \ |
| 59 | .weak name; \ |
| 60 | name: |
| 61 | #endif |
| 62 | |
Prasanna S Panchamukhi | d0aaff9 | 2005-09-06 15:19:26 -0700 | [diff] [blame] | 63 | #define KPROBE_ENTRY(name) \ |
Prasanna S.P | d28c439 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 64 | .pushsection .kprobes.text, "ax"; \ |
Jan Beulich | ab7efcc | 2006-03-24 03:16:17 -0800 | [diff] [blame] | 65 | ENTRY(name) |
Prasanna S Panchamukhi | d0aaff9 | 2005-09-06 15:19:26 -0700 | [diff] [blame] | 66 | |
Prasanna S.P | d28c439 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 67 | #define KPROBE_END(name) \ |
| 68 | END(name); \ |
| 69 | .popsection |
| 70 | |
Jan Beulich | ab7efcc | 2006-03-24 03:16:17 -0800 | [diff] [blame] | 71 | #ifndef END |
| 72 | #define END(name) \ |
| 73 | .size name, .-name |
| 74 | #endif |
| 75 | |
John Reiser | 6b8be6d | 2008-01-30 13:33:13 +0100 | [diff] [blame] | 76 | /* If symbol 'name' is treated as a subroutine (gets called, and returns) |
| 77 | * then please use ENDPROC to mark 'name' as STT_FUNC for the benefit of |
| 78 | * static analysis tools such as stack depth analyzer. |
| 79 | */ |
Jan Beulich | ab7efcc | 2006-03-24 03:16:17 -0800 | [diff] [blame] | 80 | #ifndef ENDPROC |
| 81 | #define ENDPROC(name) \ |
| 82 | .type name, @function; \ |
| 83 | END(name) |
| 84 | #endif |
Prasanna S Panchamukhi | d0aaff9 | 2005-09-06 15:19:26 -0700 | [diff] [blame] | 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #endif |
| 87 | |
| 88 | #define NORET_TYPE /**/ |
| 89 | #define ATTRIB_NORET __attribute__((noreturn)) |
| 90 | #define NORET_AND noreturn, |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #endif |