dwarf2.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #ifndef _ASM_X86_DWARF2_H
  2. #define _ASM_X86_DWARF2_H
  3. #ifndef __ASSEMBLY__
  4. #warning "asm/dwarf2.h should be only included in pure assembly files"
  5. #endif
  6. /*
  7. * Macros for dwarf2 CFI unwind table entries.
  8. * See "as.info" for details on these pseudo ops. Unfortunately
  9. * they are only supported in very new binutils, so define them
  10. * away for older version.
  11. */
  12. #ifdef CONFIG_AS_CFI
  13. #define CFI_STARTPROC .cfi_startproc
  14. #define CFI_ENDPROC .cfi_endproc
  15. #define CFI_DEF_CFA .cfi_def_cfa
  16. #define CFI_DEF_CFA_REGISTER .cfi_def_cfa_register
  17. #define CFI_DEF_CFA_OFFSET .cfi_def_cfa_offset
  18. #define CFI_ADJUST_CFA_OFFSET .cfi_adjust_cfa_offset
  19. #define CFI_OFFSET .cfi_offset
  20. #define CFI_REL_OFFSET .cfi_rel_offset
  21. #define CFI_REGISTER .cfi_register
  22. #define CFI_RESTORE .cfi_restore
  23. #define CFI_REMEMBER_STATE .cfi_remember_state
  24. #define CFI_RESTORE_STATE .cfi_restore_state
  25. #define CFI_UNDEFINED .cfi_undefined
  26. #ifdef CONFIG_AS_CFI_SIGNAL_FRAME
  27. #define CFI_SIGNAL_FRAME .cfi_signal_frame
  28. #else
  29. #define CFI_SIGNAL_FRAME
  30. #endif
  31. #if defined(CONFIG_AS_CFI_SECTIONS) && defined(__ASSEMBLY__)
  32. /*
  33. * Emit CFI data in .debug_frame sections, not .eh_frame sections.
  34. * The latter we currently just discard since we don't do DWARF
  35. * unwinding at runtime. So only the offline DWARF information is
  36. * useful to anyone. Note we should not use this directive if this
  37. * file is used in the vDSO assembly, or if vmlinux.lds.S gets
  38. * changed so it doesn't discard .eh_frame.
  39. */
  40. .cfi_sections .debug_frame
  41. #endif
  42. #else
  43. /*
  44. * Due to the structure of pre-exisiting code, don't use assembler line
  45. * comment character # to ignore the arguments. Instead, use a dummy macro.
  46. */
  47. .macro cfi_ignore a=0, b=0, c=0, d=0
  48. .endm
  49. #define CFI_STARTPROC cfi_ignore
  50. #define CFI_ENDPROC cfi_ignore
  51. #define CFI_DEF_CFA cfi_ignore
  52. #define CFI_DEF_CFA_REGISTER cfi_ignore
  53. #define CFI_DEF_CFA_OFFSET cfi_ignore
  54. #define CFI_ADJUST_CFA_OFFSET cfi_ignore
  55. #define CFI_OFFSET cfi_ignore
  56. #define CFI_REL_OFFSET cfi_ignore
  57. #define CFI_REGISTER cfi_ignore
  58. #define CFI_RESTORE cfi_ignore
  59. #define CFI_REMEMBER_STATE cfi_ignore
  60. #define CFI_RESTORE_STATE cfi_ignore
  61. #define CFI_UNDEFINED cfi_ignore
  62. #define CFI_SIGNAL_FRAME cfi_ignore
  63. #endif
  64. /*
  65. * An attempt to make CFI annotations more or less
  66. * correct and shorter. It is implied that you know
  67. * what you're doing if you use them.
  68. */
  69. #ifdef __ASSEMBLY__
  70. #ifdef CONFIG_X86_64
  71. .macro pushq_cfi reg
  72. pushq \reg
  73. CFI_ADJUST_CFA_OFFSET 8
  74. .endm
  75. .macro popq_cfi reg
  76. popq \reg
  77. CFI_ADJUST_CFA_OFFSET -8
  78. .endm
  79. .macro movq_cfi reg offset=0
  80. movq %\reg, \offset(%rsp)
  81. CFI_REL_OFFSET \reg, \offset
  82. .endm
  83. .macro movq_cfi_restore offset reg
  84. movq \offset(%rsp), %\reg
  85. CFI_RESTORE \reg
  86. .endm
  87. #else /*!CONFIG_X86_64*/
  88. .macro pushl_cfi reg
  89. pushl \reg
  90. CFI_ADJUST_CFA_OFFSET 4
  91. .endm
  92. .macro popl_cfi reg
  93. popl \reg
  94. CFI_ADJUST_CFA_OFFSET -4
  95. .endm
  96. .macro movl_cfi reg offset=0
  97. movl %\reg, \offset(%esp)
  98. CFI_REL_OFFSET \reg, \offset
  99. .endm
  100. .macro movl_cfi_restore offset reg
  101. movl \offset(%esp), %\reg
  102. CFI_RESTORE \reg
  103. .endm
  104. #endif /*!CONFIG_X86_64*/
  105. #endif /*__ASSEMBLY__*/
  106. #endif /* _ASM_X86_DWARF2_H */