tc-sh.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /* This file is tc-sh.h
  2. Copyright (C) 1993-2022 Free Software Foundation, Inc.
  3. This file is part of GAS, the GNU Assembler.
  4. GAS is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3, or (at your option)
  7. any later version.
  8. GAS 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
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GAS; see the file COPYING. If not, write to
  14. the Free Software Foundation, 51 Franklin Street - Fifth Floor,
  15. Boston, MA 02110-1301, USA. */
  16. #define TC_SH
  17. #define TARGET_ARCH bfd_arch_sh
  18. /* The type fixS is defined (to struct fix) in write.h, but write.h uses
  19. definitions from this file. To avoid problems with including write.h
  20. after the "right" definitions, don't; just forward-declare struct fix
  21. here. */
  22. struct fix;
  23. struct segment_info_struct;
  24. struct internal_reloc;
  25. /* Whether -relax was used. */
  26. extern int sh_relax;
  27. /* Whether -small was used. */
  28. extern int sh_small;
  29. /* Don't try to break words. */
  30. #define WORKING_DOT_WORD
  31. /* We require .long, et. al., to be aligned correctly. */
  32. #define md_cons_align(nbytes) sh_cons_align (nbytes)
  33. extern void sh_cons_align (int);
  34. /* We need to optimize expr with taking account of rs_align_test
  35. frags. */
  36. #ifdef OBJ_ELF
  37. #define md_optimize_expr(l,o,r) sh_optimize_expr (l, o, r)
  38. extern int sh_optimize_expr (expressionS *, operatorT, expressionS *);
  39. #endif
  40. /* When relaxing, we need to generate relocations for alignment
  41. directives. */
  42. #define HANDLE_ALIGN(frag) sh_handle_align (frag)
  43. extern void sh_handle_align (fragS *);
  44. #define MAX_MEM_FOR_RS_ALIGN_CODE (1 + 2)
  45. /* We need to force out some relocations when relaxing. */
  46. #define TC_FORCE_RELOCATION(fix) sh_force_relocation (fix)
  47. extern int sh_force_relocation (struct fix *);
  48. /* This macro decides whether a particular reloc is an entry in a
  49. switch table. It is used when relaxing, because the linker needs
  50. to know about all such entries so that it can adjust them if
  51. necessary. */
  52. #define SWITCH_TABLE(FIX) \
  53. ((FIX)->fx_addsy != NULL \
  54. && (FIX)->fx_subsy != NULL \
  55. && S_GET_SEGMENT ((FIX)->fx_addsy) == text_section \
  56. && S_GET_SEGMENT ((FIX)->fx_subsy) == text_section \
  57. && ((FIX)->fx_r_type == BFD_RELOC_32 \
  58. || (FIX)->fx_r_type == BFD_RELOC_16 \
  59. || (FIX)->fx_r_type == BFD_RELOC_8))
  60. #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEC) \
  61. (GENERIC_FORCE_RELOCATION_SUB_SAME (FIX, SEC) \
  62. || TC_FORCE_RELOCATION (FIX) \
  63. || (sh_relax && SWITCH_TABLE (FIX)))
  64. /* Don't complain when we leave fx_subsy around. */
  65. #define TC_VALIDATE_FIX_SUB(FIX, SEG) \
  66. ((md_register_arithmetic || (SEG) != reg_section) \
  67. && sh_relax && SWITCH_TABLE (FIX))
  68. #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section (FIX, SEC)
  69. /* SH_COUNT relocs are allowed outside of frag.
  70. The target is also buggy and sets fix size too large for other relocs. */
  71. #define TC_FX_SIZE_SLACK(FIX) \
  72. ((FIX)->fx_r_type == BFD_RELOC_SH_COUNT ? -1 : 2)
  73. #define IGNORE_NONSTANDARD_ESCAPES
  74. #define LISTING_HEADER \
  75. (!target_big_endian \
  76. ? "Renesas / SuperH SH GAS Little Endian" \
  77. : "Renesas / SuperH SH GAS Big Endian")
  78. #define md_operand(x)
  79. extern const struct relax_type md_relax_table[];
  80. #define TC_GENERIC_RELAX_TABLE md_relax_table
  81. /* We record, for each section, whether we have most recently output a
  82. CODE reloc or a DATA reloc. */
  83. struct sh_segment_info_type
  84. {
  85. int in_code : 1;
  86. };
  87. #define TC_SEGMENT_INFO_TYPE struct sh_segment_info_type
  88. /* We call a routine to emit a reloc for a label, so that the linker
  89. can align loads and stores without crossing a label. */
  90. extern void sh_frob_label (symbolS *);
  91. #define tc_frob_label(sym) sh_frob_label (sym)
  92. /* We call a routine to flush pending output in order to output a DATA
  93. reloc when required. */
  94. extern void sh_flush_pending_output (void);
  95. #define md_flush_pending_output() sh_flush_pending_output ()
  96. #define tc_frob_file_before_adjust sh_frob_file
  97. extern void sh_frob_file (void);
  98. #ifdef OBJ_COFF
  99. /* COFF specific definitions. */
  100. #define COFF_MAGIC (!target_big_endian ? SH_ARCH_MAGIC_LITTLE : SH_ARCH_MAGIC_BIG)
  101. #define tc_coff_symbol_emit_hook(a) ; /* Not used. */
  102. #define TC_KEEP_FX_OFFSET 1
  103. #define SEG_NAME(SEG) segment_name (SEG)
  104. /* We align most sections to a 16 byte boundary. */
  105. #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) \
  106. (startswith (SEG_NAME (SEG), ".stabstr") \
  107. ? 0 \
  108. : ((startswith (SEG_NAME (SEG), ".stab") \
  109. || strcmp (SEG_NAME (SEG), ".ctors") == 0 \
  110. || strcmp (SEG_NAME (SEG), ".dtors") == 0) \
  111. ? 2 \
  112. : (sh_small ? 2 : 4)))
  113. #endif /* OBJ_COFF */
  114. #ifdef OBJ_ELF
  115. /* ELF specific definitions. */
  116. /* Whether or not the target is big endian. */
  117. extern int target_big_endian;
  118. #ifdef TE_LINUX
  119. #define TARGET_FORMAT (!target_big_endian ? "elf32-sh-linux" : "elf32-shbig-linux")
  120. #elif defined(TE_NetBSD)
  121. #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-nbsd" : "elf32-sh-nbsd")
  122. #elif defined (TE_VXWORKS)
  123. #define TARGET_FORMAT (!target_big_endian ? "elf32-shl-vxworks" : "elf32-sh-vxworks")
  124. #elif defined (TE_UCLINUX)
  125. #define TARGET_FORMAT sh_uclinux_target_format ()
  126. extern const char * sh_uclinux_target_format (void);
  127. #else
  128. #define TARGET_FORMAT (!target_big_endian ? "elf32-shl" : "elf32-sh")
  129. #endif
  130. #define elf_tc_final_processing sh_elf_final_processing
  131. extern void sh_elf_final_processing (void);
  132. #define DIFF_EXPR_OK /* foo-. gets turned into PC relative relocs. */
  133. #define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
  134. /* This is the relocation type for direct references to
  135. GLOBAL_OFFSET_TABLE. It comes up in complicated expressions such
  136. as _GLOBAL_OFFSET_TABLE_+[.-.L284], which cannot be expressed
  137. normally with the regular expressions. The fixup specified here
  138. when used at runtime implies that we should add the address of the
  139. GOT to the specified location, and as a result we have simplified
  140. the expression into something we can use. */
  141. #define TC_RELOC_GLOBAL_OFFSET_TABLE BFD_RELOC_SH_GOTPC
  142. #define tc_fix_adjustable(FIX) sh_fix_adjustable(FIX)
  143. extern bool sh_fix_adjustable (struct fix *);
  144. /* Values passed to md_apply_fix don't include symbol values. */
  145. #define MD_APPLY_SYM_VALUE(FIX) 0
  146. /* This expression evaluates to true if the relocation is for a local object
  147. for which we still want to do the relocation at runtime. False if we
  148. are willing to perform this relocation while building the .o file.
  149. We can't resolve references to the GOT or the PLT when creating the
  150. object file, since these tables are only created by the linker.
  151. Also, if the symbol is global, weak, common or not defined, the
  152. assembler can't compute the appropriate reloc, since its location
  153. can only be determined at link time. */
  154. #define TC_FORCE_RELOCATION_LOCAL(FIX) \
  155. (GENERIC_FORCE_RELOCATION_LOCAL (FIX) \
  156. || (FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
  157. || (FIX)->fx_r_type == BFD_RELOC_32_GOT_PCREL \
  158. || (FIX)->fx_r_type == BFD_RELOC_SH_GOTPC)
  159. #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) \
  160. ((!md_register_arithmetic && (SEG) == reg_section) \
  161. || (sh_relax && SWITCH_TABLE (FIX)))
  162. /* This keeps the subtracted symbol around, for use by PLT_PCREL
  163. relocs. */
  164. #define TC_FORCE_RELOCATION_SUB_ABS(FIX, SEG) \
  165. ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
  166. || (!md_register_arithmetic && (SEG) == reg_section))
  167. /* Don't complain when we leave fx_subsy around. */
  168. #undef TC_VALIDATE_FIX_SUB
  169. #define TC_VALIDATE_FIX_SUB(FIX, SEG) \
  170. ((md_register_arithmetic || (SEG) != reg_section) \
  171. && ((FIX)->fx_r_type == BFD_RELOC_32_PLT_PCREL \
  172. || (sh_relax && SWITCH_TABLE (FIX))))
  173. #define md_parse_name(name, exprP, mode, nextcharP) \
  174. sh_parse_name ((name), (exprP), (mode), (nextcharP))
  175. int sh_parse_name (char const *, expressionS *,
  176. enum expr_mode, char *);
  177. #define TC_CONS_FIX_NEW(FRAG, OFF, LEN, EXP, RELOC) \
  178. sh_cons_fix_new ((FRAG), (OFF), (LEN), (EXP), (RELOC))
  179. void sh_cons_fix_new (fragS *, int, int, expressionS *,
  180. bfd_reloc_code_real_type);
  181. /* This is used to construct expressions out of @GOTOFF, @PLT and @GOT
  182. symbols. The relocation type is stored in X_md. */
  183. #define O_PIC_reloc O_md1
  184. #define TARGET_USE_CFIPOP 1
  185. #define tc_cfi_frame_initial_instructions sh_cfi_frame_initial_instructions
  186. extern void sh_cfi_frame_initial_instructions (void);
  187. #define tc_regname_to_dw2regnum sh_regname_to_dw2regnum
  188. extern int sh_regname_to_dw2regnum (char *);
  189. /* All SH instructions are multiples of 16 bits. */
  190. #define DWARF2_LINE_MIN_INSN_LENGTH 2
  191. #define DWARF2_DEFAULT_RETURN_COLUMN 17
  192. #define DWARF2_CIE_DATA_ALIGNMENT (-4)
  193. #endif /* OBJ_ELF */
  194. #define H_TICK_HEX 1