read.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* read.h - of read.c
  2. Copyright (C) 1986-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 the Free
  14. Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
  15. 02110-1301, USA. */
  16. extern char *input_line_pointer; /* -> char we are parsing now. */
  17. extern bool input_from_string;
  18. /* Define to make whitespace be allowed in many syntactically
  19. unnecessary places. Normally undefined. For compatibility with
  20. ancient GNU cc. */
  21. /* #undef PERMIT_WHITESPACE */
  22. #define PERMIT_WHITESPACE
  23. #ifdef PERMIT_WHITESPACE
  24. #define SKIP_WHITESPACE() \
  25. ((*input_line_pointer == ' ') ? ++input_line_pointer : 0)
  26. #define SKIP_ALL_WHITESPACE() \
  27. while (*input_line_pointer == ' ') ++input_line_pointer
  28. #else
  29. #define SKIP_WHITESPACE() know (*input_line_pointer != ' ' )
  30. #define SKIP_ALL_WHITESPACE() SKIP_WHITESPACE()
  31. #endif
  32. #define SKIP_WHITESPACE_AFTER_NAME() \
  33. do \
  34. { \
  35. if (* input_line_pointer == '"') \
  36. ++ input_line_pointer; \
  37. if (* input_line_pointer == ' ') \
  38. ++ input_line_pointer; \
  39. } \
  40. while (0)
  41. #define LEX_NAME (1) /* may continue a name */
  42. #define LEX_BEGIN_NAME (2) /* may begin a name */
  43. #define LEX_END_NAME (4) /* ends a name */
  44. #define is_name_beginner(c) \
  45. ( lex_type[(unsigned char) (c)] & LEX_BEGIN_NAME )
  46. #define is_part_of_name(c) \
  47. ( lex_type[(unsigned char) (c)] & LEX_NAME )
  48. #define is_name_ender(c) \
  49. ( lex_type[(unsigned char) (c)] & LEX_END_NAME )
  50. #ifndef is_a_char
  51. #define CHAR_MASK (0xff)
  52. #define NOT_A_CHAR (CHAR_MASK+1)
  53. #define is_a_char(c) (((unsigned) (c)) <= CHAR_MASK)
  54. #endif /* is_a_char() */
  55. extern char lex_type[];
  56. extern char is_end_of_line[];
  57. extern int is_it_end_of_statement (void);
  58. extern char *find_end_of_line (char *, int);
  59. extern int target_big_endian;
  60. /* These are initialized by the CPU specific target files (tc-*.c). */
  61. extern const char comment_chars[];
  62. extern const char line_comment_chars[];
  63. extern const char line_separator_chars[];
  64. /* Table of -I directories. */
  65. extern const char **include_dirs;
  66. extern int include_dir_count;
  67. extern int include_dir_maxlen;
  68. /* The offset in the absolute section. */
  69. extern addressT abs_section_offset;
  70. /* The label on a line, used by some of the pseudo-ops. */
  71. extern symbolS *line_label;
  72. /* This is used to support MRI common sections. */
  73. extern symbolS *mri_common_symbol;
  74. /* True if a stabs line debug statement is currently being emitted. */
  75. extern int outputting_stabs_line_debug;
  76. /* Possible arguments to .linkonce. */
  77. enum linkonce_type {
  78. LINKONCE_UNSET = 0,
  79. LINKONCE_DISCARD,
  80. LINKONCE_ONE_ONLY,
  81. LINKONCE_SAME_SIZE,
  82. LINKONCE_SAME_CONTENTS
  83. };
  84. #ifndef TC_CASE_SENSITIVE
  85. extern char original_case_string[];
  86. #endif
  87. #ifndef TC_PARSE_CONS_RETURN_TYPE
  88. #define TC_PARSE_CONS_RETURN_TYPE bfd_reloc_code_real_type
  89. #define TC_PARSE_CONS_RETURN_NONE BFD_RELOC_NONE
  90. #endif
  91. extern void pop_insert (const pseudo_typeS *);
  92. extern unsigned int get_stab_string_offset
  93. (const char *, const char *, bool);
  94. extern void aout_process_stab (int, const char *, int, int, int);
  95. extern char *demand_copy_string (int *lenP);
  96. extern char *demand_copy_C_string (int *len_pointer);
  97. extern char get_absolute_expression_and_terminator (long *val_pointer);
  98. extern offsetT get_absolute_expression (void);
  99. extern unsigned int next_char_of_string (void);
  100. extern void s_mri_sect (char *);
  101. extern char *mri_comment_field (char *);
  102. extern void mri_comment_end (char *, int);
  103. extern void add_include_dir (char *path);
  104. extern void cons (int nbytes);
  105. extern void demand_empty_rest_of_line (void);
  106. extern void emit_expr (expressionS *exp, unsigned int nbytes);
  107. extern void emit_expr_with_reloc (expressionS *exp, unsigned int nbytes,
  108. TC_PARSE_CONS_RETURN_TYPE);
  109. extern void emit_expr_fix (expressionS *, unsigned int, fragS *, char *,
  110. TC_PARSE_CONS_RETURN_TYPE);
  111. extern void emit_leb128_expr (expressionS *, int);
  112. extern void equals (char *, int);
  113. extern void float_cons (int);
  114. extern void ignore_rest_of_line (void);
  115. #define discard_rest_of_line ignore_rest_of_line
  116. extern unsigned output_leb128 (char *, valueT, int);
  117. extern void pseudo_set (symbolS * symbolP);
  118. extern void read_a_source_file (const char *name);
  119. extern void read_begin (void);
  120. extern void read_print_statistics (FILE *);
  121. extern char *read_symbol_name (void);
  122. extern unsigned sizeof_leb128 (valueT, int);
  123. extern void stabs_generate_asm_file (void);
  124. extern void stabs_generate_asm_lineno (void);
  125. extern void stabs_generate_asm_func (const char *, const char *);
  126. extern void stabs_generate_asm_endfunc (const char *, const char *);
  127. extern void do_repeat (size_t, const char *, const char *);
  128. extern void do_repeat_with_expander (size_t, const char *, const char *, const char *);
  129. extern void end_repeat (int);
  130. extern void do_parse_cons_expression (expressionS *, int);
  131. extern void generate_lineno_debug (void);
  132. extern void s_abort (int) ATTRIBUTE_NORETURN;
  133. extern void s_align_bytes (int arg);
  134. extern void s_align_ptwo (int);
  135. extern void do_align (unsigned int align, char *fill, unsigned int length,
  136. unsigned int max);
  137. extern void bss_alloc (symbolS *, addressT, unsigned);
  138. extern offsetT parse_align (int);
  139. extern symbolS *s_comm_internal (int, symbolS *(*) (int, symbolS *, addressT));
  140. extern symbolS *s_lcomm_internal (int, symbolS *, addressT);
  141. extern void s_app_file_string (char *, int);
  142. extern void s_app_file (int);
  143. extern void s_app_line (int);
  144. extern void s_bundle_align_mode (int);
  145. extern void s_bundle_lock (int);
  146. extern void s_bundle_unlock (int);
  147. extern void s_comm (int);
  148. extern void s_data (int);
  149. extern void s_desc (int);
  150. extern void s_else (int arg);
  151. extern void s_elseif (int arg);
  152. extern void s_end (int arg);
  153. extern void s_endif (int arg);
  154. extern void s_err (int);
  155. extern void s_errwarn (int);
  156. extern void s_fail (int);
  157. extern void s_fill (int);
  158. extern void s_float_space (int mult);
  159. extern void s_func (int);
  160. extern void s_globl (int arg);
  161. extern void s_if (int arg);
  162. extern void s_ifb (int arg);
  163. extern void s_ifc (int arg);
  164. extern void s_ifdef (int arg);
  165. extern void s_ifeqs (int arg);
  166. extern void s_ignore (int arg);
  167. extern void s_include (int arg);
  168. extern void s_irp (int arg);
  169. extern void s_lcomm (int needs_align);
  170. extern void s_lcomm_bytes (int needs_align);
  171. extern void s_leb128 (int sign);
  172. extern void s_linkonce (int);
  173. extern void s_lsym (int);
  174. extern void s_macro (int);
  175. extern void s_mexit (int);
  176. extern void s_mri (int);
  177. extern void s_mri_common (int);
  178. extern void s_org (int);
  179. extern void s_print (int);
  180. extern void s_purgem (int);
  181. extern void s_rept (int);
  182. extern void s_set (int);
  183. extern void s_space (int mult);
  184. extern void s_nop (int);
  185. extern void s_nops (int);
  186. extern void s_stab (int what);
  187. extern void s_struct (int);
  188. extern void s_text (int);
  189. extern void stringer (int append_zero);
  190. extern void s_xstab (int what);
  191. extern void s_rva (int);
  192. extern void s_incbin (int);
  193. extern void s_weakref (int);
  194. extern void temp_ilp (char *);
  195. extern void restore_ilp (void);