[gdb/build] Add CXX_DIALECT to CXX
[deliverable/binutils-gdb.git] / gas / as.c
CommitLineData
252b5132 1/* as.c - GAS main program.
250d07de 2 Copyright (C) 1987-2021 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
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
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
ec2655a6
NC
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.
252b5132
RH
15
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
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
76b0a8c0 21/* Main program for AS; a 32-bit assembler of GNU.
33948635
NC
22 Understands command arguments.
23 Has a few routines that don't fit in other modules because they
24 are shared.
34bca508 25
33948635 26 bugs
34bca508 27
33948635
NC
28 : initialisers
29 Since no-one else says they will support them in future: I
30 don't support them now. */
252b5132 31
252b5132
RH
32#define COMMON
33
5f71e59e
JW
34/* Disable code to set FAKE_LABEL_NAME in obj-multi.h, to avoid circular
35 reference. */
36#define INITIALIZING_EMULS
37
252b5132
RH
38#include "as.h"
39#include "subsegs.h"
40#include "output-file.h"
41#include "sb.h"
42#include "macro.h"
bccba5f0 43#include "dwarf2dbg.h"
54cfded0 44#include "dw2gencfi.h"
b95d15c6 45#include "bfdver.h"
2469b3c5 46#include "write.h"
b95d15c6 47
84be4d71
ILT
48#ifdef HAVE_ITBL_CPU
49#include "itbl-ops.h"
50#else
252b5132
RH
51#define itbl_init()
52#endif
53
9cc92a36
NC
54#ifdef USING_CGEN
55/* Perform any cgen specific initialisation for gas. */
33948635 56extern void gas_cgen_begin (void);
9cc92a36 57#endif
252b5132 58
33948635
NC
59/* We build a list of defsyms as we read the options, and then define
60 them after we have initialized everything. */
61struct defsym_list
62{
63 struct defsym_list *next;
64 char *name;
65 valueT value;
66};
67
68
76b0a8c0
KH
69/* True if a listing is wanted. */
70int listing;
252b5132 71
252b5132 72/* Type of debugging to generate. */
4dc7ead9 73enum debug_info_type debug_type = DEBUG_UNSPECIFIED;
05da4302 74int use_gnu_debug_info_extensions = 0;
252b5132 75
329e276d
NC
76#ifndef MD_DEBUG_FORMAT_SELECTOR
77#define MD_DEBUG_FORMAT_SELECTOR NULL
78#endif
79static enum debug_info_type (*md_debug_format_selector) (int *) = MD_DEBUG_FORMAT_SELECTOR;
80
252b5132 81/* Maximum level of macro nesting. */
252b5132
RH
82int max_macro_nest = 100;
83
76b0a8c0 84/* argv[0] */
87c245cc 85static char * myname;
252b5132
RH
86
87/* The default obstack chunk size. If we set this to zero, the
88 obstack code will use whatever will fit in a 4096 byte block. */
89int chunksize = 0;
90
91/* To monitor memory allocation more effectively, make this non-zero.
92 Then the chunk sizes for gas and bfd will be reduced. */
93int debug_memory = 0;
94
54cfded0
AM
95/* Enable verbose mode. */
96int verbose = 0;
97
0ac2b354
AB
98/* Which version of DWARF CIE to produce. This default value of -1
99 indicates that this value has not been set yet, a default value is
100 provided in dwarf2_init. A different value can also be supplied by the
101 command line flag --gdwarf-cie-version, or by a target in
102 MD_AFTER_PARSE_ARGS. */
103int flag_dwarf_cie_version = -1;
66f8b2cb 104
3f853ba3
NC
105/* The maximum level of DWARF DEBUG information we should manufacture.
106 This defaults to 3 unless overridden by a command line option. */
107unsigned int dwarf_level = 3;
31bf1864 108
b8871f35
L
109#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
110int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;
5b7c81bd 111bool flag_generate_build_notes = DEFAULT_GENERATE_BUILD_NOTES;
b8871f35
L
112#endif
113
58e8191c 114/* Keep the output file. */
85024cd8 115static int keep_it = 0;
58e8191c 116
33948635
NC
117segT reg_section;
118segT expr_section;
119segT text_section;
120segT data_section;
121segT bss_section;
252b5132 122
33948635
NC
123/* Name of listing file. */
124static char *listing_filename = NULL;
252b5132
RH
125
126static struct defsym_list *defsyms;
127
732f54cd
JB
128#ifdef HAVE_ITBL_CPU
129/* Keep a record of the itbl files we read in. */
130struct itbl_file_list
131{
132 struct itbl_file_list *next;
133 char *name;
134};
33948635 135static struct itbl_file_list *itbl_files;
732f54cd 136#endif
252b5132 137
33948635 138static long start_time;
252b5132 139
caa32fe5
NC
140static int flag_macro_alternate;
141
252b5132 142\f
252b5132
RH
143#ifdef USE_EMULATIONS
144#define EMULATION_ENVIRON "AS_EMULATION"
145
146extern struct emulation mipsbelf, mipslelf, mipself;
4c63da97 147extern struct emulation i386coff, i386elf, i386aout;
3bcbcc3d 148extern struct emulation crisaout, criself;
252b5132
RH
149
150static struct emulation *const emulations[] = { EMULATIONS };
151static const int n_emulations = sizeof (emulations) / sizeof (emulations[0]);
152
252b5132 153static void
33948635 154select_emulation_mode (int argc, char **argv)
252b5132
RH
155{
156 int i;
e0471c16
TS
157 char *p;
158 const char *em = NULL;
252b5132
RH
159
160 for (i = 1; i < argc; i++)
d34049e8 161 if (startswith (argv[i], "--em"))
252b5132
RH
162 break;
163
164 if (i == argc)
165 goto do_default;
166
167 p = strchr (argv[i], '=');
168 if (p)
169 p++;
170 else
76b0a8c0 171 p = argv[i + 1];
252b5132
RH
172
173 if (!p || !*p)
174 as_fatal (_("missing emulation mode name"));
175 em = p;
176
177 do_default:
178 if (em == 0)
179 em = getenv (EMULATION_ENVIRON);
180 if (em == 0)
181 em = DEFAULT_EMULATION;
182
183 if (em)
184 {
185 for (i = 0; i < n_emulations; i++)
186 if (!strcmp (emulations[i]->name, em))
187 break;
188 if (i == n_emulations)
189 as_fatal (_("unrecognized emulation name `%s'"), em);
190 this_emulation = emulations[i];
191 }
192 else
193 this_emulation = emulations[0];
194
195 this_emulation->init ();
196}
197
198const char *
33948635 199default_emul_bfd_name (void)
252b5132
RH
200{
201 abort ();
202 return NULL;
203}
204
205void
33948635 206common_emul_init (void)
252b5132
RH
207{
208 this_format = this_emulation->format;
209
210 if (this_emulation->leading_underscore == 2)
211 this_emulation->leading_underscore = this_format->dfl_leading_underscore;
212
213 if (this_emulation->default_endian != 2)
214 target_big_endian = this_emulation->default_endian;
215
216 if (this_emulation->fake_label_name == 0)
217 {
218 if (this_emulation->leading_underscore)
2469b3c5 219 this_emulation->fake_label_name = FAKE_LABEL_NAME;
252b5132
RH
220 else
221 /* What other parameters should we test? */
2469b3c5 222 this_emulation->fake_label_name = "." FAKE_LABEL_NAME;
252b5132
RH
223 }
224}
225#endif
226
4c63da97 227void
33948635 228print_version_id (void)
4c63da97
AM
229{
230 static int printed;
33948635 231
4c63da97
AM
232 if (printed)
233 return;
234 printed = 1;
235
7be1c489 236 fprintf (stderr, _("GNU assembler version %s (%s) using BFD version %s\n"),
403487ec 237 VERSION, TARGET_ALIAS, BFD_VERSION_STRING);
4c63da97
AM
238}
239
e12fe555
NC
240#ifdef DEFAULT_FLAG_COMPRESS_DEBUG
241enum compressed_debug_section_type flag_compress_debug
242 = COMPRESS_DEBUG_GABI_ZLIB;
243#endif
244
4c63da97 245static void
33948635 246show_usage (FILE * stream)
4c63da97
AM
247{
248 fprintf (stream, _("Usage: %s [option...] [asmfile...]\n"), myname);
249
250 fprintf (stream, _("\
251Options:\n\
252 -a[sub-option...] turn on listings\n\
253 Sub-options [default hls]:\n\
254 c omit false conditionals\n\
255 d omit debugging directives\n\
83f10cb2 256 g include general info\n\
4c63da97
AM
257 h include high-level source\n\
258 l include assembly\n\
259 m include macro expansions\n\
260 n omit forms processing\n\
261 s include symbols\n\
4c63da97
AM
262 =FILE list to FILE (must be last sub-option)\n"));
263
caa32fe5
NC
264 fprintf (stream, _("\
265 --alternate initially turn on alternate macro syntax\n"));
e12fe555 266#ifdef DEFAULT_FLAG_COMPRESS_DEBUG
4c63da97 267 fprintf (stream, _("\
151411f8 268 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n\
e12fe555 269 compress DWARF debug sections using zlib [default]\n"));
700c4060
CC
270 fprintf (stream, _("\
271 --nocompress-debug-sections\n\
272 don't compress DWARF debug sections\n"));
e12fe555
NC
273#else
274 fprintf (stream, _("\
275 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n\
276 compress DWARF debug sections using zlib\n"));
277 fprintf (stream, _("\
278 --nocompress-debug-sections\n\
279 don't compress DWARF debug sections [default]\n"));
280#endif
700c4060 281 fprintf (stream, _("\
4c63da97
AM
282 -D produce assembler debugging messages\n"));
283 fprintf (stream, _("\
700c4060
CC
284 --debug-prefix-map OLD=NEW\n\
285 map OLD to NEW in debug information\n"));
3d6b762c 286 fprintf (stream, _("\
4c63da97
AM
287 --defsym SYM=VAL define symbol SYM to given value\n"));
288#ifdef USE_EMULATIONS
289 {
290 int i;
e0471c16 291 const char *def_em;
4c63da97
AM
292
293 fprintf (stream, "\
294 --em=[");
76b0a8c0 295 for (i = 0; i < n_emulations - 1; i++)
4c63da97
AM
296 fprintf (stream, "%s | ", emulations[i]->name);
297 fprintf (stream, "%s]\n", emulations[i]->name);
298
299 def_em = getenv (EMULATION_ENVIRON);
76b0a8c0 300 if (!def_em)
4c63da97
AM
301 def_em = DEFAULT_EMULATION;
302 fprintf (stream, _("\
303 emulate output (default %s)\n"), def_em);
304 }
68d55fe3 305#endif
7be1c489 306#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
307 fprintf (stream, _("\
308 --execstack require executable stack for this object\n"));
309 fprintf (stream, _("\
310 --noexecstack don't require executable stack for this object\n"));
21be61f5
L
311 fprintf (stream, _("\
312 --size-check=[error|warning]\n\
313 ELF .size directive check (default --size-check=error)\n"));
451133ce 314 fprintf (stream, _("\
3a53fb12
L
315 --elf-stt-common=[no|yes] "));
316 if (DEFAULT_GENERATE_ELF_STT_COMMON)
317 fprintf (stream, _("(default: yes)\n"));
318 else
319 fprintf (stream, _("(default: no)\n"));
320 fprintf (stream, _("\
b8871f35
L
321 generate ELF common symbols with STT_COMMON type\n"));
322 fprintf (stream, _("\
451133ce 323 --sectname-subst enable section name substitution sequences\n"));
0df8ad28
NC
324
325 fprintf (stream, _("\
326 --generate-missing-build-notes=[no|yes] "));
327#if DEFAULT_GENERATE_BUILD_NOTES
328 fprintf (stream, _("(default: yes)\n"));
329#else
330 fprintf (stream, _("(default: no)\n"));
4c63da97 331#endif
0df8ad28
NC
332 fprintf (stream, _("\
333 generate GNU Build notes if none are present in the input\n"));
334#endif /* OBJ_ELF */
335
4c63da97
AM
336 fprintf (stream, _("\
337 -f skip whitespace and comment preprocessing\n"));
338 fprintf (stream, _("\
329e276d
NC
339 -g --gen-debug generate debugging information\n"));
340 fprintf (stream, _("\
341 --gstabs generate STABS debugging information\n"));
4c63da97 342 fprintf (stream, _("\
329e276d 343 --gstabs+ generate STABS debug info with GNU extensions\n"));
05da4302 344 fprintf (stream, _("\
31bf1864 345 --gdwarf-<N> generate DWARF<N> debugging information. 2 <= <N> <= 5\n"));
4c63da97 346 fprintf (stream, _("\
b40bf0a2
NC
347 --gdwarf-sections generate per-function section names for DWARF line information\n"));
348 fprintf (stream, _("\
ea20a7da
CC
349 --target-help show target specific options\n"));
350 fprintf (stream, _("\
4c63da97
AM
351 -I DIR add DIR to search list for .include directives\n"));
352 fprintf (stream, _("\
353 -J don't warn about signed overflow\n"));
354 fprintf (stream, _("\
355 -K warn when differences altered for long displacements\n"));
356 fprintf (stream, _("\
357 -L,--keep-locals keep local symbols (e.g. starting with `L')\n"));
358 fprintf (stream, _("\
359 -M,--mri assemble in MRI compatibility mode\n"));
360 fprintf (stream, _("\
361 --MD FILE write dependency information in FILE (default none)\n"));
362 fprintf (stream, _("\
363 -nocpp ignored\n"));
364 fprintf (stream, _("\
2edb36e7
NC
365 -no-pad-sections do not pad the end of sections to alignment boundaries\n"));
366 fprintf (stream, _("\
4c63da97
AM
367 -o OBJFILE name the object-file output OBJFILE (default a.out)\n"));
368 fprintf (stream, _("\
369 -R fold data section into text section\n"));
370 fprintf (stream, _("\
371 --statistics print various measured statistics from execution\n"));
372 fprintf (stream, _("\
373 --strip-local-absolute strip local absolute symbols\n"));
374 fprintf (stream, _("\
375 --traditional-format Use same format as native assembler when possible\n"));
376 fprintf (stream, _("\
377 --version print assembler version number and exit\n"));
378 fprintf (stream, _("\
379 -W --no-warn suppress warnings\n"));
380 fprintf (stream, _("\
381 --warn don't suppress warnings\n"));
382 fprintf (stream, _("\
383 --fatal-warnings treat warnings as errors\n"));
732f54cd 384#ifdef HAVE_ITBL_CPU
4c63da97
AM
385 fprintf (stream, _("\
386 --itbl INSTTBL extend instruction set to include instructions\n\
387 matching the specifications defined in file INSTTBL\n"));
732f54cd 388#endif
4c63da97
AM
389 fprintf (stream, _("\
390 -w ignored\n"));
391 fprintf (stream, _("\
392 -X ignored\n"));
393 fprintf (stream, _("\
394 -Z generate object file even after errors\n"));
395 fprintf (stream, _("\
396 --listing-lhs-width set the width in words of the output data column of\n\
397 the listing\n"));
398 fprintf (stream, _("\
399 --listing-lhs-width2 set the width in words of the continuation lines\n\
400 of the output data column; ignored if smaller than\n\
401 the width of the first line\n"));
402 fprintf (stream, _("\
403 --listing-rhs-width set the max width in characters of the lines from\n\
404 the source file\n"));
405 fprintf (stream, _("\
406 --listing-cont-lines set the maximum number of continuation lines used\n\
407 for the output data column of the listing\n"));
a55ff675 408 fprintf (stream, _("\
34bca508 409 @FILE read options from FILE\n"));
4c63da97
AM
410
411 md_show_usage (stream);
412
c20f4f8c 413 fputc ('\n', stream);
92f01d61
JM
414
415 if (REPORT_BUGS_TO[0] && stream == stdout)
416 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
4c63da97
AM
417}
418
76b0a8c0
KH
419/* Since it is easy to do here we interpret the special arg "-"
420 to mean "use stdin" and we set that argv[] pointing to "".
421 After we have munged argv[], the only things left are source file
422 name(s) and ""(s) denoting stdin. These file names are used
423 (perhaps more than once) later.
424
425 check for new machine-dep cmdline options in
426 md_parse_option definitions in config/tc-*.c. */
252b5132
RH
427
428static void
33948635 429parse_args (int * pargc, char *** pargv)
252b5132 430{
33948635
NC
431 int old_argc;
432 int new_argc;
433 char ** old_argv;
434 char ** new_argv;
252b5132
RH
435 /* Starting the short option string with '-' is for programs that
436 expect options and other ARGV-elements in any order and that care about
437 the ordering of the two. We describe each non-option ARGV-element
438 as if it were the argument of an option with character code 1. */
252b5132 439 char *shortopts;
5a38dc70 440 extern const char *md_shortopts;
33948635
NC
441 static const char std_shortopts[] =
442 {
30a2b4ef 443 '-', 'J',
252b5132 444#ifndef WORKING_DOT_WORD
30a2b4ef
KH
445 /* -K is not meaningful if .word is not being hacked. */
446 'K',
252b5132 447#endif
8f94ae4d 448 'L', 'M', 'R', 'W', 'Z', 'a', ':', ':', 'D', 'f', 'g', ':',':', 'I', ':', 'o', ':',
252b5132 449#ifndef VMS
30a2b4ef
KH
450 /* -v takes an argument on VMS, so we don't make it a generic
451 option. */
452 'v',
252b5132 453#endif
30a2b4ef 454 'w', 'X',
732f54cd 455#ifdef HAVE_ITBL_CPU
33948635 456 /* New option for extending instruction set (see also --itbl below). */
30a2b4ef 457 't', ':',
732f54cd 458#endif
30a2b4ef
KH
459 '\0'
460 };
252b5132
RH
461 struct option *longopts;
462 extern struct option md_longopts[];
463 extern size_t md_longopts_size;
33948635
NC
464 /* Codes used for the long options with no short synonyms. */
465 enum option_values
466 {
467 OPTION_HELP = OPTION_STD_BASE,
468 OPTION_NOCPP,
469 OPTION_STATISTICS,
470 OPTION_VERSION,
471 OPTION_DUMPCONFIG,
472 OPTION_VERBOSE,
473 OPTION_EMULATION,
3d6b762c 474 OPTION_DEBUG_PREFIX_MAP,
33948635 475 OPTION_DEFSYM,
33948635
NC
476 OPTION_LISTING_LHS_WIDTH,
477 OPTION_LISTING_LHS_WIDTH2,
478 OPTION_LISTING_RHS_WIDTH,
479 OPTION_LISTING_CONT_LINES,
480 OPTION_DEPFILE,
481 OPTION_GSTABS,
05da4302 482 OPTION_GSTABS_PLUS,
31bf1864
NC
483 OPTION_GDWARF_2,
484 OPTION_GDWARF_3,
485 OPTION_GDWARF_4,
486 OPTION_GDWARF_5,
b40bf0a2 487 OPTION_GDWARF_SECTIONS,
66f8b2cb 488 OPTION_GDWARF_CIE_VERSION,
33948635
NC
489 OPTION_STRIP_LOCAL_ABSOLUTE,
490 OPTION_TRADITIONAL_FORMAT,
33948635
NC
491 OPTION_WARN,
492 OPTION_TARGET_HELP,
493 OPTION_EXECSTACK,
494 OPTION_NOEXECSTACK,
21be61f5 495 OPTION_SIZE_CHECK,
b8871f35 496 OPTION_ELF_STT_COMMON,
0df8ad28 497 OPTION_ELF_BUILD_NOTES,
451133ce 498 OPTION_SECTNAME_SUBST,
caa32fe5 499 OPTION_ALTERNATE,
5a14ab23 500 OPTION_AL,
4bdd3565
NC
501 OPTION_HASH_TABLE_SIZE,
502 OPTION_REDUCE_MEMORY_OVERHEADS,
0acf065b
CC
503 OPTION_WARN_FATAL,
504 OPTION_COMPRESS_DEBUG,
2edb36e7
NC
505 OPTION_NOCOMPRESS_DEBUG,
506 OPTION_NO_PAD_SECTIONS /* = STD_BASE + 40 */
329e276d
NC
507 /* When you add options here, check that they do
508 not collide with OPTION_MD_BASE. See as.h. */
33948635 509 };
34bca508 510
33948635
NC
511 static const struct option std_longopts[] =
512 {
329e276d 513 /* Note: commas are placed at the start of the line rather than
cc643b88 514 the end of the preceding line so that it is simpler to
329e276d
NC
515 selectively add and remove lines from this list. */
516 {"alternate", no_argument, NULL, OPTION_ALTERNATE}
fb767913
NC
517 /* The entry for "a" is here to prevent getopt_long_only() from
518 considering that -a is an abbreviation for --alternate. This is
519 necessary because -a=<FILE> is a valid switch but getopt would
520 normally reject it since --alternate does not take an argument. */
521 ,{"a", optional_argument, NULL, 'a'}
5a14ab23
L
522 /* Handle -al=<FILE>. */
523 ,{"al", optional_argument, NULL, OPTION_AL}
151411f8 524 ,{"compress-debug-sections", optional_argument, NULL, OPTION_COMPRESS_DEBUG}
0acf065b 525 ,{"nocompress-debug-sections", no_argument, NULL, OPTION_NOCOMPRESS_DEBUG}
3d6b762c 526 ,{"debug-prefix-map", required_argument, NULL, OPTION_DEBUG_PREFIX_MAP}
329e276d
NC
527 ,{"defsym", required_argument, NULL, OPTION_DEFSYM}
528 ,{"dump-config", no_argument, NULL, OPTION_DUMPCONFIG}
529 ,{"emulation", required_argument, NULL, OPTION_EMULATION}
7be1c489 530#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
329e276d
NC
531 ,{"execstack", no_argument, NULL, OPTION_EXECSTACK}
532 ,{"noexecstack", no_argument, NULL, OPTION_NOEXECSTACK}
21be61f5 533 ,{"size-check", required_argument, NULL, OPTION_SIZE_CHECK}
b8871f35 534 ,{"elf-stt-common", required_argument, NULL, OPTION_ELF_STT_COMMON}
451133ce 535 ,{"sectname-subst", no_argument, NULL, OPTION_SECTNAME_SUBST}
0df8ad28 536 ,{"generate-missing-build-notes", required_argument, NULL, OPTION_ELF_BUILD_NOTES}
329e276d
NC
537#endif
538 ,{"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL}
31bf1864
NC
539 ,{"gdwarf-2", no_argument, NULL, OPTION_GDWARF_2}
540 ,{"gdwarf-3", no_argument, NULL, OPTION_GDWARF_3}
541 ,{"gdwarf-4", no_argument, NULL, OPTION_GDWARF_4}
542 ,{"gdwarf-5", no_argument, NULL, OPTION_GDWARF_5}
543 /* GCC uses --gdwarf-2 but GAS used to to use --gdwarf2,
329e276d 544 so we keep it here for backwards compatibility. */
31bf1864 545 ,{"gdwarf2", no_argument, NULL, OPTION_GDWARF_2}
b40bf0a2 546 ,{"gdwarf-sections", no_argument, NULL, OPTION_GDWARF_SECTIONS}
66f8b2cb 547 ,{"gdwarf-cie-version", required_argument, NULL, OPTION_GDWARF_CIE_VERSION}
329e276d
NC
548 ,{"gen-debug", no_argument, NULL, 'g'}
549 ,{"gstabs", no_argument, NULL, OPTION_GSTABS}
550 ,{"gstabs+", no_argument, NULL, OPTION_GSTABS_PLUS}
4bdd3565 551 ,{"hash-size", required_argument, NULL, OPTION_HASH_TABLE_SIZE}
329e276d 552 ,{"help", no_argument, NULL, OPTION_HELP}
732f54cd 553#ifdef HAVE_ITBL_CPU
252b5132
RH
554 /* New option for extending instruction set (see also -t above).
555 The "-t file" or "--itbl file" option extends the basic set of
556 valid instructions by reading "file", a text file containing a
557 list of instruction formats. The additional opcodes and their
558 formats are added to the built-in set of instructions, and
559 mnemonics for new registers may also be defined. */
732f54cd
JB
560 ,{"itbl", required_argument, NULL, 't'}
561#endif
329e276d
NC
562 /* getopt allows abbreviations, so we do this to stop it from
563 treating -k as an abbreviation for --keep-locals. Some
564 ports use -k to enable PIC assembly. */
565 ,{"keep-locals", no_argument, NULL, 'L'}
566 ,{"keep-locals", no_argument, NULL, 'L'}
567 ,{"listing-lhs-width", required_argument, NULL, OPTION_LISTING_LHS_WIDTH}
568 ,{"listing-lhs-width2", required_argument, NULL, OPTION_LISTING_LHS_WIDTH2}
569 ,{"listing-rhs-width", required_argument, NULL, OPTION_LISTING_RHS_WIDTH}
570 ,{"listing-cont-lines", required_argument, NULL, OPTION_LISTING_CONT_LINES}
571 ,{"MD", required_argument, NULL, OPTION_DEPFILE}
572 ,{"mri", no_argument, NULL, 'M'}
573 ,{"nocpp", no_argument, NULL, OPTION_NOCPP}
2edb36e7 574 ,{"no-pad-sections", no_argument, NULL, OPTION_NO_PAD_SECTIONS}
329e276d 575 ,{"no-warn", no_argument, NULL, 'W'}
4bdd3565 576 ,{"reduce-memory-overheads", no_argument, NULL, OPTION_REDUCE_MEMORY_OVERHEADS}
329e276d
NC
577 ,{"statistics", no_argument, NULL, OPTION_STATISTICS}
578 ,{"strip-local-absolute", no_argument, NULL, OPTION_STRIP_LOCAL_ABSOLUTE}
579 ,{"version", no_argument, NULL, OPTION_VERSION}
580 ,{"verbose", no_argument, NULL, OPTION_VERBOSE}
581 ,{"target-help", no_argument, NULL, OPTION_TARGET_HELP}
582 ,{"traditional-format", no_argument, NULL, OPTION_TRADITIONAL_FORMAT}
583 ,{"warn", no_argument, NULL, OPTION_WARN}
252b5132
RH
584 };
585
beb2de9b
AC
586 /* Construct the option lists from the standard list and the target
587 dependent list. Include space for an extra NULL option and
76b0a8c0 588 always NULL terminate. */
252b5132 589 shortopts = concat (std_shortopts, md_shortopts, (char *) NULL);
1e9cc1c2
NC
590 longopts = (struct option *) xmalloc (sizeof (std_longopts)
591 + md_longopts_size + sizeof (struct option));
252b5132 592 memcpy (longopts, std_longopts, sizeof (std_longopts));
33948635
NC
593 memcpy (((char *) longopts) + sizeof (std_longopts), md_longopts, md_longopts_size);
594 memset (((char *) longopts) + sizeof (std_longopts) + md_longopts_size,
beb2de9b 595 0, sizeof (struct option));
252b5132
RH
596
597 /* Make a local copy of the old argv. */
598 old_argc = *pargc;
599 old_argv = *pargv;
600
601 /* Initialize a new argv that contains no options. */
add39d23 602 new_argv = XNEWVEC (char *, old_argc + 1);
252b5132
RH
603 new_argv[0] = old_argv[0];
604 new_argc = 1;
605 new_argv[new_argc] = NULL;
606
607 while (1)
608 {
609 /* getopt_long_only is like getopt_long, but '-' as well as '--' can
610 indicate a long option. */
611 int longind;
612 int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts,
613 &longind);
614
615 if (optc == -1)
616 break;
617
618 switch (optc)
619 {
620 default:
621 /* md_parse_option should return 1 if it recognizes optc,
622 0 if not. */
623 if (md_parse_option (optc, optarg) != 0)
624 break;
625 /* `-v' isn't included in the general short_opts list, so check for
47eebc20 626 it explicitly here before deciding we've gotten a bad argument. */
252b5132
RH
627 if (optc == 'v')
628 {
629#ifdef VMS
630 /* Telling getopt to treat -v's value as optional can result
631 in it picking up a following filename argument here. The
632 VMS code in md_parse_option can return 0 in that case,
633 but it has no way of pushing the filename argument back. */
634 if (optarg && *optarg)
30a2b4ef 635 new_argv[new_argc++] = optarg, new_argv[new_argc] = NULL;
252b5132
RH
636 else
637#else
638 case 'v':
639#endif
640 case OPTION_VERBOSE:
641 print_version_id ();
54cfded0 642 verbose = 1;
252b5132
RH
643 break;
644 }
329e276d
NC
645 else
646 as_bad (_("unrecognized option -%c%s"), optc, optarg ? optarg : "");
76b0a8c0 647 /* Fall through. */
252b5132
RH
648
649 case '?':
650 exit (EXIT_FAILURE);
651
652 case 1: /* File name. */
653 if (!strcmp (optarg, "-"))
97830986 654 optarg = (char *) "";
252b5132
RH
655 new_argv[new_argc++] = optarg;
656 new_argv[new_argc] = NULL;
657 break;
ef99799a 658
ea20a7da 659 case OPTION_TARGET_HELP:
411863a4
KH
660 md_show_usage (stdout);
661 exit (EXIT_SUCCESS);
252b5132
RH
662
663 case OPTION_HELP:
664 show_usage (stdout);
665 exit (EXIT_SUCCESS);
666
667 case OPTION_NOCPP:
668 break;
669
2edb36e7
NC
670 case OPTION_NO_PAD_SECTIONS:
671 do_not_pad_sections_to_alignment = 1;
672 break;
673
252b5132
RH
674 case OPTION_STATISTICS:
675 flag_print_statistics = 1;
676 break;
677
678 case OPTION_STRIP_LOCAL_ABSOLUTE:
679 flag_strip_local_absolute = 1;
680 break;
681
682 case OPTION_TRADITIONAL_FORMAT:
683 flag_traditional_format = 1;
684 break;
685
686 case OPTION_VERSION:
687 /* This output is intended to follow the GNU standards document. */
6c19f338 688 printf (_("GNU assembler %s\n"), BFD_VERSION_STRING);
250d07de 689 printf (_("Copyright (C) 2021 Free Software Foundation, Inc.\n"));
252b5132
RH
690 printf (_("\
691This program is free software; you may redistribute it under the terms of\n\
ec2655a6
NC
692the GNU General Public License version 3 or later.\n\
693This program has absolutely no warranty.\n"));
9004b6bd
AB
694#ifdef TARGET_WITH_CPU
695 printf (_("This assembler was configured for a target of `%s' "
696 "and default,\ncpu type `%s'.\n"),
697 TARGET_ALIAS, TARGET_WITH_CPU);
698#else
252b5132
RH
699 printf (_("This assembler was configured for a target of `%s'.\n"),
700 TARGET_ALIAS);
9004b6bd 701#endif
252b5132
RH
702 exit (EXIT_SUCCESS);
703
704 case OPTION_EMULATION:
705#ifdef USE_EMULATIONS
706 if (strcmp (optarg, this_emulation->name))
707 as_fatal (_("multiple emulation names specified"));
708#else
709 as_fatal (_("emulations not handled in this configuration"));
710#endif
711 break;
712
713 case OPTION_DUMPCONFIG:
714 fprintf (stderr, _("alias = %s\n"), TARGET_ALIAS);
715 fprintf (stderr, _("canonical = %s\n"), TARGET_CANONICAL);
716 fprintf (stderr, _("cpu-type = %s\n"), TARGET_CPU);
717#ifdef TARGET_OBJ_FORMAT
718 fprintf (stderr, _("format = %s\n"), TARGET_OBJ_FORMAT);
719#endif
720#ifdef TARGET_FORMAT
721 fprintf (stderr, _("bfd-target = %s\n"), TARGET_FORMAT);
722#endif
723 exit (EXIT_SUCCESS);
724
0acf065b 725 case OPTION_COMPRESS_DEBUG:
151411f8
L
726 if (optarg)
727 {
728#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
729 if (strcasecmp (optarg, "none") == 0)
730 flag_compress_debug = COMPRESS_DEBUG_NONE;
731 else if (strcasecmp (optarg, "zlib") == 0)
19a7fe52 732 flag_compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
151411f8
L
733 else if (strcasecmp (optarg, "zlib-gnu") == 0)
734 flag_compress_debug = COMPRESS_DEBUG_GNU_ZLIB;
735 else if (strcasecmp (optarg, "zlib-gabi") == 0)
736 flag_compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
737 else
738 as_fatal (_("Invalid --compress-debug-sections option: `%s'"),
739 optarg);
740#else
741 as_fatal (_("--compress-debug-sections=%s is unsupported"),
742 optarg);
743#endif
744 }
745 else
19a7fe52 746 flag_compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
0acf065b
CC
747 break;
748
749 case OPTION_NOCOMPRESS_DEBUG:
151411f8 750 flag_compress_debug = COMPRESS_DEBUG_NONE;
0acf065b
CC
751 break;
752
3d6b762c
JM
753 case OPTION_DEBUG_PREFIX_MAP:
754 add_debug_prefix_map (optarg);
755 break;
756
252b5132
RH
757 case OPTION_DEFSYM:
758 {
759 char *s;
a38cf1db 760 valueT i;
252b5132
RH
761 struct defsym_list *n;
762
763 for (s = optarg; *s != '\0' && *s != '='; s++)
764 ;
765 if (*s == '\0')
766 as_fatal (_("bad defsym; format is --defsym name=value"));
767 *s++ = '\0';
a38cf1db 768 i = bfd_scan_vma (s, (const char **) NULL, 0);
add39d23 769 n = XNEW (struct defsym_list);
252b5132
RH
770 n->next = defsyms;
771 n->name = optarg;
772 n->value = i;
773 defsyms = n;
774 }
775 break;
776
732f54cd 777#ifdef HAVE_ITBL_CPU
252b5132
RH
778 case 't':
779 {
76b0a8c0
KH
780 /* optarg is the name of the file containing the instruction
781 formats, opcodes, register names, etc. */
252b5132
RH
782 struct itbl_file_list *n;
783
784 if (optarg == NULL)
785 {
0e389e77 786 as_warn (_("no file name following -t option"));
252b5132
RH
787 break;
788 }
76b0a8c0 789
325801bd 790 n = XNEW (struct itbl_file_list);
252b5132
RH
791 n->next = itbl_files;
792 n->name = optarg;
793 itbl_files = n;
794
795 /* Parse the file and add the new instructions to our internal
76b0a8c0
KH
796 table. If multiple instruction tables are specified, the
797 information from this table gets appended onto the existing
798 internal table. */
252b5132
RH
799 itbl_files->name = xstrdup (optarg);
800 if (itbl_parse (itbl_files->name) != 0)
0e389e77
AM
801 as_fatal (_("failed to read instruction table %s\n"),
802 itbl_files->name);
252b5132
RH
803 }
804 break;
732f54cd 805#endif
252b5132
RH
806
807 case OPTION_DEPFILE:
808 start_dependencies (optarg);
809 break;
810
329e276d 811 case 'g':
8f94ae4d
NC
812 /* Some backends, eg Alpha and Mips, use the -g switch for their
813 own purposes. So we check here for an explicit -g and allow
329e276d
NC
814 the backend to decide if it wants to process it. */
815 if ( old_argv[optind - 1][1] == 'g'
329e276d
NC
816 && md_parse_option (optc, optarg))
817 continue;
818
4a5700b6
MW
819 /* We end up here for any -gsomething-not-already-a-long-option.
820 give some useful feedback on not (yet) supported -gdwarfxxx
821 versions/sections/options. */
d34049e8 822 if (startswith (old_argv[optind - 1], "-gdwarf"))
4a5700b6
MW
823 as_fatal (_("unknown DWARF option %s\n"), old_argv[optind - 1]);
824
329e276d
NC
825 if (md_debug_format_selector)
826 debug_type = md_debug_format_selector (& use_gnu_debug_info_extensions);
827 else if (IS_ELF)
31bf1864
NC
828 {
829 debug_type = DEBUG_DWARF2;
830 dwarf_level = 2;
831 }
329e276d
NC
832 else
833 debug_type = DEBUG_STABS;
834 break;
835
05da4302
NC
836 case OPTION_GSTABS_PLUS:
837 use_gnu_debug_info_extensions = 1;
838 /* Fall through. */
252b5132
RH
839 case OPTION_GSTABS:
840 debug_type = DEBUG_STABS;
841 break;
76b0a8c0 842
31bf1864
NC
843 case OPTION_GDWARF_2:
844 debug_type = DEBUG_DWARF2;
845 dwarf_level = 2;
846 break;
847
848 case OPTION_GDWARF_3:
849 debug_type = DEBUG_DWARF2;
850 dwarf_level = 3;
851 break;
852
853 case OPTION_GDWARF_4:
fac0d250 854 debug_type = DEBUG_DWARF2;
31bf1864
NC
855 dwarf_level = 4;
856 break;
857
858 case OPTION_GDWARF_5:
859 debug_type = DEBUG_DWARF2;
860 dwarf_level = 5;
fac0d250
RH
861 break;
862
b40bf0a2 863 case OPTION_GDWARF_SECTIONS:
5b7c81bd 864 flag_dwarf_sections = true;
b40bf0a2
NC
865 break;
866
66f8b2cb
AB
867 case OPTION_GDWARF_CIE_VERSION:
868 flag_dwarf_cie_version = atoi (optarg);
869 /* The available CIE versions are 1 (DWARF 2), 3 (DWARF 3), and 4
870 (DWARF 4 and 5). */
871 if (flag_dwarf_cie_version < 1
872 || flag_dwarf_cie_version == 2
873 || flag_dwarf_cie_version > 4)
874 as_fatal (_("Invalid --gdwarf-cie-version `%s'"), optarg);
31bf1864
NC
875 switch (flag_dwarf_cie_version)
876 {
877 case 1:
878 if (dwarf_level < 2)
879 dwarf_level = 2;
880 break;
881 case 3:
882 if (dwarf_level < 3)
883 dwarf_level = 3;
884 break;
885 default:
886 if (dwarf_level < 4)
887 dwarf_level = 4;
888 break;
889 }
66f8b2cb
AB
890 break;
891
252b5132
RH
892 case 'J':
893 flag_signed_overflow_ok = 1;
894 break;
895
896#ifndef WORKING_DOT_WORD
897 case 'K':
898 flag_warn_displacement = 1;
899 break;
900#endif
252b5132
RH
901 case 'L':
902 flag_keep_locals = 1;
903 break;
904
905 case OPTION_LISTING_LHS_WIDTH:
76b0a8c0 906 listing_lhs_width = atoi (optarg);
252b5132
RH
907 if (listing_lhs_width_second < listing_lhs_width)
908 listing_lhs_width_second = listing_lhs_width;
909 break;
910 case OPTION_LISTING_LHS_WIDTH2:
911 {
76b0a8c0 912 int tmp = atoi (optarg);
329e276d 913
252b5132
RH
914 if (tmp > listing_lhs_width)
915 listing_lhs_width_second = tmp;
916 }
917 break;
918 case OPTION_LISTING_RHS_WIDTH:
76b0a8c0 919 listing_rhs_width = atoi (optarg);
252b5132
RH
920 break;
921 case OPTION_LISTING_CONT_LINES:
76b0a8c0 922 listing_lhs_cont_lines = atoi (optarg);
252b5132
RH
923 break;
924
925 case 'M':
926 flag_mri = 1;
927#ifdef TC_M68K
928 flag_m68k_mri = 1;
929#endif
930 break;
931
932 case 'R':
933 flag_readonly_data_in_text = 1;
934 break;
935
936 case 'W':
937 flag_no_warnings = 1;
938 break;
939
2bdd6cf5
GK
940 case OPTION_WARN:
941 flag_no_warnings = 0;
942 flag_fatal_warnings = 0;
943 break;
944
945 case OPTION_WARN_FATAL:
946 flag_no_warnings = 0;
947 flag_fatal_warnings = 1;
948 break;
949
7be1c489 950#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
951 case OPTION_EXECSTACK:
952 flag_execstack = 1;
953 flag_noexecstack = 0;
954 break;
955
956 case OPTION_NOEXECSTACK:
957 flag_noexecstack = 1;
958 flag_execstack = 0;
959 break;
21be61f5
L
960
961 case OPTION_SIZE_CHECK:
962 if (strcasecmp (optarg, "error") == 0)
5b7c81bd 963 flag_allow_nonconst_size = false;
21be61f5 964 else if (strcasecmp (optarg, "warning") == 0)
5b7c81bd 965 flag_allow_nonconst_size = true;
21be61f5
L
966 else
967 as_fatal (_("Invalid --size-check= option: `%s'"), optarg);
968 break;
451133ce 969
b8871f35
L
970 case OPTION_ELF_STT_COMMON:
971 if (strcasecmp (optarg, "no") == 0)
972 flag_use_elf_stt_common = 0;
973 else if (strcasecmp (optarg, "yes") == 0)
974 flag_use_elf_stt_common = 1;
975 else
976 as_fatal (_("Invalid --elf-stt-common= option: `%s'"),
977 optarg);
978 break;
979
451133ce
NP
980 case OPTION_SECTNAME_SUBST:
981 flag_sectname_subst = 1;
982 break;
0df8ad28
NC
983
984 case OPTION_ELF_BUILD_NOTES:
985 if (strcasecmp (optarg, "no") == 0)
5b7c81bd 986 flag_generate_build_notes = false;
0df8ad28 987 else if (strcasecmp (optarg, "yes") == 0)
5b7c81bd 988 flag_generate_build_notes = true;
0df8ad28
NC
989 else
990 as_fatal (_("Invalid --generate-missing-build-notes option: `%s'"),
991 optarg);
992 break;
993
994#endif /* OBJ_ELF */
995
252b5132
RH
996 case 'Z':
997 flag_always_generate_output = 1;
998 break;
999
5a14ab23
L
1000 case OPTION_AL:
1001 listing |= LISTING_LISTING;
1002 if (optarg)
1003 listing_filename = xstrdup (optarg);
1004 break;
1005
caa32fe5
NC
1006 case OPTION_ALTERNATE:
1007 optarg = old_argv [optind - 1];
1008 while (* optarg == '-')
1009 optarg ++;
1010
1011 if (strcmp (optarg, "alternate") == 0)
1012 {
1013 flag_macro_alternate = 1;
1014 break;
1015 }
1016 optarg ++;
1017 /* Fall through. */
1018
252b5132
RH
1019 case 'a':
1020 if (optarg)
1021 {
fb767913
NC
1022 if (optarg != old_argv[optind] && optarg[-1] == '=')
1023 --optarg;
1024
7f6d05e8
CP
1025 if (md_parse_option (optc, optarg) != 0)
1026 break;
1027
252b5132
RH
1028 while (*optarg)
1029 {
1030 switch (*optarg)
1031 {
1032 case 'c':
1033 listing |= LISTING_NOCOND;
1034 break;
1035 case 'd':
1036 listing |= LISTING_NODEBUG;
1037 break;
83f10cb2
NC
1038 case 'g':
1039 listing |= LISTING_GENERAL;
1040 break;
252b5132
RH
1041 case 'h':
1042 listing |= LISTING_HLL;
1043 break;
1044 case 'l':
1045 listing |= LISTING_LISTING;
1046 break;
1047 case 'm':
1048 listing |= LISTING_MACEXP;
1049 break;
1050 case 'n':
1051 listing |= LISTING_NOFORM;
1052 break;
1053 case 's':
1054 listing |= LISTING_SYMBOLS;
1055 break;
1056 case '=':
1057 listing_filename = xstrdup (optarg + 1);
1058 optarg += strlen (listing_filename);
1059 break;
1060 default:
1061 as_fatal (_("invalid listing option `%c'"), *optarg);
1062 break;
1063 }
1064 optarg++;
1065 }
1066 }
1067 if (!listing)
1068 listing = LISTING_DEFAULT;
1069 break;
1070
1071 case 'D':
76b0a8c0
KH
1072 /* DEBUG is implemented: it debugs different
1073 things from other people's assemblers. */
252b5132
RH
1074 flag_debug = 1;
1075 break;
1076
1077 case 'f':
1078 flag_no_comments = 1;
1079 break;
1080
1081 case 'I':
76b0a8c0 1082 { /* Include file directory. */
252b5132 1083 char *temp = xstrdup (optarg);
329e276d 1084
252b5132
RH
1085 add_include_dir (temp);
1086 break;
1087 }
1088
1089 case 'o':
1090 out_file_name = xstrdup (optarg);
1091 break;
1092
1093 case 'w':
1094 break;
1095
1096 case 'X':
76b0a8c0 1097 /* -X means treat warnings as errors. */
252b5132 1098 break;
4bdd3565
NC
1099
1100 case OPTION_REDUCE_MEMORY_OVERHEADS:
4bdd3565
NC
1101 break;
1102
1103 case OPTION_HASH_TABLE_SIZE:
a0522545 1104 break;
252b5132
RH
1105 }
1106 }
1107
1108 free (shortopts);
1109 free (longopts);
1110
1111 *pargc = new_argc;
1112 *pargv = new_argv;
acebd4ce
AS
1113
1114#ifdef md_after_parse_args
1115 md_after_parse_args ();
1116#endif
252b5132
RH
1117}
1118
33948635
NC
1119static void
1120dump_statistics (void)
1121{
33948635
NC
1122 long run_time = get_run_time () - start_time;
1123
1124 fprintf (stderr, _("%s: total time in assembly: %ld.%06ld\n"),
1125 myname, run_time / 1000000, run_time % 1000000);
252b5132 1126
33948635
NC
1127 subsegs_print_statistics (stderr);
1128 write_print_statistics (stderr);
1129 symbol_print_statistics (stderr);
1130 read_print_statistics (stderr);
1131
1132#ifdef tc_print_statistics
1133 tc_print_statistics (stderr);
1134#endif
1135
1136#ifdef obj_print_statistics
1137 obj_print_statistics (stderr);
1138#endif
1139}
1140
0d474464
L
1141static void
1142close_output_file (void)
1143{
1144 output_file_close (out_file_name);
58e8191c
SA
1145 if (!keep_it)
1146 unlink_if_ordinary (out_file_name);
0d474464 1147}
0d474464 1148
33948635
NC
1149/* The interface between the macro code and gas expression handling. */
1150
39a45edc
AM
1151static size_t
1152macro_expr (const char *emsg, size_t idx, sb *in, offsetT *val)
33948635 1153{
33948635
NC
1154 expressionS ex;
1155
1156 sb_terminate (in);
1157
af60449c 1158 temp_ilp (in->ptr + idx);
9497f5ac 1159 expression_and_evaluate (&ex);
33948635 1160 idx = input_line_pointer - in->ptr;
af60449c 1161 restore_ilp ();
33948635
NC
1162
1163 if (ex.X_op != O_constant)
1164 as_bad ("%s", emsg);
1165
39a45edc 1166 *val = ex.X_add_number;
33948635
NC
1167
1168 return idx;
1169}
1170\f
1171/* Here to attempt 1 pass over each input file.
1172 We scan argv[*] looking for filenames or exactly "" which is
1173 shorthand for stdin. Any argv that is NULL is not a file-name.
1174 We set need_pass_2 TRUE if, after this, we still have unresolved
1175 expressions of the form (unknown value)+-(unknown value).
1176
1177 Note the un*x semantics: there is only 1 logical input file, but it
1178 may be a catenation of many 'physical' input files. */
1179
1180static void
1181perform_an_assembly_pass (int argc, char ** argv)
1182{
1183 int saw_a_file = 0;
bcf0aac6 1184#ifndef OBJ_MACH_O
33948635 1185 flagword applicable;
bcf0aac6 1186#endif
33948635
NC
1187
1188 need_pass_2 = 0;
1189
bcf0aac6 1190#ifndef OBJ_MACH_O
33948635
NC
1191 /* Create the standard sections, and those the assembler uses
1192 internally. */
1193 text_section = subseg_new (TEXT_SECTION_NAME, 0);
1194 data_section = subseg_new (DATA_SECTION_NAME, 0);
1195 bss_section = subseg_new (BSS_SECTION_NAME, 0);
1196 /* @@ FIXME -- we're setting the RELOC flag so that sections are assumed
1197 to have relocs, otherwise we don't find out in time. */
1198 applicable = bfd_applicable_section_flags (stdoutput);
fd361982 1199 bfd_set_section_flags (text_section,
33948635
NC
1200 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1201 | SEC_CODE | SEC_READONLY));
fd361982 1202 bfd_set_section_flags (data_section,
33948635
NC
1203 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1204 | SEC_DATA));
fd361982 1205 bfd_set_section_flags (bss_section, applicable & SEC_ALLOC);
33948635 1206 seg_info (bss_section)->bss = 1;
bcf0aac6 1207#endif
33948635
NC
1208 subseg_new (BFD_ABS_SECTION_NAME, 0);
1209 subseg_new (BFD_UND_SECTION_NAME, 0);
1210 reg_section = subseg_new ("*GAS `reg' section*", 0);
1211 expr_section = subseg_new ("*GAS `expr' section*", 0);
1212
bcf0aac6 1213#ifndef OBJ_MACH_O
33948635 1214 subseg_set (text_section, 0);
bcf0aac6 1215#endif
33948635
NC
1216
1217 /* This may add symbol table entries, which requires having an open BFD,
7be1c489 1218 and sections already created. */
33948635
NC
1219 md_begin ();
1220
1221#ifdef USING_CGEN
1222 gas_cgen_begin ();
1223#endif
1224#ifdef obj_begin
1225 obj_begin ();
1226#endif
1227
1228 /* Skip argv[0]. */
1229 argv++;
1230 argc--;
1231
1232 while (argc--)
1233 {
1234 if (*argv)
1235 { /* Is it a file-name argument? */
1236 PROGRESS (1);
1237 saw_a_file++;
1238 /* argv->"" if stdin desired, else->filename. */
1239 read_a_source_file (*argv);
1240 }
1241 argv++; /* Completed that argv. */
1242 }
1243 if (!saw_a_file)
1244 read_a_source_file ("");
1245}
1246\f
a80076a1 1247
76b0a8c0 1248int
33948635 1249main (int argc, char ** argv)
252b5132 1250{
83f10cb2 1251 char ** argv_orig = argv;
67f846b5 1252 struct stat sob;
83f10cb2 1253
252b5132 1254 int macro_strip_at;
252b5132
RH
1255
1256 start_time = get_run_time ();
1ec4b9f2 1257 signal_init ();
252b5132 1258
23d61380 1259#ifdef HAVE_LC_MESSAGES
252b5132 1260 setlocale (LC_MESSAGES, "");
3882b010 1261#endif
3882b010 1262 setlocale (LC_CTYPE, "");
252b5132
RH
1263 bindtextdomain (PACKAGE, LOCALEDIR);
1264 textdomain (PACKAGE);
1265
1266 if (debug_memory)
091e58c1 1267 chunksize = 64;
252b5132
RH
1268
1269#ifdef HOST_SPECIAL_INIT
1270 HOST_SPECIAL_INIT (argc, argv);
1271#endif
1272
1273 myname = argv[0];
1274 xmalloc_set_program_name (myname);
1275
869b9d07
MM
1276 expandargv (&argc, &argv);
1277
252b5132
RH
1278 START_PROGRESS (myname, 0);
1279
1280#ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
1281#define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
1282#endif
1283
1284 out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
1285
1286 hex_init ();
bf2dd8d7
AM
1287 if (bfd_init () != BFD_INIT_MAGIC)
1288 as_fatal (_("libbfd ABI mismatch"));
252b5132 1289 bfd_set_error_program_name (myname);
252b5132
RH
1290
1291#ifdef USE_EMULATIONS
1292 select_emulation_mode (argc, argv);
1293#endif
1294
1295 PROGRESS (1);
f7a568ea
NC
1296 /* Call parse_args before any of the init/begin functions
1297 so that switches like --hash-size can be honored. */
1298 parse_args (&argc, &argv);
67f846b5
JD
1299
1300 if (argc > 1 && stat (out_file_name, &sob) == 0)
1301 {
1302 int i;
1303
1304 for (i = 1; i < argc; ++i)
1305 {
1306 struct stat sib;
1307
2a50366d
RY
1308 /* Check that the input file and output file are different. */
1309 if (stat (argv[i], &sib) == 0
1310 && sib.st_ino == sob.st_ino
1311 /* POSIX emulating systems may support stat() but if the
1312 underlying file system does not support a file serial number
1313 of some kind then they will return 0 for the inode. So
1314 two files with an inode of 0 may not actually be the same.
1315 On real POSIX systems no ordinary file will ever have an
1316 inode of 0. */
1317 && sib.st_ino != 0
1318 /* Different files may have the same inode number if they
1319 reside on different devices, so check the st_dev field as
1320 well. */
3c968de5
NC
1321 && sib.st_dev == sob.st_dev
1322 /* PR 25572: Only check regular files. Devices, sockets and so
1323 on might actually work as both input and output. Plus there
1324 is a use case for using /dev/null as both input and output
1325 when checking for command line option support in a script:
1326 as --foo /dev/null -o /dev/null; if $? then ... */
1327 && S_ISREG (sib.st_mode))
67f846b5 1328 {
2a50366d
RY
1329 const char *saved_out_file_name = out_file_name;
1330
1331 /* Don't let as_fatal remove the output file! */
1332 out_file_name = NULL;
1333 as_fatal (_("The input '%s' and output '%s' files are the same"),
1334 argv[i], saved_out_file_name);
67f846b5
JD
1335 }
1336 }
1337 }
1338
252b5132
RH
1339 symbol_begin ();
1340 frag_init ();
1341 subsegs_begin ();
252b5132
RH
1342 read_begin ();
1343 input_scrub_begin ();
1344 expr_begin ();
1345
0d474464
L
1346 /* It has to be called after dump_statistics (). */
1347 xatexit (close_output_file);
0d474464 1348
252b5132
RH
1349 if (flag_print_statistics)
1350 xatexit (dump_statistics);
1351
252b5132
RH
1352 macro_strip_at = 0;
1353#ifdef TC_I960
1354 macro_strip_at = flag_mri;
1355#endif
252b5132 1356
caa32fe5 1357 macro_init (flag_macro_alternate, flag_mri, macro_strip_at, macro_expr);
252b5132
RH
1358
1359 PROGRESS (1);
1360
252b5132 1361 output_file_create (out_file_name);
9c2799c2 1362 gas_assert (stdoutput != 0);
252b5132 1363
4a826962
MR
1364 dot_symbol_init ();
1365
252b5132
RH
1366#ifdef tc_init_after_args
1367 tc_init_after_args ();
1368#endif
1369
1370 itbl_init ();
1371
1e9cc1c2
NC
1372 dwarf2_init ();
1373
6885131b 1374 local_symbol_make (".gasversion.", absolute_section,
e01e1cee 1375 &predefined_address_frag, BFD_VERSION / 10000UL);
00ce9deb 1376
252b5132
RH
1377 /* Now that we have fully initialized, and have created the output
1378 file, define any symbols requested by --defsym command line
1379 arguments. */
1380 while (defsyms != NULL)
1381 {
1382 symbolS *sym;
1383 struct defsym_list *next;
1384
e01e1cee
AM
1385 sym = symbol_new (defsyms->name, absolute_section,
1386 &zero_address_frag, defsyms->value);
bf083c64
NC
1387 /* Make symbols defined on the command line volatile, so that they
1388 can be redefined inside a source file. This makes this assembler's
1389 behaviour compatible with earlier versions, but it may not be
1390 completely intuitive. */
1391 S_SET_VOLATILE (sym);
252b5132
RH
1392 symbol_table_insert (sym);
1393 next = defsyms->next;
1394 free (defsyms);
1395 defsyms = next;
1396 }
1397
1398 PROGRESS (1);
1399
76b0a8c0
KH
1400 /* Assemble it. */
1401 perform_an_assembly_pass (argc, argv);
252b5132
RH
1402
1403 cond_finish_check (-1);
1404
1405#ifdef md_end
1406 md_end ();
1407#endif
104d59d1 1408
7be1c489 1409#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
1410 if ((flag_execstack || flag_noexecstack)
1411 && OUTPUT_FLAVOR == bfd_target_elf_flavour)
1412 {
1413 segT gnustack;
1414
1415 gnustack = subseg_new (".note.GNU-stack", 0);
fd361982 1416 bfd_set_section_flags (gnustack,
68d55fe3 1417 SEC_READONLY | (flag_execstack ? SEC_CODE : 0));
34bca508 1418
68d55fe3
JJ
1419 }
1420#endif
1421
43ad3147 1422 /* If we've been collecting dwarf2 .debug_line info, either for
39bb5fe6
RH
1423 assembly debugging or on behalf of the compiler, emit it now. */
1424 dwarf2_finish ();
1425
34bca508 1426 /* If we constructed dwarf2 .eh_frame info, either via .cfi
a4447b93 1427 directives from the user or by the backend, emit it now. */
54cfded0 1428 cfi_finish ();
54cfded0 1429
85024cd8
AM
1430 keep_it = 0;
1431 if (seen_at_least_1_file ())
1432 {
1433 int n_warns, n_errs;
1434 char warn_msg[50];
1435 char err_msg[50];
1436
1437 write_object_file ();
1438
1439 n_warns = had_warnings ();
1440 n_errs = had_errors ();
1441
992a06ee
AM
1442 sprintf (warn_msg,
1443 ngettext ("%d warning", "%d warnings", n_warns), n_warns);
1444 sprintf (err_msg,
1445 ngettext ("%d error", "%d errors", n_errs), n_errs);
85024cd8
AM
1446 if (flag_fatal_warnings && n_warns != 0)
1447 {
1448 if (n_errs == 0)
1449 as_bad (_("%s, treating warnings as errors"), warn_msg);
1450 n_errs += n_warns;
1451 }
252b5132 1452
85024cd8
AM
1453 if (n_errs == 0)
1454 keep_it = 1;
1455 else if (flag_always_generate_output)
1456 {
1457 /* The -Z flag indicates that an object file should be generated,
1458 regardless of warnings and errors. */
1459 keep_it = 1;
1460 fprintf (stderr, _("%s, %s, generating bad object file\n"),
1461 err_msg, warn_msg);
1462 }
1463 }
252b5132 1464
7f6a71ff
JM
1465 fflush (stderr);
1466
252b5132 1467#ifndef NO_LISTING
83f10cb2 1468 listing_print (listing_filename, argv_orig);
252b5132
RH
1469#endif
1470
252b5132
RH
1471 input_scrub_end ();
1472
1473 END_PROGRESS (myname);
1474
1475 /* Use xexit instead of return, because under VMS environments they
1476 may not place the same interpretation on the value given. */
85024cd8 1477 if (had_errors () != 0)
252b5132
RH
1478 xexit (EXIT_FAILURE);
1479
1480 /* Only generate dependency file if assembler was successful. */
1481 print_dependencies ();
1482
1483 xexit (EXIT_SUCCESS);
1484}
This page took 1.045421 seconds and 4 git commands to generate.