GNU Linux-libre 4.9.292-gnu1
[releases.git] / arch / x86 / include / asm / asm.h
1 #ifndef _ASM_X86_ASM_H
2 #define _ASM_X86_ASM_H
3
4 #ifdef __ASSEMBLY__
5 # define __ASM_FORM(x)  x
6 # define __ASM_FORM_RAW(x)     x
7 # define __ASM_FORM_COMMA(x) x,
8 #else
9 # define __ASM_FORM(x)  " " #x " "
10 # define __ASM_FORM_RAW(x)     #x
11 # define __ASM_FORM_COMMA(x) " " #x ","
12 #endif
13
14 #ifndef __x86_64__
15 /* 32 bit */
16 # define __ASM_SEL(a,b) __ASM_FORM(a)
17 # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
18 #else
19 /* 64 bit */
20 # define __ASM_SEL(a,b) __ASM_FORM(b)
21 # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
22 #endif
23
24 #define __ASM_SIZE(inst, ...)   __ASM_SEL(inst##l##__VA_ARGS__, \
25                                           inst##q##__VA_ARGS__)
26 #define __ASM_REG(reg)         __ASM_SEL_RAW(e##reg, r##reg)
27
28 #define _ASM_PTR        __ASM_SEL(.long, .quad)
29 #define _ASM_ALIGN      __ASM_SEL(.balign 4, .balign 8)
30
31 #define _ASM_MOV        __ASM_SIZE(mov)
32 #define _ASM_INC        __ASM_SIZE(inc)
33 #define _ASM_DEC        __ASM_SIZE(dec)
34 #define _ASM_ADD        __ASM_SIZE(add)
35 #define _ASM_SUB        __ASM_SIZE(sub)
36 #define _ASM_XADD       __ASM_SIZE(xadd)
37 #define _ASM_MUL        __ASM_SIZE(mul)
38
39 #define _ASM_AX         __ASM_REG(ax)
40 #define _ASM_BX         __ASM_REG(bx)
41 #define _ASM_CX         __ASM_REG(cx)
42 #define _ASM_DX         __ASM_REG(dx)
43 #define _ASM_SP         __ASM_REG(sp)
44 #define _ASM_BP         __ASM_REG(bp)
45 #define _ASM_SI         __ASM_REG(si)
46 #define _ASM_DI         __ASM_REG(di)
47
48 #ifndef __x86_64__
49 /* 32 bit */
50
51 #define _ASM_ARG1       _ASM_AX
52 #define _ASM_ARG2       _ASM_DX
53 #define _ASM_ARG3       _ASM_CX
54
55 #define _ASM_ARG1L      eax
56 #define _ASM_ARG2L      edx
57 #define _ASM_ARG3L      ecx
58
59 #define _ASM_ARG1W      ax
60 #define _ASM_ARG2W      dx
61 #define _ASM_ARG3W      cx
62
63 #define _ASM_ARG1B      al
64 #define _ASM_ARG2B      dl
65 #define _ASM_ARG3B      cl
66
67 #else
68 /* 64 bit */
69
70 #define _ASM_ARG1       _ASM_DI
71 #define _ASM_ARG2       _ASM_SI
72 #define _ASM_ARG3       _ASM_DX
73 #define _ASM_ARG4       _ASM_CX
74 #define _ASM_ARG5       r8
75 #define _ASM_ARG6       r9
76
77 #define _ASM_ARG1Q      rdi
78 #define _ASM_ARG2Q      rsi
79 #define _ASM_ARG3Q      rdx
80 #define _ASM_ARG4Q      rcx
81 #define _ASM_ARG5Q      r8
82 #define _ASM_ARG6Q      r9
83
84 #define _ASM_ARG1L      edi
85 #define _ASM_ARG2L      esi
86 #define _ASM_ARG3L      edx
87 #define _ASM_ARG4L      ecx
88 #define _ASM_ARG5L      r8d
89 #define _ASM_ARG6L      r9d
90
91 #define _ASM_ARG1W      di
92 #define _ASM_ARG2W      si
93 #define _ASM_ARG3W      dx
94 #define _ASM_ARG4W      cx
95 #define _ASM_ARG5W      r8w
96 #define _ASM_ARG6W      r9w
97
98 #define _ASM_ARG1B      dil
99 #define _ASM_ARG2B      sil
100 #define _ASM_ARG3B      dl
101 #define _ASM_ARG4B      cl
102 #define _ASM_ARG5B      r8b
103 #define _ASM_ARG6B      r9b
104
105 #endif
106
107 /*
108  * Macros to generate condition code outputs from inline assembly,
109  * The output operand must be type "bool".
110  */
111 #ifdef __GCC_ASM_FLAG_OUTPUTS__
112 # define CC_SET(c) "\n\t/* output condition code " #c "*/\n"
113 # define CC_OUT(c) "=@cc" #c
114 #else
115 # define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
116 # define CC_OUT(c) [_cc_ ## c] "=qm"
117 #endif
118
119 /* Exception table entry */
120 #ifdef __ASSEMBLY__
121 # define _ASM_EXTABLE_HANDLE(from, to, handler)                 \
122         .pushsection "__ex_table","a" ;                         \
123         .balign 4 ;                                             \
124         .long (from) - . ;                                      \
125         .long (to) - . ;                                        \
126         .long (handler) - . ;                                   \
127         .popsection
128
129 # define _ASM_EXTABLE(from, to)                                 \
130         _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
131
132 # define _ASM_EXTABLE_FAULT(from, to)                           \
133         _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
134
135 # define _ASM_EXTABLE_EX(from, to)                              \
136         _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
137
138 # define _ASM_NOKPROBE(entry)                                   \
139         .pushsection "_kprobe_blacklist","aw" ;                 \
140         _ASM_ALIGN ;                                            \
141         _ASM_PTR (entry);                                       \
142         .popsection
143
144 .macro ALIGN_DESTINATION
145         /* check for bad alignment of destination */
146         movl %edi,%ecx
147         andl $7,%ecx
148         jz 102f                         /* already aligned */
149         subl $8,%ecx
150         negl %ecx
151         subl %ecx,%edx
152 100:    movb (%rsi),%al
153 101:    movb %al,(%rdi)
154         incq %rsi
155         incq %rdi
156         decl %ecx
157         jnz 100b
158 102:
159         .section .fixup,"ax"
160 103:    addl %ecx,%edx                  /* ecx is zerorest also */
161         jmp copy_user_handle_tail
162         .previous
163
164         _ASM_EXTABLE(100b,103b)
165         _ASM_EXTABLE(101b,103b)
166         .endm
167
168 #else
169 # define _EXPAND_EXTABLE_HANDLE(x) #x
170 # define _ASM_EXTABLE_HANDLE(from, to, handler)                 \
171         " .pushsection \"__ex_table\",\"a\"\n"                  \
172         " .balign 4\n"                                          \
173         " .long (" #from ") - .\n"                              \
174         " .long (" #to ") - .\n"                                \
175         " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n"    \
176         " .popsection\n"
177
178 # define _ASM_EXTABLE(from, to)                                 \
179         _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
180
181 # define _ASM_EXTABLE_FAULT(from, to)                           \
182         _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
183
184 # define _ASM_EXTABLE_EX(from, to)                              \
185         _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
186
187 /* For C file, we already have NOKPROBE_SYMBOL macro */
188 #endif
189
190 #ifndef __ASSEMBLY__
191 #ifndef __BPF__
192 /*
193  * This output constraint should be used for any inline asm which has a "call"
194  * instruction.  Otherwise the asm may be inserted before the frame pointer
195  * gets set up by the containing function.  If you forget to do this, objtool
196  * may print a "call without frame pointer save/setup" warning.
197  */
198 register unsigned long current_stack_pointer asm(_ASM_SP);
199 #define ASM_CALL_CONSTRAINT "+r" (current_stack_pointer)
200 #endif
201 #endif
202
203 #endif /* _ASM_X86_ASM_H */