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