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