tc-m68hc11.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* tc-m68hc11.h -- Header file for tc-m68hc11.c.
  2. Copyright (C) 1999-2015 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 the Free
  14. Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
  15. 02110-1301, USA. */
  16. #define TC_M68HC11
  17. #define TC_M68HC12
  18. struct fix;
  19. /* Define TC_M68K so that we can use the MRI mode. */
  20. #define TC_M68K
  21. #define TARGET_BYTES_BIG_ENDIAN 1
  22. /* Motorola assembler specs does not require '.' before pseudo-ops. */
  23. #define NO_PSEUDO_DOT 1
  24. /* The target BFD architecture. */
  25. #define TARGET_ARCH (m68hc11_arch ())
  26. extern enum bfd_architecture m68hc11_arch (void);
  27. #define TARGET_MACH (m68hc11_mach ())
  28. extern int m68hc11_mach (void);
  29. #define TARGET_FORMAT (m68hc11_arch_format ())
  30. extern const char *m68hc11_arch_format (void);
  31. #define LISTING_WORD_SIZE 1 /* A word is 1 bytes */
  32. #define LISTING_LHS_WIDTH 4 /* One word on the first line */
  33. #define LISTING_LHS_WIDTH_SECOND 4 /* One word on the second line */
  34. #define LISTING_LHS_CONT_LINES 4 /* And 4 lines max */
  35. #define LISTING_HEADER m68hc11_listing_header ()
  36. extern const char *m68hc11_listing_header (void);
  37. /* Permit temporary numeric labels. */
  38. #define LOCAL_LABELS_FB 1
  39. #define tc_init_after_args m68hc11_init_after_args
  40. extern void m68hc11_init_after_args (void);
  41. #define md_parse_long_option m68hc11_parse_long_option
  42. extern int m68hc11_parse_long_option (char *);
  43. #define DWARF2_LINE_MIN_INSN_LENGTH 1
  44. /* Use 32-bit address to represent a symbol address so that we can
  45. represent them with their page number. */
  46. #define DWARF2_ADDR_SIZE(bfd) 4
  47. /* We don't need to handle .word strangely. */
  48. #define WORKING_DOT_WORD
  49. #define md_number_to_chars number_to_chars_bigendian
  50. /* Relax table to translate short relative branches (-128..127) into
  51. absolute branches. */
  52. #define TC_GENERIC_RELAX_TABLE md_relax_table
  53. extern struct relax_type md_relax_table[];
  54. /* GAS only handles relaxations for pc-relative data targeting addresses
  55. in the same segment, so we have to handle the rest on our own. */
  56. #define md_relax_frag(SEG, FRAGP, STRETCH) \
  57. ((FRAGP)->fr_symbol != NULL \
  58. && S_GET_SEGMENT ((FRAGP)->fr_symbol) == (SEG) \
  59. ? relax_frag (SEG, FRAGP, STRETCH) \
  60. : m68hc11_relax_frag (SEG, FRAGP, STRETCH))
  61. extern long m68hc11_relax_frag (segT, fragS*, long);
  62. #define TC_HANDLES_FX_DONE
  63. #define DIFF_EXPR_OK /* .-foo gets turned into PC relative relocs */
  64. /* Values passed to md_apply_fix don't include the symbol value. */
  65. #define MD_APPLY_SYM_VALUE(FIX) 0
  66. /* No shared lib support, so we don't need to ensure externally
  67. visible symbols can be overridden. */
  68. #define EXTERN_FORCE_RELOC 0
  69. #define TC_FORCE_RELOCATION(fix) tc_m68hc11_force_relocation (fix)
  70. extern int tc_m68hc11_force_relocation (struct fix *);
  71. #define tc_fix_adjustable(X) tc_m68hc11_fix_adjustable(X)
  72. extern int tc_m68hc11_fix_adjustable (struct fix *);
  73. #define md_operand(x)
  74. #define elf_tc_final_processing m68hc11_elf_final_processing
  75. extern void m68hc11_elf_final_processing (void);
  76. #define tc_print_statistics(FILE) m68hc11_print_statistics (FILE)
  77. extern void m68hc11_print_statistics (FILE *);