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