1 /* as.c - GAS main program.
2 Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
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
8 the Free Software Foundation; either version 2, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
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
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 * Main program for AS; a 32-bit assembler of GNU.
22 * Understands command arguments.
23 * Has a few routines that don't fit in other modules because they
30 * Since no-one else says they will support them in future: I
31 * don't support them now.
39 #include <sys/types.h> /* For pid_t in signal.h */
48 #include "output-file.h"
59 /* Not currently used. */
60 static SIGTY got_sig PARAMS ((int sig));
62 static void perform_an_assembly_pass PARAMS ((int argc, char **argv));
65 #define EXIT_SUCCESS 0
66 #define EXIT_FAILURE 1
69 int listing; /* true if a listing is wanted */
71 char *myname; /* argv[0] */
73 segT reg_section, expr_section;
74 segT text_section, data_section, bss_section;
85 fprintf (stderr, "GNU assembler version %s (%s)", GAS_VERSION, TARGET_ALIAS);
87 fprintf (stderr, ", using BFD version %s", BFD_VERSION);
89 fprintf (stderr, "\n");
97 int work_argc; /* variable copy of argc */
98 char **work_argv; /* variable copy of argv */
99 char *arg; /* an arg to program */
100 char a; /* an arg flag (after -) */
102 #if 0 /* do we need any of this?? */
104 static const int sig[] = {SIGHUP, SIGINT, SIGPIPE, SIGTERM, 0};
106 for (a = 0; sig[a] != 0; a++)
107 if (signal (sig[a], SIG_IGN) != SIG_IGN)
108 signal (sig[a], got_sig);
113 memset (flagseen, '\0', sizeof (flagseen)); /* aint seen nothing yet */
114 #ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
115 #define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
117 out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
126 input_scrub_begin ();
129 * Parse arguments, but we are only interested in flags.
130 * When we find a flag, we process it then make it's argv[] NULL.
131 * This helps any future argv[] scanners avoid what we processed.
132 * Since it is easy to do here we interpret the special arg "-"
133 * to mean "use stdin" and we set that argv[] pointing to "".
134 * After we have munged argv[], the only things left are source file
135 * name(s) and ""(s) denoting stdin. These file names are used
136 * (perhaps more than once) later.
138 /* FIXME-SOMEDAY this should use getopt. */
139 work_argc = argc - 1; /* don't count argv[0] */
140 work_argv = argv + 1; /* skip argv[0] */
141 for (; work_argc--; work_argv++)
143 arg = *work_argv; /* work_argv points to this argument */
145 if (*arg != '-') /* Filename. We need it later. */
146 continue; /* Keep scanning args looking for flags. */
147 if (arg[1] == '-' && arg[2] == 0)
149 /* "--" as an argument means read STDIN */
150 /* on this scan, we don't want to think about filenames */
151 *work_argv = ""; /* Code that means 'use stdin'. */
154 /* This better be a switch. */
155 arg++; /*->letter. */
157 while ((a = *arg) != '\0')
158 { /* scan all the 1-char flags */
159 arg++; /* arg->after letter. */
160 a &= 0x7F; /* ascii only please */
161 flagseen[(unsigned char) a] = 1;
173 listing |= LISTING_LISTING;
177 listing |= LISTING_SYMBOLS;
181 listing |= LISTING_HLL;
186 listing |= LISTING_NOFORM;
190 listing |= LISTING_NODEBUG;
195 listing = LISTING_DEFAULT;
206 break; /* -f means fast - no need for "app" preprocessor. */
209 /* DEBUG is implemented: it debugs different */
210 /* things to other people's assemblers. */
214 { /* Include file directory */
221 as_fatal ("virtual memory exhausted");
230 as_warn ("%s: I expected a filename after -I", myname);
231 add_include_dir (temp);
232 arg = ""; /* Finished with this arg. */
236 #ifdef WARN_SIGNED_OVERFLOW_WORD
237 /* Don't warn about signed overflow. */
242 #ifndef WORKING_DOT_WORD
247 case 'L': /* -L means keep L* symbols */
251 if (*arg) /* Rest of argument is object file-name. */
253 out_file_name = strdup (arg);
255 as_fatal ("virtual memory exhausted");
258 { /* Want next arg for a file-name. */
259 *work_argv = NULL; /* This is not a file-name. */
261 out_file_name = *++work_argv;
264 as_warn ("%s: I expected a filename after -o. \"%s\" assumed.",
265 myname, out_file_name);
266 arg = ""; /* Finished with this arg. */
270 /* -R means put data into text segment */
271 #ifdef NO_FOLD_DATA_AND_TEXT
272 as_warn ("-R option not supported on this target.");
273 flag_readonly_data_in_text = 0;
276 flag_readonly_data_in_text = 1;
283 extern char *compiler_version_string;
284 compiler_version_string = arg;
287 if (*arg && strcmp (arg, "ersion"))
289 as_warn ("Unknown option `-v%s' ignored", arg);
297 arg++; /* Skip the rest */
301 /* -W means don't warn about things */
302 flag_suppress_warnings = 1;
307 /* -X means treat warnings as errors */
310 /* -Z means attempt to generate object file even after errors. */
311 flag_always_generate_output = 1;
316 if (md_parse_option (&arg, &work_argc, &work_argv) == 0)
317 as_warn ("%s: I don't understand '%c' flag.", myname, a);
324 * We have just processed a "-..." arg, which was not a
325 * file-name. Smash it so the
326 * things that look for filenames won't ever see it.
328 * Whatever work_argv points to, it has already been used
329 * as part of a flag, so DON'T re-use it as a filename.
331 *work_argv = NULL; /* NULL means 'not a file-name' */
335 output_file_create (out_file_name);
336 assert (stdoutput != 0);
339 /* Here with flags set up in flagseen[]. */
340 perform_an_assembly_pass (argc, argv); /* Assemble it. */
344 if (seen_at_least_1_file ()
345 && !((had_warnings () && flag_always_generate_output)
346 || had_errors () > 0))
348 write_object_file (); /* relax() addresses then emit object file */
349 } /* we also check in write_object_file() just before emit. */
353 output_file_close (out_file_name);
354 unlink (out_file_name);
359 md_end (); /* MACHINE.c */
365 if ((had_warnings () && flagseen['Z'])
366 || had_errors () > 0)
372 /* perform_an_assembly_pass()
374 * Here to attempt 1 pass over each input file.
375 * We scan argv[*] looking for filenames or exactly "" which is
376 * shorthand for stdin. Any argv that is NULL is not a file-name.
377 * We set need_pass_2 TRUE if, after this, we still have unresolved
378 * expressions of the form (unknown value)+-(unknown value).
380 * Note the un*x semantics: there is only 1 logical input file, but it
381 * may be a catenation of many 'physical' input files.
384 perform_an_assembly_pass (argc, argv)
395 #ifndef BFD_ASSEMBLER
399 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
400 segment_info[i].fix_root = 0;
402 /* Create the three fixed ones */
406 seg = subseg_new (".text", 0);
407 assert (seg == SEG_E0);
408 seg = subseg_new (".data", 0);
409 assert (seg == SEG_E1);
410 seg = subseg_new (".bss", 0);
411 assert (seg == SEG_E2);
414 #else /* not MANY_SEGMENTS */
415 text_fix_root = NULL;
416 data_fix_root = NULL;
418 #endif /* not MANY_SEGMENTS */
419 #else /* BFD_ASSEMBLER */
420 /* Create the standard sections, and those the assembler uses
422 text_section = subseg_new (".text", 0);
423 data_section = subseg_new (".data", 0);
424 bss_section = subseg_new (".bss", 0);
425 /* @@ FIXME -- we're setting the RELOC flag so that sections are assumed
426 to have relocs, otherwise we don't find out in time. */
427 applicable = bfd_applicable_section_flags (stdoutput);
428 bfd_set_section_flags (stdoutput, text_section,
429 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
430 | SEC_CODE | SEC_READONLY));
431 /* @@ FIXME -- SEC_CODE seems to mean code only, rather than code possibly.*/
432 bfd_set_section_flags (stdoutput, data_section,
433 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC));
434 bfd_set_section_flags (stdoutput, bss_section, applicable & SEC_ALLOC);
435 subseg_new (BFD_ABS_SECTION_NAME, 0);
436 subseg_new (BFD_UND_SECTION_NAME, 0);
437 reg_section = subseg_new ("*GAS `reg' section*", 0);
438 expr_section = subseg_new ("*GAS `expr' section*", 0);
440 #endif /* BFD_ASSEMBLER */
442 subseg_set (text_section, 0);
444 /* This may add symbol table entries, which requires having an open BFD,
445 and sections already created, in BFD_ASSEMBLER mode. */
448 argv++; /* skip argv[0] */
449 argc--; /* skip argv[0] */
453 { /* Is it a file-name argument? */
455 /* argv->"" if stdin desired, else->filename */
456 read_a_source_file (*argv);
458 argv++; /* completed that argv */
461 read_a_source_file ("");
462 } /* perform_an_assembly_pass() */
465 /* This is not currently used. */
470 static here_before = 0;
472 as_bad ("Interrupted by signal %d", sig);
475 #if 0 /* If SIGTY is void, this produces warnings. */