074d8bf9bd64701471f2d3f7644902ac4829d373
[cparser] / parser.c
1 #include <config.h>
2
3 #include <assert.h>
4 #include <stdarg.h>
5 #include <stdbool.h>
6
7 #include "parser.h"
8 #include "lexer.h"
9 #include "token_t.h"
10 #include "type_t.h"
11 #include "type_hash.h"
12 #include "ast_t.h"
13 #include "adt/bitfiddle.h"
14 #include "adt/error.h"
15 #include "adt/array.h"
16
17 //#define PRINT_TOKENS
18 //#define ABORT_ON_ERROR
19 #define MAX_LOOKAHEAD 2
20 //#define STRICT_C99
21
22 typedef struct {
23         declaration_t *old_declaration;
24         symbol_t      *symbol;
25         unsigned short namespc;
26 } stack_entry_t;
27
28 typedef struct declaration_specifiers_t  declaration_specifiers_t;
29 struct declaration_specifiers_t {
30         source_position_t  source_position;
31         unsigned char      storage_class;
32         bool               is_inline;
33         type_t            *type;
34 };
35
36 typedef declaration_t* (*parsed_declaration_func) (declaration_t *declaration);
37
38 static token_t         token;
39 static token_t         lookahead_buffer[MAX_LOOKAHEAD];
40 static int             lookahead_bufpos;
41 static stack_entry_t  *environment_stack = NULL;
42 static stack_entry_t  *label_stack       = NULL;
43 static context_t      *global_context    = NULL;
44 static context_t      *context           = NULL;
45 static declaration_t  *last_declaration  = NULL;
46 static declaration_t  *current_function  = NULL;
47 static struct obstack  temp_obst;
48 static bool            found_error;
49
50 static type_t         *type_int         = NULL;
51 static type_t         *type_long_double = NULL;
52 static type_t         *type_double      = NULL;
53 static type_t         *type_float       = NULL;
54 static type_t         *type_char        = NULL;
55 static type_t         *type_string      = NULL;
56 static type_t         *type_void        = NULL;
57 static type_t         *type_void_ptr    = NULL;
58 static type_t         *type_valist      = NULL;
59
60 type_t *type_size_t      = NULL;
61 type_t *type_ptrdiff_t   = NULL;
62 type_t *type_wchar_t     = NULL;
63 type_t *type_wchar_t_ptr = NULL;
64
65 static statement_t *parse_compound_statement(void);
66 static statement_t *parse_statement(void);
67
68 static expression_t *parse_sub_expression(unsigned precedence);
69 static expression_t *parse_expression(void);
70 static type_t       *parse_typename(void);
71
72 static void parse_compound_type_entries(void);
73 static declaration_t *parse_declarator(
74                 const declaration_specifiers_t *specifiers, bool may_be_abstract);
75 static declaration_t *record_declaration(declaration_t *declaration);
76
77 #define STORAGE_CLASSES     \
78         case T_typedef:         \
79         case T_extern:          \
80         case T_static:          \
81         case T_auto:            \
82         case T_register:
83
84 #define TYPE_QUALIFIERS     \
85         case T_const:           \
86         case T_restrict:        \
87         case T_volatile:        \
88         case T_inline:
89
90 #ifdef PROVIDE_COMPLEX
91 #define COMPLEX_SPECIFIERS  \
92         case T__Complex:
93 #define IMAGINARY_SPECIFIERS \
94         case T__Imaginary:
95 #else
96 #define COMPLEX_SPECIFIERS
97 #define IMAGINARY_SPECIFIERS
98 #endif
99
100 #define TYPE_SPECIFIERS       \
101         case T_void:              \
102         case T_char:              \
103         case T_short:             \
104         case T_int:               \
105         case T_long:              \
106         case T_float:             \
107         case T_double:            \
108         case T_signed:            \
109         case T_unsigned:          \
110         case T__Bool:             \
111         case T_struct:            \
112         case T_union:             \
113         case T_enum:              \
114         case T___typeof__:        \
115         case T___builtin_va_list: \
116         COMPLEX_SPECIFIERS        \
117         IMAGINARY_SPECIFIERS
118
119 #define DECLARATION_START   \
120         STORAGE_CLASSES         \
121         TYPE_QUALIFIERS         \
122         TYPE_SPECIFIERS
123
124 #define TYPENAME_START      \
125         TYPE_QUALIFIERS         \
126         TYPE_SPECIFIERS
127
128 static void *allocate_ast_zero(size_t size)
129 {
130         void *res = allocate_ast(size);
131         memset(res, 0, size);
132         return res;
133 }
134
135 static size_t get_statement_struct_size(statement_type_t type)
136 {
137         static const size_t sizes[] = {
138                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
139                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
140                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
141                 [STATEMENT_IF]          = sizeof(if_statement_t),
142                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
143                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
144                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
145                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
146                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
147                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
148                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
149                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
150                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
151                 [STATEMENT_FOR]         = sizeof(for_statement_t),
152                 [STATEMENT_ASM]         = sizeof(asm_statement_t)
153         };
154         assert(sizeof(sizes) / sizeof(sizes[0]) == STATEMENT_ASM + 1);
155         assert(type <= STATEMENT_ASM);
156         assert(sizes[type] != 0);
157         return sizes[type];
158 }
159
160 static statement_t *allocate_statement_zero(statement_type_t type)
161 {
162         size_t       size = get_statement_struct_size(type);
163         statement_t *res  = allocate_ast_zero(size);
164
165         res->base.type = type;
166         return res;
167 }
168
169
170 static size_t get_expression_struct_size(expression_type_t type)
171 {
172         static const size_t sizes[] = {
173                 [EXPR_INVALID]             = sizeof(expression_base_t),
174                 [EXPR_REFERENCE]           = sizeof(reference_expression_t),
175                 [EXPR_CONST]               = sizeof(const_expression_t),
176                 [EXPR_STRING_LITERAL]      = sizeof(string_literal_expression_t),
177                 [EXPR_WIDE_STRING_LITERAL] = sizeof(wide_string_literal_expression_t),
178                 [EXPR_CALL]                = sizeof(call_expression_t),
179                 [EXPR_UNARY]               = sizeof(unary_expression_t),
180                 [EXPR_BINARY]              = sizeof(binary_expression_t),
181                 [EXPR_CONDITIONAL]         = sizeof(conditional_expression_t),
182                 [EXPR_SELECT]              = sizeof(select_expression_t),
183                 [EXPR_ARRAY_ACCESS]        = sizeof(array_access_expression_t),
184                 [EXPR_SIZEOF]              = sizeof(sizeof_expression_t),
185                 [EXPR_CLASSIFY_TYPE]       = sizeof(classify_type_expression_t),
186                 [EXPR_FUNCTION]            = sizeof(string_literal_expression_t),
187                 [EXPR_PRETTY_FUNCTION]     = sizeof(string_literal_expression_t),
188                 [EXPR_BUILTIN_SYMBOL]      = sizeof(builtin_symbol_expression_t),
189                 [EXPR_OFFSETOF]            = sizeof(offsetof_expression_t),
190                 [EXPR_VA_START]            = sizeof(va_start_expression_t),
191                 [EXPR_VA_ARG]              = sizeof(va_arg_expression_t),
192                 [EXPR_STATEMENT]           = sizeof(statement_expression_t)
193         };
194         assert(sizeof(sizes) / sizeof(sizes[0]) == EXPR_STATEMENT + 1);
195         assert(type <= EXPR_STATEMENT);
196         assert(sizes[type] != 0);
197         return sizes[type];
198 }
199
200 static expression_t *allocate_expression_zero(expression_type_t type)
201 {
202         size_t        size = get_expression_struct_size(type);
203         expression_t *res  = allocate_ast_zero(size);
204
205         res->base.type = type;
206         return res;
207 }
208
209 static size_t get_type_struct_size(type_type_t type)
210 {
211         static const size_t sizes[] = {
212                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
213                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
214                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
215                 [TYPE_ENUM]            = sizeof(enum_type_t),
216                 [TYPE_FUNCTION]        = sizeof(function_type_t),
217                 [TYPE_POINTER]         = sizeof(pointer_type_t),
218                 [TYPE_ARRAY]           = sizeof(array_type_t),
219                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
220                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
221                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
222         };
223         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
224         assert(type <= TYPE_TYPEOF);
225         assert(sizes[type] != 0);
226         return sizes[type];
227 }
228
229 static type_t *allocate_type_zero(type_type_t type)
230 {
231         size_t  size = get_type_struct_size(type);
232         type_t *res  = obstack_alloc(type_obst, size);
233         memset(res, 0, size);
234
235         res->base.type = type;
236         return res;
237 }
238
239 static size_t get_initializer_size(initializer_type_t type)
240 {
241         static const size_t sizes[] = {
242                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
243                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
244                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
245                 [INITIALIZER_LIST]        = sizeof(initializer_list_t)
246         };
247         assert(type < sizeof(sizes) / sizeof(*sizes));
248         assert(sizes[type] != 0);
249         return sizes[type];
250 }
251
252 static initializer_t *allocate_initializer(initializer_type_t type)
253 {
254         initializer_t *result = allocate_ast_zero(get_initializer_size(type));
255         result->type          = type;
256
257         return result;
258 }
259
260 static void free_type(void *type)
261 {
262         obstack_free(type_obst, type);
263 }
264
265 /**
266  * returns the top element of the environment stack
267  */
268 static size_t environment_top(void)
269 {
270         return ARR_LEN(environment_stack);
271 }
272
273 static size_t label_top(void)
274 {
275         return ARR_LEN(label_stack);
276 }
277
278
279
280 static inline void next_token(void)
281 {
282         token                              = lookahead_buffer[lookahead_bufpos];
283         lookahead_buffer[lookahead_bufpos] = lexer_token;
284         lexer_next_token();
285
286         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
287
288 #ifdef PRINT_TOKENS
289         print_token(stderr, &token);
290         fprintf(stderr, "\n");
291 #endif
292 }
293
294 static inline const token_t *look_ahead(int num)
295 {
296         assert(num > 0 && num <= MAX_LOOKAHEAD);
297         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
298         return &lookahead_buffer[pos];
299 }
300
301 #define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
302
303 static void error(void)
304 {
305         found_error = true;
306 #ifdef ABORT_ON_ERROR
307         abort();
308 #endif
309 }
310
311 static void parser_print_prefix_pos(const source_position_t source_position)
312 {
313     fputs(source_position.input_name, stderr);
314     fputc(':', stderr);
315     fprintf(stderr, "%u", source_position.linenr);
316     fputs(": ", stderr);
317 }
318
319 static void parser_print_error_prefix_pos(
320                 const source_position_t source_position)
321 {
322         parser_print_prefix_pos(source_position);
323         fputs("error: ", stderr);
324         error();
325 }
326
327 static void parser_print_error_prefix(void)
328 {
329         parser_print_error_prefix_pos(token.source_position);
330 }
331
332 static void parse_error(const char *message)
333 {
334         parser_print_error_prefix();
335         fprintf(stderr, "parse error: %s\n", message);
336 }
337
338 static void parser_print_warning_prefix_pos(
339                 const source_position_t source_position)
340 {
341         parser_print_prefix_pos(source_position);
342         fputs("warning: ", stderr);
343 }
344
345 static void parser_print_warning_prefix(void)
346 {
347         parser_print_warning_prefix_pos(token.source_position);
348 }
349
350 static void parse_warning_pos(const source_position_t source_position,
351                               const char *const message)
352 {
353         parser_print_prefix_pos(source_position);
354         fprintf(stderr, "warning: %s\n", message);
355 }
356
357 static void parse_warning(const char *message)
358 {
359         parse_warning_pos(token.source_position, message);
360 }
361
362 static void parse_error_expected(const char *message, ...)
363 {
364         va_list args;
365         int first = 1;
366
367         if(message != NULL) {
368                 parser_print_error_prefix();
369                 fprintf(stderr, "%s\n", message);
370         }
371         parser_print_error_prefix();
372         fputs("Parse error: got ", stderr);
373         print_token(stderr, &token);
374         fputs(", expected ", stderr);
375
376         va_start(args, message);
377         token_type_t token_type = va_arg(args, token_type_t);
378         while(token_type != 0) {
379                 if(first == 1) {
380                         first = 0;
381                 } else {
382                         fprintf(stderr, ", ");
383                 }
384                 print_token_type(stderr, token_type);
385                 token_type = va_arg(args, token_type_t);
386         }
387         va_end(args);
388         fprintf(stderr, "\n");
389 }
390
391 static void print_type_quoted(type_t *type)
392 {
393         fputc('\'', stderr);
394         print_type(type);
395         fputc('\'', stderr);
396 }
397
398 static void type_error(const char *msg, const source_position_t source_position,
399                        type_t *type)
400 {
401         parser_print_error_prefix_pos(source_position);
402         fprintf(stderr, "%s, but found type ", msg);
403         print_type_quoted(type);
404         fputc('\n', stderr);
405 }
406
407 static void type_error_incompatible(const char *msg,
408                 const source_position_t source_position, type_t *type1, type_t *type2)
409 {
410         parser_print_error_prefix_pos(source_position);
411         fprintf(stderr, "%s, incompatible types: ", msg);
412         print_type_quoted(type1);
413         fprintf(stderr, " - ");
414         print_type_quoted(type2);
415         fprintf(stderr, ")\n");
416 }
417
418 static void eat_block(void)
419 {
420         if(token.type == '{')
421                 next_token();
422
423         while(token.type != '}') {
424                 if(token.type == T_EOF)
425                         return;
426                 if(token.type == '{') {
427                         eat_block();
428                         continue;
429                 }
430                 next_token();
431         }
432         eat('}');
433 }
434
435 static void eat_statement(void)
436 {
437         while(token.type != ';') {
438                 if(token.type == T_EOF)
439                         return;
440                 if(token.type == '}')
441                         return;
442                 if(token.type == '{') {
443                         eat_block();
444                         continue;
445                 }
446                 next_token();
447         }
448         eat(';');
449 }
450
451 static void eat_paren(void)
452 {
453         if(token.type == '(')
454                 next_token();
455
456         while(token.type != ')') {
457                 if(token.type == T_EOF)
458                         return;
459                 if(token.type == ')' || token.type == ';' || token.type == '}') {
460                         return;
461                 }
462                 if(token.type == '(') {
463                         eat_paren();
464                         continue;
465                 }
466                 if(token.type == '{') {
467                         eat_block();
468                         continue;
469                 }
470                 next_token();
471         }
472         eat(')');
473 }
474
475 #define expect(expected)                           \
476     if(UNLIKELY(token.type != (expected))) {       \
477         parse_error_expected(NULL, (expected), 0); \
478         eat_statement();                           \
479         return NULL;                               \
480     }                                              \
481     next_token();
482
483 #define expect_block(expected)                     \
484     if(UNLIKELY(token.type != (expected))) {       \
485         parse_error_expected(NULL, (expected), 0); \
486         eat_block();                               \
487         return NULL;                               \
488     }                                              \
489     next_token();
490
491 #define expect_void(expected)                      \
492     if(UNLIKELY(token.type != (expected))) {       \
493         parse_error_expected(NULL, (expected), 0); \
494         eat_statement();                           \
495         return;                                    \
496     }                                              \
497     next_token();
498
499 static void set_context(context_t *new_context)
500 {
501         context = new_context;
502
503         last_declaration = new_context->declarations;
504         if(last_declaration != NULL) {
505                 while(last_declaration->next != NULL) {
506                         last_declaration = last_declaration->next;
507                 }
508         }
509 }
510
511 /**
512  * called when we find a 2nd declarator for an identifier we already have a
513  * declarator for
514  */
515 static bool is_compatible_declaration(declaration_t *declaration,
516                                       declaration_t *previous)
517 {
518         /* happens for K&R style function parameters */
519         if(previous->type == NULL) {
520                 previous->type = declaration->type;
521                 return true;
522         }
523
524         type_t *type1 = skip_typeref(declaration->type);
525         type_t *type2 = skip_typeref(previous->type);
526
527         return types_compatible(type1, type2);
528 }
529
530 static declaration_t *get_declaration(symbol_t *symbol, namespace_t namespc)
531 {
532         declaration_t *declaration = symbol->declaration;
533         for( ; declaration != NULL; declaration = declaration->symbol_next) {
534                 if(declaration->namespc == namespc)
535                         return declaration;
536         }
537
538         return NULL;
539 }
540
541 static const char *get_namespace_prefix(namespace_t namespc)
542 {
543         switch(namespc) {
544         case NAMESPACE_NORMAL:
545                 return "";
546         case NAMESPACE_UNION:
547                 return "union ";
548         case NAMESPACE_STRUCT:
549                 return "struct ";
550         case NAMESPACE_ENUM:
551                 return "enum ";
552         case NAMESPACE_LABEL:
553                 return "label ";
554         }
555         panic("invalid namespace found");
556 }
557
558 /**
559  * pushs an environment_entry on the environment stack and links the
560  * corresponding symbol to the new entry
561  */
562 static declaration_t *stack_push(stack_entry_t **stack_ptr,
563                                  declaration_t *declaration,
564                                  context_t *parent_context)
565 {
566         symbol_t    *symbol    = declaration->symbol;
567         namespace_t  namespc = (namespace_t)declaration->namespc;
568
569         /* a declaration should be only pushed once */
570         declaration->parent_context = parent_context;
571
572         declaration_t *previous_declaration = get_declaration(symbol, namespc);
573         assert(declaration != previous_declaration);
574         if(previous_declaration != NULL
575                         && previous_declaration->parent_context == context) {
576                 if(!is_compatible_declaration(declaration, previous_declaration)) {
577                         parser_print_error_prefix_pos(declaration->source_position);
578                         fprintf(stderr, "definition of symbol '%s%s' with type ",
579                                         get_namespace_prefix(namespc), symbol->string);
580                         print_type_quoted(declaration->type);
581                         fputc('\n', stderr);
582                         parser_print_error_prefix_pos(
583                                         previous_declaration->source_position);
584                         fprintf(stderr, "is incompatible with previous declaration "
585                                         "of type ");
586                         print_type_quoted(previous_declaration->type);
587                         fputc('\n', stderr);
588                 } else {
589                         unsigned old_storage_class = previous_declaration->storage_class;
590                         unsigned new_storage_class = declaration->storage_class;
591                         if (current_function == NULL) {
592                                 if (old_storage_class != STORAGE_CLASS_STATIC &&
593                                     new_storage_class == STORAGE_CLASS_STATIC) {
594                                         parser_print_error_prefix_pos(declaration->source_position);
595                                         fprintf(stderr,
596                                                 "static declaration of '%s' follows non-static declaration\n",
597                                                 symbol->string);
598                                         parser_print_error_prefix_pos(previous_declaration->source_position);
599                                         fprintf(stderr, "previous declaration of '%s' was here\n",
600                                                 symbol->string);
601                                 } else {
602                                         if (old_storage_class == STORAGE_CLASS_EXTERN) {
603                                                 if (new_storage_class == STORAGE_CLASS_NONE) {
604                                                         previous_declaration->storage_class = STORAGE_CLASS_NONE;
605                                                 }
606                                         } else {
607                                                 parser_print_warning_prefix_pos(declaration->source_position);
608                                                 fprintf(stderr, "redundant declaration for '%s'\n",
609                                                                                 symbol->string);
610                                                 parser_print_warning_prefix_pos(previous_declaration->source_position);
611                                                 fprintf(stderr, "previous declaration of '%s' was here\n",
612                                                                                 symbol->string);
613                                         }
614                                 }
615                         } else {
616                                 if (old_storage_class == STORAGE_CLASS_EXTERN &&
617                                                 new_storage_class == STORAGE_CLASS_EXTERN) {
618                                         parser_print_warning_prefix_pos(declaration->source_position);
619                                         fprintf(stderr, "redundant extern declaration for '%s'\n",
620                                                 symbol->string);
621                                         parser_print_warning_prefix_pos(previous_declaration->source_position);
622                                         fprintf(stderr, "previous declaration of '%s' was here\n",
623                                                 symbol->string);
624                                 } else {
625                                         parser_print_error_prefix_pos(declaration->source_position);
626                                         if (old_storage_class == new_storage_class) {
627                                                 fprintf(stderr, "redeclaration of '%s'\n", symbol->string);
628                                         } else {
629                                                 fprintf(stderr, "redeclaration of '%s' with different linkage\n", symbol->string);
630                                         }
631                                         parser_print_error_prefix_pos(previous_declaration->source_position);
632                                         fprintf(stderr, "previous declaration of '%s' was here\n",
633                                                 symbol->string);
634                                 }
635                         }
636                 }
637                 return previous_declaration;
638         }
639
640         /* remember old declaration */
641         stack_entry_t entry;
642         entry.symbol          = symbol;
643         entry.old_declaration = symbol->declaration;
644         entry.namespc         = (unsigned short) namespc;
645         ARR_APP1(stack_entry_t, *stack_ptr, entry);
646
647         /* replace/add declaration into declaration list of the symbol */
648         if(symbol->declaration == NULL) {
649                 symbol->declaration = declaration;
650         } else {
651                 declaration_t *iter_last = NULL;
652                 declaration_t *iter      = symbol->declaration;
653                 for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
654                         /* replace an entry? */
655                         if(iter->namespc == namespc) {
656                                 if(iter_last == NULL) {
657                                         symbol->declaration = declaration;
658                                 } else {
659                                         iter_last->symbol_next = declaration;
660                                 }
661                                 declaration->symbol_next = iter->symbol_next;
662                                 break;
663                         }
664                 }
665                 if(iter == NULL) {
666                         assert(iter_last->symbol_next == NULL);
667                         iter_last->symbol_next = declaration;
668                 }
669         }
670
671         return declaration;
672 }
673
674 static declaration_t *environment_push(declaration_t *declaration)
675 {
676         assert(declaration->source_position.input_name != NULL);
677         return stack_push(&environment_stack, declaration, context);
678 }
679
680 static declaration_t *label_push(declaration_t *declaration)
681 {
682         return stack_push(&label_stack, declaration, &current_function->context);
683 }
684
685 /**
686  * pops symbols from the environment stack until @p new_top is the top element
687  */
688 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
689 {
690         stack_entry_t *stack = *stack_ptr;
691         size_t         top   = ARR_LEN(stack);
692         size_t         i;
693
694         assert(new_top <= top);
695         if(new_top == top)
696                 return;
697
698         for(i = top; i > new_top; --i) {
699                 stack_entry_t *entry = &stack[i - 1];
700
701                 declaration_t *old_declaration = entry->old_declaration;
702                 symbol_t      *symbol          = entry->symbol;
703                 namespace_t    namespc         = (namespace_t)entry->namespc;
704
705                 /* replace/remove declaration */
706                 declaration_t *declaration = symbol->declaration;
707                 assert(declaration != NULL);
708                 if(declaration->namespc == namespc) {
709                         if(old_declaration == NULL) {
710                                 symbol->declaration = declaration->symbol_next;
711                         } else {
712                                 symbol->declaration = old_declaration;
713                         }
714                 } else {
715                         declaration_t *iter_last = declaration;
716                         declaration_t *iter      = declaration->symbol_next;
717                         for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
718                                 /* replace an entry? */
719                                 if(iter->namespc == namespc) {
720                                         assert(iter_last != NULL);
721                                         iter_last->symbol_next = old_declaration;
722                                         old_declaration->symbol_next = iter->symbol_next;
723                                         break;
724                                 }
725                         }
726                         assert(iter != NULL);
727                 }
728         }
729
730         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
731 }
732
733 static void environment_pop_to(size_t new_top)
734 {
735         stack_pop_to(&environment_stack, new_top);
736 }
737
738 static void label_pop_to(size_t new_top)
739 {
740         stack_pop_to(&label_stack, new_top);
741 }
742
743
744 static int get_rank(const type_t *type)
745 {
746         assert(!is_typeref(type));
747         /* The C-standard allows promoting to int or unsigned int (see Â§ 7.2.2
748          * and esp. footnote 108). However we can't fold constants (yet), so we
749          * can't decide wether unsigned int is possible, while int always works.
750          * (unsigned int would be preferable when possible... for stuff like
751          *  struct { enum { ... } bla : 4; } ) */
752         if(type->type == TYPE_ENUM)
753                 return ATOMIC_TYPE_INT;
754
755         assert(type->type == TYPE_ATOMIC);
756         const atomic_type_t *atomic_type = &type->atomic;
757         atomic_type_type_t   atype       = atomic_type->atype;
758         return atype;
759 }
760
761 static type_t *promote_integer(type_t *type)
762 {
763         if(get_rank(type) < ATOMIC_TYPE_INT)
764                 type = type_int;
765
766         return type;
767 }
768
769 static expression_t *create_cast_expression(expression_t *expression,
770                                             type_t *dest_type)
771 {
772         expression_t *cast = allocate_expression_zero(EXPR_UNARY);
773
774         cast->unary.type    = UNEXPR_CAST_IMPLICIT;
775         cast->unary.value   = expression;
776         cast->base.datatype = dest_type;
777
778         return cast;
779 }
780
781 static bool is_null_pointer_constant(const expression_t *expression)
782 {
783         /* skip void* cast */
784         if(expression->type == EXPR_UNARY) {
785                 const unary_expression_t *unary = &expression->unary;
786                 if(unary->type == UNEXPR_CAST
787                                 && expression->base.datatype == type_void_ptr) {
788                         expression = unary->value;
789                 }
790         }
791
792         /* TODO: not correct yet, should be any constant integer expression
793          * which evaluates to 0 */
794         if (expression->type != EXPR_CONST)
795                 return false;
796
797         type_t *const type = skip_typeref(expression->base.datatype);
798         if (!is_type_integer(type))
799                 return false;
800
801         return expression->conste.v.int_value == 0;
802 }
803
804 static expression_t *create_implicit_cast(expression_t *expression,
805                                           type_t *dest_type)
806 {
807         type_t *source_type = expression->base.datatype;
808
809         if(source_type == NULL)
810                 return expression;
811
812         source_type = skip_typeref(source_type);
813         dest_type   = skip_typeref(dest_type);
814
815         if(source_type == dest_type)
816                 return expression;
817
818         switch (dest_type->type) {
819                 case TYPE_ENUM:
820                         /* TODO warning for implicitly converting to enum */
821                 case TYPE_ATOMIC:
822                         if (source_type->type != TYPE_ATOMIC &&
823                                         source_type->type != TYPE_ENUM) {
824                                 panic("casting of non-atomic types not implemented yet");
825                         }
826
827                         if(is_type_floating(dest_type) && !is_type_scalar(source_type)) {
828                                 type_error_incompatible("can't cast types",
829                                                 expression->base.source_position, source_type,
830                                                 dest_type);
831                                 return expression;
832                         }
833
834                         return create_cast_expression(expression, dest_type);
835
836                 case TYPE_POINTER:
837                         switch (source_type->type) {
838                                 case TYPE_ATOMIC:
839                                         if (is_null_pointer_constant(expression)) {
840                                                 return create_cast_expression(expression, dest_type);
841                                         }
842                                         break;
843
844                                 case TYPE_POINTER:
845                                         if (pointers_compatible(source_type, dest_type)) {
846                                                 return create_cast_expression(expression, dest_type);
847                                         }
848                                         break;
849
850                                 case TYPE_ARRAY: {
851                                         array_type_t   *array_type   = &source_type->array;
852                                         pointer_type_t *pointer_type = &dest_type->pointer;
853                                         if (types_compatible(array_type->element_type,
854                                                                                  pointer_type->points_to)) {
855                                                 return create_cast_expression(expression, dest_type);
856                                         }
857                                         break;
858                                 }
859
860                                 default:
861                                         panic("casting of non-atomic types not implemented yet");
862                         }
863
864                         type_error_incompatible("can't implicitly cast types",
865                                         expression->base.source_position, source_type, dest_type);
866                         return expression;
867
868                 default:
869                         panic("casting of non-atomic types not implemented yet");
870         }
871 }
872
873 /** Implements the rules from Â§ 6.5.16.1 */
874 static void semantic_assign(type_t *orig_type_left, expression_t **right,
875                             const char *context)
876 {
877         type_t *orig_type_right = (*right)->base.datatype;
878
879         if(orig_type_right == NULL)
880                 return;
881
882         type_t *const type_left  = skip_typeref(orig_type_left);
883         type_t *const type_right = skip_typeref(orig_type_right);
884
885         if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
886             (is_type_pointer(type_left) && is_null_pointer_constant(*right)) ||
887             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
888                 && is_type_pointer(type_right))) {
889                 *right = create_implicit_cast(*right, type_left);
890                 return;
891         }
892
893         if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
894                 pointer_type_t *pointer_type_left  = &type_left->pointer;
895                 pointer_type_t *pointer_type_right = &type_right->pointer;
896                 type_t         *points_to_left     = pointer_type_left->points_to;
897                 type_t         *points_to_right    = pointer_type_right->points_to;
898
899                 points_to_left  = skip_typeref(points_to_left);
900                 points_to_right = skip_typeref(points_to_right);
901
902                 /* the left type has all qualifiers from the right type */
903                 unsigned missing_qualifiers
904                         = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
905                 if(missing_qualifiers != 0) {
906                         parser_print_error_prefix();
907                         fprintf(stderr, "destination type ");
908                         print_type_quoted(type_left);
909                         fprintf(stderr, " in %s from type ", context);
910                         print_type_quoted(type_right);
911                         fprintf(stderr, " lacks qualifiers '");
912                         print_type_qualifiers(missing_qualifiers);
913                         fprintf(stderr, "' in pointed-to type\n");
914                         return;
915                 }
916
917                 points_to_left  = get_unqualified_type(points_to_left);
918                 points_to_right = get_unqualified_type(points_to_right);
919
920                 if(!is_type_atomic(points_to_left, ATOMIC_TYPE_VOID)
921                                 && !is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)
922                                 && !types_compatible(points_to_left, points_to_right)) {
923                         goto incompatible_assign_types;
924                 }
925
926                 *right = create_implicit_cast(*right, type_left);
927                 return;
928         }
929
930         if (is_type_compound(type_left)
931                         && types_compatible(type_left, type_right)) {
932                 *right = create_implicit_cast(*right, type_left);
933                 return;
934         }
935
936 incompatible_assign_types:
937         /* TODO: improve error message */
938         parser_print_error_prefix();
939         fprintf(stderr, "incompatible types in %s\n", context);
940         parser_print_error_prefix();
941         print_type_quoted(orig_type_left);
942         fputs(" <- ", stderr);
943         print_type_quoted(orig_type_right);
944         fputs("\n", stderr);
945 }
946
947 static expression_t *parse_constant_expression(void)
948 {
949         /* start parsing at precedence 7 (conditional expression) */
950         return parse_sub_expression(7);
951 }
952
953 static expression_t *parse_assignment_expression(void)
954 {
955         /* start parsing at precedence 2 (assignment expression) */
956         return parse_sub_expression(2);
957 }
958
959 static type_t *make_global_typedef(const char *name, type_t *type)
960 {
961         symbol_t *symbol       = symbol_table_insert(name);
962
963         declaration_t *declaration   = allocate_ast_zero(sizeof(declaration[0]));
964         declaration->namespc         = NAMESPACE_NORMAL;
965         declaration->storage_class   = STORAGE_CLASS_TYPEDEF;
966         declaration->type            = type;
967         declaration->symbol          = symbol;
968         declaration->source_position = builtin_source_position;
969
970         record_declaration(declaration);
971
972         type_t *typedef_type               = allocate_type_zero(TYPE_TYPEDEF);
973         typedef_type->typedeft.declaration = declaration;
974
975         return typedef_type;
976 }
977
978 static const char *parse_string_literals(void)
979 {
980         assert(token.type == T_STRING_LITERAL);
981         const char *result = token.v.string;
982
983         next_token();
984
985         while(token.type == T_STRING_LITERAL) {
986                 result = concat_strings(result, token.v.string);
987                 next_token();
988         }
989
990         return result;
991 }
992
993 static void parse_attributes(void)
994 {
995         while(true) {
996                 switch(token.type) {
997                 case T___attribute__: {
998                         next_token();
999
1000                         expect_void('(');
1001                         int depth = 1;
1002                         while(depth > 0) {
1003                                 switch(token.type) {
1004                                 case T_EOF:
1005                                         parse_error("EOF while parsing attribute");
1006                                         break;
1007                                 case '(':
1008                                         next_token();
1009                                         depth++;
1010                                         break;
1011                                 case ')':
1012                                         next_token();
1013                                         depth--;
1014                                         break;
1015                                 default:
1016                                         next_token();
1017                                 }
1018                         }
1019                         break;
1020                 }
1021                 case T_asm:
1022                         next_token();
1023                         expect_void('(');
1024                         if(token.type != T_STRING_LITERAL) {
1025                                 parse_error_expected("while parsing assembler attribute",
1026                                                      T_STRING_LITERAL);
1027                                 eat_paren();
1028                                 break;
1029                         } else {
1030                                 parse_string_literals();
1031                         }
1032                         expect_void(')');
1033                         break;
1034                 default:
1035                         goto attributes_finished;
1036                 }
1037         }
1038
1039 attributes_finished:
1040         ;
1041 }
1042
1043 #if 0
1044 static designator_t *parse_designation(void)
1045 {
1046         if(token.type != '[' && token.type != '.')
1047                 return NULL;
1048
1049         designator_t *result = NULL;
1050         designator_t *last   = NULL;
1051
1052         while(1) {
1053                 designator_t *designator;
1054                 switch(token.type) {
1055                 case '[':
1056                         designator = allocate_ast_zero(sizeof(designator[0]));
1057                         next_token();
1058                         designator->array_access = parse_constant_expression();
1059                         expect(']');
1060                         break;
1061                 case '.':
1062                         designator = allocate_ast_zero(sizeof(designator[0]));
1063                         next_token();
1064                         if(token.type != T_IDENTIFIER) {
1065                                 parse_error_expected("while parsing designator",
1066                                                      T_IDENTIFIER, 0);
1067                                 return NULL;
1068                         }
1069                         designator->symbol = token.v.symbol;
1070                         next_token();
1071                         break;
1072                 default:
1073                         expect('=');
1074                         return result;
1075                 }
1076
1077                 assert(designator != NULL);
1078                 if(last != NULL) {
1079                         last->next = designator;
1080                 } else {
1081                         result = designator;
1082                 }
1083                 last = designator;
1084         }
1085 }
1086 #endif
1087
1088 static initializer_t *initializer_from_string(array_type_t *type,
1089                                               const char *string)
1090 {
1091         /* TODO: check len vs. size of array type */
1092         (void) type;
1093
1094         initializer_t *initializer = allocate_initializer(INITIALIZER_STRING);
1095         initializer->string.string = string;
1096
1097         return initializer;
1098 }
1099
1100 static initializer_t *initializer_from_wide_string(array_type_t *const type,
1101                                                    wide_string_t *const string)
1102 {
1103         /* TODO: check len vs. size of array type */
1104         (void) type;
1105
1106         initializer_t *const initializer =
1107                 allocate_initializer(INITIALIZER_WIDE_STRING);
1108         initializer->wide_string.string = *string;
1109
1110         return initializer;
1111 }
1112
1113 static initializer_t *initializer_from_expression(type_t *type,
1114                                                   expression_t *expression)
1115 {
1116         /* TODO check that expression is a constant expression */
1117
1118         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
1119         type_t *const expr_type = expression->base.datatype;
1120         if (is_type_array(type) && expr_type->type == TYPE_POINTER) {
1121                 array_type_t *const array_type     = &type->array;
1122                 type_t       *const element_type   = skip_typeref(array_type->element_type);
1123
1124                 if (element_type->type == TYPE_ATOMIC) {
1125                         switch (expression->type) {
1126                                 case EXPR_STRING_LITERAL:
1127                                         if (element_type->atomic.atype == ATOMIC_TYPE_CHAR) {
1128                                                 return initializer_from_string(array_type,
1129                                                         expression->string.value);
1130                                         }
1131
1132                                 case EXPR_WIDE_STRING_LITERAL:
1133                                         if (get_unqualified_type(element_type) == skip_typeref(type_wchar_t)) {
1134                                                 return initializer_from_wide_string(array_type,
1135                                                         &expression->wide_string.value);
1136                                         }
1137
1138                                 default: break;
1139                         }
1140                 }
1141         }
1142
1143         type_t *expression_type = skip_typeref(expression->base.datatype);
1144         if(is_type_scalar(type) || types_compatible(type, expression_type)) {
1145                 semantic_assign(type, &expression, "initializer");
1146
1147                 initializer_t *result = allocate_initializer(INITIALIZER_VALUE);
1148                 result->value.value   = expression;
1149
1150                 return result;
1151         }
1152
1153         return NULL;
1154 }
1155
1156 static initializer_t *parse_sub_initializer(type_t *type,
1157                                             expression_t *expression,
1158                                             type_t *expression_type);
1159
1160 static initializer_t *parse_sub_initializer_elem(type_t *type)
1161 {
1162         if(token.type == '{') {
1163                 return parse_sub_initializer(type, NULL, NULL);
1164         }
1165
1166         expression_t *expression      = parse_assignment_expression();
1167         type_t       *expression_type = skip_typeref(expression->base.datatype);
1168
1169         return parse_sub_initializer(type, expression, expression_type);
1170 }
1171
1172 static bool had_initializer_brace_warning;
1173
1174 static initializer_t *parse_sub_initializer(type_t *type,
1175                                             expression_t *expression,
1176                                             type_t *expression_type)
1177 {
1178         if(is_type_scalar(type)) {
1179                 /* there might be extra {} hierarchies */
1180                 if(token.type == '{') {
1181                         next_token();
1182                         if(!had_initializer_brace_warning) {
1183                                 parse_warning("braces around scalar initializer");
1184                                 had_initializer_brace_warning = true;
1185                         }
1186                         initializer_t *result = parse_sub_initializer(type, NULL, NULL);
1187                         if(token.type == ',') {
1188                                 next_token();
1189                                 /* TODO: warn about excessive elements */
1190                         }
1191                         expect_block('}');
1192                         return result;
1193                 }
1194
1195                 if(expression == NULL) {
1196                         expression = parse_assignment_expression();
1197                 }
1198                 return initializer_from_expression(type, expression);
1199         }
1200
1201         /* does the expression match the currently looked at object to initalize */
1202         if(expression != NULL) {
1203                 initializer_t *result = initializer_from_expression(type, expression);
1204                 if(result != NULL)
1205                         return result;
1206         }
1207
1208         bool read_paren = false;
1209         if(token.type == '{') {
1210                 next_token();
1211                 read_paren = true;
1212         }
1213
1214         /* descend into subtype */
1215         initializer_t  *result = NULL;
1216         initializer_t **elems;
1217         if(is_type_array(type)) {
1218                 array_type_t *array_type   = &type->array;
1219                 type_t       *element_type = array_type->element_type;
1220                 element_type               = skip_typeref(element_type);
1221
1222                 initializer_t *sub;
1223                 had_initializer_brace_warning = false;
1224                 if(expression == NULL) {
1225                         sub = parse_sub_initializer_elem(element_type);
1226                 } else {
1227                         sub = parse_sub_initializer(element_type, expression,
1228                                                     expression_type);
1229                 }
1230
1231                 /* didn't match the subtypes -> try the parent type */
1232                 if(sub == NULL) {
1233                         assert(!read_paren);
1234                         return NULL;
1235                 }
1236
1237                 elems = NEW_ARR_F(initializer_t*, 0);
1238                 ARR_APP1(initializer_t*, elems, sub);
1239
1240                 while(true) {
1241                         if(token.type == '}')
1242                                 break;
1243                         expect_block(',');
1244                         if(token.type == '}')
1245                                 break;
1246
1247                         sub = parse_sub_initializer_elem(element_type);
1248                         if(sub == NULL) {
1249                                 /* TODO error, do nicer cleanup */
1250                                 parse_error("member initializer didn't match");
1251                                 DEL_ARR_F(elems);
1252                                 return NULL;
1253                         }
1254                         ARR_APP1(initializer_t*, elems, sub);
1255                 }
1256         } else {
1257                 assert(is_type_compound(type));
1258                 compound_type_t *compound_type = &type->compound;
1259                 context_t       *context       = &compound_type->declaration->context;
1260
1261                 declaration_t *first = context->declarations;
1262                 if(first == NULL)
1263                         return NULL;
1264                 type_t *first_type = first->type;
1265                 first_type         = skip_typeref(first_type);
1266
1267                 initializer_t *sub;
1268                 had_initializer_brace_warning = false;
1269                 if(expression == NULL) {
1270                         sub = parse_sub_initializer_elem(first_type);
1271                 } else {
1272                         sub = parse_sub_initializer(first_type, expression,expression_type);
1273                 }
1274
1275                 /* didn't match the subtypes -> try our parent type */
1276                 if(sub == NULL) {
1277                         assert(!read_paren);
1278                         return NULL;
1279                 }
1280
1281                 elems = NEW_ARR_F(initializer_t*, 0);
1282                 ARR_APP1(initializer_t*, elems, sub);
1283
1284                 declaration_t *iter  = first->next;
1285                 for( ; iter != NULL; iter = iter->next) {
1286                         if(iter->symbol == NULL)
1287                                 continue;
1288                         if(iter->namespc != NAMESPACE_NORMAL)
1289                                 continue;
1290
1291                         if(token.type == '}')
1292                                 break;
1293                         expect_block(',');
1294                         if(token.type == '}')
1295                                 break;
1296
1297                         type_t *iter_type = iter->type;
1298                         iter_type         = skip_typeref(iter_type);
1299
1300                         sub = parse_sub_initializer_elem(iter_type);
1301                         if(sub == NULL) {
1302                                 /* TODO error, do nicer cleanup*/
1303                                 parse_error("member initializer didn't match");
1304                                 DEL_ARR_F(elems);
1305                                 return NULL;
1306                         }
1307                         ARR_APP1(initializer_t*, elems, sub);
1308                 }
1309         }
1310
1311         int    len        = ARR_LEN(elems);
1312         size_t elems_size = sizeof(initializer_t*) * len;
1313
1314         initializer_list_t *init = allocate_ast_zero(sizeof(init[0]) + elems_size);
1315
1316         init->initializer.type = INITIALIZER_LIST;
1317         init->len              = len;
1318         memcpy(init->initializers, elems, elems_size);
1319         DEL_ARR_F(elems);
1320
1321         result = (initializer_t*) init;
1322
1323         if(read_paren) {
1324                 if(token.type == ',')
1325                         next_token();
1326                 expect('}');
1327         }
1328         return result;
1329 }
1330
1331 static initializer_t *parse_initializer(type_t *type)
1332 {
1333         initializer_t *result;
1334
1335         type = skip_typeref(type);
1336
1337         if(token.type != '{') {
1338                 expression_t  *expression  = parse_assignment_expression();
1339                 initializer_t *initializer = initializer_from_expression(type, expression);
1340                 if(initializer == NULL) {
1341                         parser_print_error_prefix();
1342                         fprintf(stderr, "initializer expression '");
1343                         print_expression(expression);
1344                         fprintf(stderr, "', type ");
1345                         print_type_quoted(expression->base.datatype);
1346                         fprintf(stderr, " is incompatible with type ");
1347                         print_type_quoted(type);
1348                         fprintf(stderr, "\n");
1349                 }
1350                 return initializer;
1351         }
1352
1353         if(is_type_scalar(type)) {
1354                 /* Â§ 6.7.8.11 */
1355                 eat('{');
1356
1357                 expression_t *expression = parse_assignment_expression();
1358                 result = initializer_from_expression(type, expression);
1359
1360                 if(token.type == ',')
1361                         next_token();
1362
1363                 expect('}');
1364                 return result;
1365         } else {
1366                 result = parse_sub_initializer(type, NULL, NULL);
1367         }
1368
1369         return result;
1370 }
1371
1372
1373
1374 static declaration_t *parse_compound_type_specifier(bool is_struct)
1375 {
1376         if(is_struct) {
1377                 eat(T_struct);
1378         } else {
1379                 eat(T_union);
1380         }
1381
1382         symbol_t      *symbol      = NULL;
1383         declaration_t *declaration = NULL;
1384
1385         if (token.type == T___attribute__) {
1386                 /* TODO */
1387                 parse_attributes();
1388         }
1389
1390         if(token.type == T_IDENTIFIER) {
1391                 symbol = token.v.symbol;
1392                 next_token();
1393
1394                 if(is_struct) {
1395                         declaration = get_declaration(symbol, NAMESPACE_STRUCT);
1396                 } else {
1397                         declaration = get_declaration(symbol, NAMESPACE_UNION);
1398                 }
1399         } else if(token.type != '{') {
1400                 if(is_struct) {
1401                         parse_error_expected("while parsing struct type specifier",
1402                                              T_IDENTIFIER, '{', 0);
1403                 } else {
1404                         parse_error_expected("while parsing union type specifier",
1405                                              T_IDENTIFIER, '{', 0);
1406                 }
1407
1408                 return NULL;
1409         }
1410
1411         if(declaration == NULL) {
1412                 declaration = allocate_ast_zero(sizeof(declaration[0]));
1413
1414                 if(is_struct) {
1415                         declaration->namespc = NAMESPACE_STRUCT;
1416                 } else {
1417                         declaration->namespc = NAMESPACE_UNION;
1418                 }
1419                 declaration->source_position = token.source_position;
1420                 declaration->symbol          = symbol;
1421                 record_declaration(declaration);
1422         }
1423
1424         if(token.type == '{') {
1425                 if(declaration->init.is_defined) {
1426                         assert(symbol != NULL);
1427                         parser_print_error_prefix();
1428                         fprintf(stderr, "multiple definition of %s %s\n",
1429                                         is_struct ? "struct" : "union", symbol->string);
1430                         declaration->context.declarations = NULL;
1431                 }
1432                 declaration->init.is_defined = true;
1433
1434                 int         top          = environment_top();
1435                 context_t  *last_context = context;
1436                 set_context(&declaration->context);
1437
1438                 parse_compound_type_entries();
1439                 parse_attributes();
1440
1441                 assert(context == &declaration->context);
1442                 set_context(last_context);
1443                 environment_pop_to(top);
1444         }
1445
1446         return declaration;
1447 }
1448
1449 static void parse_enum_entries(enum_type_t *const enum_type)
1450 {
1451         eat('{');
1452
1453         if(token.type == '}') {
1454                 next_token();
1455                 parse_error("empty enum not allowed");
1456                 return;
1457         }
1458
1459         do {
1460                 declaration_t *entry = allocate_ast_zero(sizeof(entry[0]));
1461
1462                 if(token.type != T_IDENTIFIER) {
1463                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, 0);
1464                         eat_block();
1465                         return;
1466                 }
1467                 entry->storage_class   = STORAGE_CLASS_ENUM_ENTRY;
1468                 entry->type            = (type_t*) enum_type;
1469                 entry->symbol          = token.v.symbol;
1470                 entry->source_position = token.source_position;
1471                 next_token();
1472
1473                 if(token.type == '=') {
1474                         next_token();
1475                         entry->init.enum_value = parse_constant_expression();
1476
1477                         /* TODO semantic */
1478                 }
1479
1480                 record_declaration(entry);
1481
1482                 if(token.type != ',')
1483                         break;
1484                 next_token();
1485         } while(token.type != '}');
1486
1487         expect_void('}');
1488 }
1489
1490 static type_t *parse_enum_specifier(void)
1491 {
1492         eat(T_enum);
1493
1494         declaration_t *declaration;
1495         symbol_t      *symbol;
1496
1497         if(token.type == T_IDENTIFIER) {
1498                 symbol = token.v.symbol;
1499                 next_token();
1500
1501                 declaration = get_declaration(symbol, NAMESPACE_ENUM);
1502         } else if(token.type != '{') {
1503                 parse_error_expected("while parsing enum type specifier",
1504                                      T_IDENTIFIER, '{', 0);
1505                 return NULL;
1506         } else {
1507                 declaration = NULL;
1508                 symbol      = NULL;
1509         }
1510
1511         if(declaration == NULL) {
1512                 declaration = allocate_ast_zero(sizeof(declaration[0]));
1513
1514                 declaration->namespc       = NAMESPACE_ENUM;
1515                 declaration->source_position = token.source_position;
1516                 declaration->symbol          = symbol;
1517         }
1518
1519         type_t *const type      = allocate_type_zero(TYPE_ENUM);
1520         type->enumt.declaration = declaration;
1521
1522         if(token.type == '{') {
1523                 if(declaration->init.is_defined) {
1524                         parser_print_error_prefix();
1525                         fprintf(stderr, "multiple definitions of enum %s\n",
1526                                 symbol->string);
1527                 }
1528                 record_declaration(declaration);
1529                 declaration->init.is_defined = 1;
1530
1531                 parse_enum_entries(&type->enumt);
1532                 parse_attributes();
1533         }
1534
1535         return type;
1536 }
1537
1538 /**
1539  * if a symbol is a typedef to another type, return true
1540  */
1541 static bool is_typedef_symbol(symbol_t *symbol)
1542 {
1543         const declaration_t *const declaration =
1544                 get_declaration(symbol, NAMESPACE_NORMAL);
1545         return
1546                 declaration != NULL &&
1547                 declaration->storage_class == STORAGE_CLASS_TYPEDEF;
1548 }
1549
1550 static type_t *parse_typeof(void)
1551 {
1552         eat(T___typeof__);
1553
1554         type_t *type;
1555
1556         expect('(');
1557
1558         expression_t *expression  = NULL;
1559
1560 restart:
1561         switch(token.type) {
1562         case T___extension__:
1563                 /* this can be a prefix to a typename or an expression */
1564                 /* we simply eat it now. */
1565                 do {
1566                         next_token();
1567                 } while(token.type == T___extension__);
1568                 goto restart;
1569
1570         case T_IDENTIFIER:
1571                 if(is_typedef_symbol(token.v.symbol)) {
1572                         type = parse_typename();
1573                 } else {
1574                         expression = parse_expression();
1575                         type       = expression->base.datatype;
1576                 }
1577                 break;
1578
1579         TYPENAME_START
1580                 type = parse_typename();
1581                 break;
1582
1583         default:
1584                 expression = parse_expression();
1585                 type       = expression->base.datatype;
1586                 break;
1587         }
1588
1589         expect(')');
1590
1591         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF);
1592         typeof_type->typeoft.expression  = expression;
1593         typeof_type->typeoft.typeof_type = type;
1594
1595         return typeof_type;
1596 }
1597
1598 typedef enum {
1599         SPECIFIER_SIGNED    = 1 << 0,
1600         SPECIFIER_UNSIGNED  = 1 << 1,
1601         SPECIFIER_LONG      = 1 << 2,
1602         SPECIFIER_INT       = 1 << 3,
1603         SPECIFIER_DOUBLE    = 1 << 4,
1604         SPECIFIER_CHAR      = 1 << 5,
1605         SPECIFIER_SHORT     = 1 << 6,
1606         SPECIFIER_LONG_LONG = 1 << 7,
1607         SPECIFIER_FLOAT     = 1 << 8,
1608         SPECIFIER_BOOL      = 1 << 9,
1609         SPECIFIER_VOID      = 1 << 10,
1610 #ifdef PROVIDE_COMPLEX
1611         SPECIFIER_COMPLEX   = 1 << 11,
1612         SPECIFIER_IMAGINARY = 1 << 12,
1613 #endif
1614 } specifiers_t;
1615
1616 static type_t *create_builtin_type(symbol_t *const symbol,
1617                                    type_t *const real_type)
1618 {
1619         type_t *type            = allocate_type_zero(TYPE_BUILTIN);
1620         type->builtin.symbol    = symbol;
1621         type->builtin.real_type = real_type;
1622
1623         type_t *result = typehash_insert(type);
1624         if (type != result) {
1625                 free_type(type);
1626         }
1627
1628         return result;
1629 }
1630
1631 static type_t *get_typedef_type(symbol_t *symbol)
1632 {
1633         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
1634         if(declaration == NULL
1635                         || declaration->storage_class != STORAGE_CLASS_TYPEDEF)
1636                 return NULL;
1637
1638         type_t *type               = allocate_type_zero(TYPE_TYPEDEF);
1639         type->typedeft.declaration = declaration;
1640
1641         return type;
1642 }
1643
1644 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
1645 {
1646         type_t   *type            = NULL;
1647         unsigned  type_qualifiers = 0;
1648         unsigned  type_specifiers = 0;
1649         int       newtype         = 0;
1650
1651         specifiers->source_position = token.source_position;
1652
1653         while(true) {
1654                 switch(token.type) {
1655
1656                 /* storage class */
1657 #define MATCH_STORAGE_CLASS(token, class)                                \
1658                 case token:                                                      \
1659                         if(specifiers->storage_class != STORAGE_CLASS_NONE) {        \
1660                                 parse_error("multiple storage classes in declaration "   \
1661                                             "specifiers");                               \
1662                         }                                                            \
1663                         specifiers->storage_class = class;                           \
1664                         next_token();                                                \
1665                         break;
1666
1667                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
1668                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
1669                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
1670                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
1671                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
1672
1673                 case T___thread:
1674                         switch (specifiers->storage_class) {
1675                                 case STORAGE_CLASS_NONE:
1676                                         specifiers->storage_class = STORAGE_CLASS_THREAD;
1677                                         break;
1678
1679                                 case STORAGE_CLASS_EXTERN:
1680                                         specifiers->storage_class = STORAGE_CLASS_THREAD_EXTERN;
1681                                         break;
1682
1683                                 case STORAGE_CLASS_STATIC:
1684                                         specifiers->storage_class = STORAGE_CLASS_THREAD_STATIC;
1685                                         break;
1686
1687                                 default:
1688                                         parse_error("multiple storage classes in declaration specifiers");
1689                                         break;
1690                         }
1691                         next_token();
1692                         break;
1693
1694                 /* type qualifiers */
1695 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
1696                 case token:                                                     \
1697                         type_qualifiers |= qualifier;                               \
1698                         next_token();                                               \
1699                         break;
1700
1701                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
1702                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
1703                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
1704
1705                 case T___extension__:
1706                         /* TODO */
1707                         next_token();
1708                         break;
1709
1710                 /* type specifiers */
1711 #define MATCH_SPECIFIER(token, specifier, name)                         \
1712                 case token:                                                     \
1713                         next_token();                                               \
1714                         if(type_specifiers & specifier) {                           \
1715                                 parse_error("multiple " name " type specifiers given"); \
1716                         } else {                                                    \
1717                                 type_specifiers |= specifier;                           \
1718                         }                                                           \
1719                         break;
1720
1721                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
1722                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
1723                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
1724                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
1725                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
1726                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
1727                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
1728                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
1729                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
1730 #ifdef PROVIDE_COMPLEX
1731                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
1732                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
1733 #endif
1734                 case T_inline:
1735                         next_token();
1736                         specifiers->is_inline = true;
1737                         break;
1738
1739                 case T_long:
1740                         next_token();
1741                         if(type_specifiers & SPECIFIER_LONG_LONG) {
1742                                 parse_error("multiple type specifiers given");
1743                         } else if(type_specifiers & SPECIFIER_LONG) {
1744                                 type_specifiers |= SPECIFIER_LONG_LONG;
1745                         } else {
1746                                 type_specifiers |= SPECIFIER_LONG;
1747                         }
1748                         break;
1749
1750                 /* TODO: if type != NULL for the following rules should issue
1751                  * an error */
1752                 case T_struct: {
1753                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT);
1754
1755                         type->compound.declaration = parse_compound_type_specifier(true);
1756                         break;
1757                 }
1758                 case T_union: {
1759                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT);
1760
1761                         type->compound.declaration = parse_compound_type_specifier(false);
1762                         break;
1763                 }
1764                 case T_enum:
1765                         type = parse_enum_specifier();
1766                         break;
1767                 case T___typeof__:
1768                         type = parse_typeof();
1769                         break;
1770                 case T___builtin_va_list:
1771                         type = duplicate_type(type_valist);
1772                         next_token();
1773                         break;
1774
1775                 case T___attribute__:
1776                         /* TODO */
1777                         parse_attributes();
1778                         break;
1779
1780                 case T_IDENTIFIER: {
1781                         type_t *typedef_type = get_typedef_type(token.v.symbol);
1782
1783                         if(typedef_type == NULL)
1784                                 goto finish_specifiers;
1785
1786                         next_token();
1787                         type = typedef_type;
1788                         break;
1789                 }
1790
1791                 /* function specifier */
1792                 default:
1793                         goto finish_specifiers;
1794                 }
1795         }
1796
1797 finish_specifiers:
1798
1799         if(type == NULL) {
1800                 atomic_type_type_t atomic_type;
1801
1802                 /* match valid basic types */
1803                 switch(type_specifiers) {
1804                 case SPECIFIER_VOID:
1805                         atomic_type = ATOMIC_TYPE_VOID;
1806                         break;
1807                 case SPECIFIER_CHAR:
1808                         atomic_type = ATOMIC_TYPE_CHAR;
1809                         break;
1810                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
1811                         atomic_type = ATOMIC_TYPE_SCHAR;
1812                         break;
1813                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
1814                         atomic_type = ATOMIC_TYPE_UCHAR;
1815                         break;
1816                 case SPECIFIER_SHORT:
1817                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
1818                 case SPECIFIER_SHORT | SPECIFIER_INT:
1819                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1820                         atomic_type = ATOMIC_TYPE_SHORT;
1821                         break;
1822                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
1823                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1824                         atomic_type = ATOMIC_TYPE_USHORT;
1825                         break;
1826                 case SPECIFIER_INT:
1827                 case SPECIFIER_SIGNED:
1828                 case SPECIFIER_SIGNED | SPECIFIER_INT:
1829                         atomic_type = ATOMIC_TYPE_INT;
1830                         break;
1831                 case SPECIFIER_UNSIGNED:
1832                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
1833                         atomic_type = ATOMIC_TYPE_UINT;
1834                         break;
1835                 case SPECIFIER_LONG:
1836                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
1837                 case SPECIFIER_LONG | SPECIFIER_INT:
1838                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
1839                         atomic_type = ATOMIC_TYPE_LONG;
1840                         break;
1841                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
1842                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
1843                         atomic_type = ATOMIC_TYPE_ULONG;
1844                         break;
1845                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1846                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1847                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
1848                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
1849                         | SPECIFIER_INT:
1850                         atomic_type = ATOMIC_TYPE_LONGLONG;
1851                         break;
1852                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1853                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
1854                         | SPECIFIER_INT:
1855                         atomic_type = ATOMIC_TYPE_ULONGLONG;
1856                         break;
1857                 case SPECIFIER_FLOAT:
1858                         atomic_type = ATOMIC_TYPE_FLOAT;
1859                         break;
1860                 case SPECIFIER_DOUBLE:
1861                         atomic_type = ATOMIC_TYPE_DOUBLE;
1862                         break;
1863                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
1864                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
1865                         break;
1866                 case SPECIFIER_BOOL:
1867                         atomic_type = ATOMIC_TYPE_BOOL;
1868                         break;
1869 #ifdef PROVIDE_COMPLEX
1870                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
1871                         atomic_type = ATOMIC_TYPE_FLOAT_COMPLEX;
1872                         break;
1873                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
1874                         atomic_type = ATOMIC_TYPE_DOUBLE_COMPLEX;
1875                         break;
1876                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
1877                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_COMPLEX;
1878                         break;
1879                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
1880                         atomic_type = ATOMIC_TYPE_FLOAT_IMAGINARY;
1881                         break;
1882                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
1883                         atomic_type = ATOMIC_TYPE_DOUBLE_IMAGINARY;
1884                         break;
1885                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
1886                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY;
1887                         break;
1888 #endif
1889                 default:
1890                         /* invalid specifier combination, give an error message */
1891                         if(type_specifiers == 0) {
1892 #ifndef STRICT_C99
1893                                 parse_warning("no type specifiers in declaration, using int");
1894                                 atomic_type = ATOMIC_TYPE_INT;
1895                                 break;
1896 #else
1897                                 parse_error("no type specifiers given in declaration");
1898 #endif
1899                         } else if((type_specifiers & SPECIFIER_SIGNED) &&
1900                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
1901                                 parse_error("signed and unsigned specifiers gives");
1902                         } else if(type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
1903                                 parse_error("only integer types can be signed or unsigned");
1904                         } else {
1905                                 parse_error("multiple datatypes in declaration");
1906                         }
1907                         atomic_type = ATOMIC_TYPE_INVALID;
1908                 }
1909
1910                 type               = allocate_type_zero(TYPE_ATOMIC);
1911                 type->atomic.atype = atomic_type;
1912                 newtype            = 1;
1913         } else {
1914                 if(type_specifiers != 0) {
1915                         parse_error("multiple datatypes in declaration");
1916                 }
1917         }
1918
1919         type->base.qualifiers = type_qualifiers;
1920
1921         type_t *result = typehash_insert(type);
1922         if(newtype && result != type) {
1923                 free_type(type);
1924         }
1925
1926         specifiers->type = result;
1927 }
1928
1929 static type_qualifiers_t parse_type_qualifiers(void)
1930 {
1931         type_qualifiers_t type_qualifiers = TYPE_QUALIFIER_NONE;
1932
1933         while(true) {
1934                 switch(token.type) {
1935                 /* type qualifiers */
1936                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
1937                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
1938                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
1939
1940                 default:
1941                         return type_qualifiers;
1942                 }
1943         }
1944 }
1945
1946 static declaration_t *parse_identifier_list(void)
1947 {
1948         declaration_t *declarations     = NULL;
1949         declaration_t *last_declaration = NULL;
1950         do {
1951                 declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
1952
1953                 declaration->source_position = token.source_position;
1954                 declaration->symbol          = token.v.symbol;
1955                 next_token();
1956
1957                 if(last_declaration != NULL) {
1958                         last_declaration->next = declaration;
1959                 } else {
1960                         declarations = declaration;
1961                 }
1962                 last_declaration = declaration;
1963
1964                 if(token.type != ',')
1965                         break;
1966                 next_token();
1967         } while(token.type == T_IDENTIFIER);
1968
1969         return declarations;
1970 }
1971
1972 static void semantic_parameter(declaration_t *declaration)
1973 {
1974         /* TODO: improve error messages */
1975
1976         if(declaration->storage_class == STORAGE_CLASS_TYPEDEF) {
1977                 parse_error("typedef not allowed in parameter list");
1978         } else if(declaration->storage_class != STORAGE_CLASS_NONE
1979                         && declaration->storage_class != STORAGE_CLASS_REGISTER) {
1980                 parse_error("parameter may only have none or register storage class");
1981         }
1982
1983         type_t *orig_type = declaration->type;
1984         if(orig_type == NULL)
1985                 return;
1986         type_t *type = skip_typeref(orig_type);
1987
1988         /* Array as last part of a paramter type is just syntactic sugar.  Turn it
1989          * into a pointer. Â§ 6.7.5.3 (7) */
1990         if (is_type_array(type)) {
1991                 const array_type_t *arr_type     = &type->array;
1992                 type_t             *element_type = arr_type->element_type;
1993
1994                 type = make_pointer_type(element_type, type->base.qualifiers);
1995
1996                 declaration->type = type;
1997         }
1998
1999         if(is_type_incomplete(type)) {
2000                 parser_print_error_prefix();
2001                 fprintf(stderr, "incomplete type (");
2002                 print_type_quoted(orig_type);
2003                 fprintf(stderr, ") not allowed for parameter '%s'\n",
2004                         declaration->symbol->string);
2005         }
2006 }
2007
2008 static declaration_t *parse_parameter(void)
2009 {
2010         declaration_specifiers_t specifiers;
2011         memset(&specifiers, 0, sizeof(specifiers));
2012
2013         parse_declaration_specifiers(&specifiers);
2014
2015         declaration_t *declaration = parse_declarator(&specifiers, true);
2016
2017         semantic_parameter(declaration);
2018
2019         return declaration;
2020 }
2021
2022 static declaration_t *parse_parameters(function_type_t *type)
2023 {
2024         if(token.type == T_IDENTIFIER) {
2025                 symbol_t *symbol = token.v.symbol;
2026                 if(!is_typedef_symbol(symbol)) {
2027                         type->kr_style_parameters = true;
2028                         return parse_identifier_list();
2029                 }
2030         }
2031
2032         if(token.type == ')') {
2033                 type->unspecified_parameters = 1;
2034                 return NULL;
2035         }
2036         if(token.type == T_void && look_ahead(1)->type == ')') {
2037                 next_token();
2038                 return NULL;
2039         }
2040
2041         declaration_t        *declarations = NULL;
2042         declaration_t        *declaration;
2043         declaration_t        *last_declaration = NULL;
2044         function_parameter_t *parameter;
2045         function_parameter_t *last_parameter = NULL;
2046
2047         while(true) {
2048                 switch(token.type) {
2049                 case T_DOTDOTDOT:
2050                         next_token();
2051                         type->variadic = 1;
2052                         return declarations;
2053
2054                 case T_IDENTIFIER:
2055                 case T___extension__:
2056                 DECLARATION_START
2057                         declaration = parse_parameter();
2058
2059                         parameter       = obstack_alloc(type_obst, sizeof(parameter[0]));
2060                         memset(parameter, 0, sizeof(parameter[0]));
2061                         parameter->type = declaration->type;
2062
2063                         if(last_parameter != NULL) {
2064                                 last_declaration->next = declaration;
2065                                 last_parameter->next   = parameter;
2066                         } else {
2067                                 type->parameters = parameter;
2068                                 declarations     = declaration;
2069                         }
2070                         last_parameter   = parameter;
2071                         last_declaration = declaration;
2072                         break;
2073
2074                 default:
2075                         return declarations;
2076                 }
2077                 if(token.type != ',')
2078                         return declarations;
2079                 next_token();
2080         }
2081 }
2082
2083 typedef enum {
2084         CONSTRUCT_INVALID,
2085         CONSTRUCT_POINTER,
2086         CONSTRUCT_FUNCTION,
2087         CONSTRUCT_ARRAY
2088 } construct_type_type_t;
2089
2090 typedef struct construct_type_t construct_type_t;
2091 struct construct_type_t {
2092         construct_type_type_t  type;
2093         construct_type_t      *next;
2094 };
2095
2096 typedef struct parsed_pointer_t parsed_pointer_t;
2097 struct parsed_pointer_t {
2098         construct_type_t  construct_type;
2099         type_qualifiers_t type_qualifiers;
2100 };
2101
2102 typedef struct construct_function_type_t construct_function_type_t;
2103 struct construct_function_type_t {
2104         construct_type_t  construct_type;
2105         type_t           *function_type;
2106 };
2107
2108 typedef struct parsed_array_t parsed_array_t;
2109 struct parsed_array_t {
2110         construct_type_t  construct_type;
2111         type_qualifiers_t type_qualifiers;
2112         bool              is_static;
2113         bool              is_variable;
2114         expression_t     *size;
2115 };
2116
2117 typedef struct construct_base_type_t construct_base_type_t;
2118 struct construct_base_type_t {
2119         construct_type_t  construct_type;
2120         type_t           *type;
2121 };
2122
2123 static construct_type_t *parse_pointer_declarator(void)
2124 {
2125         eat('*');
2126
2127         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
2128         memset(pointer, 0, sizeof(pointer[0]));
2129         pointer->construct_type.type = CONSTRUCT_POINTER;
2130         pointer->type_qualifiers     = parse_type_qualifiers();
2131
2132         return (construct_type_t*) pointer;
2133 }
2134
2135 static construct_type_t *parse_array_declarator(void)
2136 {
2137         eat('[');
2138
2139         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
2140         memset(array, 0, sizeof(array[0]));
2141         array->construct_type.type = CONSTRUCT_ARRAY;
2142
2143         if(token.type == T_static) {
2144                 array->is_static = true;
2145                 next_token();
2146         }
2147
2148         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
2149         if(type_qualifiers != 0) {
2150                 if(token.type == T_static) {
2151                         array->is_static = true;
2152                         next_token();
2153                 }
2154         }
2155         array->type_qualifiers = type_qualifiers;
2156
2157         if(token.type == '*' && look_ahead(1)->type == ']') {
2158                 array->is_variable = true;
2159                 next_token();
2160         } else if(token.type != ']') {
2161                 array->size = parse_assignment_expression();
2162         }
2163
2164         expect(']');
2165
2166         return (construct_type_t*) array;
2167 }
2168
2169 static construct_type_t *parse_function_declarator(declaration_t *declaration)
2170 {
2171         eat('(');
2172
2173         type_t *type = allocate_type_zero(TYPE_FUNCTION);
2174
2175         declaration_t *parameters = parse_parameters(&type->function);
2176         if(declaration != NULL) {
2177                 declaration->context.declarations = parameters;
2178         }
2179
2180         construct_function_type_t *construct_function_type =
2181                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
2182         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
2183         construct_function_type->construct_type.type = CONSTRUCT_FUNCTION;
2184         construct_function_type->function_type       = type;
2185
2186         expect(')');
2187
2188         return (construct_type_t*) construct_function_type;
2189 }
2190
2191 static construct_type_t *parse_inner_declarator(declaration_t *declaration,
2192                 bool may_be_abstract)
2193 {
2194         /* construct a single linked list of construct_type_t's which describe
2195          * how to construct the final declarator type */
2196         construct_type_t *first = NULL;
2197         construct_type_t *last  = NULL;
2198
2199         /* pointers */
2200         while(token.type == '*') {
2201                 construct_type_t *type = parse_pointer_declarator();
2202
2203                 if(last == NULL) {
2204                         first = type;
2205                         last  = type;
2206                 } else {
2207                         last->next = type;
2208                         last       = type;
2209                 }
2210         }
2211
2212         /* TODO: find out if this is correct */
2213         parse_attributes();
2214
2215         construct_type_t *inner_types = NULL;
2216
2217         switch(token.type) {
2218         case T_IDENTIFIER:
2219                 if(declaration == NULL) {
2220                         parse_error("no identifier expected in typename");
2221                 } else {
2222                         declaration->symbol          = token.v.symbol;
2223                         declaration->source_position = token.source_position;
2224                 }
2225                 next_token();
2226                 break;
2227         case '(':
2228                 next_token();
2229                 inner_types = parse_inner_declarator(declaration, may_be_abstract);
2230                 expect(')');
2231                 break;
2232         default:
2233                 if(may_be_abstract)
2234                         break;
2235                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', 0);
2236                 /* avoid a loop in the outermost scope, because eat_statement doesn't
2237                  * eat '}' */
2238                 if(token.type == '}' && current_function == NULL) {
2239                         next_token();
2240                 } else {
2241                         eat_statement();
2242                 }
2243                 return NULL;
2244         }
2245
2246         construct_type_t *p = last;
2247
2248         while(true) {
2249                 construct_type_t *type;
2250                 switch(token.type) {
2251                 case '(':
2252                         type = parse_function_declarator(declaration);
2253                         break;
2254                 case '[':
2255                         type = parse_array_declarator();
2256                         break;
2257                 default:
2258                         goto declarator_finished;
2259                 }
2260
2261                 /* insert in the middle of the list (behind p) */
2262                 if(p != NULL) {
2263                         type->next = p->next;
2264                         p->next    = type;
2265                 } else {
2266                         type->next = first;
2267                         first      = type;
2268                 }
2269                 if(last == p) {
2270                         last = type;
2271                 }
2272         }
2273
2274 declarator_finished:
2275         parse_attributes();
2276
2277         /* append inner_types at the end of the list, we don't to set last anymore
2278          * as it's not needed anymore */
2279         if(last == NULL) {
2280                 assert(first == NULL);
2281                 first = inner_types;
2282         } else {
2283                 last->next = inner_types;
2284         }
2285
2286         return first;
2287 }
2288
2289 static type_t *construct_declarator_type(construct_type_t *construct_list,
2290                                          type_t *type)
2291 {
2292         construct_type_t *iter = construct_list;
2293         for( ; iter != NULL; iter = iter->next) {
2294                 switch(iter->type) {
2295                 case CONSTRUCT_INVALID:
2296                         panic("invalid type construction found");
2297                 case CONSTRUCT_FUNCTION: {
2298                         construct_function_type_t *construct_function_type
2299                                 = (construct_function_type_t*) iter;
2300
2301                         type_t *function_type = construct_function_type->function_type;
2302
2303                         function_type->function.return_type = type;
2304
2305                         type = function_type;
2306                         break;
2307                 }
2308
2309                 case CONSTRUCT_POINTER: {
2310                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
2311                         type_t           *pointer_type   = allocate_type_zero(TYPE_POINTER);
2312                         pointer_type->pointer.points_to  = type;
2313                         pointer_type->base.qualifiers    = parsed_pointer->type_qualifiers;
2314
2315                         type = pointer_type;
2316                         break;
2317                 }
2318
2319                 case CONSTRUCT_ARRAY: {
2320                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
2321                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY);
2322
2323                         array_type->base.qualifiers    = parsed_array->type_qualifiers;
2324                         array_type->array.element_type = type;
2325                         array_type->array.is_static    = parsed_array->is_static;
2326                         array_type->array.is_variable  = parsed_array->is_variable;
2327                         array_type->array.size         = parsed_array->size;
2328
2329                         type = array_type;
2330                         break;
2331                 }
2332                 }
2333
2334                 type_t *hashed_type = typehash_insert(type);
2335                 if(hashed_type != type) {
2336                         /* the function type was constructed earlier freeing it here will
2337                          * destroy other types... */
2338                         if(iter->type != CONSTRUCT_FUNCTION) {
2339                                 free_type(type);
2340                         }
2341                         type = hashed_type;
2342                 }
2343         }
2344
2345         return type;
2346 }
2347
2348 static declaration_t *parse_declarator(
2349                 const declaration_specifiers_t *specifiers, bool may_be_abstract)
2350 {
2351         type_t        *type        = specifiers->type;
2352         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2353         declaration->storage_class = specifiers->storage_class;
2354         declaration->is_inline     = specifiers->is_inline;
2355
2356         construct_type_t *construct_type
2357                 = parse_inner_declarator(declaration, may_be_abstract);
2358         declaration->type = construct_declarator_type(construct_type, type);
2359
2360         if(construct_type != NULL) {
2361                 obstack_free(&temp_obst, construct_type);
2362         }
2363
2364         return declaration;
2365 }
2366
2367 static type_t *parse_abstract_declarator(type_t *base_type)
2368 {
2369         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
2370
2371         type_t *result = construct_declarator_type(construct_type, base_type);
2372         if(construct_type != NULL) {
2373                 obstack_free(&temp_obst, construct_type);
2374         }
2375
2376         return result;
2377 }
2378
2379 static declaration_t *record_declaration(declaration_t *declaration)
2380 {
2381         assert(declaration->parent_context == NULL);
2382         assert(context != NULL);
2383
2384         symbol_t *symbol = declaration->symbol;
2385         if(symbol != NULL) {
2386                 declaration_t *alias = environment_push(declaration);
2387                 if(alias != declaration)
2388                         return alias;
2389         } else {
2390                 declaration->parent_context = context;
2391         }
2392
2393         if(last_declaration != NULL) {
2394                 last_declaration->next = declaration;
2395         } else {
2396                 context->declarations = declaration;
2397         }
2398         last_declaration = declaration;
2399
2400         return declaration;
2401 }
2402
2403 static void parser_error_multiple_definition(declaration_t *declaration,
2404                 const source_position_t source_position)
2405 {
2406         parser_print_error_prefix_pos(source_position);
2407         fprintf(stderr, "multiple definition of symbol '%s'\n",
2408                 declaration->symbol->string);
2409         parser_print_error_prefix_pos(declaration->source_position);
2410         fprintf(stderr, "this is the location of the previous definition.\n");
2411 }
2412
2413 static bool is_declaration_specifier(const token_t *token,
2414                                      bool only_type_specifiers)
2415 {
2416         switch(token->type) {
2417                 TYPE_SPECIFIERS
2418                         return true;
2419                 case T_IDENTIFIER:
2420                         return is_typedef_symbol(token->v.symbol);
2421
2422                 case T___extension__:
2423                 STORAGE_CLASSES
2424                 TYPE_QUALIFIERS
2425                         return !only_type_specifiers;
2426
2427                 default:
2428                         return false;
2429         }
2430 }
2431
2432 static void parse_init_declarator_rest(declaration_t *declaration)
2433 {
2434         eat('=');
2435
2436         type_t *orig_type = declaration->type;
2437         type_t *type      = NULL;
2438         if(orig_type != NULL)
2439                 type = skip_typeref(orig_type);
2440
2441         if(declaration->init.initializer != NULL) {
2442                 parser_error_multiple_definition(declaration, token.source_position);
2443         }
2444
2445         initializer_t *initializer = parse_initializer(type);
2446
2447         /* Â§ 6.7.5 (22)  array intializers for arrays with unknown size determine
2448          * the array type size */
2449         if(type != NULL && is_type_array(type) && initializer != NULL) {
2450                 array_type_t *array_type = &type->array;
2451
2452                 if(array_type->size == NULL) {
2453                         expression_t *cnst = allocate_expression_zero(EXPR_CONST);
2454
2455                         cnst->base.datatype = type_size_t;
2456
2457                         switch (initializer->type) {
2458                                 case INITIALIZER_LIST: {
2459                                         initializer_list_t *const list = &initializer->list;
2460                                         cnst->conste.v.int_value = list->len;
2461                                         break;
2462                                 }
2463
2464                                 case INITIALIZER_STRING: {
2465                                         initializer_string_t *const string = &initializer->string;
2466                                         cnst->conste.v.int_value = strlen(string->string) + 1;
2467                                         break;
2468                                 }
2469
2470                                 case INITIALIZER_WIDE_STRING: {
2471                                         initializer_wide_string_t *const string = &initializer->wide_string;
2472                                         cnst->conste.v.int_value = string->string.size;
2473                                         break;
2474                                 }
2475
2476                                 default:
2477                                         panic("invalid initializer type");
2478                         }
2479
2480                         array_type->size = cnst;
2481                 }
2482         }
2483
2484         if(type != NULL && is_type_function(type)) {
2485                 parser_print_error_prefix_pos(declaration->source_position);
2486                 fprintf(stderr, "initializers not allowed for function types at "
2487                                 "declator '%s' (type ", declaration->symbol->string);
2488                 print_type_quoted(orig_type);
2489                 fprintf(stderr, ")\n");
2490         } else {
2491                 declaration->init.initializer = initializer;
2492         }
2493 }
2494
2495 /* parse rest of a declaration without any declarator */
2496 static void parse_anonymous_declaration_rest(
2497                 const declaration_specifiers_t *specifiers,
2498                 parsed_declaration_func finished_declaration)
2499 {
2500         eat(';');
2501
2502         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2503
2504         declaration->type            = specifiers->type;
2505         declaration->storage_class   = specifiers->storage_class;
2506         declaration->source_position = specifiers->source_position;
2507
2508         if (declaration->storage_class != STORAGE_CLASS_NONE) {
2509                 parse_warning_pos(declaration->source_position,
2510                                 "useless storage class in empty declaration");
2511         }
2512
2513         type_t *type = declaration->type;
2514         switch (type->type) {
2515                 case TYPE_COMPOUND_STRUCT:
2516                 case TYPE_COMPOUND_UNION: {
2517                         const compound_type_t *compound_type = &type->compound;
2518                         if (compound_type->declaration->symbol == NULL) {
2519                                 parse_warning_pos(declaration->source_position,
2520                                                 "unnamed struct/union that defines no instances");
2521                         }
2522                         break;
2523                 }
2524
2525                 case TYPE_ENUM:
2526                         break;
2527
2528                 default:
2529                         parse_warning_pos(declaration->source_position,
2530                                           "empty declaration");
2531                         break;
2532         }
2533
2534         finished_declaration(declaration);
2535 }
2536
2537 static void parse_declaration_rest(declaration_t *ndeclaration,
2538                 const declaration_specifiers_t *specifiers,
2539                 parsed_declaration_func finished_declaration)
2540 {
2541         while(true) {
2542                 declaration_t *declaration = finished_declaration(ndeclaration);
2543
2544                 type_t *orig_type = declaration->type;
2545                 type_t *type      = skip_typeref(orig_type);
2546
2547                 if(type->type != TYPE_FUNCTION && declaration->is_inline) {
2548                         parser_print_warning_prefix_pos(declaration->source_position);
2549                         fprintf(stderr, "variable '%s' declared 'inline'\n",
2550                                         declaration->symbol->string);
2551                 }
2552
2553                 if(token.type == '=') {
2554                         parse_init_declarator_rest(declaration);
2555                 }
2556
2557                 if(token.type != ',')
2558                         break;
2559                 eat(',');
2560
2561                 ndeclaration = parse_declarator(specifiers, false);
2562         }
2563         expect_void(';');
2564 }
2565
2566 static declaration_t *finished_kr_declaration(declaration_t *declaration)
2567 {
2568         /* TODO: check that it was actually a parameter that gets a type */
2569
2570         /* we should have a declaration for the parameter in the current
2571          * scope */
2572         return record_declaration(declaration);
2573 }
2574
2575 static void parse_declaration(parsed_declaration_func finished_declaration)
2576 {
2577         declaration_specifiers_t specifiers;
2578         memset(&specifiers, 0, sizeof(specifiers));
2579         parse_declaration_specifiers(&specifiers);
2580
2581         if(token.type == ';') {
2582                 parse_anonymous_declaration_rest(&specifiers, finished_declaration);
2583         } else {
2584                 declaration_t *declaration = parse_declarator(&specifiers, false);
2585                 parse_declaration_rest(declaration, &specifiers, finished_declaration);
2586         }
2587 }
2588
2589 static void parse_kr_declaration_list(declaration_t *declaration)
2590 {
2591         type_t *type = skip_typeref(declaration->type);
2592         assert(is_type_function(type));
2593
2594         if(!type->function.kr_style_parameters)
2595                 return;
2596
2597         /* push function parameters */
2598         int         top          = environment_top();
2599         context_t  *last_context = context;
2600         set_context(&declaration->context);
2601
2602         declaration_t *parameter = declaration->context.declarations;
2603         for( ; parameter != NULL; parameter = parameter->next) {
2604                 environment_push(parameter);
2605         }
2606
2607         /* parse declaration list */
2608         while(is_declaration_specifier(&token, false)) {
2609                 parse_declaration(finished_kr_declaration);
2610         }
2611
2612         /* pop function parameters */
2613         assert(context == &declaration->context);
2614         set_context(last_context);
2615         environment_pop_to(top);
2616
2617         /* update function type */
2618         type_t *new_type = duplicate_type(type);
2619         new_type->function.kr_style_parameters = false;
2620
2621         function_parameter_t *parameters     = NULL;
2622         function_parameter_t *last_parameter = NULL;
2623
2624         declaration_t *parameter_declaration = declaration->context.declarations;
2625         for( ; parameter_declaration != NULL;
2626                         parameter_declaration = parameter_declaration->next) {
2627                 type_t *parameter_type = parameter_declaration->type;
2628                 if(parameter_type == NULL) {
2629 #ifdef STRICT_C99
2630                         parser_print_error_prefix();
2631                         fprintf(stderr, "no type specified for function parameter '%s'\n",
2632                                 parameter_declaration->symbol->string);
2633 #else
2634                         parser_print_warning_prefix();
2635                         fprintf(stderr, "no type specified for function parameter '%s', "
2636                                 "using int\n", parameter_declaration->symbol->string);
2637                         parameter_type              = type_int;
2638                         parameter_declaration->type = parameter_type;
2639 #endif
2640                 }
2641
2642                 semantic_parameter(parameter_declaration);
2643                 parameter_type = parameter_declaration->type;
2644
2645                 function_parameter_t *function_parameter
2646                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
2647                 memset(function_parameter, 0, sizeof(function_parameter[0]));
2648
2649                 function_parameter->type = parameter_type;
2650                 if(last_parameter != NULL) {
2651                         last_parameter->next = function_parameter;
2652                 } else {
2653                         parameters = function_parameter;
2654                 }
2655                 last_parameter = function_parameter;
2656         }
2657         new_type->function.parameters = parameters;
2658
2659         type = typehash_insert(new_type);
2660         if(type != new_type) {
2661                 obstack_free(type_obst, new_type);
2662         }
2663
2664         declaration->type = type;
2665 }
2666
2667 static void parse_external_declaration(void)
2668 {
2669         /* function-definitions and declarations both start with declaration
2670          * specifiers */
2671         declaration_specifiers_t specifiers;
2672         memset(&specifiers, 0, sizeof(specifiers));
2673         parse_declaration_specifiers(&specifiers);
2674
2675         /* must be a declaration */
2676         if(token.type == ';') {
2677                 parse_anonymous_declaration_rest(&specifiers, record_declaration);
2678                 return;
2679         }
2680
2681         /* declarator is common to both function-definitions and declarations */
2682         declaration_t *ndeclaration = parse_declarator(&specifiers, false);
2683
2684         /* must be a declaration */
2685         if(token.type == ',' || token.type == '=' || token.type == ';') {
2686                 parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
2687                 return;
2688         }
2689
2690         /* must be a function definition */
2691         parse_kr_declaration_list(ndeclaration);
2692
2693         if(token.type != '{') {
2694                 parse_error_expected("while parsing function definition", '{', 0);
2695                 eat_statement();
2696                 return;
2697         }
2698
2699         type_t *type = ndeclaration->type;
2700         if(type == NULL) {
2701                 eat_block();
2702                 return;
2703         }
2704
2705         /* note that we don't skip typerefs: the standard doesn't allow them here
2706          * (so we can't use is_type_function here) */
2707         if(type->type != TYPE_FUNCTION) {
2708                 parser_print_error_prefix();
2709                 fprintf(stderr, "declarator '");
2710                 print_type_ext(type, ndeclaration->symbol, NULL);
2711                 fprintf(stderr, "' has a body but is not a function type.\n");
2712                 eat_block();
2713                 return;
2714         }
2715
2716         /* Â§ 6.7.5.3 (14) a function definition with () means no
2717          * parameters (and not unspecified parameters) */
2718         if(type->function.unspecified_parameters) {
2719                 type_t *duplicate = duplicate_type(type);
2720                 duplicate->function.unspecified_parameters = false;
2721
2722                 type = typehash_insert(duplicate);
2723                 if(type != duplicate) {
2724                         obstack_free(type_obst, duplicate);
2725                 }
2726                 ndeclaration->type = type;
2727         }
2728
2729         declaration_t *declaration = record_declaration(ndeclaration);
2730         if(ndeclaration != declaration) {
2731                 memcpy(&declaration->context, &ndeclaration->context,
2732                                 sizeof(declaration->context));
2733         }
2734         type = skip_typeref(declaration->type);
2735
2736         /* push function parameters and switch context */
2737         int         top          = environment_top();
2738         context_t  *last_context = context;
2739         set_context(&declaration->context);
2740
2741         declaration_t *parameter = declaration->context.declarations;
2742         for( ; parameter != NULL; parameter = parameter->next) {
2743                 environment_push(parameter);
2744         }
2745
2746         if(declaration->init.statement != NULL) {
2747                 parser_error_multiple_definition(declaration, token.source_position);
2748                 eat_block();
2749                 goto end_of_parse_external_declaration;
2750         } else {
2751                 /* parse function body */
2752                 int            label_stack_top      = label_top();
2753                 declaration_t *old_current_function = current_function;
2754                 current_function                    = declaration;
2755
2756                 declaration->init.statement = parse_compound_statement();
2757
2758                 assert(current_function == declaration);
2759                 current_function = old_current_function;
2760                 label_pop_to(label_stack_top);
2761         }
2762
2763 end_of_parse_external_declaration:
2764         assert(context == &declaration->context);
2765         set_context(last_context);
2766         environment_pop_to(top);
2767 }
2768
2769 static void parse_struct_declarators(const declaration_specifiers_t *specifiers)
2770 {
2771         while(1) {
2772                 if(token.type == ':') {
2773                         next_token();
2774                         parse_constant_expression();
2775                         /* TODO (bitfields) */
2776                 } else {
2777                         declaration_t *declaration = parse_declarator(specifiers, true);
2778
2779                         /* TODO: check constraints for struct declarations */
2780                         /* TODO: check for doubled fields */
2781                         record_declaration(declaration);
2782
2783                         if(token.type == ':') {
2784                                 next_token();
2785                                 parse_constant_expression();
2786                                 /* TODO (bitfields) */
2787                         }
2788                 }
2789
2790                 if(token.type != ',')
2791                         break;
2792                 next_token();
2793         }
2794         expect_void(';');
2795 }
2796
2797 static void parse_compound_type_entries(void)
2798 {
2799         eat('{');
2800
2801         while(token.type != '}' && token.type != T_EOF) {
2802                 declaration_specifiers_t specifiers;
2803                 memset(&specifiers, 0, sizeof(specifiers));
2804                 parse_declaration_specifiers(&specifiers);
2805
2806                 parse_struct_declarators(&specifiers);
2807         }
2808         if(token.type == T_EOF) {
2809                 parse_error("EOF while parsing struct");
2810         }
2811         next_token();
2812 }
2813
2814 static type_t *parse_typename(void)
2815 {
2816         declaration_specifiers_t specifiers;
2817         memset(&specifiers, 0, sizeof(specifiers));
2818         parse_declaration_specifiers(&specifiers);
2819         if(specifiers.storage_class != STORAGE_CLASS_NONE) {
2820                 /* TODO: improve error message, user does probably not know what a
2821                  * storage class is...
2822                  */
2823                 parse_error("typename may not have a storage class");
2824         }
2825
2826         type_t *result = parse_abstract_declarator(specifiers.type);
2827
2828         return result;
2829 }
2830
2831
2832
2833
2834 typedef expression_t* (*parse_expression_function) (unsigned precedence);
2835 typedef expression_t* (*parse_expression_infix_function) (unsigned precedence,
2836                                                           expression_t *left);
2837
2838 typedef struct expression_parser_function_t expression_parser_function_t;
2839 struct expression_parser_function_t {
2840         unsigned                         precedence;
2841         parse_expression_function        parser;
2842         unsigned                         infix_precedence;
2843         parse_expression_infix_function  infix_parser;
2844 };
2845
2846 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
2847
2848 static expression_t *create_invalid_expression(void)
2849 {
2850         expression_t *expression         = allocate_expression_zero(EXPR_INVALID);
2851         expression->base.source_position = token.source_position;
2852         return expression;
2853 }
2854
2855 static expression_t *expected_expression_error(void)
2856 {
2857         parser_print_error_prefix();
2858         fprintf(stderr, "expected expression, got token ");
2859         print_token(stderr, &token);
2860         fprintf(stderr, "\n");
2861
2862         next_token();
2863
2864         return create_invalid_expression();
2865 }
2866
2867 static expression_t *parse_string_const(void)
2868 {
2869         expression_t *cnst  = allocate_expression_zero(EXPR_STRING_LITERAL);
2870         cnst->base.datatype = type_string;
2871         cnst->string.value  = parse_string_literals();
2872
2873         return cnst;
2874 }
2875
2876 static expression_t *parse_wide_string_const(void)
2877 {
2878         expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
2879         cnst->base.datatype      = type_wchar_t_ptr;
2880         cnst->wide_string.value  = token.v.wide_string; /* TODO concatenate */
2881         next_token();
2882         return cnst;
2883 }
2884
2885 static expression_t *parse_int_const(void)
2886 {
2887         expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
2888         cnst->base.datatype      = token.datatype;
2889         cnst->conste.v.int_value = token.v.intvalue;
2890
2891         next_token();
2892
2893         return cnst;
2894 }
2895
2896 static expression_t *parse_float_const(void)
2897 {
2898         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
2899         cnst->base.datatype        = token.datatype;
2900         cnst->conste.v.float_value = token.v.floatvalue;
2901
2902         next_token();
2903
2904         return cnst;
2905 }
2906
2907 static declaration_t *create_implicit_function(symbol_t *symbol,
2908                 const source_position_t source_position)
2909 {
2910         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION);
2911         ntype->function.return_type            = type_int;
2912         ntype->function.unspecified_parameters = true;
2913
2914         type_t *type = typehash_insert(ntype);
2915         if(type != ntype) {
2916                 free_type(ntype);
2917         }
2918
2919         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2920
2921         declaration->storage_class   = STORAGE_CLASS_EXTERN;
2922         declaration->type            = type;
2923         declaration->symbol          = symbol;
2924         declaration->source_position = source_position;
2925
2926         /* prepend the implicit definition to the global context
2927          * this is safe since the symbol wasn't declared as anything else yet
2928          */
2929         assert(symbol->declaration == NULL);
2930
2931         context_t *last_context = context;
2932         context = global_context;
2933
2934         environment_push(declaration);
2935         declaration->next     = context->declarations;
2936         context->declarations = declaration;
2937
2938         context = last_context;
2939
2940         return declaration;
2941 }
2942
2943 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
2944 {
2945         function_parameter_t *parameter
2946                 = obstack_alloc(type_obst, sizeof(parameter[0]));
2947         memset(parameter, 0, sizeof(parameter[0]));
2948         parameter->type = argument_type;
2949
2950         type_t *type               = allocate_type_zero(TYPE_FUNCTION);
2951         type->function.return_type = return_type;
2952         type->function.parameters  = parameter;
2953
2954         type_t *result = typehash_insert(type);
2955         if(result != type) {
2956                 free_type(type);
2957         }
2958
2959         return result;
2960 }
2961
2962 static type_t *get_builtin_symbol_type(symbol_t *symbol)
2963 {
2964         switch(symbol->ID) {
2965         case T___builtin_alloca:
2966                 return make_function_1_type(type_void_ptr, type_size_t);
2967         case T___builtin_nan:
2968                 return make_function_1_type(type_double, type_string);
2969         case T___builtin_nanf:
2970                 return make_function_1_type(type_float, type_string);
2971         case T___builtin_nand:
2972                 return make_function_1_type(type_long_double, type_string);
2973         case T___builtin_va_end:
2974                 return make_function_1_type(type_void, type_valist);
2975         default:
2976                 panic("not implemented builtin symbol found");
2977         }
2978 }
2979
2980 /**
2981  * performs automatic type cast as described in Â§ 6.3.2.1
2982  */
2983 static type_t *automatic_type_conversion(type_t *orig_type)
2984 {
2985         if(orig_type == NULL)
2986                 return NULL;
2987
2988         type_t *type = skip_typeref(orig_type);
2989         if(is_type_array(type)) {
2990                 array_type_t *array_type   = &type->array;
2991                 type_t       *element_type = array_type->element_type;
2992                 unsigned      qualifiers   = array_type->type.qualifiers;
2993
2994                 return make_pointer_type(element_type, qualifiers);
2995         }
2996
2997         if(is_type_function(type)) {
2998                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
2999         }
3000
3001         return orig_type;
3002 }
3003
3004 /**
3005  * reverts the automatic casts of array to pointer types and function
3006  * to function-pointer types as defined Â§ 6.3.2.1
3007  */
3008 type_t *revert_automatic_type_conversion(const expression_t *expression)
3009 {
3010         if(expression->base.datatype == NULL)
3011                 return NULL;
3012
3013         switch(expression->type) {
3014         case EXPR_REFERENCE: {
3015                 const reference_expression_t *ref = &expression->reference;
3016                 return ref->declaration->type;
3017         }
3018         case EXPR_SELECT: {
3019                 const select_expression_t *select = &expression->select;
3020                 return select->compound_entry->type;
3021         }
3022         case EXPR_UNARY: {
3023                 const unary_expression_t *unary = &expression->unary;
3024                 if(unary->type == UNEXPR_DEREFERENCE) {
3025                         expression_t   *value        = unary->value;
3026                         type_t         *type         = skip_typeref(value->base.datatype);
3027                         pointer_type_t *pointer_type = &type->pointer;
3028
3029                         return pointer_type->points_to;
3030                 }
3031                 break;
3032         }
3033         case EXPR_BUILTIN_SYMBOL: {
3034                 const builtin_symbol_expression_t *builtin
3035                         = &expression->builtin_symbol;
3036                 return get_builtin_symbol_type(builtin->symbol);
3037         }
3038         case EXPR_ARRAY_ACCESS: {
3039                 const array_access_expression_t *array_access
3040                         = &expression->array_access;
3041                 const expression_t *array_ref = array_access->array_ref;
3042                 type_t *type_left  = skip_typeref(array_ref->base.datatype);
3043                 assert(is_type_pointer(type_left));
3044                 pointer_type_t *pointer_type = &type_left->pointer;
3045                 return pointer_type->points_to;
3046         }
3047
3048         default:
3049                 break;
3050         }
3051
3052         return expression->base.datatype;
3053 }
3054
3055 static expression_t *parse_reference(void)
3056 {
3057         expression_t *expression = allocate_expression_zero(EXPR_REFERENCE);
3058
3059         reference_expression_t *ref = &expression->reference;
3060         ref->symbol = token.v.symbol;
3061
3062         declaration_t *declaration = get_declaration(ref->symbol, NAMESPACE_NORMAL);
3063
3064         source_position_t source_position = token.source_position;
3065         next_token();
3066
3067         if(declaration == NULL) {
3068 #ifndef STRICT_C99
3069                 /* an implicitly defined function */
3070                 if(token.type == '(') {
3071                         parser_print_prefix_pos(token.source_position);
3072                         fprintf(stderr, "warning: implicit declaration of function '%s'\n",
3073                                 ref->symbol->string);
3074
3075                         declaration = create_implicit_function(ref->symbol,
3076                                                                source_position);
3077                 } else
3078 #endif
3079                 {
3080                         parser_print_error_prefix();
3081                         fprintf(stderr, "unknown symbol '%s' found.\n", ref->symbol->string);
3082                         return expression;
3083                 }
3084         }
3085
3086         type_t *type = declaration->type;
3087         /* we always do the auto-type conversions; the & and sizeof parser contains
3088          * code to revert this! */
3089         type = automatic_type_conversion(type);
3090
3091         ref->declaration         = declaration;
3092         ref->expression.datatype = type;
3093
3094         return expression;
3095 }
3096
3097 static void check_cast_allowed(expression_t *expression, type_t *dest_type)
3098 {
3099         (void) expression;
3100         (void) dest_type;
3101         /* TODO check if explicit cast is allowed and issue warnings/errors */
3102 }
3103
3104 static expression_t *parse_cast(void)
3105 {
3106         expression_t *cast = allocate_expression_zero(EXPR_UNARY);
3107
3108         cast->unary.type           = UNEXPR_CAST;
3109         cast->base.source_position = token.source_position;
3110
3111         type_t *type  = parse_typename();
3112
3113         expect(')');
3114         expression_t *value = parse_sub_expression(20);
3115
3116         check_cast_allowed(value, type);
3117
3118         cast->base.datatype = type;
3119         cast->unary.value   = value;
3120
3121         return cast;
3122 }
3123
3124 static expression_t *parse_statement_expression(void)
3125 {
3126         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
3127
3128         statement_t *statement          = parse_compound_statement();
3129         expression->statement.statement = statement;
3130         if(statement == NULL) {
3131                 expect(')');
3132                 return NULL;
3133         }
3134
3135         assert(statement->type == STATEMENT_COMPOUND);
3136         compound_statement_t *compound_statement = &statement->compound;
3137
3138         /* find last statement and use it's type */
3139         const statement_t *last_statement = NULL;
3140         const statement_t *iter           = compound_statement->statements;
3141         for( ; iter != NULL; iter = iter->base.next) {
3142                 last_statement = iter;
3143         }
3144
3145         if(last_statement->type == STATEMENT_EXPRESSION) {
3146                 const expression_statement_t *expression_statement
3147                         = &last_statement->expression;
3148                 expression->base.datatype
3149                         = expression_statement->expression->base.datatype;
3150         } else {
3151                 expression->base.datatype = type_void;
3152         }
3153
3154         expect(')');
3155
3156         return expression;
3157 }
3158
3159 static expression_t *parse_brace_expression(void)
3160 {
3161         eat('(');
3162
3163         switch(token.type) {
3164         case '{':
3165                 /* gcc extension: a stement expression */
3166                 return parse_statement_expression();
3167
3168         TYPE_QUALIFIERS
3169         TYPE_SPECIFIERS
3170                 return parse_cast();
3171         case T_IDENTIFIER:
3172                 if(is_typedef_symbol(token.v.symbol)) {
3173                         return parse_cast();
3174                 }
3175         }
3176
3177         expression_t *result = parse_expression();
3178         expect(')');
3179
3180         return result;
3181 }
3182
3183 static expression_t *parse_function_keyword(void)
3184 {
3185         next_token();
3186         /* TODO */
3187
3188         if (current_function == NULL) {
3189                 parse_error("'__func__' used outside of a function");
3190         }
3191
3192         string_literal_expression_t *expression
3193                 = allocate_ast_zero(sizeof(expression[0]));
3194
3195         expression->expression.type     = EXPR_FUNCTION;
3196         expression->expression.datatype = type_string;
3197         expression->value               = "TODO: FUNCTION";
3198
3199         return (expression_t*) expression;
3200 }
3201
3202 static expression_t *parse_pretty_function_keyword(void)
3203 {
3204         eat(T___PRETTY_FUNCTION__);
3205         /* TODO */
3206
3207         string_literal_expression_t *expression
3208                 = allocate_ast_zero(sizeof(expression[0]));
3209
3210         expression->expression.type     = EXPR_PRETTY_FUNCTION;
3211         expression->expression.datatype = type_string;
3212         expression->value               = "TODO: PRETTY FUNCTION";
3213
3214         return (expression_t*) expression;
3215 }
3216
3217 static designator_t *parse_designator(void)
3218 {
3219         designator_t *result = allocate_ast_zero(sizeof(result[0]));
3220
3221         if(token.type != T_IDENTIFIER) {
3222                 parse_error_expected("while parsing member designator",
3223                                      T_IDENTIFIER, 0);
3224                 eat_paren();
3225                 return NULL;
3226         }
3227         result->symbol = token.v.symbol;
3228         next_token();
3229
3230         designator_t *last_designator = result;
3231         while(true) {
3232                 if(token.type == '.') {
3233                         next_token();
3234                         if(token.type != T_IDENTIFIER) {
3235                                 parse_error_expected("while parsing member designator",
3236                                                      T_IDENTIFIER, 0);
3237                                 eat_paren();
3238                                 return NULL;
3239                         }
3240                         designator_t *designator = allocate_ast_zero(sizeof(result[0]));
3241                         designator->symbol       = token.v.symbol;
3242                         next_token();
3243
3244                         last_designator->next = designator;
3245                         last_designator       = designator;
3246                         continue;
3247                 }
3248                 if(token.type == '[') {
3249                         next_token();
3250                         designator_t *designator = allocate_ast_zero(sizeof(result[0]));
3251                         designator->array_access = parse_expression();
3252                         if(designator->array_access == NULL) {
3253                                 eat_paren();
3254                                 return NULL;
3255                         }
3256                         expect(']');
3257
3258                         last_designator->next = designator;
3259                         last_designator       = designator;
3260                         continue;
3261                 }
3262                 break;
3263         }
3264
3265         return result;
3266 }
3267
3268 static expression_t *parse_offsetof(void)
3269 {
3270         eat(T___builtin_offsetof);
3271
3272         expression_t *expression  = allocate_expression_zero(EXPR_OFFSETOF);
3273         expression->base.datatype = type_size_t;
3274
3275         expect('(');
3276         expression->offsetofe.type = parse_typename();
3277         expect(',');
3278         expression->offsetofe.designator = parse_designator();
3279         expect(')');
3280
3281         return expression;
3282 }
3283
3284 static expression_t *parse_va_start(void)
3285 {
3286         eat(T___builtin_va_start);
3287
3288         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
3289
3290         expect('(');
3291         expression->va_starte.ap = parse_assignment_expression();
3292         expect(',');
3293         expression_t *const expr = parse_assignment_expression();
3294         if (expr->type == EXPR_REFERENCE) {
3295                 declaration_t *const decl = expr->reference.declaration;
3296                 if (decl->parent_context == &current_function->context &&
3297                     decl->next == NULL) {
3298                         expression->va_starte.parameter = decl;
3299                         expect(')');
3300                         return expression;
3301                 }
3302         }
3303         parser_print_error_prefix_pos(expr->base.source_position);
3304         fprintf(stderr, "second argument of 'va_start' must be last parameter "
3305                         "of the current function\n");
3306
3307         return create_invalid_expression();
3308 }
3309
3310 static expression_t *parse_va_arg(void)
3311 {
3312         eat(T___builtin_va_arg);
3313
3314         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
3315
3316         expect('(');
3317         expression->va_arge.ap = parse_assignment_expression();
3318         expect(',');
3319         expression->base.datatype = parse_typename();
3320         expect(')');
3321
3322         return expression;
3323 }
3324
3325 static expression_t *parse_builtin_symbol(void)
3326 {
3327         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
3328
3329         symbol_t *symbol = token.v.symbol;
3330
3331         expression->builtin_symbol.symbol = symbol;
3332         next_token();
3333
3334         type_t *type = get_builtin_symbol_type(symbol);
3335         type = automatic_type_conversion(type);
3336
3337         expression->base.datatype = type;
3338         return expression;
3339 }
3340
3341 static expression_t *parse_primary_expression(void)
3342 {
3343         switch(token.type) {
3344         case T_INTEGER:
3345                 return parse_int_const();
3346         case T_FLOATINGPOINT:
3347                 return parse_float_const();
3348         case T_STRING_LITERAL: /* TODO merge */
3349                 return parse_string_const();
3350         case T_WIDE_STRING_LITERAL:
3351                 return parse_wide_string_const();
3352         case T_IDENTIFIER:
3353                 return parse_reference();
3354         case T___FUNCTION__:
3355         case T___func__:
3356                 return parse_function_keyword();
3357         case T___PRETTY_FUNCTION__:
3358                 return parse_pretty_function_keyword();
3359         case T___builtin_offsetof:
3360                 return parse_offsetof();
3361         case T___builtin_va_start:
3362                 return parse_va_start();
3363         case T___builtin_va_arg:
3364                 return parse_va_arg();
3365         case T___builtin_nanf:
3366         case T___builtin_alloca:
3367         case T___builtin_expect:
3368         case T___builtin_va_end:
3369                 return parse_builtin_symbol();
3370
3371         case '(':
3372                 return parse_brace_expression();
3373         }
3374
3375         parser_print_error_prefix();
3376         fprintf(stderr, "unexpected token ");
3377         print_token(stderr, &token);
3378         fprintf(stderr, "\n");
3379         eat_statement();
3380
3381         return create_invalid_expression();
3382 }
3383
3384 static expression_t *parse_array_expression(unsigned precedence,
3385                                             expression_t *left)
3386 {
3387         (void) precedence;
3388
3389         eat('[');
3390
3391         expression_t *inside = parse_expression();
3392
3393         array_access_expression_t *array_access
3394                 = allocate_ast_zero(sizeof(array_access[0]));
3395
3396         array_access->expression.type = EXPR_ARRAY_ACCESS;
3397
3398         type_t *type_left   = left->base.datatype;
3399         type_t *type_inside = inside->base.datatype;
3400         type_t *return_type = NULL;
3401
3402         if(type_left != NULL && type_inside != NULL) {
3403                 type_left   = skip_typeref(type_left);
3404                 type_inside = skip_typeref(type_inside);
3405
3406                 if(is_type_pointer(type_left)) {
3407                         pointer_type_t *pointer = &type_left->pointer;
3408                         return_type             = pointer->points_to;
3409                         array_access->array_ref = left;
3410                         array_access->index     = inside;
3411                 } else if(is_type_pointer(type_inside)) {
3412                         pointer_type_t *pointer = &type_inside->pointer;
3413                         return_type             = pointer->points_to;
3414                         array_access->array_ref = inside;
3415                         array_access->index     = left;
3416                         array_access->flipped   = true;
3417                 } else {
3418                         parser_print_error_prefix();
3419                         fprintf(stderr, "array access on object with non-pointer types ");
3420                         print_type_quoted(type_left);
3421                         fprintf(stderr, ", ");
3422                         print_type_quoted(type_inside);
3423                         fprintf(stderr, "\n");
3424                 }
3425         } else {
3426                 array_access->array_ref = left;
3427                 array_access->index     = inside;
3428         }
3429
3430         if(token.type != ']') {
3431                 parse_error_expected("Problem while parsing array access", ']', 0);
3432                 return (expression_t*) array_access;
3433         }
3434         next_token();
3435
3436         return_type = automatic_type_conversion(return_type);
3437         array_access->expression.datatype = return_type;
3438
3439         return (expression_t*) array_access;
3440 }
3441
3442 static expression_t *parse_sizeof(unsigned precedence)
3443 {
3444         eat(T_sizeof);
3445
3446         sizeof_expression_t *sizeof_expression
3447                 = allocate_ast_zero(sizeof(sizeof_expression[0]));
3448         sizeof_expression->expression.type     = EXPR_SIZEOF;
3449         sizeof_expression->expression.datatype = type_size_t;
3450
3451         if(token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
3452                 next_token();
3453                 sizeof_expression->type = parse_typename();
3454                 expect(')');
3455         } else {
3456                 expression_t *expression  = parse_sub_expression(precedence);
3457                 expression->base.datatype = revert_automatic_type_conversion(expression);
3458
3459                 sizeof_expression->type            = expression->base.datatype;
3460                 sizeof_expression->size_expression = expression;
3461         }
3462
3463         return (expression_t*) sizeof_expression;
3464 }
3465
3466 static expression_t *parse_select_expression(unsigned precedence,
3467                                              expression_t *compound)
3468 {
3469         (void) precedence;
3470         assert(token.type == '.' || token.type == T_MINUSGREATER);
3471
3472         bool is_pointer = (token.type == T_MINUSGREATER);
3473         next_token();
3474
3475         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
3476         select->select.compound = compound;
3477
3478         if(token.type != T_IDENTIFIER) {
3479                 parse_error_expected("while parsing select", T_IDENTIFIER, 0);
3480                 return select;
3481         }
3482         symbol_t *symbol      = token.v.symbol;
3483         select->select.symbol = symbol;
3484         next_token();
3485
3486         type_t *orig_type = compound->base.datatype;
3487         if(orig_type == NULL)
3488                 return create_invalid_expression();
3489
3490         type_t *type = skip_typeref(orig_type);
3491
3492         type_t *type_left = type;
3493         if(is_pointer) {
3494                 if(type->type != TYPE_POINTER) {
3495                         parser_print_error_prefix();
3496                         fprintf(stderr, "left hand side of '->' is not a pointer, but ");
3497                         print_type_quoted(orig_type);
3498                         fputc('\n', stderr);
3499                         return create_invalid_expression();
3500                 }
3501                 pointer_type_t *pointer_type = &type->pointer;
3502                 type_left                    = pointer_type->points_to;
3503         }
3504         type_left = skip_typeref(type_left);
3505
3506         if(type_left->type != TYPE_COMPOUND_STRUCT
3507                         && type_left->type != TYPE_COMPOUND_UNION) {
3508                 parser_print_error_prefix();
3509                 fprintf(stderr, "request for member '%s' in something not a struct or "
3510                         "union, but ", symbol->string);
3511                 print_type_quoted(type_left);
3512                 fputc('\n', stderr);
3513                 return create_invalid_expression();
3514         }
3515
3516         compound_type_t *compound_type = &type_left->compound;
3517         declaration_t   *declaration   = compound_type->declaration;
3518
3519         if(!declaration->init.is_defined) {
3520                 parser_print_error_prefix();
3521                 fprintf(stderr, "request for member '%s' of incomplete type ",
3522                         symbol->string);
3523                 print_type_quoted(type_left);
3524                 fputc('\n', stderr);
3525                 return create_invalid_expression();
3526         }
3527
3528         declaration_t *iter = declaration->context.declarations;
3529         for( ; iter != NULL; iter = iter->next) {
3530                 if(iter->symbol == symbol) {
3531                         break;
3532                 }
3533         }
3534         if(iter == NULL) {
3535                 parser_print_error_prefix();
3536                 print_type_quoted(type_left);
3537                 fprintf(stderr, " has no member named '%s'\n", symbol->string);
3538                 return create_invalid_expression();
3539         }
3540
3541         /* we always do the auto-type conversions; the & and sizeof parser contains
3542          * code to revert this! */
3543         type_t *expression_type = automatic_type_conversion(iter->type);
3544
3545         select->select.compound_entry = iter;
3546         select->base.datatype         = expression_type;
3547         return select;
3548 }
3549
3550 static expression_t *parse_call_expression(unsigned precedence,
3551                                            expression_t *expression)
3552 {
3553         (void) precedence;
3554         expression_t *result = allocate_expression_zero(EXPR_CALL);
3555
3556         call_expression_t *call  = &result->call;
3557         call->function           = expression;
3558
3559         function_type_t *function_type = NULL;
3560         type_t          *orig_type     = expression->base.datatype;
3561         if(orig_type != NULL) {
3562                 type_t *type  = skip_typeref(orig_type);
3563
3564                 if(is_type_pointer(type)) {
3565                         pointer_type_t *pointer_type = &type->pointer;
3566
3567                         type = skip_typeref(pointer_type->points_to);
3568
3569                         if (is_type_function(type)) {
3570                                 function_type             = &type->function;
3571                                 call->expression.datatype = function_type->return_type;
3572                         }
3573                 }
3574                 if(function_type == NULL) {
3575                         parser_print_error_prefix();
3576                         fputs("called object '", stderr);
3577                         print_expression(expression);
3578                         fputs("' (type ", stderr);
3579                         print_type_quoted(orig_type);
3580                         fputs(") is not a pointer to a function\n", stderr);
3581
3582                         function_type             = NULL;
3583                         call->expression.datatype = NULL;
3584                 }
3585         }
3586
3587         /* parse arguments */
3588         eat('(');
3589
3590         if(token.type != ')') {
3591                 call_argument_t *last_argument = NULL;
3592
3593                 while(true) {
3594                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
3595
3596                         argument->expression = parse_assignment_expression();
3597                         if(last_argument == NULL) {
3598                                 call->arguments = argument;
3599                         } else {
3600                                 last_argument->next = argument;
3601                         }
3602                         last_argument = argument;
3603
3604                         if(token.type != ',')
3605                                 break;
3606                         next_token();
3607                 }
3608         }
3609         expect(')');
3610
3611         if(function_type != NULL) {
3612                 function_parameter_t *parameter = function_type->parameters;
3613                 call_argument_t      *argument  = call->arguments;
3614                 for( ; parameter != NULL && argument != NULL;
3615                                 parameter = parameter->next, argument = argument->next) {
3616                         type_t *expected_type = parameter->type;
3617                         /* TODO report context in error messages */
3618                         argument->expression = create_implicit_cast(argument->expression,
3619                                                                     expected_type);
3620                 }
3621                 /* too few parameters */
3622                 if(parameter != NULL) {
3623                         parser_print_error_prefix();
3624                         fprintf(stderr, "too few arguments to function '");
3625                         print_expression(expression);
3626                         fprintf(stderr, "'\n");
3627                 } else if(argument != NULL) {
3628                         /* too many parameters */
3629                         if(!function_type->variadic
3630                                         && !function_type->unspecified_parameters) {
3631                                 parser_print_error_prefix();
3632                                 fprintf(stderr, "too many arguments to function '");
3633                                 print_expression(expression);
3634                                 fprintf(stderr, "'\n");
3635                         } else {
3636                                 /* do default promotion */
3637                                 for( ; argument != NULL; argument = argument->next) {
3638                                         type_t *type = argument->expression->base.datatype;
3639
3640                                         if(type == NULL)
3641                                                 continue;
3642
3643                                         type = skip_typeref(type);
3644                                         if(is_type_integer(type)) {
3645                                                 type = promote_integer(type);
3646                                         } else if(type == type_float) {
3647                                                 type = type_double;
3648                                         }
3649
3650                                         argument->expression
3651                                                 = create_implicit_cast(argument->expression, type);
3652                                 }
3653                         }
3654                 }
3655         }
3656
3657         return result;
3658 }
3659
3660 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
3661
3662 static bool same_compound_type(const type_t *type1, const type_t *type2)
3663 {
3664         if(!is_type_compound(type1))
3665                 return false;
3666         if(type1->type != type2->type)
3667                 return false;
3668
3669         const compound_type_t *compound1 = &type1->compound;
3670         const compound_type_t *compound2 = &type2->compound;
3671
3672         return compound1->declaration == compound2->declaration;
3673 }
3674
3675 static expression_t *parse_conditional_expression(unsigned precedence,
3676                                                   expression_t *expression)
3677 {
3678         eat('?');
3679
3680         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
3681
3682         conditional_expression_t *conditional = &result->conditional;
3683         conditional->condition = expression;
3684
3685         /* 6.5.15.2 */
3686         type_t *condition_type_orig = expression->base.datatype;
3687         if(condition_type_orig != NULL) {
3688                 type_t *condition_type = skip_typeref(condition_type_orig);
3689                 if(condition_type != NULL && !is_type_scalar(condition_type)) {
3690                         type_error("expected a scalar type in conditional condition",
3691                                    expression->base.source_position, condition_type_orig);
3692                 }
3693         }
3694
3695         expression_t *true_expression = parse_expression();
3696         expect(':');
3697         expression_t *false_expression = parse_sub_expression(precedence);
3698
3699         conditional->true_expression  = true_expression;
3700         conditional->false_expression = false_expression;
3701
3702         type_t *orig_true_type  = true_expression->base.datatype;
3703         type_t *orig_false_type = false_expression->base.datatype;
3704         if(orig_true_type == NULL || orig_false_type == NULL)
3705                 return result;
3706
3707         type_t *true_type  = skip_typeref(orig_true_type);
3708         type_t *false_type = skip_typeref(orig_false_type);
3709
3710         /* 6.5.15.3 */
3711         type_t *result_type = NULL;
3712         if (is_type_arithmetic(true_type) && is_type_arithmetic(false_type)) {
3713                 result_type = semantic_arithmetic(true_type, false_type);
3714
3715                 true_expression  = create_implicit_cast(true_expression, result_type);
3716                 false_expression = create_implicit_cast(false_expression, result_type);
3717
3718                 conditional->true_expression     = true_expression;
3719                 conditional->false_expression    = false_expression;
3720                 conditional->expression.datatype = result_type;
3721         } else if (same_compound_type(true_type, false_type)
3722                         || (is_type_atomic(true_type, ATOMIC_TYPE_VOID) &&
3723                                 is_type_atomic(false_type, ATOMIC_TYPE_VOID))) {
3724                 /* just take 1 of the 2 types */
3725                 result_type = true_type;
3726         } else if (is_type_pointer(true_type) && is_type_pointer(false_type)
3727                         && pointers_compatible(true_type, false_type)) {
3728                 /* ok */
3729                 result_type = true_type;
3730         } else {
3731                 /* TODO */
3732                 type_error_incompatible("while parsing conditional",
3733                                         expression->base.source_position, true_type,
3734                                         false_type);
3735         }
3736
3737         conditional->expression.datatype = result_type;
3738         return result;
3739 }
3740
3741 static expression_t *parse_extension(unsigned precedence)
3742 {
3743         eat(T___extension__);
3744
3745         /* TODO enable extensions */
3746
3747         return parse_sub_expression(precedence);
3748 }
3749
3750 static expression_t *parse_builtin_classify_type(const unsigned precedence)
3751 {
3752         eat(T___builtin_classify_type);
3753
3754         expression_t *result  = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
3755         result->base.datatype = type_int;
3756
3757         expect('(');
3758         expression_t *expression = parse_sub_expression(precedence);
3759         expect(')');
3760         result->classify_type.type_expression = expression;
3761
3762         return result;
3763 }
3764
3765 static void semantic_incdec(unary_expression_t *expression)
3766 {
3767         type_t *orig_type = expression->value->base.datatype;
3768         if(orig_type == NULL)
3769                 return;
3770
3771         type_t *type = skip_typeref(orig_type);
3772         if(!is_type_arithmetic(type) && type->type != TYPE_POINTER) {
3773                 /* TODO: improve error message */
3774                 parser_print_error_prefix();
3775                 fprintf(stderr, "operation needs an arithmetic or pointer type\n");
3776                 return;
3777         }
3778
3779         expression->expression.datatype = orig_type;
3780 }
3781
3782 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
3783 {
3784         type_t *orig_type = expression->value->base.datatype;
3785         if(orig_type == NULL)
3786                 return;
3787
3788         type_t *type = skip_typeref(orig_type);
3789         if(!is_type_arithmetic(type)) {
3790                 /* TODO: improve error message */
3791                 parser_print_error_prefix();
3792                 fprintf(stderr, "operation needs an arithmetic type\n");
3793                 return;
3794         }
3795
3796         expression->expression.datatype = orig_type;
3797 }
3798
3799 static void semantic_unexpr_scalar(unary_expression_t *expression)
3800 {
3801         type_t *orig_type = expression->value->base.datatype;
3802         if(orig_type == NULL)
3803                 return;
3804
3805         type_t *type = skip_typeref(orig_type);
3806         if (!is_type_scalar(type)) {
3807                 parse_error("operand of ! must be of scalar type\n");
3808                 return;
3809         }
3810
3811         expression->expression.datatype = orig_type;
3812 }
3813
3814 static void semantic_unexpr_integer(unary_expression_t *expression)
3815 {
3816         type_t *orig_type = expression->value->base.datatype;
3817         if(orig_type == NULL)
3818                 return;
3819
3820         type_t *type = skip_typeref(orig_type);
3821         if (!is_type_integer(type)) {
3822                 parse_error("operand of ~ must be of integer type\n");
3823                 return;
3824         }
3825
3826         expression->expression.datatype = orig_type;
3827 }
3828
3829 static void semantic_dereference(unary_expression_t *expression)
3830 {
3831         type_t *orig_type = expression->value->base.datatype;
3832         if(orig_type == NULL)
3833                 return;
3834
3835         type_t *type = skip_typeref(orig_type);
3836         if(!is_type_pointer(type)) {
3837                 parser_print_error_prefix();
3838                 fputs("Unary '*' needs pointer or arrray type, but type ", stderr);
3839                 print_type_quoted(orig_type);
3840                 fputs(" given.\n", stderr);
3841                 return;
3842         }
3843
3844         pointer_type_t *pointer_type = &type->pointer;
3845         type_t         *result_type  = pointer_type->points_to;
3846
3847         result_type = automatic_type_conversion(result_type);
3848         expression->expression.datatype = result_type;
3849 }
3850
3851 static void semantic_take_addr(unary_expression_t *expression)
3852 {
3853         expression_t *value  = expression->value;
3854         value->base.datatype = revert_automatic_type_conversion(value);
3855
3856         type_t *orig_type = value->base.datatype;
3857         if(orig_type == NULL)
3858                 return;
3859
3860         if(value->type == EXPR_REFERENCE) {
3861                 reference_expression_t *reference   = (reference_expression_t*) value;
3862                 declaration_t          *declaration = reference->declaration;
3863                 if(declaration != NULL) {
3864                         declaration->address_taken = 1;
3865                 }
3866         }
3867
3868         expression->expression.datatype = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
3869 }
3870
3871 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
3872 static expression_t *parse_##unexpression_type(unsigned precedence)            \
3873 {                                                                              \
3874         eat(token_type);                                                           \
3875                                                                                \
3876         unary_expression_t *unary_expression                                       \
3877                 = allocate_ast_zero(sizeof(unary_expression[0]));                      \
3878         unary_expression->expression.type     = EXPR_UNARY;                        \
3879         unary_expression->type                = unexpression_type;                 \
3880         unary_expression->value               = parse_sub_expression(precedence);  \
3881                                                                                    \
3882         sfunc(unary_expression);                                                   \
3883                                                                                \
3884         return (expression_t*) unary_expression;                                   \
3885 }
3886
3887 CREATE_UNARY_EXPRESSION_PARSER('-', UNEXPR_NEGATE, semantic_unexpr_arithmetic)
3888 CREATE_UNARY_EXPRESSION_PARSER('+', UNEXPR_PLUS,   semantic_unexpr_arithmetic)
3889 CREATE_UNARY_EXPRESSION_PARSER('!', UNEXPR_NOT,    semantic_unexpr_scalar)
3890 CREATE_UNARY_EXPRESSION_PARSER('*', UNEXPR_DEREFERENCE, semantic_dereference)
3891 CREATE_UNARY_EXPRESSION_PARSER('&', UNEXPR_TAKE_ADDRESS, semantic_take_addr)
3892 CREATE_UNARY_EXPRESSION_PARSER('~', UNEXPR_BITWISE_NEGATE,
3893                                semantic_unexpr_integer)
3894 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   UNEXPR_PREFIX_INCREMENT,
3895                                semantic_incdec)
3896 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, UNEXPR_PREFIX_DECREMENT,
3897                                semantic_incdec)
3898
3899 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
3900                                                sfunc)                         \
3901 static expression_t *parse_##unexpression_type(unsigned precedence,           \
3902                                                expression_t *left)            \
3903 {                                                                             \
3904         (void) precedence;                                                        \
3905         eat(token_type);                                                          \
3906                                                                               \
3907         unary_expression_t *unary_expression                                      \
3908                 = allocate_ast_zero(sizeof(unary_expression[0]));                     \
3909         unary_expression->expression.type     = EXPR_UNARY;                       \
3910         unary_expression->type                = unexpression_type;                \
3911         unary_expression->value               = left;                             \
3912                                                                                   \
3913         sfunc(unary_expression);                                                  \
3914                                                                               \
3915         return (expression_t*) unary_expression;                                  \
3916 }
3917
3918 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,   UNEXPR_POSTFIX_INCREMENT,
3919                                        semantic_incdec)
3920 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS, UNEXPR_POSTFIX_DECREMENT,
3921                                        semantic_incdec)
3922
3923 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
3924 {
3925         /* TODO: handle complex + imaginary types */
3926
3927         /* Â§ 6.3.1.8 Usual arithmetic conversions */
3928         if(type_left == type_long_double || type_right == type_long_double) {
3929                 return type_long_double;
3930         } else if(type_left == type_double || type_right == type_double) {
3931                 return type_double;
3932         } else if(type_left == type_float || type_right == type_float) {
3933                 return type_float;
3934         }
3935
3936         type_right = promote_integer(type_right);
3937         type_left  = promote_integer(type_left);
3938
3939         if(type_left == type_right)
3940                 return type_left;
3941
3942         bool signed_left  = is_type_signed(type_left);
3943         bool signed_right = is_type_signed(type_right);
3944         int  rank_left    = get_rank(type_left);
3945         int  rank_right   = get_rank(type_right);
3946         if(rank_left < rank_right) {
3947                 if(signed_left == signed_right || !signed_right) {
3948                         return type_right;
3949                 } else {
3950                         return type_left;
3951                 }
3952         } else {
3953                 if(signed_left == signed_right || !signed_left) {
3954                         return type_left;
3955                 } else {
3956                         return type_right;
3957                 }
3958         }
3959 }
3960
3961 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
3962 {
3963         expression_t *left       = expression->left;
3964         expression_t *right      = expression->right;
3965         type_t       *orig_type_left  = left->base.datatype;
3966         type_t       *orig_type_right = right->base.datatype;
3967
3968         if(orig_type_left == NULL || orig_type_right == NULL)
3969                 return;
3970
3971         type_t *type_left  = skip_typeref(orig_type_left);
3972         type_t *type_right = skip_typeref(orig_type_right);
3973
3974         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
3975                 /* TODO: improve error message */
3976                 parser_print_error_prefix();
3977                 fprintf(stderr, "operation needs arithmetic types\n");
3978                 return;
3979         }
3980
3981         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
3982         expression->left  = create_implicit_cast(left, arithmetic_type);
3983         expression->right = create_implicit_cast(right, arithmetic_type);
3984         expression->expression.datatype = arithmetic_type;
3985 }
3986
3987 static void semantic_shift_op(binary_expression_t *expression)
3988 {
3989         expression_t *left       = expression->left;
3990         expression_t *right      = expression->right;
3991         type_t       *orig_type_left  = left->base.datatype;
3992         type_t       *orig_type_right = right->base.datatype;
3993
3994         if(orig_type_left == NULL || orig_type_right == NULL)
3995                 return;
3996
3997         type_t *type_left  = skip_typeref(orig_type_left);
3998         type_t *type_right = skip_typeref(orig_type_right);
3999
4000         if(!is_type_integer(type_left) || !is_type_integer(type_right)) {
4001                 /* TODO: improve error message */
4002                 parser_print_error_prefix();
4003                 fprintf(stderr, "operation needs integer types\n");
4004                 return;
4005         }
4006
4007         type_left  = promote_integer(type_left);
4008         type_right = promote_integer(type_right);
4009
4010         expression->left  = create_implicit_cast(left, type_left);
4011         expression->right = create_implicit_cast(right, type_right);
4012         expression->expression.datatype = type_left;
4013 }
4014
4015 static void semantic_add(binary_expression_t *expression)
4016 {
4017         expression_t *left            = expression->left;
4018         expression_t *right           = expression->right;
4019         type_t       *orig_type_left  = left->base.datatype;
4020         type_t       *orig_type_right = right->base.datatype;
4021
4022         if(orig_type_left == NULL || orig_type_right == NULL)
4023                 return;
4024
4025         type_t *type_left  = skip_typeref(orig_type_left);
4026         type_t *type_right = skip_typeref(orig_type_right);
4027
4028         /* Â§ 5.6.5 */
4029         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4030                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4031                 expression->left  = create_implicit_cast(left, arithmetic_type);
4032                 expression->right = create_implicit_cast(right, arithmetic_type);
4033                 expression->expression.datatype = arithmetic_type;
4034                 return;
4035         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4036                 expression->expression.datatype = type_left;
4037         } else if(is_type_pointer(type_right) && is_type_integer(type_left)) {
4038                 expression->expression.datatype = type_right;
4039         } else {
4040                 parser_print_error_prefix();
4041                 fprintf(stderr, "invalid operands to binary + (");
4042                 print_type_quoted(orig_type_left);
4043                 fprintf(stderr, ", ");
4044                 print_type_quoted(orig_type_right);
4045                 fprintf(stderr, ")\n");
4046         }
4047 }
4048
4049 static void semantic_sub(binary_expression_t *expression)
4050 {
4051         expression_t *left            = expression->left;
4052         expression_t *right           = expression->right;
4053         type_t       *orig_type_left  = left->base.datatype;
4054         type_t       *orig_type_right = right->base.datatype;
4055
4056         if(orig_type_left == NULL || orig_type_right == NULL)
4057                 return;
4058
4059         type_t       *type_left       = skip_typeref(orig_type_left);
4060         type_t       *type_right      = skip_typeref(orig_type_right);
4061
4062         /* Â§ 5.6.5 */
4063         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4064                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4065                 expression->left  = create_implicit_cast(left, arithmetic_type);
4066                 expression->right = create_implicit_cast(right, arithmetic_type);
4067                 expression->expression.datatype = arithmetic_type;
4068                 return;
4069         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4070                 expression->expression.datatype = type_left;
4071         } else if(is_type_pointer(type_left) && is_type_pointer(type_right)) {
4072                 if(!pointers_compatible(type_left, type_right)) {
4073                         parser_print_error_prefix();
4074                         fprintf(stderr, "pointers to incompatible objects to binary - (");
4075                         print_type_quoted(orig_type_left);
4076                         fprintf(stderr, ", ");
4077                         print_type_quoted(orig_type_right);
4078                         fprintf(stderr, ")\n");
4079                 } else {
4080                         expression->expression.datatype = type_ptrdiff_t;
4081                 }
4082         } else {
4083                 parser_print_error_prefix();
4084                 fprintf(stderr, "invalid operands to binary - (");
4085                 print_type_quoted(orig_type_left);
4086                 fprintf(stderr, ", ");
4087                 print_type_quoted(orig_type_right);
4088                 fprintf(stderr, ")\n");
4089         }
4090 }
4091
4092 static void semantic_comparison(binary_expression_t *expression)
4093 {
4094         expression_t *left            = expression->left;
4095         expression_t *right           = expression->right;
4096         type_t       *orig_type_left  = left->base.datatype;
4097         type_t       *orig_type_right = right->base.datatype;
4098
4099         if(orig_type_left == NULL || orig_type_right == NULL)
4100                 return;
4101
4102         type_t *type_left  = skip_typeref(orig_type_left);
4103         type_t *type_right = skip_typeref(orig_type_right);
4104
4105         /* TODO non-arithmetic types */
4106         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4107                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4108                 expression->left  = create_implicit_cast(left, arithmetic_type);
4109                 expression->right = create_implicit_cast(right, arithmetic_type);
4110                 expression->expression.datatype = arithmetic_type;
4111         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
4112                 /* TODO check compatibility */
4113         } else if (is_type_pointer(type_left)) {
4114                 expression->right = create_implicit_cast(right, type_left);
4115         } else if (is_type_pointer(type_right)) {
4116                 expression->left = create_implicit_cast(left, type_right);
4117         } else {
4118                 type_error_incompatible("invalid operands in comparison",
4119                                         token.source_position, type_left, type_right);
4120         }
4121         expression->expression.datatype = type_int;
4122 }
4123
4124 static void semantic_arithmetic_assign(binary_expression_t *expression)
4125 {
4126         expression_t *left            = expression->left;
4127         expression_t *right           = expression->right;
4128         type_t       *orig_type_left  = left->base.datatype;
4129         type_t       *orig_type_right = right->base.datatype;
4130
4131         if(orig_type_left == NULL || orig_type_right == NULL)
4132                 return;
4133
4134         type_t *type_left  = skip_typeref(orig_type_left);
4135         type_t *type_right = skip_typeref(orig_type_right);
4136
4137         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
4138                 /* TODO: improve error message */
4139                 parser_print_error_prefix();
4140                 fprintf(stderr, "operation needs arithmetic types\n");
4141                 return;
4142         }
4143
4144         /* combined instructions are tricky. We can't create an implicit cast on
4145          * the left side, because we need the uncasted form for the store.
4146          * The ast2firm pass has to know that left_type must be right_type
4147          * for the arithmeitc operation and create a cast by itself */
4148         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4149         expression->right       = create_implicit_cast(right, arithmetic_type);
4150         expression->expression.datatype = type_left;
4151 }
4152
4153 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
4154 {
4155         expression_t *left            = expression->left;
4156         expression_t *right           = expression->right;
4157         type_t       *orig_type_left  = left->base.datatype;
4158         type_t       *orig_type_right = right->base.datatype;
4159
4160         if(orig_type_left == NULL || orig_type_right == NULL)
4161                 return;
4162
4163         type_t *type_left  = skip_typeref(orig_type_left);
4164         type_t *type_right = skip_typeref(orig_type_right);
4165
4166         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4167                 /* combined instructions are tricky. We can't create an implicit cast on
4168                  * the left side, because we need the uncasted form for the store.
4169                  * The ast2firm pass has to know that left_type must be right_type
4170                  * for the arithmeitc operation and create a cast by itself */
4171                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
4172                 expression->right = create_implicit_cast(right, arithmetic_type);
4173                 expression->expression.datatype = type_left;
4174         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
4175                 expression->expression.datatype = type_left;
4176         } else {
4177                 parser_print_error_prefix();
4178                 fputs("Incompatible types ", stderr);
4179                 print_type_quoted(orig_type_left);
4180                 fputs(" and ", stderr);
4181                 print_type_quoted(orig_type_right);
4182                 fputs(" in assignment\n", stderr);
4183                 return;
4184         }
4185 }
4186
4187 static void semantic_logical_op(binary_expression_t *expression)
4188 {
4189         expression_t *left            = expression->left;
4190         expression_t *right           = expression->right;
4191         type_t       *orig_type_left  = left->base.datatype;
4192         type_t       *orig_type_right = right->base.datatype;
4193
4194         if(orig_type_left == NULL || orig_type_right == NULL)
4195                 return;
4196
4197         type_t *type_left  = skip_typeref(orig_type_left);
4198         type_t *type_right = skip_typeref(orig_type_right);
4199
4200         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
4201                 /* TODO: improve error message */
4202                 parser_print_error_prefix();
4203                 fprintf(stderr, "operation needs scalar types\n");
4204                 return;
4205         }
4206
4207         expression->expression.datatype = type_int;
4208 }
4209
4210 static bool has_const_fields(type_t *type)
4211 {
4212         (void) type;
4213         /* TODO */
4214         return false;
4215 }
4216
4217 static void semantic_binexpr_assign(binary_expression_t *expression)
4218 {
4219         expression_t *left           = expression->left;
4220         type_t       *orig_type_left = left->base.datatype;
4221
4222         if(orig_type_left == NULL)
4223                 return;
4224
4225         type_t *type_left = revert_automatic_type_conversion(left);
4226         type_left         = skip_typeref(orig_type_left);
4227
4228         /* must be a modifiable lvalue */
4229         if (is_type_array(type_left)) {
4230                 parser_print_error_prefix();
4231                 fprintf(stderr, "Cannot assign to arrays ('");
4232                 print_expression(left);
4233                 fprintf(stderr, "')\n");
4234                 return;
4235         }
4236         if(type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
4237                 parser_print_error_prefix();
4238                 fprintf(stderr, "assignment to readonly location '");
4239                 print_expression(left);
4240                 fprintf(stderr, "' (type ");
4241                 print_type_quoted(orig_type_left);
4242                 fprintf(stderr, ")\n");
4243                 return;
4244         }
4245         if(is_type_incomplete(type_left)) {
4246                 parser_print_error_prefix();
4247                 fprintf(stderr, "left-hand side of assignment '");
4248                 print_expression(left);
4249                 fprintf(stderr, "' has incomplete type ");
4250                 print_type_quoted(orig_type_left);
4251                 fprintf(stderr, "\n");
4252                 return;
4253         }
4254         if(is_type_compound(type_left) && has_const_fields(type_left)) {
4255                 parser_print_error_prefix();
4256                 fprintf(stderr, "can't assign to '");
4257                 print_expression(left);
4258                 fprintf(stderr, "' because compound type ");
4259                 print_type_quoted(orig_type_left);
4260                 fprintf(stderr, " has readonly fields\n");
4261                 return;
4262         }
4263
4264         semantic_assign(orig_type_left, &expression->right, "assignment");
4265
4266         expression->expression.datatype = orig_type_left;
4267 }
4268
4269 static void semantic_comma(binary_expression_t *expression)
4270 {
4271         expression->expression.datatype = expression->right->base.datatype;
4272 }
4273
4274 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, sfunc, lr) \
4275 static expression_t *parse_##binexpression_type(unsigned precedence,     \
4276                                                 expression_t *left)      \
4277 {                                                                        \
4278         eat(token_type);                                                     \
4279                                                                          \
4280         expression_t *right = parse_sub_expression(precedence + lr);         \
4281                                                                          \
4282         binary_expression_t *binexpr                                         \
4283                 = allocate_ast_zero(sizeof(binexpr[0]));                         \
4284         binexpr->expression.type     = EXPR_BINARY;                          \
4285         binexpr->type                = binexpression_type;                   \
4286         binexpr->left                = left;                                 \
4287         binexpr->right               = right;                                \
4288         sfunc(binexpr);                                                      \
4289                                                                          \
4290         return (expression_t*) binexpr;                                      \
4291 }
4292
4293 CREATE_BINEXPR_PARSER(',', BINEXPR_COMMA,          semantic_comma, 1)
4294 CREATE_BINEXPR_PARSER('*', BINEXPR_MUL,            semantic_binexpr_arithmetic, 1)
4295 CREATE_BINEXPR_PARSER('/', BINEXPR_DIV,            semantic_binexpr_arithmetic, 1)
4296 CREATE_BINEXPR_PARSER('%', BINEXPR_MOD,            semantic_binexpr_arithmetic, 1)
4297 CREATE_BINEXPR_PARSER('+', BINEXPR_ADD,            semantic_add, 1)
4298 CREATE_BINEXPR_PARSER('-', BINEXPR_SUB,            semantic_sub, 1)
4299 CREATE_BINEXPR_PARSER('<', BINEXPR_LESS,           semantic_comparison, 1)
4300 CREATE_BINEXPR_PARSER('>', BINEXPR_GREATER,        semantic_comparison, 1)
4301 CREATE_BINEXPR_PARSER('=', BINEXPR_ASSIGN,         semantic_binexpr_assign, 0)
4302 CREATE_BINEXPR_PARSER(T_EQUALEQUAL, BINEXPR_EQUAL, semantic_comparison, 1)
4303 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, BINEXPR_NOTEQUAL,
4304                       semantic_comparison, 1)
4305 CREATE_BINEXPR_PARSER(T_LESSEQUAL, BINEXPR_LESSEQUAL, semantic_comparison, 1)
4306 CREATE_BINEXPR_PARSER(T_GREATEREQUAL, BINEXPR_GREATEREQUAL,
4307                       semantic_comparison, 1)
4308 CREATE_BINEXPR_PARSER('&', BINEXPR_BITWISE_AND,    semantic_binexpr_arithmetic, 1)
4309 CREATE_BINEXPR_PARSER('|', BINEXPR_BITWISE_OR,     semantic_binexpr_arithmetic, 1)
4310 CREATE_BINEXPR_PARSER('^', BINEXPR_BITWISE_XOR,    semantic_binexpr_arithmetic, 1)
4311 CREATE_BINEXPR_PARSER(T_ANDAND, BINEXPR_LOGICAL_AND,  semantic_logical_op, 1)
4312 CREATE_BINEXPR_PARSER(T_PIPEPIPE, BINEXPR_LOGICAL_OR, semantic_logical_op, 1)
4313 CREATE_BINEXPR_PARSER(T_LESSLESS, BINEXPR_SHIFTLEFT,
4314                       semantic_shift_op, 1)
4315 CREATE_BINEXPR_PARSER(T_GREATERGREATER, BINEXPR_SHIFTRIGHT,
4316                       semantic_shift_op, 1)
4317 CREATE_BINEXPR_PARSER(T_PLUSEQUAL, BINEXPR_ADD_ASSIGN,
4318                       semantic_arithmetic_addsubb_assign, 0)
4319 CREATE_BINEXPR_PARSER(T_MINUSEQUAL, BINEXPR_SUB_ASSIGN,
4320                       semantic_arithmetic_addsubb_assign, 0)
4321 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL, BINEXPR_MUL_ASSIGN,
4322                       semantic_arithmetic_assign, 0)
4323 CREATE_BINEXPR_PARSER(T_SLASHEQUAL, BINEXPR_DIV_ASSIGN,
4324                       semantic_arithmetic_assign, 0)
4325 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL, BINEXPR_MOD_ASSIGN,
4326                       semantic_arithmetic_assign, 0)
4327 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL, BINEXPR_SHIFTLEFT_ASSIGN,
4328                       semantic_arithmetic_assign, 0)
4329 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL, BINEXPR_SHIFTRIGHT_ASSIGN,
4330                       semantic_arithmetic_assign, 0)
4331 CREATE_BINEXPR_PARSER(T_ANDEQUAL, BINEXPR_BITWISE_AND_ASSIGN,
4332                       semantic_arithmetic_assign, 0)
4333 CREATE_BINEXPR_PARSER(T_PIPEEQUAL, BINEXPR_BITWISE_OR_ASSIGN,
4334                       semantic_arithmetic_assign, 0)
4335 CREATE_BINEXPR_PARSER(T_CARETEQUAL, BINEXPR_BITWISE_XOR_ASSIGN,
4336                       semantic_arithmetic_assign, 0)
4337
4338 static expression_t *parse_sub_expression(unsigned precedence)
4339 {
4340         if(token.type < 0) {
4341                 return expected_expression_error();
4342         }
4343
4344         expression_parser_function_t *parser
4345                 = &expression_parsers[token.type];
4346         source_position_t             source_position = token.source_position;
4347         expression_t                 *left;
4348
4349         if(parser->parser != NULL) {
4350                 left = parser->parser(parser->precedence);
4351         } else {
4352                 left = parse_primary_expression();
4353         }
4354         assert(left != NULL);
4355         left->base.source_position = source_position;
4356
4357         while(true) {
4358                 if(token.type < 0) {
4359                         return expected_expression_error();
4360                 }
4361
4362                 parser = &expression_parsers[token.type];
4363                 if(parser->infix_parser == NULL)
4364                         break;
4365                 if(parser->infix_precedence < precedence)
4366                         break;
4367
4368                 left = parser->infix_parser(parser->infix_precedence, left);
4369
4370                 assert(left != NULL);
4371                 assert(left->type != EXPR_UNKNOWN);
4372                 left->base.source_position = source_position;
4373         }
4374
4375         return left;
4376 }
4377
4378 static expression_t *parse_expression(void)
4379 {
4380         return parse_sub_expression(1);
4381 }
4382
4383
4384
4385 static void register_expression_parser(parse_expression_function parser,
4386                                        int token_type, unsigned precedence)
4387 {
4388         expression_parser_function_t *entry = &expression_parsers[token_type];
4389
4390         if(entry->parser != NULL) {
4391                 fprintf(stderr, "for token ");
4392                 print_token_type(stderr, (token_type_t) token_type);
4393                 fprintf(stderr, "\n");
4394                 panic("trying to register multiple expression parsers for a token");
4395         }
4396         entry->parser     = parser;
4397         entry->precedence = precedence;
4398 }
4399
4400 static void register_expression_infix_parser(
4401                 parse_expression_infix_function parser, int token_type,
4402                 unsigned precedence)
4403 {
4404         expression_parser_function_t *entry = &expression_parsers[token_type];
4405
4406         if(entry->infix_parser != NULL) {
4407                 fprintf(stderr, "for token ");
4408                 print_token_type(stderr, (token_type_t) token_type);
4409                 fprintf(stderr, "\n");
4410                 panic("trying to register multiple infix expression parsers for a "
4411                       "token");
4412         }
4413         entry->infix_parser     = parser;
4414         entry->infix_precedence = precedence;
4415 }
4416
4417 static void init_expression_parsers(void)
4418 {
4419         memset(&expression_parsers, 0, sizeof(expression_parsers));
4420
4421         register_expression_infix_parser(parse_BINEXPR_MUL,         '*',        16);
4422         register_expression_infix_parser(parse_BINEXPR_DIV,         '/',        16);
4423         register_expression_infix_parser(parse_BINEXPR_MOD,         '%',        16);
4424         register_expression_infix_parser(parse_BINEXPR_SHIFTLEFT,   T_LESSLESS, 16);
4425         register_expression_infix_parser(parse_BINEXPR_SHIFTRIGHT,
4426                                                               T_GREATERGREATER, 16);
4427         register_expression_infix_parser(parse_BINEXPR_ADD,         '+',        15);
4428         register_expression_infix_parser(parse_BINEXPR_SUB,         '-',        15);
4429         register_expression_infix_parser(parse_BINEXPR_LESS,        '<',        14);
4430         register_expression_infix_parser(parse_BINEXPR_GREATER,     '>',        14);
4431         register_expression_infix_parser(parse_BINEXPR_LESSEQUAL, T_LESSEQUAL,  14);
4432         register_expression_infix_parser(parse_BINEXPR_GREATEREQUAL,
4433                                                                 T_GREATEREQUAL, 14);
4434         register_expression_infix_parser(parse_BINEXPR_EQUAL,     T_EQUALEQUAL, 13);
4435         register_expression_infix_parser(parse_BINEXPR_NOTEQUAL,
4436                                                         T_EXCLAMATIONMARKEQUAL, 13);
4437         register_expression_infix_parser(parse_BINEXPR_BITWISE_AND, '&',        12);
4438         register_expression_infix_parser(parse_BINEXPR_BITWISE_XOR, '^',        11);
4439         register_expression_infix_parser(parse_BINEXPR_BITWISE_OR,  '|',        10);
4440         register_expression_infix_parser(parse_BINEXPR_LOGICAL_AND, T_ANDAND,    9);
4441         register_expression_infix_parser(parse_BINEXPR_LOGICAL_OR,  T_PIPEPIPE,  8);
4442         register_expression_infix_parser(parse_conditional_expression, '?',      7);
4443         register_expression_infix_parser(parse_BINEXPR_ASSIGN,      '=',         2);
4444         register_expression_infix_parser(parse_BINEXPR_ADD_ASSIGN, T_PLUSEQUAL,  2);
4445         register_expression_infix_parser(parse_BINEXPR_SUB_ASSIGN, T_MINUSEQUAL, 2);
4446         register_expression_infix_parser(parse_BINEXPR_MUL_ASSIGN,
4447                                                                 T_ASTERISKEQUAL, 2);
4448         register_expression_infix_parser(parse_BINEXPR_DIV_ASSIGN, T_SLASHEQUAL, 2);
4449         register_expression_infix_parser(parse_BINEXPR_MOD_ASSIGN,
4450                                                                  T_PERCENTEQUAL, 2);
4451         register_expression_infix_parser(parse_BINEXPR_SHIFTLEFT_ASSIGN,
4452                                                                 T_LESSLESSEQUAL, 2);
4453         register_expression_infix_parser(parse_BINEXPR_SHIFTRIGHT_ASSIGN,
4454                                                           T_GREATERGREATEREQUAL, 2);
4455         register_expression_infix_parser(parse_BINEXPR_BITWISE_AND_ASSIGN,
4456                                                                      T_ANDEQUAL, 2);
4457         register_expression_infix_parser(parse_BINEXPR_BITWISE_OR_ASSIGN,
4458                                                                     T_PIPEEQUAL, 2);
4459         register_expression_infix_parser(parse_BINEXPR_BITWISE_XOR_ASSIGN,
4460                                                                    T_CARETEQUAL, 2);
4461
4462         register_expression_infix_parser(parse_BINEXPR_COMMA,       ',',         1);
4463
4464         register_expression_infix_parser(parse_array_expression,        '[',    30);
4465         register_expression_infix_parser(parse_call_expression,         '(',    30);
4466         register_expression_infix_parser(parse_select_expression,       '.',    30);
4467         register_expression_infix_parser(parse_select_expression,
4468                                                                 T_MINUSGREATER, 30);
4469         register_expression_infix_parser(parse_UNEXPR_POSTFIX_INCREMENT,
4470                                          T_PLUSPLUS, 30);
4471         register_expression_infix_parser(parse_UNEXPR_POSTFIX_DECREMENT,
4472                                          T_MINUSMINUS, 30);
4473
4474         register_expression_parser(parse_UNEXPR_NEGATE,           '-',          25);
4475         register_expression_parser(parse_UNEXPR_PLUS,             '+',          25);
4476         register_expression_parser(parse_UNEXPR_NOT,              '!',          25);
4477         register_expression_parser(parse_UNEXPR_BITWISE_NEGATE,   '~',          25);
4478         register_expression_parser(parse_UNEXPR_DEREFERENCE,      '*',          25);
4479         register_expression_parser(parse_UNEXPR_TAKE_ADDRESS,     '&',          25);
4480         register_expression_parser(parse_UNEXPR_PREFIX_INCREMENT, T_PLUSPLUS,   25);
4481         register_expression_parser(parse_UNEXPR_PREFIX_DECREMENT, T_MINUSMINUS, 25);
4482         register_expression_parser(parse_sizeof,                  T_sizeof,     25);
4483         register_expression_parser(parse_extension,            T___extension__, 25);
4484         register_expression_parser(parse_builtin_classify_type,
4485                                                      T___builtin_classify_type, 25);
4486 }
4487
4488 static asm_constraint_t *parse_asm_constraints(void)
4489 {
4490         asm_constraint_t *result = NULL;
4491         asm_constraint_t *last   = NULL;
4492
4493         while(token.type == T_STRING_LITERAL || token.type == '[') {
4494                 asm_constraint_t *constraint = allocate_ast_zero(sizeof(constraint[0]));
4495                 memset(constraint, 0, sizeof(constraint[0]));
4496
4497                 if(token.type == '[') {
4498                         eat('[');
4499                         if(token.type != T_IDENTIFIER) {
4500                                 parse_error_expected("while parsing asm constraint",
4501                                                      T_IDENTIFIER, 0);
4502                                 return NULL;
4503                         }
4504                         constraint->symbol = token.v.symbol;
4505
4506                         expect(']');
4507                 }
4508
4509                 constraint->constraints = parse_string_literals();
4510                 expect('(');
4511                 constraint->expression = parse_expression();
4512                 expect(')');
4513
4514                 if(last != NULL) {
4515                         last->next = constraint;
4516                 } else {
4517                         result = constraint;
4518                 }
4519                 last = constraint;
4520
4521                 if(token.type != ',')
4522                         break;
4523                 eat(',');
4524         }
4525
4526         return result;
4527 }
4528
4529 static asm_clobber_t *parse_asm_clobbers(void)
4530 {
4531         asm_clobber_t *result = NULL;
4532         asm_clobber_t *last   = NULL;
4533
4534         while(token.type == T_STRING_LITERAL) {
4535                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
4536                 clobber->clobber       = parse_string_literals();
4537
4538                 if(last != NULL) {
4539                         last->next = clobber;
4540                 } else {
4541                         result = clobber;
4542                 }
4543                 last = clobber;
4544
4545                 if(token.type != ',')
4546                         break;
4547                 eat(',');
4548         }
4549
4550         return result;
4551 }
4552
4553 static statement_t *parse_asm_statement(void)
4554 {
4555         eat(T_asm);
4556
4557         statement_t *statement          = allocate_statement_zero(STATEMENT_ASM);
4558         statement->base.source_position = token.source_position;
4559
4560         asm_statement_t *asm_statement = &statement->asms;
4561
4562         if(token.type == T_volatile) {
4563                 next_token();
4564                 asm_statement->is_volatile = true;
4565         }
4566
4567         expect('(');
4568         asm_statement->asm_text = parse_string_literals();
4569
4570         if(token.type != ':')
4571                 goto end_of_asm;
4572         eat(':');
4573
4574         asm_statement->inputs = parse_asm_constraints();
4575         if(token.type != ':')
4576                 goto end_of_asm;
4577         eat(':');
4578
4579         asm_statement->outputs = parse_asm_constraints();
4580         if(token.type != ':')
4581                 goto end_of_asm;
4582         eat(':');
4583
4584         asm_statement->clobbers = parse_asm_clobbers();
4585
4586 end_of_asm:
4587         expect(')');
4588         expect(';');
4589         return statement;
4590 }
4591
4592 static statement_t *parse_case_statement(void)
4593 {
4594         eat(T_case);
4595
4596         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
4597
4598         statement->base.source_position  = token.source_position;
4599         statement->case_label.expression = parse_expression();
4600
4601         expect(':');
4602         statement->case_label.label_statement = parse_statement();
4603
4604         return statement;
4605 }
4606
4607 static statement_t *parse_default_statement(void)
4608 {
4609         eat(T_default);
4610
4611         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
4612
4613         statement->base.source_position = token.source_position;
4614
4615         expect(':');
4616         statement->label.label_statement = parse_statement();
4617
4618         return statement;
4619 }
4620
4621 static declaration_t *get_label(symbol_t *symbol)
4622 {
4623         declaration_t *candidate = get_declaration(symbol, NAMESPACE_LABEL);
4624         assert(current_function != NULL);
4625         /* if we found a label in the same function, then we already created the
4626          * declaration */
4627         if(candidate != NULL
4628                         && candidate->parent_context == &current_function->context) {
4629                 return candidate;
4630         }
4631
4632         /* otherwise we need to create a new one */
4633         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
4634         declaration->namespc       = NAMESPACE_LABEL;
4635         declaration->symbol        = symbol;
4636
4637         label_push(declaration);
4638
4639         return declaration;
4640 }
4641
4642 static statement_t *parse_label_statement(void)
4643 {
4644         assert(token.type == T_IDENTIFIER);
4645         symbol_t *symbol = token.v.symbol;
4646         next_token();
4647
4648         declaration_t *label = get_label(symbol);
4649
4650         /* if source position is already set then the label is defined twice,
4651          * otherwise it was just mentioned in a goto so far */
4652         if(label->source_position.input_name != NULL) {
4653                 parser_print_error_prefix();
4654                 fprintf(stderr, "duplicate label '%s'\n", symbol->string);
4655                 parser_print_error_prefix_pos(label->source_position);
4656                 fprintf(stderr, "previous definition of '%s' was here\n",
4657                         symbol->string);
4658         } else {
4659                 label->source_position = token.source_position;
4660         }
4661
4662         label_statement_t *label_statement = allocate_ast_zero(sizeof(label[0]));
4663
4664         label_statement->statement.type            = STATEMENT_LABEL;
4665         label_statement->statement.source_position = token.source_position;
4666         label_statement->label                     = label;
4667
4668         expect(':');
4669
4670         if(token.type == '}') {
4671                 parse_error("label at end of compound statement");
4672                 return (statement_t*) label_statement;
4673         } else {
4674                 label_statement->label_statement = parse_statement();
4675         }
4676
4677         return (statement_t*) label_statement;
4678 }
4679
4680 static statement_t *parse_if(void)
4681 {
4682         eat(T_if);
4683
4684         if_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4685         statement->statement.type            = STATEMENT_IF;
4686         statement->statement.source_position = token.source_position;
4687
4688         expect('(');
4689         statement->condition = parse_expression();
4690         expect(')');
4691
4692         statement->true_statement = parse_statement();
4693         if(token.type == T_else) {
4694                 next_token();
4695                 statement->false_statement = parse_statement();
4696         }
4697
4698         return (statement_t*) statement;
4699 }
4700
4701 static statement_t *parse_switch(void)
4702 {
4703         eat(T_switch);
4704
4705         switch_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4706         statement->statement.type            = STATEMENT_SWITCH;
4707         statement->statement.source_position = token.source_position;
4708
4709         expect('(');
4710         statement->expression = parse_expression();
4711         expect(')');
4712         statement->body = parse_statement();
4713
4714         return (statement_t*) statement;
4715 }
4716
4717 static statement_t *parse_while(void)
4718 {
4719         eat(T_while);
4720
4721         while_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4722         statement->statement.type            = STATEMENT_WHILE;
4723         statement->statement.source_position = token.source_position;
4724
4725         expect('(');
4726         statement->condition = parse_expression();
4727         expect(')');
4728         statement->body = parse_statement();
4729
4730         return (statement_t*) statement;
4731 }
4732
4733 static statement_t *parse_do(void)
4734 {
4735         eat(T_do);
4736
4737         do_while_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4738         statement->statement.type            = STATEMENT_DO_WHILE;
4739         statement->statement.source_position = token.source_position;
4740
4741         statement->body = parse_statement();
4742         expect(T_while);
4743         expect('(');
4744         statement->condition = parse_expression();
4745         expect(')');
4746         expect(';');
4747
4748         return (statement_t*) statement;
4749 }
4750
4751 static statement_t *parse_for(void)
4752 {
4753         eat(T_for);
4754
4755         for_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4756         statement->statement.type            = STATEMENT_FOR;
4757         statement->statement.source_position = token.source_position;
4758
4759         expect('(');
4760
4761         int         top          = environment_top();
4762         context_t  *last_context = context;
4763         set_context(&statement->context);
4764
4765         if(token.type != ';') {
4766                 if(is_declaration_specifier(&token, false)) {
4767                         parse_declaration(record_declaration);
4768                 } else {
4769                         statement->initialisation = parse_expression();
4770                         expect(';');
4771                 }
4772         } else {
4773                 expect(';');
4774         }
4775
4776         if(token.type != ';') {
4777                 statement->condition = parse_expression();
4778         }
4779         expect(';');
4780         if(token.type != ')') {
4781                 statement->step = parse_expression();
4782         }
4783         expect(')');
4784         statement->body = parse_statement();
4785
4786         assert(context == &statement->context);
4787         set_context(last_context);
4788         environment_pop_to(top);
4789
4790         return (statement_t*) statement;
4791 }
4792
4793 static statement_t *parse_goto(void)
4794 {
4795         eat(T_goto);
4796
4797         if(token.type != T_IDENTIFIER) {
4798                 parse_error_expected("while parsing goto", T_IDENTIFIER, 0);
4799                 eat_statement();
4800                 return NULL;
4801         }
4802         symbol_t *symbol = token.v.symbol;
4803         next_token();
4804
4805         declaration_t *label = get_label(symbol);
4806
4807         goto_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4808
4809         statement->statement.type            = STATEMENT_GOTO;
4810         statement->statement.source_position = token.source_position;
4811
4812         statement->label = label;
4813
4814         expect(';');
4815
4816         return (statement_t*) statement;
4817 }
4818
4819 static statement_t *parse_continue(void)
4820 {
4821         eat(T_continue);
4822         expect(';');
4823
4824         statement_t *statement          = allocate_ast_zero(sizeof(statement[0]));
4825         statement->type                 = STATEMENT_CONTINUE;
4826         statement->base.source_position = token.source_position;
4827
4828         return statement;
4829 }
4830
4831 static statement_t *parse_break(void)
4832 {
4833         eat(T_break);
4834         expect(';');
4835
4836         statement_t *statement          = allocate_ast_zero(sizeof(statement[0]));
4837         statement->type                 = STATEMENT_BREAK;
4838         statement->base.source_position = token.source_position;
4839
4840         return statement;
4841 }
4842
4843 static statement_t *parse_return(void)
4844 {
4845         eat(T_return);
4846
4847         return_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4848
4849         statement->statement.type            = STATEMENT_RETURN;
4850         statement->statement.source_position = token.source_position;
4851
4852         assert(is_type_function(current_function->type));
4853         function_type_t *function_type = &current_function->type->function;
4854         type_t          *return_type   = function_type->return_type;
4855
4856         expression_t *return_value = NULL;
4857         if(token.type != ';') {
4858                 return_value = parse_expression();
4859         }
4860         expect(';');
4861
4862         if(return_type == NULL)
4863                 return (statement_t*) statement;
4864
4865         return_type = skip_typeref(return_type);
4866
4867         if(return_value != NULL) {
4868                 type_t *return_value_type = skip_typeref(return_value->base.datatype);
4869
4870                 if(is_type_atomic(return_type, ATOMIC_TYPE_VOID)
4871                                 && !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
4872                         parse_warning("'return' with a value, in function returning void");
4873                         return_value = NULL;
4874                 } else {
4875                         if(return_type != NULL) {
4876                                 semantic_assign(return_type, &return_value, "'return'");
4877                         }
4878                 }
4879         } else {
4880                 if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
4881                         parse_warning("'return' without value, in function returning "
4882                                       "non-void");
4883                 }
4884         }
4885         statement->return_value = return_value;
4886
4887         return (statement_t*) statement;
4888 }
4889
4890 static statement_t *parse_declaration_statement(void)
4891 {
4892         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
4893
4894         statement->base.source_position = token.source_position;
4895
4896         declaration_t *before = last_declaration;
4897         parse_declaration(record_declaration);
4898
4899         if(before == NULL) {
4900                 statement->declaration.declarations_begin = context->declarations;
4901         } else {
4902                 statement->declaration.declarations_begin = before->next;
4903         }
4904         statement->declaration.declarations_end = last_declaration;
4905
4906         return statement;
4907 }
4908
4909 static statement_t *parse_expression_statement(void)
4910 {
4911         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
4912
4913         statement->base.source_position  = token.source_position;
4914         statement->expression.expression = parse_expression();
4915
4916         expect(';');
4917
4918         return statement;
4919 }
4920
4921 static statement_t *parse_statement(void)
4922 {
4923         statement_t   *statement = NULL;
4924
4925         /* declaration or statement */
4926         switch(token.type) {
4927         case T_asm:
4928                 statement = parse_asm_statement();
4929                 break;
4930
4931         case T_case:
4932                 statement = parse_case_statement();
4933                 break;
4934
4935         case T_default:
4936                 statement = parse_default_statement();
4937                 break;
4938
4939         case '{':
4940                 statement = parse_compound_statement();
4941                 break;
4942
4943         case T_if:
4944                 statement = parse_if();
4945                 break;
4946
4947         case T_switch:
4948                 statement = parse_switch();
4949                 break;
4950
4951         case T_while:
4952                 statement = parse_while();
4953                 break;
4954
4955         case T_do:
4956                 statement = parse_do();
4957                 break;
4958
4959         case T_for:
4960                 statement = parse_for();
4961                 break;
4962
4963         case T_goto:
4964                 statement = parse_goto();
4965                 break;
4966
4967         case T_continue:
4968                 statement = parse_continue();
4969                 break;
4970
4971         case T_break:
4972                 statement = parse_break();
4973                 break;
4974
4975         case T_return:
4976                 statement = parse_return();
4977                 break;
4978
4979         case ';':
4980                 next_token();
4981                 statement = NULL;
4982                 break;
4983
4984         case T_IDENTIFIER:
4985                 if(look_ahead(1)->type == ':') {
4986                         statement = parse_label_statement();
4987                         break;
4988                 }
4989
4990                 if(is_typedef_symbol(token.v.symbol)) {
4991                         statement = parse_declaration_statement();
4992                         break;
4993                 }
4994
4995                 statement = parse_expression_statement();
4996                 break;
4997
4998         case T___extension__:
4999                 /* this can be a prefix to a declaration or an expression statement */
5000                 /* we simply eat it now and parse the rest with tail recursion */
5001                 do {
5002                         next_token();
5003                 } while(token.type == T___extension__);
5004                 statement = parse_statement();
5005                 break;
5006
5007         DECLARATION_START
5008                 statement = parse_declaration_statement();
5009                 break;
5010
5011         default:
5012                 statement = parse_expression_statement();
5013                 break;
5014         }
5015
5016         assert(statement == NULL
5017                         || statement->base.source_position.input_name != NULL);
5018
5019         return statement;
5020 }
5021
5022 static statement_t *parse_compound_statement(void)
5023 {
5024         compound_statement_t *compound_statement
5025                 = allocate_ast_zero(sizeof(compound_statement[0]));
5026         compound_statement->statement.type            = STATEMENT_COMPOUND;
5027         compound_statement->statement.source_position = token.source_position;
5028
5029         eat('{');
5030
5031         int        top          = environment_top();
5032         context_t *last_context = context;
5033         set_context(&compound_statement->context);
5034
5035         statement_t *last_statement = NULL;
5036
5037         while(token.type != '}' && token.type != T_EOF) {
5038                 statement_t *statement = parse_statement();
5039                 if(statement == NULL)
5040                         continue;
5041
5042                 if(last_statement != NULL) {
5043                         last_statement->base.next = statement;
5044                 } else {
5045                         compound_statement->statements = statement;
5046                 }
5047
5048                 while(statement->base.next != NULL)
5049                         statement = statement->base.next;
5050
5051                 last_statement = statement;
5052         }
5053
5054         if(token.type != '}') {
5055                 parser_print_error_prefix_pos(
5056                                 compound_statement->statement.source_position);
5057                 fprintf(stderr, "end of file while looking for closing '}'\n");
5058         }
5059         next_token();
5060
5061         assert(context == &compound_statement->context);
5062         set_context(last_context);
5063         environment_pop_to(top);
5064
5065         return (statement_t*) compound_statement;
5066 }
5067
5068 static void initialize_builtins(void)
5069 {
5070         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__", type_int);
5071         type_wchar_t_ptr = make_pointer_type(type_wchar_t, TYPE_QUALIFIER_NONE);
5072         type_size_t      = make_global_typedef("__SIZE_TYPE__",
5073                         make_atomic_type(ATOMIC_TYPE_ULONG, TYPE_QUALIFIER_NONE));
5074         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",
5075                         make_atomic_type(ATOMIC_TYPE_LONG, TYPE_QUALIFIER_NONE));
5076 }
5077
5078 static translation_unit_t *parse_translation_unit(void)
5079 {
5080         translation_unit_t *unit = allocate_ast_zero(sizeof(unit[0]));
5081
5082         assert(global_context == NULL);
5083         global_context = &unit->context;
5084
5085         assert(context == NULL);
5086         set_context(&unit->context);
5087
5088         initialize_builtins();
5089
5090         while(token.type != T_EOF) {
5091                 parse_external_declaration();
5092         }
5093
5094         assert(context == &unit->context);
5095         context          = NULL;
5096         last_declaration = NULL;
5097
5098         assert(global_context == &unit->context);
5099         global_context = NULL;
5100
5101         return unit;
5102 }
5103
5104 translation_unit_t *parse(void)
5105 {
5106         environment_stack = NEW_ARR_F(stack_entry_t, 0);
5107         label_stack       = NEW_ARR_F(stack_entry_t, 0);
5108         found_error       = false;
5109
5110         type_set_output(stderr);
5111         ast_set_output(stderr);
5112
5113         lookahead_bufpos = 0;
5114         for(int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
5115                 next_token();
5116         }
5117         translation_unit_t *unit = parse_translation_unit();
5118
5119         DEL_ARR_F(environment_stack);
5120         DEL_ARR_F(label_stack);
5121
5122         if(found_error)
5123                 return NULL;
5124
5125         return unit;
5126 }
5127
5128 void init_parser(void)
5129 {
5130         init_expression_parsers();
5131         obstack_init(&temp_obst);
5132
5133         type_int         = make_atomic_type(ATOMIC_TYPE_INT, TYPE_QUALIFIER_NONE);
5134         type_long_double = make_atomic_type(ATOMIC_TYPE_LONG_DOUBLE,
5135                                             TYPE_QUALIFIER_NONE);
5136         type_double      = make_atomic_type(ATOMIC_TYPE_DOUBLE,
5137                                             TYPE_QUALIFIER_NONE);
5138         type_float       = make_atomic_type(ATOMIC_TYPE_FLOAT, TYPE_QUALIFIER_NONE);
5139         type_char        = make_atomic_type(ATOMIC_TYPE_CHAR, TYPE_QUALIFIER_NONE);
5140         type_void        = make_atomic_type(ATOMIC_TYPE_VOID, TYPE_QUALIFIER_NONE);
5141         type_void_ptr    = make_pointer_type(type_void, TYPE_QUALIFIER_NONE);
5142         type_string      = make_pointer_type(type_char, TYPE_QUALIFIER_NONE);
5143
5144         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
5145         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
5146 }
5147
5148 void exit_parser(void)
5149 {
5150         obstack_free(&temp_obst, NULL);
5151 }