dwarf2.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. #define CFI_ESCAPE .cfi_escape
  27. #ifdef CONFIG_AS_CFI_SIGNAL_FRAME
  28. #define CFI_SIGNAL_FRAME .cfi_signal_frame
  29. #else
  30. #define CFI_SIGNAL_FRAME
  31. #endif
  32. #if defined(CONFIG_AS_CFI_SECTIONS) && defined(__ASSEMBLY__)
  33. #ifndef BUILD_VDSO
  34. /*
  35. * Emit CFI data in .debug_frame sections, not .eh_frame sections.
  36. * The latter we currently just discard since we don't do DWARF
  37. * unwinding at runtime. So only the offline DWARF information is
  38. * useful to anyone. Note we should not use this directive if
  39. * vmlinux.lds.S gets changed so it doesn't discard .eh_frame.
  40. */
  41. .cfi_sections .debug_frame
  42. #else
  43. /*
  44. * For the vDSO, emit both runtime unwind information and debug
  45. * symbols for the .dbg file.
  46. */
  47. .cfi_sections .eh_frame, .debug_frame
  48. #endif
  49. #endif
  50. #else
  51. /*
  52. * Due to the structure of pre-exisiting code, don't use assembler line
  53. * comment character # to ignore the arguments. Instead, use a dummy macro.
  54. */
  55. .macro cfi_ignore a=0, b=0, c=0, d=0
  56. .endm
  57. #define CFI_STARTPROC cfi_ignore
  58. #define CFI_ENDPROC cfi_ignore
  59. #define CFI_DEF_CFA cfi_ignore
  60. #define CFI_DEF_CFA_REGISTER cfi_ignore
  61. #define CFI_DEF_CFA_OFFSET cfi_ignore
  62. #define CFI_ADJUST_CFA_OFFSET cfi_ignore
  63. #define CFI_OFFSET cfi_ignore
  64. #define CFI_REL_OFFSET cfi_ignore
  65. #define CFI_REGISTER cfi_ignore
  66. #define CFI_RESTORE cfi_ignore
  67. #define CFI_REMEMBER_STATE cfi_ignore
  68. #define CFI_RESTORE_STATE cfi_ignore
  69. #define CFI_UNDEFINED cfi_ignore
  70. #define CFI_ESCAPE cfi_ignore
  71. #define CFI_SIGNAL_FRAME cfi_ignore
  72. #endif
  73. #endif /* _ASM_X86_DWARF2_H */