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