delete temp files
[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 "type_t.h"
72 #include "ast2firm.h"
73 #include "diagnostic.h"
74 #include "lang_features.h"
75 #include "driver/firm_opt.h"
76 #include "driver/firm_cmdline.h"
77 #include "adt/error.h"
78 #include "write_fluffy.h"
79 #include "write_caml.h"
80 #include "revision.h"
81 #include "warning.h"
82
83 #ifndef PREPROCESSOR
84 #ifdef __APPLE__
85 #define PREPROCESSOR "gcc -E -std=c99 -m32 -U__STRICT_ANSI__"
86 #else
87 #define PREPROCESSOR "cpp -std=c99 -m32 -U__STRICT_ANSI__"
88 #endif
89 #endif
90
91 #ifndef LINKER
92 #define LINKER    "gcc -m32"
93 #endif
94
95 #ifndef ASSEMBLER
96 #ifdef __APPLE__
97 #define ASSEMBLER "gcc -c -xassembler"
98 #else
99 #define ASSEMBLER "as --32"
100 #endif
101 #endif
102
103 /** The current c mode/dialect. */
104 lang_features_t c_mode = _C89 | _ANSI | _C99 | _GNUC;
105
106 /** The 'machine size', 16, 32 or 64 bit, 32bit is the default. */
107 unsigned int machine_size = 32;
108
109 /** true if the char type is signed. */
110 bool char_is_signed = true;
111
112 /** true for strict language checking. */
113 bool strict_mode = false;
114
115 /** use builtins for some libc functions */
116 bool use_builtins = false;
117
118 /** we have extern function with const attribute. */
119 bool have_const_functions = false;
120
121 /* to switch on printing of implicit casts */
122 extern bool print_implicit_casts;
123
124 /* to switch on printing of parenthesis to indicate operator precedence */
125 extern bool print_parenthesis;
126
127 static int             verbose;
128 static struct obstack  cppflags_obst, ldflags_obst;
129 static char            dep_target[1024];
130 static const char     *outname;
131
132 typedef struct file_list_entry_t file_list_entry_t;
133
134 typedef enum filetype_t {
135         FILETYPE_AUTODETECT,
136         FILETYPE_C,
137         FILETYPE_PREPROCESSED_C,
138         FILETYPE_CXX,
139         FILETYPE_PREPROCESSED_CXX,
140         FILETYPE_ASSEMBLER,
141         FILETYPE_PREPROCESSED_ASSEMBLER,
142         FILETYPE_OBJECT,
143         FILETYPE_UNKNOWN
144 } filetype_t;
145
146 struct file_list_entry_t {
147         const char  *name; /**< filename or NULL for stdin */
148         filetype_t   type;
149         file_list_entry_t *next;
150 };
151
152 static file_list_entry_t *temp_files;
153
154 #if defined(_DEBUG) || defined(FIRM_DEBUG)
155 /**
156  * Debug printf implementation.
157  *
158  * @param fmt  printf style format parameter
159  */
160 void dbg_printf(const char *fmt, ...)
161 {
162         va_list list;
163
164         if (firm_dump.debug_print) {
165                 va_start(list, fmt);
166                 vprintf(fmt, list);
167                 va_end(list);
168         }  /* if */
169 }
170 #endif /* defined(_DEBUG) || defined(FIRM_DEBUG) */
171
172 static void initialize_firm(void)
173 {
174         firm_early_init();
175
176         dump_consts_local(1);
177         dump_keepalive_edges(1);
178 }
179
180 static void get_output_name(char *buf, size_t buflen, const char *inputname,
181                             const char *newext)
182 {
183         size_t last_dot = 0xffffffff;
184         size_t i = 0;
185
186         if(inputname == NULL) {
187                 snprintf(buf, buflen, "a%s", newext);
188                 return;
189         }
190
191         for(const char *c = inputname; *c != 0; ++c) {
192                 if(*c == '.')
193                         last_dot = i;
194                 ++i;
195         }
196         if(last_dot == 0xffffffff)
197                 last_dot = i;
198
199         if(last_dot >= buflen)
200                 panic("filename too long");
201         memcpy(buf, inputname, last_dot);
202
203         size_t extlen = strlen(newext) + 1;
204         if(extlen + last_dot >= buflen)
205                 panic("filename too long");
206         memcpy(buf+last_dot, newext, extlen);
207 }
208
209 #include "builtins.h"
210
211 static translation_unit_t *do_parsing(FILE *const in, const char *const input_name)
212 {
213         start_parsing();
214
215         if (use_builtins) {
216                 lexer_open_buffer(builtins, sizeof(builtins)-1, "<builtin>");
217                 parse();
218         }
219
220         lexer_open_stream(in, input_name);
221         parse();
222
223         translation_unit_t *unit = finish_parsing();
224         return unit;
225 }
226
227 static void lextest(FILE *in, const char *fname)
228 {
229         lexer_open_stream(in, fname);
230
231         do {
232                 lexer_next_preprocessing_token();
233                 print_token(stdout, &lexer_token);
234                 puts("");
235         } while(lexer_token.type != T_EOF);
236 }
237
238 static void add_flag(struct obstack *obst, const char *format, ...)
239 {
240         va_list ap;
241         va_start(ap, format);
242
243         char buf[4096];
244         vsnprintf(buf, sizeof(buf), format, ap);
245
246         /* escape stuff... */
247         obstack_1grow(obst, ' ');
248         for (char *c = buf; *c != '\0'; ++c) {
249                 switch(*c) {
250                 case '"':
251                 case '\'':
252                 case '`':
253                 case ' ':
254                 case '\t':
255                 case '\n':
256                 case '\r':
257                 case '\\':
258                 case '$':
259                 case '(':
260                 case ')':
261                         obstack_1grow(obst, '\\');
262                         /* fallthrough */
263                 default:
264                         obstack_1grow(obst, *c);
265                         break;
266                 }
267         }
268
269         va_end(ap);
270 }
271
272 static const char *type_to_string(type_t *type)
273 {
274         assert(type->kind == TYPE_ATOMIC);
275         return get_atomic_kind_name(type->atomic.akind);
276 }
277
278 static FILE *preprocess(const char *fname)
279 {
280         obstack_1grow(&cppflags_obst, '\0');
281         const char *flags = obstack_finish(&cppflags_obst);
282
283         obstack_printf(&cppflags_obst, "%s", PREPROCESSOR);
284
285         /* setup default defines */
286         add_flag(&cppflags_obst, "-U__WCHAR_TYPE__");
287         add_flag(&cppflags_obst, "-D__WCHAR_TYPE__=%s",
288                  type_to_string(type_wchar_t));
289         add_flag(&cppflags_obst, "-U__SIZE_TYPE__");
290         add_flag(&cppflags_obst, "-D__SIZE_TYPE__=%s", type_to_string(type_size_t));
291
292         /* handle dependency generation */
293         if (dep_target[0] != '\0') {
294                 add_flag(&cppflags_obst, "-MF");
295                 add_flag(&cppflags_obst, "%s", dep_target);
296                 if (outname != NULL) {
297                                 add_flag(&cppflags_obst, "-MQ");
298                                 add_flag(&cppflags_obst, "%s", outname);
299                 }
300         }
301         if (flags[0] != '\0') {
302                 obstack_printf(&cppflags_obst, " %s", flags);
303         }
304         add_flag(&cppflags_obst, "%s", fname);
305
306         obstack_1grow(&cppflags_obst, '\0');
307         const char *buf = obstack_finish(&cppflags_obst);
308         if(verbose) {
309                 puts(buf);
310         }
311
312         FILE *f = popen(buf, "r");
313         if(f == NULL) {
314                 fprintf(stderr, "invoking preprocessor failed\n");
315                 exit(1);
316         }
317
318         return f;
319 }
320
321 static void assemble(const char *out, const char *in)
322 {
323         char buf[4096];
324
325         snprintf(buf, sizeof(buf), "%s %s -o %s", ASSEMBLER, in, out);
326         if(verbose) {
327                 puts(buf);
328         }
329
330         int err = system(buf);
331         if(err != 0) {
332                 fprintf(stderr, "assembler reported an error\n");
333                 exit(1);
334         }
335 }
336
337 static const char *try_dir(const char *dir)
338 {
339         if(dir == NULL)
340                 return dir;
341         if(access(dir, R_OK | W_OK | X_OK) == 0)
342                 return dir;
343         return NULL;
344 }
345
346 static const char *get_tempdir(void)
347 {
348         static const char *tmpdir = NULL;
349
350         if(tmpdir != NULL)
351                 return tmpdir;
352
353         if(tmpdir == NULL)
354                 tmpdir = try_dir(getenv("TMPDIR"));
355         if(tmpdir == NULL)
356                 tmpdir = try_dir(getenv("TMP"));
357         if(tmpdir == NULL)
358                 tmpdir = try_dir(getenv("TEMP"));
359
360 #ifdef P_tmpdir
361         if(tmpdir == NULL)
362                 tmpdir = try_dir(P_tmpdir);
363 #endif
364
365         if(tmpdir == NULL)
366                 tmpdir = try_dir("/var/tmp");
367         if(tmpdir == NULL)
368                 tmpdir = try_dir("/usr/tmp");
369         if(tmpdir == NULL)
370                 tmpdir = try_dir("/tmp");
371
372         if(tmpdir == NULL)
373                 tmpdir = ".";
374
375         return tmpdir;
376 }
377
378 #ifndef HAVE_MKSTEMP
379 /* cheap and nasty mkstemp replacement */
380 static int mkstemp(char *templ)
381 {
382         mktemp(templ);
383         return open(templ, O_RDWR|O_CREAT|O_EXCL|O_BINARY, 0600);
384 }
385 #endif
386
387 /**
388  * an own version of tmpnam, which: writes in a buffer, emits no warnings
389  * during linking (like glibc/gnu ld do for tmpnam)...
390  */
391 static FILE *make_temp_file(char *buffer, size_t buflen, const char *prefix)
392 {
393         const char *tempdir = get_tempdir();
394
395         snprintf(buffer, buflen, "%s/%sXXXXXX", tempdir, prefix);
396
397         int fd = mkstemp(buffer);
398         if(fd == -1) {
399                 fprintf(stderr, "couldn't create temporary file: %s\n",
400                         strerror(errno));
401                 exit(1);
402         }
403         FILE *out = fdopen(fd, "w");
404         if(out == NULL) {
405                 fprintf(stderr, "couldn't create temporary file FILE*\n");
406                 exit(1);
407         }
408
409         file_list_entry_t *entry = xmalloc(sizeof(*entry));
410         memset(entry, 0, sizeof(*entry));
411
412         size_t  name_len = strlen(buffer) + 1;
413         char   *name     = malloc(name_len);
414         memcpy(name, buffer, name_len);
415         entry->name      = name;
416
417         entry->next = temp_files;
418         temp_files  = entry;
419
420         return out;
421 }
422
423 static void free_temp_files(void)
424 {
425         file_list_entry_t *entry = temp_files;
426         file_list_entry_t *next;
427         for ( ; entry != NULL; entry = next) {
428                 next = entry->next;
429
430                 unlink(entry->name);
431                 free((char*) entry->name);
432                 free(entry);
433         }
434         temp_files = NULL;
435 }
436
437 /**
438  * Do the necessary lowering for compound parameters.
439  */
440 void lower_compound_params(void)
441 {
442         lower_params_t params;
443
444         params.def_ptr_alignment    = 4;
445         params.flags                = LF_COMPOUND_RETURN | LF_RETURN_HIDDEN;
446         params.hidden_params        = ADD_HIDDEN_ALWAYS_IN_FRONT;
447         params.find_pointer_type    = NULL;
448         params.ret_compound_in_regs = NULL;
449         lower_calls_with_compounds(&params);
450 }
451
452 typedef enum compile_mode_t {
453         BenchmarkParser,
454         PreprocessOnly,
455         ParseOnly,
456         Compile,
457         CompileDump,
458         CompileAssemble,
459         CompileAssembleLink,
460         LexTest,
461         PrintAst,
462         PrintFluffy,
463         PrintCaml
464 } compile_mode_t;
465
466 static void usage(const char *argv0)
467 {
468         fprintf(stderr, "Usage %s input [-o output] [-c]\n", argv0);
469 }
470
471 static void print_cparser_version(void) {
472         firm_version_t ver;
473         firm_get_version(&ver);
474
475         printf("cparser (%s) using libFirm (%u.%u",
476                 cparser_REVISION, ver.major, ver.minor);
477         if(ver.revision[0] != 0) {
478                 putchar(' ');
479                 fputs(ver.revision, stdout);
480         }
481         if(ver.build[0] != 0) {
482                 putchar(' ');
483                 fputs(ver.build, stdout);
484         }
485         puts(")\n");
486 }
487
488 static void set_be_option(const char *arg)
489 {
490         int res = firm_be_option(arg);
491         (void) res;
492         assert(res);
493 }
494
495 static void set_option(const char *arg)
496 {
497         int res = firm_option(arg);
498         (void) res;
499         assert(res);
500 }
501
502 static void copy_file(FILE *dest, FILE *input)
503 {
504         char buf[16384];
505
506         while (!feof(input) && !ferror(dest)) {
507                 size_t read = fread(buf, 1, sizeof(buf), input);
508                 if(fwrite(buf, 1, read, dest) != read) {
509                         perror("couldn't write output");
510                 }
511         }
512 }
513
514 static inline bool streq(char const* a, char const* b)
515 {
516         return strcmp(a, b) == 0;
517 }
518
519 static inline bool strstart(char const* str, char const* start)
520 {
521         do {
522                 if (*start == '\0')
523                         return true;
524         } while (*str++ == *start++);
525         return false;
526 }
527
528 static FILE *open_file(const char *filename)
529 {
530         if (streq(filename, "-")) {
531                 return stdin;
532         }
533
534         FILE *in = fopen(filename, "r");
535         if(in == NULL) {
536                 fprintf(stderr, "Couldn't open '%s': %s\n", filename,
537                                 strerror(errno));
538                 exit(1);
539         }
540
541         return in;
542 }
543
544 static filetype_t get_filetype_from_string(const char *string)
545 {
546         if (streq(string, "c") || streq(string, "c-header"))
547                 return FILETYPE_C;
548         if (streq(string, "c++") || streq(string, "c++-header"))
549                 return FILETYPE_CXX;
550         if (streq(string, "assembler"))
551                 return FILETYPE_PREPROCESSED_ASSEMBLER;
552         if (streq(string, "assembler-with-cpp"))
553                 return FILETYPE_ASSEMBLER;
554         if (streq(string, "none"))
555                 return FILETYPE_AUTODETECT;
556
557         return FILETYPE_UNKNOWN;
558 }
559
560 static void init_os_support(void)
561 {
562         /* OS option must be set to the backend */
563         switch (firm_opt.os_support) {
564         case OS_SUPPORT_MINGW:
565                 set_be_option("ia32-gasmode=mingw");
566                 wchar_atomic_kind = ATOMIC_TYPE_USHORT;
567                 break;
568         case OS_SUPPORT_LINUX:
569                 set_be_option("ia32-gasmode=elf");
570                 break;
571         case OS_SUPPORT_MACHO:
572                 set_be_option("ia32-gasmode=macho");
573                 set_be_option("ia32-stackalign=4");
574                 set_be_option("pic");
575                 break;
576         }
577 }
578
579 typedef enum lang_standard_t {
580         STANDARD_DEFAULT, /* gnu99 (for C, GCC does gnu89) or gnu++98 (for C++) */
581         STANDARD_ANSI,    /* c89 (for C) or c++98 (for C++) */
582         STANDARD_C89,     /* ISO C90 (sic) */
583         STANDARD_C90,     /* ISO C90 as modified in amendment 1 */
584         STANDARD_C99,     /* ISO C99 */
585         STANDARD_GNU89,   /* ISO C90 plus GNU extensions (including some C99) */
586         STANDARD_GNU99,   /* ISO C99 plus GNU extensions */
587         STANDARD_CXX98,   /* ISO C++ 1998 plus amendments */
588         STANDARD_GNUXX98  /* ISO C++ 1998 plus amendments and GNU extensions */
589 } lang_standard_t;
590
591 int main(int argc, char **argv)
592 {
593         initialize_firm();
594
595         const char        *dumpfunction         = NULL;
596         compile_mode_t     mode                 = CompileAssembleLink;
597         int                opt_level            = 1;
598         int                result               = EXIT_SUCCESS;
599         char               cpu_arch[16]         = "ia32";
600         file_list_entry_t *files                = NULL;
601         file_list_entry_t *last_file            = NULL;
602         bool               construct_dep_target = false;
603         struct obstack     file_obst;
604
605         atexit(free_temp_files);
606
607         /* hack for now... */
608         if (strstr(argv[0], "pptest") != NULL) {
609                 extern int pptest_main(int argc, char **argv);
610                 return pptest_main(argc, argv);
611         }
612
613         obstack_init(&cppflags_obst);
614         obstack_init(&ldflags_obst);
615         obstack_init(&file_obst);
616
617 #define GET_ARG_AFTER(def, args)                                             \
618         def = &arg[sizeof(args)-1];                                              \
619         if(def[0] == '\0') {                                                     \
620                 ++i;                                                                 \
621                 if(i >= argc) {                                                      \
622                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
623                         argument_errors = true;                                          \
624                         break;                                                           \
625                 }                                                                    \
626                 def = argv[i];                                                       \
627                 if(def[0] == '-' && def[1] != '\0') {                                \
628                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
629                         argument_errors = true;                                          \
630                         continue;                                                        \
631                 }                                                                    \
632         }
633
634 #define SINGLE_OPTION(ch) (option[0] == (ch) && option[1] == '\0')
635
636         /* early options parsing (find out optimisation level and OS) */
637         for (int i = 1; i < argc; ++i) {
638                 const char *arg = argv[i];
639                 if(arg[0] != '-')
640                         continue;
641
642                 const char *option = &arg[1];
643                 if (option[0] == 'O') {
644                         sscanf(&option[1], "%d", &opt_level);
645                 }
646                 if (strcmp(arg, "-fwin32") == 0) {
647                         firm_opt.os_support = OS_SUPPORT_MINGW;
648                 } else if (strcmp(arg, "-fmac") == 0) {
649                         firm_opt.os_support = OS_SUPPORT_MACHO;
650                 } else if (strcmp(arg, "-flinux") == 0) {
651                         firm_opt.os_support = OS_SUPPORT_LINUX;
652                 }
653         }
654
655         /* set target/os specific stuff */
656         init_os_support();
657
658         /* apply optimisation level */
659         switch(opt_level) {
660         case 0:
661                 set_option("no-opt");
662                 break;
663         case 1:
664                 set_option("no-inline");
665                 break;
666         default:
667         case 4:
668                 set_option("strict-aliasing");
669                 /* use_builtins = true; */
670                 /* fallthrough */
671         case 3:
672                 set_option("cond-eval");
673                 set_option("if-conv");
674                 /* fallthrough */
675         case 2:
676                 set_option("inline");
677                 set_option("deconv");
678                 set_be_option("omitfp");
679                 break;
680         }
681
682         /* parse rest of options */
683         lang_standard_t standard        = STANDARD_DEFAULT;
684         lang_features_t features_on     = 0;
685         lang_features_t features_off    = 0;
686         filetype_t      forced_filetype = FILETYPE_AUTODETECT;
687         bool            help_displayed  = false;
688         bool            argument_errors = false;
689         for(int i = 1; i < argc; ++i) {
690                 const char *arg = argv[i];
691                 if (arg[0] == '-' && arg[1] != '\0') {
692                         /* an option */
693                         const char *option = &arg[1];
694                         if(option[0] == 'o') {
695                                 GET_ARG_AFTER(outname, "-o");
696                         } else if(option[0] == 'g') {
697                                 set_be_option("debuginfo=stabs");
698                                 set_be_option("omitfp=no");
699                                 set_be_option("ia32-nooptcc=yes");
700                         } else if(SINGLE_OPTION('c')) {
701                                 mode = CompileAssemble;
702                         } else if(SINGLE_OPTION('E')) {
703                                 mode = PreprocessOnly;
704                         } else if(SINGLE_OPTION('S')) {
705                                 mode = Compile;
706                         } else if(option[0] == 'O') {
707                                 continue;
708                         } else if(option[0] == 'I') {
709                                 const char *opt;
710                                 GET_ARG_AFTER(opt, "-I");
711                                 add_flag(&cppflags_obst, "-I%s", opt);
712                         } else if(option[0] == 'D') {
713                                 const char *opt;
714                                 GET_ARG_AFTER(opt, "-D");
715                                 add_flag(&cppflags_obst, "-D%s", opt);
716                         } else if(option[0] == 'U') {
717                                 const char *opt;
718                                 GET_ARG_AFTER(opt, "-U");
719                                 add_flag(&cppflags_obst, "-U%s", opt);
720                         } else if(option[0] == 'l') {
721                                 const char *opt;
722                                 GET_ARG_AFTER(opt, "-l");
723                                 add_flag(&ldflags_obst, "-l%s", opt);
724                         } else if(option[0] == 'L') {
725                                 const char *opt;
726                                 GET_ARG_AFTER(opt, "-L");
727                                 add_flag(&ldflags_obst, "-L%s", opt);
728                         } else if(SINGLE_OPTION('v')) {
729                                 verbose = 1;
730                         } else if(SINGLE_OPTION('w')) {
731                                 memset(&warning, 0, sizeof(warning));
732                         } else if(option[0] == 'x') {
733                                 const char *opt;
734                                 GET_ARG_AFTER(opt, "-x");
735                                 forced_filetype = get_filetype_from_string(opt);
736                                 if (forced_filetype == FILETYPE_UNKNOWN) {
737                                         fprintf(stderr, "Unknown language '%s'\n", opt);
738                                         argument_errors = true;
739                                 }
740                         } else if (streq(option, "M")) {
741                                 mode = PreprocessOnly;
742                                 add_flag(&cppflags_obst, "-M");
743                         } else if (streq(option, "MMD") ||
744                                    streq(option, "MD")) {
745                             construct_dep_target = true;
746                                 add_flag(&cppflags_obst, "-%s", option);
747                         } else if(streq(option, "MM")  ||
748                                    streq(option, "MP")) {
749                                 add_flag(&cppflags_obst, "-%s", option);
750                         } else if (streq(option, "MT") ||
751                                    streq(option, "MQ") ||
752                                    streq(option, "MF")) {
753                                 const char *opt;
754                                 GET_ARG_AFTER(opt, "-MT");
755                                 add_flag(&cppflags_obst, "-%s", option);
756                                 add_flag(&cppflags_obst, "%s", opt);
757                         } else if (streq(option, "pipe")) {
758                                 /* here for gcc compatibility */
759                         } else if (option[0] == 'f') {
760                                 char const *orig_opt;
761                                 GET_ARG_AFTER(orig_opt, "-f");
762
763                                 if (strstart(orig_opt, "align-loops=") ||
764                                     strstart(orig_opt, "align-jumps=") ||
765                                     strstart(orig_opt, "align-functions=")) {
766                                         fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
767                                 } else {
768                                         char const *opt         = orig_opt;
769                                         bool        truth_value = true;
770                                         if (opt[0] == 'n' && opt[1] == 'o' && opt[2] == '-') {
771                                                 truth_value = false;
772                                                 opt += 3;
773                                         }
774
775                                         if (streq(opt, "dollars-in-identifiers")) {
776                                                 allow_dollar_in_symbol = truth_value;
777                                         } if (streq(opt, "builtins")) {
778                                                 use_builtins = truth_value;
779                                         } else if (streq(opt, "short-wchar")) {
780                                                 wchar_atomic_kind = truth_value ? ATOMIC_TYPE_USHORT
781                                                         : ATOMIC_TYPE_INT;
782                                         } else if (streq(opt, "syntax-only")) {
783                                                 mode = truth_value ? ParseOnly : CompileAssembleLink;
784                                         } else if (streq(opt, "omit-frame-pointer")) {
785                                                 set_be_option(truth_value ? "omitfp" : "omitfp=no");
786                                         } else if (streq(opt, "strength-reduce")) {
787                                                 firm_option(truth_value ? "strength-red" : "no-strength-red");
788                                         } else if (streq(opt, "fast-math")               ||
789                                                    streq(opt, "jump-tables")             ||
790                                                    streq(opt, "unroll-loops")            ||
791                                                    streq(opt, "expensive-optimizations") ||
792                                                    streq(opt, "common")                  ||
793                                                    streq(opt, "PIC")                     ||
794                                                    streq(opt, "align-loops")             ||
795                                                    streq(opt, "align-jumps")             ||
796                                                    streq(opt, "align-functions")) {
797                                                 fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
798                                         } else {
799                                                 int res = firm_option(orig_opt);
800                                                 if (res == 0) {
801                                                         fprintf(stderr, "error: unknown Firm option '-f%s'\n",
802                                                                 orig_opt);
803                                                         argument_errors = true;
804                                                         continue;
805                                                 } else if (res == -1) {
806                                                         help_displayed = true;
807                                                 }
808                                         }
809                                 }
810                         } else if (option[0] == 'b') {
811                                 const char *opt;
812                                 GET_ARG_AFTER(opt, "-b");
813                                 int res = firm_be_option(opt);
814                                 if (res == 0) {
815                                         fprintf(stderr, "error: unknown Firm backend option '-b %s'\n",
816                                                 opt);
817                                         argument_errors = true;
818                                 } else if (res == -1) {
819                                         help_displayed = true;
820                                 } else if (strstart(opt, "isa=")) {
821                                         strncpy(cpu_arch, opt, sizeof(cpu_arch));
822                                 }
823                         } else if (option[0] == 'W') {
824                                 if (strstart(option + 1, "l,")) // a gcc-style linker option
825                                 {
826                                         const char *opt;
827                                         GET_ARG_AFTER(opt, "-Wl,");
828                                         add_flag(&ldflags_obst, "-Wl,%s", opt);
829                                 }
830                                 else set_warning_opt(&option[1]);
831                         } else if(option[0] == 'm') {
832                                 /* -m options */
833                                 const char *opt;
834                                 char arch_opt[64];
835
836                                 GET_ARG_AFTER(opt, "-m");
837                                 if (strstart(opt, "arch=")) {
838                                         GET_ARG_AFTER(opt, "-march=");
839                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
840                                         int res = firm_be_option(arch_opt);
841                                         if (res == 0)
842                                                 argument_errors = true;
843                                         else {
844                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
845                                                 int res = firm_be_option(arch_opt);
846                                                 if (res == 0)
847                                                         argument_errors = true;
848                                         }
849                                 } else if (strstart(opt, "tune=")) {
850                                         GET_ARG_AFTER(opt, "-mtune=");
851                                         snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
852                                         int res = firm_be_option(arch_opt);
853                                         if (res == 0)
854                                                 argument_errors = true;
855                                 } else if (strstart(opt, "cpu=")) {
856                                         GET_ARG_AFTER(opt, "-mcpu=");
857                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
858                                         int res = firm_be_option(arch_opt);
859                                         if (res == 0)
860                                                 argument_errors = true;
861                                 } else if (strstart(opt, "fpmath=")) {
862                                         GET_ARG_AFTER(opt, "-mfpmath=");
863                                         if (streq(opt, "387"))
864                                                 opt = "x87";
865                                         else if (streq(opt, "sse"))
866                                                 opt = "sse2";
867                                         else {
868                                                 fprintf(stderr, "error: option -mfpumath supports only 387 or sse\n");
869                                                 argument_errors = true;
870                                         }
871                                         if(!argument_errors) {
872                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-fpunit=%s", cpu_arch, opt);
873                                                 int res = firm_be_option(arch_opt);
874                                                 if (res == 0)
875                                                         argument_errors = true;
876                                         }
877                                 } else if (strstart(opt, "preferred-stack-boundary=")) {
878                                         GET_ARG_AFTER(opt, "-mpreferred-stack-boundary=");
879                                         snprintf(arch_opt, sizeof(arch_opt), "%s-stackalign=%s", cpu_arch, opt);
880                                         int res = firm_be_option(arch_opt);
881                                         if (res == 0)
882                                                 argument_errors = true;
883                                 } else if (streq(opt, "omit-leaf-frame-pointer")) {
884                                         set_be_option("omitleaffp=1");
885                                 } else if (streq(opt, "no-omit-leaf-frame-pointer")) {
886                                         set_be_option("omitleaffp=0");
887                                 } else {
888                                         char *endptr;
889                                         long int value = strtol(opt, &endptr, 10);
890                                         if (*endptr != '\0') {
891                                                 fprintf(stderr, "error: wrong option '-m %s'\n",  opt);
892                                                 argument_errors = true;
893                                         }
894                                         if (value != 16 && value != 32 && value != 64) {
895                                                 fprintf(stderr, "error: option -m supports only 16, 32 or 64\n");
896                                                 argument_errors = true;
897                                         } else {
898                                                 machine_size = (unsigned int)value;
899                                         }
900                                 }
901                         } else if (streq(option, "pg")) {
902                                 set_be_option("gprof");
903                                 add_flag(&ldflags_obst, "-pg");
904                         } else if (streq(option, "pedantic") ||
905                                    streq(option, "ansi")) {
906                                 fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg);
907                         } else if (streq(option, "shared")) {
908                                 add_flag(&ldflags_obst, "-shared");
909                         } else if (strstart(option, "std=")) {
910                                 const char *const o = &option[4];
911                                 standard =
912                                         streq(o, "c++")            ? STANDARD_CXX98   :
913                                         streq(o, "c++98")          ? STANDARD_CXX98   :
914                                         streq(o, "c89")            ? STANDARD_C89     :
915                                         streq(o, "c99")            ? STANDARD_C99     :
916                                         streq(o, "c9x")            ? STANDARD_C99     : // deprecated
917                                         streq(o, "gnu++98")        ? STANDARD_GNUXX98 :
918                                         streq(o, "gnu89")          ? STANDARD_GNU89   :
919                                         streq(o, "gnu99")          ? STANDARD_GNU99   :
920                                         streq(o, "gnu9x")          ? STANDARD_GNU99   : // deprecated
921                                         streq(o, "iso9899:1990")   ? STANDARD_C89     :
922                                         streq(o, "iso9899:199409") ? STANDARD_C90     :
923                                         streq(o, "iso9899:1999")   ? STANDARD_C99     :
924                                         streq(o, "iso9899:199x")   ? STANDARD_C99     : // deprecated
925                                         (fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg), standard);
926                         } else if (streq(option, "version")) {
927                                 print_cparser_version();
928                         } else if (option[0] == '-') {
929                                 /* double dash option */
930                                 ++option;
931                                 if (streq(option, "gcc")) {
932                                         features_on  |=  _GNUC;
933                                         features_off &= ~_GNUC;
934                                 } else if (streq(option, "no-gcc")) {
935                                         features_on  &= ~_GNUC;
936                                         features_off |=  _GNUC;
937                                 } else if (streq(option, "ms")) {
938                                         features_on  |=  _MS;
939                                         features_off &= ~_MS;
940                                 } else if (streq(option, "no-ms")) {
941                                         features_on  &= ~_MS;
942                                         features_off |=  _MS;
943                                 } else if (streq(option, "signed-chars")) {
944                                         char_is_signed = true;
945                                 } else if (streq(option, "unsigned-chars")) {
946                                         char_is_signed = false;
947                                 } else if (streq(option, "strict")) {
948                                         strict_mode = true;
949                                 } else if (streq(option, "lextest")) {
950                                         mode = LexTest;
951                                 } else if (streq(option, "benchmark")) {
952                                         mode = BenchmarkParser;
953                                 } else if (streq(option, "print-ast")) {
954                                         mode = PrintAst;
955                                 } else if (streq(option, "print-implicit-cast")) {
956                                         print_implicit_casts = true;
957                                 } else if (streq(option, "print-parenthesis")) {
958                                         print_parenthesis = true;
959                                 } else if (streq(option, "print-fluffy")) {
960                                         mode = PrintFluffy;
961                                 } else if (streq(option, "print-caml")) {
962                                         mode = PrintCaml;
963                                 } else if (streq(option, "version")) {
964                                         print_cparser_version();
965                                         exit(EXIT_SUCCESS);
966                                 } else if (streq(option, "dump-function")) {
967                                         ++i;
968                                         if(i >= argc) {
969                                                 fprintf(stderr, "error: "
970                                                         "expected argument after '--dump-function'\n");
971                                                 argument_errors = true;
972                                                 break;
973                                         }
974                                         dumpfunction = argv[i];
975                                         mode         = CompileDump;
976                                 } else {
977                                         fprintf(stderr, "error: unknown argument '%s'\n", arg);
978                                         argument_errors = true;
979                                 }
980                         } else {
981                                 fprintf(stderr, "error: unknown argument '%s'\n", arg);
982                                 argument_errors = true;
983                         }
984                 } else {
985                         filetype_t type = forced_filetype;
986                         if (type == FILETYPE_AUTODETECT) {
987                                 if (streq(arg, "-")) {
988                                         /* - implicitly means C source file */
989                                         type = FILETYPE_C;
990                                 } else {
991                                         const char *suffix = strrchr(arg, '.');
992                                         /* Ensure there is at least one char before the suffix */
993                                         if (suffix != NULL && suffix != arg) {
994                                                 ++suffix;
995                                                 type =
996                                                         streq(suffix, "S")   ? FILETYPE_ASSEMBLER              :
997                                                         streq(suffix, "a")   ? FILETYPE_OBJECT                 :
998                                                         streq(suffix, "c")   ? FILETYPE_C                      :
999                                                         streq(suffix, "cc")  ? FILETYPE_CXX                    :
1000                                                         streq(suffix, "cpp") ? FILETYPE_CXX                    :
1001                                                         streq(suffix, "cxx") ? FILETYPE_CXX                    :
1002                                                         streq(suffix, "h")   ? FILETYPE_C                      :
1003                                                         streq(suffix, "o")   ? FILETYPE_OBJECT                 :
1004                                                         streq(suffix, "s")   ? FILETYPE_PREPROCESSED_ASSEMBLER :
1005                                                         streq(suffix, "so")  ? FILETYPE_OBJECT                 :
1006                                                         FILETYPE_AUTODETECT;
1007                                         }
1008                                 }
1009
1010                                 if (type == FILETYPE_AUTODETECT) {
1011                                         fprintf(stderr, "'%s': file format not recognized\n", arg);
1012                                         continue;
1013                                 }
1014                         }
1015
1016                         file_list_entry_t *entry
1017                                 = obstack_alloc(&file_obst, sizeof(entry[0]));
1018                         memset(entry, 0, sizeof(entry[0]));
1019                         entry->name = arg;
1020                         entry->type = type;
1021
1022                         if (last_file != NULL) {
1023                                 last_file->next = entry;
1024                         } else {
1025                                 files = entry;
1026                         }
1027                         last_file = entry;
1028                 }
1029         }
1030
1031         if (files == NULL) {
1032                 fprintf(stderr, "error: no input files specified\n");
1033                 argument_errors = true;
1034         }
1035
1036         if (help_displayed) {
1037                 return !argument_errors;
1038         }
1039         if (argument_errors) {
1040                 usage(argv[0]);
1041                 return 1;
1042         }
1043
1044         /* we do the lowering in ast2firm */
1045         firm_opt.lower_bitfields = FALSE;
1046
1047         gen_firm_init();
1048         init_symbol_table();
1049         init_types();
1050         init_typehash();
1051         init_basic_types();
1052         init_lexer();
1053         init_ast();
1054         init_parser();
1055         init_ast2firm();
1056
1057         if (construct_dep_target) {
1058                 if (outname != 0 && strlen(outname) >= 2) {
1059                         get_output_name(dep_target, sizeof(dep_target), outname, ".d");
1060                 } else {
1061                         get_output_name(dep_target, sizeof(dep_target), files->name, ".d");
1062                 }
1063         } else {
1064                 dep_target[0] = '\0';
1065         }
1066
1067         char outnamebuf[4096];
1068         if (outname == NULL) {
1069                 const char *filename = files->name;
1070
1071                 switch(mode) {
1072                 case BenchmarkParser:
1073                 case PrintAst:
1074                 case PrintFluffy:
1075                 case PrintCaml:
1076                 case LexTest:
1077                 case PreprocessOnly:
1078                 case ParseOnly:
1079                         outname = "-";
1080                         break;
1081                 case Compile:
1082                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".s");
1083                         outname = outnamebuf;
1084                         break;
1085                 case CompileAssemble:
1086                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".o");
1087                         outname = outnamebuf;
1088                         break;
1089                 case CompileDump:
1090                         get_output_name(outnamebuf, sizeof(outnamebuf), dumpfunction,
1091                                         ".vcg");
1092                         outname = outnamebuf;
1093                         break;
1094                 case CompileAssembleLink:
1095 #ifdef _WIN32
1096                         outname = "a.exe";
1097 #else
1098                         outname = "a.out";
1099 #endif
1100                         break;
1101                 }
1102         }
1103
1104         assert(outname != NULL);
1105
1106         FILE *out;
1107         if (streq(outname, "-")) {
1108                 out = stdout;
1109         } else {
1110                 out = fopen(outname, "w");
1111                 if(out == NULL) {
1112                         fprintf(stderr, "Couldn't open '%s' for writing: %s\n", outname,
1113                                         strerror(errno));
1114                         return 1;
1115                 }
1116         }
1117
1118         file_list_entry_t *file;
1119         for (file = files; file != NULL; file = file->next) {
1120                 char        asm_tempfile[1024];
1121                 const char *filename = file->name;
1122                 filetype_t  filetype = file->type;
1123
1124                 if (filetype == FILETYPE_OBJECT)
1125                         continue;
1126
1127                 FILE *in = NULL;
1128                 if (mode == LexTest) {
1129                         if (in == NULL)
1130                                 in = open_file(filename);
1131                         lextest(in, filename);
1132                         fclose(in);
1133                         exit(EXIT_SUCCESS);
1134                 }
1135
1136                 FILE *preprocessed_in = NULL;
1137                 switch (filetype) {
1138                         case FILETYPE_C:         filetype = FILETYPE_PREPROCESSED_C;         goto preprocess;
1139                         case FILETYPE_CXX:       filetype = FILETYPE_PREPROCESSED_CXX;       goto preprocess;
1140                         case FILETYPE_ASSEMBLER: filetype = FILETYPE_PREPROCESSED_ASSEMBLER; goto preprocess;
1141 preprocess:
1142                                 /* no support for input on FILE* yet */
1143                                 if (in != NULL)
1144                                         panic("internal compiler error: in for preprocessor != NULL");
1145
1146                                 preprocessed_in = preprocess(filename);
1147                                 if (mode == PreprocessOnly) {
1148                                         copy_file(out, preprocessed_in);
1149                                         int result = pclose(preprocessed_in);
1150                                         fclose(out);
1151                                         return result;
1152                                 }
1153
1154                                 in = preprocessed_in;
1155                                 break;
1156
1157                         default:
1158                                 break;
1159                 }
1160
1161                 FILE *asm_out;
1162                 if(mode == Compile) {
1163                         asm_out = out;
1164                 } else {
1165                         asm_out = make_temp_file(asm_tempfile, sizeof(asm_tempfile), "ccs");
1166                 }
1167
1168                 if (in == NULL)
1169                         in = open_file(filename);
1170
1171                 /* preprocess and compile */
1172                 if (filetype == FILETYPE_PREPROCESSED_C) {
1173                         char const* invalid_mode;
1174                         switch (standard) {
1175                                 case STANDARD_ANSI:
1176                                 case STANDARD_C89:   c_mode = _C89;                break;
1177                                 /* TODO ^v determine difference between these two */
1178                                 case STANDARD_C90:   c_mode = _C89;                break;
1179                                 case STANDARD_C99:   c_mode = _C89 | _C99;         break;
1180                                 case STANDARD_GNU89: c_mode = _C89 |        _GNUC; break;
1181
1182 default_c_warn:
1183                                         fprintf(stderr,
1184                                                         "warning: command line option \"-std=%s\" is not valid for C\n",
1185                                                         invalid_mode);
1186                                         /* FALLTHROUGH */
1187                                 case STANDARD_DEFAULT:
1188                                 case STANDARD_GNU99:   c_mode = _C89 | _C99 | _GNUC; break;
1189
1190                                 case STANDARD_CXX98:   invalid_mode = "c++98"; goto default_c_warn;
1191                                 case STANDARD_GNUXX98: invalid_mode = "gnu98"; goto default_c_warn;
1192                         }
1193                         goto do_parsing;
1194                 } else if (filetype == FILETYPE_PREPROCESSED_CXX) {
1195                         char const* invalid_mode;
1196                         switch (standard) {
1197                                 case STANDARD_C89:   invalid_mode = "c89";   goto default_cxx_warn;
1198                                 case STANDARD_C90:   invalid_mode = "c90";   goto default_cxx_warn;
1199                                 case STANDARD_C99:   invalid_mode = "c99";   goto default_cxx_warn;
1200                                 case STANDARD_GNU89: invalid_mode = "gnu89"; goto default_cxx_warn;
1201                                 case STANDARD_GNU99: invalid_mode = "gnu99"; goto default_cxx_warn;
1202
1203                                 case STANDARD_ANSI:
1204                                 case STANDARD_CXX98: c_mode = _CXX; break;
1205
1206 default_cxx_warn:
1207                                         fprintf(stderr,
1208                                                         "warning: command line option \"-std=%s\" is not valid for C++\n",
1209                                                         invalid_mode);
1210                                 case STANDARD_DEFAULT:
1211                                 case STANDARD_GNUXX98: c_mode = _CXX | _GNUC; break;
1212                         }
1213
1214 do_parsing:
1215                         c_mode |= features_on;
1216                         c_mode &= ~features_off;
1217                         init_tokens();
1218                         translation_unit_t *const unit = do_parsing(in, filename);
1219
1220                         /* prints the AST even if errors occurred */
1221                         if (mode == PrintAst) {
1222                                 type_set_output(out);
1223                                 ast_set_output(out);
1224                                 print_ast(unit);
1225                         }
1226
1227                         if(error_count > 0) {
1228                                 /* parsing failed because of errors */
1229                                 fprintf(stderr, "%u error(s), %u warning(s)\n", error_count,
1230                                         warning_count);
1231                                 result = EXIT_FAILURE;
1232                                 continue;
1233                         } else if(warning_count > 0) {
1234                                 fprintf(stderr, "%u warning(s)\n", warning_count);
1235                         }
1236
1237                         if (in == preprocessed_in) {
1238                                 int pp_result = pclose(preprocessed_in);
1239                                 if (pp_result != EXIT_SUCCESS) {
1240                                         exit(EXIT_FAILURE);
1241                                 }
1242                         }
1243
1244                         if(mode == BenchmarkParser) {
1245                                 return result;
1246                         } else if(mode == PrintFluffy) {
1247                                 write_fluffy_decls(out, unit);
1248                                 continue;
1249                         } else if (mode == PrintCaml) {
1250                                 write_caml_decls(out, unit);
1251                                 continue;
1252                         }
1253
1254                         translation_unit_to_firm(unit);
1255
1256                         if (mode == ParseOnly) {
1257                                 continue;
1258                         }
1259
1260                         if (mode == CompileDump) {
1261                                 /* find irg */
1262                                 ident    *id     = new_id_from_str(dumpfunction);
1263                                 ir_graph *irg    = NULL;
1264                                 int       n_irgs = get_irp_n_irgs();
1265                                 for(int i = 0; i < n_irgs; ++i) {
1266                                         ir_graph *tirg   = get_irp_irg(i);
1267                                         ident    *irg_id = get_entity_ident(get_irg_entity(tirg));
1268                                         if(irg_id == id) {
1269                                                 irg = tirg;
1270                                                 break;
1271                                         }
1272                                 }
1273
1274                                 if(irg == NULL) {
1275                                         fprintf(stderr, "No graph for function '%s' found\n",
1276                                                 dumpfunction);
1277                                         exit(1);
1278                                 }
1279
1280                                 dump_ir_block_graph_file(irg, out);
1281                                 fclose(out);
1282                                 exit(0);
1283                         }
1284
1285                         gen_firm_finish(asm_out, filename, /*c_mode=*/1,
1286                                         have_const_functions);
1287                         if (asm_out != out) {
1288                                 fclose(asm_out);
1289                         }
1290                 } else if (filetype == FILETYPE_PREPROCESSED_ASSEMBLER) {
1291                         copy_file(asm_out, in);
1292                         if (in == preprocessed_in) {
1293                                 int pp_result = pclose(preprocessed_in);
1294                                 if (pp_result != EXIT_SUCCESS) {
1295                                         return pp_result;
1296                                 }
1297                         }
1298                         if(asm_out != out) {
1299                                 fclose(asm_out);
1300                         }
1301                 }
1302
1303                 if (mode == Compile)
1304                         continue;
1305
1306                 /* if we're here then we have preprocessed assembly */
1307                 filename = asm_tempfile;
1308                 filetype = FILETYPE_PREPROCESSED_ASSEMBLER;
1309
1310                 /* assemble */
1311                 if (filetype == FILETYPE_PREPROCESSED_ASSEMBLER) {
1312                         char        temp[1024];
1313                         const char *filename_o;
1314                         if(mode == CompileAssemble) {
1315                                 fclose(out);
1316                                 filename_o = outname;
1317                         } else {
1318                                 FILE *tempf = make_temp_file(temp, sizeof(temp), "cco");
1319                                 fclose(tempf);
1320                                 filename_o = temp;
1321                         }
1322
1323                         assemble(filename_o, filename);
1324
1325                         size_t len = strlen(filename_o) + 1;
1326                         filename = obstack_copy(&file_obst, filename_o, len);
1327                         filetype = FILETYPE_OBJECT;
1328                 }
1329
1330                 /* ok we're done here, process next file */
1331                 file->name = filename;
1332                 file->type = filetype;
1333         }
1334
1335         if (result != EXIT_SUCCESS)
1336                 return result;
1337
1338         /* link program file */
1339         if(mode == CompileAssembleLink) {
1340                 obstack_1grow(&ldflags_obst, '\0');
1341                 const char *flags = obstack_finish(&ldflags_obst);
1342
1343                 /* construct commandline */
1344                 obstack_printf(&file_obst, "%s", LINKER);
1345                 for (file_list_entry_t *entry = files; entry != NULL;
1346                                 entry = entry->next) {
1347                         if (entry->type != FILETYPE_OBJECT)
1348                                 continue;
1349
1350                         add_flag(&file_obst, "%s", entry->name);
1351                 }
1352
1353                 add_flag(&file_obst, "-o");
1354                 add_flag(&file_obst, outname);
1355                 obstack_printf(&file_obst, "%s", flags);
1356                 obstack_1grow(&file_obst, '\0');
1357
1358                 char *commandline = obstack_finish(&file_obst);
1359
1360                 if(verbose) {
1361                         puts(commandline);
1362                 }
1363                 int err = system(commandline);
1364                 if(err != EXIT_SUCCESS) {
1365                         fprintf(stderr, "linker reported an error\n");
1366                         exit(1);
1367                 }
1368         }
1369
1370         obstack_free(&cppflags_obst, NULL);
1371         obstack_free(&ldflags_obst, NULL);
1372         obstack_free(&file_obst, NULL);
1373
1374         exit_ast2firm();
1375         exit_parser();
1376         exit_ast();
1377         exit_lexer();
1378         exit_typehash();
1379         exit_types();
1380         exit_tokens();
1381         exit_symbol_table();
1382         return 0;
1383 }