blob: c1eadbaf1115a4ad79cf55803e6c3bc72c15c4a4 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_ASM_H
2#define _ASM_X86_ASM_H
H. Peter Anvine845c062008-01-30 13:30:06 +01003
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -07004#ifdef __ASSEMBLY__
5# define __ASM_FORM(x) x
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +02006# define __ASM_FORM_RAW(x) x
Jan Beulicha7500362011-07-19 13:00:45 +01007# define __ASM_FORM_COMMA(x) x,
H. Peter Anvine845c062008-01-30 13:30:06 +01008#else
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -07009# define __ASM_FORM(x) " " #x " "
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020010# define __ASM_FORM_RAW(x) #x
Jan Beulicha7500362011-07-19 13:00:45 +010011# define __ASM_FORM_COMMA(x) " " #x ","
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070012#endif
H. Peter Anvine845c062008-01-30 13:30:06 +010013
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070014#ifdef CONFIG_X86_32
15# define __ASM_SEL(a,b) __ASM_FORM(a)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020016# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070017#else
18# define __ASM_SEL(a,b) __ASM_FORM(b)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020019# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070020#endif
H. Peter Anvine845c062008-01-30 13:30:06 +010021
Jan Beulich4625cd62011-07-19 12:59:51 +010022#define __ASM_SIZE(inst, ...) __ASM_SEL(inst##l##__VA_ARGS__, \
23 inst##q##__VA_ARGS__)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020024#define __ASM_REG(reg) __ASM_SEL_RAW(e##reg, r##reg)
Harvey Harrison8ee57972008-01-30 13:31:26 +010025
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070026#define _ASM_PTR __ASM_SEL(.long, .quad)
27#define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070028
H. Peter Anvin8df96762008-08-18 18:13:33 -070029#define _ASM_MOV __ASM_SIZE(mov)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070030#define _ASM_INC __ASM_SIZE(inc)
31#define _ASM_DEC __ASM_SIZE(dec)
32#define _ASM_ADD __ASM_SIZE(add)
33#define _ASM_SUB __ASM_SIZE(sub)
34#define _ASM_XADD __ASM_SIZE(xadd)
Matthias Kaehlcke121843e2017-05-01 15:47:41 -070035#define _ASM_MUL __ASM_SIZE(mul)
H. Peter Anvin8df96762008-08-18 18:13:33 -070036
Glauber Costa40faf462008-06-24 11:37:57 -030037#define _ASM_AX __ASM_REG(ax)
Glauber Costa2528de42008-06-24 17:36:31 -030038#define _ASM_BX __ASM_REG(bx)
39#define _ASM_CX __ASM_REG(cx)
Glauber Costa40faf462008-06-24 11:37:57 -030040#define _ASM_DX __ASM_REG(dx)
H. Peter Anvin8df96762008-08-18 18:13:33 -070041#define _ASM_SP __ASM_REG(sp)
42#define _ASM_BP __ASM_REG(bp)
43#define _ASM_SI __ASM_REG(si)
44#define _ASM_DI __ASM_REG(di)
H. Peter Anvine845c062008-01-30 13:30:06 +010045
H. Peter Anvinff3554b2016-06-08 12:38:40 -070046/*
47 * Macros to generate condition code outputs from inline assembly,
48 * The output operand must be type "bool".
49 */
50#ifdef __GCC_ASM_FLAG_OUTPUTS__
51# define CC_SET(c) "\n\t/* output condition code " #c "*/\n"
52# define CC_OUT(c) "=@cc" #c
53#else
54# define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
55# define CC_OUT(c) [_cc_ ## c] "=qm"
56#endif
57
H. Peter Anvina34746b2008-02-04 16:47:56 +010058/* Exception table entry */
H. Peter Anvin709972b2009-08-31 11:57:20 -070059#ifdef __ASSEMBLY__
Tony Luck548acf12016-02-17 10:20:12 -080060# define _ASM_EXTABLE_HANDLE(from, to, handler) \
H. Peter Anvin535c0c32012-04-20 16:57:35 -070061 .pushsection "__ex_table","a" ; \
Tony Luck548acf12016-02-17 10:20:12 -080062 .balign 4 ; \
H. Peter Anvin70627652012-04-20 17:12:48 -070063 .long (from) - . ; \
64 .long (to) - . ; \
Tony Luck548acf12016-02-17 10:20:12 -080065 .long (handler) - . ; \
H. Peter Anvin535c0c32012-04-20 16:57:35 -070066 .popsection
67
Tony Luck548acf12016-02-17 10:20:12 -080068# define _ASM_EXTABLE(from, to) \
69 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
70
71# define _ASM_EXTABLE_FAULT(from, to) \
72 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
73
74# define _ASM_EXTABLE_EX(from, to) \
75 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
Masami Hiramatsu376e2422014-04-17 17:17:05 +090076
Kees Cook7a46ec02017-08-15 09:19:24 -070077# define _ASM_EXTABLE_REFCOUNT(from, to) \
78 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
79
Masami Hiramatsu376e2422014-04-17 17:17:05 +090080# define _ASM_NOKPROBE(entry) \
81 .pushsection "_kprobe_blacklist","aw" ; \
82 _ASM_ALIGN ; \
83 _ASM_PTR (entry); \
84 .popsection
Borislav Petkov9e6b13f2015-05-13 19:42:23 +020085
86.macro ALIGN_DESTINATION
87 /* check for bad alignment of destination */
88 movl %edi,%ecx
89 andl $7,%ecx
90 jz 102f /* already aligned */
91 subl $8,%ecx
92 negl %ecx
93 subl %ecx,%edx
94100: movb (%rsi),%al
95101: movb %al,(%rdi)
96 incq %rsi
97 incq %rdi
98 decl %ecx
99 jnz 100b
100102:
101 .section .fixup,"ax"
102103: addl %ecx,%edx /* ecx is zerorest also */
103 jmp copy_user_handle_tail
104 .previous
105
106 _ASM_EXTABLE(100b,103b)
107 _ASM_EXTABLE(101b,103b)
108 .endm
109
H. Peter Anvin709972b2009-08-31 11:57:20 -0700110#else
Tony Luck548acf12016-02-17 10:20:12 -0800111# define _EXPAND_EXTABLE_HANDLE(x) #x
112# define _ASM_EXTABLE_HANDLE(from, to, handler) \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700113 " .pushsection \"__ex_table\",\"a\"\n" \
Tony Luck548acf12016-02-17 10:20:12 -0800114 " .balign 4\n" \
H. Peter Anvin70627652012-04-20 17:12:48 -0700115 " .long (" #from ") - .\n" \
116 " .long (" #to ") - .\n" \
Tony Luck548acf12016-02-17 10:20:12 -0800117 " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700118 " .popsection\n"
119
Tony Luck548acf12016-02-17 10:20:12 -0800120# define _ASM_EXTABLE(from, to) \
121 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
122
123# define _ASM_EXTABLE_FAULT(from, to) \
124 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
125
126# define _ASM_EXTABLE_EX(from, to) \
127 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
128
Kees Cook7a46ec02017-08-15 09:19:24 -0700129# define _ASM_EXTABLE_REFCOUNT(from, to) \
130 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
131
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900132/* For C file, we already have NOKPROBE_SYMBOL macro */
H. Peter Anvin709972b2009-08-31 11:57:20 -0700133#endif
H. Peter Anvina34746b2008-02-04 16:47:56 +0100134
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500135#ifndef __ASSEMBLY__
136/*
137 * This output constraint should be used for any inline asm which has a "call"
138 * instruction. Otherwise the asm may be inserted before the frame pointer
139 * gets set up by the containing function. If you forget to do this, objtool
140 * may print a "call without frame pointer save/setup" warning.
141 */
142register unsigned int __asm_call_sp asm("esp");
143#define ASM_CALL_CONSTRAINT "+r" (__asm_call_sp)
144#endif
145
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700146#endif /* _ASM_X86_ASM_H */