Add SHF_COMPRESSED support to gas and objcopy
[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, _("\
151411f8 249 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi}]\n\
700c4060
CC
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}
151411f8 474 ,{"compress-debug-sections", optional_argument, NULL, OPTION_COMPRESS_DEBUG}
0acf065b 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 657 case OPTION_COMPRESS_DEBUG:
151411f8
L
658 if (optarg)
659 {
660#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
661 if (strcasecmp (optarg, "none") == 0)
662 flag_compress_debug = COMPRESS_DEBUG_NONE;
663 else if (strcasecmp (optarg, "zlib") == 0)
664 flag_compress_debug = COMPRESS_DEBUG_ZLIB;
665 else if (strcasecmp (optarg, "zlib-gnu") == 0)
666 flag_compress_debug = COMPRESS_DEBUG_GNU_ZLIB;
667 else if (strcasecmp (optarg, "zlib-gabi") == 0)
668 flag_compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
669 else
670 as_fatal (_("Invalid --compress-debug-sections option: `%s'"),
671 optarg);
672#else
673 as_fatal (_("--compress-debug-sections=%s is unsupported"),
674 optarg);
675#endif
676 }
677 else
678 flag_compress_debug = COMPRESS_DEBUG;
0acf065b
CC
679 break;
680
681 case OPTION_NOCOMPRESS_DEBUG:
151411f8 682 flag_compress_debug = COMPRESS_DEBUG_NONE;
0acf065b
CC
683 break;
684
3d6b762c
JM
685 case OPTION_DEBUG_PREFIX_MAP:
686 add_debug_prefix_map (optarg);
687 break;
688
252b5132
RH
689 case OPTION_DEFSYM:
690 {
691 char *s;
a38cf1db 692 valueT i;
252b5132
RH
693 struct defsym_list *n;
694
695 for (s = optarg; *s != '\0' && *s != '='; s++)
696 ;
697 if (*s == '\0')
698 as_fatal (_("bad defsym; format is --defsym name=value"));
699 *s++ = '\0';
a38cf1db 700 i = bfd_scan_vma (s, (const char **) NULL, 0);
1e9cc1c2 701 n = (struct defsym_list *) xmalloc (sizeof *n);
252b5132
RH
702 n->next = defsyms;
703 n->name = optarg;
704 n->value = i;
705 defsyms = n;
706 }
707 break;
708
732f54cd 709#ifdef HAVE_ITBL_CPU
252b5132
RH
710 case 't':
711 {
76b0a8c0
KH
712 /* optarg is the name of the file containing the instruction
713 formats, opcodes, register names, etc. */
252b5132
RH
714 struct itbl_file_list *n;
715
716 if (optarg == NULL)
717 {
0e389e77 718 as_warn (_("no file name following -t option"));
252b5132
RH
719 break;
720 }
76b0a8c0 721
33948635 722 n = xmalloc (sizeof * n);
252b5132
RH
723 n->next = itbl_files;
724 n->name = optarg;
725 itbl_files = n;
726
727 /* Parse the file and add the new instructions to our internal
76b0a8c0
KH
728 table. If multiple instruction tables are specified, the
729 information from this table gets appended onto the existing
730 internal table. */
252b5132
RH
731 itbl_files->name = xstrdup (optarg);
732 if (itbl_parse (itbl_files->name) != 0)
0e389e77
AM
733 as_fatal (_("failed to read instruction table %s\n"),
734 itbl_files->name);
252b5132
RH
735 }
736 break;
732f54cd 737#endif
252b5132
RH
738
739 case OPTION_DEPFILE:
740 start_dependencies (optarg);
741 break;
742
329e276d 743 case 'g':
8f94ae4d
NC
744 /* Some backends, eg Alpha and Mips, use the -g switch for their
745 own purposes. So we check here for an explicit -g and allow
329e276d
NC
746 the backend to decide if it wants to process it. */
747 if ( old_argv[optind - 1][1] == 'g'
329e276d
NC
748 && md_parse_option (optc, optarg))
749 continue;
750
751 if (md_debug_format_selector)
752 debug_type = md_debug_format_selector (& use_gnu_debug_info_extensions);
753 else if (IS_ELF)
754 debug_type = DEBUG_DWARF2;
755 else
756 debug_type = DEBUG_STABS;
757 break;
758
05da4302
NC
759 case OPTION_GSTABS_PLUS:
760 use_gnu_debug_info_extensions = 1;
761 /* Fall through. */
252b5132
RH
762 case OPTION_GSTABS:
763 debug_type = DEBUG_STABS;
764 break;
76b0a8c0 765
fac0d250
RH
766 case OPTION_GDWARF2:
767 debug_type = DEBUG_DWARF2;
768 break;
769
b40bf0a2
NC
770 case OPTION_GDWARF_SECTIONS:
771 flag_dwarf_sections = TRUE;
772 break;
773
252b5132
RH
774 case 'J':
775 flag_signed_overflow_ok = 1;
776 break;
777
778#ifndef WORKING_DOT_WORD
779 case 'K':
780 flag_warn_displacement = 1;
781 break;
782#endif
252b5132
RH
783 case 'L':
784 flag_keep_locals = 1;
785 break;
786
787 case OPTION_LISTING_LHS_WIDTH:
76b0a8c0 788 listing_lhs_width = atoi (optarg);
252b5132
RH
789 if (listing_lhs_width_second < listing_lhs_width)
790 listing_lhs_width_second = listing_lhs_width;
791 break;
792 case OPTION_LISTING_LHS_WIDTH2:
793 {
76b0a8c0 794 int tmp = atoi (optarg);
329e276d 795
252b5132
RH
796 if (tmp > listing_lhs_width)
797 listing_lhs_width_second = tmp;
798 }
799 break;
800 case OPTION_LISTING_RHS_WIDTH:
76b0a8c0 801 listing_rhs_width = atoi (optarg);
252b5132
RH
802 break;
803 case OPTION_LISTING_CONT_LINES:
76b0a8c0 804 listing_lhs_cont_lines = atoi (optarg);
252b5132
RH
805 break;
806
807 case 'M':
808 flag_mri = 1;
809#ifdef TC_M68K
810 flag_m68k_mri = 1;
811#endif
812 break;
813
814 case 'R':
815 flag_readonly_data_in_text = 1;
816 break;
817
818 case 'W':
819 flag_no_warnings = 1;
820 break;
821
2bdd6cf5
GK
822 case OPTION_WARN:
823 flag_no_warnings = 0;
824 flag_fatal_warnings = 0;
825 break;
826
827 case OPTION_WARN_FATAL:
828 flag_no_warnings = 0;
829 flag_fatal_warnings = 1;
830 break;
831
7be1c489 832#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
833 case OPTION_EXECSTACK:
834 flag_execstack = 1;
835 flag_noexecstack = 0;
836 break;
837
838 case OPTION_NOEXECSTACK:
839 flag_noexecstack = 1;
840 flag_execstack = 0;
841 break;
21be61f5
L
842
843 case OPTION_SIZE_CHECK:
844 if (strcasecmp (optarg, "error") == 0)
845 flag_size_check = size_check_error;
846 else if (strcasecmp (optarg, "warning") == 0)
847 flag_size_check = size_check_warning;
848 else
849 as_fatal (_("Invalid --size-check= option: `%s'"), optarg);
850 break;
68d55fe3 851#endif
252b5132
RH
852 case 'Z':
853 flag_always_generate_output = 1;
854 break;
855
5a14ab23
L
856 case OPTION_AL:
857 listing |= LISTING_LISTING;
858 if (optarg)
859 listing_filename = xstrdup (optarg);
860 break;
861
caa32fe5
NC
862 case OPTION_ALTERNATE:
863 optarg = old_argv [optind - 1];
864 while (* optarg == '-')
865 optarg ++;
866
867 if (strcmp (optarg, "alternate") == 0)
868 {
869 flag_macro_alternate = 1;
870 break;
871 }
872 optarg ++;
873 /* Fall through. */
874
252b5132
RH
875 case 'a':
876 if (optarg)
877 {
fb767913
NC
878 if (optarg != old_argv[optind] && optarg[-1] == '=')
879 --optarg;
880
7f6d05e8
CP
881 if (md_parse_option (optc, optarg) != 0)
882 break;
883
252b5132
RH
884 while (*optarg)
885 {
886 switch (*optarg)
887 {
888 case 'c':
889 listing |= LISTING_NOCOND;
890 break;
891 case 'd':
892 listing |= LISTING_NODEBUG;
893 break;
83f10cb2
NC
894 case 'g':
895 listing |= LISTING_GENERAL;
896 break;
252b5132
RH
897 case 'h':
898 listing |= LISTING_HLL;
899 break;
900 case 'l':
901 listing |= LISTING_LISTING;
902 break;
903 case 'm':
904 listing |= LISTING_MACEXP;
905 break;
906 case 'n':
907 listing |= LISTING_NOFORM;
908 break;
909 case 's':
910 listing |= LISTING_SYMBOLS;
911 break;
912 case '=':
913 listing_filename = xstrdup (optarg + 1);
914 optarg += strlen (listing_filename);
915 break;
916 default:
917 as_fatal (_("invalid listing option `%c'"), *optarg);
918 break;
919 }
920 optarg++;
921 }
922 }
923 if (!listing)
924 listing = LISTING_DEFAULT;
925 break;
926
927 case 'D':
76b0a8c0
KH
928 /* DEBUG is implemented: it debugs different
929 things from other people's assemblers. */
252b5132
RH
930 flag_debug = 1;
931 break;
932
933 case 'f':
934 flag_no_comments = 1;
935 break;
936
937 case 'I':
76b0a8c0 938 { /* Include file directory. */
252b5132 939 char *temp = xstrdup (optarg);
329e276d 940
252b5132
RH
941 add_include_dir (temp);
942 break;
943 }
944
945 case 'o':
946 out_file_name = xstrdup (optarg);
947 break;
948
949 case 'w':
950 break;
951
952 case 'X':
76b0a8c0 953 /* -X means treat warnings as errors. */
252b5132 954 break;
4bdd3565
NC
955
956 case OPTION_REDUCE_MEMORY_OVERHEADS:
957 /* The only change we make at the moment is to reduce
958 the size of the hash tables that we use. */
959 set_gas_hash_table_size (4051);
960 break;
961
962 case OPTION_HASH_TABLE_SIZE:
963 {
f7a568ea 964 unsigned long new_size;
4bdd3565
NC
965
966 new_size = strtoul (optarg, NULL, 0);
967 if (new_size)
968 set_gas_hash_table_size (new_size);
969 else
970 as_fatal (_("--hash-size needs a numeric argument"));
971 break;
972 }
252b5132
RH
973 }
974 }
975
976 free (shortopts);
977 free (longopts);
978
979 *pargc = new_argc;
980 *pargv = new_argv;
acebd4ce
AS
981
982#ifdef md_after_parse_args
983 md_after_parse_args ();
984#endif
252b5132
RH
985}
986
33948635
NC
987static void
988dump_statistics (void)
989{
990#ifdef HAVE_SBRK
991 char *lim = (char *) sbrk (0);
992#endif
993 long run_time = get_run_time () - start_time;
994
995 fprintf (stderr, _("%s: total time in assembly: %ld.%06ld\n"),
996 myname, run_time / 1000000, run_time % 1000000);
997#ifdef HAVE_SBRK
998 fprintf (stderr, _("%s: data size %ld\n"),
ef8e09a0 999 myname, (long) (lim - start_sbrk));
33948635 1000#endif
252b5132 1001
33948635
NC
1002 subsegs_print_statistics (stderr);
1003 write_print_statistics (stderr);
1004 symbol_print_statistics (stderr);
1005 read_print_statistics (stderr);
1006
1007#ifdef tc_print_statistics
1008 tc_print_statistics (stderr);
1009#endif
1010
1011#ifdef obj_print_statistics
1012 obj_print_statistics (stderr);
1013#endif
1014}
1015
0d474464
L
1016static void
1017close_output_file (void)
1018{
1019 output_file_close (out_file_name);
58e8191c
SA
1020 if (!keep_it)
1021 unlink_if_ordinary (out_file_name);
0d474464 1022}
0d474464 1023
33948635
NC
1024/* The interface between the macro code and gas expression handling. */
1025
39a45edc
AM
1026static size_t
1027macro_expr (const char *emsg, size_t idx, sb *in, offsetT *val)
33948635
NC
1028{
1029 char *hold;
1030 expressionS ex;
1031
1032 sb_terminate (in);
1033
1034 hold = input_line_pointer;
1035 input_line_pointer = in->ptr + idx;
9497f5ac 1036 expression_and_evaluate (&ex);
33948635
NC
1037 idx = input_line_pointer - in->ptr;
1038 input_line_pointer = hold;
1039
1040 if (ex.X_op != O_constant)
1041 as_bad ("%s", emsg);
1042
39a45edc 1043 *val = ex.X_add_number;
33948635
NC
1044
1045 return idx;
1046}
1047\f
1048/* Here to attempt 1 pass over each input file.
1049 We scan argv[*] looking for filenames or exactly "" which is
1050 shorthand for stdin. Any argv that is NULL is not a file-name.
1051 We set need_pass_2 TRUE if, after this, we still have unresolved
1052 expressions of the form (unknown value)+-(unknown value).
1053
1054 Note the un*x semantics: there is only 1 logical input file, but it
1055 may be a catenation of many 'physical' input files. */
1056
1057static void
1058perform_an_assembly_pass (int argc, char ** argv)
1059{
1060 int saw_a_file = 0;
bcf0aac6 1061#ifndef OBJ_MACH_O
33948635 1062 flagword applicable;
bcf0aac6 1063#endif
33948635
NC
1064
1065 need_pass_2 = 0;
1066
bcf0aac6 1067#ifndef OBJ_MACH_O
33948635
NC
1068 /* Create the standard sections, and those the assembler uses
1069 internally. */
1070 text_section = subseg_new (TEXT_SECTION_NAME, 0);
1071 data_section = subseg_new (DATA_SECTION_NAME, 0);
1072 bss_section = subseg_new (BSS_SECTION_NAME, 0);
1073 /* @@ FIXME -- we're setting the RELOC flag so that sections are assumed
1074 to have relocs, otherwise we don't find out in time. */
1075 applicable = bfd_applicable_section_flags (stdoutput);
1076 bfd_set_section_flags (stdoutput, text_section,
1077 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1078 | SEC_CODE | SEC_READONLY));
1079 bfd_set_section_flags (stdoutput, data_section,
1080 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1081 | SEC_DATA));
1082 bfd_set_section_flags (stdoutput, bss_section, applicable & SEC_ALLOC);
1083 seg_info (bss_section)->bss = 1;
bcf0aac6 1084#endif
33948635
NC
1085 subseg_new (BFD_ABS_SECTION_NAME, 0);
1086 subseg_new (BFD_UND_SECTION_NAME, 0);
1087 reg_section = subseg_new ("*GAS `reg' section*", 0);
1088 expr_section = subseg_new ("*GAS `expr' section*", 0);
1089
bcf0aac6 1090#ifndef OBJ_MACH_O
33948635 1091 subseg_set (text_section, 0);
bcf0aac6 1092#endif
33948635
NC
1093
1094 /* This may add symbol table entries, which requires having an open BFD,
7be1c489 1095 and sections already created. */
33948635
NC
1096 md_begin ();
1097
1098#ifdef USING_CGEN
1099 gas_cgen_begin ();
1100#endif
1101#ifdef obj_begin
1102 obj_begin ();
1103#endif
1104
1105 /* Skip argv[0]. */
1106 argv++;
1107 argc--;
1108
1109 while (argc--)
1110 {
1111 if (*argv)
1112 { /* Is it a file-name argument? */
1113 PROGRESS (1);
1114 saw_a_file++;
1115 /* argv->"" if stdin desired, else->filename. */
1116 read_a_source_file (*argv);
1117 }
1118 argv++; /* Completed that argv. */
1119 }
1120 if (!saw_a_file)
1121 read_a_source_file ("");
1122}
1123\f
a80076a1 1124
76b0a8c0 1125int
33948635 1126main (int argc, char ** argv)
252b5132 1127{
83f10cb2
NC
1128 char ** argv_orig = argv;
1129
252b5132 1130 int macro_strip_at;
252b5132
RH
1131
1132 start_time = get_run_time ();
ef8e09a0
SB
1133#ifdef HAVE_SBRK
1134 start_sbrk = (char *) sbrk (0);
1135#endif
252b5132
RH
1136
1137#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
1138 setlocale (LC_MESSAGES, "");
3882b010
L
1139#endif
1140#if defined (HAVE_SETLOCALE)
1141 setlocale (LC_CTYPE, "");
252b5132
RH
1142#endif
1143 bindtextdomain (PACKAGE, LOCALEDIR);
1144 textdomain (PACKAGE);
1145
1146 if (debug_memory)
091e58c1 1147 chunksize = 64;
252b5132
RH
1148
1149#ifdef HOST_SPECIAL_INIT
1150 HOST_SPECIAL_INIT (argc, argv);
1151#endif
1152
1153 myname = argv[0];
1154 xmalloc_set_program_name (myname);
1155
869b9d07
MM
1156 expandargv (&argc, &argv);
1157
252b5132
RH
1158 START_PROGRESS (myname, 0);
1159
1160#ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
1161#define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
1162#endif
1163
1164 out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
1165
1166 hex_init ();
252b5132
RH
1167 bfd_init ();
1168 bfd_set_error_program_name (myname);
252b5132
RH
1169
1170#ifdef USE_EMULATIONS
1171 select_emulation_mode (argc, argv);
1172#endif
1173
1174 PROGRESS (1);
f7a568ea
NC
1175 /* Call parse_args before any of the init/begin functions
1176 so that switches like --hash-size can be honored. */
1177 parse_args (&argc, &argv);
252b5132
RH
1178 symbol_begin ();
1179 frag_init ();
1180 subsegs_begin ();
252b5132
RH
1181 read_begin ();
1182 input_scrub_begin ();
1183 expr_begin ();
1184
0d474464
L
1185 /* It has to be called after dump_statistics (). */
1186 xatexit (close_output_file);
0d474464 1187
252b5132
RH
1188 if (flag_print_statistics)
1189 xatexit (dump_statistics);
1190
252b5132
RH
1191 macro_strip_at = 0;
1192#ifdef TC_I960
1193 macro_strip_at = flag_mri;
1194#endif
252b5132 1195
caa32fe5 1196 macro_init (flag_macro_alternate, flag_mri, macro_strip_at, macro_expr);
252b5132
RH
1197
1198 PROGRESS (1);
1199
252b5132 1200 output_file_create (out_file_name);
9c2799c2 1201 gas_assert (stdoutput != 0);
252b5132 1202
4a826962
MR
1203 dot_symbol_init ();
1204
252b5132
RH
1205#ifdef tc_init_after_args
1206 tc_init_after_args ();
1207#endif
1208
1209 itbl_init ();
1210
1e9cc1c2
NC
1211 dwarf2_init ();
1212
6885131b
AM
1213 local_symbol_make (".gasversion.", absolute_section,
1214 BFD_VERSION / 10000UL, &predefined_address_frag);
00ce9deb 1215
252b5132
RH
1216 /* Now that we have fully initialized, and have created the output
1217 file, define any symbols requested by --defsym command line
1218 arguments. */
1219 while (defsyms != NULL)
1220 {
1221 symbolS *sym;
1222 struct defsym_list *next;
1223
1224 sym = symbol_new (defsyms->name, absolute_section, defsyms->value,
1225 &zero_address_frag);
bf083c64
NC
1226 /* Make symbols defined on the command line volatile, so that they
1227 can be redefined inside a source file. This makes this assembler's
1228 behaviour compatible with earlier versions, but it may not be
1229 completely intuitive. */
1230 S_SET_VOLATILE (sym);
252b5132
RH
1231 symbol_table_insert (sym);
1232 next = defsyms->next;
1233 free (defsyms);
1234 defsyms = next;
1235 }
1236
1237 PROGRESS (1);
1238
76b0a8c0
KH
1239 /* Assemble it. */
1240 perform_an_assembly_pass (argc, argv);
252b5132
RH
1241
1242 cond_finish_check (-1);
1243
1244#ifdef md_end
1245 md_end ();
1246#endif
104d59d1 1247
7be1c489 1248#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
1249 if ((flag_execstack || flag_noexecstack)
1250 && OUTPUT_FLAVOR == bfd_target_elf_flavour)
1251 {
1252 segT gnustack;
1253
1254 gnustack = subseg_new (".note.GNU-stack", 0);
1255 bfd_set_section_flags (stdoutput, gnustack,
1256 SEC_READONLY | (flag_execstack ? SEC_CODE : 0));
34bca508 1257
68d55fe3
JJ
1258 }
1259#endif
1260
43ad3147 1261 /* If we've been collecting dwarf2 .debug_line info, either for
39bb5fe6
RH
1262 assembly debugging or on behalf of the compiler, emit it now. */
1263 dwarf2_finish ();
1264
34bca508 1265 /* If we constructed dwarf2 .eh_frame info, either via .cfi
a4447b93 1266 directives from the user or by the backend, emit it now. */
54cfded0 1267 cfi_finish ();
54cfded0 1268
85024cd8
AM
1269 keep_it = 0;
1270 if (seen_at_least_1_file ())
1271 {
1272 int n_warns, n_errs;
1273 char warn_msg[50];
1274 char err_msg[50];
1275
1276 write_object_file ();
1277
1278 n_warns = had_warnings ();
1279 n_errs = had_errors ();
1280
1281 if (n_warns == 1)
1282 sprintf (warn_msg, _("%d warning"), n_warns);
1283 else
1284 sprintf (warn_msg, _("%d warnings"), n_warns);
1285 if (n_errs == 1)
1286 sprintf (err_msg, _("%d error"), n_errs);
1287 else
1288 sprintf (err_msg, _("%d errors"), n_errs);
252b5132 1289
85024cd8
AM
1290 if (flag_fatal_warnings && n_warns != 0)
1291 {
1292 if (n_errs == 0)
1293 as_bad (_("%s, treating warnings as errors"), warn_msg);
1294 n_errs += n_warns;
1295 }
252b5132 1296
85024cd8
AM
1297 if (n_errs == 0)
1298 keep_it = 1;
1299 else if (flag_always_generate_output)
1300 {
1301 /* The -Z flag indicates that an object file should be generated,
1302 regardless of warnings and errors. */
1303 keep_it = 1;
1304 fprintf (stderr, _("%s, %s, generating bad object file\n"),
1305 err_msg, warn_msg);
1306 }
1307 }
252b5132 1308
7f6a71ff
JM
1309 fflush (stderr);
1310
252b5132 1311#ifndef NO_LISTING
83f10cb2 1312 listing_print (listing_filename, argv_orig);
252b5132
RH
1313#endif
1314
252b5132
RH
1315 input_scrub_end ();
1316
1317 END_PROGRESS (myname);
1318
1319 /* Use xexit instead of return, because under VMS environments they
1320 may not place the same interpretation on the value given. */
85024cd8 1321 if (had_errors () != 0)
252b5132
RH
1322 xexit (EXIT_FAILURE);
1323
1324 /* Only generate dependency file if assembler was successful. */
1325 print_dependencies ();
1326
1327 xexit (EXIT_SUCCESS);
1328}
This page took 0.687027 seconds and 4 git commands to generate.