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