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 /* 49 * Macros to generate condition code outputs from inline assembly, 50 * The output operand must be type "bool". 51 */ 52 #ifdef __GCC_ASM_FLAG_OUTPUTS__ 53 # define CC_SET(c) "\n\t/* output condition code " #c "*/\n" 54 # define CC_OUT(c) "=@cc" #c 55 #else 56 # define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n" 57 # define CC_OUT(c) [_cc_ ## c] "=qm" 58 #endif 59 60 /* Exception table entry */ 61 #ifdef __ASSEMBLY__ 62 # define _ASM_EXTABLE_HANDLE(from, to, handler) \ 63 .pushsection "__ex_table","a" ; \ 64 .balign 4 ; \ 65 .long (from) - . ; \ 66 .long (to) - . ; \ 67 .long (handler) - . ; \ 68 .popsection 69 70 # define _ASM_EXTABLE(from, to) \ 71 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default) 72 73 # define _ASM_EXTABLE_FAULT(from, to) \ 74 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault) 75 76 # define _ASM_EXTABLE_EX(from, to) \ 77 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext) 78 79 # define _ASM_NOKPROBE(entry) \ 80 .pushsection "_kprobe_blacklist","aw" ; \ 81 _ASM_ALIGN ; \ 82 _ASM_PTR (entry); \ 83 .popsection 84 85 .macro ALIGN_DESTINATION 86 /* check for bad alignment of destination */ 87 movl %edi,%ecx 88 andl $7,%ecx 89 jz 102f /* already aligned */ 90 subl $8,%ecx 91 negl %ecx 92 subl %ecx,%edx 93 100: movb (%rsi),%al 94 101: movb %al,(%rdi) 95 incq %rsi 96 incq %rdi 97 decl %ecx 98 jnz 100b 99 102: 100 .section .fixup,"ax" 101 103: addl %ecx,%edx /* ecx is zerorest also */ 102 jmp copy_user_handle_tail 103 .previous 104 105 _ASM_EXTABLE(100b,103b) 106 _ASM_EXTABLE(101b,103b) 107 .endm 108 109 #else 110 # define _EXPAND_EXTABLE_HANDLE(x) #x 111 # define _ASM_EXTABLE_HANDLE(from, to, handler) \ 112 " .pushsection \"__ex_table\",\"a\"\n" \ 113 " .balign 4\n" \ 114 " .long (" #from ") - .\n" \ 115 " .long (" #to ") - .\n" \ 116 " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \ 117 " .popsection\n" 118 119 # define _ASM_EXTABLE(from, to) \ 120 _ASM_EXTABLE_HANDLE(from, to, ex_handler_default) 121 122 # define _ASM_EXTABLE_FAULT(from, to) \ 123 _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault) 124 125 # define _ASM_EXTABLE_EX(from, to) \ 126 _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext) 127 128 /* For C file, we already have NOKPROBE_SYMBOL macro */ 129 #endif 130 131 #ifndef __ASSEMBLY__ 132 #ifndef __BPF__ 133 /* 134 * This output constraint should be used for any inline asm which has a "call" 135 * instruction. Otherwise the asm may be inserted before the frame pointer 136 * gets set up by the containing function. If you forget to do this, objtool 137 * may print a "call without frame pointer save/setup" warning. 138 */ 139 register unsigned long current_stack_pointer asm(_ASM_SP); 140 #define ASM_CALL_CONSTRAINT "+r" (current_stack_pointer) 141 #endif 142 #endif 143 144 #endif /* _ASM_X86_ASM_H */ 145