1 /* as.h - global header file
2 Copyright (C) 1987-2023 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GAS is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 /* I think this stuff is largely out of date. xoxorich.
25 CAPITALISED names are #defined.
26 "lowercaseH" is #defined if "lowercase.h" has been #include-d.
27 "lowercaseT" is a typedef of "lowercase" objects.
28 "lowercaseP" is type "pointer to object of type 'lowercase'".
29 "lowercaseS" is typedef struct ... lowercaseS.
31 #define DEBUG to enable all the "know" assertion tests.
32 #define SUSPECT when debugging hash code.
33 #define COMMON as "extern" for all modules except one, where you #define
35 If TEST is #defined, then we are testing a module: #define COMMON as "". */
39 /* Now, tend to the rest of the configuration. */
41 /* System include files first... */
49 #ifdef HAVE_SYS_TYPES_H
50 /* for size_t, pid_t */
51 #include <sys/types.h>
58 /* The first getopt value for machine-independent long options.
59 150 isn't special; it's just an arbitrary non-ASCII char value. */
60 #define OPTION_STD_BASE 150
61 /* The first getopt value for machine-dependent long options.
62 290 gives the standard options room to grow. */
63 #define OPTION_MD_BASE 290
68 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
69 #define __PRETTY_FUNCTION__ ((char *) NULL)
71 #define gas_assert(P) ((void) ((P) ? 0 : (abort (), 0)))
73 #define abort() as_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
75 /* Now GNU header files... */
78 #include "libiberty.h"
80 /* Define the standard progress macros. */
83 /* Other stuff from config.h. */
84 #ifdef NEED_DECLARATION_ENVIRON
85 extern char **environ
;
87 #ifdef NEED_DECLARATION_FFS
91 #if !HAVE_DECL_MEMPCPY
92 void *mempcpy(void *, const void *, size_t);
96 #define __LINE__ "unknown"
100 #define __FILE__ "unknown"
101 #endif /* __FILE__ */
104 #ifdef USE_BINARY_FOPEN
105 #include "fopen-bin.h"
107 #include "fopen-same.h"
112 #define EXIT_SUCCESS 0
113 #define EXIT_FAILURE 1
120 #define obstack_chunk_alloc xmalloc
121 #define obstack_chunk_free xfree
125 #if GCC_VERSION >= 7000
126 #define gas_mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res)
128 /* Assumes unsigned values. Careful! Args evaluated multiple times. */
129 #define gas_mul_overflow(a, b, res) \
130 ((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a))
135 #define BAD_CASE(val) \
137 as_fatal (_("Case value %ld unexpected at line %d of file \"%s\"\n"), \
138 (long) val, __LINE__, __FILE__); \
143 /* These are assembler-wide concepts */
145 extern bfd
*stdoutput
;
146 typedef bfd_vma addressT
;
147 typedef bfd_signed_vma offsetT
;
149 /* Type of symbol value, etc. For use in prototypes. */
150 typedef addressT valueT
;
154 #define COMMON /* Declare our COMMONs storage here. */
156 #define COMMON extern /* Our commons live elsewhere. */
159 /* COMMON now defined */
161 #ifndef ENABLE_CHECKING
162 #define ENABLE_CHECKING 0
165 #if ENABLE_CHECKING || defined (DEBUG)
167 #define know(p) gas_assert(p) /* Verify our assumptions! */
168 #endif /* not yet defined */
170 #define know(p) do {} while (0) /* know() checks are no-op.ed */
175 /* Supplies sanitised buffers to read.c.
176 Also understands printing line-number part of error messages. */
178 /* subsegs.c Sub-segments. Also, segment(=expression type)s.*/
180 typedef asection
*segT
;
181 #define SEG_NORMAL(SEG) ( (SEG) != absolute_section \
182 && (SEG) != undefined_section \
183 && (SEG) != reg_section \
184 && (SEG) != expr_section)
187 /* What subseg we are accessing now? */
188 COMMON subsegT now_subseg
;
190 /* Segment our instructions emit to. */
193 #define segment_name(SEG) bfd_section_name (SEG)
195 extern segT reg_section
, expr_section
;
196 /* Shouldn't these be eliminated someday? */
197 extern segT text_section
, data_section
, bss_section
;
198 #define absolute_section bfd_abs_section_ptr
199 #define undefined_section bfd_und_section_ptr
203 /* Dummy frag used by listing code. */
206 /* Variable chars to be repeated fr_offset times.
207 Fr_symbol unused. Used with fr_offset == 0 for a
208 constant length frag. */
211 /* Align. The fr_offset field holds the power of 2 to which to
212 align. The fr_var field holds the number of characters in the
213 fill pattern. The fr_subtype field holds the maximum number of
214 bytes to skip when aligning, or 0 if there is no maximum. */
217 /* Align code. The fr_offset field holds the power of 2 to which
218 to align. This type is only generated by machine specific
219 code, which is normally responsible for handling the fill
220 pattern. The fr_subtype field holds the maximum number of
221 bytes to skip when aligning, or 0 if there is no maximum. */
224 /* Test for alignment. Like rs_align, but used by several targets
225 to warn if data is not properly aligned. */
228 /* Org: Fr_offset, fr_symbol: address. 1 variable char: fill
232 #ifndef WORKING_DOT_WORD
237 /* Machine specific relaxable (or similarly alterable) instruction. */
238 rs_machine_dependent
,
240 /* .space directive with expression operand that needs to be computed
241 later. Similar to rs_org, but different.
243 1 variable char: fill character */
246 /* .nop directive with expression operand that needs to be computed
247 later. Similar to rs_space, but different. It fills with no-op
250 1 constant byte: no-op fill control byte. */
253 /* Similar to rs_fill. It is used to implement .nop directive . */
256 /* A DWARF leb128 value; only ELF uses this. The subtype is 0 for
257 unsigned, 1 for signed. */
260 /* Exception frame information which we may be able to optimize. */
263 /* Cross-fragment dwarf2 line number optimization. */
266 /* SFrame FRE type selection optimization. */
270 typedef enum _relax_state relax_stateT
;
272 /* This type is used in prototypes, so it can't be a type that will be
273 widened for argument passing. */
274 typedef unsigned int relax_substateT
;
276 /* Enough bits for address, but still an integer type.
277 Could be a problem, cross-assembling for 64-bit machines. */
278 typedef addressT relax_addressT
;
282 /* Forward reach. Signed number. > 0. */
284 /* Backward reach. Signed number. < 0. */
285 offsetT rlx_backward
;
287 /* Bytes length of this address. */
288 unsigned char rlx_length
;
290 /* Next longer relax-state. 0 means there is no 'next' relax-state. */
291 relax_substateT rlx_more
;
294 typedef struct relax_type relax_typeS
;
296 /* main program "as.c" (command arguments etc). */
298 COMMON
unsigned char flag_no_comments
; /* -f */
299 COMMON
unsigned char flag_debug
; /* -D */
300 COMMON
unsigned char flag_signed_overflow_ok
; /* -J */
301 #ifndef WORKING_DOT_WORD
302 COMMON
unsigned char flag_warn_displacement
; /* -K */
305 /* True if local symbols should be retained. */
306 COMMON
int flag_keep_locals
; /* -L */
308 /* True if we are assembling in MRI mode. */
311 /* Should the data section be made read-only and appended to the text
313 COMMON
unsigned char flag_readonly_data_in_text
; /* -R */
315 /* True if warnings should be inhibited. */
316 COMMON
int flag_no_warnings
; /* -W */
318 /* True if warnings count as errors. */
319 COMMON
int flag_fatal_warnings
; /* --fatal-warnings */
321 /* True if we should attempt to generate output even if non-fatal errors
323 COMMON
unsigned char flag_always_generate_output
; /* -Z */
325 /* This is true if the assembler should output time and space usage. */
326 COMMON
unsigned char flag_print_statistics
;
328 /* True if local absolute symbols are to be stripped. */
329 COMMON
int flag_strip_local_absolute
;
331 /* True if we should generate a traditional format object file. */
332 COMMON
int flag_traditional_format
;
334 /* Type of compressed debug sections we should generate. */
335 COMMON
enum compressed_debug_section_type flag_compress_debug
;
337 /* TRUE if .note.GNU-stack section with SEC_CODE should be created */
338 COMMON
int flag_execstack
;
340 /* TRUE if .note.GNU-stack section with SEC_CODE should be created */
341 COMMON
int flag_noexecstack
;
343 /* TRUE if .sframe section should be created. */
344 COMMON
int flag_gen_sframe
;
346 /* name of emitted object file */
347 COMMON
const char *out_file_name
;
349 /* Keep the output file. */
352 /* name of file defining extensions to the basic instruction set */
353 COMMON
char *insttbl_file_name
;
355 /* TRUE if we need a second pass. */
356 COMMON
int need_pass_2
;
358 /* TRUE if we should do no relaxing, and
359 leave lots of padding. */
360 COMMON
int linkrelax
;
362 COMMON
int do_not_pad_sections_to_alignment
;
364 enum multibyte_input_handling
370 COMMON
enum multibyte_input_handling multibyte_handling
;
372 /* TRUE if we should produce a listing. */
375 /* Type of debugging information we should generate. We currently support
376 stabs, ECOFF, and DWARF2.
378 NOTE! This means debug information about the assembly source code itself
379 and _not_ about possible debug information from a high-level language.
380 This is especially relevant to DWARF2, since the compiler may emit line
381 number directives that the assembler resolves. */
394 extern enum debug_info_type debug_type
;
395 extern int use_gnu_debug_info_extensions
;
396 COMMON
bool flag_dwarf_sections
;
397 extern int flag_dwarf_cie_version
;
398 extern unsigned int dwarf_level
;
400 /* Maximum level of macro nesting. */
401 extern int max_macro_nest
;
403 /* Verbosity level. */
408 /* Obstack chunk size. Keep large for efficient space use, make small to
409 increase malloc calls for monitoring memory allocation. */
410 extern int chunksize
;
414 /* assembler mnemonic, lower case, no '.' */
415 const char *poc_name
;
417 void (*poc_handler
) (int);
418 /* Value to pass to handler */
422 typedef struct _pseudo_type pseudo_typeS
;
424 #if (__GNUC__ >= 2) && !defined(VMS)
425 /* for use with -Wformat */
427 #if __GNUC__ == 2 && __GNUC_MINOR__ < 6
428 /* Support for double underscores in attribute names was added in gcc
429 2.6, so avoid them if we are using an earlier version. */
430 #define __printf__ printf
431 #define __format__ format
434 #define PRINTF_LIKE(FCN) \
435 void FCN (const char *format, ...) \
436 __attribute__ ((__format__ (__printf__, 1, 2)))
437 #define PRINTF_WHERE_LIKE(FCN) \
438 void FCN (const char *file, unsigned int line, const char *format, ...) \
439 __attribute__ ((__format__ (__printf__, 3, 4)))
440 #define PRINTF_INDENT_LIKE(FCN) \
441 void FCN (const char *file, unsigned int line, unsigned int indent, \
442 const char *format, ...) \
443 __attribute__ ((__format__ (__printf__, 4, 5)))
445 #else /* __GNUC__ < 2 || defined(VMS) */
447 #define PRINTF_LIKE(FCN) void FCN (const char *format, ...)
448 #define PRINTF_WHERE_LIKE(FCN) void FCN (const char *file, \
450 const char *format, ...)
451 #define PRINTF_INDENT_LIKE(FCN) void FCN (const char *file, \
453 unsigned int indent, \
454 const char *format, ...)
456 #endif /* __GNUC__ < 2 || defined(VMS) */
458 PRINTF_LIKE (as_bad
);
459 PRINTF_LIKE (as_fatal
) ATTRIBUTE_NORETURN
;
460 PRINTF_LIKE (as_tsktsk
);
461 PRINTF_LIKE (as_warn
);
462 PRINTF_WHERE_LIKE (as_bad_where
);
463 PRINTF_WHERE_LIKE (as_warn_where
);
464 PRINTF_INDENT_LIKE (as_info_where
);
466 void as_abort (const char *, int, const char *) ATTRIBUTE_NORETURN
;
467 void signal_init (void);
468 int had_errors (void);
469 int had_warnings (void);
470 void as_warn_value_out_of_range (const char *, offsetT
, offsetT
, offsetT
,
471 const char *, unsigned);
472 void as_bad_value_out_of_range (const char *, offsetT
, offsetT
, offsetT
,
473 const char *, unsigned);
474 void print_version_id (void);
475 char * app_push (void);
477 /* Number of littlenums required to hold an extended precision number. */
478 #define MAX_LITTLENUMS 6
480 char * atof_ieee (char *, int, LITTLENUM_TYPE
*);
481 char * atof_ieee_detail (char *, int, int, LITTLENUM_TYPE
*, FLONUM_TYPE
*);
482 const char * ieee_md_atof (int, char *, int *, bool);
483 const char * vax_md_atof (int, char *, int *);
484 char * input_scrub_include_file (const char *, char *);
485 void input_scrub_insert_line (const char *);
486 void input_scrub_insert_file (char *);
487 char * input_scrub_new_file (const char *);
488 char * input_scrub_next_buffer (char **bufp
);
489 size_t do_scrub_chars (size_t (*get
) (char *, size_t), char *, size_t);
490 size_t do_scrub_pending (void);
491 bool scan_for_multibyte_characters (const unsigned char *, const unsigned char *, bool);
492 int gen_to_words (LITTLENUM_TYPE
*, int, long);
494 int ignore_input (void);
495 void cond_finish_check (int);
496 void cond_exit_macro (int);
497 int seen_at_least_1_file (void);
498 void app_pop (char *);
499 void as_report_context (void);
500 const char * as_where (unsigned int *);
501 const char * as_where_top (unsigned int *);
502 const char * as_where_physical (unsigned int *);
503 void bump_line_counters (void);
504 void do_scrub_begin (int);
505 void input_scrub_begin (void);
506 void input_scrub_close (void);
507 void input_scrub_end (void);
508 void new_logical_line (const char *, int);
509 void new_logical_line_flags (const char *, int, int);
510 void subsegs_begin (void);
511 void subsegs_end (struct obstack
**);
512 void subseg_change (segT
, int);
513 segT
subseg_new (const char *, subsegT
);
514 segT
subseg_force_new (const char *, subsegT
);
515 void subseg_set (segT
, subsegT
);
516 int subseg_text_p (segT
);
517 int seg_not_empty_p (segT
);
518 void start_dependencies (char *);
519 void register_dependency (const char *);
520 void print_dependencies (void);
521 segT
subseg_get (const char *, int);
523 char *remap_debug_filename (const char *);
524 void add_debug_prefix_map (const char *);
527 xmemdup0 (const char *in
, size_t len
)
529 return xmemdup (in
, len
, len
+ 1);
534 typedef struct symbol symbolS
;
535 typedef struct frag fragS
;
538 valueT
add_to_literal_pool (symbolS
*, valueT
, segT
, int);
540 int check_eh_frame (struct expressionS
*, unsigned int *);
541 int eh_frame_estimate_size_before_relax (fragS
*);
542 int eh_frame_relax_frag (fragS
*);
543 void eh_frame_convert_frag (fragS
*);
544 int generic_force_reloc (struct fix
*);
546 /* SFrame FRE optimization. */
547 int sframe_estimate_size_before_relax (fragS
*);
548 int sframe_relax_frag (fragS
*);
549 void sframe_convert_frag (fragS
*);
551 #include "expr.h" /* Before targ-*.h */
553 /* This one starts the chain of target dependent headers. */
554 #include "targ-env.h"
557 #define IS_ELF (OUTPUT_FLAVOR == bfd_target_elf_flavour)
576 #ifdef USE_EMULATIONS
582 extern int enable_h_tick_hex
;
586 /* True if we are assembling in m68k MRI mode. */
587 COMMON
int flag_m68k_mri
;
588 #define DOLLAR_AMBIGU flag_m68k_mri
590 #define flag_m68k_mri 0
593 #ifndef TC_STRING_ESCAPES
594 #define TC_STRING_ESCAPES 1
598 COMMON
int warn_comment
;
599 COMMON
unsigned int found_comment
;
600 COMMON
const char * found_comment_file
;
603 #if defined OBJ_ELF || defined OBJ_MAYBE_ELF
604 /* If .size directive failure should be error or warning. */
605 COMMON
int flag_allow_nonconst_size
;
607 /* If we should generate ELF common symbols with the STT_COMMON type. */
608 extern int flag_use_elf_stt_common
;
610 /* TRUE iff GNU Build attribute notes should
611 be generated if none are in the input files. */
612 extern bool flag_generate_build_notes
;
614 /* If section name substitution sequences should be honored */
615 COMMON
int flag_sectname_subst
;
618 #ifndef DOLLAR_AMBIGU
619 #define DOLLAR_AMBIGU 0
622 #ifndef NUMBERS_WITH_SUFFIX
623 #define NUMBERS_WITH_SUFFIX 0
626 #ifndef LOCAL_LABELS_DOLLAR
627 #define LOCAL_LABELS_DOLLAR 0
630 #ifndef LOCAL_LABELS_FB
631 #define LOCAL_LABELS_FB 0
634 #ifndef LABELS_WITHOUT_COLONS
635 #define LABELS_WITHOUT_COLONS 0
638 #ifndef NO_PSEUDO_DOT
639 #define NO_PSEUDO_DOT 0
642 #ifndef TEXT_SECTION_NAME
643 #define TEXT_SECTION_NAME ".text"
644 #define DATA_SECTION_NAME ".data"
645 #define BSS_SECTION_NAME ".bss"
648 #ifndef OCTETS_PER_BYTE_POWER
649 #define OCTETS_PER_BYTE_POWER 0
651 #ifndef OCTETS_PER_BYTE
652 #define OCTETS_PER_BYTE (1<<OCTETS_PER_BYTE_POWER)
654 #if OCTETS_PER_BYTE != (1<<OCTETS_PER_BYTE_POWER)
655 #error "Octets per byte conflicts with its power-of-two definition!"
658 #if defined OBJ_ELF || defined OBJ_MAYBE_ELF
659 /* On ELF platforms, mark debug sections with SEC_ELF_OCTETS */
660 #define SEC_OCTETS (IS_ELF ? SEC_ELF_OCTETS : 0)
665 #define POISON_BFD_BOOLEAN 1