sysdep.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* Generic asm macros used on many machines.
  2. Copyright (C) 1991,92,93,96,98,2002,2003 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. #include <sys/syscall.h>
  17. #ifndef C_LABEL
  18. /* Define a macro we can use to construct the asm name for a C symbol. */
  19. #ifndef __UCLIBC_UNDERSCORES__
  20. #ifdef __STDC__
  21. #define C_LABEL(name) name##:
  22. #else
  23. #define C_LABEL(name) name/**/:
  24. #endif
  25. #else
  26. #ifdef __STDC__
  27. #define C_LABEL(name) _##name##:
  28. #else
  29. #define C_LABEL(name) _/**/name/**/:
  30. #endif
  31. #endif
  32. #endif
  33. #ifdef __ASSEMBLER__
  34. /* Mark the end of function named SYM. This is used on some platforms
  35. to generate correct debugging information. */
  36. #ifndef END
  37. #define END(sym)
  38. #endif
  39. #ifndef JUMPTARGET
  40. #define JUMPTARGET(sym) sym
  41. #endif
  42. /* Macros to generate eh_frame unwind information. */
  43. # ifdef HAVE_ASM_CFI_DIRECTIVES
  44. # define cfi_startproc .cfi_startproc
  45. # define cfi_endproc .cfi_endproc
  46. # define cfi_def_cfa(reg, off) .cfi_def_cfa reg, off
  47. # define cfi_def_cfa_register(reg) .cfi_def_cfa_register reg
  48. # define cfi_def_cfa_offset(off) .cfi_def_cfa_offset off
  49. # define cfi_adjust_cfa_offset(off) .cfi_adjust_cfa_offset off
  50. # define cfi_offset(reg, off) .cfi_offset reg, off
  51. # define cfi_rel_offset(reg, off) .cfi_rel_offset reg, off
  52. # define cfi_register(r1, r2) .cfi_register r1, r2
  53. # define cfi_return_column(reg) .cfi_return_column reg
  54. # define cfi_restore(reg) .cfi_restore reg
  55. # define cfi_same_value(reg) .cfi_same_value reg
  56. # define cfi_undefined(reg) .cfi_undefined reg
  57. # define cfi_remember_state .cfi_remember_state
  58. # define cfi_restore_state .cfi_restore_state
  59. # define cfi_window_save .cfi_window_save
  60. # else
  61. # define cfi_startproc
  62. # define cfi_endproc
  63. # define cfi_def_cfa(reg, off)
  64. # define cfi_def_cfa_register(reg)
  65. # define cfi_def_cfa_offset(off)
  66. # define cfi_adjust_cfa_offset(off)
  67. # define cfi_offset(reg, off)
  68. # define cfi_rel_offset(reg, off)
  69. # define cfi_register(r1, r2)
  70. # define cfi_return_column(reg)
  71. # define cfi_restore(reg)
  72. # define cfi_same_value(reg)
  73. # define cfi_undefined(reg)
  74. # define cfi_remember_state
  75. # define cfi_restore_state
  76. # define cfi_window_save
  77. # endif
  78. #else /* ! ASSEMBLER */
  79. # ifdef HAVE_ASM_CFI_DIRECTIVES
  80. # define CFI_STRINGIFY(Name) CFI_STRINGIFY2 (Name)
  81. # define CFI_STRINGIFY2(Name) #Name
  82. # define CFI_STARTPROC ".cfi_startproc"
  83. # define CFI_ENDPROC ".cfi_endproc"
  84. # define CFI_DEF_CFA(reg, off) \
  85. ".cfi_def_cfa " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  86. # define CFI_DEF_CFA_REGISTER(reg) \
  87. ".cfi_def_cfa_register " CFI_STRINGIFY(reg)
  88. # define CFI_DEF_CFA_OFFSET(off) \
  89. ".cfi_def_cfa_offset " CFI_STRINGIFY(off)
  90. # define CFI_ADJUST_CFA_OFFSET(off) \
  91. ".cfi_adjust_cfa_offset " CFI_STRINGIFY(off)
  92. # define CFI_OFFSET(reg, off) \
  93. ".cfi_offset " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  94. # define CFI_REL_OFFSET(reg, off) \
  95. ".cfi_rel_offset " CFI_STRINGIFY(reg) "," CFI_STRINGIFY(off)
  96. # define CFI_REGISTER(r1, r2) \
  97. ".cfi_register " CFI_STRINGIFY(r1) "," CFI_STRINGIFY(r2)
  98. # define CFI_RETURN_COLUMN(reg) \
  99. ".cfi_return_column " CFI_STRINGIFY(reg)
  100. # define CFI_RESTORE(reg) \
  101. ".cfi_restore " CFI_STRINGIFY(reg)
  102. # define CFI_UNDEFINED(reg) \
  103. ".cfi_undefined " CFI_STRINGIFY(reg)
  104. # define CFI_REMEMBER_STATE \
  105. ".cfi_remember_state"
  106. # define CFI_RESTORE_STATE \
  107. ".cfi_restore_state"
  108. # define CFI_WINDOW_SAVE \
  109. ".cfi_window_save"
  110. # else
  111. # define CFI_STARTPROC
  112. # define CFI_ENDPROC
  113. # define CFI_DEF_CFA(reg, off)
  114. # define CFI_DEF_CFA_REGISTER(reg)
  115. # define CFI_DEF_CFA_OFFSET(off)
  116. # define CFI_ADJUST_CFA_OFFSET(off)
  117. # define CFI_OFFSET(reg, off)
  118. # define CFI_REL_OFFSET(reg, off)
  119. # define CFI_REGISTER(r1, r2)
  120. # define CFI_RETURN_COLUMN(reg)
  121. # define CFI_RESTORE(reg)
  122. # define CFI_UNDEFINED(reg)
  123. # define CFI_REMEMBER_STATE
  124. # define CFI_RESTORE_STATE
  125. # define CFI_WINDOW_SAVE
  126. # endif
  127. #endif /* __ASSEMBLER__ */
  128. /* Values used for encoding parameter of cfi_personality and cfi_lsda. */
  129. #define DW_EH_PE_absptr 0x00
  130. #define DW_EH_PE_omit 0xff
  131. #define DW_EH_PE_uleb128 0x01
  132. #define DW_EH_PE_udata2 0x02
  133. #define DW_EH_PE_udata4 0x03
  134. #define DW_EH_PE_udata8 0x04
  135. #define DW_EH_PE_sleb128 0x09
  136. #define DW_EH_PE_sdata2 0x0a
  137. #define DW_EH_PE_sdata4 0x0b
  138. #define DW_EH_PE_sdata8 0x0c
  139. #define DW_EH_PE_signed 0x08
  140. #define DW_EH_PE_pcrel 0x10
  141. #define DW_EH_PE_textrel 0x20
  142. #define DW_EH_PE_datarel 0x30
  143. #define DW_EH_PE_funcrel 0x40
  144. #define DW_EH_PE_aligned 0x50
  145. #define DW_EH_PE_indirect 0x80