1 /* SPDX-License-Identifier: GPL-2.0 */
6 # define __ASM_FORM(x) x
7 # define __ASM_FORM_RAW(x) x
8 # define __ASM_FORM_COMMA(x) x,
10 # define __ASM_FORM(x) " " #x " "
11 # define __ASM_FORM_RAW(x) #x
12 # define __ASM_FORM_COMMA(x) " " #x ","
17 # define __ASM_SEL(a,b) __ASM_FORM(a)
18 # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
21 # define __ASM_SEL(a,b) __ASM_FORM(b)
22 # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
25 #define __ASM_SIZE(inst, ...) __ASM_SEL(inst##l##__VA_ARGS__, \
27 #define __ASM_REG(reg) __ASM_SEL_RAW(e##reg, r##reg)
29 #define _ASM_PTR __ASM_SEL(.long, .quad)
30 #define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8)
32 #define _ASM_MOV __ASM_SIZE(mov)
33 #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)
38 #define _ASM_MUL __ASM_SIZE(mul)
40 #define _ASM_AX __ASM_REG(ax)
41 #define _ASM_BX __ASM_REG(bx)
42 #define _ASM_CX __ASM_REG(cx)
43 #define _ASM_DX __ASM_REG(dx)
44 #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)
52 #define _ASM_ARG1 _ASM_AX
53 #define _ASM_ARG2 _ASM_DX
54 #define _ASM_ARG3 _ASM_CX
56 #define _ASM_ARG1L eax
57 #define _ASM_ARG2L edx
58 #define _ASM_ARG3L ecx
71 #define _ASM_ARG1 _ASM_DI
72 #define _ASM_ARG2 _ASM_SI
73 #define _ASM_ARG3 _ASM_DX
74 #define _ASM_ARG4 _ASM_CX
78 #define _ASM_ARG1Q rdi
79 #define _ASM_ARG2Q rsi
80 #define _ASM_ARG3Q rdx
81 #define _ASM_ARG4Q rcx
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
96 #define _ASM_ARG5W r8w
97 #define _ASM_ARG6W r9w
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
109 * Macros to generate condition code outputs from inline assembly,
110 * The output operand must be type "bool".
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
116 # define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
117 # define CC_OUT(c) [_cc_ ## c] "=qm"
120 /* Exception table entry */
122 # define _ASM_EXTABLE_HANDLE(from, to, handler) \
123 .pushsection "__ex_table","a" ; \
127 .long (handler) - . ; \
130 # define _ASM_EXTABLE(from, to) \
131 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
133 # define _ASM_EXTABLE_FAULT(from, to) \
134 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
136 # define _ASM_EXTABLE_EX(from, to) \
137 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
139 # define _ASM_EXTABLE_REFCOUNT(from, to) \
140 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
142 # define _ASM_NOKPROBE(entry) \
143 .pushsection "_kprobe_blacklist","aw" ; \
148 .macro ALIGN_DESTINATION
149 /* check for bad alignment of destination */
152 jz
102f
/* already aligned */
164 103: addl
%ecx
,%edx
/* ecx is zerorest also */
165 jmp copy_user_handle_tail
168 _ASM_EXTABLE(100b
,103b
)
169 _ASM_EXTABLE(101b
,103b
)
173 # define _EXPAND_EXTABLE_HANDLE(x) #x
174 # define _ASM_EXTABLE_HANDLE(from, to, handler) \
175 " .pushsection \"__ex_table\",\"a\"\n" \
177 " .long (" #from ") - .\n" \
178 " .long (" #to ") - .\n" \
179 " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \
182 # define _ASM_EXTABLE(from, to) \
183 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
185 # define _ASM_EXTABLE_FAULT(from, to) \
186 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
188 # define _ASM_EXTABLE_EX(from, to) \
189 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
191 # define _ASM_EXTABLE_REFCOUNT(from, to) \
192 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
194 /* For C file, we already have NOKPROBE_SYMBOL macro */
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.
204 register unsigned long current_stack_pointer
asm(_ASM_SP
);
205 #define ASM_CALL_CONSTRAINT "+r" (current_stack_pointer)
208 #endif /* _ASM_X86_ASM_H */