fix warnings, fix gasmode selection on linux
[cparser] / main.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #define _GNU_SOURCE
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stdbool.h>
27 #include <errno.h>
28 #include <string.h>
29 #include <assert.h>
30
31 #ifdef _WIN32
32
33 #include <fcntl.h>
34 #include <io.h>
35
36 /* no eXecute on Win32 */
37 #define X_OK 0
38 #define W_OK 2
39 #define R_OK 4
40
41 #define O_RDWR          _O_RDWR
42 #define O_CREAT         _O_CREAT
43 #define O_EXCL          _O_EXCL
44 #define O_BINARY        _O_BINARY
45
46 /* remap some names, we are not in the POSIX world */
47 #define access(fname, mode)      _access(fname, mode)
48 #define mktemp(tmpl)             _mktemp(tmpl)
49 #define open(fname, oflag, mode) _open(fname, oflag, mode)
50 #define fdopen(fd, mode)         _fdopen(fd, mode)
51 #define popen(cmd, mode)         _popen(cmd, mode)
52 #define pclose(file)             _pclose(file)
53
54 #else
55 #include <unistd.h>
56 #define HAVE_MKSTEMP
57 #endif
58
59 #ifndef WITH_LIBCORE
60 #define WITH_LIBCORE
61 #endif
62
63 #include <libfirm/firm.h>
64 #include <libfirm/be.h>
65
66 #include "lexer.h"
67 #include "token_t.h"
68 #include "types.h"
69 #include "type_hash.h"
70 #include "parser.h"
71 #include "ast2firm.h"
72 #include "diagnostic.h"
73 #include "lang_features.h"
74 #include "driver/firm_opt.h"
75 #include "driver/firm_cmdline.h"
76 #include "adt/error.h"
77 #include "write_fluffy.h"
78 #include "revision.h"
79 #include "warning.h"
80
81 #ifndef PREPROCESSOR
82 #define PREPROCESSOR "cpp -std=c99 -U__WCHAR_TYPE__ -D__WCHAR_TYPE__=int -m32"
83 #endif
84
85 #ifndef LINKER
86 #define LINKER    "gcc -m32"
87 #endif
88
89 #ifndef ASSEMBLER
90 #define ASSEMBLER "as --32"
91 #endif
92
93 /** The current c mode/dialect. */
94 unsigned int c_mode = _C89|_C99|_GNUC;
95
96 /** The 'machine size', 16, 32 or 64 bit, 32bit is the default. */
97 unsigned int machine_size = 32;
98
99 /** true if the char type is signed. */
100 bool char_is_signed = true;
101
102 /** true for strict language checking. */
103 bool strict_mode = false;
104
105 /* to switch on printing of implicit casts */
106 extern bool print_implicit_casts;
107
108 /* to switch on printing of parenthesis to indicate operator precedence */
109 extern bool print_parenthesis;
110
111 static int            verbose;
112 static struct obstack cppflags_obst, ldflags_obst;
113
114 typedef struct file_list_entry_t file_list_entry_t;
115
116 struct file_list_entry_t {
117         const char        *filename;
118         file_list_entry_t *next;
119 };
120
121 #if defined(_DEBUG) || defined(FIRM_DEBUG)
122 /**
123  * Debug printf implementation.
124  *
125  * @param fmt  printf style format parameter
126  */
127 void dbg_printf(const char *fmt, ...)
128 {
129         va_list list;
130
131         if (firm_dump.debug_print) {
132                 va_start(list, fmt);
133                 vprintf(fmt, list);
134                 va_end(list);
135         }  /* if */
136 }
137 #endif /* defined(_DEBUG) || defined(FIRM_DEBUG) */
138
139 static void initialize_firm(void)
140 {
141         firm_early_init();
142
143         dump_consts_local(1);
144         dump_keepalive_edges(1);
145 }
146
147 static void get_output_name(char *buf, size_t buflen, const char *inputname,
148                             const char *newext)
149 {
150         size_t last_dot = 0xffffffff;
151         size_t i = 0;
152
153         if(inputname == NULL) {
154                 snprintf(buf, buflen, "a%s", newext);
155                 return;
156         }
157
158         for(const char *c = inputname; *c != 0; ++c) {
159                 if(*c == '.')
160                         last_dot = i;
161                 ++i;
162         }
163         if(last_dot == 0xffffffff)
164                 last_dot = i;
165
166         if(last_dot >= buflen)
167                 panic("filename too long");
168         memcpy(buf, inputname, last_dot);
169
170         size_t extlen = strlen(newext) + 1;
171         if(extlen + last_dot >= buflen)
172                 panic("filename too long");
173         memcpy(buf+last_dot, newext, extlen);
174 }
175
176 static translation_unit_t *do_parsing(FILE *const in, const char *const input_name)
177 {
178         lexer_open_stream(in, input_name);
179         translation_unit_t *unit = parse();
180         return unit;
181 }
182
183 static void lextest(FILE *in, const char *fname)
184 {
185         lexer_open_stream(in, fname);
186
187         do {
188                 lexer_next_preprocessing_token();
189                 print_token(stdout, &lexer_token);
190                 puts("");
191         } while(lexer_token.type != T_EOF);
192 }
193
194 static FILE *preprocess(FILE *in, const char *fname, bool to_stdout)
195 {
196         char buf[4096];
197         obstack_1grow(&cppflags_obst, '\0');
198         const char *flags = obstack_finish(&cppflags_obst);
199
200         if(in != stdin) {
201                 snprintf(buf, sizeof(buf), PREPROCESSOR " %s %s", flags, fname);
202         } else {
203                 /* read from stdin */
204                 snprintf(buf, sizeof(buf), PREPROCESSOR " %s -", flags);
205         }
206
207         if(verbose) {
208                 puts(buf);
209         }
210         if(to_stdout) {
211                 int res = system(buf);
212                 exit(res);
213         } else {
214                 FILE *f = popen(buf, "r");
215                 if(f == NULL) {
216                         fprintf(stderr, "invoking preprocessor failed\n");
217                         exit(1);
218                 }
219                 return f;
220         }
221 }
222
223 static void do_link(const char *out, const char *in)
224 {
225         char buf[4096];
226         obstack_1grow(&ldflags_obst, '\0');
227         const char *flags = obstack_finish(&ldflags_obst);
228
229         snprintf(buf, sizeof(buf), LINKER " %s -o %s %s", flags, out, in);
230         if(verbose) {
231                 puts(buf);
232         }
233         int err = system(buf);
234         if(err != 0) {
235                 fprintf(stderr, "linker reported an error\n");
236                 exit(1);
237         }
238 }
239
240 static void assemble(const char *out, const char *in)
241 {
242         char buf[4096];
243
244         snprintf(buf, sizeof(buf), "%s %s -o %s", ASSEMBLER, in, out);
245         if(verbose) {
246                 puts(buf);
247         }
248
249         int err = system(buf);
250         if(err != 0) {
251                 fprintf(stderr, "assembler reported an error\n");
252                 exit(1);
253         }
254 }
255
256 static const char *try_dir(const char *dir)
257 {
258         if(dir == NULL)
259                 return dir;
260         if(access(dir, R_OK | W_OK | X_OK) == 0)
261                 return dir;
262         return NULL;
263 }
264
265 static const char *get_tempdir(void)
266 {
267         static const char *tmpdir = NULL;
268
269         if(tmpdir != NULL)
270                 return tmpdir;
271
272         if(tmpdir == NULL)
273                 tmpdir = try_dir(getenv("TMPDIR"));
274         if(tmpdir == NULL)
275                 tmpdir = try_dir(getenv("TMP"));
276         if(tmpdir == NULL)
277                 tmpdir = try_dir(getenv("TEMP"));
278
279 #ifdef P_tmpdir
280         if(tmpdir == NULL)
281                 tmpdir = try_dir(P_tmpdir);
282 #endif
283
284         if(tmpdir == NULL)
285                 tmpdir = try_dir("/var/tmp");
286         if(tmpdir == NULL)
287                 tmpdir = try_dir("/usr/tmp");
288         if(tmpdir == NULL)
289                 tmpdir = try_dir("/tmp");
290
291         if(tmpdir == NULL)
292                 tmpdir = ".";
293
294         return tmpdir;
295 }
296
297 #ifndef HAVE_MKSTEMP
298 /* cheap and nasty mkstemp replacement */
299 static int mkstemp(char *templ)
300 {
301         mktemp(templ);
302         return open(templ, O_RDWR|O_CREAT|O_EXCL|O_BINARY, 0600);
303 }
304 #endif
305
306 /**
307  * an own version of tmpnam, which: writes in a buffer, appends a user specified
308  * suffix, emits no warnings during linking (like glibc/gnu ld do for tmpnam)...
309  */
310 static FILE *make_temp_file(char *buffer, size_t buflen,
311                             const char *prefix, const char *suffix)
312 {
313         const char *tempdir = get_tempdir();
314
315         /* oh well... mkstemp doesn't accept a suffix after XXXXXX... */
316         (void) suffix;
317         suffix = "";
318
319         snprintf(buffer, buflen, "%s/%sXXXXXX%s", tempdir, prefix, suffix);
320
321         int fd = mkstemp(buffer);
322         if(fd == -1) {
323                 fprintf(stderr, "couldn't create temporary file: %s\n",
324                         strerror(errno));
325                 exit(1);
326         }
327         FILE *out = fdopen(fd, "w");
328         if(out == NULL) {
329                 fprintf(stderr, "couldn't create temporary file FILE*\n");
330                 exit(1);
331         }
332
333         return out;
334 }
335
336 /**
337  * Do the necessary lowering for compound parameters.
338  */
339 void lower_compound_params(void)
340 {
341         lower_params_t params;
342
343         params.def_ptr_alignment    = 4;
344         params.flags                = LF_COMPOUND_RETURN | LF_RETURN_HIDDEN;
345         params.hidden_params        = ADD_HIDDEN_ALWAYS_IN_FRONT;
346         params.find_pointer_type    = NULL;
347         params.ret_compound_in_regs = NULL;
348         lower_calls_with_compounds(&params);
349 }
350
351 typedef enum compile_mode_t {
352         BenchmarkParser,
353         PreprocessOnly,
354         ParseOnly,
355         Compile,
356         CompileDump,
357         CompileAssemble,
358         CompileAssembleLink,
359         LexTest,
360         PrintAst,
361         PrintFluffy,
362         Link
363 } compile_mode_t;
364
365 static void usage(const char *argv0)
366 {
367         fprintf(stderr, "Usage %s input [-o output] [-c]\n", argv0);
368 }
369
370 static void print_cparser_version(void) {
371         firm_version_t ver;
372         firm_get_version(&ver);
373
374         printf("cparser (%s) using libFirm (%u.%u",
375                 cparser_REVISION, ver.major, ver.minor);
376         if(ver.revision[0] != 0) {
377                 putchar(' ');
378                 fputs(ver.revision, stdout);
379         }
380         if(ver.build[0] != 0) {
381                 putchar(' ');
382                 fputs(ver.build, stdout);
383         }
384         puts(")\n");
385 }
386
387 static void set_be_option(const char *arg)
388 {
389         int res = firm_be_option(arg);
390         (void) res;
391         assert(res);
392 }
393
394 static void set_option(const char *arg)
395 {
396         int res = firm_option(arg);
397         (void) res;
398         assert(res);
399 }
400
401 int main(int argc, char **argv)
402 {
403         initialize_firm();
404
405         const char        *input        = NULL;
406         const char        *outname      = NULL;
407         const char        *dumpfunction = NULL;
408         compile_mode_t     mode         = CompileAssembleLink;
409         int                opt_level    = 1;
410         int                result       = EXIT_SUCCESS;
411         char               cpu_arch[16] = "ia32";
412         file_list_entry_t *c_files      = NULL;
413         file_list_entry_t *s_files      = NULL;
414         file_list_entry_t *o_files      = NULL;
415         struct obstack     file_obst;
416
417         obstack_init(&cppflags_obst);
418         obstack_init(&ldflags_obst);
419         obstack_init(&file_obst);
420
421 #define GET_ARG_AFTER(def, args)                                             \
422         def = &arg[sizeof(args)-1];                                              \
423         if(def[0] == '\0') {                                                     \
424                 ++i;                                                                 \
425                 if(i >= argc) {                                                      \
426                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
427                         argument_errors = true;                                          \
428                         break;                                                           \
429                 }                                                                    \
430                 def = argv[i];                                                       \
431                 if(def[0] == '-' && def[1] != '\0') {                                \
432                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
433                         argument_errors = true;                                          \
434                         continue;                                                        \
435                 }                                                                    \
436         }
437
438 #define SINGLE_OPTION(ch) (option[0] == (ch) && option[1] == '\0')
439
440         /* early options parsing (find out optimisation level) */
441         for(int i = 1; i < argc; ++i) {
442                 const char *arg = argv[i];
443                 if(arg[0] != '-')
444                         continue;
445
446                 const char *option = &arg[1];
447                 if(option[0] == 'O') {
448                         sscanf(&option[1], "%d", &opt_level);
449                 }
450         }
451
452         /* apply optimisation level */
453         switch(opt_level) {
454         case 0:
455                 set_option("no-opt");
456                 break;
457         case 1:
458                 set_option("no-inline");
459                 break;
460         default:
461         case 4:
462                 set_option("strict-aliasing");
463                 /* fallthrough */
464         case 3:
465                 set_option("cond-eval");
466                 set_option("if-conv");
467                 /* fallthrough */
468         case 2:
469                 set_option("inline");
470                 set_option("deconv");
471                 set_be_option("omitfp");
472                 break;
473         }
474
475         /* parse rest of options */
476         bool help_displayed  = false;
477         bool argument_errors = false;
478         for(int i = 1; i < argc; ++i) {
479                 const char *arg = argv[i];
480                 if(arg[0] == '-' && arg[1] != 0) {
481                         /* an option */
482                         const char *option = &arg[1];
483                         if(option[0] == 'o') {
484                                 GET_ARG_AFTER(outname, "-o");
485                         } else if(option[0] == 'g') {
486                                 set_be_option("debuginfo=stabs");
487                                 set_be_option("omitfp=no");
488                                 set_be_option("ia32-nooptcc=yes");
489                         } else if(SINGLE_OPTION('c')) {
490                                 mode = CompileAssemble;
491                         } else if(SINGLE_OPTION('E')) {
492                                 mode = PreprocessOnly;
493                         } else if(SINGLE_OPTION('S')) {
494                                 mode = Compile;
495                         } else if(option[0] == 'O') {
496                                 continue;
497                         } else if(option[0] == 'I') {
498                                 const char *opt;
499                                 GET_ARG_AFTER(opt, "-I");
500                                 obstack_printf(&cppflags_obst, " -I%s", opt);
501                         } else if(option[0] == 'D') {
502                                 const char *opt;
503                                 GET_ARG_AFTER(opt, "-D");
504                                 obstack_printf(&cppflags_obst, " -D%s", opt);
505                         } else if(option[0] == 'U') {
506                                 const char *opt;
507                                 GET_ARG_AFTER(opt, "-U");
508                                 obstack_printf(&cppflags_obst, " -U%s", opt);
509                         } else if(option[0] == 'l') {
510                                 const char *opt;
511                                 GET_ARG_AFTER(opt, "-l");
512                                 obstack_printf(&ldflags_obst, " -l%s", opt);
513                         } else if(option[0] == 'L') {
514                                 const char *opt;
515                                 GET_ARG_AFTER(opt, "-L");
516                                 obstack_printf(&ldflags_obst, " -L%s", opt);
517                         } else if(SINGLE_OPTION('v')) {
518                                 verbose = 1;
519                         } else if(SINGLE_OPTION('w')) {
520                                 inhibit_all_warnings = true;
521                         } else if(option[0] == 'f') {
522                                 const char *opt;
523                                 GET_ARG_AFTER(opt, "-f");
524
525                                 if(strcmp(opt, "syntax-only") == 0) {
526                                         mode = ParseOnly;
527                                 } else if(strcmp(opt, "omit-frame-pointer") == 0) {
528                                         set_be_option("omitfp");
529                                 } else if(strcmp(opt, "no-omit-frame-pointer") == 0) {
530                                         set_be_option("omitfp=no");
531                                 } else {
532                                         int res = firm_option(opt);
533                                         if (res == 0) {
534                                                 fprintf(stderr, "error: unknown Firm option '-f %s'\n",
535                                                         opt);
536                                                 argument_errors = true;
537                                                 continue;
538                                         } else if (res == -1) {
539                                                 help_displayed = true;
540                                         }
541                                 }
542                         } else if(option[0] == 'b') {
543                                 const char *opt;
544                                 GET_ARG_AFTER(opt, "-b");
545                                 int res = firm_be_option(opt);
546                                 if (res == 0) {
547                                         fprintf(stderr, "error: unknown Firm backend option '-b %s'\n",
548                                                 opt);
549                                         argument_errors = true;
550                                 } else if (res == -1) {
551                                         help_displayed = true;
552                                 } else {
553                                         if (strncmp(opt, "isa=", 4) == 0)
554                                                 strncpy(cpu_arch, opt, sizeof(cpu_arch));
555                                 }
556                         } else if(option[0] == 'W') {
557                                 set_warning_opt(&option[1]);
558                         } else if(option[0] == 'm') {
559                                 /* -m options */
560                                 const char *opt;
561                                 char arch_opt[64];
562
563                                 GET_ARG_AFTER(opt, "-m");
564                                 if(strncmp(opt, "arch=", 5) == 0) {
565                                         GET_ARG_AFTER(opt, "-march=");
566                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
567                                         int res = firm_be_option(arch_opt);
568                                         if (res == 0)
569                                                 argument_errors = true;
570                                         else {
571                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
572                                                 int res = firm_be_option(arch_opt);
573                                                 if (res == 0)
574                                                         argument_errors = true;
575                                         }
576                                 } else if(strncmp(opt, "tune=", 5) == 0) {
577                                         GET_ARG_AFTER(opt, "-mtune=");
578                                         snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
579                                         int res = firm_be_option(arch_opt);
580                                         if (res == 0)
581                                                 argument_errors = true;
582                                 } else if(strncmp(opt, "cpu=", 4) == 0) {
583                                         GET_ARG_AFTER(opt, "-mcpu=");
584                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
585                                         int res = firm_be_option(arch_opt);
586                                         if (res == 0)
587                                                 argument_errors = true;
588                                 } else if(strncmp(opt, "fpmath=", 7) == 0) {
589                                         GET_ARG_AFTER(opt, "-mfpmath=");
590                                         if(strcmp(opt, "387") == 0)
591                                                 opt = "x87";
592                                         else if(strcmp(opt, "sse") == 0)
593                                                 opt = "sse2";
594                                         else {
595                                                 fprintf(stderr, "error: option -mfpumath supports only 387 or sse\n");
596                                                 argument_errors = true;
597                                         }
598                                         if(!argument_errors) {
599                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-fpunit=%s", cpu_arch, opt);
600                                                 int res = firm_be_option(arch_opt);
601                                                 if (res == 0)
602                                                         argument_errors = true;
603                                         }
604                                 } else if(strncmp(opt, "preferred-stack-boundary=", 25) == 0) {
605                                         GET_ARG_AFTER(opt, "-mpreferred-stack-boundary=");
606                                         snprintf(arch_opt, sizeof(arch_opt), "%s-stackalign=%s", cpu_arch, opt);
607                                         int res = firm_be_option(arch_opt);
608                                         if (res == 0)
609                                                 argument_errors = true;
610                                 } else if(strcmp(opt, "omit-leaf-frame-pointer") == 0) {
611                                         set_be_option("omitleaffp=1");
612                                 } else if(strcmp(opt, "no-omit-leaf-frame-pointer") == 0) {
613                                         set_be_option("omitleaffp=0");
614                                 } else {
615                                         char *endptr;
616                                         long int value = strtol(opt, &endptr, 10);
617                                         if (*endptr != '\0') {
618                                                 fprintf(stderr, "error: wrong option '-m %s'\n",  opt);
619                                                 argument_errors = true;
620                                         }
621                                         if (value != 16 && value != 32 && value != 64) {
622                                                 fprintf(stderr, "error: option -m supports only 16, 32 or 64\n");
623                                                 argument_errors = true;
624                                         } else {
625                                                 machine_size = (unsigned int)value;
626                                         }
627                                 }
628                         } else if (option[0] == '\0') {
629                                 if(input != NULL) {
630                                         fprintf(stderr, "error: multiple input files specified\n");
631                                         argument_errors = true;
632                                 } else {
633                                         input = arg;
634                                 }
635                         } else if(strcmp(option, "pg") == 0) {
636                                 set_be_option("-b gprof");
637                                 obstack_printf(&ldflags_obst, " -pg");
638                         } else if(strcmp(option, "pedantic") == 0) {
639                                 fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg);
640                         } else if(strncmp(option, "std=", 4) == 0) {
641                                 if(strcmp(&option[4], "c99") == 0) {
642                                         c_mode = _C89|_C99;
643                                 } else if(strcmp(&option[4], "c89") == 0) {
644                                         c_mode = _C89;
645                                 } else if(strcmp(&option[4], "gnu99") == 0) {
646                                         c_mode = _C89|_C99|_GNUC;
647                                 } else if(strcmp(&option[4], "microsoft") == 0) {
648                                         c_mode = _C89|_C99|_MS;
649                                 } else
650                                         fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg);
651                         } else if(strcmp(option, "version") == 0) {
652                                 print_cparser_version();
653                         } else if (option[0] == '-') {
654                                 /* double dash option */
655                                 ++option;
656                                 if(strcmp(option, "gcc") == 0) {
657                                         c_mode |= _GNUC;
658                                 } else if(strcmp(option, "no-gcc") == 0) {
659                                         c_mode &= ~_GNUC;
660                                 } else if(strcmp(option, "ms") == 0) {
661                                         c_mode |= _MS;
662                                 } else if(strcmp(option, "no-ms") == 0) {
663                                         c_mode &= ~_MS;
664                                 } else if(strcmp(option, "signed-chars") == 0) {
665                                         char_is_signed = true;
666                                 } else if(strcmp(option, "unsigned-chars") == 0) {
667                                         char_is_signed = false;
668                                 } else if(strcmp(option, "strict") == 0) {
669                                         strict_mode = true;
670                                 } else if(strcmp(option, "lextest") == 0) {
671                                         mode = LexTest;
672                                 } else if(strcmp(option, "benchmark") == 0) {
673                                         mode = BenchmarkParser;
674                                 } else if(strcmp(option, "print-ast") == 0) {
675                                         mode = PrintAst;
676                                 } else if(strcmp(option, "print-implicit-cast") == 0) {
677                                         print_implicit_casts = true;
678                                 } else if(strcmp(option, "print-parenthesis") == 0) {
679                                         print_parenthesis = true;
680                                 } else if(strcmp(option, "print-fluffy") == 0) {
681                                         mode = PrintFluffy;
682                                 } else if(strcmp(option, "version") == 0) {
683                                         print_cparser_version();
684                                         exit(EXIT_SUCCESS);
685                                 } else if(strcmp(option, "dump-function") == 0) {
686                                         ++i;
687                                         if(i >= argc) {
688                                                 fprintf(stderr, "error: "
689                                                         "expected argument after '--dump-function'\n");
690                                                 argument_errors = true;
691                                                 break;
692                                         }
693                                         dumpfunction = argv[i];
694                                         mode         = CompileDump;
695                                 } else {
696                                         fprintf(stderr, "error: unknown argument '%s'\n", arg);
697                                         argument_errors = true;
698                                 }
699                         } else {
700                                 fprintf(stderr, "error: unknown argument '%s'\n", arg);
701                                 argument_errors = true;
702                         }
703                 } else {
704
705                         file_list_entry_t *entry
706                                 = obstack_alloc(&file_obst, sizeof(entry[0]));
707                         entry->filename = arg;
708
709                         size_t len = strlen(arg);
710                         if (len < 2) {
711                                 if (arg[0] == '-') {
712                                         /* exception: '-' as name reads C from stdin */
713                                         entry->next = c_files;
714                                         c_files     = entry;
715                                         continue;
716                                 }
717                                 fprintf(stderr, "'%s': file format not recognized\n", input);
718                                 continue;
719                         }
720
721                         if (strcmp(arg+len-2, ".c") == 0) {
722                                 entry->next = c_files;
723                                 c_files     = entry;
724                         } else if (strcmp(arg+len-2, ".s") == 0) {
725                                 entry->next = s_files;
726                                 s_files     = entry;
727                         } else if (strcmp(arg+len-2, ".o") == 0) {
728                                 entry->next = o_files;
729                                 o_files     = entry;
730                         } else {
731                                 fprintf(stderr, "'%s': file format not recognized\n", input);
732                         }
733                 }
734         }
735
736         if (c_files == NULL && s_files == NULL && o_files != NULL) {
737                 mode = Link;
738         } else if (c_files != NULL && c_files->next == NULL) {
739                 input = c_files->filename;
740         } else {
741                 if (c_files == NULL) {
742                         fprintf(stderr, "error: no input files specified\n");
743                 } else {
744                         fprintf(stderr, "error: multiple input files specified\n");
745                 }
746                 argument_errors = true;
747         }
748
749         /* we do the lowering in ast2firm */
750         firm_opt.lower_bitfields = FALSE;
751
752         if (help_displayed) {
753                 return !argument_errors;
754         }
755         if (argument_errors) {
756                 usage(argv[0]);
757                 return 1;
758         }
759
760         gen_firm_init();
761         init_symbol_table();
762         init_tokens();
763         init_types();
764         init_typehash();
765         init_basic_types();
766         init_lexer();
767         init_ast();
768         init_parser();
769         init_ast2firm();
770
771         FILE *out = NULL;
772         char  outnamebuf[4096];
773         if(outname == NULL) {
774                 switch(mode) {
775                 case BenchmarkParser:
776                 case PrintAst:
777                 case PrintFluffy:
778                 case LexTest:
779                         if(outname == NULL)
780                                 outname = "-";
781                         break;
782                 case PreprocessOnly:
783                         break;
784                 case ParseOnly:
785                         break;
786                 case Compile:
787                         get_output_name(outnamebuf, sizeof(outnamebuf), input, ".s");
788                         outname = outnamebuf;
789                         break;
790                 case CompileAssemble:
791                         get_output_name(outnamebuf, sizeof(outnamebuf), input, ".o");
792                         outname = outnamebuf;
793                         break;
794                 case CompileDump:
795                         get_output_name(outnamebuf, sizeof(outnamebuf), dumpfunction,
796                                         ".vcg");
797                         outname = outnamebuf;
798                         break;
799                 case Link:
800                 case CompileAssembleLink:
801 #ifdef _WIN32
802                         /* Windows compiler typically derive the output name from
803                            the first source file */
804                         get_output_name(outnamebuf, sizeof(outnamebuf), input, ".exe");
805                         outname = outnamebuf;
806 #else
807                         outname = "a.out";
808 #endif
809                         break;
810                 }
811         }
812
813         if (mode == Link) {
814                 obstack_1grow(&ldflags_obst, '\0');
815                 const char *flags = obstack_finish(&ldflags_obst);
816
817                 obstack_printf(&file_obst, "%s", LINKER);
818
819                 for (file_list_entry_t *entry = o_files; entry != NULL;
820                                 entry = entry->next) {
821                         obstack_printf(&file_obst, " %s", entry->filename);
822                 }
823
824                 obstack_printf(&file_obst, " -o %s %s", outname, flags);
825
826                 char *buf = obstack_finish(&file_obst);
827
828                 if(verbose) {
829                         puts(buf);
830                 }
831                 int err = system(buf);
832                 if(err != 0) {
833                         fprintf(stderr, "linker reported an error\n");
834                         exit(1);
835                 }
836                 return 0;
837         }
838
839         if(outname != NULL) {
840                 if(strcmp(outname, "-") == 0) {
841                         out = stdout;
842                 } else {
843                         out = fopen(outname, "w");
844                         if(out == NULL) {
845                                 fprintf(stderr, "Couldn't open '%s' for writing: %s\n", outname,
846                                         strerror(errno));
847                                 return 1;
848                         }
849                 }
850         }
851
852         FILE *in;
853         if(input == NULL) {
854                 fprintf(stderr, "%s: no input files\n", argv[0]);
855                 return 1;
856         } else if(strcmp(input, "-") == 0) {
857                 in    = stdin;
858                 input = "<stdin>";
859         } else {
860                 in = fopen(input, "r");
861                 if(in == NULL) {
862                         fprintf(stderr, "Couldn't open '%s': %s\n", input, strerror(errno));
863                         return 1;
864                 }
865         }
866
867         if(mode == LexTest) {
868                 lextest(in, input);
869                 fclose(in);
870                 return 0;
871         }
872
873         FILE *preprocessed_in = preprocess(in, input, mode == PreprocessOnly);
874         translation_unit_t *const unit = do_parsing(preprocessed_in, input);
875         int res = pclose(preprocessed_in);
876         if(res != 0) {
877                 return res;
878         }
879
880         if(error_count > 0) {
881                 /* parsing failed because of errors */
882                 fprintf(stderr, "%u error(s), %u warning(s)\n", error_count, warning_count);
883                 result = EXIT_FAILURE;
884         } else if(warning_count > 0) {
885                 fprintf(stderr, "%u warning(s)\n", warning_count);
886         }
887
888         if(mode == BenchmarkParser) {
889                 return result;
890         }
891
892         /* prints the AST even if errors occurred */
893         if(mode == PrintAst) {
894                 type_set_output(out);
895                 ast_set_output(out);
896                 print_ast(unit);
897                 return result;
898         }
899
900         /* cannot handle other modes with errors */
901         if(result != EXIT_SUCCESS)
902                 return result;
903
904         if(mode == PrintFluffy) {
905                 type_set_output(out);
906                 ast_set_output(out);
907                 write_fluffy_decls(out, unit);
908         }
909
910         translation_unit_to_firm(unit);
911
912         if(mode == ParseOnly) {
913                 return 0;
914         }
915
916         FILE *asm_out;
917         char  asm_tempfile[1024];
918         if(mode == CompileDump) {
919                 asm_out = NULL;
920                 firm_be_opt.selection = BE_NONE;
921         } else if(mode == Compile) {
922                 asm_out = out;
923         } else {
924                 asm_out
925                         = make_temp_file(asm_tempfile, sizeof(asm_tempfile), "cc", ".s");
926         }
927         gen_firm_finish(asm_out, input, /*c_mode=*/1, /*firm_const_exists=*/0);
928
929         if(mode == CompileDump) {
930                 /* find irg */
931                 ident    *id     = new_id_from_str(dumpfunction);
932                 ir_graph *irg    = NULL;
933                 int       n_irgs = get_irp_n_irgs();
934                 for(int i = 0; i < n_irgs; ++i) {
935                         ir_graph *tirg   = get_irp_irg(i);
936                         ident    *irg_id = get_entity_ident(get_irg_entity(tirg));
937                         if(irg_id == id) {
938                                 irg = tirg;
939                                 break;
940                         }
941                 }
942
943                 if(irg == NULL) {
944                         fprintf(stderr, "No graph for function '%s' found\n", dumpfunction);
945                         return 1;
946                 }
947
948                 dump_ir_block_graph_file(irg, out);
949                 fclose(out);
950                 return 0;
951         }
952
953         fclose(asm_out);
954
955         /* assemble assembler and create object file */
956         char obj_tfile[1024];
957         if(mode == CompileAssemble || mode == CompileAssembleLink) {
958                 const char *obj_outfile;
959                 if(mode == CompileAssemble) {
960                         fclose(out);
961                         obj_outfile = outname;
962                 } else {
963                         FILE *tempf
964                                 = make_temp_file(obj_tfile, sizeof(obj_tfile), "cc", ".o");
965                         fclose(tempf);
966                         obj_outfile = obj_tfile;
967                 }
968
969                 assemble(obj_outfile, asm_tempfile);
970         }
971
972         /* link object file */
973         if(mode == CompileAssembleLink) {
974                 do_link(outname, obj_tfile);
975         }
976
977         obstack_free(&cppflags_obst, NULL);
978         obstack_free(&ldflags_obst, NULL);
979         obstack_free(&file_obst, NULL);
980
981         exit_ast2firm();
982         exit_parser();
983         exit_ast();
984         exit_lexer();
985         exit_typehash();
986         exit_types();
987         exit_tokens();
988         exit_symbol_table();
989         return 0;
990 }