2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LINUX_LINKAGE_H
|
|
|
|
#define _LINUX_LINKAGE_H
|
|
|
|
|
2008-05-28 14:02:14 +00:00
|
|
|
#include <linux/compiler.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/linkage.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define CPP_ASMLINKAGE extern "C"
|
|
|
|
#else
|
|
|
|
#define CPP_ASMLINKAGE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef asmlinkage
|
|
|
|
#define asmlinkage CPP_ASMLINKAGE
|
|
|
|
#endif
|
|
|
|
|
2008-01-30 12:33:00 +00:00
|
|
|
#ifndef asmregparm
|
|
|
|
# define asmregparm
|
|
|
|
#endif
|
|
|
|
|
2010-02-20 00:03:37 +00:00
|
|
|
#define __page_aligned_data __section(.data..page_aligned) __aligned(PAGE_SIZE)
|
2010-02-20 00:03:38 +00:00
|
|
|
#define __page_aligned_bss __section(.bss..page_aligned) __aligned(PAGE_SIZE)
|
2008-05-28 14:02:14 +00:00
|
|
|
|
2009-06-23 23:59:35 +00:00
|
|
|
/*
|
|
|
|
* For assembly routines.
|
|
|
|
*
|
|
|
|
* Note when using these that you must specify the appropriate
|
|
|
|
* alignment directives yourself
|
|
|
|
*/
|
2010-02-20 00:03:37 +00:00
|
|
|
#define __PAGE_ALIGNED_DATA .section ".data..page_aligned", "aw"
|
2010-02-20 00:03:38 +00:00
|
|
|
#define __PAGE_ALIGNED_BSS .section ".bss..page_aligned", "aw"
|
2009-06-23 23:59:35 +00:00
|
|
|
|
2008-04-11 00:35:23 +00:00
|
|
|
/*
|
|
|
|
* This is used by architectures to keep arguments on the stack
|
|
|
|
* untouched by the compiler by keeping them live until the end.
|
|
|
|
* The argument stack may be owned by the assembly-language
|
|
|
|
* caller, not the callee, and gcc doesn't always understand
|
|
|
|
* that.
|
|
|
|
*
|
|
|
|
* We have the return value, and a maximum of six arguments.
|
|
|
|
*
|
|
|
|
* This should always be followed by a "return ret" for the
|
|
|
|
* protection to work (ie no more work that the compiler might
|
|
|
|
* end up needing stack temporaries for).
|
|
|
|
*/
|
2008-04-11 11:46:54 +00:00
|
|
|
/* Assembly files may be compiled with -traditional .. */
|
|
|
|
#ifndef __ASSEMBLY__
|
2008-04-10 22:37:38 +00:00
|
|
|
#ifndef asmlinkage_protect
|
|
|
|
# define asmlinkage_protect(n, ret, args...) do { } while (0)
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2008-04-11 11:46:54 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifndef __ALIGN
|
|
|
|
#define __ALIGN .align 4,0x90
|
|
|
|
#define __ALIGN_STR ".align 4,0x90"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
|
2009-09-20 22:14:12 +00:00
|
|
|
#ifndef LINKER_SCRIPT
|
2005-04-16 22:20:36 +00:00
|
|
|
#define ALIGN __ALIGN
|
|
|
|
#define ALIGN_STR __ALIGN_STR
|
|
|
|
|
2006-03-24 11:16:17 +00:00
|
|
|
#ifndef ENTRY
|
2005-04-16 22:20:36 +00:00
|
|
|
#define ENTRY(name) \
|
|
|
|
.globl name; \
|
|
|
|
ALIGN; \
|
|
|
|
name:
|
2006-03-24 11:16:17 +00:00
|
|
|
#endif
|
2009-09-20 22:14:12 +00:00
|
|
|
#endif /* LINKER_SCRIPT */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-21 23:41:34 +00:00
|
|
|
#ifndef WEAK
|
|
|
|
#define WEAK(name) \
|
|
|
|
.weak name; \
|
|
|
|
name:
|
|
|
|
#endif
|
|
|
|
|
2006-03-24 11:16:17 +00:00
|
|
|
#ifndef END
|
|
|
|
#define END(name) \
|
|
|
|
.size name, .-name
|
|
|
|
#endif
|
|
|
|
|
2008-01-30 12:33:13 +00:00
|
|
|
/* If symbol 'name' is treated as a subroutine (gets called, and returns)
|
|
|
|
* then please use ENDPROC to mark 'name' as STT_FUNC for the benefit of
|
|
|
|
* static analysis tools such as stack depth analyzer.
|
|
|
|
*/
|
2006-03-24 11:16:17 +00:00
|
|
|
#ifndef ENDPROC
|
|
|
|
#define ENDPROC(name) \
|
|
|
|
.type name, @function; \
|
|
|
|
END(name)
|
|
|
|
#endif
|
2005-09-06 22:19:26 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define NORET_TYPE /**/
|
|
|
|
#define ATTRIB_NORET __attribute__((noreturn))
|
|
|
|
#define NORET_AND noreturn,
|
|
|
|
|
|
|
|
#endif
|