sysdep.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /* Generic asm macros used on many machines.
  2. Copyright (C) 1991,92,93,96,98,2002,2003,2009 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifndef C_LABEL
  17. /* Define a macro we can use to construct the asm name for a C symbol. */
  18. #ifdef NO_UNDERSCORES
  19. #ifdef __STDC__
  20. #define C_LABEL(name) name##:
  21. #else
  22. #define C_LABEL(name) name/**/:
  23. #endif
  24. #else
  25. #ifdef __STDC__
  26. #define C_LABEL(name) __##name##:
  27. #else
  28. #define C_LABEL(name) __/**/name/**/:
  29. #endif
  30. #endif
  31. #endif
  32. #ifdef __ASSEMBLER__
  33. /* Mark the end of function named SYM. This is used on some platforms
  34. to generate correct debugging information. */
  35. # ifndef END
  36. # define END(sym)
  37. # endif
  38. # ifndef JUMPTARGET
  39. # define JUMPTARGET(sym) sym
  40. # endif
  41. /* Makros to generate eh_frame unwind information. */
  42. # ifdef HAVE_ASM_CFI_DIRECTIVES
  43. # define cfi_startproc .cfi_startproc
  44. # define cfi_endproc .cfi_endproc
  45. # define cfi_def_cfa(reg, off) .cfi_def_cfa reg, off
  46. # define cfi_def_cfa_register(reg) .cfi_def_cfa_register reg
  47. # define cfi_def_cfa_offset(off) .cfi_def_cfa_offset off
  48. # define cfi_adjust_cfa_offset(off) .cfi_adjust_cfa_offset off
  49. # define cfi_offset(reg, off) .cfi_offset reg, off
  50. # define cfi_rel_offset(reg, off) .cfi_rel_offset reg, off
  51. # define cfi_register(r1, r2) .cfi_register r1, r2
  52. # define cfi_return_column(reg) .cfi_return_column reg
  53. # define cfi_restore(reg) .cfi_restore reg
  54. # define cfi_same_value(reg) .cfi_same_value reg
  55. # define cfi_undefined(reg) .cfi_undefined reg
  56. # define cfi_remember_state .cfi_remember_state
  57. # define cfi_restore_state .cfi_restore_state
  58. # define cfi_window_save .cfi_window_save
  59. # define cfi_personality(enc, exp) .cfi_personality enc, exp
  60. # define cfi_lsda(enc, exp) .cfi_lsda enc, exp
  61. # else
  62. # define cfi_startproc
  63. # define cfi_endproc
  64. # define cfi_def_cfa(reg, off)
  65. # define cfi_def_cfa_register(reg)
  66. # define cfi_def_cfa_offset(off)
  67. # define cfi_adjust_cfa_offset(off)
  68. # define cfi_offset(reg, off)
  69. # define cfi_rel_offset(reg, off)
  70. # define cfi_register(r1, r2)
  71. # define cfi_return_column(reg)
  72. # define cfi_restore(reg)
  73. # define cfi_same_value(reg)
  74. # define cfi_undefined(reg)
  75. # define cfi_remember_state
  76. # define cfi_restore_state
  77. # define cfi_window_save
  78. # define cfi_personality(enc, exp)
  79. # define cfi_lsda(enc, exp)
  80. # endif
  81. #else /* ! ASSEMBLER */
  82. # ifdef HAVE_ASM_CFI_DIRECTIVES
  83. # define CFI_STRINGIFY(Name) CFI_STRINGIFY2 (Name)
  84. # define CFI_STRINGIFY2(Name) #Name
  85. # define CFI_STARTPROC ".cfi_startproc"
  86. # define CFI_ENDPROC ".cfi_endproc"
  87. # define CFI_DEF_CFA(reg, off) \
  88. ".cfi_def_cfa " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  89. # define CFI_DEF_CFA_REGISTER(reg) \
  90. ".cfi_def_cfa_register " CFI_STRINGIFY(reg)
  91. # define CFI_DEF_CFA_OFFSET(off) \
  92. ".cfi_def_cfa_offset " CFI_STRINGIFY(off)
  93. # define CFI_ADJUST_CFA_OFFSET(off) \
  94. ".cfi_adjust_cfa_offset " CFI_STRINGIFY(off)
  95. # define CFI_OFFSET(reg, off) \
  96. ".cfi_offset " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  97. # define CFI_REL_OFFSET(reg, off) \
  98. ".cfi_rel_offset " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  99. # define CFI_REGISTER(r1, r2) \
  100. ".cfi_register " CFI_STRINGIFY(r1) "," CFI_STRINGIFY(r2)
  101. # define CFI_RETURN_COLUMN(reg) \
  102. ".cfi_return_column " CFI_STRINGIFY(reg)
  103. # define CFI_RESTORE(reg) \
  104. ".cfi_restore " CFI_STRINGIFY(reg)
  105. # define CFI_UNDEFINED(reg) \
  106. ".cfi_undefined " CFI_STRINGIFY(reg)
  107. # define CFI_REMEMBER_STATE \
  108. ".cfi_remember_state"
  109. # define CFI_RESTORE_STATE \
  110. ".cfi_restore_state"
  111. # define CFI_WINDOW_SAVE \
  112. ".cfi_window_save"
  113. # define CFI_PERSONALITY(enc, exp) \
  114. ".cfi_personality " CFI_STRINGIFY(enc) "," CFI_STRINGIFY(exp)
  115. # define CFI_LSDA(enc, exp) \
  116. ".cfi_lsda " CFI_STRINGIFY(enc) "," CFI_STRINGIFY(exp)
  117. # else
  118. # define CFI_STARTPROC
  119. # define CFI_ENDPROC
  120. # define CFI_DEF_CFA(reg, off)
  121. # define CFI_DEF_CFA_REGISTER(reg)
  122. # define CFI_DEF_CFA_OFFSET(off)
  123. # define CFI_ADJUST_CFA_OFFSET(off)
  124. # define CFI_OFFSET(reg, off)
  125. # define CFI_REL_OFFSET(reg, off)
  126. # define CFI_REGISTER(r1, r2)
  127. # define CFI_RETURN_COLUMN(reg)
  128. # define CFI_RESTORE(reg)
  129. # define CFI_UNDEFINED(reg)
  130. # define CFI_REMEMBER_STATE
  131. # define CFI_RESTORE_STATE
  132. # define CFI_WINDOW_SAVE
  133. # define CFI_PERSONALITY(enc, exp)
  134. # define CFI_LSDA(enc, exp)
  135. # endif
  136. #endif /* __ASSEMBLER__ */
  137. /* Values used for encoding parameter of cfi_personality and cfi_lsda. */
  138. #define DW_EH_PE_absptr 0x00
  139. #define DW_EH_PE_omit 0xff
  140. #define DW_EH_PE_uleb128 0x01
  141. #define DW_EH_PE_udata2 0x02
  142. #define DW_EH_PE_udata4 0x03
  143. #define DW_EH_PE_udata8 0x04
  144. #define DW_EH_PE_sleb128 0x09
  145. #define DW_EH_PE_sdata2 0x0a
  146. #define DW_EH_PE_sdata4 0x0b
  147. #define DW_EH_PE_sdata8 0x0c
  148. #define DW_EH_PE_signed 0x08
  149. #define DW_EH_PE_pcrel 0x10
  150. #define DW_EH_PE_textrel 0x20
  151. #define DW_EH_PE_datarel 0x30
  152. #define DW_EH_PE_funcrel 0x40
  153. #define DW_EH_PE_aligned 0x50
  154. #define DW_EH_PE_indirect 0x80