we (and gcc) have no real -fstrength-reduce
[cparser] / main.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 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 #define unlink(filename)         _unlink(filename)
54
55 #else
56 #include <unistd.h>
57 #define HAVE_MKSTEMP
58 #endif
59
60 #include <libfirm/firm.h>
61 #include <libfirm/be.h>
62
63 #include "lexer.h"
64 #include "token_t.h"
65 #include "types.h"
66 #include "type_hash.h"
67 #include "parser.h"
68 #include "type_t.h"
69 #include "ast2firm.h"
70 #include "diagnostic.h"
71 #include "lang_features.h"
72 #include "driver/firm_opt.h"
73 #include "driver/firm_cmdline.h"
74 #include "driver/firm_timing.h"
75 #include "driver/firm_machine.h"
76 #include "adt/error.h"
77 #include "adt/strutil.h"
78 #include "wrappergen/write_fluffy.h"
79 #include "wrappergen/write_jna.h"
80 #include "revision.h"
81 #include "warning.h"
82 #include "help.h"
83 #include "mangle.h"
84 #include "printer.h"
85
86 #ifndef PREPROCESSOR
87 #ifndef __WIN32__
88 #define PREPROCESSOR "gcc -E -U__STRICT_ANSI__"
89 #else
90 #define PREPROCESSOR "cpp -U__STRICT_ANSI__"
91 #endif
92 #endif
93
94 #ifndef LINKER
95 #define LINKER    "gcc"
96 #endif
97
98 #ifndef ASSEMBLER
99 #define ASSEMBLER "gcc -c -xassembler"
100 #endif
101
102 unsigned int       c_mode                    = _C89 | _ANSI | _C99 | _GNUC;
103 unsigned int       machine_size              = 32;
104 bool               byte_order_big_endian     = false;
105 bool               char_is_signed            = true;
106 bool               strict_mode               = false;
107 bool               use_builtins              = false;
108 atomic_type_kind_t wchar_atomic_kind         = ATOMIC_TYPE_INT;
109 unsigned           force_long_double_size    = 0;
110 bool               enable_main_collect2_hack = false;
111 bool               freestanding              = false;
112
113 static machine_triple_t *target_machine;
114 static const char       *target_triple;
115 static int               verbose;
116 static struct obstack    cppflags_obst;
117 static struct obstack    ldflags_obst;
118 static struct obstack    asflags_obst;
119 static char              dep_target[1024];
120 static const char       *outname;
121 static bool              define_intmax_types;
122
123 typedef enum lang_standard_t {
124         STANDARD_DEFAULT, /* gnu99 (for C, GCC does gnu89) or gnu++98 (for C++) */
125         STANDARD_ANSI,    /* c89 (for C) or c++98 (for C++) */
126         STANDARD_C89,     /* ISO C90 (sic) */
127         STANDARD_C90,     /* ISO C90 as modified in amendment 1 */
128         STANDARD_C99,     /* ISO C99 */
129         STANDARD_GNU89,   /* ISO C90 plus GNU extensions (including some C99) */
130         STANDARD_GNU99,   /* ISO C99 plus GNU extensions */
131         STANDARD_CXX98,   /* ISO C++ 1998 plus amendments */
132         STANDARD_GNUXX98  /* ISO C++ 1998 plus amendments and GNU extensions */
133 } lang_standard_t;
134
135 static lang_standard_t standard;
136
137 typedef struct file_list_entry_t file_list_entry_t;
138
139 typedef enum filetype_t {
140         FILETYPE_AUTODETECT,
141         FILETYPE_C,
142         FILETYPE_PREPROCESSED_C,
143         FILETYPE_CXX,
144         FILETYPE_PREPROCESSED_CXX,
145         FILETYPE_ASSEMBLER,
146         FILETYPE_PREPROCESSED_ASSEMBLER,
147         FILETYPE_OBJECT,
148         FILETYPE_IR,
149         FILETYPE_UNKNOWN
150 } filetype_t;
151
152 struct file_list_entry_t {
153         const char  *name; /**< filename or NULL for stdin */
154         filetype_t   type;
155         file_list_entry_t *next;
156 };
157
158 static file_list_entry_t *temp_files;
159
160 static void get_output_name(char *buf, size_t buflen, const char *inputname,
161                             const char *newext)
162 {
163         if (inputname == NULL)
164                 inputname = "a";
165
166         char const *const last_slash = strrchr(inputname, '/');
167         char const *const filename   =
168                 last_slash != NULL ? last_slash + 1 : inputname;
169         char const *const last_dot   = strrchr(filename, '.');
170         char const *const name_end   =
171                 last_dot != NULL ? last_dot : strchr(filename, '\0');
172
173         int const len = snprintf(buf, buflen, "%.*s%s",
174                         (int)(name_end - filename), filename, newext);
175 #ifdef _WIN32
176         if (len < 0 || buflen <= (size_t)len)
177 #else
178         if (buflen <= (size_t)len)
179 #endif
180                 panic("filename too long");
181 }
182
183 #include "gen_builtins.h"
184
185 static translation_unit_t *do_parsing(FILE *const in, const char *const input_name)
186 {
187         start_parsing();
188
189         if (use_builtins) {
190                 lexer_open_buffer(builtins, sizeof(builtins)-1, "<builtin>");
191                 parse();
192         }
193
194         lexer_open_stream(in, input_name);
195         parse();
196
197         translation_unit_t *unit = finish_parsing();
198         return unit;
199 }
200
201 static void lextest(FILE *in, const char *fname)
202 {
203         lexer_open_stream(in, fname);
204
205         do {
206                 lexer_next_preprocessing_token();
207                 print_token(stdout, &lexer_token);
208                 putchar('\n');
209         } while (lexer_token.type != T_EOF);
210 }
211
212 static void add_flag(struct obstack *obst, const char *format, ...)
213 {
214         char buf[65536];
215         va_list ap;
216
217         va_start(ap, format);
218 #ifdef _WIN32
219         int len =
220 #endif
221                 vsnprintf(buf, sizeof(buf), format, ap);
222         va_end(ap);
223
224         obstack_1grow(obst, ' ');
225 #ifdef _WIN32
226         obstack_1grow(obst, '"');
227         obstack_grow(obst, buf, len);
228         obstack_1grow(obst, '"');
229 #else
230         /* escape stuff... */
231         for (char *c = buf; *c != '\0'; ++c) {
232                 switch(*c) {
233                 case ' ':
234                 case '"':
235                 case '$':
236                 case '&':
237                 case '(':
238                 case ')':
239                 case ';':
240                 case '<':
241                 case '>':
242                 case '\'':
243                 case '\\':
244                 case '\n':
245                 case '\r':
246                 case '\t':
247                 case '`':
248                 case '|':
249                         obstack_1grow(obst, '\\');
250                         /* FALLTHROUGH */
251                 default:
252                         obstack_1grow(obst, *c);
253                         break;
254                 }
255         }
256 #endif
257 }
258
259 static const char *type_to_string(type_t *type)
260 {
261         assert(type->kind == TYPE_ATOMIC);
262         return get_atomic_kind_name(type->atomic.akind);
263 }
264
265 static FILE *preprocess(const char *fname, filetype_t filetype)
266 {
267         static const char *common_flags = NULL;
268
269         if (common_flags == NULL) {
270                 obstack_1grow(&cppflags_obst, '\0');
271                 const char *flags = obstack_finish(&cppflags_obst);
272
273                 /* setup default defines */
274                 add_flag(&cppflags_obst, "-U__WCHAR_TYPE__");
275                 add_flag(&cppflags_obst, "-D__WCHAR_TYPE__=%s", type_to_string(type_wchar_t));
276                 add_flag(&cppflags_obst, "-U__SIZE_TYPE__");
277                 add_flag(&cppflags_obst, "-D__SIZE_TYPE__=%s", type_to_string(type_size_t));
278
279                 add_flag(&cppflags_obst, "-U__VERSION__");
280                 add_flag(&cppflags_obst, "-D__VERSION__=\"%s\"", cparser_REVISION);
281
282                 if (define_intmax_types) {
283                         add_flag(&cppflags_obst, "-U__INTMAX_TYPE__");
284                         add_flag(&cppflags_obst, "-D__INTMAX_TYPE__=%s", type_to_string(type_intmax_t));
285                         add_flag(&cppflags_obst, "-U__UINTMAX_TYPE__");
286                         add_flag(&cppflags_obst, "-D__UINTMAX_TYPE__=%s", type_to_string(type_uintmax_t));
287                 }
288
289                 if (flags[0] != '\0') {
290                         size_t len = strlen(flags);
291                         obstack_1grow(&cppflags_obst, ' ');
292                         obstack_grow(&cppflags_obst, flags, len);
293                 }
294                 obstack_1grow(&cppflags_obst, '\0');
295                 common_flags = obstack_finish(&cppflags_obst);
296         }
297
298         assert(obstack_object_size(&cppflags_obst) == 0);
299
300         const char *preprocessor = getenv("CPARSER_PP");
301         if (preprocessor != NULL) {
302                 obstack_printf(&cppflags_obst, "%s ", preprocessor);
303         } else {
304                 if (target_triple != NULL)
305                         obstack_printf(&cppflags_obst, "%s-", target_triple);
306                 obstack_printf(&cppflags_obst, PREPROCESSOR);
307         }
308
309         switch (filetype) {
310         case FILETYPE_C:
311                 add_flag(&cppflags_obst, "-std=c99");
312                 break;
313         case FILETYPE_CXX:
314                 add_flag(&cppflags_obst, "-std=c++98");
315                 break;
316         case FILETYPE_ASSEMBLER:
317                 add_flag(&cppflags_obst, "-x");
318                 add_flag(&cppflags_obst, "assembler-with-cpp");
319                 break;
320         default:
321                 break;
322         }
323         obstack_printf(&cppflags_obst, "%s", common_flags);
324
325         /* handle dependency generation */
326         if (dep_target[0] != '\0') {
327                 add_flag(&cppflags_obst, "-MF");
328                 add_flag(&cppflags_obst, dep_target);
329                 if (outname != NULL) {
330                                 add_flag(&cppflags_obst, "-MQ");
331                                 add_flag(&cppflags_obst, outname);
332                 }
333         }
334         add_flag(&cppflags_obst, fname);
335         obstack_1grow(&cppflags_obst, '\0');
336
337         char *commandline = obstack_finish(&cppflags_obst);
338         if (verbose) {
339                 puts(commandline);
340         }
341         FILE *f = popen(commandline, "r");
342         if (f == NULL) {
343                 fprintf(stderr, "invoking preprocessor failed\n");
344                 exit(EXIT_FAILURE);
345         }
346         /* we don't really need that anymore */
347         obstack_free(&cppflags_obst, commandline);
348
349         return f;
350 }
351
352 static void assemble(const char *out, const char *in)
353 {
354         obstack_1grow(&asflags_obst, '\0');
355         const char *flags = obstack_finish(&asflags_obst);
356
357         const char *assembler = getenv("CPARSER_AS");
358         if (assembler != NULL) {
359                 obstack_printf(&asflags_obst, "%s", assembler);
360         } else {
361                 if (target_triple != NULL)
362                         obstack_printf(&asflags_obst, "%s-", target_triple);
363                 obstack_printf(&asflags_obst, "%s", ASSEMBLER);
364         }
365         if (flags[0] != '\0')
366                 obstack_printf(&asflags_obst, " %s", flags);
367
368         obstack_printf(&asflags_obst, " %s -o %s", in, out);
369         obstack_1grow(&asflags_obst, '\0');
370
371         char *commandline = obstack_finish(&asflags_obst);
372         if (verbose) {
373                 puts(commandline);
374         }
375         int err = system(commandline);
376         if (err != EXIT_SUCCESS) {
377                 fprintf(stderr, "assembler reported an error\n");
378                 exit(EXIT_FAILURE);
379         }
380         obstack_free(&asflags_obst, commandline);
381 }
382
383 static void print_file_name(const char *file)
384 {
385         add_flag(&ldflags_obst, "-print-file-name=%s", file);
386
387         obstack_1grow(&ldflags_obst, '\0');
388         const char *flags = obstack_finish(&ldflags_obst);
389
390         /* construct commandline */
391         const char *linker = getenv("CPARSER_LINK");
392         if (linker != NULL) {
393                 obstack_printf(&ldflags_obst, "%s ", linker);
394         } else {
395                 if (target_triple != NULL)
396                         obstack_printf(&ldflags_obst, "%s-", target_triple);
397                 obstack_printf(&ldflags_obst, "%s ", LINKER);
398         }
399         obstack_printf(&ldflags_obst, "%s ", linker);
400         obstack_printf(&ldflags_obst, "%s", flags);
401         obstack_1grow(&ldflags_obst, '\0');
402
403         char *commandline = obstack_finish(&ldflags_obst);
404         if (verbose) {
405                 puts(commandline);
406         }
407         int err = system(commandline);
408         if (err != EXIT_SUCCESS) {
409                 fprintf(stderr, "linker reported an error\n");
410                 exit(EXIT_FAILURE);
411         }
412         obstack_free(&ldflags_obst, commandline);
413 }
414
415 static const char *try_dir(const char *dir)
416 {
417         if (dir == NULL)
418                 return dir;
419         if (access(dir, R_OK | W_OK | X_OK) == 0)
420                 return dir;
421         return NULL;
422 }
423
424 static const char *get_tempdir(void)
425 {
426         static const char *tmpdir = NULL;
427
428         if (tmpdir != NULL)
429                 return tmpdir;
430
431         if (tmpdir == NULL)
432                 tmpdir = try_dir(getenv("TMPDIR"));
433         if (tmpdir == NULL)
434                 tmpdir = try_dir(getenv("TMP"));
435         if (tmpdir == NULL)
436                 tmpdir = try_dir(getenv("TEMP"));
437
438 #ifdef P_tmpdir
439         if (tmpdir == NULL)
440                 tmpdir = try_dir(P_tmpdir);
441 #endif
442
443         if (tmpdir == NULL)
444                 tmpdir = try_dir("/var/tmp");
445         if (tmpdir == NULL)
446                 tmpdir = try_dir("/usr/tmp");
447         if (tmpdir == NULL)
448                 tmpdir = try_dir("/tmp");
449
450         if (tmpdir == NULL)
451                 tmpdir = ".";
452
453         return tmpdir;
454 }
455
456 #ifndef HAVE_MKSTEMP
457 /* cheap and nasty mkstemp replacement */
458 static int mkstemp(char *templ)
459 {
460         mktemp(templ);
461         return open(templ, O_RDWR|O_CREAT|O_EXCL|O_BINARY, 0600);
462 }
463 #endif
464
465 /**
466  * an own version of tmpnam, which: writes in a buffer, emits no warnings
467  * during linking (like glibc/gnu ld do for tmpnam)...
468  */
469 static FILE *make_temp_file(char *buffer, size_t buflen, const char *prefix)
470 {
471         const char *tempdir = get_tempdir();
472
473         snprintf(buffer, buflen, "%s/%sXXXXXX", tempdir, prefix);
474
475         int fd = mkstemp(buffer);
476         if (fd == -1) {
477                 fprintf(stderr, "couldn't create temporary file: %s\n",
478                         strerror(errno));
479                 exit(EXIT_FAILURE);
480         }
481         FILE *out = fdopen(fd, "w");
482         if (out == NULL) {
483                 fprintf(stderr, "couldn't create temporary file FILE*\n");
484                 exit(EXIT_FAILURE);
485         }
486
487         file_list_entry_t *entry = xmalloc(sizeof(*entry));
488         memset(entry, 0, sizeof(*entry));
489
490         size_t  name_len = strlen(buffer) + 1;
491         char   *name     = malloc(name_len);
492         memcpy(name, buffer, name_len);
493         entry->name      = name;
494
495         entry->next = temp_files;
496         temp_files  = entry;
497
498         return out;
499 }
500
501 static void free_temp_files(void)
502 {
503         file_list_entry_t *entry = temp_files;
504         file_list_entry_t *next;
505         for ( ; entry != NULL; entry = next) {
506                 next = entry->next;
507
508                 unlink(entry->name);
509                 free((char*) entry->name);
510                 free(entry);
511         }
512         temp_files = NULL;
513 }
514
515 typedef enum compile_mode_t {
516         BenchmarkParser,
517         PreprocessOnly,
518         ParseOnly,
519         Compile,
520         CompileDump,
521         CompileExportIR,
522         CompileAssemble,
523         CompileAssembleLink,
524         LexTest,
525         PrintAst,
526         PrintFluffy,
527         PrintJna
528 } compile_mode_t;
529
530 static void usage(const char *argv0)
531 {
532         fprintf(stderr, "Usage %s [options] input [-o output]\n", argv0);
533 }
534
535 static void print_cparser_version(void)
536 {
537         printf("cparser (%s) using libFirm (%u.%u",
538                cparser_REVISION, ir_get_version_major(),
539                ir_get_version_minor());
540
541         const char *revision = ir_get_version_revision();
542         if (revision[0] != 0) {
543                 putchar(' ');
544                 fputs(revision, stdout);
545         }
546
547         const char *build = ir_get_version_build();
548         if (build[0] != 0) {
549                 putchar(' ');
550                 fputs(build, stdout);
551         }
552         puts(")");
553         puts("This is free software; see the source for copying conditions.  There is NO\n"
554              "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
555 }
556
557 static void print_help_basic(const char *argv0)
558 {
559         usage(argv0);
560         puts("");
561         put_help("--help",                   "Display this information");
562         put_help("--version",                "Display compiler version");
563         put_help("--help-parser",            "Display information about parser options");
564         put_help("--help-warnings",          "Display information about warning options");
565         put_help("--help-codegen",           "Display information about code-generation options");
566         put_help("--help-linker",            "Display information about linker options");
567         put_help("--help-language-tools",    "Display information about language tools options");
568         put_help("--help-debug",             "Display information about compiler debugging options");
569         put_help("--help-firm",              "Display information about direct firm options");
570         put_help("--help-all",               "Display information about all options");
571         put_help("-c",                       "Compile and assemble but do not link");
572         put_help("-E",                       "Preprocess only");
573         put_help("-S",                       "Compile but do not assembler or link");
574         put_help("-o",                       "Specify output file");
575         put_help("-v",                       "Verbose output (show invocation of sub-processes)");
576         put_help("-x",                       "Force input language:");
577         put_choice("c",                      "C");
578         put_choice("c++",                    "C++");
579         put_choice("assembler",              "Assembler (no preprocessing)");
580         put_choice("assembler-with-cpp",     "Assembler with preprocessing");
581         put_choice("none",                   "Autodetection");
582         put_help("-pipe",                    "ignored (gcc compatibility)");
583 }
584
585 static void print_help_preprocessor(void)
586 {
587         put_help("-nostdinc",                "Do not search standard system include directories");
588         put_help("-trigraphs",               "Support ISO C trigraphs");
589         put_help("-isystem",                 "");
590         put_help("-include",                 "");
591         put_help("-I PATH",                  "");
592         put_help("-D SYMBOL[=value]",        "");
593         put_help("-U SYMBOL",                "");
594         put_help("-Wp,OPTION",               "pass option directly to preprocessor");
595         put_help("-M",                       "");
596         put_help("-MD",                      "");
597         put_help("-MMD",                     "");
598         put_help("-MM",                      "");
599         put_help("-MP",                      "");
600         put_help("-MT",                      "");
601         put_help("-MQ",                      "");
602         put_help("-MF",                      "");
603 }
604
605 static void print_help_parser(void)
606 {
607         put_help("-finput-charset=CHARSET",  "Select encoding of input files");
608         put_help("-fmessage-length=LEN",     "ignored (gcc compatibility)");
609         put_help("-fshort-wchar",            "wchar_t is unsigned short instead of int");
610         put_help("-fshow-column",            "show the column number in diagnostic messages");
611         put_help("-funsigned-char",          "char is an unsigned type");
612         put_help("--ms",                     "Enable msvc extensions");
613         put_help("--no-ms",                  "Disable msvc extensions");
614         put_help("--gcc",                    "Enable gcc extensions");
615         put_help("--no-gcc",                 "Disable gcc extensions");
616         put_help("-std=STANDARD",            "Specify language standard:");
617         put_choice("c99",                    "ISO C99 standard");
618         put_choice("c89",                    "ISO C89 standard");
619         put_choice("c9x",                    "deprecated");
620         put_choice("c++",                    "ISO C++ 98");
621         put_choice("c++98",                  "ISO C++ 98");
622         put_choice("gnu99",                  "ISO C99 + GNU extensions (default)");
623         put_choice("gnu89",                  "ISO C89 + GNU extensions");
624         put_choice("gnu9x",                  "deprecated");
625         put_choice("iso9899:1990",           "ISO C89");
626         put_choice("iso9899:199409",         "ISO C90");
627         put_choice("iso9899:1999",           "ISO C99");
628         put_choice("iso9899:199x",           "deprecated");
629         put_help("-pedantic",                "ignored (gcc compatibility)");
630         put_help("-ansi",                    "ignored (gcc compatibility)");
631         put_help("--strict",                 "Enable strict conformance checking");
632 }
633
634 static void print_help_warnings(void)
635 {
636         put_help("-w",                       "disable all warnings");
637         put_help("-W",                       "ignored (gcc compatibility)");
638         put_help("-Wno-trigraphs",           "warn if input contains trigraphs");
639         put_help("-Wundef",                  "Warn if an undefined macro is used in an #if");
640         print_warning_opt_help();
641 }
642
643 static void print_help_optimisation(void)
644 {
645         put_help("-O LEVEL",                 "select optimisation level (0-4)");
646         put_help("-fexpensive-optimizations","ignored (gcc compatibility)");
647 }
648
649 static void print_help_codegeneration(void)
650 {
651         put_help("-g",                       "Generate debug information");
652         put_help("-pg",                      "Instrument code for gnu gprof");
653         put_help("-fomit-frame-pointer",     "Produce code without frame pointer where possible");
654         put_help("-ffreestanding",           "compile in freestanding mode (see ISO C standard)");
655         put_help("-fhosted",                 "compile in hosted (not freestanding) mode");
656         put_help("-fprofile-generate",       "Generate instrumented code to collect profile information");
657         put_help("-fprofile-use",            "Use profile information generated by instrumented binaries");
658         put_help("-ffp-precise",             "precise floating point model");
659         put_help("-ffp-fast",                "imprecise floating point model");
660         put_help("-ffp-strict",              "strict floating point model");
661         put_help("-ffp-precise",             "precise floating point model");
662         put_help("-pthread",                 "Use pthread threading library");
663         put_help("-mtarget=TARGET",          "Specify target architecture as CPU-manufacturer-OS triple");
664         put_help("-mtriple=TARGET",          "alias for -mtarget (clang compatibility)");
665         put_help("-march=ARCH",              "");
666         put_help("-mtune=ARCH",              "");
667         put_help("-mcpu=CPU",                "");
668         put_help("-mfpmath=",                "");
669         put_help("-mpreferred-stack-boundary=", "");
670         put_help("-mrtd",                    "");
671         put_help("-mregparm=",               "not supported yet");
672         put_help("-msoft-float",             "not supported yet");
673         put_help("-m32",                     "generate 32bit code");
674         put_help("-m64",                     "generate 64bit code");
675         put_help("-fverbose-asm",            "ignored (gcc compatibility)");
676         put_help("-fjump-tables",            "ignored (gcc compatibility)");
677         put_help("-fcommon",                 "ignored (gcc compatibility)");
678         put_help("-foptimize-sibling-calls", "ignored (gcc compatibility)");
679         put_help("-falign-loops",            "ignored (gcc compatibility)");
680         put_help("-falign-jumps",            "ignored (gcc compatibility)");
681         put_help("-falign-functions",        "ignored (gcc compatibility)");
682         put_help("-fPIC",                    "ignored (gcc compatibility)");
683         put_help("-ffast-math",              "same as fp-fast (gcc compatibility)");
684         puts("");
685         puts("\tMost of these options can be used with a no- prefix to disable them");
686         puts("\ti.e. -fno-signed-char");
687 }
688
689 static void print_help_linker(void)
690 {
691         put_help("-l LIBRARY",               "");
692         put_help("-L PATH",                  "");
693         put_help("-shared",                  "Produce a shared library");
694         put_help("-static",                  "Produce statically linked binary");
695         put_help("-Wl,OPTION",               "pass option directly to linker");
696 }
697
698 static void print_help_debug(void)
699 {
700         put_help("--lextest",                "Preprocess and tokenize only");
701         put_help("--print-ast",              "Preprocess, parse and print AST");
702         put_help("--print-implicit-cast",    "");
703         put_help("--print-parenthesis",      "");
704         put_help("--benchmark",              "Preprocess and parse, produces no output");
705         put_help("--time",                   "Measure time of compiler passes");
706         put_help("--dump-function func",     "Preprocess, parse and output vcg graph of func");
707         put_help("--export-ir",              "Preprocess, parse and output compiler intermediate representation");
708 }
709
710 static void print_help_language_tools(void)
711 {
712         put_help("--print-fluffy",           "Preprocess, parse and generate declarations for the fluffy language");
713         put_help("--print-jna",              "Preprocess, parse and generate declarations for JNA");
714         put_help("--jna-limit filename",     "");
715         put_help("--jna-libname name",       "");
716 }
717
718 static void print_help_firm(void)
719 {
720         put_help("-bOPTION",                 "directly pass option to libFirm backend");
721         int res = be_parse_arg("help");
722         (void) res;
723         assert(res);
724 }
725
726 typedef enum {
727         HELP_NONE          = 0,
728         HELP_BASIC         = 1u << 0,
729         HELP_PREPROCESSOR  = 1u << 1,
730         HELP_PARSER        = 1u << 2,
731         HELP_WARNINGS      = 1u << 3,
732         HELP_OPTIMISATION  = 1u << 4,
733         HELP_CODEGEN       = 1u << 5,
734         HELP_LINKER        = 1u << 6,
735         HELP_LANGUAGETOOLS = 1u << 7,
736         HELP_DEBUG         = 1u << 8,
737         HELP_FIRM          = 1u << 9,
738
739         HELP_ALL           = (unsigned)-1
740 } help_sections_t;
741
742 static void print_help(const char *argv0, help_sections_t sections)
743 {
744         if (sections & HELP_BASIC)         print_help_basic(argv0);
745         if (sections & HELP_PREPROCESSOR)  print_help_preprocessor();
746         if (sections & HELP_PARSER)        print_help_parser();
747         if (sections & HELP_WARNINGS)      print_help_warnings();
748         if (sections & HELP_OPTIMISATION)  print_help_optimisation();
749         if (sections & HELP_CODEGEN)       print_help_codegeneration();
750         if (sections & HELP_LINKER)        print_help_linker();
751         if (sections & HELP_LANGUAGETOOLS) print_help_language_tools();
752         if (sections & HELP_DEBUG)         print_help_debug();
753         if (sections & HELP_FIRM)          print_help_firm();
754 }
755
756 static void set_be_option(const char *arg)
757 {
758         int res = be_parse_arg(arg);
759         (void) res;
760         assert(res);
761 }
762
763 static void copy_file(FILE *dest, FILE *input)
764 {
765         char buf[16384];
766
767         while (!feof(input) && !ferror(dest)) {
768                 size_t read = fread(buf, 1, sizeof(buf), input);
769                 if (fwrite(buf, 1, read, dest) != read) {
770                         perror("couldn't write output");
771                 }
772         }
773 }
774
775 static FILE *open_file(const char *filename)
776 {
777         if (streq(filename, "-")) {
778                 return stdin;
779         }
780
781         FILE *in = fopen(filename, "r");
782         if (in == NULL) {
783                 fprintf(stderr, "Couldn't open '%s': %s\n", filename,
784                                 strerror(errno));
785                 exit(EXIT_FAILURE);
786         }
787
788         return in;
789 }
790
791 static filetype_t get_filetype_from_string(const char *string)
792 {
793         if (streq(string, "c") || streq(string, "c-header"))
794                 return FILETYPE_C;
795         if (streq(string, "c++") || streq(string, "c++-header"))
796                 return FILETYPE_CXX;
797         if (streq(string, "assembler"))
798                 return FILETYPE_PREPROCESSED_ASSEMBLER;
799         if (streq(string, "assembler-with-cpp"))
800                 return FILETYPE_ASSEMBLER;
801         if (streq(string, "none"))
802                 return FILETYPE_AUTODETECT;
803
804         return FILETYPE_UNKNOWN;
805 }
806
807 static bool init_os_support(void)
808 {
809         const char *os = target_machine->operating_system;
810         wchar_atomic_kind         = ATOMIC_TYPE_INT;
811         force_long_double_size    = 0;
812         enable_main_collect2_hack = false;
813         define_intmax_types       = false;
814
815         if (strstr(os, "linux") != NULL || strstr(os, "bsd") != NULL
816                         || streq(os, "solaris")) {
817                 set_create_ld_ident(create_name_linux_elf);
818         } else if (streq(os, "darwin")) {
819                 force_long_double_size = 16;
820                 set_create_ld_ident(create_name_macho);
821                 define_intmax_types = true;
822         } else if (strstr(os, "mingw") != NULL || streq(os, "win32")) {
823                 wchar_atomic_kind         = ATOMIC_TYPE_USHORT;
824                 enable_main_collect2_hack = true;
825                 set_create_ld_ident(create_name_win32);
826         } else {
827                 return false;
828         }
829
830         return true;
831 }
832
833 static bool parse_target_triple(const char *arg)
834 {
835         machine_triple_t *triple = firm_parse_machine_triple(arg);
836         if (triple == NULL) {
837                 fprintf(stderr, "Target-triple is not in the form 'cpu_type-manufacturer-operating_system'\n");
838                 return false;
839         }
840         target_machine = triple;
841         return true;
842 }
843
844 static void setup_target_machine(void)
845 {
846         if (!setup_firm_for_machine(target_machine))
847                 exit(1);
848         init_os_support();
849 }
850
851 int main(int argc, char **argv)
852 {
853         firm_early_init();
854
855         const char        *dumpfunction         = NULL;
856         const char        *print_file_name_file = NULL;
857         compile_mode_t     mode                 = CompileAssembleLink;
858         int                opt_level            = 1;
859         int                result               = EXIT_SUCCESS;
860         char               cpu_arch[16]         = "ia32";
861         file_list_entry_t *files                = NULL;
862         file_list_entry_t *last_file            = NULL;
863         bool               construct_dep_target = false;
864         bool               do_timing            = false;
865         bool               profile_generate     = false;
866         bool               profile_use          = false;
867         struct obstack     file_obst;
868
869         atexit(free_temp_files);
870
871         /* hack for now... */
872         if (strstr(argv[0], "pptest") != NULL) {
873                 extern int pptest_main(int argc, char **argv);
874                 return pptest_main(argc, argv);
875         }
876
877         obstack_init(&cppflags_obst);
878         obstack_init(&ldflags_obst);
879         obstack_init(&asflags_obst);
880         obstack_init(&file_obst);
881
882 #define GET_ARG_AFTER(def, args)                                             \
883         def = &arg[sizeof(args)-1];                                              \
884         if (def[0] == '\0') {                                                     \
885                 ++i;                                                                 \
886                 if (i >= argc) {                                                      \
887                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
888                         argument_errors = true;                                          \
889                         break;                                                           \
890                 }                                                                    \
891                 def = argv[i];                                                       \
892                 if (def[0] == '-' && def[1] != '\0') {                                \
893                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
894                         argument_errors = true;                                          \
895                         continue;                                                        \
896                 }                                                                    \
897         }
898
899 #define SINGLE_OPTION(ch) (option[0] == (ch) && option[1] == '\0')
900
901         /* early options parsing (find out optimisation level and OS) */
902         for (int i = 1; i < argc; ++i) {
903                 const char *arg = argv[i];
904                 if (arg[0] != '-')
905                         continue;
906
907                 const char *option = &arg[1];
908                 if (option[0] == 'O') {
909                         sscanf(&option[1], "%d", &opt_level);
910                 }
911         }
912
913         const char *target = getenv("TARGET");
914         if (target != NULL)
915                 parse_target_triple(target);
916         if (target_machine == NULL) {
917                 target_machine = firm_get_host_machine();
918         }
919         choose_optimization_pack(opt_level);
920         setup_target_machine();
921
922         /* parse rest of options */
923                         standard        = STANDARD_DEFAULT;
924         unsigned        features_on     = 0;
925         unsigned        features_off    = 0;
926         filetype_t      forced_filetype = FILETYPE_AUTODETECT;
927         help_sections_t help            = HELP_NONE;
928         bool            argument_errors = false;
929         for (int i = 1; i < argc; ++i) {
930                 const char *arg = argv[i];
931                 if (arg[0] == '-' && arg[1] != '\0') {
932                         /* an option */
933                         const char *option = &arg[1];
934                         if (option[0] == 'o') {
935                                 GET_ARG_AFTER(outname, "-o");
936                         } else if (option[0] == 'g') {
937                                 set_be_option("debuginfo=stabs");
938                                 set_be_option("omitfp=no");
939                                 set_be_option("ia32-nooptcc=yes");
940                         } else if (SINGLE_OPTION('c')) {
941                                 mode = CompileAssemble;
942                         } else if (SINGLE_OPTION('E')) {
943                                 mode = PreprocessOnly;
944                         } else if (SINGLE_OPTION('S')) {
945                                 mode = Compile;
946                         } else if (option[0] == 'O') {
947                                 continue;
948                         } else if (option[0] == 'I') {
949                                 const char *opt;
950                                 GET_ARG_AFTER(opt, "-I");
951                                 add_flag(&cppflags_obst, "-I%s", opt);
952                         } else if (option[0] == 'D') {
953                                 const char *opt;
954                                 GET_ARG_AFTER(opt, "-D");
955                                 add_flag(&cppflags_obst, "-D%s", opt);
956                         } else if (option[0] == 'U') {
957                                 const char *opt;
958                                 GET_ARG_AFTER(opt, "-U");
959                                 add_flag(&cppflags_obst, "-U%s", opt);
960                         } else if (option[0] == 'l') {
961                                 const char *opt;
962                                 GET_ARG_AFTER(opt, "-l");
963                                 add_flag(&ldflags_obst, "-l%s", opt);
964                         } else if (option[0] == 'L') {
965                                 const char *opt;
966                                 GET_ARG_AFTER(opt, "-L");
967                                 add_flag(&ldflags_obst, "-L%s", opt);
968                         } else if (SINGLE_OPTION('v')) {
969                                 verbose = 1;
970                         } else if (SINGLE_OPTION('w')) {
971                                 memset(&warning, 0, sizeof(warning));
972                         } else if (option[0] == 'x') {
973                                 const char *opt;
974                                 GET_ARG_AFTER(opt, "-x");
975                                 forced_filetype = get_filetype_from_string(opt);
976                                 if (forced_filetype == FILETYPE_UNKNOWN) {
977                                         fprintf(stderr, "Unknown language '%s'\n", opt);
978                                         argument_errors = true;
979                                 }
980                         } else if (streq(option, "M")) {
981                                 mode = PreprocessOnly;
982                                 add_flag(&cppflags_obst, "-M");
983                         } else if (streq(option, "MMD") ||
984                                    streq(option, "MD")) {
985                             construct_dep_target = true;
986                                 add_flag(&cppflags_obst, "-%s", option);
987                         } else if (streq(option, "MM")  ||
988                                    streq(option, "MP")) {
989                                 add_flag(&cppflags_obst, "-%s", option);
990                         } else if (streq(option, "MT") ||
991                                    streq(option, "MQ") ||
992                                    streq(option, "MF")) {
993                                 const char *opt;
994                                 GET_ARG_AFTER(opt, "-MT");
995                                 add_flag(&cppflags_obst, "-%s", option);
996                                 add_flag(&cppflags_obst, "%s", opt);
997                         } else if (streq(option, "include")) {
998                                 const char *opt;
999                                 GET_ARG_AFTER(opt, "-include");
1000                                 add_flag(&cppflags_obst, "-include");
1001                                 add_flag(&cppflags_obst, "%s", opt);
1002                         } else if (streq(option, "isystem")) {
1003                                 const char *opt;
1004                                 GET_ARG_AFTER(opt, "-isystem");
1005                                 add_flag(&cppflags_obst, "-isystem");
1006                                 add_flag(&cppflags_obst, "%s", opt);
1007 #if defined(linux) || defined(__linux) || defined(__linux__) || defined(__CYGWIN__)
1008                         } else if (streq(option, "pthread")) {
1009                                 /* set flags for the preprocessor */
1010                                 add_flag(&cppflags_obst, "-D_REENTRANT");
1011                                 /* set flags for the linker */
1012                                 add_flag(&ldflags_obst, "-lpthread");
1013 #endif
1014                         } else if (streq(option, "nostdinc")
1015                                         || streq(option, "trigraphs")) {
1016                                 /* pass these through to the preprocessor */
1017                                 add_flag(&cppflags_obst, "%s", arg);
1018                         } else if (streq(option, "pipe")) {
1019                                 /* here for gcc compatibility */
1020                         } else if (streq(option, "static")) {
1021                                 add_flag(&ldflags_obst, "-static");
1022                         } else if (streq(option, "shared")) {
1023                                 add_flag(&ldflags_obst, "-shared");
1024                         } else if (option[0] == 'f') {
1025                                 char const *orig_opt;
1026                                 GET_ARG_AFTER(orig_opt, "-f");
1027
1028                                 if (strstart(orig_opt, "input-charset=")) {
1029                                         char const* const encoding = strchr(orig_opt, '=') + 1;
1030                                         select_input_encoding(encoding);
1031                                 } else if (strstart(orig_opt, "align-loops=") ||
1032                                            strstart(orig_opt, "align-jumps=") ||
1033                                            strstart(orig_opt, "align-functions=")) {
1034                                         fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
1035                                 } else if (strstart(orig_opt, "visibility=")) {
1036                                         const char *arg = strchr(orig_opt, '=')+1;
1037                                         elf_visibility_tag_t visibility
1038                                                 = get_elf_visibility_from_string(arg);
1039                                         if (visibility == ELF_VISIBILITY_ERROR) {
1040                                                 fprintf(stderr, "invalid visibility '%s' specified\n",
1041                                                         arg);
1042                                                 argument_errors = true;
1043                                         } else {
1044                                                 set_default_visibility(visibility);
1045                                         }
1046                                 } else if (strstart(orig_opt, "message-length=")) {
1047                                         /* ignore: would only affect error message format */
1048                                 } else {
1049                                         /* -f options which have an -fno- variant */
1050                                         char const *opt         = orig_opt;
1051                                         bool        truth_value = true;
1052                                         if (opt[0] == 'n' && opt[1] == 'o' && opt[2] == '-') {
1053                                                 truth_value = false;
1054                                                 opt += 3;
1055                                         }
1056
1057                                         if (streq(opt, "builtins")) {
1058                                                 use_builtins = truth_value;
1059                                         } else if (streq(opt, "dollars-in-identifiers")) {
1060                                                 allow_dollar_in_symbol = truth_value;
1061                                         } else if (streq(opt, "omit-frame-pointer")) {
1062                                                 set_be_option(truth_value ? "omitfp" : "omitfp=no");
1063                                         } else if (streq(opt, "short-wchar")) {
1064                                                 wchar_atomic_kind = truth_value ? ATOMIC_TYPE_USHORT
1065                                                         : ATOMIC_TYPE_INT;
1066                                         } else if (streq(opt, "show-column")) {
1067                                                 show_column = truth_value;
1068                                         } else if (streq(opt, "signed-char")) {
1069                                                 char_is_signed = truth_value;
1070                                         } else if (streq(opt, "strength-reduce")) {
1071                                                 /* does nothing, for gcc compatibility (even gcc does
1072                                                  * nothing for this switch anymore) */
1073                                         } else if (streq(opt, "syntax-only")) {
1074                                                 mode = truth_value ? ParseOnly : CompileAssembleLink;
1075                                         } else if (streq(opt, "unsigned-char")) {
1076                                                 char_is_signed = !truth_value;
1077                                         } else if (streq(opt, "freestanding")) {
1078                                                 freestanding = truth_value;
1079                                         } else if (streq(opt, "hosted")) {
1080                                                 freestanding = !truth_value;
1081                                         } else if (streq(opt, "profile-generate")) {
1082                                                 profile_generate = truth_value;
1083                                         } else if (streq(opt, "profile-use")) {
1084                                                 profile_use = truth_value;
1085                                         } else if (!truth_value &&
1086                                                    streq(opt, "asynchronous-unwind-tables")) {
1087                                             /* nothing todo, a gcc feature which we don't support
1088                                              * anyway was deactivated */
1089                                         } else if (streq(opt, "verbose-asm")) {
1090                                                 /* ignore: we always print verbose assembler */
1091                                         } else if (streq(opt, "fast-math") || streq(opt, "fp-fast")) {
1092                                                 firm_fp_model = fp_model_fast;
1093                                         } else if (streq(opt, "fp-precise")) {
1094                                                 firm_fp_model = fp_model_precise;
1095                                         } else if (streq(opt, "fp-strict")) {
1096                                                 firm_fp_model = fp_model_strict;
1097                                         } else if (streq(opt, "jump-tables")             ||
1098                                                    streq(opt, "expensive-optimizations") ||
1099                                                    streq(opt, "common")                  ||
1100                                                    streq(opt, "optimize-sibling-calls")  ||
1101                                                    streq(opt, "align-loops")             ||
1102                                                    streq(opt, "align-jumps")             ||
1103                                                    streq(opt, "align-functions")         ||
1104                                                    streq(opt, "PIC")) {
1105                                                 fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
1106                                         } else if (streq(opt, "help")) {
1107                                                 fprintf(stderr, "warning: -fhelp is deprecated\n");
1108                                                 help |= HELP_FIRM;
1109                                         } else {
1110                                                 int res = firm_option(orig_opt);
1111                                                 if (res == 0) {
1112                                                         fprintf(stderr, "error: unknown Firm option '-f%s'\n",
1113                                                                 orig_opt);
1114                                                         argument_errors = true;
1115                                                         continue;
1116                                                 }
1117                                         }
1118                                 }
1119                         } else if (option[0] == 'b') {
1120                                 const char *opt;
1121                                 GET_ARG_AFTER(opt, "-b");
1122
1123                                 if (streq(opt, "help")) {
1124                                         fprintf(stderr, "warning: -bhelp is deprecated (use --help-firm)\n");
1125                                         help |= HELP_FIRM;
1126                                 } else {
1127                                         int res = be_parse_arg(opt);
1128                                         if (res == 0) {
1129                                                 fprintf(stderr, "error: unknown Firm backend option '-b %s'\n",
1130                                                                 opt);
1131                                                 argument_errors = true;
1132                                         } else if (strstart(opt, "isa=")) {
1133                                                 strncpy(cpu_arch, opt, sizeof(cpu_arch));
1134                                         }
1135                                 }
1136                         } else if (option[0] == 'W') {
1137                                 if (option[1] == '\0') {
1138                                         /* ignore -W, our defaults are already quite verbose */
1139                                 } else if (strstart(option + 1, "p,")) {
1140                                         // pass options directly to the preprocessor
1141                                         const char *opt;
1142                                         GET_ARG_AFTER(opt, "-Wp,");
1143                                         add_flag(&cppflags_obst, "-Wp,%s", opt);
1144                                 } else if (strstart(option + 1, "l,")) {
1145                                         // pass options directly to the linker
1146                                         const char *opt;
1147                                         GET_ARG_AFTER(opt, "-Wl,");
1148                                         add_flag(&ldflags_obst, "-Wl,%s", opt);
1149                                 } else if (streq(option + 1, "no-trigraphs")
1150                                                         || streq(option + 1, "undef")) {
1151                                         add_flag(&cppflags_obst, "%s", arg);
1152                                 } else {
1153                                         set_warning_opt(&option[1]);
1154                                 }
1155                         } else if (option[0] == 'm') {
1156                                 /* -m options */
1157                                 const char *opt;
1158                                 char arch_opt[64];
1159
1160                                 GET_ARG_AFTER(opt, "-m");
1161                                 if (strstart(opt, "target=")) {
1162                                         GET_ARG_AFTER(opt, "-mtarget=");
1163                                         if (!parse_target_triple(opt)) {
1164                                                 argument_errors = true;
1165                                         } else {
1166                                                 setup_target_machine();
1167                                                 target_triple = opt;
1168                                         }
1169                                 } else if (strstart(opt, "triple=")) {
1170                                         GET_ARG_AFTER(opt, "-mtriple=");
1171                                         if (!parse_target_triple(opt)) {
1172                                                 argument_errors = true;
1173                                         } else {
1174                                                 setup_target_machine();
1175                                                 target_triple = opt;
1176                                         }
1177                                 } else if (strstart(opt, "arch=")) {
1178                                         GET_ARG_AFTER(opt, "-march=");
1179                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
1180                                         int res = be_parse_arg(arch_opt);
1181                                         if (res == 0) {
1182                                                 fprintf(stderr, "Unknown architecture '%s'\n", arch_opt);
1183                                                 argument_errors = true;
1184                                         } else {
1185                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
1186                                                 int res = be_parse_arg(arch_opt);
1187                                                 if (res == 0)
1188                                                         argument_errors = true;
1189                                         }
1190                                 } else if (strstart(opt, "tune=")) {
1191                                         GET_ARG_AFTER(opt, "-mtune=");
1192                                         snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
1193                                         int res = be_parse_arg(arch_opt);
1194                                         if (res == 0)
1195                                                 argument_errors = true;
1196                                 } else if (strstart(opt, "cpu=")) {
1197                                         GET_ARG_AFTER(opt, "-mcpu=");
1198                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
1199                                         int res = be_parse_arg(arch_opt);
1200                                         if (res == 0)
1201                                                 argument_errors = true;
1202                                 } else if (strstart(opt, "fpmath=")) {
1203                                         GET_ARG_AFTER(opt, "-mfpmath=");
1204                                         if (streq(opt, "387"))
1205                                                 opt = "x87";
1206                                         else if (streq(opt, "sse"))
1207                                                 opt = "sse2";
1208                                         else {
1209                                                 fprintf(stderr, "error: option -mfpumath supports only 387 or sse\n");
1210                                                 argument_errors = true;
1211                                         }
1212                                         if (!argument_errors) {
1213                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-fpunit=%s", cpu_arch, opt);
1214                                                 int res = be_parse_arg(arch_opt);
1215                                                 if (res == 0)
1216                                                         argument_errors = true;
1217                                         }
1218                                 } else if (strstart(opt, "preferred-stack-boundary=")) {
1219                                         GET_ARG_AFTER(opt, "-mpreferred-stack-boundary=");
1220                                         snprintf(arch_opt, sizeof(arch_opt), "%s-stackalign=%s", cpu_arch, opt);
1221                                         int res = be_parse_arg(arch_opt);
1222                                         if (res == 0)
1223                                                 argument_errors = true;
1224                                 } else if (streq(opt, "rtd")) {
1225                                         default_calling_convention = CC_STDCALL;
1226                                 } else if (strstart(opt, "regparm=")) {
1227                                         fprintf(stderr, "error: regparm convention not supported yet\n");
1228                                         argument_errors = true;
1229                                 } else if (streq(opt, "soft-float")) {
1230                                         fprintf(stderr, "error: software floatingpoint not supported yet\n");
1231                                         argument_errors = true;
1232                                 } else {
1233                                         long int value = strtol(opt, NULL, 10);
1234                                         if (value == 0) {
1235                                                 fprintf(stderr, "error: wrong option '-m %s'\n",  opt);
1236                                                 argument_errors = true;
1237                                         } else if (value != 16 && value != 32 && value != 64) {
1238                                                 fprintf(stderr, "error: option -m supports only 16, 32 or 64\n");
1239                                                 argument_errors = true;
1240                                         } else {
1241                                                 machine_size = (unsigned int)value;
1242                                                 add_flag(&cppflags_obst, "-m%u", machine_size);
1243                                                 add_flag(&asflags_obst, "-m%u", machine_size);
1244                                                 add_flag(&ldflags_obst, "-m%u", machine_size);
1245                                         }
1246                                 }
1247                         } else if (streq(option, "pg")) {
1248                                 set_be_option("gprof");
1249                                 add_flag(&ldflags_obst, "-pg");
1250                         } else if (streq(option, "pedantic") ||
1251                                    streq(option, "ansi")) {
1252                                 fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg);
1253                         } else if (strstart(option, "std=")) {
1254                                 const char *const o = &option[4];
1255                                 standard =
1256                                         streq(o, "c++")            ? STANDARD_CXX98   :
1257                                         streq(o, "c++98")          ? STANDARD_CXX98   :
1258                                         streq(o, "c89")            ? STANDARD_C89     :
1259                                         streq(o, "c99")            ? STANDARD_C99     :
1260                                         streq(o, "c9x")            ? STANDARD_C99     : // deprecated
1261                                         streq(o, "gnu++98")        ? STANDARD_GNUXX98 :
1262                                         streq(o, "gnu89")          ? STANDARD_GNU89   :
1263                                         streq(o, "gnu99")          ? STANDARD_GNU99   :
1264                                         streq(o, "gnu9x")          ? STANDARD_GNU99   : // deprecated
1265                                         streq(o, "iso9899:1990")   ? STANDARD_C89     :
1266                                         streq(o, "iso9899:199409") ? STANDARD_C90     :
1267                                         streq(o, "iso9899:1999")   ? STANDARD_C99     :
1268                                         streq(o, "iso9899:199x")   ? STANDARD_C99     : // deprecated
1269                                         (fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg), standard);
1270                         } else if (streq(option, "version")) {
1271                                 print_cparser_version();
1272                         } else if (strstart(option, "print-file-name=")) {
1273                                 GET_ARG_AFTER(print_file_name_file, "-print-file-name=");
1274                         } else if (option[0] == '-') {
1275                                 /* double dash option */
1276                                 ++option;
1277                                 if (streq(option, "gcc")) {
1278                                         features_on  |=  _GNUC;
1279                                         features_off &= ~_GNUC;
1280                                 } else if (streq(option, "no-gcc")) {
1281                                         features_on  &= ~_GNUC;
1282                                         features_off |=  _GNUC;
1283                                 } else if (streq(option, "ms")) {
1284                                         features_on  |=  _MS;
1285                                         features_off &= ~_MS;
1286                                 } else if (streq(option, "no-ms")) {
1287                                         features_on  &= ~_MS;
1288                                         features_off |=  _MS;
1289                                 } else if (streq(option, "strict")) {
1290                                         strict_mode = true;
1291                                 } else if (streq(option, "lextest")) {
1292                                         mode = LexTest;
1293                                 } else if (streq(option, "benchmark")) {
1294                                         mode = BenchmarkParser;
1295                                 } else if (streq(option, "print-ast")) {
1296                                         mode = PrintAst;
1297                                 } else if (streq(option, "print-implicit-cast")) {
1298                                         print_implicit_casts = true;
1299                                 } else if (streq(option, "print-parenthesis")) {
1300                                         print_parenthesis = true;
1301                                 } else if (streq(option, "print-fluffy")) {
1302                                         mode = PrintFluffy;
1303                                 } else if (streq(option, "print-jna")) {
1304                                         mode = PrintJna;
1305                                 } else if (streq(option, "jna-limit")) {
1306                                         ++i;
1307                                         if (i >= argc) {
1308                                                 fprintf(stderr, "error: "
1309                                                         "expected argument after '--jna-limit'\n");
1310                                                 argument_errors = true;
1311                                                 break;
1312                                         }
1313                                         jna_limit_output(argv[i]);
1314                                 } else if (streq(option, "jna-libname")) {
1315                                         ++i;
1316                                         if (i >= argc) {
1317                                                 fprintf(stderr, "error: "
1318                                                         "expected argument after '--jna-libname'\n");
1319                                                 argument_errors = true;
1320                                                 break;
1321                                         }
1322                                         jna_set_libname(argv[i]);
1323                                 } else if (streq(option, "time")) {
1324                                         do_timing = true;
1325                                 } else if (streq(option, "version")) {
1326                                         print_cparser_version();
1327                                         return EXIT_SUCCESS;
1328                                 } else if (streq(option, "help")) {
1329                                         help |= HELP_BASIC;
1330                                 } else if (streq(option, "help-parser")) {
1331                                         help |= HELP_PARSER;
1332                                 } else if (streq(option, "help-warnings")) {
1333                                         help |= HELP_WARNINGS;
1334                                 } else if (streq(option, "help-codegen")) {
1335                                         help |= HELP_CODEGEN;
1336                                 } else if (streq(option, "help-linker")) {
1337                                         help |= HELP_LINKER;
1338                                 } else if (streq(option, "help-language-tools")) {
1339                                         help |= HELP_LANGUAGETOOLS;
1340                                 } else if (streq(option, "help-debug")) {
1341                                         help |= HELP_DEBUG;
1342                                 } else if (streq(option, "help-firm")) {
1343                                         help |= HELP_FIRM;
1344                                 } else if (streq(option, "help-all")) {
1345                                         help |= HELP_ALL;
1346                                 } else if (streq(option, "dump-function")) {
1347                                         ++i;
1348                                         if (i >= argc) {
1349                                                 fprintf(stderr, "error: "
1350                                                         "expected argument after '--dump-function'\n");
1351                                                 argument_errors = true;
1352                                                 break;
1353                                         }
1354                                         dumpfunction = argv[i];
1355                                         mode         = CompileDump;
1356                                 } else if (streq(option, "export-ir")) {
1357                                         mode = CompileExportIR;
1358                                 } else {
1359                                         fprintf(stderr, "error: unknown argument '%s'\n", arg);
1360                                         argument_errors = true;
1361                                 }
1362                         } else {
1363                                 fprintf(stderr, "error: unknown argument '%s'\n", arg);
1364                                 argument_errors = true;
1365                         }
1366                 } else {
1367                         filetype_t type = forced_filetype;
1368                         if (type == FILETYPE_AUTODETECT) {
1369                                 if (streq(arg, "-")) {
1370                                         /* - implicitly means C source file */
1371                                         type = FILETYPE_C;
1372                                 } else {
1373                                         const char *suffix = strrchr(arg, '.');
1374                                         /* Ensure there is at least one char before the suffix */
1375                                         if (suffix != NULL && suffix != arg) {
1376                                                 ++suffix;
1377                                                 type =
1378                                                         streq(suffix, "S")   ? FILETYPE_ASSEMBLER              :
1379                                                         streq(suffix, "a")   ? FILETYPE_OBJECT                 :
1380                                                         streq(suffix, "c")   ? FILETYPE_C                      :
1381                                                         streq(suffix, "i")   ? FILETYPE_PREPROCESSED_C         :
1382                                                         streq(suffix, "C")   ? FILETYPE_CXX                    :
1383                                                         streq(suffix, "cc")  ? FILETYPE_CXX                    :
1384                                                         streq(suffix, "cp")  ? FILETYPE_CXX                    :
1385                                                         streq(suffix, "cpp") ? FILETYPE_CXX                    :
1386                                                         streq(suffix, "CPP") ? FILETYPE_CXX                    :
1387                                                         streq(suffix, "cxx") ? FILETYPE_CXX                    :
1388                                                         streq(suffix, "c++") ? FILETYPE_CXX                    :
1389                                                         streq(suffix, "ii")  ? FILETYPE_PREPROCESSED_CXX       :
1390                                                         streq(suffix, "h")   ? FILETYPE_C                      :
1391                                                         streq(suffix, "ir")  ? FILETYPE_IR                     :
1392                                                         streq(suffix, "o")   ? FILETYPE_OBJECT                 :
1393                                                         streq(suffix, "s")   ? FILETYPE_PREPROCESSED_ASSEMBLER :
1394                                                         streq(suffix, "so")  ? FILETYPE_OBJECT                 :
1395                                                         FILETYPE_OBJECT; /* gcc behavior: unknown file extension means object file */
1396                                         }
1397                                 }
1398                         }
1399
1400                         file_list_entry_t *entry
1401                                 = obstack_alloc(&file_obst, sizeof(entry[0]));
1402                         memset(entry, 0, sizeof(entry[0]));
1403                         entry->name = arg;
1404                         entry->type = type;
1405
1406                         if (last_file != NULL) {
1407                                 last_file->next = entry;
1408                         } else {
1409                                 files = entry;
1410                         }
1411                         last_file = entry;
1412                 }
1413         }
1414
1415         if (help != HELP_NONE) {
1416                 print_help(argv[0], help);
1417                 return !argument_errors;
1418         }
1419
1420         if (print_file_name_file != NULL) {
1421                 print_file_name(print_file_name_file);
1422                 return EXIT_SUCCESS;
1423         }
1424         if (files == NULL) {
1425                 fprintf(stderr, "error: no input files specified\n");
1426                 argument_errors = true;
1427         }
1428
1429         if (argument_errors) {
1430                 usage(argv[0]);
1431                 return EXIT_FAILURE;
1432         }
1433
1434         /* apply some effects from switches */
1435         c_mode |= features_on;
1436         c_mode &= ~features_off;
1437         if (profile_generate) {
1438                 add_flag(&ldflags_obst, "-lfirmprof");
1439                 set_be_option("profilegenerate");
1440         }
1441         if (profile_use) {
1442                 set_be_option("profileuse");
1443         }
1444
1445         gen_firm_init();
1446         byte_order_big_endian = be_get_backend_param()->byte_order_big_endian;
1447         init_symbol_table();
1448         init_types();
1449         init_typehash();
1450         init_basic_types();
1451         init_lexer();
1452         init_ast();
1453         init_parser();
1454         init_ast2firm();
1455         init_mangle();
1456
1457         if (do_timing)
1458                 timer_init();
1459
1460         if (construct_dep_target) {
1461                 if (outname != 0 && strlen(outname) >= 2) {
1462                         get_output_name(dep_target, sizeof(dep_target), outname, ".d");
1463                 } else {
1464                         get_output_name(dep_target, sizeof(dep_target), files->name, ".d");
1465                 }
1466         } else {
1467                 dep_target[0] = '\0';
1468         }
1469
1470         char outnamebuf[4096];
1471         if (outname == NULL) {
1472                 const char *filename = files->name;
1473
1474                 switch(mode) {
1475                 case BenchmarkParser:
1476                 case PrintAst:
1477                 case PrintFluffy:
1478                 case PrintJna:
1479                 case LexTest:
1480                 case PreprocessOnly:
1481                 case ParseOnly:
1482                         outname = "-";
1483                         break;
1484                 case Compile:
1485                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".s");
1486                         outname = outnamebuf;
1487                         break;
1488                 case CompileAssemble:
1489                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".o");
1490                         outname = outnamebuf;
1491                         break;
1492                 case CompileDump:
1493                         get_output_name(outnamebuf, sizeof(outnamebuf), dumpfunction,
1494                                         ".vcg");
1495                         outname = outnamebuf;
1496                         break;
1497                 case CompileExportIR:
1498                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".ir");
1499                         outname = outnamebuf;
1500                         break;
1501                 case CompileAssembleLink:
1502 #ifdef _WIN32
1503                         outname = "a.exe";
1504 #else
1505                         outname = "a.out";
1506 #endif
1507                         break;
1508                 }
1509         }
1510
1511         assert(outname != NULL);
1512
1513         FILE *out;
1514         if (streq(outname, "-")) {
1515                 out = stdout;
1516         } else {
1517                 out = fopen(outname, "w");
1518                 if (out == NULL) {
1519                         fprintf(stderr, "Couldn't open '%s' for writing: %s\n", outname,
1520                                         strerror(errno));
1521                         return EXIT_FAILURE;
1522                 }
1523         }
1524
1525         file_list_entry_t *file;
1526         bool               already_constructed_firm = false;
1527         for (file = files; file != NULL; file = file->next) {
1528                 char        asm_tempfile[1024];
1529                 const char *filename = file->name;
1530                 filetype_t  filetype = file->type;
1531
1532                 if (filetype == FILETYPE_OBJECT)
1533                         continue;
1534
1535                 FILE *in = NULL;
1536                 if (mode == LexTest) {
1537                         if (in == NULL)
1538                                 in = open_file(filename);
1539                         lextest(in, filename);
1540                         fclose(in);
1541                         return EXIT_SUCCESS;
1542                 }
1543
1544                 FILE *preprocessed_in = NULL;
1545                 filetype_t next_filetype = filetype;
1546                 switch (filetype) {
1547                         case FILETYPE_C:
1548                                 next_filetype = FILETYPE_PREPROCESSED_C;
1549                                 goto preprocess;
1550                         case FILETYPE_CXX:
1551                                 next_filetype = FILETYPE_PREPROCESSED_CXX;
1552                                 goto preprocess;
1553                         case FILETYPE_ASSEMBLER:
1554                                 next_filetype = FILETYPE_PREPROCESSED_ASSEMBLER;
1555                                 goto preprocess;
1556 preprocess:
1557                                 /* no support for input on FILE* yet */
1558                                 if (in != NULL)
1559                                         panic("internal compiler error: in for preprocessor != NULL");
1560
1561                                 preprocessed_in = preprocess(filename, filetype);
1562                                 if (mode == PreprocessOnly) {
1563                                         copy_file(out, preprocessed_in);
1564                                         int result = pclose(preprocessed_in);
1565                                         fclose(out);
1566                                         /* remove output file in case of error */
1567                                         if (out != stdout && result != EXIT_SUCCESS) {
1568                                                 unlink(outname);
1569                                         }
1570                                         return result;
1571                                 }
1572
1573                                 in = preprocessed_in;
1574                                 filetype = next_filetype;
1575                                 break;
1576
1577                         default:
1578                                 break;
1579                 }
1580
1581                 FILE *asm_out;
1582                 if (mode == Compile) {
1583                         asm_out = out;
1584                 } else {
1585                         asm_out = make_temp_file(asm_tempfile, sizeof(asm_tempfile), "ccs");
1586                 }
1587
1588                 if (in == NULL)
1589                         in = open_file(filename);
1590
1591                 /* preprocess and compile */
1592                 if (filetype == FILETYPE_PREPROCESSED_C) {
1593                         char const* invalid_mode;
1594                         switch (standard) {
1595                                 case STANDARD_ANSI:
1596                                 case STANDARD_C89:   c_mode = _C89;                break;
1597                                 /* TODO determine difference between these two */
1598                                 case STANDARD_C90:   c_mode = _C89;                break;
1599                                 case STANDARD_C99:   c_mode = _C89 | _C99;         break;
1600                                 case STANDARD_GNU89: c_mode = _C89 |        _GNUC; break;
1601
1602 default_c_warn:
1603                                         fprintf(stderr,
1604                                                         "warning: command line option \"-std=%s\" is not valid for C\n",
1605                                                         invalid_mode);
1606                                         /* FALLTHROUGH */
1607                                 case STANDARD_DEFAULT:
1608                                 case STANDARD_GNU99:   c_mode = _C89 | _C99 | _GNUC; break;
1609
1610                                 case STANDARD_CXX98:   invalid_mode = "c++98"; goto default_c_warn;
1611                                 case STANDARD_GNUXX98: invalid_mode = "gnu98"; goto default_c_warn;
1612                         }
1613                         goto do_parsing;
1614                 } else if (filetype == FILETYPE_PREPROCESSED_CXX) {
1615                         char const* invalid_mode;
1616                         switch (standard) {
1617                                 case STANDARD_C89:   invalid_mode = "c89";   goto default_cxx_warn;
1618                                 case STANDARD_C90:   invalid_mode = "c90";   goto default_cxx_warn;
1619                                 case STANDARD_C99:   invalid_mode = "c99";   goto default_cxx_warn;
1620                                 case STANDARD_GNU89: invalid_mode = "gnu89"; goto default_cxx_warn;
1621                                 case STANDARD_GNU99: invalid_mode = "gnu99"; goto default_cxx_warn;
1622
1623                                 case STANDARD_ANSI:
1624                                 case STANDARD_CXX98: c_mode = _CXX; break;
1625
1626 default_cxx_warn:
1627                                         fprintf(stderr,
1628                                                         "warning: command line option \"-std=%s\" is not valid for C++\n",
1629                                                         invalid_mode);
1630                                 case STANDARD_DEFAULT:
1631                                 case STANDARD_GNUXX98: c_mode = _CXX | _GNUC; break;
1632                         }
1633
1634 do_parsing:
1635                         c_mode |= features_on;
1636                         c_mode &= ~features_off;
1637
1638                         /* do the actual parsing */
1639                         ir_timer_t *t_parsing = ir_timer_new();
1640                         timer_register(t_parsing, "Frontend: Parsing");
1641                         timer_push(t_parsing);
1642                         init_tokens();
1643                         translation_unit_t *const unit = do_parsing(in, filename);
1644                         timer_pop(t_parsing);
1645
1646                         /* prints the AST even if errors occurred */
1647                         if (mode == PrintAst) {
1648                                 print_to_file(out);
1649                                 print_ast(unit);
1650                         }
1651
1652                         if (error_count > 0) {
1653                                 /* parsing failed because of errors */
1654                                 fprintf(stderr, "%u error(s), %u warning(s)\n", error_count,
1655                                         warning_count);
1656                                 result = EXIT_FAILURE;
1657                                 continue;
1658                         } else if (warning_count > 0) {
1659                                 fprintf(stderr, "%u warning(s)\n", warning_count);
1660                         }
1661
1662                         if (in == preprocessed_in) {
1663                                 int pp_result = pclose(preprocessed_in);
1664                                 if (pp_result != EXIT_SUCCESS) {
1665                                         /* remove output file */
1666                                         if (out != stdout)
1667                                                 unlink(outname);
1668                                         return EXIT_FAILURE;
1669                                 }
1670                         }
1671
1672                         if (mode == BenchmarkParser) {
1673                                 return result;
1674                         } else if (mode == PrintFluffy) {
1675                                 write_fluffy_decls(out, unit);
1676                                 continue;
1677                         } else if (mode == PrintJna) {
1678                                 write_jna_decls(out, unit);
1679                                 continue;
1680                         }
1681
1682                         /* build the firm graph */
1683                         ir_timer_t *t_construct = ir_timer_new();
1684                         timer_register(t_construct, "Frontend: Graph construction");
1685                         timer_push(t_construct);
1686                         if (already_constructed_firm) {
1687                                 panic("compiling multiple files/translation units not possible");
1688                         }
1689                         translation_unit_to_firm(unit);
1690                         already_constructed_firm = true;
1691                         timer_pop(t_construct);
1692
1693 graph_built:
1694                         if (mode == ParseOnly) {
1695                                 continue;
1696                         }
1697
1698                         if (mode == CompileDump) {
1699                                 /* find irg */
1700                                 ident    *id     = new_id_from_str(dumpfunction);
1701                                 ir_graph *irg    = NULL;
1702                                 int       n_irgs = get_irp_n_irgs();
1703                                 for (int i = 0; i < n_irgs; ++i) {
1704                                         ir_graph *tirg   = get_irp_irg(i);
1705                                         ident    *irg_id = get_entity_ident(get_irg_entity(tirg));
1706                                         if (irg_id == id) {
1707                                                 irg = tirg;
1708                                                 break;
1709                                         }
1710                                 }
1711
1712                                 if (irg == NULL) {
1713                                         fprintf(stderr, "No graph for function '%s' found\n",
1714                                                 dumpfunction);
1715                                         return EXIT_FAILURE;
1716                                 }
1717
1718                                 dump_ir_graph_file(out, irg);
1719                                 fclose(out);
1720                                 return EXIT_SUCCESS;
1721                         }
1722
1723                         if (mode == CompileExportIR) {
1724                                 fclose(out);
1725                                 ir_export(outname);
1726                                 return EXIT_SUCCESS;
1727                         }
1728
1729                         gen_firm_finish(asm_out, filename);
1730                         if (asm_out != out) {
1731                                 fclose(asm_out);
1732                         }
1733                 } else if (filetype == FILETYPE_IR) {
1734                         fclose(in);
1735                         ir_import(filename);
1736                         goto graph_built;
1737                 } else if (filetype == FILETYPE_PREPROCESSED_ASSEMBLER) {
1738                         copy_file(asm_out, in);
1739                         if (in == preprocessed_in) {
1740                                 int pp_result = pclose(preprocessed_in);
1741                                 if (pp_result != EXIT_SUCCESS) {
1742                                         /* remove output in error case */
1743                                         if (out != stdout)
1744                                                 unlink(outname);
1745                                         return pp_result;
1746                                 }
1747                         }
1748                         if (asm_out != out) {
1749                                 fclose(asm_out);
1750                         }
1751                 }
1752
1753                 if (mode == Compile)
1754                         continue;
1755
1756                 /* if we're here then we have preprocessed assembly */
1757                 filename = asm_tempfile;
1758                 filetype = FILETYPE_PREPROCESSED_ASSEMBLER;
1759
1760                 /* assemble */
1761                 if (filetype == FILETYPE_PREPROCESSED_ASSEMBLER) {
1762                         char        temp[1024];
1763                         const char *filename_o;
1764                         if (mode == CompileAssemble) {
1765                                 fclose(out);
1766                                 filename_o = outname;
1767                         } else {
1768                                 FILE *tempf = make_temp_file(temp, sizeof(temp), "cco");
1769                                 fclose(tempf);
1770                                 filename_o = temp;
1771                         }
1772
1773                         assemble(filename_o, filename);
1774
1775                         size_t len = strlen(filename_o) + 1;
1776                         filename = obstack_copy(&file_obst, filename_o, len);
1777                         filetype = FILETYPE_OBJECT;
1778                 }
1779
1780                 /* ok we're done here, process next file */
1781                 file->name = filename;
1782                 file->type = filetype;
1783         }
1784
1785         if (result != EXIT_SUCCESS) {
1786                 if (out != stdout)
1787                         unlink(outname);
1788                 return result;
1789         }
1790
1791         /* link program file */
1792         if (mode == CompileAssembleLink) {
1793                 obstack_1grow(&ldflags_obst, '\0');
1794                 const char *flags = obstack_finish(&ldflags_obst);
1795
1796                 /* construct commandline */
1797                 const char *linker = getenv("CPARSER_LINK");
1798                 if (linker != NULL) {
1799                         obstack_printf(&file_obst, "%s ", linker);
1800                 } else {
1801                         if (target_triple != NULL)
1802                                 obstack_printf(&file_obst, "%s-", target_triple);
1803                         obstack_printf(&file_obst, "%s ", LINKER);
1804                 }
1805
1806                 for (file_list_entry_t *entry = files; entry != NULL;
1807                                 entry = entry->next) {
1808                         if (entry->type != FILETYPE_OBJECT)
1809                                 continue;
1810
1811                         add_flag(&file_obst, "%s", entry->name);
1812                 }
1813
1814                 add_flag(&file_obst, "-o");
1815                 add_flag(&file_obst, outname);
1816                 obstack_printf(&file_obst, "%s", flags);
1817                 obstack_1grow(&file_obst, '\0');
1818
1819                 char *commandline = obstack_finish(&file_obst);
1820
1821                 if (verbose) {
1822                         puts(commandline);
1823                 }
1824                 int err = system(commandline);
1825                 if (err != EXIT_SUCCESS) {
1826                         fprintf(stderr, "linker reported an error\n");
1827                         return EXIT_FAILURE;
1828                 }
1829         }
1830
1831         if (do_timing)
1832                 timer_term(stderr);
1833
1834         obstack_free(&cppflags_obst, NULL);
1835         obstack_free(&ldflags_obst, NULL);
1836         obstack_free(&asflags_obst, NULL);
1837         obstack_free(&file_obst, NULL);
1838
1839         exit_mangle();
1840         exit_ast2firm();
1841         exit_parser();
1842         exit_ast();
1843         exit_lexer();
1844         exit_typehash();
1845         exit_types();
1846         exit_tokens();
1847         exit_symbol_table();
1848         return EXIT_SUCCESS;
1849 }