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