Remove redundante fclose(), which is handles by close_input() a few lines later.
[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 "preprocessor.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_timing.h"
74 #include "driver/firm_machine.h"
75 #include "adt/error.h"
76 #include "adt/strutil.h"
77 #include "adt/array.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 | _C99 | _GNUC;
103 bool                byte_order_big_endian     = false;
104 bool                strict_mode               = false;
105 bool                enable_main_collect2_hack = false;
106 bool                freestanding              = false;
107 unsigned            architecture_modulo_shift = 0;
108
109 static bool               char_is_signed      = true;
110 static atomic_type_kind_t wchar_atomic_kind   = ATOMIC_TYPE_INT;
111 static unsigned           features_on         = 0;
112 static unsigned           features_off        = 0;
113 static const char        *dumpfunction        = NULL;
114 static struct obstack     file_obst;
115 static const char        *external_preprocessor = PREPROCESSOR;
116
117 static machine_triple_t *target_machine;
118 static const char       *target_triple;
119 static int               verbose;
120 static struct obstack    cppflags_obst;
121 static struct obstack    ldflags_obst;
122 static struct obstack    asflags_obst;
123 static char              dep_target[1024];
124 static const char       *outname;
125 static bool              define_intmax_types;
126 static const char       *input_encoding;
127
128 typedef enum lang_standard_t {
129         STANDARD_DEFAULT, /* gnu99 (for C, GCC does gnu89) or gnu++98 (for C++) */
130         STANDARD_ANSI,    /* ISO C90 (for C) or ISO C++ 1998 (for C++) */
131         STANDARD_C89,     /* ISO C90 (sic) */
132         STANDARD_C89AMD1, /* ISO C90 as modified in amendment 1 */
133         STANDARD_C99,     /* ISO C99 */
134         STANDARD_GNU89,   /* ISO C90 plus GNU extensions (including some C99) */
135         STANDARD_GNU99,   /* ISO C99 plus GNU extensions */
136         STANDARD_CXX98,   /* ISO C++ 1998 plus amendments */
137         STANDARD_GNUXX98  /* ISO C++ 1998 plus amendments and GNU extensions */
138 } lang_standard_t;
139
140 typedef enum compilation_unit_type_t {
141         COMPILATION_UNIT_AUTODETECT,
142         COMPILATION_UNIT_C,
143         COMPILATION_UNIT_PREPROCESSED_C,
144         COMPILATION_UNIT_CXX,
145         COMPILATION_UNIT_PREPROCESSED_CXX,
146         COMPILATION_UNIT_AST,
147         COMPILATION_UNIT_INTERMEDIATE_REPRESENTATION,
148         COMPILATION_UNIT_ASSEMBLER,
149         COMPILATION_UNIT_PREPROCESSED_ASSEMBLER,
150         COMPILATION_UNIT_OBJECT,
151         COMPILATION_UNIT_IR,
152         COMPILATION_UNIT_UNKNOWN
153 } compilation_unit_type_t;
154
155 typedef struct compilation_unit_t compilation_unit_t;
156 struct compilation_unit_t {
157         const char             *name;  /**< filename or "-" for stdin */
158         FILE                   *input; /**< input (NULL if not opened yet) */
159         bool                    input_is_pipe;
160         compilation_unit_type_t type;
161         lang_standard_t         standard;
162         translation_unit_t     *ast;
163         bool                    parse_errors;
164         compilation_unit_t     *next;
165 };
166
167 static char **temp_files;
168
169 static void get_output_name(char *buf, size_t buflen, const char *inputname,
170                             const char *newext)
171 {
172         if (inputname == NULL)
173                 inputname = "a";
174
175         char const *const last_slash = strrchr(inputname, '/');
176         char const *const filename   =
177                 last_slash != NULL ? last_slash + 1 : inputname;
178         char const *const last_dot   = strrchr(filename, '.');
179         char const *const name_end   =
180                 last_dot != NULL ? last_dot : strchr(filename, '\0');
181
182         int const len = snprintf(buf, buflen, "%.*s%s",
183                         (int)(name_end - filename), filename, newext);
184 #ifdef _WIN32
185         if (len < 0 || buflen <= (size_t)len)
186 #else
187         if (buflen <= (size_t)len)
188 #endif
189                 panic("filename too long");
190 }
191
192 static bool close_input(compilation_unit_t *unit)
193 {
194         assert(unit->input);
195         bool res;
196         if (unit->input == stdin) {
197                 res = true;
198         } else if (unit->input_is_pipe) {
199                 res = pclose(unit->input) == EXIT_SUCCESS;
200         } else {
201                 fclose(unit->input);
202                 res = true;
203         }
204         unit->input = NULL;
205         unit->name  = NULL;
206         return res;
207 }
208
209 static void print_error_summary(void)
210 {
211         if (error_count > 0) {
212                 /* parsing failed because of errors */
213                 fprintf(stderr, "%u error(s), %u warning(s)\n", error_count,
214                                 warning_count);
215         } else if (warning_count > 0) {
216                 fprintf(stderr, "%u warning(s)\n", warning_count);
217         }
218 }
219
220 static void do_parsing(compilation_unit_t *unit)
221 {
222         ir_timer_t *t_parsing = ir_timer_new();
223         timer_register(t_parsing, "Frontend: Parsing");
224         timer_push(t_parsing);
225
226         start_parsing();
227
228         switch_pp_input(unit->input, unit->name);
229         parse();
230         translation_unit_t *ast = finish_parsing();
231         unit->ast = ast;
232         check_unclosed_conditionals();
233         close_pp_input();
234         bool res = close_input(unit);
235
236         print_error_summary();
237
238         unit->type         = COMPILATION_UNIT_AST;
239         unit->parse_errors = error_count > 0 || !res;
240         timer_pop(t_parsing);
241 }
242
243 static void add_flag(struct obstack *obst, const char *format, ...)
244 {
245         char buf[65536];
246         va_list ap;
247
248         va_start(ap, format);
249 #ifdef _WIN32
250         int len =
251 #endif
252                 vsnprintf(buf, sizeof(buf), format, ap);
253         va_end(ap);
254
255         obstack_1grow(obst, ' ');
256 #ifdef _WIN32
257         obstack_1grow(obst, '"');
258         obstack_grow(obst, buf, len);
259         obstack_1grow(obst, '"');
260 #else
261         /* escape stuff... */
262         for (char *c = buf; *c != '\0'; ++c) {
263                 switch(*c) {
264                 case ' ':
265                 case '"':
266                 case '$':
267                 case '&':
268                 case '(':
269                 case ')':
270                 case ';':
271                 case '<':
272                 case '>':
273                 case '\'':
274                 case '\\':
275                 case '\n':
276                 case '\r':
277                 case '\t':
278                 case '`':
279                 case '|':
280                         obstack_1grow(obst, '\\');
281                         /* FALLTHROUGH */
282                 default:
283                         obstack_1grow(obst, *c);
284                         break;
285                 }
286         }
287 #endif
288 }
289
290 static const char *type_to_string(type_t *type)
291 {
292         assert(type->kind == TYPE_ATOMIC);
293         return get_atomic_kind_name(type->atomic.akind);
294 }
295
296 static char const* str_lang_standard(lang_standard_t const standard)
297 {
298         switch (standard) {
299         case STANDARD_C89:     return "c89";
300         case STANDARD_C89AMD1: return "iso9899:199409";
301         case STANDARD_C99:     return "c99";
302         case STANDARD_GNU89:   return "gnu89";
303         case STANDARD_GNU99:   return "gnu99";
304         case STANDARD_CXX98:   return "c++98";
305         case STANDARD_GNUXX98: return "gnu++98";
306         case STANDARD_ANSI:    break;
307         case STANDARD_DEFAULT: break;
308         }
309         panic("invalid standard");
310 }
311
312 static bool run_external_preprocessor(compilation_unit_t *unit)
313 {
314         static const char *common_flags = NULL;
315
316         if (common_flags == NULL) {
317                 obstack_1grow(&cppflags_obst, '\0');
318                 const char *flags = obstack_finish(&cppflags_obst);
319
320                 /* setup default defines */
321                 add_flag(&cppflags_obst, "-U__WCHAR_TYPE__");
322                 add_flag(&cppflags_obst, "-D__WCHAR_TYPE__=%s", type_to_string(type_wchar_t));
323                 add_flag(&cppflags_obst, "-U__SIZE_TYPE__");
324                 add_flag(&cppflags_obst, "-D__SIZE_TYPE__=%s", type_to_string(type_size_t));
325
326                 add_flag(&cppflags_obst, "-U__VERSION__");
327                 add_flag(&cppflags_obst, "-D__VERSION__=\"%s\"", cparser_REVISION);
328
329                 if (define_intmax_types) {
330                         add_flag(&cppflags_obst, "-U__INTMAX_TYPE__");
331                         add_flag(&cppflags_obst, "-D__INTMAX_TYPE__=%s", type_to_string(type_intmax_t));
332                         add_flag(&cppflags_obst, "-U__UINTMAX_TYPE__");
333                         add_flag(&cppflags_obst, "-D__UINTMAX_TYPE__=%s", type_to_string(type_uintmax_t));
334                 }
335
336                 if (flags[0] != '\0') {
337                         size_t len = strlen(flags);
338                         obstack_1grow(&cppflags_obst, ' ');
339                         obstack_grow(&cppflags_obst, flags, len);
340                 }
341                 obstack_1grow(&cppflags_obst, '\0');
342                 common_flags = obstack_finish(&cppflags_obst);
343         }
344
345         assert(obstack_object_size(&cppflags_obst) == 0);
346
347         const char *preprocessor = getenv("CPARSER_PP");
348         if (preprocessor != NULL) {
349                 obstack_printf(&cppflags_obst, "%s ", preprocessor);
350         } else {
351                 if (target_triple != NULL)
352                         obstack_printf(&cppflags_obst, "%s-", target_triple);
353                 obstack_printf(&cppflags_obst, "%s", external_preprocessor);
354         }
355
356         char const *lang;
357         switch (unit->type) {
358         case COMPILATION_UNIT_C:         lang = "c";                  break;
359         case COMPILATION_UNIT_CXX:       lang = "c++";                break;
360         case COMPILATION_UNIT_ASSEMBLER: lang = "assembler-with-cpp"; break;
361         default:                         lang = NULL;                 break;
362         }
363         if (lang)
364                 add_flag(&cppflags_obst, "-x%s", lang);
365
366         add_flag(&cppflags_obst, "-std=%s", str_lang_standard(unit->standard));
367
368         obstack_printf(&cppflags_obst, "%s", common_flags);
369
370         /* handle dependency generation */
371         if (dep_target[0] != '\0') {
372                 add_flag(&cppflags_obst, "-MF");
373                 add_flag(&cppflags_obst, dep_target);
374                 if (outname != NULL) {
375                         add_flag(&cppflags_obst, "-MQ");
376                         add_flag(&cppflags_obst, outname);
377                 }
378         }
379         assert(unit->input == NULL);
380         add_flag(&cppflags_obst, unit->name);
381         obstack_1grow(&cppflags_obst, '\0');
382
383         char *commandline = obstack_finish(&cppflags_obst);
384         if (verbose) {
385                 puts(commandline);
386         }
387         FILE *f = popen(commandline, "r");
388         if (f == NULL) {
389                 fprintf(stderr, "invoking preprocessor failed\n");
390                 return false;
391         }
392         /* we do not really need that anymore */
393         obstack_free(&cppflags_obst, commandline);
394
395         unit->input         = f;
396         unit->input_is_pipe = true;
397         switch (unit->type) {
398         case COMPILATION_UNIT_ASSEMBLER:
399                 unit->type = COMPILATION_UNIT_PREPROCESSED_ASSEMBLER;
400                 break;
401         case COMPILATION_UNIT_C:
402                 unit->type = COMPILATION_UNIT_PREPROCESSED_C;
403                 break;
404         case COMPILATION_UNIT_CXX:
405                 unit->type = COMPILATION_UNIT_PREPROCESSED_CXX;
406                 break;
407         default:
408                 unit->type = COMPILATION_UNIT_UNKNOWN;
409                 break;
410         }
411
412         return true;
413 }
414
415 static void assemble(const char *out, const char *in)
416 {
417         obstack_1grow(&asflags_obst, '\0');
418         const char *flags = obstack_finish(&asflags_obst);
419
420         const char *assembler = getenv("CPARSER_AS");
421         if (assembler != NULL) {
422                 obstack_printf(&asflags_obst, "%s", assembler);
423         } else {
424                 if (target_triple != NULL)
425                         obstack_printf(&asflags_obst, "%s-", target_triple);
426                 obstack_printf(&asflags_obst, "%s", ASSEMBLER);
427         }
428         if (flags[0] != '\0')
429                 obstack_printf(&asflags_obst, " %s", flags);
430
431         obstack_printf(&asflags_obst, " %s -o %s", in, out);
432         obstack_1grow(&asflags_obst, '\0');
433
434         char *commandline = obstack_finish(&asflags_obst);
435         if (verbose) {
436                 puts(commandline);
437         }
438         int err = system(commandline);
439         if (err != EXIT_SUCCESS) {
440                 fprintf(stderr, "assembler reported an error\n");
441                 exit(EXIT_FAILURE);
442         }
443         obstack_free(&asflags_obst, commandline);
444 }
445
446 static void print_file_name(const char *file)
447 {
448         add_flag(&ldflags_obst, "-print-file-name=%s", file);
449
450         obstack_1grow(&ldflags_obst, '\0');
451         const char *flags = obstack_finish(&ldflags_obst);
452
453         /* construct commandline */
454         const char *linker = getenv("CPARSER_LINK");
455         if (linker != NULL) {
456                 obstack_printf(&ldflags_obst, "%s ", linker);
457         } else {
458                 if (target_triple != NULL)
459                         obstack_printf(&ldflags_obst, "%s-", target_triple);
460                 obstack_printf(&ldflags_obst, "%s ", LINKER);
461         }
462         obstack_printf(&ldflags_obst, "%s ", linker);
463         obstack_printf(&ldflags_obst, "%s", flags);
464         obstack_1grow(&ldflags_obst, '\0');
465
466         char *commandline = obstack_finish(&ldflags_obst);
467         if (verbose) {
468                 puts(commandline);
469         }
470         int err = system(commandline);
471         if (err != EXIT_SUCCESS) {
472                 fprintf(stderr, "linker reported an error\n");
473                 exit(EXIT_FAILURE);
474         }
475         obstack_free(&ldflags_obst, commandline);
476 }
477
478 static const char *try_dir(const char *dir)
479 {
480         if (dir == NULL)
481                 return dir;
482         if (access(dir, R_OK | W_OK | X_OK) == 0)
483                 return dir;
484         return NULL;
485 }
486
487 static const char *get_tempdir(void)
488 {
489         static const char *tmpdir = NULL;
490
491         if (tmpdir != NULL)
492                 return tmpdir;
493
494         if (tmpdir == NULL)
495                 tmpdir = try_dir(getenv("TMPDIR"));
496         if (tmpdir == NULL)
497                 tmpdir = try_dir(getenv("TMP"));
498         if (tmpdir == NULL)
499                 tmpdir = try_dir(getenv("TEMP"));
500
501 #ifdef P_tmpdir
502         if (tmpdir == NULL)
503                 tmpdir = try_dir(P_tmpdir);
504 #endif
505
506         if (tmpdir == NULL)
507                 tmpdir = try_dir("/var/tmp");
508         if (tmpdir == NULL)
509                 tmpdir = try_dir("/usr/tmp");
510         if (tmpdir == NULL)
511                 tmpdir = try_dir("/tmp");
512
513         if (tmpdir == NULL)
514                 tmpdir = ".";
515
516         return tmpdir;
517 }
518
519 #ifndef HAVE_MKSTEMP
520 /* cheap and nasty mkstemp replacement */
521 static int mkstemp(char *templ)
522 {
523         mktemp(templ);
524         return open(templ, O_RDWR|O_CREAT|O_EXCL|O_BINARY, 0600);
525 }
526 #endif
527
528 /**
529  * custom version of tmpnam, which: writes to an obstack, emits no warnings
530  * during linking (like glibc/gnu ld do for tmpnam)...
531  */
532 static FILE *make_temp_file(const char *prefix, const char **name_result)
533 {
534         const char *tempdir = get_tempdir();
535         assert(obstack_object_size(&file_obst) == 0);
536         obstack_printf(&file_obst, "%s/%sXXXXXX", tempdir, prefix);
537         obstack_1grow(&file_obst, '\0');
538
539         char *name = obstack_finish(&file_obst);
540         int fd = mkstemp(name);
541         if (fd == -1) {
542                 fprintf(stderr, "could not create temporary file: %s\n",
543                         strerror(errno));
544                 return NULL;
545         }
546         FILE *out = fdopen(fd, "w");
547         if (out == NULL) {
548                 fprintf(stderr, "could not open temporary file as FILE*\n");
549                 return NULL;
550         }
551
552         ARR_APP1(char*, temp_files, name);
553         *name_result = name;
554         return out;
555 }
556
557 static void free_temp_files(void)
558 {
559         size_t n_temp_files = ARR_LEN(temp_files);
560         size_t i;
561         for (i = 0; i < n_temp_files; ++i) {
562                 char *file = temp_files[i];
563                 unlink(file);
564         }
565         DEL_ARR_F(temp_files);
566         temp_files = NULL;
567 }
568
569 typedef enum compile_mode_t {
570         BenchmarkParser,
571         PreprocessOnly,
572         ParseOnly,
573         Compile,
574         CompileDump,
575         CompileExportIR,
576         CompileAssemble,
577         CompileAssembleLink,
578         PrintAst,
579         PrintFluffy,
580         PrintJna
581 } compile_mode_t;
582
583 static void usage(const char *argv0)
584 {
585         fprintf(stderr, "Usage %s [options] input [-o output]\n", argv0);
586 }
587
588 static void print_cparser_version(void)
589 {
590         printf("cparser (%s) using libFirm (%u.%u",
591                cparser_REVISION, ir_get_version_major(),
592                ir_get_version_minor());
593
594         const char *revision = ir_get_version_revision();
595         if (revision[0] != 0) {
596                 putchar('-');
597                 fputs(revision, stdout);
598         }
599
600         const char *build = ir_get_version_build();
601         if (build[0] != 0) {
602                 putchar(' ');
603                 fputs(build, stdout);
604         }
605         puts(")");
606         puts("This is free software; see the source for copying conditions.  There is NO\n"
607              "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
608 }
609
610 static void print_cparser_version_short(void)
611 {
612         puts(cparser_REVISION);
613 }
614
615 static void print_help_basic(const char *argv0)
616 {
617         usage(argv0);
618         puts("");
619         put_help("--help",                   "Display this information");
620         put_help("--version",                "Display compiler version");
621         put_help("--help-parser",            "Display information about parser options");
622         put_help("--help-warnings",          "Display information about warning options");
623         put_help("--help-codegen",           "Display information about code-generation options");
624         put_help("--help-optimization",      "Display information about optimization options");
625         put_help("--help-linker",            "Display information about linker options");
626         put_help("--help-language-tools",    "Display information about language tools options");
627         put_help("--help-debug",             "Display information about compiler debugging options");
628         put_help("--help-firm",              "Display information about direct firm options");
629         put_help("--help-all",               "Display information about all options");
630         put_help("-c",                       "Compile and assemble but do not link");
631         put_help("-E",                       "Preprocess only");
632         put_help("-S",                       "Compile but do not assembler or link");
633         put_help("-o",                       "Specify output file");
634         put_help("-v",                       "Verbose output (show invocation of sub-processes)");
635         put_help("-x",                       "Force input language:");
636         put_choice("c",                      "C");
637         put_choice("c++",                    "C++");
638         put_choice("assembler",              "Assembler (no preprocessing)");
639         put_choice("assembler-with-cpp",     "Assembler with preprocessing");
640         put_choice("none",                   "Autodetection");
641         put_help("-pipe",                    "Ignored (gcc compatibility)");
642 }
643
644 static void print_help_preprocessor(void)
645 {
646         put_help("-nostdinc",                "Do not search standard system include directories");
647         put_help("-trigraphs",               "Support ISO C trigraphs");
648         put_help("-isystem",                 "");
649         put_help("-include",                 "");
650         put_help("-I PATH",                  "");
651         put_help("-D SYMBOL[=value]",        "");
652         put_help("-U SYMBOL",                "");
653         put_help("-Wp,OPTION",               "Pass option directly to preprocessor");
654         put_help("-M",                       "");
655         put_help("-MD",                      "");
656         put_help("-MMD",                     "");
657         put_help("-MM",                      "");
658         put_help("-MP",                      "");
659         put_help("-MT",                      "");
660         put_help("-MQ",                      "");
661         put_help("-MF",                      "");
662 }
663
664 static void print_help_parser(void)
665 {
666         put_help("-finput-charset=CHARSET",  "Select encoding of input files");
667         put_help("-fmessage-length=LEN",     "Ignored (gcc compatibility)");
668         put_help("-fshort-wchar",            "Type \"wchar_t\" is unsigned short instead of int");
669         put_help("-fshow-column",            "Show the column number in diagnostic messages");
670         put_help("-fsigned-char",            "Type \"char\" is a signed type");
671         put_help("-funsigned-char",          "Type \"char\" is an unsigned type");
672         put_help("--ms",                     "Enable msvc extensions");
673         put_help("--no-ms",                  "Disable msvc extensions");
674         put_help("--gcc",                    "Enable gcc extensions");
675         put_help("--no-gcc",                 "Disable gcc extensions");
676         put_help("-std=STANDARD",            "Specify language standard:");
677         put_choice("c99",                    "ISO C99 standard");
678         put_choice("c89",                    "ISO C89 standard");
679         put_choice("c90",                    "Same as -std=c89");
680         put_choice("c9x",                    "Deprecated");
681         put_choice("c++",                    "ISO C++ 98");
682         put_choice("c++98",                  "ISO C++ 98");
683         put_choice("gnu99",                  "ISO C99 + GNU extensions (default)");
684         put_choice("gnu89",                  "ISO C89 + GNU extensions");
685         put_choice("gnu9x",                  "Deprecated");
686         put_choice("iso9899:1990",           "ISO C89");
687         put_choice("iso9899:199409",         "ISO C90");
688         put_choice("iso9899:1999",           "ISO C99");
689         put_choice("iso9899:199x",           "Deprecated");
690         put_help("-pedantic",                "Ignored (gcc compatibility)");
691         put_help("-ansi",                    "-std=c90 (for C) or -std=c++98 (for C++)");
692         put_help("--strict",                 "Enable strict conformance checking");
693 }
694
695 static void print_help_warnings(void)
696 {
697         put_help("-f[no-]diagnostics-show-option", "Show the switch, which controls a warning, after each warning");
698         put_help("-w",                             "Disable all warnings");
699         put_help("-Wno-trigraphs",                 "Warn if input contains trigraphs");
700         put_help("-Wundef",                        "Warn if an undefined macro is used in an #if");
701         put_help("-Wmissing-include-dirs",         "Warn about missing user-specified include directories");
702         put_help("-Wendif-labels",                 "Warn about stray text after #elif and #endif");
703         put_help("-Winit-self",                    "Ignored (gcc compatibility)");
704         put_help("-Wformat-y2k",                   "Ignored (gcc compatibility)");
705         put_help("-Wformat-security",              "Ignored (gcc compatibility)");
706         put_help("-Wold-style-declaration",        "Ignored (gcc compatibility)");
707         put_help("-Wtype-limits",                  "Ignored (gcc compatibility)");
708         print_warning_opt_help();
709 }
710
711 static void print_help_optimization(void)
712 {
713         put_help("-O LEVEL",                 "Select optimization level (0-4)");
714         firm_option_help(put_help);
715         put_help("-fexpensive-optimizations","Ignored (gcc compatibility)");
716 }
717
718 static void print_help_codegeneration(void)
719 {
720         put_help("-g",                       "Generate debug information");
721         put_help("-pg",                      "Instrument code for gnu gprof");
722         put_help("-fomit-frame-pointer",     "Produce code without frame pointer where possible");
723         put_help("-ffreestanding",           "Compile in freestanding mode (see ISO C standard)");
724         put_help("-fhosted",                 "Compile in hosted (not freestanding) mode");
725         put_help("-fprofile-generate",       "Generate instrumented code to collect profile information");
726         put_help("-fprofile-use",            "Use profile information generated by instrumented binaries");
727         put_help("-ffp-precise",             "Precise floating point model");
728         put_help("-ffp-fast",                "Imprecise floating point model");
729         put_help("-ffp-strict",              "Strict floating point model");
730         put_help("-pthread",                 "Use pthread threading library");
731         put_help("-mtarget=TARGET",          "Specify target architecture as CPU-manufacturer-OS triple");
732         put_help("-mtriple=TARGET",          "Alias for -mtarget (clang compatibility)");
733         put_help("-march=ARCH",              "");
734         put_help("-mtune=ARCH",              "");
735         put_help("-mcpu=CPU",                "");
736         put_help("-mfpmath=",                "");
737         put_help("-mpreferred-stack-boundary=", "");
738         put_help("-mrtd",                    "");
739         put_help("-mregparm=",               "Not supported yet");
740         put_help("-msoft-float",             "Not supported yet");
741         put_help("-m32",                     "Generate 32bit code");
742         put_help("-m64",                     "Generate 64bit code");
743         put_help("-fverbose-asm",            "Ignored (gcc compatibility)");
744         put_help("-fjump-tables",            "Ignored (gcc compatibility)");
745         put_help("-fcommon",                 "Ignored (gcc compatibility)");
746         put_help("-foptimize-sibling-calls", "Ignored (gcc compatibility)");
747         put_help("-falign-loops",            "Ignored (gcc compatibility)");
748         put_help("-falign-jumps",            "Ignored (gcc compatibility)");
749         put_help("-falign-functions",        "Ignored (gcc compatibility)");
750         put_help("-fPIC",                    "Ignored (gcc compatibility)");
751         put_help("-ffast-math",              "Same as -ffp-fast (gcc compatibility)");
752         puts("");
753         puts("\tMost of these options can be used with a no- prefix to disable them");
754         puts("\te.g. -fno-omit-frame-pointer");
755 }
756
757 static void print_help_linker(void)
758 {
759         put_help("-l LIBRARY",               "");
760         put_help("-L PATH",                  "");
761         put_help("-s",                       "Do not produce symbol table and relocation information");
762         put_help("-shared",                  "Produce a shared library");
763         put_help("-static",                  "Produce statically linked binary");
764         put_help("-Wl,OPTION",               "Pass option directly to linker");
765 }
766
767 static void print_help_debug(void)
768 {
769         put_help("--print-ast",              "Preprocess, parse and print AST");
770         put_help("--print-implicit-cast",    "");
771         put_help("--print-parenthesis",      "");
772         put_help("--benchmark",              "Preprocess and parse, produces no output");
773         put_help("--time",                   "Measure time of compiler passes");
774         put_help("--dump-function func",     "Preprocess, parse and output vcg graph of func");
775         put_help("--export-ir",              "Preprocess, parse and output compiler intermediate representation");
776 }
777
778 static void print_help_language_tools(void)
779 {
780         put_help("--print-fluffy",           "Preprocess, parse and generate declarations for the fluffy language");
781         put_help("--print-jna",              "Preprocess, parse and generate declarations for JNA");
782         put_help("--jna-limit filename",     "");
783         put_help("--jna-libname name",       "");
784 }
785
786 static void print_help_firm(void)
787 {
788         put_help("-bOPTION",                 "Directly pass option to libFirm backend");
789         int res = be_parse_arg("help");
790         (void) res;
791         assert(res);
792 }
793
794 typedef enum {
795         HELP_NONE          = 0,
796         HELP_BASIC         = 1 << 0,
797         HELP_PREPROCESSOR  = 1 << 1,
798         HELP_PARSER        = 1 << 2,
799         HELP_WARNINGS      = 1 << 3,
800         HELP_OPTIMIZATION  = 1 << 4,
801         HELP_CODEGEN       = 1 << 5,
802         HELP_LINKER        = 1 << 6,
803         HELP_LANGUAGETOOLS = 1 << 7,
804         HELP_DEBUG         = 1 << 8,
805         HELP_FIRM          = 1 << 9,
806
807         HELP_ALL           = -1
808 } help_sections_t;
809
810 static void print_help(const char *argv0, help_sections_t sections)
811 {
812         if (sections & HELP_BASIC)         print_help_basic(argv0);
813         if (sections & HELP_PREPROCESSOR)  print_help_preprocessor();
814         if (sections & HELP_PARSER)        print_help_parser();
815         if (sections & HELP_WARNINGS)      print_help_warnings();
816         if (sections & HELP_OPTIMIZATION)  print_help_optimization();
817         if (sections & HELP_CODEGEN)       print_help_codegeneration();
818         if (sections & HELP_LINKER)        print_help_linker();
819         if (sections & HELP_LANGUAGETOOLS) print_help_language_tools();
820         if (sections & HELP_DEBUG)         print_help_debug();
821         if (sections & HELP_FIRM)          print_help_firm();
822 }
823
824 static void set_be_option(const char *arg)
825 {
826         int res = be_parse_arg(arg);
827         (void) res;
828         assert(res);
829 }
830
831 static compilation_unit_type_t get_unit_type_from_string(const char *string)
832 {
833         if (streq(string, "c") || streq(string, "c-header"))
834                 return COMPILATION_UNIT_C;
835         if (streq(string, "c++") || streq(string, "c++-header"))
836                 return COMPILATION_UNIT_CXX;
837         if (streq(string, "assembler"))
838                 return COMPILATION_UNIT_PREPROCESSED_ASSEMBLER;
839         if (streq(string, "assembler-with-cpp"))
840                 return COMPILATION_UNIT_ASSEMBLER;
841         if (streq(string, "none"))
842                 return COMPILATION_UNIT_AUTODETECT;
843
844         return COMPILATION_UNIT_UNKNOWN;
845 }
846
847 static bool init_os_support(void)
848 {
849         wchar_atomic_kind         = ATOMIC_TYPE_INT;
850         enable_main_collect2_hack = false;
851         define_intmax_types       = false;
852
853         if (firm_is_unixish_os(target_machine)) {
854                 set_create_ld_ident(create_name_linux_elf);
855         } else if (firm_is_darwin_os(target_machine)) {
856                 set_create_ld_ident(create_name_macho);
857                 define_intmax_types = true;
858         } else if (firm_is_windows_os(target_machine)) {
859                 wchar_atomic_kind         = ATOMIC_TYPE_USHORT;
860                 enable_main_collect2_hack = true;
861                 set_create_ld_ident(create_name_win32);
862         } else {
863                 return false;
864         }
865
866         return true;
867 }
868
869 static bool parse_target_triple(const char *arg)
870 {
871         machine_triple_t *triple = firm_parse_machine_triple(arg);
872         if (triple == NULL) {
873                 fprintf(stderr, "Target-triple is not in the form 'cpu_type-manufacturer-operating_system'\n");
874                 return false;
875         }
876         target_machine = triple;
877         return true;
878 }
879
880 static unsigned decide_modulo_shift(unsigned type_size)
881 {
882         if (architecture_modulo_shift == 0)
883                 return 0;
884         if (type_size < architecture_modulo_shift)
885                 return architecture_modulo_shift;
886         return type_size;
887 }
888
889 static bool is_ia32_cpu(const char *architecture)
890 {
891         return streq(architecture, "i386")
892             || streq(architecture, "i486")
893             || streq(architecture, "i586")
894             || streq(architecture, "i686")
895             || streq(architecture, "i786");
896 }
897
898 static const char *setup_isa_from_tripel(const machine_triple_t *machine)
899 {
900         const char *cpu = machine->cpu_type;
901
902         if (is_ia32_cpu(cpu)) {
903                 return "ia32";
904         } else if (streq(cpu, "x86_64")) {
905                 return "amd64";
906         } else if (streq(cpu, "sparc")) {
907                 return "sparc";
908         } else if (streq(cpu, "arm")) {
909                 return "arm";
910         } else {
911                 fprintf(stderr, "Unknown cpu '%s' in target-triple\n", cpu);
912                 return NULL;
913         }
914 }
915
916 static const char *setup_target_machine(void)
917 {
918         if (!setup_firm_for_machine(target_machine))
919                 exit(1);
920
921         const char *isa = setup_isa_from_tripel(target_machine);
922
923         if (isa == NULL)
924                 exit(1);
925
926         init_os_support();
927
928         return isa;
929 }
930
931 /**
932  * initialize cparser type properties based on a firm type
933  */
934 static void set_typeprops_type(atomic_type_properties_t* props, ir_type *type)
935 {
936         props->size             = get_type_size_bytes(type);
937         props->alignment        = get_type_alignment_bytes(type);
938         props->struct_alignment = props->alignment;
939 }
940
941 /**
942  * Copy atomic type properties except the integer conversion rank
943  */
944 static void copy_typeprops(atomic_type_properties_t *dest,
945                            const atomic_type_properties_t *src)
946 {
947         dest->size             = src->size;
948         dest->alignment        = src->alignment;
949         dest->struct_alignment = src->struct_alignment;
950         dest->flags            = src->flags;
951 }
952
953 static void init_types_and_adjust(void)
954 {
955         const backend_params *be_params = be_get_backend_param();
956         unsigned machine_size = be_params->machine_size;
957         init_types(machine_size);
958
959         atomic_type_properties_t *props = atomic_type_properties;
960
961         /* adjust types as requested by target architecture */
962         ir_type *type_long_double = be_params->type_long_double;
963         if (type_long_double != NULL) {
964                 set_typeprops_type(&props[ATOMIC_TYPE_LONG_DOUBLE], type_long_double);
965                 atomic_modes[ATOMIC_TYPE_LONG_DOUBLE] = get_type_mode(type_long_double);
966         }
967
968         ir_type *type_long_long = be_params->type_long_long;
969         if (type_long_long != NULL)
970                 set_typeprops_type(&props[ATOMIC_TYPE_LONGLONG], type_long_long);
971
972         ir_type *type_unsigned_long_long = be_params->type_unsigned_long_long;
973         if (type_unsigned_long_long != NULL)
974                 set_typeprops_type(&props[ATOMIC_TYPE_ULONGLONG], type_unsigned_long_long);
975
976         /* operating system ABI specifics */
977         if (firm_is_darwin_os(target_machine)) {
978                 if (machine_size == 32) {
979                         props[ATOMIC_TYPE_LONGLONG].struct_alignment    =  4;
980                         props[ATOMIC_TYPE_ULONGLONG].struct_alignment   =  4;
981                         props[ATOMIC_TYPE_DOUBLE].struct_alignment      =  4;
982                         props[ATOMIC_TYPE_LONG_DOUBLE].size             = 16;
983                         props[ATOMIC_TYPE_LONG_DOUBLE].alignment        = 16;
984                         props[ATOMIC_TYPE_LONG_DOUBLE].struct_alignment = 16;
985                 }
986         } else if (firm_is_windows_os(target_machine)) {
987                 if (machine_size == 64) {
988                         /* to ease porting of old c-code microsoft decided to use 32bits
989                          * even for long */
990                         props[ATOMIC_TYPE_LONG]  = props[ATOMIC_TYPE_INT];
991                         props[ATOMIC_TYPE_ULONG] = props[ATOMIC_TYPE_UINT];
992                 }
993
994                 /* on windows long double is not supported */
995                 props[ATOMIC_TYPE_LONG_DOUBLE] = props[ATOMIC_TYPE_DOUBLE];
996         } else if (firm_is_unixish_os(target_machine)) {
997                 if (is_ia32_cpu(target_machine->cpu_type)) {
998                         /* System V has a broken alignment for double so we have to add
999                          * a hack here */
1000                         props[ATOMIC_TYPE_DOUBLE].struct_alignment    = 4;
1001                         props[ATOMIC_TYPE_LONGLONG].struct_alignment  = 4;
1002                         props[ATOMIC_TYPE_ULONGLONG].struct_alignment = 4;
1003                 }
1004         }
1005
1006         /* stuff decided after processing operating system specifics and
1007          * commandline flags */
1008         if (char_is_signed) {
1009                 props[ATOMIC_TYPE_CHAR].flags |= ATOMIC_TYPE_FLAG_SIGNED;
1010         } else {
1011                 props[ATOMIC_TYPE_CHAR].flags &= ~ATOMIC_TYPE_FLAG_SIGNED;
1012         }
1013         /* copy over wchar_t properties (including rank) */
1014         props[ATOMIC_TYPE_WCHAR_T] = props[wchar_atomic_kind];
1015
1016         /* initialize defaults for unsupported types */
1017         if (type_long_long == NULL) {
1018                 copy_typeprops(&props[ATOMIC_TYPE_LONGLONG], &props[ATOMIC_TYPE_LONG]);
1019         }
1020         if (type_unsigned_long_long == NULL) {
1021                 copy_typeprops(&props[ATOMIC_TYPE_ULONGLONG],
1022                                &props[ATOMIC_TYPE_ULONG]);
1023         }
1024         if (type_long_double == NULL) {
1025                 copy_typeprops(&props[ATOMIC_TYPE_LONG_DOUBLE],
1026                                &props[ATOMIC_TYPE_DOUBLE]);
1027         }
1028
1029         /* initialize firm pointer modes */
1030         char               name[64];
1031         unsigned           bit_size     = machine_size;
1032         unsigned           modulo_shift = decide_modulo_shift(bit_size);
1033
1034         snprintf(name, sizeof(name), "p%u", machine_size);
1035         ir_mode *ptr_mode = new_reference_mode(name, irma_twos_complement, bit_size, modulo_shift);
1036
1037         if (machine_size == 16) {
1038                 set_reference_mode_signed_eq(ptr_mode, mode_Hs);
1039                 set_reference_mode_unsigned_eq(ptr_mode, mode_Hu);
1040         } else if (machine_size == 32) {
1041                 set_reference_mode_signed_eq(ptr_mode, mode_Is);
1042                 set_reference_mode_unsigned_eq(ptr_mode, mode_Iu);
1043         } else if (machine_size == 64) {
1044                 set_reference_mode_signed_eq(ptr_mode, mode_Ls);
1045                 set_reference_mode_unsigned_eq(ptr_mode, mode_Lu);
1046         } else {
1047                 panic("strange machine_size when determining pointer modes");
1048         }
1049
1050         /* Hmm, pointers should be machine size */
1051         set_modeP_data(ptr_mode);
1052         set_modeP_code(ptr_mode);
1053
1054         byte_order_big_endian = be_params->byte_order_big_endian;
1055         if (be_params->modulo_shift_efficient) {
1056                 architecture_modulo_shift = machine_size;
1057         } else {
1058                 architecture_modulo_shift = 0;
1059         }
1060 }
1061
1062 static void setup_cmode(const compilation_unit_t *unit)
1063 {
1064         compilation_unit_type_t type     = unit->type;
1065         lang_standard_t         standard = unit->standard;
1066         if (type == COMPILATION_UNIT_PREPROCESSED_C || type == COMPILATION_UNIT_C) {
1067                 switch (standard) {
1068                 case STANDARD_C89:     c_mode = _C89;                break;
1069                                                            /* TODO determine difference between these two */
1070                 case STANDARD_C89AMD1: c_mode = _C89;                break;
1071                 case STANDARD_C99:     c_mode = _C89 | _C99;         break;
1072                 case STANDARD_GNU89:   c_mode = _C89 |        _GNUC; break;
1073
1074                 case STANDARD_ANSI:
1075                 case STANDARD_CXX98:
1076                 case STANDARD_GNUXX98:
1077                 case STANDARD_DEFAULT:
1078                         fprintf(stderr, "warning: command line option \"-std=%s\" is not valid for C\n", str_lang_standard(standard));
1079                         /* FALLTHROUGH */
1080                 case STANDARD_GNU99:   c_mode = _C89 | _C99 | _GNUC; break;
1081                 }
1082         } else if (type == COMPILATION_UNIT_PREPROCESSED_CXX
1083                    || type == COMPILATION_UNIT_CXX) {
1084                 switch (standard) {
1085                 case STANDARD_CXX98: c_mode = _CXX; break;
1086
1087                 case STANDARD_ANSI:
1088                 case STANDARD_C89:
1089                 case STANDARD_C89AMD1:
1090                 case STANDARD_C99:
1091                 case STANDARD_GNU89:
1092                 case STANDARD_GNU99:
1093                 case STANDARD_DEFAULT:
1094                         fprintf(stderr, "warning: command line option \"-std=%s\" is not valid for C++\n", str_lang_standard(standard));
1095                         /* FALLTHROUGH */
1096                 case STANDARD_GNUXX98: c_mode = _CXX | _GNUC; break;
1097                 }
1098         }
1099
1100         c_mode |= features_on;
1101         c_mode &= ~features_off;
1102 }
1103
1104 static void determine_unit_standard(compilation_unit_t *unit,
1105                                     lang_standard_t standard)
1106 {
1107         unit->standard = standard;
1108         switch (standard) {
1109         case STANDARD_ANSI:
1110                 switch (unit->type) {
1111                 case COMPILATION_UNIT_C:
1112                 case COMPILATION_UNIT_PREPROCESSED_C:
1113                         unit->standard = STANDARD_C89;
1114                         break;
1115                 case COMPILATION_UNIT_CXX:
1116                 case COMPILATION_UNIT_PREPROCESSED_CXX:
1117                         unit->standard = STANDARD_CXX98;
1118                         break;
1119                 default:
1120                         break;
1121                 }
1122                 break;
1123
1124         case STANDARD_DEFAULT:
1125                 switch (unit->type) {
1126                 case COMPILATION_UNIT_C:
1127                 case COMPILATION_UNIT_PREPROCESSED_C:
1128                         unit->standard = STANDARD_GNU99;
1129                         break;
1130                 case COMPILATION_UNIT_CXX:
1131                 case COMPILATION_UNIT_PREPROCESSED_CXX:
1132                         unit->standard = STANDARD_GNUXX98;
1133                         break;
1134                 default:
1135                         break;
1136                 }
1137                 break;
1138
1139         default:
1140                 break;
1141         }
1142 }
1143
1144 static bool output_preprocessor_tokens(compilation_unit_t *unit, FILE *out)
1145 {
1146         /* just here for gcc compatibility */
1147         fprintf(out, "# 1 \"%s\"\n", unit->name);
1148         fprintf(out, "# 1 \"<built-in>\"\n");
1149         fprintf(out, "# 1 \"<command-line>\"\n");
1150
1151         set_preprocessor_output(out);
1152         switch_pp_input(unit->input, unit->name);
1153
1154         for (;;) {
1155                 next_preprocessing_token();
1156                 if (pp_token.kind == T_EOF)
1157                         break;
1158                 emit_pp_token();
1159         }
1160
1161         fputc('\n', out);
1162         check_unclosed_conditionals();
1163         close_pp_input();
1164         print_error_summary();
1165         set_preprocessor_output(NULL);
1166
1167         if (unit->type == COMPILATION_UNIT_C) {
1168                 unit->type = COMPILATION_UNIT_PREPROCESSED_C;
1169         } else if (unit->type == COMPILATION_UNIT_CXX) {
1170                 unit->type = COMPILATION_UNIT_PREPROCESSED_CXX;
1171         }
1172         bool res = close_input(unit);
1173         return res && error_count == 0;
1174 }
1175
1176 static bool open_input(compilation_unit_t *unit)
1177 {
1178         /* input already available as FILE? */
1179         if (unit->input != NULL)
1180                 return true;
1181
1182         const char *const inputname = unit->name;
1183         unit->input_is_pipe = false;
1184         if (streq(inputname, "-")) {
1185                 unit->input   = stdin;
1186         } else {
1187                 unit->input = fopen(inputname, "r");
1188                 if (unit->input == NULL) {
1189                         fprintf(stderr, "Could not open '%s': %s\n", inputname,
1190                                         strerror(errno));
1191                         return false;
1192                 }
1193         }
1194         return true;
1195 }
1196
1197 static int compilation_loop(compile_mode_t mode, compilation_unit_t *units,
1198                                                         lang_standard_t standard, FILE *out)
1199 {
1200         int  result                   = EXIT_SUCCESS;
1201         bool already_constructed_firm = false;
1202         for (compilation_unit_t *unit = units; unit != NULL; unit = unit->next) {
1203                 const char *const inputname = unit->name;
1204
1205                 determine_unit_standard(unit, standard);
1206                 setup_cmode(unit);
1207
1208 again:
1209                 switch (unit->type) {
1210                 case COMPILATION_UNIT_IR: {
1211                         bool res = open_input(unit);
1212                         if (!res) {
1213                                 result = EXIT_FAILURE;
1214                                 continue;
1215                         }
1216                         res = !ir_import_file(unit->input, unit->name);
1217                         if (!res) {
1218                                 fprintf(stderr, "Import of firm graph from '%s' failed\n",
1219                                         inputname);
1220                                 result = EXIT_FAILURE;
1221                                 continue;
1222                         }
1223                         unit->type = COMPILATION_UNIT_INTERMEDIATE_REPRESENTATION;
1224                         goto again;
1225                 }
1226                 case COMPILATION_UNIT_ASSEMBLER:
1227                         panic("TODO: preprocess for assembler");
1228                 case COMPILATION_UNIT_C:
1229                 case COMPILATION_UNIT_CXX:
1230                         if (external_preprocessor != NULL) {
1231                                 bool res = run_external_preprocessor(unit);
1232                                 if (!res) {
1233                                         result = EXIT_FAILURE;
1234                                         continue;
1235                                 }
1236                                 goto again;
1237                         }
1238                         /* FALLTHROUGH */
1239
1240                 case COMPILATION_UNIT_PREPROCESSED_C:
1241                 case COMPILATION_UNIT_PREPROCESSED_CXX: {
1242                         bool res = open_input(unit);
1243                         if (!res) {
1244                                 result = EXIT_FAILURE;
1245                                 continue;
1246                         }
1247                         init_tokens();
1248
1249                         if (mode == PreprocessOnly) {
1250                                 bool res = output_preprocessor_tokens(unit, out);
1251                                 if (!res) {
1252                                         result = EXIT_FAILURE;
1253                                         continue;
1254                                 }
1255                                 continue;
1256                         }
1257
1258                         /* do the actual parsing */
1259                         do_parsing(unit);
1260                         goto again;
1261                 }
1262                 case COMPILATION_UNIT_AST:
1263                         /* prints the AST even if errors occurred */
1264                         if (mode == PrintAst) {
1265                                 print_to_file(out);
1266                                 print_ast(unit->ast);
1267                         }
1268                         if (unit->parse_errors) {
1269                                 result = EXIT_FAILURE;
1270                                 break;
1271                         }
1272
1273                         if (mode == BenchmarkParser) {
1274                                 break;
1275                         } else if (mode == PrintFluffy) {
1276                                 write_fluffy_decls(out, unit->ast);
1277                                 break;
1278                         } else if (mode == PrintJna) {
1279                                 write_jna_decls(out, unit->ast);
1280                                 break;
1281                         }
1282
1283                         /* build the firm graph */
1284                         ir_timer_t *t_construct = ir_timer_new();
1285                         timer_register(t_construct, "Frontend: Graph construction");
1286                         timer_push(t_construct);
1287                         if (already_constructed_firm) {
1288                                 panic("compiling multiple files/translation units not possible");
1289                         }
1290                         init_implicit_optimizations();
1291                         translation_unit_to_firm(unit->ast);
1292                         already_constructed_firm = true;
1293                         timer_pop(t_construct);
1294                         unit->type = COMPILATION_UNIT_INTERMEDIATE_REPRESENTATION;
1295                         goto again;
1296
1297                 case COMPILATION_UNIT_INTERMEDIATE_REPRESENTATION:
1298                         if (mode == CompileDump) {
1299                                 /* find irg */
1300                                 ident    *id     = new_id_from_str(dumpfunction);
1301                                 ir_graph *irg    = NULL;
1302                                 int       n_irgs = get_irp_n_irgs();
1303                                 for (int i = 0; i < n_irgs; ++i) {
1304                                         ir_graph *tirg   = get_irp_irg(i);
1305                                         ident    *irg_id = get_entity_ident(get_irg_entity(tirg));
1306                                         if (irg_id == id) {
1307                                                 irg = tirg;
1308                                                 break;
1309                                         }
1310                                 }
1311
1312                                 if (irg == NULL) {
1313                                         fprintf(stderr, "No graph for function '%s' found\n",
1314                                                 dumpfunction);
1315                                         return EXIT_FAILURE;
1316                                 }
1317
1318                                 dump_ir_graph_file(out, irg);
1319                                 fclose(out);
1320                                 return EXIT_SUCCESS;
1321                         }
1322
1323                         if (mode == CompileExportIR) {
1324                                 ir_export_file(out);
1325                                 if (ferror(out) != 0) {
1326                                         fprintf(stderr, "Error while writing to output\n");
1327                                         return EXIT_FAILURE;
1328                                 }
1329                                 return EXIT_SUCCESS;
1330                         }
1331
1332                         FILE *asm_out;
1333                         if (mode == Compile) {
1334                                 asm_out = out;
1335                         } else {
1336                                 asm_out = make_temp_file("ccs", &unit->name);
1337                         }
1338                         generate_code(asm_out, inputname);
1339                         if (asm_out != out) {
1340                                 fclose(asm_out);
1341                         }
1342                         unit->type = COMPILATION_UNIT_PREPROCESSED_ASSEMBLER;
1343                         goto again;
1344                 case COMPILATION_UNIT_PREPROCESSED_ASSEMBLER:
1345                         if (mode != CompileAssemble && mode != CompileAssembleLink)
1346                                 break;
1347
1348                         /* assemble */
1349                         const char *input = unit->name;
1350                         if (mode == CompileAssemble) {
1351                                 fclose(out);
1352                                 unit->name = outname;
1353                         } else {
1354                                 FILE *tempf = make_temp_file("cco", &unit->name);
1355                                 /* hackish... */
1356                                 fclose(tempf);
1357                         }
1358
1359                         assemble(unit->name, input);
1360
1361                         unit->type = COMPILATION_UNIT_OBJECT;
1362                         goto again;
1363                 case COMPILATION_UNIT_UNKNOWN:
1364                 case COMPILATION_UNIT_AUTODETECT:
1365                 case COMPILATION_UNIT_OBJECT:
1366                         break;
1367                 }
1368         }
1369         return result;
1370 }
1371
1372 static int link_program(compilation_unit_t *units)
1373 {
1374         obstack_1grow(&ldflags_obst, '\0');
1375         const char *flags = obstack_finish(&ldflags_obst);
1376
1377         /* construct commandline */
1378         const char *linker = getenv("CPARSER_LINK");
1379         if (linker != NULL) {
1380                 obstack_printf(&file_obst, "%s ", linker);
1381         } else {
1382                 if (target_triple != NULL)
1383                         obstack_printf(&file_obst, "%s-", target_triple);
1384                 obstack_printf(&file_obst, "%s ", LINKER);
1385         }
1386
1387         for (compilation_unit_t *unit = units; unit != NULL; unit = unit->next) {
1388                 if (unit->type != COMPILATION_UNIT_OBJECT)
1389                         continue;
1390
1391                 add_flag(&file_obst, "%s", unit->name);
1392         }
1393
1394         add_flag(&file_obst, "-o");
1395         add_flag(&file_obst, outname);
1396         obstack_printf(&file_obst, "%s", flags);
1397         obstack_1grow(&file_obst, '\0');
1398
1399         char *commandline = obstack_finish(&file_obst);
1400
1401         if (verbose) {
1402                 puts(commandline);
1403         }
1404         int err = system(commandline);
1405         if (err != EXIT_SUCCESS) {
1406                 fprintf(stderr, "linker reported an error\n");
1407                 return EXIT_FAILURE;
1408         }
1409         return EXIT_SUCCESS;
1410 }
1411
1412 int main(int argc, char **argv)
1413 {
1414         const char         *print_file_name_file = NULL;
1415         compile_mode_t      mode                 = CompileAssembleLink;
1416         int                 opt_level            = 1;
1417         char                cpu_arch[16]         = "ia32";
1418         compilation_unit_t *units                = NULL;
1419         compilation_unit_t *last_unit            = NULL;
1420         bool                construct_dep_target = false;
1421         bool                do_timing            = false;
1422         bool                profile_generate     = false;
1423         bool                profile_use          = false;
1424
1425         /* hack for now... */
1426         if (strstr(argv[0], "pptest") != NULL) {
1427                 extern int pptest_main(int argc, char **argv);
1428                 return pptest_main(argc, argv);
1429         }
1430
1431         temp_files = NEW_ARR_F(char*, 0);
1432         atexit(free_temp_files);
1433
1434         obstack_init(&cppflags_obst);
1435         obstack_init(&ldflags_obst);
1436         obstack_init(&asflags_obst);
1437         obstack_init(&file_obst);
1438
1439 #define GET_ARG_AFTER(def, args)                                             \
1440         do {                                                                     \
1441         def = &arg[sizeof(args)-1];                                              \
1442         if (def[0] == '\0') {                                                    \
1443                 ++i;                                                                 \
1444                 if (i >= argc) {                                                     \
1445                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
1446                         argument_errors = true;                                          \
1447                         break;                                                           \
1448                 }                                                                    \
1449                 def = argv[i];                                                       \
1450                 if (def[0] == '-' && def[1] != '\0') {                               \
1451                         fprintf(stderr, "error: expected argument after '" args "'\n");  \
1452                         argument_errors = true;                                          \
1453                         continue;                                                        \
1454                 }                                                                    \
1455         }                                                                        \
1456         } while (0)
1457
1458 #define SINGLE_OPTION(ch) (option[0] == (ch) && option[1] == '\0')
1459
1460         /* initialize this early because it has to parse options */
1461         gen_firm_init();
1462
1463         /* early options parsing (find out optimization level and OS) */
1464         for (int i = 1; i < argc; ++i) {
1465                 const char *arg = argv[i];
1466                 if (arg[0] != '-')
1467                         continue;
1468
1469                 const char *option = &arg[1];
1470                 if (option[0] == 'O') {
1471                         sscanf(&option[1], "%d", &opt_level);
1472                 }
1473         }
1474
1475         if (target_machine == NULL) {
1476                 target_machine = firm_get_host_machine();
1477         }
1478         choose_optimization_pack(opt_level);
1479         setup_target_machine();
1480
1481         /* parse rest of options */
1482         lang_standard_t         standard        = STANDARD_DEFAULT;
1483         compilation_unit_type_t forced_unittype = COMPILATION_UNIT_AUTODETECT;
1484         help_sections_t         help            = HELP_NONE;
1485         bool                    argument_errors = false;
1486         for (int i = 1; i < argc; ++i) {
1487                 const char *arg = argv[i];
1488                 if (arg[0] == '-' && arg[1] != '\0') {
1489                         /* an option */
1490                         const char *option = &arg[1];
1491                         if (option[0] == 'o') {
1492                                 GET_ARG_AFTER(outname, "-o");
1493                         } else if (option[0] == 'g') {
1494                                 /* TODO: parse -gX with 0<=x<=3... */
1495                                 set_be_option("debug=frameinfo");
1496                                 set_be_option("ia32-nooptcc=yes");
1497                         } else if (SINGLE_OPTION('c')) {
1498                                 mode = CompileAssemble;
1499                         } else if (SINGLE_OPTION('E')) {
1500                                 mode = PreprocessOnly;
1501                         } else if (SINGLE_OPTION('s')) {
1502                                 add_flag(&ldflags_obst, "-s");
1503                         } else if (SINGLE_OPTION('S')) {
1504                                 mode = Compile;
1505                         } else if (option[0] == 'O') {
1506                                 continue;
1507                         } else if (option[0] == 'I') {
1508                                 const char *opt;
1509                                 GET_ARG_AFTER(opt, "-I");
1510                                 add_flag(&cppflags_obst, "-I%s", opt);
1511                         } else if (option[0] == 'D') {
1512                                 const char *opt;
1513                                 GET_ARG_AFTER(opt, "-D");
1514                                 add_flag(&cppflags_obst, "-D%s", opt);
1515                         } else if (option[0] == 'U') {
1516                                 const char *opt;
1517                                 GET_ARG_AFTER(opt, "-U");
1518                                 add_flag(&cppflags_obst, "-U%s", opt);
1519                         } else if (option[0] == 'l') {
1520                                 const char *opt;
1521                                 GET_ARG_AFTER(opt, "-l");
1522                                 add_flag(&ldflags_obst, "-l%s", opt);
1523                         } else if (option[0] == 'L') {
1524                                 const char *opt;
1525                                 GET_ARG_AFTER(opt, "-L");
1526                                 add_flag(&ldflags_obst, "-L%s", opt);
1527                         } else if (SINGLE_OPTION('v')) {
1528                                 verbose = 1;
1529                         } else if (SINGLE_OPTION('w')) {
1530                                 add_flag(&cppflags_obst, "-w");
1531                                 disable_all_warnings();
1532                         } else if (option[0] == 'x') {
1533                                 const char *opt;
1534                                 GET_ARG_AFTER(opt, "-x");
1535                                 forced_unittype = get_unit_type_from_string(opt);
1536                                 if (forced_unittype == COMPILATION_UNIT_UNKNOWN) {
1537                                         fprintf(stderr, "Unknown language '%s'\n", opt);
1538                                         argument_errors = true;
1539                                 }
1540                         } else if (streq(option, "M")) {
1541                                 mode = PreprocessOnly;
1542                                 add_flag(&cppflags_obst, "-M");
1543                         } else if (streq(option, "MMD") ||
1544                                    streq(option, "MD")) {
1545                             construct_dep_target = true;
1546                                 add_flag(&cppflags_obst, "-%s", option);
1547                         } else if (streq(option, "MM")  ||
1548                                    streq(option, "MP")) {
1549                                 add_flag(&cppflags_obst, "-%s", option);
1550                         } else if (streq(option, "MT") ||
1551                                    streq(option, "MQ") ||
1552                                    streq(option, "MF")) {
1553                                 const char *opt;
1554                                 GET_ARG_AFTER(opt, "-MT");
1555                                 add_flag(&cppflags_obst, "-%s", option);
1556                                 add_flag(&cppflags_obst, "%s", opt);
1557                         } else if (streq(option, "include")) {
1558                                 const char *opt;
1559                                 GET_ARG_AFTER(opt, "-include");
1560                                 add_flag(&cppflags_obst, "-include");
1561                                 add_flag(&cppflags_obst, "%s", opt);
1562                         } else if (streq(option, "isystem")) {
1563                                 const char *opt;
1564                                 GET_ARG_AFTER(opt, "-isystem");
1565                                 add_flag(&cppflags_obst, "-isystem");
1566                                 add_flag(&cppflags_obst, "%s", opt);
1567                         } else if (streq(option, "pthread")) {
1568                                 /* set flags for the preprocessor */
1569                                 add_flag(&cppflags_obst, "-D_REENTRANT");
1570                                 /* set flags for the linker */
1571                                 add_flag(&ldflags_obst, "-lpthread");
1572                         } else if (streq(option, "nostdinc")
1573                                         || streq(option, "trigraphs")) {
1574                                 /* pass these through to the preprocessor */
1575                                 add_flag(&cppflags_obst, "%s", arg);
1576                         } else if (streq(option, "pipe")) {
1577                                 /* here for gcc compatibility */
1578                         } else if (streq(option, "static")) {
1579                                 add_flag(&ldflags_obst, "-static");
1580                         } else if (streq(option, "shared")) {
1581                                 add_flag(&ldflags_obst, "-shared");
1582                         } else if (option[0] == 'f') {
1583                                 char const *orig_opt;
1584                                 GET_ARG_AFTER(orig_opt, "-f");
1585
1586                                 if (strstart(orig_opt, "input-charset=")) {
1587                                         char const* const encoding = strchr(orig_opt, '=') + 1;
1588                                         input_encoding = encoding;
1589                                 } else if (strstart(orig_opt, "align-loops=") ||
1590                                            strstart(orig_opt, "align-jumps=") ||
1591                                            strstart(orig_opt, "align-functions=")) {
1592                                         fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
1593                                 } else if (strstart(orig_opt, "visibility=")) {
1594                                         const char *val = strchr(orig_opt, '=')+1;
1595                                         elf_visibility_tag_t visibility
1596                                                 = get_elf_visibility_from_string(val);
1597                                         if (visibility == ELF_VISIBILITY_ERROR) {
1598                                                 fprintf(stderr, "invalid visibility '%s' specified\n",
1599                                                         val);
1600                                                 argument_errors = true;
1601                                         } else {
1602                                                 set_default_visibility(visibility);
1603                                         }
1604                                 } else if (strstart(orig_opt, "message-length=")) {
1605                                         /* ignore: would only affect error message format */
1606                                 } else if (streq(orig_opt, "fast-math") ||
1607                                            streq(orig_opt, "fp-fast")) {
1608                                         firm_fp_model = fp_model_fast;
1609                                 } else if (streq(orig_opt, "fp-precise")) {
1610                                         firm_fp_model = fp_model_precise;
1611                                 } else if (streq(orig_opt, "fp-strict")) {
1612                                         firm_fp_model = fp_model_strict;
1613                                 } else if (streq(orig_opt, "help")) {
1614                                         fprintf(stderr, "warning: -fhelp is deprecated\n");
1615                                         help |= HELP_OPTIMIZATION;
1616                                 } else {
1617                                         /* -f options which have an -fno- variant */
1618                                         char const *opt         = orig_opt;
1619                                         bool        truth_value = true;
1620                                         if (opt[0] == 'n' && opt[1] == 'o' && opt[2] == '-') {
1621                                                 truth_value = false;
1622                                                 opt += 3;
1623                                         }
1624
1625                                         if (streq(opt, "diagnostics-show-option")) {
1626                                                 diagnostics_show_option = truth_value;
1627                                         } else if (streq(opt, "dollars-in-identifiers")) {
1628                                                 allow_dollar_in_symbol = truth_value;
1629                                         } else if (streq(opt, "omit-frame-pointer")) {
1630                                                 set_be_option(truth_value ? "omitfp" : "omitfp=no");
1631                                         } else if (streq(opt, "short-wchar")) {
1632                                                 wchar_atomic_kind = truth_value ? ATOMIC_TYPE_USHORT
1633                                                         : ATOMIC_TYPE_INT;
1634                                         } else if (streq(opt, "show-column")) {
1635                                                 show_column = truth_value;
1636                                         } else if (streq(opt, "signed-char")) {
1637                                                 char_is_signed = truth_value;
1638                                         } else if (streq(opt, "strength-reduce")) {
1639                                                 /* does nothing, for gcc compatibility (even gcc does
1640                                                  * nothing for this switch anymore) */
1641                                         } else if (streq(opt, "syntax-only")) {
1642                                                 mode = truth_value ? ParseOnly : CompileAssembleLink;
1643                                         } else if (streq(opt, "unsigned-char")) {
1644                                                 char_is_signed = !truth_value;
1645                                         } else if (streq(opt, "freestanding")) {
1646                                                 freestanding = truth_value;
1647                                         } else if (streq(opt, "hosted")) {
1648                                                 freestanding = !truth_value;
1649                                         } else if (streq(opt, "profile-generate")) {
1650                                                 profile_generate = truth_value;
1651                                         } else if (streq(opt, "profile-use")) {
1652                                                 profile_use = truth_value;
1653                                         } else if (!truth_value &&
1654                                                    streq(opt, "asynchronous-unwind-tables")) {
1655                                             /* nothing todo, a gcc feature which we do not support
1656                                              * anyway was deactivated */
1657                                         } else if (streq(opt, "verbose-asm")) {
1658                                                 /* ignore: we always print verbose assembler */
1659                                         } else if (streq(opt, "jump-tables")             ||
1660                                                    streq(opt, "expensive-optimizations") ||
1661                                                    streq(opt, "common")                  ||
1662                                                    streq(opt, "optimize-sibling-calls")  ||
1663                                                    streq(opt, "align-loops")             ||
1664                                                    streq(opt, "align-jumps")             ||
1665                                                    streq(opt, "align-functions")         ||
1666                                                    streq(opt, "unroll-loops")            ||
1667                                                    streq(opt, "PIC")                     ||
1668                                                    streq(opt, "stack-protector")         ||
1669                                                    streq(opt, "stack-protector-all")) {
1670                                                 fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt);
1671                                         } else {
1672                                                 int res = firm_option(orig_opt);
1673                                                 if (res == 0) {
1674                                                         fprintf(stderr, "error: unknown Firm option '-f%s'\n",
1675                                                                 orig_opt);
1676                                                         argument_errors = true;
1677                                                         continue;
1678                                                 }
1679                                         }
1680                                 }
1681                         } else if (option[0] == 'b') {
1682                                 const char *opt;
1683                                 GET_ARG_AFTER(opt, "-b");
1684
1685                                 if (streq(opt, "help")) {
1686                                         fprintf(stderr, "warning: -bhelp is deprecated (use --help-firm)\n");
1687                                         help |= HELP_FIRM;
1688                                 } else {
1689                                         int res = be_parse_arg(opt);
1690                                         if (res == 0) {
1691                                                 fprintf(stderr, "error: unknown Firm backend option '-b %s'\n",
1692                                                                 opt);
1693                                                 argument_errors = true;
1694                                         } else if (strstart(opt, "isa=")) {
1695                                                 strncpy(cpu_arch, opt, sizeof(cpu_arch));
1696                                         }
1697                                 }
1698                         } else if (option[0] == 'W') {
1699                                 if (strstart(option + 1, "p,")) {
1700                                         // pass options directly to the preprocessor
1701                                         const char *opt;
1702                                         GET_ARG_AFTER(opt, "-Wp,");
1703                                         add_flag(&cppflags_obst, "-Wp,%s", opt);
1704                                 } else if (strstart(option + 1, "l,")) {
1705                                         // pass options directly to the linker
1706                                         const char *opt;
1707                                         GET_ARG_AFTER(opt, "-Wl,");
1708                                         add_flag(&ldflags_obst, "-Wl,%s", opt);
1709                                 } else if (streq(option + 1, "no-trigraphs")
1710                                                         || streq(option + 1, "undef")
1711                                                         || streq(option + 1, "missing-include-dirs")
1712                                                         || streq(option + 1, "endif-labels")) {
1713                                         add_flag(&cppflags_obst, "%s", arg);
1714                                 } else if (streq(option+1, "init-self")) {
1715                                         /* ignored (same as gcc does) */
1716                                 } else if (streq(option+1, "format-y2k")
1717                                            || streq(option+1, "format-security")
1718                                            || streq(option+1, "old-style-declaration")
1719                                            || streq(option+1, "type-limits")) {
1720                                     /* ignore (gcc compatibility) */
1721                                 } else {
1722                                         set_warning_opt(&option[1]);
1723                                 }
1724                         } else if (option[0] == 'm') {
1725                                 /* -m options */
1726                                 const char *opt;
1727                                 char arch_opt[64];
1728
1729                                 GET_ARG_AFTER(opt, "-m");
1730                                 if (strstart(opt, "target=")) {
1731                                         GET_ARG_AFTER(opt, "-mtarget=");
1732                                         if (!parse_target_triple(opt)) {
1733                                                 argument_errors = true;
1734                                         } else {
1735                                                 const char *isa = setup_target_machine();
1736                                                 strncpy(cpu_arch, isa, sizeof(cpu_arch));
1737                                                 target_triple = opt;
1738                                         }
1739                                 } else if (strstart(opt, "triple=")) {
1740                                         GET_ARG_AFTER(opt, "-mtriple=");
1741                                         if (!parse_target_triple(opt)) {
1742                                                 argument_errors = true;
1743                                         } else {
1744                                                 const char *isa = setup_target_machine();
1745                                                 strncpy(cpu_arch, isa, sizeof(cpu_arch));
1746                                                 target_triple = opt;
1747                                         }
1748                                 } else if (strstart(opt, "arch=")) {
1749                                         GET_ARG_AFTER(opt, "-march=");
1750                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
1751                                         int res = be_parse_arg(arch_opt);
1752                                         snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
1753                                         res &= be_parse_arg(arch_opt);
1754
1755                                         if (res == 0) {
1756                                                 fprintf(stderr, "Unknown architecture '%s'\n", arch_opt);
1757                                                 argument_errors = true;
1758                                         }
1759                                 } else if (strstart(opt, "tune=")) {
1760                                         GET_ARG_AFTER(opt, "-mtune=");
1761                                         snprintf(arch_opt, sizeof(arch_opt), "%s-opt=%s", cpu_arch, opt);
1762                                         int res = be_parse_arg(arch_opt);
1763                                         if (res == 0)
1764                                                 argument_errors = true;
1765                                 } else if (strstart(opt, "cpu=")) {
1766                                         GET_ARG_AFTER(opt, "-mcpu=");
1767                                         snprintf(arch_opt, sizeof(arch_opt), "%s-arch=%s", cpu_arch, opt);
1768                                         int res = be_parse_arg(arch_opt);
1769                                         if (res == 0)
1770                                                 argument_errors = true;
1771                                 } else if (strstart(opt, "fpmath=")) {
1772                                         GET_ARG_AFTER(opt, "-mfpmath=");
1773                                         if (streq(opt, "387"))
1774                                                 opt = "x87";
1775                                         else if (streq(opt, "sse"))
1776                                                 opt = "sse2";
1777                                         else {
1778                                                 fprintf(stderr, "error: option -mfpmath supports only 387 or sse\n");
1779                                                 argument_errors = true;
1780                                         }
1781                                         if (!argument_errors) {
1782                                                 snprintf(arch_opt, sizeof(arch_opt), "%s-fpunit=%s", cpu_arch, opt);
1783                                                 int res = be_parse_arg(arch_opt);
1784                                                 if (res == 0)
1785                                                         argument_errors = true;
1786                                         }
1787                                 } else if (strstart(opt, "preferred-stack-boundary=")) {
1788                                         GET_ARG_AFTER(opt, "-mpreferred-stack-boundary=");
1789                                         snprintf(arch_opt, sizeof(arch_opt), "%s-stackalign=%s", cpu_arch, opt);
1790                                         int res = be_parse_arg(arch_opt);
1791                                         if (res == 0)
1792                                                 argument_errors = true;
1793                                 } else if (streq(opt, "rtd")) {
1794                                         default_calling_convention = CC_STDCALL;
1795                                 } else if (strstart(opt, "regparm=")) {
1796                                         fprintf(stderr, "error: regparm convention not supported yet\n");
1797                                         argument_errors = true;
1798                                 } else if (streq(opt, "soft-float")) {
1799                                         add_flag(&ldflags_obst, "-msoft-float");
1800                                         snprintf(arch_opt, sizeof(arch_opt), "%s-fpunit=softfloat", cpu_arch);
1801                                         int res = be_parse_arg(arch_opt);
1802                                         if (res == 0)
1803                                                 argument_errors = true;
1804                                 } else if (streq(opt, "sse2")) {
1805                                         /* ignore for now, our x86 backend always uses sse when
1806                                          * sse is requested */
1807                                 } else {
1808                                         long int value = strtol(opt, NULL, 10);
1809                                         if (value == 0) {
1810                                                 fprintf(stderr, "error: wrong option '-m %s'\n",  opt);
1811                                                 argument_errors = true;
1812                                         } else if (value != 16 && value != 32 && value != 64) {
1813                                                 fprintf(stderr, "error: option -m supports only 16, 32 or 64\n");
1814                                                 argument_errors = true;
1815                                         } else {
1816                                                 unsigned machine_size = (unsigned)value;
1817                                                 /* TODO: choose/change backend based on this */
1818                                                 add_flag(&cppflags_obst, "-m%u", machine_size);
1819                                                 add_flag(&asflags_obst, "-m%u", machine_size);
1820                                                 add_flag(&ldflags_obst, "-m%u", machine_size);
1821                                         }
1822                                 }
1823                         } else if (streq(option, "pg")) {
1824                                 set_be_option("gprof");
1825                                 add_flag(&ldflags_obst, "-pg");
1826                         } else if (streq(option, "ansi")) {
1827                                 standard = STANDARD_ANSI;
1828                         } else if (streq(option, "pedantic")) {
1829                                 fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg);
1830                         } else if (strstart(option, "std=")) {
1831                                 const char *const o = &option[4];
1832                                 standard =
1833                                         streq(o, "c++")            ? STANDARD_CXX98   :
1834                                         streq(o, "c++98")          ? STANDARD_CXX98   :
1835                                         streq(o, "c89")            ? STANDARD_C89     :
1836                                         streq(o, "c90")            ? STANDARD_C89     :
1837                                         streq(o, "c99")            ? STANDARD_C99     :
1838                                         streq(o, "c9x")            ? STANDARD_C99     : // deprecated
1839                                         streq(o, "gnu++98")        ? STANDARD_GNUXX98 :
1840                                         streq(o, "gnu89")          ? STANDARD_GNU89   :
1841                                         streq(o, "gnu99")          ? STANDARD_GNU99   :
1842                                         streq(o, "gnu9x")          ? STANDARD_GNU99   : // deprecated
1843                                         streq(o, "iso9899:1990")   ? STANDARD_C89     :
1844                                         streq(o, "iso9899:199409") ? STANDARD_C89AMD1 :
1845                                         streq(o, "iso9899:1999")   ? STANDARD_C99     :
1846                                         streq(o, "iso9899:199x")   ? STANDARD_C99     : // deprecated
1847                                         (fprintf(stderr, "warning: ignoring gcc option '%s'\n", arg), standard);
1848                         } else if (streq(option, "version")) {
1849                                 print_cparser_version();
1850                                 return EXIT_SUCCESS;
1851                         } else if (streq(option, "dumpversion")) {
1852                                 /* gcc compatibility option */
1853                                 print_cparser_version_short();
1854                                 return EXIT_SUCCESS;
1855                         } else if (strstart(option, "print-file-name=")) {
1856                                 GET_ARG_AFTER(print_file_name_file, "-print-file-name=");
1857                         } else if (option[0] == '-') {
1858                                 /* double dash option */
1859                                 ++option;
1860                                 if (streq(option, "gcc")) {
1861                                         features_on  |=  _GNUC;
1862                                         features_off &= ~_GNUC;
1863                                 } else if (streq(option, "no-gcc")) {
1864                                         features_on  &= ~_GNUC;
1865                                         features_off |=  _GNUC;
1866                                 } else if (streq(option, "ms")) {
1867                                         features_on  |=  _MS;
1868                                         features_off &= ~_MS;
1869                                 } else if (streq(option, "no-ms")) {
1870                                         features_on  &= ~_MS;
1871                                         features_off |=  _MS;
1872                                 } else if (streq(option, "strict")) {
1873                                         strict_mode = true;
1874                                 } else if (streq(option, "benchmark")) {
1875                                         mode = BenchmarkParser;
1876                                 } else if (streq(option, "print-ast")) {
1877                                         mode = PrintAst;
1878                                 } else if (streq(option, "print-implicit-cast")) {
1879                                         print_implicit_casts = true;
1880                                 } else if (streq(option, "print-parenthesis")) {
1881                                         print_parenthesis = true;
1882                                 } else if (streq(option, "print-fluffy")) {
1883                                         mode = PrintFluffy;
1884                                 } else if (streq(option, "print-jna")) {
1885                                         mode = PrintJna;
1886                                 } else if (streq(option, "jna-limit")) {
1887                                         ++i;
1888                                         if (i >= argc) {
1889                                                 fprintf(stderr, "error: "
1890                                                         "expected argument after '--jna-limit'\n");
1891                                                 argument_errors = true;
1892                                                 break;
1893                                         }
1894                                         jna_limit_output(argv[i]);
1895                                 } else if (streq(option, "jna-libname")) {
1896                                         ++i;
1897                                         if (i >= argc) {
1898                                                 fprintf(stderr, "error: "
1899                                                         "expected argument after '--jna-libname'\n");
1900                                                 argument_errors = true;
1901                                                 break;
1902                                         }
1903                                         jna_set_libname(argv[i]);
1904                                 } else if (streq(option, "external-pp")) {
1905                                         if (i+1 < argc && argv[i+1][0] != '-') {
1906                                                 ++i;
1907                                                 external_preprocessor = argv[i+1];
1908                                         } else {
1909                                                 external_preprocessor = PREPROCESSOR;
1910                                         }
1911                                 } else if (streq(option, "no-external-pp")) {
1912                                         external_preprocessor = NULL;
1913                                 } else if (streq(option, "time")) {
1914                                         do_timing = true;
1915                                 } else if (streq(option, "version")) {
1916                                         print_cparser_version();
1917                                         return EXIT_SUCCESS;
1918                                 } else if (streq(option, "help")) {
1919                                         help |= HELP_BASIC;
1920                                 } else if (streq(option, "help-parser")) {
1921                                         help |= HELP_PARSER;
1922                                 } else if (streq(option, "help-warnings")) {
1923                                         help |= HELP_WARNINGS;
1924                                 } else if (streq(option, "help-codegen")) {
1925                                         help |= HELP_CODEGEN;
1926                                 } else if (streq(option, "help-linker")) {
1927                                         help |= HELP_LINKER;
1928                                 } else if (streq(option, "help-optimization")) {
1929                                         help |= HELP_OPTIMIZATION;
1930                                 } else if (streq(option, "help-language-tools")) {
1931                                         help |= HELP_LANGUAGETOOLS;
1932                                 } else if (streq(option, "help-debug")) {
1933                                         help |= HELP_DEBUG;
1934                                 } else if (streq(option, "help-firm")) {
1935                                         help |= HELP_FIRM;
1936                                 } else if (streq(option, "help-all")) {
1937                                         help |= HELP_ALL;
1938                                 } else if (streq(option, "dump-function")) {
1939                                         ++i;
1940                                         if (i >= argc) {
1941                                                 fprintf(stderr, "error: "
1942                                                         "expected argument after '--dump-function'\n");
1943                                                 argument_errors = true;
1944                                                 break;
1945                                         }
1946                                         dumpfunction = argv[i];
1947                                         mode         = CompileDump;
1948                                 } else if (streq(option, "export-ir")) {
1949                                         mode = CompileExportIR;
1950                                 } else if (streq(option, "unroll-loops")) {
1951                                         /* ignore (gcc compatibility) */
1952                                 } else {
1953                                         fprintf(stderr, "error: unknown argument '%s'\n", arg);
1954                                         argument_errors = true;
1955                                 }
1956                         } else {
1957                                 fprintf(stderr, "error: unknown argument '%s'\n", arg);
1958                                 argument_errors = true;
1959                         }
1960                 } else {
1961                         compilation_unit_type_t type = forced_unittype;
1962                         if (type == COMPILATION_UNIT_AUTODETECT) {
1963                                 if (streq(arg, "-")) {
1964                                         /* - implicitly means C source file */
1965                                         type = COMPILATION_UNIT_C;
1966                                 } else {
1967                                         const char *suffix = strrchr(arg, '.');
1968                                         /* Ensure there is at least one char before the suffix */
1969                                         if (suffix != NULL && suffix != arg) {
1970                                                 ++suffix;
1971                                                 type =
1972                                                         streq(suffix, "S")   ? COMPILATION_UNIT_ASSEMBLER              :
1973                                                         streq(suffix, "a")   ? COMPILATION_UNIT_OBJECT                 :
1974                                                         streq(suffix, "c")   ? COMPILATION_UNIT_C                      :
1975                                                         streq(suffix, "i")   ? COMPILATION_UNIT_PREPROCESSED_C         :
1976                                                         streq(suffix, "C")   ? COMPILATION_UNIT_CXX                    :
1977                                                         streq(suffix, "cc")  ? COMPILATION_UNIT_CXX                    :
1978                                                         streq(suffix, "cp")  ? COMPILATION_UNIT_CXX                    :
1979                                                         streq(suffix, "cpp") ? COMPILATION_UNIT_CXX                    :
1980                                                         streq(suffix, "CPP") ? COMPILATION_UNIT_CXX                    :
1981                                                         streq(suffix, "cxx") ? COMPILATION_UNIT_CXX                    :
1982                                                         streq(suffix, "c++") ? COMPILATION_UNIT_CXX                    :
1983                                                         streq(suffix, "ii")  ? COMPILATION_UNIT_PREPROCESSED_CXX       :
1984                                                         streq(suffix, "h")   ? COMPILATION_UNIT_C                      :
1985                                                         streq(suffix, "ir")  ? COMPILATION_UNIT_IR                     :
1986                                                         streq(suffix, "o")   ? COMPILATION_UNIT_OBJECT                 :
1987                                                         streq(suffix, "s")   ? COMPILATION_UNIT_PREPROCESSED_ASSEMBLER :
1988                                                         streq(suffix, "so")  ? COMPILATION_UNIT_OBJECT                 :
1989                                                         COMPILATION_UNIT_OBJECT; /* gcc behavior: unknown file extension means object file */
1990                                         }
1991                                 }
1992                         }
1993
1994                         compilation_unit_t *entry = OALLOCZ(&file_obst, compilation_unit_t);
1995                         entry->name = arg;
1996                         entry->type = type;
1997
1998                         if (last_unit != NULL) {
1999                                 last_unit->next = entry;
2000                         } else {
2001                                 units = entry;
2002                         }
2003                         last_unit = entry;
2004                 }
2005         }
2006
2007         if (help != HELP_NONE) {
2008                 print_help(argv[0], help);
2009                 return !argument_errors;
2010         }
2011
2012         if (print_file_name_file != NULL) {
2013                 print_file_name(print_file_name_file);
2014                 return EXIT_SUCCESS;
2015         }
2016         if (units == NULL) {
2017                 fprintf(stderr, "error: no input files specified\n");
2018                 argument_errors = true;
2019         }
2020
2021         if (argument_errors) {
2022                 usage(argv[0]);
2023                 return EXIT_FAILURE;
2024         }
2025
2026         /* apply some effects from switches */
2027         c_mode |= features_on;
2028         c_mode &= ~features_off;
2029         if (profile_generate) {
2030                 add_flag(&ldflags_obst, "-lfirmprof");
2031                 set_be_option("profilegenerate");
2032         }
2033         if (profile_use) {
2034                 set_be_option("profileuse");
2035         }
2036
2037         init_symbol_table();
2038         init_types_and_adjust();
2039         init_typehash();
2040         init_basic_types();
2041         if (c_mode & _CXX) {
2042                 init_wchar_types(ATOMIC_TYPE_WCHAR_T);
2043         } else {
2044                 init_wchar_types(wchar_atomic_kind);
2045         }
2046         init_preprocessor();
2047         init_ast();
2048         init_parser();
2049         init_ast2firm();
2050         init_mangle();
2051
2052         if (do_timing)
2053                 timer_init();
2054
2055         if (construct_dep_target) {
2056                 if (outname != 0 && strlen(outname) >= 2) {
2057                         get_output_name(dep_target, sizeof(dep_target), outname, ".d");
2058                 } else {
2059                         get_output_name(dep_target, sizeof(dep_target), units->name, ".d");
2060                 }
2061         } else {
2062                 dep_target[0] = '\0';
2063         }
2064
2065         char outnamebuf[4096];
2066         if (outname == NULL) {
2067                 const char *filename = units->name;
2068
2069                 switch(mode) {
2070                 case BenchmarkParser:
2071                 case PrintAst:
2072                 case PrintFluffy:
2073                 case PrintJna:
2074                 case PreprocessOnly:
2075                 case ParseOnly:
2076                         outname = "-";
2077                         break;
2078                 case Compile:
2079                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".s");
2080                         outname = outnamebuf;
2081                         break;
2082                 case CompileAssemble:
2083                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".o");
2084                         outname = outnamebuf;
2085                         break;
2086                 case CompileDump:
2087                         get_output_name(outnamebuf, sizeof(outnamebuf), dumpfunction,
2088                                         ".vcg");
2089                         outname = outnamebuf;
2090                         break;
2091                 case CompileExportIR:
2092                         get_output_name(outnamebuf, sizeof(outnamebuf), filename, ".ir");
2093                         outname = outnamebuf;
2094                         break;
2095                 case CompileAssembleLink:
2096                         if (firm_is_windows_os(target_machine)) {
2097                                 outname = "a.exe";
2098                         } else {
2099                                 outname = "a.out";
2100                         }
2101                         break;
2102                 }
2103         }
2104
2105         assert(outname != NULL);
2106
2107         FILE *out;
2108         if (streq(outname, "-")) {
2109                 out = stdout;
2110         } else {
2111                 out = fopen(outname, "w");
2112                 if (out == NULL) {
2113                         fprintf(stderr, "Could not open '%s' for writing: %s\n", outname,
2114                                         strerror(errno));
2115                         return EXIT_FAILURE;
2116                 }
2117         }
2118
2119         int result = compilation_loop(mode, units, standard, out);
2120         if (result != EXIT_SUCCESS) {
2121                 if (out != stdout)
2122                         unlink(outname);
2123                 return result;
2124         }
2125
2126         /* link program file */
2127         if (mode == CompileAssembleLink) {
2128                 int result = link_program(units);
2129                 if (result != EXIT_SUCCESS) {
2130                         if (out != stdout)
2131                                 unlink(outname);
2132                         return result;
2133                 }
2134         }
2135
2136         if (do_timing)
2137                 timer_term(stderr);
2138
2139         obstack_free(&cppflags_obst, NULL);
2140         obstack_free(&ldflags_obst, NULL);
2141         obstack_free(&asflags_obst, NULL);
2142         obstack_free(&file_obst, NULL);
2143
2144         gen_firm_finish();
2145         exit_mangle();
2146         exit_ast2firm();
2147         exit_parser();
2148         exit_ast();
2149         exit_preprocessor();
2150         exit_typehash();
2151         exit_types();
2152         exit_tokens();
2153         exit_symbol_table();
2154         return EXIT_SUCCESS;
2155 }