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