blob: 990770f9e76b5a52af6f85692883a8507af00af6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_ASM_H
3#define _ASM_X86_ASM_H
H. Peter Anvine845c062008-01-30 13:30:06 +01004
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -07005#ifdef __ASSEMBLY__
6# define __ASM_FORM(x) x
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +02007# define __ASM_FORM_RAW(x) x
Jan Beulicha7500362011-07-19 13:00:45 +01008# define __ASM_FORM_COMMA(x) x,
H. Peter Anvine845c062008-01-30 13:30:06 +01009#else
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070010# define __ASM_FORM(x) " " #x " "
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020011# define __ASM_FORM_RAW(x) #x
Jan Beulicha7500362011-07-19 13:00:45 +010012# define __ASM_FORM_COMMA(x) " " #x ","
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070013#endif
H. Peter Anvine845c062008-01-30 13:30:06 +010014
Josh Poimboeuf520a13c2017-09-28 16:58:26 -050015#ifndef __x86_64__
16/* 32 bit */
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070017# define __ASM_SEL(a,b) __ASM_FORM(a)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020018# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070019#else
Josh Poimboeuf520a13c2017-09-28 16:58:26 -050020/* 64 bit */
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070021# define __ASM_SEL(a,b) __ASM_FORM(b)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020022# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070023#endif
H. Peter Anvine845c062008-01-30 13:30:06 +010024
Jan Beulich4625cd62011-07-19 12:59:51 +010025#define __ASM_SIZE(inst, ...) __ASM_SEL(inst##l##__VA_ARGS__, \
26 inst##q##__VA_ARGS__)
Jan-Simon Möller3e9b2322013-08-29 21:13:04 +020027#define __ASM_REG(reg) __ASM_SEL_RAW(e##reg, r##reg)
Harvey Harrison8ee57972008-01-30 13:31:26 +010028
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070029#define _ASM_PTR __ASM_SEL(.long, .quad)
30#define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070031
H. Peter Anvin8df96762008-08-18 18:13:33 -070032#define _ASM_MOV __ASM_SIZE(mov)
Jeremy Fitzhardingee6e07d82008-06-16 16:08:17 -070033#define _ASM_INC __ASM_SIZE(inc)
34#define _ASM_DEC __ASM_SIZE(dec)
35#define _ASM_ADD __ASM_SIZE(add)
36#define _ASM_SUB __ASM_SIZE(sub)
37#define _ASM_XADD __ASM_SIZE(xadd)
Matthias Kaehlcke121843e2017-05-01 15:47:41 -070038#define _ASM_MUL __ASM_SIZE(mul)
H. Peter Anvin8df96762008-08-18 18:13:33 -070039
Glauber Costa40faf462008-06-24 11:37:57 -030040#define _ASM_AX __ASM_REG(ax)
Glauber Costa2528de42008-06-24 17:36:31 -030041#define _ASM_BX __ASM_REG(bx)
42#define _ASM_CX __ASM_REG(cx)
Glauber Costa40faf462008-06-24 11:37:57 -030043#define _ASM_DX __ASM_REG(dx)
H. Peter Anvin8df96762008-08-18 18:13:33 -070044#define _ASM_SP __ASM_REG(sp)
45#define _ASM_BP __ASM_REG(bp)
46#define _ASM_SI __ASM_REG(si)
47#define _ASM_DI __ASM_REG(di)
H. Peter Anvine845c062008-01-30 13:30:06 +010048
H. Peter Anvin0e2e1602018-06-21 09:23:23 -070049#ifndef __x86_64__
50/* 32 bit */
51
52#define _ASM_ARG1 _ASM_AX
53#define _ASM_ARG2 _ASM_DX
54#define _ASM_ARG3 _ASM_CX
55
56#define _ASM_ARG1L eax
57#define _ASM_ARG2L edx
58#define _ASM_ARG3L ecx
59
60#define _ASM_ARG1W ax
61#define _ASM_ARG2W dx
62#define _ASM_ARG3W cx
63
64#define _ASM_ARG1B al
65#define _ASM_ARG2B dl
66#define _ASM_ARG3B cl
67
68#else
69/* 64 bit */
70
71#define _ASM_ARG1 _ASM_DI
72#define _ASM_ARG2 _ASM_SI
73#define _ASM_ARG3 _ASM_DX
74#define _ASM_ARG4 _ASM_CX
75#define _ASM_ARG5 r8
76#define _ASM_ARG6 r9
77
78#define _ASM_ARG1Q rdi
79#define _ASM_ARG2Q rsi
80#define _ASM_ARG3Q rdx
81#define _ASM_ARG4Q rcx
82#define _ASM_ARG5Q r8
83#define _ASM_ARG6Q r9
84
85#define _ASM_ARG1L edi
86#define _ASM_ARG2L esi
87#define _ASM_ARG3L edx
88#define _ASM_ARG4L ecx
89#define _ASM_ARG5L r8d
90#define _ASM_ARG6L r9d
91
92#define _ASM_ARG1W di
93#define _ASM_ARG2W si
94#define _ASM_ARG3W dx
95#define _ASM_ARG4W cx
96#define _ASM_ARG5W r8w
97#define _ASM_ARG6W r9w
98
99#define _ASM_ARG1B dil
100#define _ASM_ARG2B sil
101#define _ASM_ARG3B dl
102#define _ASM_ARG4B cl
103#define _ASM_ARG5B r8b
104#define _ASM_ARG6B r9b
105
106#endif
107
H. Peter Anvinff3554b2016-06-08 12:38:40 -0700108/*
109 * Macros to generate condition code outputs from inline assembly,
110 * The output operand must be type "bool".
111 */
112#ifdef __GCC_ASM_FLAG_OUTPUTS__
113# define CC_SET(c) "\n\t/* output condition code " #c "*/\n"
114# define CC_OUT(c) "=@cc" #c
115#else
116# define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
117# define CC_OUT(c) [_cc_ ## c] "=qm"
118#endif
119
H. Peter Anvina34746b2008-02-04 16:47:56 +0100120/* Exception table entry */
H. Peter Anvin709972b2009-08-31 11:57:20 -0700121#ifdef __ASSEMBLY__
Tony Luck548acf12016-02-17 10:20:12 -0800122# define _ASM_EXTABLE_HANDLE(from, to, handler) \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700123 .pushsection "__ex_table","a" ; \
Tony Luck548acf12016-02-17 10:20:12 -0800124 .balign 4 ; \
H. Peter Anvin70627652012-04-20 17:12:48 -0700125 .long (from) - . ; \
126 .long (to) - . ; \
Tony Luck548acf12016-02-17 10:20:12 -0800127 .long (handler) - . ; \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700128 .popsection
129
Tony Luck548acf12016-02-17 10:20:12 -0800130# define _ASM_EXTABLE(from, to) \
131 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
132
133# define _ASM_EXTABLE_FAULT(from, to) \
134 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
135
136# define _ASM_EXTABLE_EX(from, to) \
137 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900138
Kees Cook7a46ec02017-08-15 09:19:24 -0700139# define _ASM_EXTABLE_REFCOUNT(from, to) \
140 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
141
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900142# define _ASM_NOKPROBE(entry) \
143 .pushsection "_kprobe_blacklist","aw" ; \
144 _ASM_ALIGN ; \
145 _ASM_PTR (entry); \
146 .popsection
Borislav Petkov9e6b13f2015-05-13 19:42:23 +0200147
148.macro ALIGN_DESTINATION
149 /* check for bad alignment of destination */
150 movl %edi,%ecx
151 andl $7,%ecx
152 jz 102f /* already aligned */
153 subl $8,%ecx
154 negl %ecx
155 subl %ecx,%edx
156100: movb (%rsi),%al
157101: movb %al,(%rdi)
158 incq %rsi
159 incq %rdi
160 decl %ecx
161 jnz 100b
162102:
163 .section .fixup,"ax"
164103: addl %ecx,%edx /* ecx is zerorest also */
165 jmp copy_user_handle_tail
166 .previous
167
168 _ASM_EXTABLE(100b,103b)
169 _ASM_EXTABLE(101b,103b)
170 .endm
171
H. Peter Anvin709972b2009-08-31 11:57:20 -0700172#else
Tony Luck548acf12016-02-17 10:20:12 -0800173# define _EXPAND_EXTABLE_HANDLE(x) #x
174# define _ASM_EXTABLE_HANDLE(from, to, handler) \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700175 " .pushsection \"__ex_table\",\"a\"\n" \
Tony Luck548acf12016-02-17 10:20:12 -0800176 " .balign 4\n" \
H. Peter Anvin70627652012-04-20 17:12:48 -0700177 " .long (" #from ") - .\n" \
178 " .long (" #to ") - .\n" \
Tony Luck548acf12016-02-17 10:20:12 -0800179 " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \
H. Peter Anvin535c0c32012-04-20 16:57:35 -0700180 " .popsection\n"
181
Tony Luck548acf12016-02-17 10:20:12 -0800182# define _ASM_EXTABLE(from, to) \
183 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
184
185# define _ASM_EXTABLE_FAULT(from, to) \
186 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
187
188# define _ASM_EXTABLE_EX(from, to) \
189 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
190
Kees Cook7a46ec02017-08-15 09:19:24 -0700191# define _ASM_EXTABLE_REFCOUNT(from, to) \
192 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
193
Masami Hiramatsu376e2422014-04-17 17:17:05 +0900194/* For C file, we already have NOKPROBE_SYMBOL macro */
H. Peter Anvin709972b2009-08-31 11:57:20 -0700195#endif
H. Peter Anvina34746b2008-02-04 16:47:56 +0100196
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500197#ifndef __ASSEMBLY__
198/*
199 * This output constraint should be used for any inline asm which has a "call"
200 * instruction. Otherwise the asm may be inserted before the frame pointer
201 * gets set up by the containing function. If you forget to do this, objtool
202 * may print a "call without frame pointer save/setup" warning.
203 */
Andrey Ryabinin196bd482017-09-29 17:15:36 +0300204register unsigned long current_stack_pointer asm(_ASM_SP);
205#define ASM_CALL_CONSTRAINT "+r" (current_stack_pointer)
Josh Poimboeuff5caf622017-09-20 16:24:33 -0500206#endif
207
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700208#endif /* _ASM_X86_ASM_H */