asm.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #ifndef _ASM_X86_ASM_H
  2. #define _ASM_X86_ASM_H
  3. #ifdef __ASSEMBLY__
  4. # define __ASM_FORM(x) x
  5. # define __ASM_FORM_RAW(x) x
  6. # define __ASM_FORM_COMMA(x) x,
  7. #else
  8. # define __ASM_FORM(x) " " #x " "
  9. # define __ASM_FORM_RAW(x) #x
  10. # define __ASM_FORM_COMMA(x) " " #x ","
  11. #endif
  12. #ifdef CONFIG_X86_32
  13. # define __ASM_SEL(a,b) __ASM_FORM(a)
  14. # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(a)
  15. #else
  16. # define __ASM_SEL(a,b) __ASM_FORM(b)
  17. # define __ASM_SEL_RAW(a,b) __ASM_FORM_RAW(b)
  18. #endif
  19. #define __ASM_SIZE(inst, ...) __ASM_SEL(inst##l##__VA_ARGS__, \
  20. inst##q##__VA_ARGS__)
  21. #define __ASM_REG(reg) __ASM_SEL_RAW(e##reg, r##reg)
  22. #define _ASM_PTR __ASM_SEL(.long, .quad)
  23. #define _ASM_ALIGN __ASM_SEL(.balign 4, .balign 8)
  24. #define _ASM_MOV __ASM_SIZE(mov)
  25. #define _ASM_INC __ASM_SIZE(inc)
  26. #define _ASM_DEC __ASM_SIZE(dec)
  27. #define _ASM_ADD __ASM_SIZE(add)
  28. #define _ASM_SUB __ASM_SIZE(sub)
  29. #define _ASM_XADD __ASM_SIZE(xadd)
  30. #define _ASM_AX __ASM_REG(ax)
  31. #define _ASM_BX __ASM_REG(bx)
  32. #define _ASM_CX __ASM_REG(cx)
  33. #define _ASM_DX __ASM_REG(dx)
  34. #define _ASM_SP __ASM_REG(sp)
  35. #define _ASM_BP __ASM_REG(bp)
  36. #define _ASM_SI __ASM_REG(si)
  37. #define _ASM_DI __ASM_REG(di)
  38. /*
  39. * Macros to generate condition code outputs from inline assembly,
  40. * The output operand must be type "bool".
  41. */
  42. #ifdef __GCC_ASM_FLAG_OUTPUTS__
  43. # define CC_SET(c) "\n\t/* output condition code " #c "*/\n"
  44. # define CC_OUT(c) "=@cc" #c
  45. #else
  46. # define CC_SET(c) "\n\tset" #c " %[_cc_" #c "]\n"
  47. # define CC_OUT(c) [_cc_ ## c] "=qm"
  48. #endif
  49. /* Exception table entry */
  50. #ifdef __ASSEMBLY__
  51. # define _ASM_EXTABLE_HANDLE(from, to, handler) \
  52. .pushsection "__ex_table","a" ; \
  53. .balign 4 ; \
  54. .long (from) - . ; \
  55. .long (to) - . ; \
  56. .long (handler) - . ; \
  57. .popsection
  58. # define _ASM_EXTABLE(from, to) \
  59. _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
  60. # define _ASM_EXTABLE_FAULT(from, to) \
  61. _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
  62. # define _ASM_EXTABLE_EX(from, to) \
  63. _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
  64. # define _ASM_NOKPROBE(entry) \
  65. .pushsection "_kprobe_blacklist","aw" ; \
  66. _ASM_ALIGN ; \
  67. _ASM_PTR (entry); \
  68. .popsection
  69. .macro ALIGN_DESTINATION
  70. /* check for bad alignment of destination */
  71. movl %edi,%ecx
  72. andl $7,%ecx
  73. jz 102f /* already aligned */
  74. subl $8,%ecx
  75. negl %ecx
  76. subl %ecx,%edx
  77. 100: movb (%rsi),%al
  78. 101: movb %al,(%rdi)
  79. incq %rsi
  80. incq %rdi
  81. decl %ecx
  82. jnz 100b
  83. 102:
  84. .section .fixup,"ax"
  85. 103: addl %ecx,%edx /* ecx is zerorest also */
  86. jmp copy_user_handle_tail
  87. .previous
  88. _ASM_EXTABLE(100b,103b)
  89. _ASM_EXTABLE(101b,103b)
  90. .endm
  91. #else
  92. # define _EXPAND_EXTABLE_HANDLE(x) #x
  93. # define _ASM_EXTABLE_HANDLE(from, to, handler) \
  94. " .pushsection \"__ex_table\",\"a\"\n" \
  95. " .balign 4\n" \
  96. " .long (" #from ") - .\n" \
  97. " .long (" #to ") - .\n" \
  98. " .long (" _EXPAND_EXTABLE_HANDLE(handler) ") - .\n" \
  99. " .popsection\n"
  100. # define _ASM_EXTABLE(from, to) \
  101. _ASM_EXTABLE_HANDLE(from, to, ex_handler_default)
  102. # define _ASM_EXTABLE_FAULT(from, to) \
  103. _ASM_EXTABLE_HANDLE(from, to, ex_handler_fault)
  104. # define _ASM_EXTABLE_EX(from, to) \
  105. _ASM_EXTABLE_HANDLE(from, to, ex_handler_ext)
  106. /* For C file, we already have NOKPROBE_SYMBOL macro */
  107. #endif
  108. #endif /* _ASM_X86_ASM_H */