License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / x86 / include / asm / asm.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1965aae3
PA
2#ifndef _ASM_X86_ASM_H
3#define _ASM_X86_ASM_H
e845c06b 4
e6e07d8a
JF
5#ifdef __ASSEMBLY__
6# define __ASM_FORM(x) x
3e9b2327 7# define __ASM_FORM_RAW(x) x
a750036f 8# define __ASM_FORM_COMMA(x) x,
e6e07d8a
JF
9#else
10# define __ASM_FORM(x) " " #x " "
3e9b2327 11# define __ASM_FORM_RAW(x) #x
a750036f 12# define __ASM_FORM_COMMA(x) " " #x ","
e6e07d8a 13#endif
8ee5797a 14
520a13c5
JP
15#ifndef __x86_64__
16/* 32 bit */
e6e07d8a 17# define __ASM_SEL(a,b) __ASM_FORM(a)
3e9b2327 18# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
e845c06b 19#else
520a13c5 20/* 64 bit */
e6e07d8a 21# define __ASM_SEL(a,b) __ASM_FORM(b)
3e9b2327 22# define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
e6e07d8a 23#endif
e845c06b 24
4625cd63
JB
25#define __ASM_SIZE(inst, ...) __ASM_SEL(inst##l##__VA_ARGS__, \
26 inst##q##__VA_ARGS__)
3e9b2327 27#define __ASM_REG(reg) __ASM_SEL_RAW(e##reg, r##reg)
e845c06b 28
e6e07d8a
JF
29#define _ASM_PTR __ASM_SEL(.long, .quad)
30#define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8)
8ee5797a 31
8df9676d 32#define _ASM_MOV __ASM_SIZE(mov)
e6e07d8a
JF
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)
121843eb 38#define _ASM_MUL __ASM_SIZE(mul)
8df9676d 39
40faf463 40#define _ASM_AX __ASM_REG(ax)
2528de43
GC
41#define _ASM_BX __ASM_REG(bx)
42#define _ASM_CX __ASM_REG(cx)
40faf463 43#define _ASM_DX __ASM_REG(dx)
8df9676d
PA
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)
e845c06b 48
ff3554b4
PA
49/*
50 * Macros to generate condition code outputs from inline assembly,
51 * The output operand must be type "bool".
52 */
53#ifdef __GCC_ASM_FLAG_OUTPUTS__
54# define CC_SET(c) "\n\t/* output condition code " #c "*/\n"
55# define CC_OUT(c) "=@cc" #c
56#else
57# define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
58# define CC_OUT(c) [_cc_ ## c] "=qm"
59#endif
60
a34746bc 61/* Exception table entry */
709972b1 62#ifdef __ASSEMBLY__
548acf19 63# define _ASM_EXTABLE_HANDLE(from, to, handler) \
535c0c34 64 .pushsection "__ex_table","a" ; \
548acf19 65 .balign 4 ; \
70627654
PA
66 .long (from) - . ; \
67 .long (to) - . ; \
548acf19 68 .long (handler) - . ; \
535c0c34
PA
69 .popsection
70
548acf19
TL
71# define _ASM_EXTABLE(from, to) \
72 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
73
74# define _ASM_EXTABLE_FAULT(from, to) \
75 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
76
77# define _ASM_EXTABLE_EX(from, to) \
78 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
376e2424 79
7a46ec0e
KC
80# define _ASM_EXTABLE_REFCOUNT(from, to) \
81 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
82
376e2424
MH
83# define _ASM_NOKPROBE(entry) \
84 .pushsection "_kprobe_blacklist","aw" ; \
85 _ASM_ALIGN ; \
86 _ASM_PTR (entry); \
87 .popsection
9e6b13f7
BP
88
89.macro ALIGN_DESTINATION
90 /* check for bad alignment of destination */
91 movl %edi,%ecx
92 andl $7,%ecx
93 jz 102f /* already aligned */
94 subl $8,%ecx
95 negl %ecx
96 subl %ecx,%edx
97100: movb (%rsi),%al
98101: movb %al,(%rdi)
99 incq %rsi
100 incq %rdi
101 decl %ecx
102 jnz 100b
103102:
104 .section .fixup,"ax"
105103: addl %ecx,%edx /* ecx is zerorest also */
106 jmp copy_user_handle_tail
107 .previous
108
109 _ASM_EXTABLE(100b,103b)
110 _ASM_EXTABLE(101b,103b)
111 .endm
112
709972b1 113#else
548acf19
TL
114# define _EXPAND_EXTABLE_HANDLE(x) #x
115# define _ASM_EXTABLE_HANDLE(from, to, handler) \
535c0c34 116 " .pushsection \"__ex_table\",\"a\"\n" \
548acf19 117 " .balign 4\n" \
70627654
PA
118 " .long (" #from ") - .\n" \
119 " .long (" #to ") - .\n" \
548acf19 120 " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \
535c0c34
PA
121 " .popsection\n"
122
548acf19
TL
123# define _ASM_EXTABLE(from, to) \
124 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
125
126# define _ASM_EXTABLE_FAULT(from, to) \
127 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
128
129# define _ASM_EXTABLE_EX(from, to) \
130 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
131
7a46ec0e
KC
132# define _ASM_EXTABLE_REFCOUNT(from, to) \
133 _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
134
376e2424 135/* For C file, we already have NOKPROBE_SYMBOL macro */
709972b1 136#endif
a34746bc 137
f5caf621
JP
138#ifndef __ASSEMBLY__
139/*
140 * This output constraint should be used for any inline asm which has a "call"
141 * instruction. Otherwise the asm may be inserted before the frame pointer
142 * gets set up by the containing function. If you forget to do this, objtool
143 * may print a "call without frame pointer save/setup" warning.
144 */
196bd485
AR
145register unsigned long current_stack_pointer asm(_ASM_SP);
146#define ASM_CALL_CONSTRAINT "+r" (current_stack_pointer)
f5caf621
JP
147#endif
148
1965aae3 149#endif /* _ASM_X86_ASM_H */