Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / gnu / usr.bin / as / as.c
1 /* as.c - GAS main program.
2    Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
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
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
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.
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
18    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 /*
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
24  * are shared.
25  *
26  *
27  *                      bugs
28  *
29  * : initialisers
30  *      Since no-one else says they will support them in future: I
31  * don't support them now.
32  *
33  * $FreeBSD: src/gnu/usr.bin/as/as.c,v 1.7 1999/08/27 23:34:11 peter Exp $
34  * $DragonFly: src/gnu/usr.bin/as/Attic/as.c,v 1.2 2003/06/17 04:25:44 dillon Exp $
35  */
36
37 #include <stdio.h>
38 #include <string.h>
39
40 #ifdef _POSIX_SOURCE
41 #include <sys/types.h>  /* For pid_t in signal.h */
42 #endif
43 #include <signal.h>
44
45 #define COMMON
46
47 #include "as.h"
48 #include "subsegs.h"
49 #if __STDC__ == 1
50
51 /* This prototype for got_sig() is ansi.  If you want
52    anything else, then your compiler is lying to you when
53    it says that it is __STDC__.  If you want to change it,
54    #ifdef protect it from those of us with real ansi
55    compilers. */
56
57 #define SIGTY void
58
59 static void got_sig(int sig);
60 static char *stralloc(char *str);
61 static void perform_an_assembly_pass(int argc, char **argv);
62
63 #else /* __STDC__ */
64
65 #ifndef SIGTY
66 #define SIGTY int
67 #endif
68
69 static SIGTY got_sig();
70 static char *stralloc();        /* Make a (safe) copy of a string. */
71 static void perform_an_assembly_pass();
72
73 #endif /* not __STDC__ */
74
75 #ifdef DONTDEF
76 static char * gdb_symbol_file_name;
77 long gdb_begin();
78 #endif
79
80 int listing; /* true if a listing is wanted */
81
82 char *myname;           /* argv[0] */
83 extern const char version_string[];
84 \f
85 int main(argc,argv)
86 int argc;
87 char **argv;
88 {
89         int work_argc;  /* variable copy of argc */
90         char **work_argv;       /* variable copy of argv */
91         char *arg;              /* an arg to program */
92         char a;         /* an arg flag (after -) */
93         static const int sig[] = { SIGHUP, SIGINT, SIGPIPE, SIGTERM, 0};
94
95         for (a=0;sig[a] != 0;a++)
96             if (signal(sig[a], SIG_IGN) != SIG_IGN)
97                 signal(sig[a], got_sig);
98
99         myname=argv[0];
100         memset(flagseen, '\0', sizeof(flagseen)); /* aint seen nothing yet */
101 #ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
102 #define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
103 #endif /* OBJ_DEFAULT_OUTPUT_FILE_NAME */
104         out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
105
106         symbol_begin();         /* symbols.c */
107         subsegs_begin();                /* subsegs.c */
108         read_begin();                   /* read.c */
109         md_begin();                     /* MACHINE.c */
110         input_scrub_begin();            /* input_scrub.c */
111 #ifdef DONTDEF
112         gdb_symbol_file_name = 0;
113 #endif
114         /*
115          * Parse arguments, but we are only interested in flags.
116          * When we find a flag, we process it then make it's argv[] NULL.
117          * This helps any future argv[] scanners avoid what we processed.
118          * Since it is easy to do here we interpret the special arg "-"
119          * to mean "use stdin" and we set that argv[] pointing to "".
120          * After we have munged argv[], the only things left are source file
121          * name(s) and ""(s) denoting stdin. These file names are used
122          * (perhaps more than once) later.
123          */
124         /* FIXME-SOMEDAY this should use getopt. */
125         work_argc = argc-1;             /* don't count argv[0] */
126         work_argv = argv+1;             /* skip argv[0] */
127         for (;work_argc--;work_argv++) {
128                 arg = * work_argv;      /* work_argv points to this argument */
129
130                 if (*arg != '-')                /* Filename. We need it later. */
131                     continue;   /* Keep scanning args looking for flags. */
132                 if (arg[1] == '-' && arg[2] == 0) {
133                         /* "--" as an argument means read STDIN */
134                         /* on this scan, we don't want to think about filenames */
135                         * work_argv = "";       /* Code that means 'use stdin'. */
136                         continue;
137                 }
138                 /* This better be a switch. */
139                 arg ++;         /*->letter. */
140
141                 while ((a = * arg) != '\0')  {/* scan all the 1-char flags */
142                         arg ++; /* arg->after letter. */
143                         a &= 0x7F;      /* ascii only please */
144                         /* if (flagseen[a])
145                            as_tsktsk("%s: Flag option - %c has already been seen.", myname, a); */
146                         flagseen[a] = 1;
147                         switch (a) {
148
149                         case 'a':
150                                 {
151                                         int loop =1;
152
153                                         while (loop) {
154                                                 switch (*arg)
155                                                     {
156                                                     case 'l':
157                                                             listing |= LISTING_LISTING;
158                                                             arg++;
159                                                             break;
160                                                     case 's':
161                                                             listing |= LISTING_SYMBOLS;
162                                                             arg++;
163                                                             break;
164                                                     case 'h':
165                                                             listing |= LISTING_HLL;
166                                                             arg++;
167                                                             break;
168
169                                                     case 'n':
170                                                             listing |= LISTING_NOFORM;
171                                                             arg++;
172                                                             break;
173                                                     case 'd':
174                                                             listing |= LISTING_NODEBUG;
175                                                             arg++;
176                                                             break;
177                                                     default:
178                                                             if (!listing)
179                                                                 listing= LISTING_DEFAULT;
180                                                             loop = 0;
181                                                             break;
182                                                     }
183                                         }
184                                 }
185
186                                 break;
187
188
189                         case 'f':
190                                 break;  /* -f means fast - no need for "app" preprocessor. */
191
192                         case 'D':
193                                 /* DEBUG is implemented: it debugs different */
194                                 /* things to other people's assemblers. */
195                                 break;
196
197 #ifdef DONTDEF
198                         case 'G':       /* GNU AS switch: include gdbsyms. */
199                                 if (*arg)       /* Rest of argument is file-name. */
200                                     gdb_symbol_file_name = stralloc (arg);
201                                 else if (work_argc) {   /* Next argument is file-name. */
202                                         work_argc --;
203                                         * work_argv = NULL; /* Not a source file-name. */
204                                         gdb_symbol_file_name = * ++ work_argv;
205                                 } else
206                                     as_warn("%s: I expected a filename after -G", myname);
207                                 arg = "";       /* Finished with this arg. */
208                                 break;
209 #endif
210
211                         case 'I': { /* Include file directory */
212
213                                 char *temp = NULL;
214                                 if (*arg)
215                                     temp = stralloc (arg);
216                                 else if (work_argc) {
217                                         * work_argv = NULL;
218                                         work_argc--;
219                                         temp = * ++ work_argv;
220                                 } else
221                                     as_warn("%s: I expected a filename after -I", myname);
222                                 add_include_dir (temp);
223                                 arg = "";       /* Finished with this arg. */
224                                 break;
225                         }
226
227                         case 'L': /* -L means keep L* symbols */
228                                 break;
229
230                         case 'o':
231                                 if (*arg)       /* Rest of argument is object file-name. */
232                                     out_file_name = stralloc (arg);
233                                 else if (work_argc) {   /* Want next arg for a file-name. */
234                                         * work_argv = NULL; /* This is not a file-name. */
235                                         work_argc--;
236                                         out_file_name = * ++ work_argv;
237                                 } else
238                                     as_warn("%s: I expected a filename after -o. \"%s\" assumed.", myname, out_file_name);
239                                 arg = "";       /* Finished with this arg. */
240                                 break;
241
242                         case 'R':
243                                 /* -R means put data into text segment */
244                                 break;
245
246                         case 'v':
247 #ifdef  OBJ_VMS
248                                 {
249                                         extern char *compiler_version_string;
250                                         compiler_version_string = arg;
251                                 }
252 #else /* not OBJ_VMS */
253                                 fprintf(stderr,version_string);
254                                 if (*arg && strcmp(arg,"ersion"))
255                                     as_warn("Unknown -v option ignored");
256 #endif /* not OBJ_VMS */
257                                 while (*arg) arg++;     /* Skip the rest */
258                                 break;
259
260                         case 'W':
261                                 /* -W means don't warn about things */
262                         case 'X':
263                                 /* -X means treat warnings as errors */
264                         case 'Z':
265                                 /* -Z means attempt to generate object file even after errors. */
266                                 break;
267
268                         default:
269                                 --arg;
270                                 if (md_parse_option(&arg,&work_argc,&work_argv) == 0)
271                                     as_warn("%s: I don't understand '%c' flag.", myname, a);
272                                 if (arg && *arg)
273                                     arg++;
274                                 break;
275                         }
276                 }
277                 /*
278                  * We have just processed a "-..." arg, which was not a
279                  * file-name. Smash it so the
280                  * things that look for filenames won't ever see it.
281                  *
282                  * Whatever work_argv points to, it has already been used
283                  * as part of a flag, so DON'T re-use it as a filename.
284                  */
285                 *work_argv = NULL; /* NULL means 'not a file-name' */
286         }
287 #ifdef PIC
288         if (flagseen['K'] || flagseen['k'])
289                 picmode = 1;
290 #endif
291 #ifdef DONTDEF
292         if (gdb_begin(gdb_symbol_file_name) == 0)
293             flagseen['G'] = 0;  /* Don't do any gdbsym stuff. */
294 #endif
295         /* Here with flags set up in flagseen[]. */
296
297         perform_an_assembly_pass(argc,argv); /* Assemble it. */
298 #ifdef TC_I960
299         brtab_emit();
300 #endif
301         if (seen_at_least_1_file()
302             && !((had_warnings() && flagseen['Z'])
303                  || had_errors() > 0)) {
304                 write_object_file(); /* relax() addresses then emit object file */
305         } /* we also check in write_object_file() just before emit. */
306
307         input_scrub_end();
308         md_end();                       /* MACHINE.c */
309
310 #ifndef NO_LISTING
311         listing_print("");
312 #endif
313
314 #ifndef HO_VMS
315         return((had_warnings() && flagseen['Z'])
316                || had_errors() > 0);                    /* WIN */
317 #else   /* HO_VMS */
318         return(!((had_warnings() && flagseen['Z'])
319                  || had_errors() > 0));                 /* WIN */
320 #endif  /* HO_VMS */
321
322 } /* main() */
323
324 \f
325 /*                      perform_an_assembly_pass()
326  *
327  * Here to attempt 1 pass over each input file.
328  * We scan argv[*] looking for filenames or exactly "" which is
329  * shorthand for stdin. Any argv that is NULL is not a file-name.
330  * We set need_pass_2 TRUE if, after this, we still have unresolved
331  * expressions of the form (unknown value)+-(unknown value).
332  *
333  * Note the un*x semantics: there is only 1 logical input file, but it
334  * may be a catenation of many 'physical' input files.
335  */
336 static void perform_an_assembly_pass(argc, argv)
337 int argc;
338 char **argv;
339 {
340         int saw_a_file = 0;
341         need_pass_2             = 0;
342
343 #ifdef MANY_SEGMENTS
344         unsigned int i;
345
346         for (i= SEG_E0; i < SEG_UNKNOWN; i++)
347             {
348                     segment_info[i].fix_root = 0;
349             }
350         /* Create the three fixed ones */
351         subseg_new (SEG_E0, 0);
352         subseg_new (SEG_E1, 0);
353         subseg_new (SEG_E2, 0);
354         strcpy(segment_info[SEG_E0].scnhdr.s_name,".text");
355         strcpy(segment_info[SEG_E1].scnhdr.s_name,".data");
356         strcpy(segment_info[SEG_E2].scnhdr.s_name,".bss");
357
358         subseg_new (SEG_E0, 0);
359 #else /* not MANY_SEGMENTS */
360         text_fix_root           = NULL;
361         data_fix_root           = NULL;
362         bss_fix_root            = NULL;
363
364         subseg_new (SEG_TEXT, 0);
365 #endif /* not MANY_SEGMENTS */
366
367         argv++; /* skip argv[0] */
368         argc--; /* skip argv[0] */
369         while (argc--) {
370                 if (*argv) { /* Is it a file-name argument? */
371                         saw_a_file++;
372                         /* argv->"" if stdin desired, else->filename */
373                         read_a_source_file(*argv);
374                 }
375                 argv++; /* completed that argv */
376         }
377         if (!saw_a_file)
378             read_a_source_file("");
379 } /* perform_an_assembly_pass() */
380 \f
381 /*
382  *                      stralloc()
383  *
384  * Allocate memory for a new copy of a string. Copy the string.
385  * Return the address of the new string. Die if there is any error.
386  */
387
388 static char *
389     stralloc (str)
390 char *  str;
391 {
392         register char * retval;
393         register long len;
394
395         len = strlen (str) + 1;
396         retval = xmalloc (len);
397         (void) strcpy(retval, str);
398         return(retval);
399 }
400 \f
401 #ifdef comment
402 static void lose() {
403         as_fatal("%s: 2nd pass not implemented - get your code from random(3)", myname);
404         return;
405 } /* lose() */
406 #endif /* comment */
407
408 static SIGTY
409     got_sig(sig)
410 int sig;
411 {
412         static here_before = 0;
413
414         as_bad("Interrupted by signal %d", sig);
415         if (here_before++)
416             exit(1);
417         return((SIGTY) 0);
418 }
419
420 /*
421  * Local Variables:
422  * comment-column: 0
423  * fill-column: 131
424  * End:
425  */
426
427 /* end of as.c */