add missing skip_typerefs
[cparser] / parser.c
1 #include <config.h>
2
3 #include <assert.h>
4 #include <stdarg.h>
5 #include <stdbool.h>
6
7 #include "diagnostic.h"
8 #include "format_check.h"
9 #include "parser.h"
10 #include "lexer.h"
11 #include "token_t.h"
12 #include "types.h"
13 #include "type_t.h"
14 #include "type_hash.h"
15 #include "ast_t.h"
16 #include "lang_features.h"
17 #include "warning.h"
18 #include "adt/bitfiddle.h"
19 #include "adt/error.h"
20 #include "adt/array.h"
21
22 //#define PRINT_TOKENS
23 #define MAX_LOOKAHEAD 2
24
25 typedef struct {
26         declaration_t *old_declaration;
27         symbol_t      *symbol;
28         unsigned short namespc;
29 } stack_entry_t;
30
31 typedef struct declaration_specifiers_t  declaration_specifiers_t;
32 struct declaration_specifiers_t {
33         source_position_t  source_position;
34         unsigned char      declared_storage_class;
35         bool               is_inline;
36         decl_modifiers_t   decl_modifiers;
37         type_t            *type;
38 };
39
40 typedef declaration_t* (*parsed_declaration_func) (declaration_t *declaration);
41
42 static token_t             token;
43 static token_t             lookahead_buffer[MAX_LOOKAHEAD];
44 static int                 lookahead_bufpos;
45 static stack_entry_t      *environment_stack = NULL;
46 static stack_entry_t      *label_stack       = NULL;
47 static scope_t            *global_scope      = NULL;
48 static scope_t            *scope             = NULL;
49 static declaration_t      *last_declaration  = NULL;
50 static declaration_t      *current_function  = NULL;
51 static switch_statement_t *current_switch    = NULL;
52 static statement_t        *current_loop      = NULL;
53 static goto_statement_t   *goto_first        = NULL;
54 static goto_statement_t   *goto_last         = NULL;
55 static label_statement_t  *label_first       = NULL;
56 static label_statement_t  *label_last        = NULL;
57 static struct obstack      temp_obst;
58
59 /** The current source position. */
60 #define HERE token.source_position
61
62 static type_t *type_valist;
63
64 static statement_t *parse_compound_statement(void);
65 static statement_t *parse_statement(void);
66
67 static expression_t *parse_sub_expression(unsigned precedence);
68 static expression_t *parse_expression(void);
69 static type_t       *parse_typename(void);
70
71 static void parse_compound_type_entries(declaration_t *compound_declaration);
72 static declaration_t *parse_declarator(
73                 const declaration_specifiers_t *specifiers, bool may_be_abstract);
74 static declaration_t *record_declaration(declaration_t *declaration);
75
76 static void semantic_comparison(binary_expression_t *expression);
77
78 #define STORAGE_CLASSES     \
79         case T_typedef:         \
80         case T_extern:          \
81         case T_static:          \
82         case T_auto:            \
83         case T_register:
84
85 #define TYPE_QUALIFIERS     \
86         case T_const:           \
87         case T_restrict:        \
88         case T_volatile:        \
89         case T_inline:          \
90         case T_forceinline:
91
92 #ifdef PROVIDE_COMPLEX
93 #define COMPLEX_SPECIFIERS  \
94         case T__Complex:
95 #define IMAGINARY_SPECIFIERS \
96         case T__Imaginary:
97 #else
98 #define COMPLEX_SPECIFIERS
99 #define IMAGINARY_SPECIFIERS
100 #endif
101
102 #define TYPE_SPECIFIERS       \
103         case T_void:              \
104         case T_char:              \
105         case T_short:             \
106         case T_int:               \
107         case T_long:              \
108         case T_float:             \
109         case T_double:            \
110         case T_signed:            \
111         case T_unsigned:          \
112         case T__Bool:             \
113         case T_struct:            \
114         case T_union:             \
115         case T_enum:              \
116         case T___typeof__:        \
117         case T___builtin_va_list: \
118         COMPLEX_SPECIFIERS        \
119         IMAGINARY_SPECIFIERS
120
121 #define DECLARATION_START   \
122         STORAGE_CLASSES         \
123         TYPE_QUALIFIERS         \
124         TYPE_SPECIFIERS
125
126 #define TYPENAME_START      \
127         TYPE_QUALIFIERS         \
128         TYPE_SPECIFIERS
129
130 /**
131  * Allocate an AST node with given size and
132  * initialize all fields with zero.
133  */
134 static void *allocate_ast_zero(size_t size)
135 {
136         void *res = allocate_ast(size);
137         memset(res, 0, size);
138         return res;
139 }
140
141 static declaration_t *allocate_declaration_zero(void)
142 {
143         declaration_t *declaration = allocate_ast_zero(sizeof(declaration_t));
144         declaration->type = type_error_type;
145         return declaration;
146 }
147
148 /**
149  * Returns the size of a statement node.
150  *
151  * @param kind  the statement kind
152  */
153 static size_t get_statement_struct_size(statement_kind_t kind)
154 {
155         static const size_t sizes[] = {
156                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
157                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
158                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
159                 [STATEMENT_IF]          = sizeof(if_statement_t),
160                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
161                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
162                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
163                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
164                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
165                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
166                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
167                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
168                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
169                 [STATEMENT_FOR]         = sizeof(for_statement_t),
170                 [STATEMENT_ASM]         = sizeof(asm_statement_t)
171         };
172         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
173         assert(sizes[kind] != 0);
174         return sizes[kind];
175 }
176
177 /**
178  * Allocate a statement node of given kind and initialize all
179  * fields with zero.
180  */
181 static statement_t *allocate_statement_zero(statement_kind_t kind)
182 {
183         size_t       size = get_statement_struct_size(kind);
184         statement_t *res  = allocate_ast_zero(size);
185
186         res->base.kind = kind;
187         return res;
188 }
189
190 /**
191  * Returns the size of an expression node.
192  *
193  * @param kind  the expression kind
194  */
195 static size_t get_expression_struct_size(expression_kind_t kind)
196 {
197         static const size_t sizes[] = {
198                 [EXPR_INVALID]             = sizeof(expression_base_t),
199                 [EXPR_REFERENCE]           = sizeof(reference_expression_t),
200                 [EXPR_CONST]               = sizeof(const_expression_t),
201                 [EXPR_CHAR_CONST]          = sizeof(const_expression_t),
202                 [EXPR_STRING_LITERAL]      = sizeof(string_literal_expression_t),
203                 [EXPR_WIDE_STRING_LITERAL] = sizeof(wide_string_literal_expression_t),
204                 [EXPR_COMPOUND_LITERAL]    = sizeof(compound_literal_expression_t),
205                 [EXPR_CALL]                = sizeof(call_expression_t),
206                 [EXPR_UNARY_FIRST]         = sizeof(unary_expression_t),
207                 [EXPR_BINARY_FIRST]        = sizeof(binary_expression_t),
208                 [EXPR_CONDITIONAL]         = sizeof(conditional_expression_t),
209                 [EXPR_SELECT]              = sizeof(select_expression_t),
210                 [EXPR_ARRAY_ACCESS]        = sizeof(array_access_expression_t),
211                 [EXPR_SIZEOF]              = sizeof(typeprop_expression_t),
212                 [EXPR_ALIGNOF]             = sizeof(typeprop_expression_t),
213                 [EXPR_CLASSIFY_TYPE]       = sizeof(classify_type_expression_t),
214                 [EXPR_FUNCTION]            = sizeof(string_literal_expression_t),
215                 [EXPR_PRETTY_FUNCTION]     = sizeof(string_literal_expression_t),
216                 [EXPR_BUILTIN_SYMBOL]      = sizeof(builtin_symbol_expression_t),
217                 [EXPR_BUILTIN_CONSTANT_P]  = sizeof(builtin_constant_expression_t),
218                 [EXPR_BUILTIN_PREFETCH]    = sizeof(builtin_prefetch_expression_t),
219                 [EXPR_OFFSETOF]            = sizeof(offsetof_expression_t),
220                 [EXPR_VA_START]            = sizeof(va_start_expression_t),
221                 [EXPR_VA_ARG]              = sizeof(va_arg_expression_t),
222                 [EXPR_STATEMENT]           = sizeof(statement_expression_t),
223         };
224         if(kind >= EXPR_UNARY_FIRST && kind <= EXPR_UNARY_LAST) {
225                 return sizes[EXPR_UNARY_FIRST];
226         }
227         if(kind >= EXPR_BINARY_FIRST && kind <= EXPR_BINARY_LAST) {
228                 return sizes[EXPR_BINARY_FIRST];
229         }
230         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
231         assert(sizes[kind] != 0);
232         return sizes[kind];
233 }
234
235 /**
236  * Allocate an expression node of given kind and initialize all
237  * fields with zero.
238  */
239 static expression_t *allocate_expression_zero(expression_kind_t kind)
240 {
241         size_t        size = get_expression_struct_size(kind);
242         expression_t *res  = allocate_ast_zero(size);
243
244         res->base.kind = kind;
245         res->base.type = type_error_type;
246         return res;
247 }
248
249 /**
250  * Returns the size of a type node.
251  *
252  * @param kind  the type kind
253  */
254 static size_t get_type_struct_size(type_kind_t kind)
255 {
256         static const size_t sizes[] = {
257                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
258                 [TYPE_BITFIELD]        = sizeof(bitfield_type_t),
259                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
260                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
261                 [TYPE_ENUM]            = sizeof(enum_type_t),
262                 [TYPE_FUNCTION]        = sizeof(function_type_t),
263                 [TYPE_POINTER]         = sizeof(pointer_type_t),
264                 [TYPE_ARRAY]           = sizeof(array_type_t),
265                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
266                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
267                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
268         };
269         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
270         assert(kind <= TYPE_TYPEOF);
271         assert(sizes[kind] != 0);
272         return sizes[kind];
273 }
274
275 /**
276  * Allocate a type node of given kind and initialize all
277  * fields with zero.
278  */
279 static type_t *allocate_type_zero(type_kind_t kind, source_position_t source_position)
280 {
281         size_t  size = get_type_struct_size(kind);
282         type_t *res  = obstack_alloc(type_obst, size);
283         memset(res, 0, size);
284
285         res->base.kind            = kind;
286         res->base.source_position = source_position;
287         return res;
288 }
289
290 /**
291  * Returns the size of an initializer node.
292  *
293  * @param kind  the initializer kind
294  */
295 static size_t get_initializer_size(initializer_kind_t kind)
296 {
297         static const size_t sizes[] = {
298                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
299                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
300                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
301                 [INITIALIZER_LIST]        = sizeof(initializer_list_t),
302                 [INITIALIZER_DESIGNATOR]  = sizeof(initializer_designator_t)
303         };
304         assert(kind < sizeof(sizes) / sizeof(*sizes));
305         assert(sizes[kind] != 0);
306         return sizes[kind];
307 }
308
309 /**
310  * Allocate an initializer node of given kind and initialize all
311  * fields with zero.
312  */
313 static initializer_t *allocate_initializer_zero(initializer_kind_t kind)
314 {
315         initializer_t *result = allocate_ast_zero(get_initializer_size(kind));
316         result->kind          = kind;
317
318         return result;
319 }
320
321 /**
322  * Free a type from the type obstack.
323  */
324 static void free_type(void *type)
325 {
326         obstack_free(type_obst, type);
327 }
328
329 /**
330  * Returns the index of the top element of the environment stack.
331  */
332 static size_t environment_top(void)
333 {
334         return ARR_LEN(environment_stack);
335 }
336
337 /**
338  * Returns the index of the top element of the label stack.
339  */
340 static size_t label_top(void)
341 {
342         return ARR_LEN(label_stack);
343 }
344
345
346 /**
347  * Return the next token.
348  */
349 static inline void next_token(void)
350 {
351         token                              = lookahead_buffer[lookahead_bufpos];
352         lookahead_buffer[lookahead_bufpos] = lexer_token;
353         lexer_next_token();
354
355         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
356
357 #ifdef PRINT_TOKENS
358         print_token(stderr, &token);
359         fprintf(stderr, "\n");
360 #endif
361 }
362
363 /**
364  * Return the next token with a given lookahead.
365  */
366 static inline const token_t *look_ahead(int num)
367 {
368         assert(num > 0 && num <= MAX_LOOKAHEAD);
369         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
370         return &lookahead_buffer[pos];
371 }
372
373 #define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
374
375 /**
376  * Report a parse error because an expected token was not found.
377  */
378 static void parse_error_expected(const char *message, ...)
379 {
380         if(message != NULL) {
381                 errorf(HERE, "%s", message);
382         }
383         va_list ap;
384         va_start(ap, message);
385         errorf(HERE, "got %K, expected %#k", &token, &ap, ", ");
386         va_end(ap);
387 }
388
389 /**
390  * Report a type error.
391  */
392 static void type_error(const char *msg, const source_position_t source_position,
393                        type_t *type)
394 {
395         errorf(source_position, "%s, but found type '%T'", msg, type);
396 }
397
398 /**
399  * Report an incompatible type.
400  */
401 static void type_error_incompatible(const char *msg,
402                 const source_position_t source_position, type_t *type1, type_t *type2)
403 {
404         errorf(source_position, "%s, incompatible types: '%T' - '%T'", msg, type1, type2);
405 }
406
407 /**
408  * Eat an complete block, ie. '{ ... }'.
409  */
410 static void eat_block(void)
411 {
412         if(token.type == '{')
413                 next_token();
414
415         while(token.type != '}') {
416                 if(token.type == T_EOF)
417                         return;
418                 if(token.type == '{') {
419                         eat_block();
420                         continue;
421                 }
422                 next_token();
423         }
424         eat('}');
425 }
426
427 /**
428  * Eat a statement until an ';' token.
429  */
430 static void eat_statement(void)
431 {
432         while(token.type != ';') {
433                 if(token.type == T_EOF)
434                         return;
435                 if(token.type == '}')
436                         return;
437                 if(token.type == '{') {
438                         eat_block();
439                         continue;
440                 }
441                 next_token();
442         }
443         eat(';');
444 }
445
446 /**
447  * Eat a parenthesed term, ie. '( ... )'.
448  */
449 static void eat_paren(void)
450 {
451         if(token.type == '(')
452                 next_token();
453
454         while(token.type != ')') {
455                 if(token.type == T_EOF)
456                         return;
457                 if(token.type == ')' || token.type == ';' || token.type == '}') {
458                         return;
459                 }
460                 if(token.type == '(') {
461                         eat_paren();
462                         continue;
463                 }
464                 if(token.type == '{') {
465                         eat_block();
466                         continue;
467                 }
468                 next_token();
469         }
470         eat(')');
471 }
472
473 #define expect(expected)                           \
474         do {                                           \
475     if(UNLIKELY(token.type != (expected))) {       \
476         parse_error_expected(NULL, (expected), 0); \
477         eat_statement();                           \
478         return NULL;                               \
479     }                                              \
480     next_token();                                  \
481         } while(0)
482
483 #define expect_block(expected)                     \
484         do {                                           \
485     if(UNLIKELY(token.type != (expected))) {       \
486         parse_error_expected(NULL, (expected), 0); \
487         eat_block();                               \
488         return NULL;                               \
489     }                                              \
490     next_token();                                  \
491         } while(0)
492
493 #define expect_void(expected)                      \
494         do {                                           \
495     if(UNLIKELY(token.type != (expected))) {       \
496         parse_error_expected(NULL, (expected), 0); \
497         eat_statement();                           \
498         return;                                    \
499     }                                              \
500     next_token();                                  \
501     } while(0)
502
503 static void set_scope(scope_t *new_scope)
504 {
505         if(scope != NULL) {
506                 scope->last_declaration = last_declaration;
507         }
508         scope = new_scope;
509
510         last_declaration = new_scope->last_declaration;
511 }
512
513 /**
514  * Search a symbol in a given namespace and returns its declaration or
515  * NULL if this symbol was not found.
516  */
517 static declaration_t *get_declaration(const symbol_t *const symbol, const namespace_t namespc)
518 {
519         declaration_t *declaration = symbol->declaration;
520         for( ; declaration != NULL; declaration = declaration->symbol_next) {
521                 if(declaration->namespc == namespc)
522                         return declaration;
523         }
524
525         return NULL;
526 }
527
528 /**
529  * pushs an environment_entry on the environment stack and links the
530  * corresponding symbol to the new entry
531  */
532 static void stack_push(stack_entry_t **stack_ptr, declaration_t *declaration)
533 {
534         symbol_t    *symbol  = declaration->symbol;
535         namespace_t  namespc = (namespace_t) declaration->namespc;
536
537         /* replace/add declaration into declaration list of the symbol */
538         declaration_t *iter = symbol->declaration;
539         if (iter == NULL) {
540                 symbol->declaration = declaration;
541         } else {
542                 declaration_t *iter_last = NULL;
543                 for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
544                         /* replace an entry? */
545                         if(iter->namespc == namespc) {
546                                 if(iter_last == NULL) {
547                                         symbol->declaration = declaration;
548                                 } else {
549                                         iter_last->symbol_next = declaration;
550                                 }
551                                 declaration->symbol_next = iter->symbol_next;
552                                 break;
553                         }
554                 }
555                 if(iter == NULL) {
556                         assert(iter_last->symbol_next == NULL);
557                         iter_last->symbol_next = declaration;
558                 }
559         }
560
561         /* remember old declaration */
562         stack_entry_t entry;
563         entry.symbol          = symbol;
564         entry.old_declaration = iter;
565         entry.namespc         = (unsigned short) namespc;
566         ARR_APP1(stack_entry_t, *stack_ptr, entry);
567 }
568
569 static void environment_push(declaration_t *declaration)
570 {
571         assert(declaration->source_position.input_name != NULL);
572         assert(declaration->parent_scope != NULL);
573         stack_push(&environment_stack, declaration);
574 }
575
576 static void label_push(declaration_t *declaration)
577 {
578         declaration->parent_scope = &current_function->scope;
579         stack_push(&label_stack, declaration);
580 }
581
582 /**
583  * pops symbols from the environment stack until @p new_top is the top element
584  */
585 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
586 {
587         stack_entry_t *stack = *stack_ptr;
588         size_t         top   = ARR_LEN(stack);
589         size_t         i;
590
591         assert(new_top <= top);
592         if(new_top == top)
593                 return;
594
595         for(i = top; i > new_top; --i) {
596                 stack_entry_t *entry = &stack[i - 1];
597
598                 declaration_t *old_declaration = entry->old_declaration;
599                 symbol_t      *symbol          = entry->symbol;
600                 namespace_t    namespc         = (namespace_t)entry->namespc;
601
602                 /* replace/remove declaration */
603                 declaration_t *declaration = symbol->declaration;
604                 assert(declaration != NULL);
605                 if(declaration->namespc == namespc) {
606                         if(old_declaration == NULL) {
607                                 symbol->declaration = declaration->symbol_next;
608                         } else {
609                                 symbol->declaration = old_declaration;
610                         }
611                 } else {
612                         declaration_t *iter_last = declaration;
613                         declaration_t *iter      = declaration->symbol_next;
614                         for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
615                                 /* replace an entry? */
616                                 if(iter->namespc == namespc) {
617                                         assert(iter_last != NULL);
618                                         iter_last->symbol_next = old_declaration;
619                                         if(old_declaration != NULL) {
620                                                 old_declaration->symbol_next = iter->symbol_next;
621                                         }
622                                         break;
623                                 }
624                         }
625                         assert(iter != NULL);
626                 }
627         }
628
629         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
630 }
631
632 static void environment_pop_to(size_t new_top)
633 {
634         stack_pop_to(&environment_stack, new_top);
635 }
636
637 static void label_pop_to(size_t new_top)
638 {
639         stack_pop_to(&label_stack, new_top);
640 }
641
642
643 static int get_rank(const type_t *type)
644 {
645         assert(!is_typeref(type));
646         /* The C-standard allows promoting to int or unsigned int (see Â§ 7.2.2
647          * and esp. footnote 108). However we can't fold constants (yet), so we
648          * can't decide whether unsigned int is possible, while int always works.
649          * (unsigned int would be preferable when possible... for stuff like
650          *  struct { enum { ... } bla : 4; } ) */
651         if(type->kind == TYPE_ENUM)
652                 return ATOMIC_TYPE_INT;
653
654         assert(type->kind == TYPE_ATOMIC);
655         return type->atomic.akind;
656 }
657
658 static type_t *promote_integer(type_t *type)
659 {
660         if(type->kind == TYPE_BITFIELD)
661                 type = type->bitfield.base;
662
663         if(get_rank(type) < ATOMIC_TYPE_INT)
664                 type = type_int;
665
666         return type;
667 }
668
669 /**
670  * Create a cast expression.
671  *
672  * @param expression  the expression to cast
673  * @param dest_type   the destination type
674  */
675 static expression_t *create_cast_expression(expression_t *expression,
676                                             type_t *dest_type)
677 {
678         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST_IMPLICIT);
679
680         cast->unary.value = expression;
681         cast->base.type   = dest_type;
682
683         return cast;
684 }
685
686 /**
687  * Check if a given expression represents the 0 pointer constant.
688  */
689 static bool is_null_pointer_constant(const expression_t *expression)
690 {
691         /* skip void* cast */
692         if(expression->kind == EXPR_UNARY_CAST
693                         || expression->kind == EXPR_UNARY_CAST_IMPLICIT) {
694                 expression = expression->unary.value;
695         }
696
697         /* TODO: not correct yet, should be any constant integer expression
698          * which evaluates to 0 */
699         if (expression->kind != EXPR_CONST)
700                 return false;
701
702         type_t *const type = skip_typeref(expression->base.type);
703         if (!is_type_integer(type))
704                 return false;
705
706         return expression->conste.v.int_value == 0;
707 }
708
709 /**
710  * Create an implicit cast expression.
711  *
712  * @param expression  the expression to cast
713  * @param dest_type   the destination type
714  */
715 static expression_t *create_implicit_cast(expression_t *expression,
716                                           type_t *dest_type)
717 {
718         type_t *const source_type = expression->base.type;
719
720         if (source_type == dest_type)
721                 return expression;
722
723         return create_cast_expression(expression, dest_type);
724 }
725
726 /** Implements the rules from Â§ 6.5.16.1 */
727 static type_t *semantic_assign(type_t *orig_type_left,
728                             const expression_t *const right,
729                             const char *context)
730 {
731         type_t *const orig_type_right = right->base.type;
732         type_t *const type_left       = skip_typeref(orig_type_left);
733         type_t *const type_right      = skip_typeref(orig_type_right);
734
735         if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
736             (is_type_pointer(type_left) && is_null_pointer_constant(right)) ||
737             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
738                 && is_type_pointer(type_right))) {
739                 return orig_type_left;
740         }
741
742         if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
743                 type_t *points_to_left  = skip_typeref(type_left->pointer.points_to);
744                 type_t *points_to_right = skip_typeref(type_right->pointer.points_to);
745
746                 /* the left type has all qualifiers from the right type */
747                 unsigned missing_qualifiers
748                         = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
749                 if(missing_qualifiers != 0) {
750                         errorf(HERE, "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointed-to type", type_left, context, type_right, missing_qualifiers);
751                         return orig_type_left;
752                 }
753
754                 points_to_left  = get_unqualified_type(points_to_left);
755                 points_to_right = get_unqualified_type(points_to_right);
756
757                 if (is_type_atomic(points_to_left, ATOMIC_TYPE_VOID) ||
758                                 is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)) {
759                         return orig_type_left;
760                 }
761
762                 if (!types_compatible(points_to_left, points_to_right)) {
763                         warningf(right->base.source_position,
764                                 "destination type '%T' in %s is incompatible with '%E' of type '%T'",
765                                 orig_type_left, context, right, orig_type_right);
766                 }
767
768                 return orig_type_left;
769         }
770
771         if ((is_type_compound(type_left)  && is_type_compound(type_right))
772                         || (is_type_builtin(type_left) && is_type_builtin(type_right))) {
773                 type_t *const unqual_type_left  = get_unqualified_type(type_left);
774                 type_t *const unqual_type_right = get_unqualified_type(type_right);
775                 if (types_compatible(unqual_type_left, unqual_type_right)) {
776                         return orig_type_left;
777                 }
778         }
779
780         if (!is_type_valid(type_left))
781                 return type_left;
782
783         if (!is_type_valid(type_right))
784                 return orig_type_right;
785
786         return NULL;
787 }
788
789 static expression_t *parse_constant_expression(void)
790 {
791         /* start parsing at precedence 7 (conditional expression) */
792         expression_t *result = parse_sub_expression(7);
793
794         if(!is_constant_expression(result)) {
795                 errorf(result->base.source_position, "expression '%E' is not constant\n", result);
796         }
797
798         return result;
799 }
800
801 static expression_t *parse_assignment_expression(void)
802 {
803         /* start parsing at precedence 2 (assignment expression) */
804         return parse_sub_expression(2);
805 }
806
807 static type_t *make_global_typedef(const char *name, type_t *type)
808 {
809         symbol_t *const symbol       = symbol_table_insert(name);
810
811         declaration_t *const declaration = allocate_declaration_zero();
812         declaration->namespc                = NAMESPACE_NORMAL;
813         declaration->storage_class          = STORAGE_CLASS_TYPEDEF;
814         declaration->declared_storage_class = STORAGE_CLASS_TYPEDEF;
815         declaration->type                   = type;
816         declaration->symbol                 = symbol;
817         declaration->source_position        = builtin_source_position;
818
819         record_declaration(declaration);
820
821         type_t *typedef_type               = allocate_type_zero(TYPE_TYPEDEF, builtin_source_position);
822         typedef_type->typedeft.declaration = declaration;
823
824         return typedef_type;
825 }
826
827 static string_t parse_string_literals(void)
828 {
829         assert(token.type == T_STRING_LITERAL);
830         string_t result = token.v.string;
831
832         next_token();
833
834         while (token.type == T_STRING_LITERAL) {
835                 result = concat_strings(&result, &token.v.string);
836                 next_token();
837         }
838
839         return result;
840 }
841
842 static void parse_attributes(void)
843 {
844         while(true) {
845                 switch(token.type) {
846                 case T___attribute__: {
847                         next_token();
848
849                         expect_void('(');
850                         int depth = 1;
851                         while(depth > 0) {
852                                 switch(token.type) {
853                                 case T_EOF:
854                                         errorf(HERE, "EOF while parsing attribute");
855                                         break;
856                                 case '(':
857                                         next_token();
858                                         depth++;
859                                         break;
860                                 case ')':
861                                         next_token();
862                                         depth--;
863                                         break;
864                                 default:
865                                         next_token();
866                                 }
867                         }
868                         break;
869                 }
870                 case T_asm:
871                         next_token();
872                         expect_void('(');
873                         if(token.type != T_STRING_LITERAL) {
874                                 parse_error_expected("while parsing assembler attribute",
875                                                      T_STRING_LITERAL);
876                                 eat_paren();
877                                 break;
878                         } else {
879                                 parse_string_literals();
880                         }
881                         expect_void(')');
882                         break;
883                 default:
884                         goto attributes_finished;
885                 }
886         }
887
888 attributes_finished:
889         ;
890 }
891
892 static designator_t *parse_designation(void)
893 {
894         designator_t *result = NULL;
895         designator_t *last   = NULL;
896
897         while(true) {
898                 designator_t *designator;
899                 switch(token.type) {
900                 case '[':
901                         designator = allocate_ast_zero(sizeof(designator[0]));
902                         designator->source_position = token.source_position;
903                         next_token();
904                         designator->array_index = parse_constant_expression();
905                         expect(']');
906                         break;
907                 case '.':
908                         designator = allocate_ast_zero(sizeof(designator[0]));
909                         designator->source_position = token.source_position;
910                         next_token();
911                         if(token.type != T_IDENTIFIER) {
912                                 parse_error_expected("while parsing designator",
913                                                      T_IDENTIFIER, 0);
914                                 return NULL;
915                         }
916                         designator->symbol = token.v.symbol;
917                         next_token();
918                         break;
919                 default:
920                         expect('=');
921                         return result;
922                 }
923
924                 assert(designator != NULL);
925                 if(last != NULL) {
926                         last->next = designator;
927                 } else {
928                         result = designator;
929                 }
930                 last = designator;
931         }
932 }
933
934 static initializer_t *initializer_from_string(array_type_t *type,
935                                               const string_t *const string)
936 {
937         /* TODO: check len vs. size of array type */
938         (void) type;
939
940         initializer_t *initializer = allocate_initializer_zero(INITIALIZER_STRING);
941         initializer->string.string = *string;
942
943         return initializer;
944 }
945
946 static initializer_t *initializer_from_wide_string(array_type_t *const type,
947                                                    wide_string_t *const string)
948 {
949         /* TODO: check len vs. size of array type */
950         (void) type;
951
952         initializer_t *const initializer =
953                 allocate_initializer_zero(INITIALIZER_WIDE_STRING);
954         initializer->wide_string.string = *string;
955
956         return initializer;
957 }
958
959 static initializer_t *initializer_from_expression(type_t *orig_type,
960                                                   expression_t *expression)
961 {
962         /* TODO check that expression is a constant expression */
963
964         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
965         type_t *type           = skip_typeref(orig_type);
966         type_t *expr_type_orig = expression->base.type;
967         type_t *expr_type      = skip_typeref(expr_type_orig);
968         if (is_type_array(type) && expr_type->kind == TYPE_POINTER) {
969                 array_type_t *const array_type   = &type->array;
970                 type_t       *const element_type = skip_typeref(array_type->element_type);
971
972                 if (element_type->kind == TYPE_ATOMIC) {
973                         atomic_type_kind_t akind = element_type->atomic.akind;
974                         switch (expression->kind) {
975                                 case EXPR_STRING_LITERAL:
976                                         if (akind == ATOMIC_TYPE_CHAR
977                                                         || akind == ATOMIC_TYPE_SCHAR
978                                                         || akind == ATOMIC_TYPE_UCHAR) {
979                                                 return initializer_from_string(array_type,
980                                                         &expression->string.value);
981                                         }
982
983                                 case EXPR_WIDE_STRING_LITERAL: {
984                                         type_t *bare_wchar_type = skip_typeref(type_wchar_t);
985                                         if (get_unqualified_type(element_type) == bare_wchar_type) {
986                                                 return initializer_from_wide_string(array_type,
987                                                         &expression->wide_string.value);
988                                         }
989                                 }
990
991                                 default:
992                                         break;
993                         }
994                 }
995         }
996
997         type_t *const res_type = semantic_assign(type, expression, "initializer");
998         if (res_type == NULL)
999                 return NULL;
1000
1001         initializer_t *const result = allocate_initializer_zero(INITIALIZER_VALUE);
1002         result->value.value = create_implicit_cast(expression, res_type);
1003
1004         return result;
1005 }
1006
1007 static bool is_initializer_constant(const expression_t *expression)
1008 {
1009         return is_constant_expression(expression)
1010                 || is_address_constant(expression);
1011 }
1012
1013 static initializer_t *parse_scalar_initializer(type_t *type,
1014                                                bool must_be_constant)
1015 {
1016         /* there might be extra {} hierarchies */
1017         int braces = 0;
1018         while(token.type == '{') {
1019                 next_token();
1020                 if(braces == 0) {
1021                         warningf(HERE, "extra curly braces around scalar initializer");
1022                 }
1023                 braces++;
1024         }
1025
1026         expression_t *expression = parse_assignment_expression();
1027         if(must_be_constant && !is_initializer_constant(expression)) {
1028                 errorf(expression->base.source_position,
1029                        "Initialisation expression '%E' is not constant\n",
1030                        expression);
1031         }
1032
1033         initializer_t *initializer = initializer_from_expression(type, expression);
1034
1035         if(initializer == NULL) {
1036                 errorf(expression->base.source_position,
1037                        "expression '%E' doesn't match expected type '%T'",
1038                        expression, type);
1039                 /* TODO */
1040                 return NULL;
1041         }
1042
1043         bool additional_warning_displayed = false;
1044         while(braces > 0) {
1045                 if(token.type == ',') {
1046                         next_token();
1047                 }
1048                 if(token.type != '}') {
1049                         if(!additional_warning_displayed) {
1050                                 warningf(HERE, "additional elements in scalar initializer");
1051                                 additional_warning_displayed = true;
1052                         }
1053                 }
1054                 eat_block();
1055                 braces--;
1056         }
1057
1058         return initializer;
1059 }
1060
1061 typedef struct type_path_entry_t type_path_entry_t;
1062 struct type_path_entry_t {
1063         type_t *type;
1064         union {
1065                 size_t         index;
1066                 declaration_t *compound_entry;
1067         } v;
1068 };
1069
1070 typedef struct type_path_t type_path_t;
1071 struct type_path_t {
1072         type_path_entry_t *path;
1073         type_t            *top_type;     /**< type of the element the path points */
1074         size_t             max_index;    /**< largest index in outermost array */
1075         bool               invalid;
1076 };
1077
1078 static __attribute__((unused)) void debug_print_type_path(
1079                 const type_path_t *path)
1080 {
1081         size_t len = ARR_LEN(path->path);
1082
1083         if(path->invalid) {
1084                 fprintf(stderr, "invalid path");
1085                 return;
1086         }
1087
1088         for(size_t i = 0; i < len; ++i) {
1089                 const type_path_entry_t *entry = & path->path[i];
1090
1091                 type_t *type = skip_typeref(entry->type);
1092                 if(is_type_compound(type)) {
1093                         fprintf(stderr, ".%s", entry->v.compound_entry->symbol->string);
1094                 } else if(is_type_array(type)) {
1095                         fprintf(stderr, "[%u]", entry->v.index);
1096                 } else {
1097                         fprintf(stderr, "-INVALID-");
1098                 }
1099         }
1100         fprintf(stderr, "  (");
1101         print_type(path->top_type);
1102         fprintf(stderr, ")");
1103 }
1104
1105 static type_path_entry_t *get_type_path_top(const type_path_t *path)
1106 {
1107         size_t len = ARR_LEN(path->path);
1108         assert(len > 0);
1109         return & path->path[len-1];
1110 }
1111
1112 static type_path_entry_t *append_to_type_path(type_path_t *path)
1113 {
1114         size_t len = ARR_LEN(path->path);
1115         ARR_RESIZE(type_path_entry_t, path->path, len+1);
1116
1117         type_path_entry_t *result = & path->path[len];
1118         memset(result, 0, sizeof(result[0]));
1119         return result;
1120 }
1121
1122 static void descend_into_subtype(type_path_t *path)
1123 {
1124         type_t *orig_top_type = path->top_type;
1125         type_t *top_type      = skip_typeref(orig_top_type);
1126
1127         assert(is_type_compound(top_type) || is_type_array(top_type));
1128
1129         type_path_entry_t *top = append_to_type_path(path);
1130         top->type              = top_type;
1131
1132         if(is_type_compound(top_type)) {
1133                 declaration_t *declaration = top_type->compound.declaration;
1134                 declaration_t *entry       = declaration->scope.declarations;
1135
1136                 top->v.compound_entry = entry;
1137                 path->top_type        = entry->type;
1138         } else {
1139                 assert(is_type_array(top_type));
1140
1141                 top->v.index   = 0;
1142                 path->top_type = top_type->array.element_type;
1143         }
1144 }
1145
1146 static void ascend_from_subtype(type_path_t *path)
1147 {
1148         type_path_entry_t *top = get_type_path_top(path);
1149
1150         path->top_type = top->type;
1151
1152         size_t len = ARR_LEN(path->path);
1153         ARR_RESIZE(type_path_entry_t, path->path, len-1);
1154 }
1155
1156 static void ascend_to(type_path_t *path, size_t top_path_level)
1157 {
1158         size_t len = ARR_LEN(path->path);
1159         assert(len >= top_path_level);
1160
1161         while(len > top_path_level) {
1162                 ascend_from_subtype(path);
1163                 len = ARR_LEN(path->path);
1164         }
1165 }
1166
1167 static bool walk_designator(type_path_t *path, const designator_t *designator,
1168                             bool used_in_offsetof)
1169 {
1170         for( ; designator != NULL; designator = designator->next) {
1171                 type_path_entry_t *top       = get_type_path_top(path);
1172                 type_t            *orig_type = top->type;
1173
1174                 type_t *type = skip_typeref(orig_type);
1175
1176                 if(designator->symbol != NULL) {
1177                         symbol_t *symbol = designator->symbol;
1178                         if(!is_type_compound(type)) {
1179                                 if(is_type_valid(type)) {
1180                                         errorf(designator->source_position,
1181                                                "'.%Y' designator used for non-compound type '%T'",
1182                                                symbol, orig_type);
1183                                 }
1184                                 goto failed;
1185                         }
1186
1187                         declaration_t *declaration = type->compound.declaration;
1188                         declaration_t *iter        = declaration->scope.declarations;
1189                         for( ; iter != NULL; iter = iter->next) {
1190                                 if(iter->symbol == symbol) {
1191                                         break;
1192                                 }
1193                         }
1194                         if(iter == NULL) {
1195                                 errorf(designator->source_position,
1196                                        "'%T' has no member named '%Y'", orig_type, symbol);
1197                                 goto failed;
1198                         }
1199                         if(used_in_offsetof) {
1200                                 type_t *real_type = skip_typeref(iter->type);
1201                                 if(real_type->kind == TYPE_BITFIELD) {
1202                                         errorf(designator->source_position,
1203                                                "offsetof designator '%Y' may not specify bitfield",
1204                                                symbol);
1205                                         goto failed;
1206                                 }
1207                         }
1208
1209                         top->type             = orig_type;
1210                         top->v.compound_entry = iter;
1211                         orig_type             = iter->type;
1212                 } else {
1213                         expression_t *array_index = designator->array_index;
1214                         assert(designator->array_index != NULL);
1215
1216                         if(!is_type_array(type)) {
1217                                 if(is_type_valid(type)) {
1218                                         errorf(designator->source_position,
1219                                                "[%E] designator used for non-array type '%T'",
1220                                                array_index, orig_type);
1221                                 }
1222                                 goto failed;
1223                         }
1224                         if(!is_type_valid(array_index->base.type)) {
1225                                 goto failed;
1226                         }
1227
1228                         long index = fold_constant(array_index);
1229                         if(!used_in_offsetof) {
1230                                 if(index < 0) {
1231                                         errorf(designator->source_position,
1232                                                "array index [%E] must be positive", array_index);
1233                                         goto failed;
1234                                 }
1235                                 if(type->array.size_constant == true) {
1236                                         long array_size = type->array.size;
1237                                         if(index >= array_size) {
1238                                                 errorf(designator->source_position,
1239                                                                 "designator [%E] (%d) exceeds array size %d",
1240                                                                 array_index, index, array_size);
1241                                                 goto failed;
1242                                         }
1243                                 }
1244                         }
1245
1246                         top->type    = orig_type;
1247                         top->v.index = (size_t) index;
1248                         orig_type    = type->array.element_type;
1249                 }
1250                 path->top_type = orig_type;
1251
1252                 if(designator->next != NULL) {
1253                         descend_into_subtype(path);
1254                 }
1255         }
1256
1257         path->invalid  = false;
1258         return true;
1259
1260 failed:
1261         return false;
1262 }
1263
1264 static void advance_current_object(type_path_t *path, size_t top_path_level)
1265 {
1266         if(path->invalid)
1267                 return;
1268
1269         type_path_entry_t *top = get_type_path_top(path);
1270
1271         type_t *type = skip_typeref(top->type);
1272         if(is_type_union(type)) {
1273                 /* in unions only the first element is initialized */
1274                 top->v.compound_entry = NULL;
1275         } else if(is_type_struct(type)) {
1276                 declaration_t *entry = top->v.compound_entry;
1277
1278                 entry                 = entry->next;
1279                 top->v.compound_entry = entry;
1280                 if(entry != NULL) {
1281                         path->top_type = entry->type;
1282                         return;
1283                 }
1284         } else {
1285                 assert(is_type_array(type));
1286
1287                 top->v.index++;
1288
1289                 if(!type->array.size_constant || top->v.index < type->array.size) {
1290                         return;
1291                 }
1292         }
1293
1294         /* we're past the last member of the current sub-aggregate, try if we
1295          * can ascend in the type hierarchy and continue with another subobject */
1296         size_t len = ARR_LEN(path->path);
1297
1298         if(len > top_path_level) {
1299                 ascend_from_subtype(path);
1300                 advance_current_object(path, top_path_level);
1301         } else {
1302                 path->invalid = true;
1303         }
1304 }
1305
1306 static void skip_initializers(void)
1307 {
1308         if(token.type == '{')
1309                 next_token();
1310
1311         while(token.type != '}') {
1312                 if(token.type == T_EOF)
1313                         return;
1314                 if(token.type == '{') {
1315                         eat_block();
1316                         continue;
1317                 }
1318                 next_token();
1319         }
1320 }
1321
1322 static initializer_t *parse_sub_initializer(type_path_t *path,
1323                 type_t *outer_type, size_t top_path_level, bool must_be_constant)
1324 {
1325         type_t *orig_type = path->top_type;
1326         type_t *type      = skip_typeref(orig_type);
1327
1328         /* we can't do usefull stuff if we didn't even parse the type. Skip the
1329          * initializers in this case. */
1330         if(!is_type_valid(type)) {
1331                 skip_initializers();
1332                 return NULL;
1333         }
1334
1335         initializer_t **initializers = NEW_ARR_F(initializer_t*, 0);
1336
1337         while(true) {
1338                 designator_t *designator = NULL;
1339                 if(token.type == '.' || token.type == '[') {
1340                         designator = parse_designation();
1341
1342                         /* reset path to toplevel, evaluate designator from there */
1343                         ascend_to(path, top_path_level);
1344                         if(!walk_designator(path, designator, false)) {
1345                                 /* can't continue after designation error */
1346                                 goto end_error;
1347                         }
1348
1349                         initializer_t *designator_initializer
1350                                 = allocate_initializer_zero(INITIALIZER_DESIGNATOR);
1351                         designator_initializer->designator.designator = designator;
1352                         ARR_APP1(initializer_t*, initializers, designator_initializer);
1353                 }
1354
1355                 initializer_t *sub;
1356
1357                 if(token.type == '{') {
1358                         if(is_type_scalar(type)) {
1359                                 sub = parse_scalar_initializer(type, must_be_constant);
1360                         } else {
1361                                 eat('{');
1362                                 descend_into_subtype(path);
1363
1364                                 sub = parse_sub_initializer(path, orig_type, top_path_level+1,
1365                                                             must_be_constant);
1366
1367                                 ascend_from_subtype(path);
1368
1369                                 expect_block('}');
1370                         }
1371                 } else {
1372                         /* must be an expression */
1373                         expression_t *expression = parse_assignment_expression();
1374
1375                         if(must_be_constant && !is_initializer_constant(expression)) {
1376                                 errorf(expression->base.source_position,
1377                                        "Initialisation expression '%E' is not constant\n",
1378                                        expression);
1379                         }
1380
1381                         /* handle { "string" } special case */
1382                         if((expression->kind == EXPR_STRING_LITERAL
1383                                         || expression->kind == EXPR_WIDE_STRING_LITERAL)
1384                                         && outer_type != NULL) {
1385                                 sub = initializer_from_expression(outer_type, expression);
1386                                 if(sub != NULL) {
1387                                         if(token.type == ',') {
1388                                                 next_token();
1389                                         }
1390                                         if(token.type != '}') {
1391                                                 warningf(HERE, "excessive elements in initializer for type '%T'",
1392                                                                  orig_type);
1393                                         }
1394                                         /* TODO: eat , ... */
1395                                         return sub;
1396                                 }
1397                         }
1398
1399                         /* descend into subtypes until expression matches type */
1400                         while(true) {
1401                                 orig_type = path->top_type;
1402                                 type      = skip_typeref(orig_type);
1403
1404                                 sub = initializer_from_expression(orig_type, expression);
1405                                 if(sub != NULL) {
1406                                         break;
1407                                 }
1408                                 if(!is_type_valid(type)) {
1409                                         goto end_error;
1410                                 }
1411                                 if(is_type_scalar(type)) {
1412                                         errorf(expression->base.source_position,
1413                                                         "expression '%E' doesn't match expected type '%T'",
1414                                                         expression, orig_type);
1415                                         goto end_error;
1416                                 }
1417
1418                                 descend_into_subtype(path);
1419                         }
1420                 }
1421
1422                 /* update largest index of top array */
1423                 const type_path_entry_t *first      = &path->path[0];
1424                 type_t                  *first_type = first->type;
1425                 first_type                          = skip_typeref(first_type);
1426                 if(is_type_array(first_type)) {
1427                         size_t index = first->v.index;
1428                         if(index > path->max_index)
1429                                 path->max_index = index;
1430                 }
1431
1432                 /* append to initializers list */
1433                 ARR_APP1(initializer_t*, initializers, sub);
1434
1435                 if(token.type == '}') {
1436                         break;
1437                 }
1438                 expect(',');
1439                 if(token.type == '}') {
1440                         break;
1441                 }
1442
1443                 advance_current_object(path, top_path_level);
1444                 orig_type = path->top_type;
1445                 type      = skip_typeref(orig_type);
1446         }
1447
1448         size_t len  = ARR_LEN(initializers);
1449         size_t size = sizeof(initializer_list_t) + len * sizeof(initializers[0]);
1450         initializer_t *result = allocate_ast_zero(size);
1451         result->kind          = INITIALIZER_LIST;
1452         result->list.len      = len;
1453         memcpy(&result->list.initializers, initializers,
1454                len * sizeof(initializers[0]));
1455
1456         ascend_to(path, top_path_level);
1457
1458         return result;
1459
1460 end_error:
1461         skip_initializers();
1462         DEL_ARR_F(initializers);
1463         ascend_to(path, top_path_level);
1464         return NULL;
1465 }
1466
1467 typedef struct parse_initializer_env_t {
1468         type_t        *type;        /* the type of the initializer. In case of an
1469                                        array type with unspecified size this gets
1470                                        adjusted to the actual size. */
1471         initializer_t *initializer; /* initializer will be filled in here */
1472         bool           must_be_constant;
1473 } parse_initializer_env_t;
1474
1475 static void parse_initializer(parse_initializer_env_t *env)
1476 {
1477         type_t        *type   = skip_typeref(env->type);
1478         initializer_t *result = NULL;
1479         size_t         max_index;
1480
1481         if(is_type_scalar(type)) {
1482                 /* TODO: Â§ 6.7.8.11; eat {} without warning */
1483                 result = parse_scalar_initializer(type, env->must_be_constant);
1484         } else if(token.type == '{') {
1485                 eat('{');
1486
1487                 type_path_t path;
1488                 memset(&path, 0, sizeof(path));
1489                 path.top_type = env->type;
1490                 path.path     = NEW_ARR_F(type_path_entry_t, 0);
1491
1492                 descend_into_subtype(&path);
1493
1494                 result = parse_sub_initializer(&path, env->type, 1,
1495                                                env->must_be_constant);
1496
1497                 max_index = path.max_index;
1498                 DEL_ARR_F(path.path);
1499
1500                 expect_void('}');
1501         } else {
1502                 /* parse_scalar_initializer also works in this case: we simply
1503                  * have an expression without {} around it */
1504                 result = parse_scalar_initializer(type, env->must_be_constant);
1505         }
1506
1507         /* Â§ 6.7.5 (22)  array initializers for arrays with unknown size determine
1508          * the array type size */
1509         if(is_type_array(type) && type->array.size_expression == NULL
1510                         && result != NULL) {
1511                 size_t size;
1512                 switch (result->kind) {
1513                 case INITIALIZER_LIST:
1514                         size = max_index + 1;
1515                         break;
1516
1517                 case INITIALIZER_STRING:
1518                         size = result->string.string.size;
1519                         break;
1520
1521                 case INITIALIZER_WIDE_STRING:
1522                         size = result->wide_string.string.size;
1523                         break;
1524
1525                 default:
1526                         panic("invalid initializer type");
1527                 }
1528
1529                 expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
1530                 cnst->base.type          = type_size_t;
1531                 cnst->conste.v.int_value = size;
1532
1533                 type_t *new_type = duplicate_type(type);
1534
1535                 new_type->array.size_expression = cnst;
1536                 new_type->array.size_constant   = true;
1537                 new_type->array.size            = size;
1538                 env->type = new_type;
1539         }
1540
1541         env->initializer = result;
1542 }
1543
1544 static declaration_t *append_declaration(declaration_t *declaration);
1545
1546 static declaration_t *parse_compound_type_specifier(bool is_struct)
1547 {
1548         if(is_struct) {
1549                 eat(T_struct);
1550         } else {
1551                 eat(T_union);
1552         }
1553
1554         symbol_t      *symbol      = NULL;
1555         declaration_t *declaration = NULL;
1556
1557         if (token.type == T___attribute__) {
1558                 /* TODO */
1559                 parse_attributes();
1560         }
1561
1562         if(token.type == T_IDENTIFIER) {
1563                 symbol = token.v.symbol;
1564                 next_token();
1565
1566                 if(is_struct) {
1567                         declaration = get_declaration(symbol, NAMESPACE_STRUCT);
1568                 } else {
1569                         declaration = get_declaration(symbol, NAMESPACE_UNION);
1570                 }
1571         } else if(token.type != '{') {
1572                 if(is_struct) {
1573                         parse_error_expected("while parsing struct type specifier",
1574                                              T_IDENTIFIER, '{', 0);
1575                 } else {
1576                         parse_error_expected("while parsing union type specifier",
1577                                              T_IDENTIFIER, '{', 0);
1578                 }
1579
1580                 return NULL;
1581         }
1582
1583         if(declaration == NULL) {
1584                 declaration = allocate_declaration_zero();
1585                 declaration->namespc         =
1586                         (is_struct ? NAMESPACE_STRUCT : NAMESPACE_UNION);
1587                 declaration->source_position = token.source_position;
1588                 declaration->symbol          = symbol;
1589                 declaration->parent_scope  = scope;
1590                 if (symbol != NULL) {
1591                         environment_push(declaration);
1592                 }
1593                 append_declaration(declaration);
1594         }
1595
1596         if(token.type == '{') {
1597                 if(declaration->init.is_defined) {
1598                         assert(symbol != NULL);
1599                         errorf(HERE, "multiple definitions of '%s %Y'",
1600                                is_struct ? "struct" : "union", symbol);
1601                         declaration->scope.declarations = NULL;
1602                 }
1603                 declaration->init.is_defined = true;
1604
1605                 parse_compound_type_entries(declaration);
1606                 parse_attributes();
1607         }
1608
1609         return declaration;
1610 }
1611
1612 static void parse_enum_entries(type_t *const enum_type)
1613 {
1614         eat('{');
1615
1616         if(token.type == '}') {
1617                 next_token();
1618                 errorf(HERE, "empty enum not allowed");
1619                 return;
1620         }
1621
1622         do {
1623                 if(token.type != T_IDENTIFIER) {
1624                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, 0);
1625                         eat_block();
1626                         return;
1627                 }
1628
1629                 declaration_t *const entry = allocate_declaration_zero();
1630                 entry->storage_class   = STORAGE_CLASS_ENUM_ENTRY;
1631                 entry->type            = enum_type;
1632                 entry->symbol          = token.v.symbol;
1633                 entry->source_position = token.source_position;
1634                 next_token();
1635
1636                 if(token.type == '=') {
1637                         next_token();
1638                         expression_t *value = parse_constant_expression();
1639
1640                         value = create_implicit_cast(value, enum_type);
1641                         entry->init.enum_value = value;
1642
1643                         /* TODO semantic */
1644                 }
1645
1646                 record_declaration(entry);
1647
1648                 if(token.type != ',')
1649                         break;
1650                 next_token();
1651         } while(token.type != '}');
1652
1653         expect_void('}');
1654 }
1655
1656 static type_t *parse_enum_specifier(void)
1657 {
1658         eat(T_enum);
1659
1660         declaration_t *declaration;
1661         symbol_t      *symbol;
1662
1663         if(token.type == T_IDENTIFIER) {
1664                 symbol = token.v.symbol;
1665                 next_token();
1666
1667                 declaration = get_declaration(symbol, NAMESPACE_ENUM);
1668         } else if(token.type != '{') {
1669                 parse_error_expected("while parsing enum type specifier",
1670                                      T_IDENTIFIER, '{', 0);
1671                 return NULL;
1672         } else {
1673                 declaration = NULL;
1674                 symbol      = NULL;
1675         }
1676
1677         if(declaration == NULL) {
1678                 declaration = allocate_declaration_zero();
1679                 declaration->namespc         = NAMESPACE_ENUM;
1680                 declaration->source_position = token.source_position;
1681                 declaration->symbol          = symbol;
1682                 declaration->parent_scope  = scope;
1683         }
1684
1685         type_t *const type      = allocate_type_zero(TYPE_ENUM, declaration->source_position);
1686         type->enumt.declaration = declaration;
1687
1688         if(token.type == '{') {
1689                 if(declaration->init.is_defined) {
1690                         errorf(HERE, "multiple definitions of enum %Y", symbol);
1691                 }
1692                 if (symbol != NULL) {
1693                         environment_push(declaration);
1694                 }
1695                 append_declaration(declaration);
1696                 declaration->init.is_defined = 1;
1697
1698                 parse_enum_entries(type);
1699                 parse_attributes();
1700         }
1701
1702         return type;
1703 }
1704
1705 /**
1706  * if a symbol is a typedef to another type, return true
1707  */
1708 static bool is_typedef_symbol(symbol_t *symbol)
1709 {
1710         const declaration_t *const declaration =
1711                 get_declaration(symbol, NAMESPACE_NORMAL);
1712         return
1713                 declaration != NULL &&
1714                 declaration->storage_class == STORAGE_CLASS_TYPEDEF;
1715 }
1716
1717 static type_t *parse_typeof(void)
1718 {
1719         eat(T___typeof__);
1720
1721         type_t *type;
1722
1723         expect('(');
1724
1725         expression_t *expression  = NULL;
1726
1727 restart:
1728         switch(token.type) {
1729         case T___extension__:
1730                 /* this can be a prefix to a typename or an expression */
1731                 /* we simply eat it now. */
1732                 do {
1733                         next_token();
1734                 } while(token.type == T___extension__);
1735                 goto restart;
1736
1737         case T_IDENTIFIER:
1738                 if(is_typedef_symbol(token.v.symbol)) {
1739                         type = parse_typename();
1740                 } else {
1741                         expression = parse_expression();
1742                         type       = expression->base.type;
1743                 }
1744                 break;
1745
1746         TYPENAME_START
1747                 type = parse_typename();
1748                 break;
1749
1750         default:
1751                 expression = parse_expression();
1752                 type       = expression->base.type;
1753                 break;
1754         }
1755
1756         expect(')');
1757
1758         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF, expression->base.source_position);
1759         typeof_type->typeoft.expression  = expression;
1760         typeof_type->typeoft.typeof_type = type;
1761
1762         return typeof_type;
1763 }
1764
1765 typedef enum {
1766         SPECIFIER_SIGNED    = 1 << 0,
1767         SPECIFIER_UNSIGNED  = 1 << 1,
1768         SPECIFIER_LONG      = 1 << 2,
1769         SPECIFIER_INT       = 1 << 3,
1770         SPECIFIER_DOUBLE    = 1 << 4,
1771         SPECIFIER_CHAR      = 1 << 5,
1772         SPECIFIER_SHORT     = 1 << 6,
1773         SPECIFIER_LONG_LONG = 1 << 7,
1774         SPECIFIER_FLOAT     = 1 << 8,
1775         SPECIFIER_BOOL      = 1 << 9,
1776         SPECIFIER_VOID      = 1 << 10,
1777 #ifdef PROVIDE_COMPLEX
1778         SPECIFIER_COMPLEX   = 1 << 11,
1779         SPECIFIER_IMAGINARY = 1 << 12,
1780 #endif
1781 } specifiers_t;
1782
1783 static type_t *create_builtin_type(symbol_t *const symbol,
1784                                    type_t *const real_type)
1785 {
1786         type_t *type            = allocate_type_zero(TYPE_BUILTIN, builtin_source_position);
1787         type->builtin.symbol    = symbol;
1788         type->builtin.real_type = real_type;
1789
1790         type_t *result = typehash_insert(type);
1791         if (type != result) {
1792                 free_type(type);
1793         }
1794
1795         return result;
1796 }
1797
1798 static type_t *get_typedef_type(symbol_t *symbol)
1799 {
1800         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
1801         if(declaration == NULL
1802                         || declaration->storage_class != STORAGE_CLASS_TYPEDEF)
1803                 return NULL;
1804
1805         type_t *type               = allocate_type_zero(TYPE_TYPEDEF, declaration->source_position);
1806         type->typedeft.declaration = declaration;
1807
1808         return type;
1809 }
1810
1811 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
1812 {
1813         type_t   *type            = NULL;
1814         unsigned  type_qualifiers = 0;
1815         unsigned  type_specifiers = 0;
1816         int       newtype         = 0;
1817
1818         specifiers->source_position = token.source_position;
1819
1820         while(true) {
1821                 switch(token.type) {
1822
1823                 /* storage class */
1824 #define MATCH_STORAGE_CLASS(token, class)                                  \
1825                 case token:                                                        \
1826                         if(specifiers->declared_storage_class != STORAGE_CLASS_NONE) { \
1827                                 errorf(HERE, "multiple storage classes in declaration specifiers"); \
1828                         }                                                              \
1829                         specifiers->declared_storage_class = class;                    \
1830                         next_token();                                                  \
1831                         break;
1832
1833                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
1834                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
1835                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
1836                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
1837                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
1838
1839                 case T___thread:
1840                         switch (specifiers->declared_storage_class) {
1841                         case STORAGE_CLASS_NONE:
1842                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD;
1843                                 break;
1844
1845                         case STORAGE_CLASS_EXTERN:
1846                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_EXTERN;
1847                                 break;
1848
1849                         case STORAGE_CLASS_STATIC:
1850                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_STATIC;
1851                                 break;
1852
1853                         default:
1854                                 errorf(HERE, "multiple storage classes in declaration specifiers");
1855                                 break;
1856                         }
1857                         next_token();
1858                         break;
1859
1860                 /* type qualifiers */
1861 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
1862                 case token:                                                     \
1863                         type_qualifiers |= qualifier;                               \
1864                         next_token();                                               \
1865                         break;
1866
1867                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
1868                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
1869                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
1870
1871                 case T___extension__:
1872                         /* TODO */
1873                         next_token();
1874                         break;
1875
1876                 /* type specifiers */
1877 #define MATCH_SPECIFIER(token, specifier, name)                         \
1878                 case token:                                                     \
1879                         next_token();                                               \
1880                         if(type_specifiers & specifier) {                           \
1881                                 errorf(HERE, "multiple " name " type specifiers given"); \
1882                         } else {                                                    \
1883                                 type_specifiers |= specifier;                           \
1884                         }                                                           \
1885                         break;
1886
1887                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
1888                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
1889                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
1890                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
1891                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
1892                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
1893                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
1894                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
1895                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
1896 #ifdef PROVIDE_COMPLEX
1897                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
1898                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
1899 #endif
1900                 case T_forceinline:
1901                         /* only in microsoft mode */
1902                         specifiers->decl_modifiers |= DM_FORCEINLINE;
1903
1904                 case T_inline:
1905                         next_token();
1906                         specifiers->is_inline = true;
1907                         break;
1908
1909                 case T_long:
1910                         next_token();
1911                         if(type_specifiers & SPECIFIER_LONG_LONG) {
1912                                 errorf(HERE, "multiple type specifiers given");
1913                         } else if(type_specifiers & SPECIFIER_LONG) {
1914                                 type_specifiers |= SPECIFIER_LONG_LONG;
1915                         } else {
1916                                 type_specifiers |= SPECIFIER_LONG;
1917                         }
1918                         break;
1919
1920                 case T_struct: {
1921                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT, HERE);
1922
1923                         type->compound.declaration = parse_compound_type_specifier(true);
1924                         break;
1925                 }
1926                 case T_union: {
1927                         type = allocate_type_zero(TYPE_COMPOUND_UNION, HERE);
1928
1929                         type->compound.declaration = parse_compound_type_specifier(false);
1930                         break;
1931                 }
1932                 case T_enum:
1933                         type = parse_enum_specifier();
1934                         break;
1935                 case T___typeof__:
1936                         type = parse_typeof();
1937                         break;
1938                 case T___builtin_va_list:
1939                         type = duplicate_type(type_valist);
1940                         next_token();
1941                         break;
1942
1943                 case T___attribute__:
1944                         parse_attributes();
1945                         break;
1946
1947                 case T_IDENTIFIER: {
1948                         /* only parse identifier if we haven't found a type yet */
1949                         if(type != NULL || type_specifiers != 0)
1950                                 goto finish_specifiers;
1951
1952                         type_t *typedef_type = get_typedef_type(token.v.symbol);
1953
1954                         if(typedef_type == NULL)
1955                                 goto finish_specifiers;
1956
1957                         next_token();
1958                         type = typedef_type;
1959                         break;
1960                 }
1961
1962                 /* function specifier */
1963                 default:
1964                         goto finish_specifiers;
1965                 }
1966         }
1967
1968 finish_specifiers:
1969
1970         if(type == NULL) {
1971                 atomic_type_kind_t atomic_type;
1972
1973                 /* match valid basic types */
1974                 switch(type_specifiers) {
1975                 case SPECIFIER_VOID:
1976                         atomic_type = ATOMIC_TYPE_VOID;
1977                         break;
1978                 case SPECIFIER_CHAR:
1979                         atomic_type = ATOMIC_TYPE_CHAR;
1980                         break;
1981                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
1982                         atomic_type = ATOMIC_TYPE_SCHAR;
1983                         break;
1984                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
1985                         atomic_type = ATOMIC_TYPE_UCHAR;
1986                         break;
1987                 case SPECIFIER_SHORT:
1988                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
1989                 case SPECIFIER_SHORT | SPECIFIER_INT:
1990                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1991                         atomic_type = ATOMIC_TYPE_SHORT;
1992                         break;
1993                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
1994                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1995                         atomic_type = ATOMIC_TYPE_USHORT;
1996                         break;
1997                 case SPECIFIER_INT:
1998                 case SPECIFIER_SIGNED:
1999                 case SPECIFIER_SIGNED | SPECIFIER_INT:
2000                         atomic_type = ATOMIC_TYPE_INT;
2001                         break;
2002                 case SPECIFIER_UNSIGNED:
2003                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
2004                         atomic_type = ATOMIC_TYPE_UINT;
2005                         break;
2006                 case SPECIFIER_LONG:
2007                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
2008                 case SPECIFIER_LONG | SPECIFIER_INT:
2009                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
2010                         atomic_type = ATOMIC_TYPE_LONG;
2011                         break;
2012                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
2013                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
2014                         atomic_type = ATOMIC_TYPE_ULONG;
2015                         break;
2016                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
2017                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
2018                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
2019                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
2020                         | SPECIFIER_INT:
2021                         atomic_type = ATOMIC_TYPE_LONGLONG;
2022                         break;
2023                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
2024                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
2025                         | SPECIFIER_INT:
2026                         atomic_type = ATOMIC_TYPE_ULONGLONG;
2027                         break;
2028                 case SPECIFIER_FLOAT:
2029                         atomic_type = ATOMIC_TYPE_FLOAT;
2030                         break;
2031                 case SPECIFIER_DOUBLE:
2032                         atomic_type = ATOMIC_TYPE_DOUBLE;
2033                         break;
2034                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
2035                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
2036                         break;
2037                 case SPECIFIER_BOOL:
2038                         atomic_type = ATOMIC_TYPE_BOOL;
2039                         break;
2040 #ifdef PROVIDE_COMPLEX
2041                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
2042                         atomic_type = ATOMIC_TYPE_FLOAT_COMPLEX;
2043                         break;
2044                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
2045                         atomic_type = ATOMIC_TYPE_DOUBLE_COMPLEX;
2046                         break;
2047                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
2048                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_COMPLEX;
2049                         break;
2050                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
2051                         atomic_type = ATOMIC_TYPE_FLOAT_IMAGINARY;
2052                         break;
2053                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
2054                         atomic_type = ATOMIC_TYPE_DOUBLE_IMAGINARY;
2055                         break;
2056                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
2057                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY;
2058                         break;
2059 #endif
2060                 default:
2061                         /* invalid specifier combination, give an error message */
2062                         if(type_specifiers == 0) {
2063                                 if (! strict_mode) {
2064                                         if (warning.implicit_int) {
2065                                                 warningf(HERE, "no type specifiers in declaration, using 'int'");
2066                                         }
2067                                         atomic_type = ATOMIC_TYPE_INT;
2068                                         break;
2069                                 } else {
2070                                         errorf(HERE, "no type specifiers given in declaration");
2071                                 }
2072                         } else if((type_specifiers & SPECIFIER_SIGNED) &&
2073                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
2074                                 errorf(HERE, "signed and unsigned specifiers gives");
2075                         } else if(type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
2076                                 errorf(HERE, "only integer types can be signed or unsigned");
2077                         } else {
2078                                 errorf(HERE, "multiple datatypes in declaration");
2079                         }
2080                         atomic_type = ATOMIC_TYPE_INVALID;
2081                 }
2082
2083                 type               = allocate_type_zero(TYPE_ATOMIC, builtin_source_position);
2084                 type->atomic.akind = atomic_type;
2085                 newtype            = 1;
2086         } else {
2087                 if(type_specifiers != 0) {
2088                         errorf(HERE, "multiple datatypes in declaration");
2089                 }
2090         }
2091
2092         type->base.qualifiers = type_qualifiers;
2093
2094         type_t *result = typehash_insert(type);
2095         if(newtype && result != type) {
2096                 free_type(type);
2097         }
2098
2099         specifiers->type = result;
2100 }
2101
2102 static type_qualifiers_t parse_type_qualifiers(void)
2103 {
2104         type_qualifiers_t type_qualifiers = TYPE_QUALIFIER_NONE;
2105
2106         while(true) {
2107                 switch(token.type) {
2108                 /* type qualifiers */
2109                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
2110                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
2111                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
2112
2113                 default:
2114                         return type_qualifiers;
2115                 }
2116         }
2117 }
2118
2119 static declaration_t *parse_identifier_list(void)
2120 {
2121         declaration_t *declarations     = NULL;
2122         declaration_t *last_declaration = NULL;
2123         do {
2124                 declaration_t *const declaration = allocate_declaration_zero();
2125                 declaration->type            = NULL; /* a K&R parameter list has no types, yet */
2126                 declaration->source_position = token.source_position;
2127                 declaration->symbol          = token.v.symbol;
2128                 next_token();
2129
2130                 if(last_declaration != NULL) {
2131                         last_declaration->next = declaration;
2132                 } else {
2133                         declarations = declaration;
2134                 }
2135                 last_declaration = declaration;
2136
2137                 if(token.type != ',')
2138                         break;
2139                 next_token();
2140         } while(token.type == T_IDENTIFIER);
2141
2142         return declarations;
2143 }
2144
2145 static void semantic_parameter(declaration_t *declaration)
2146 {
2147         /* TODO: improve error messages */
2148
2149         if(declaration->declared_storage_class == STORAGE_CLASS_TYPEDEF) {
2150                 errorf(HERE, "typedef not allowed in parameter list");
2151         } else if(declaration->declared_storage_class != STORAGE_CLASS_NONE
2152                         && declaration->declared_storage_class != STORAGE_CLASS_REGISTER) {
2153                 errorf(HERE, "parameter may only have none or register storage class");
2154         }
2155
2156         type_t *const orig_type = declaration->type;
2157         type_t *      type      = skip_typeref(orig_type);
2158
2159         /* Array as last part of a parameter type is just syntactic sugar.  Turn it
2160          * into a pointer. Â§ 6.7.5.3 (7) */
2161         if (is_type_array(type)) {
2162                 type_t *const element_type = type->array.element_type;
2163
2164                 type = make_pointer_type(element_type, type->base.qualifiers);
2165
2166                 declaration->type = type;
2167         }
2168
2169         if(is_type_incomplete(type)) {
2170                 errorf(HERE, "incomplete type '%T' not allowed for parameter '%Y'",
2171                        orig_type, declaration->symbol);
2172         }
2173 }
2174
2175 static declaration_t *parse_parameter(void)
2176 {
2177         declaration_specifiers_t specifiers;
2178         memset(&specifiers, 0, sizeof(specifiers));
2179
2180         parse_declaration_specifiers(&specifiers);
2181
2182         declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/true);
2183
2184         semantic_parameter(declaration);
2185
2186         return declaration;
2187 }
2188
2189 static declaration_t *parse_parameters(function_type_t *type)
2190 {
2191         if(token.type == T_IDENTIFIER) {
2192                 symbol_t *symbol = token.v.symbol;
2193                 if(!is_typedef_symbol(symbol)) {
2194                         type->kr_style_parameters = true;
2195                         return parse_identifier_list();
2196                 }
2197         }
2198
2199         if(token.type == ')') {
2200                 type->unspecified_parameters = 1;
2201                 return NULL;
2202         }
2203         if(token.type == T_void && look_ahead(1)->type == ')') {
2204                 next_token();
2205                 return NULL;
2206         }
2207
2208         declaration_t        *declarations = NULL;
2209         declaration_t        *declaration;
2210         declaration_t        *last_declaration = NULL;
2211         function_parameter_t *parameter;
2212         function_parameter_t *last_parameter = NULL;
2213
2214         while(true) {
2215                 switch(token.type) {
2216                 case T_DOTDOTDOT:
2217                         next_token();
2218                         type->variadic = 1;
2219                         return declarations;
2220
2221                 case T_IDENTIFIER:
2222                 case T___extension__:
2223                 DECLARATION_START
2224                         declaration = parse_parameter();
2225
2226                         parameter       = obstack_alloc(type_obst, sizeof(parameter[0]));
2227                         memset(parameter, 0, sizeof(parameter[0]));
2228                         parameter->type = declaration->type;
2229
2230                         if(last_parameter != NULL) {
2231                                 last_declaration->next = declaration;
2232                                 last_parameter->next   = parameter;
2233                         } else {
2234                                 type->parameters = parameter;
2235                                 declarations     = declaration;
2236                         }
2237                         last_parameter   = parameter;
2238                         last_declaration = declaration;
2239                         break;
2240
2241                 default:
2242                         return declarations;
2243                 }
2244                 if(token.type != ',')
2245                         return declarations;
2246                 next_token();
2247         }
2248 }
2249
2250 typedef enum {
2251         CONSTRUCT_INVALID,
2252         CONSTRUCT_POINTER,
2253         CONSTRUCT_FUNCTION,
2254         CONSTRUCT_ARRAY
2255 } construct_type_kind_t;
2256
2257 typedef struct construct_type_t construct_type_t;
2258 struct construct_type_t {
2259         construct_type_kind_t  kind;
2260         construct_type_t      *next;
2261 };
2262
2263 typedef struct parsed_pointer_t parsed_pointer_t;
2264 struct parsed_pointer_t {
2265         construct_type_t  construct_type;
2266         type_qualifiers_t type_qualifiers;
2267 };
2268
2269 typedef struct construct_function_type_t construct_function_type_t;
2270 struct construct_function_type_t {
2271         construct_type_t  construct_type;
2272         type_t           *function_type;
2273 };
2274
2275 typedef struct parsed_array_t parsed_array_t;
2276 struct parsed_array_t {
2277         construct_type_t  construct_type;
2278         type_qualifiers_t type_qualifiers;
2279         bool              is_static;
2280         bool              is_variable;
2281         expression_t     *size;
2282 };
2283
2284 typedef struct construct_base_type_t construct_base_type_t;
2285 struct construct_base_type_t {
2286         construct_type_t  construct_type;
2287         type_t           *type;
2288 };
2289
2290 static construct_type_t *parse_pointer_declarator(void)
2291 {
2292         eat('*');
2293
2294         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
2295         memset(pointer, 0, sizeof(pointer[0]));
2296         pointer->construct_type.kind = CONSTRUCT_POINTER;
2297         pointer->type_qualifiers     = parse_type_qualifiers();
2298
2299         return (construct_type_t*) pointer;
2300 }
2301
2302 static construct_type_t *parse_array_declarator(void)
2303 {
2304         eat('[');
2305
2306         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
2307         memset(array, 0, sizeof(array[0]));
2308         array->construct_type.kind = CONSTRUCT_ARRAY;
2309
2310         if(token.type == T_static) {
2311                 array->is_static = true;
2312                 next_token();
2313         }
2314
2315         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
2316         if(type_qualifiers != 0) {
2317                 if(token.type == T_static) {
2318                         array->is_static = true;
2319                         next_token();
2320                 }
2321         }
2322         array->type_qualifiers = type_qualifiers;
2323
2324         if(token.type == '*' && look_ahead(1)->type == ']') {
2325                 array->is_variable = true;
2326                 next_token();
2327         } else if(token.type != ']') {
2328                 array->size = parse_assignment_expression();
2329         }
2330
2331         expect(']');
2332
2333         return (construct_type_t*) array;
2334 }
2335
2336 static construct_type_t *parse_function_declarator(declaration_t *declaration)
2337 {
2338         eat('(');
2339
2340         type_t *type;
2341         if(declaration != NULL) {
2342                 type = allocate_type_zero(TYPE_FUNCTION, declaration->source_position);
2343         } else {
2344                 type = allocate_type_zero(TYPE_FUNCTION, token.source_position);
2345         }
2346
2347         declaration_t *parameters = parse_parameters(&type->function);
2348         if(declaration != NULL) {
2349                 declaration->scope.declarations = parameters;
2350         }
2351
2352         construct_function_type_t *construct_function_type =
2353                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
2354         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
2355         construct_function_type->construct_type.kind = CONSTRUCT_FUNCTION;
2356         construct_function_type->function_type       = type;
2357
2358         expect(')');
2359
2360         return (construct_type_t*) construct_function_type;
2361 }
2362
2363 static construct_type_t *parse_inner_declarator(declaration_t *declaration,
2364                 bool may_be_abstract)
2365 {
2366         /* construct a single linked list of construct_type_t's which describe
2367          * how to construct the final declarator type */
2368         construct_type_t *first = NULL;
2369         construct_type_t *last  = NULL;
2370
2371         /* pointers */
2372         while(token.type == '*') {
2373                 construct_type_t *type = parse_pointer_declarator();
2374
2375                 if(last == NULL) {
2376                         first = type;
2377                         last  = type;
2378                 } else {
2379                         last->next = type;
2380                         last       = type;
2381                 }
2382         }
2383
2384         /* TODO: find out if this is correct */
2385         parse_attributes();
2386
2387         construct_type_t *inner_types = NULL;
2388
2389         switch(token.type) {
2390         case T_IDENTIFIER:
2391                 if(declaration == NULL) {
2392                         errorf(HERE, "no identifier expected in typename");
2393                 } else {
2394                         declaration->symbol          = token.v.symbol;
2395                         declaration->source_position = token.source_position;
2396                 }
2397                 next_token();
2398                 break;
2399         case '(':
2400                 next_token();
2401                 inner_types = parse_inner_declarator(declaration, may_be_abstract);
2402                 expect(')');
2403                 break;
2404         default:
2405                 if(may_be_abstract)
2406                         break;
2407                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', 0);
2408                 /* avoid a loop in the outermost scope, because eat_statement doesn't
2409                  * eat '}' */
2410                 if(token.type == '}' && current_function == NULL) {
2411                         next_token();
2412                 } else {
2413                         eat_statement();
2414                 }
2415                 return NULL;
2416         }
2417
2418         construct_type_t *p = last;
2419
2420         while(true) {
2421                 construct_type_t *type;
2422                 switch(token.type) {
2423                 case '(':
2424                         type = parse_function_declarator(declaration);
2425                         break;
2426                 case '[':
2427                         type = parse_array_declarator();
2428                         break;
2429                 default:
2430                         goto declarator_finished;
2431                 }
2432
2433                 /* insert in the middle of the list (behind p) */
2434                 if(p != NULL) {
2435                         type->next = p->next;
2436                         p->next    = type;
2437                 } else {
2438                         type->next = first;
2439                         first      = type;
2440                 }
2441                 if(last == p) {
2442                         last = type;
2443                 }
2444         }
2445
2446 declarator_finished:
2447         parse_attributes();
2448
2449         /* append inner_types at the end of the list, we don't to set last anymore
2450          * as it's not needed anymore */
2451         if(last == NULL) {
2452                 assert(first == NULL);
2453                 first = inner_types;
2454         } else {
2455                 last->next = inner_types;
2456         }
2457
2458         return first;
2459 }
2460
2461 static type_t *construct_declarator_type(construct_type_t *construct_list,
2462                                          type_t *type)
2463 {
2464         construct_type_t *iter = construct_list;
2465         for( ; iter != NULL; iter = iter->next) {
2466                 switch(iter->kind) {
2467                 case CONSTRUCT_INVALID:
2468                         panic("invalid type construction found");
2469                 case CONSTRUCT_FUNCTION: {
2470                         construct_function_type_t *construct_function_type
2471                                 = (construct_function_type_t*) iter;
2472
2473                         type_t *function_type = construct_function_type->function_type;
2474
2475                         function_type->function.return_type = type;
2476
2477                         type_t *skipped_return_type = skip_typeref(type);
2478                         if (is_type_function(skipped_return_type)) {
2479                                 errorf(HERE, "function returning function is not allowed");
2480                                 type = type_error_type;
2481                         } else if (is_type_array(skipped_return_type)) {
2482                                 errorf(HERE, "function returning array is not allowed");
2483                                 type = type_error_type;
2484                         } else {
2485                                 type = function_type;
2486                         }
2487                         break;
2488                 }
2489
2490                 case CONSTRUCT_POINTER: {
2491                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
2492                         type_t           *pointer_type   = allocate_type_zero(TYPE_POINTER, (source_position_t){NULL, 0});
2493                         pointer_type->pointer.points_to  = type;
2494                         pointer_type->base.qualifiers    = parsed_pointer->type_qualifiers;
2495
2496                         type = pointer_type;
2497                         break;
2498                 }
2499
2500                 case CONSTRUCT_ARRAY: {
2501                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
2502                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY, (source_position_t){NULL, 0});
2503
2504                         expression_t *size_expression = parsed_array->size;
2505
2506                         array_type->base.qualifiers       = parsed_array->type_qualifiers;
2507                         array_type->array.element_type    = type;
2508                         array_type->array.is_static       = parsed_array->is_static;
2509                         array_type->array.is_variable     = parsed_array->is_variable;
2510                         array_type->array.size_expression = size_expression;
2511
2512                         if(size_expression != NULL &&
2513                                         is_constant_expression(size_expression)) {
2514                                 array_type->array.size_constant = true;
2515                                 array_type->array.size
2516                                         = fold_constant(size_expression);
2517                         }
2518
2519                         type_t *skipped_type = skip_typeref(type);
2520                         if (is_type_atomic(skipped_type, ATOMIC_TYPE_VOID)) {
2521                                 errorf(HERE, "array of void is not allowed");
2522                                 type = type_error_type;
2523                         } else {
2524                                 type = array_type;
2525                         }
2526                         break;
2527                 }
2528                 }
2529
2530                 type_t *hashed_type = typehash_insert(type);
2531                 if(hashed_type != type) {
2532                         /* the function type was constructed earlier freeing it here will
2533                          * destroy other types... */
2534                         if(iter->kind != CONSTRUCT_FUNCTION) {
2535                                 free_type(type);
2536                         }
2537                         type = hashed_type;
2538                 }
2539         }
2540
2541         return type;
2542 }
2543
2544 static declaration_t *parse_declarator(
2545                 const declaration_specifiers_t *specifiers, bool may_be_abstract)
2546 {
2547         declaration_t *const declaration    = allocate_declaration_zero();
2548         declaration->declared_storage_class = specifiers->declared_storage_class;
2549         declaration->modifiers              = specifiers->decl_modifiers;
2550         declaration->is_inline              = specifiers->is_inline;
2551
2552         declaration->storage_class          = specifiers->declared_storage_class;
2553         if(declaration->storage_class == STORAGE_CLASS_NONE
2554                         && scope != global_scope) {
2555                 declaration->storage_class = STORAGE_CLASS_AUTO;
2556         }
2557
2558         construct_type_t *construct_type
2559                 = parse_inner_declarator(declaration, may_be_abstract);
2560         type_t *const type = specifiers->type;
2561         declaration->type = construct_declarator_type(construct_type, type);
2562
2563         if(construct_type != NULL) {
2564                 obstack_free(&temp_obst, construct_type);
2565         }
2566
2567         return declaration;
2568 }
2569
2570 static type_t *parse_abstract_declarator(type_t *base_type)
2571 {
2572         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
2573
2574         type_t *result = construct_declarator_type(construct_type, base_type);
2575         if(construct_type != NULL) {
2576                 obstack_free(&temp_obst, construct_type);
2577         }
2578
2579         return result;
2580 }
2581
2582 static declaration_t *append_declaration(declaration_t* const declaration)
2583 {
2584         if (last_declaration != NULL) {
2585                 last_declaration->next = declaration;
2586         } else {
2587                 scope->declarations = declaration;
2588         }
2589         last_declaration = declaration;
2590         return declaration;
2591 }
2592
2593 /**
2594  * Check if the declaration of main is suspicious.  main should be a
2595  * function with external linkage, returning int, taking either zero
2596  * arguments, two, or three arguments of appropriate types, ie.
2597  *
2598  * int main([ int argc, char **argv [, char **env ] ]).
2599  *
2600  * @param decl    the declaration to check
2601  * @param type    the function type of the declaration
2602  */
2603 static void check_type_of_main(const declaration_t *const decl, const function_type_t *const func_type)
2604 {
2605         if (decl->storage_class == STORAGE_CLASS_STATIC) {
2606                 warningf(decl->source_position, "'main' is normally a non-static function");
2607         }
2608         if (skip_typeref(func_type->return_type) != type_int) {
2609                 warningf(decl->source_position, "return type of 'main' should be 'int', but is '%T'", func_type->return_type);
2610         }
2611         const function_parameter_t *parm = func_type->parameters;
2612         if (parm != NULL) {
2613                 type_t *const first_type = parm->type;
2614                 if (!types_compatible(skip_typeref(first_type), type_int)) {
2615                         warningf(decl->source_position, "first argument of 'main' should be 'int', but is '%T'", first_type);
2616                 }
2617                 parm = parm->next;
2618                 if (parm != NULL) {
2619                         type_t *const second_type = parm->type;
2620                         if (!types_compatible(skip_typeref(second_type), type_char_ptr_ptr)) {
2621                                 warningf(decl->source_position, "second argument of 'main' should be 'char**', but is '%T'", second_type);
2622                         }
2623                         parm = parm->next;
2624                         if (parm != NULL) {
2625                                 type_t *const third_type = parm->type;
2626                                 if (!types_compatible(skip_typeref(third_type), type_char_ptr_ptr)) {
2627                                         warningf(decl->source_position, "third argument of 'main' should be 'char**', but is '%T'", third_type);
2628                                 }
2629                                 parm = parm->next;
2630                                 if (parm != NULL) {
2631                                         warningf(decl->source_position, "'main' takes only zero, two or three arguments");
2632                                 }
2633                         }
2634                 } else {
2635                         warningf(decl->source_position, "'main' takes only zero, two or three arguments");
2636                 }
2637         }
2638 }
2639
2640 /**
2641  * Check if a symbol is the equal to "main".
2642  */
2643 static bool is_sym_main(const symbol_t *const sym)
2644 {
2645         return strcmp(sym->string, "main") == 0;
2646 }
2647
2648 static declaration_t *internal_record_declaration(
2649         declaration_t *const declaration,
2650         const bool is_function_definition)
2651 {
2652         const symbol_t *const symbol  = declaration->symbol;
2653         const namespace_t     namespc = (namespace_t)declaration->namespc;
2654
2655         type_t *const orig_type = declaration->type;
2656         type_t *const type      = skip_typeref(orig_type);
2657         if (is_type_function(type) &&
2658                         type->function.unspecified_parameters &&
2659                         warning.strict_prototypes) {
2660                 warningf(declaration->source_position,
2661                          "function declaration '%#T' is not a prototype",
2662                          orig_type, declaration->symbol);
2663         }
2664
2665         if (is_function_definition && warning.main && is_sym_main(symbol)) {
2666                 check_type_of_main(declaration, &type->function);
2667         }
2668
2669         assert(declaration->symbol != NULL);
2670         declaration_t *previous_declaration = get_declaration(symbol, namespc);
2671
2672         assert(declaration != previous_declaration);
2673         if (previous_declaration != NULL) {
2674                 if (previous_declaration->parent_scope == scope) {
2675                         /* can happen for K&R style declarations */
2676                         if(previous_declaration->type == NULL) {
2677                                 previous_declaration->type = declaration->type;
2678                         }
2679
2680                         const type_t *prev_type = skip_typeref(previous_declaration->type);
2681                         if (!types_compatible(type, prev_type)) {
2682                                 errorf(declaration->source_position,
2683                                        "declaration '%#T' is incompatible with "
2684                                        "previous declaration '%#T'",
2685                                        orig_type, symbol, previous_declaration->type, symbol);
2686                                 errorf(previous_declaration->source_position,
2687                                        "previous declaration of '%Y' was here", symbol);
2688                         } else {
2689                                 unsigned old_storage_class
2690                                         = previous_declaration->storage_class;
2691                                 unsigned new_storage_class = declaration->storage_class;
2692
2693                                 if(is_type_incomplete(prev_type)) {
2694                                         previous_declaration->type = type;
2695                                         prev_type                  = type;
2696                                 }
2697
2698                                 /* pretend no storage class means extern for function
2699                                  * declarations (except if the previous declaration is neither
2700                                  * none nor extern) */
2701                                 if (is_type_function(type)) {
2702                                         switch (old_storage_class) {
2703                                                 case STORAGE_CLASS_NONE:
2704                                                         old_storage_class = STORAGE_CLASS_EXTERN;
2705
2706                                                 case STORAGE_CLASS_EXTERN:
2707                                                         if (is_function_definition) {
2708                                                                 if (warning.missing_prototypes &&
2709                                                                     prev_type->function.unspecified_parameters &&
2710                                                                     !is_sym_main(symbol)) {
2711                                                                         warningf(declaration->source_position,
2712                                                                                  "no previous prototype for '%#T'",
2713                                                                                  orig_type, symbol);
2714                                                                 }
2715                                                         } else if (new_storage_class == STORAGE_CLASS_NONE) {
2716                                                                 new_storage_class = STORAGE_CLASS_EXTERN;
2717                                                         }
2718                                                         break;
2719
2720                                                 default: break;
2721                                         }
2722                                 }
2723
2724                                 if (old_storage_class == STORAGE_CLASS_EXTERN &&
2725                                                 new_storage_class == STORAGE_CLASS_EXTERN) {
2726 warn_redundant_declaration:
2727                                         if (warning.redundant_decls) {
2728                                                 warningf(declaration->source_position,
2729                                                          "redundant declaration for '%Y'", symbol);
2730                                                 warningf(previous_declaration->source_position,
2731                                                          "previous declaration of '%Y' was here",
2732                                                          symbol);
2733                                         }
2734                                 } else if (current_function == NULL) {
2735                                         if (old_storage_class != STORAGE_CLASS_STATIC &&
2736                                                         new_storage_class == STORAGE_CLASS_STATIC) {
2737                                                 errorf(declaration->source_position,
2738                                                        "static declaration of '%Y' follows non-static declaration",
2739                                                        symbol);
2740                                                 errorf(previous_declaration->source_position,
2741                                                        "previous declaration of '%Y' was here", symbol);
2742                                         } else {
2743                                                 if (old_storage_class != STORAGE_CLASS_EXTERN && !is_function_definition) {
2744                                                         goto warn_redundant_declaration;
2745                                                 }
2746                                                 if (new_storage_class == STORAGE_CLASS_NONE) {
2747                                                         previous_declaration->storage_class = STORAGE_CLASS_NONE;
2748                                                         previous_declaration->declared_storage_class = STORAGE_CLASS_NONE;
2749                                                 }
2750                                         }
2751                                 } else {
2752                                         if (old_storage_class == new_storage_class) {
2753                                                 errorf(declaration->source_position,
2754                                                        "redeclaration of '%Y'", symbol);
2755                                         } else {
2756                                                 errorf(declaration->source_position,
2757                                                        "redeclaration of '%Y' with different linkage",
2758                                                        symbol);
2759                                         }
2760                                         errorf(previous_declaration->source_position,
2761                                                "previous declaration of '%Y' was here", symbol);
2762                                 }
2763                         }
2764                         return previous_declaration;
2765                 }
2766         } else if (is_function_definition) {
2767                 if (declaration->storage_class != STORAGE_CLASS_STATIC) {
2768                         if (warning.missing_prototypes && !is_sym_main(symbol)) {
2769                                 warningf(declaration->source_position,
2770                                          "no previous prototype for '%#T'", orig_type, symbol);
2771                         } else if (warning.missing_declarations && !is_sym_main(symbol)) {
2772                                 warningf(declaration->source_position,
2773                                          "no previous declaration for '%#T'", orig_type,
2774                                          symbol);
2775                         }
2776                 }
2777         } else if (warning.missing_declarations &&
2778             scope == global_scope &&
2779             !is_type_function(type) && (
2780               declaration->storage_class == STORAGE_CLASS_NONE ||
2781               declaration->storage_class == STORAGE_CLASS_THREAD
2782             )) {
2783                 warningf(declaration->source_position,
2784                          "no previous declaration for '%#T'", orig_type, symbol);
2785         }
2786
2787         assert(declaration->parent_scope == NULL);
2788         assert(scope != NULL);
2789
2790         declaration->parent_scope = scope;
2791
2792         environment_push(declaration);
2793         return append_declaration(declaration);
2794 }
2795
2796 static declaration_t *record_declaration(declaration_t *declaration)
2797 {
2798         return internal_record_declaration(declaration, false);
2799 }
2800
2801 static declaration_t *record_function_definition(declaration_t *declaration)
2802 {
2803         return internal_record_declaration(declaration, true);
2804 }
2805
2806 static void parser_error_multiple_definition(declaration_t *declaration,
2807                 const source_position_t source_position)
2808 {
2809         errorf(source_position, "multiple definition of symbol '%Y'",
2810                declaration->symbol);
2811         errorf(declaration->source_position,
2812                "this is the location of the previous definition.");
2813 }
2814
2815 static bool is_declaration_specifier(const token_t *token,
2816                                      bool only_type_specifiers)
2817 {
2818         switch(token->type) {
2819                 TYPE_SPECIFIERS
2820                         return true;
2821                 case T_IDENTIFIER:
2822                         return is_typedef_symbol(token->v.symbol);
2823
2824                 case T___extension__:
2825                 STORAGE_CLASSES
2826                 TYPE_QUALIFIERS
2827                         return !only_type_specifiers;
2828
2829                 default:
2830                         return false;
2831         }
2832 }
2833
2834 static void parse_init_declarator_rest(declaration_t *declaration)
2835 {
2836         eat('=');
2837
2838         type_t *orig_type = declaration->type;
2839         type_t *type      = skip_typeref(orig_type);
2840
2841         if(declaration->init.initializer != NULL) {
2842                 parser_error_multiple_definition(declaration, token.source_position);
2843         }
2844
2845         bool must_be_constant = false;
2846         if(declaration->storage_class == STORAGE_CLASS_STATIC
2847                         || declaration->storage_class == STORAGE_CLASS_THREAD_STATIC
2848                         || declaration->parent_scope == global_scope) {
2849                 must_be_constant = true;
2850         }
2851
2852         parse_initializer_env_t env;
2853         env.type             = orig_type;
2854         env.must_be_constant = must_be_constant;
2855         parse_initializer(&env);
2856
2857         if(env.type != orig_type) {
2858                 orig_type         = env.type;
2859                 type              = skip_typeref(orig_type);
2860                 declaration->type = env.type;
2861         }
2862
2863         if(is_type_function(type)) {
2864                 errorf(declaration->source_position,
2865                        "initializers not allowed for function types at declator '%Y' (type '%T')",
2866                        declaration->symbol, orig_type);
2867         } else {
2868                 declaration->init.initializer = env.initializer;
2869         }
2870 }
2871
2872 /* parse rest of a declaration without any declarator */
2873 static void parse_anonymous_declaration_rest(
2874                 const declaration_specifiers_t *specifiers,
2875                 parsed_declaration_func finished_declaration)
2876 {
2877         eat(';');
2878
2879         declaration_t *const declaration    = allocate_declaration_zero();
2880         declaration->type                   = specifiers->type;
2881         declaration->declared_storage_class = specifiers->declared_storage_class;
2882         declaration->source_position        = specifiers->source_position;
2883
2884         if (declaration->declared_storage_class != STORAGE_CLASS_NONE) {
2885                 warningf(declaration->source_position, "useless storage class in empty declaration");
2886         }
2887         declaration->storage_class = STORAGE_CLASS_NONE;
2888
2889         type_t *type = declaration->type;
2890         switch (type->kind) {
2891                 case TYPE_COMPOUND_STRUCT:
2892                 case TYPE_COMPOUND_UNION: {
2893                         if (type->compound.declaration->symbol == NULL) {
2894                                 warningf(declaration->source_position, "unnamed struct/union that defines no instances");
2895                         }
2896                         break;
2897                 }
2898
2899                 case TYPE_ENUM:
2900                         break;
2901
2902                 default:
2903                         warningf(declaration->source_position, "empty declaration");
2904                         break;
2905         }
2906
2907         finished_declaration(declaration);
2908 }
2909
2910 static void parse_declaration_rest(declaration_t *ndeclaration,
2911                 const declaration_specifiers_t *specifiers,
2912                 parsed_declaration_func finished_declaration)
2913 {
2914         while(true) {
2915                 declaration_t *declaration = finished_declaration(ndeclaration);
2916
2917                 type_t *orig_type = declaration->type;
2918                 type_t *type      = skip_typeref(orig_type);
2919
2920                 if (type->kind != TYPE_FUNCTION &&
2921                     declaration->is_inline &&
2922                     is_type_valid(type)) {
2923                         warningf(declaration->source_position,
2924                                  "variable '%Y' declared 'inline'\n", declaration->symbol);
2925                 }
2926
2927                 if(token.type == '=') {
2928                         parse_init_declarator_rest(declaration);
2929                 }
2930
2931                 if(token.type != ',')
2932                         break;
2933                 eat(',');
2934
2935                 ndeclaration = parse_declarator(specifiers, /*may_be_abstract=*/false);
2936         }
2937         expect_void(';');
2938 }
2939
2940 static declaration_t *finished_kr_declaration(declaration_t *declaration)
2941 {
2942         symbol_t *symbol  = declaration->symbol;
2943         if(symbol == NULL) {
2944                 errorf(HERE, "anonymous declaration not valid as function parameter");
2945                 return declaration;
2946         }
2947         namespace_t namespc = (namespace_t) declaration->namespc;
2948         if(namespc != NAMESPACE_NORMAL) {
2949                 return record_declaration(declaration);
2950         }
2951
2952         declaration_t *previous_declaration = get_declaration(symbol, namespc);
2953         if(previous_declaration == NULL ||
2954                         previous_declaration->parent_scope != scope) {
2955                 errorf(HERE, "expected declaration of a function parameter, found '%Y'",
2956                        symbol);
2957                 return declaration;
2958         }
2959
2960         if(previous_declaration->type == NULL) {
2961                 previous_declaration->type          = declaration->type;
2962                 previous_declaration->declared_storage_class = declaration->declared_storage_class;
2963                 previous_declaration->storage_class = declaration->storage_class;
2964                 previous_declaration->parent_scope  = scope;
2965                 return previous_declaration;
2966         } else {
2967                 return record_declaration(declaration);
2968         }
2969 }
2970
2971 static void parse_declaration(parsed_declaration_func finished_declaration)
2972 {
2973         declaration_specifiers_t specifiers;
2974         memset(&specifiers, 0, sizeof(specifiers));
2975         parse_declaration_specifiers(&specifiers);
2976
2977         if(token.type == ';') {
2978                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
2979         } else {
2980                 declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
2981                 parse_declaration_rest(declaration, &specifiers, finished_declaration);
2982         }
2983 }
2984
2985 static void parse_kr_declaration_list(declaration_t *declaration)
2986 {
2987         type_t *type = skip_typeref(declaration->type);
2988         if(!is_type_function(type))
2989                 return;
2990
2991         if(!type->function.kr_style_parameters)
2992                 return;
2993
2994         /* push function parameters */
2995         int       top        = environment_top();
2996         scope_t  *last_scope = scope;
2997         set_scope(&declaration->scope);
2998
2999         declaration_t *parameter = declaration->scope.declarations;
3000         for( ; parameter != NULL; parameter = parameter->next) {
3001                 assert(parameter->parent_scope == NULL);
3002                 parameter->parent_scope = scope;
3003                 environment_push(parameter);
3004         }
3005
3006         /* parse declaration list */
3007         while(is_declaration_specifier(&token, false)) {
3008                 parse_declaration(finished_kr_declaration);
3009         }
3010
3011         /* pop function parameters */
3012         assert(scope == &declaration->scope);
3013         set_scope(last_scope);
3014         environment_pop_to(top);
3015
3016         /* update function type */
3017         type_t *new_type = duplicate_type(type);
3018         new_type->function.kr_style_parameters = false;
3019
3020         function_parameter_t *parameters     = NULL;
3021         function_parameter_t *last_parameter = NULL;
3022
3023         declaration_t *parameter_declaration = declaration->scope.declarations;
3024         for( ; parameter_declaration != NULL;
3025                         parameter_declaration = parameter_declaration->next) {
3026                 type_t *parameter_type = parameter_declaration->type;
3027                 if(parameter_type == NULL) {
3028                         if (strict_mode) {
3029                                 errorf(HERE, "no type specified for function parameter '%Y'",
3030                                        parameter_declaration->symbol);
3031                         } else {
3032                                 if (warning.implicit_int) {
3033                                         warningf(HERE, "no type specified for function parameter '%Y', using 'int'",
3034                                                 parameter_declaration->symbol);
3035                                 }
3036                                 parameter_type              = type_int;
3037                                 parameter_declaration->type = parameter_type;
3038                         }
3039                 }
3040
3041                 semantic_parameter(parameter_declaration);
3042                 parameter_type = parameter_declaration->type;
3043
3044                 function_parameter_t *function_parameter
3045                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
3046                 memset(function_parameter, 0, sizeof(function_parameter[0]));
3047
3048                 function_parameter->type = parameter_type;
3049                 if(last_parameter != NULL) {
3050                         last_parameter->next = function_parameter;
3051                 } else {
3052                         parameters = function_parameter;
3053                 }
3054                 last_parameter = function_parameter;
3055         }
3056         new_type->function.parameters = parameters;
3057
3058         type = typehash_insert(new_type);
3059         if(type != new_type) {
3060                 obstack_free(type_obst, new_type);
3061         }
3062
3063         declaration->type = type;
3064 }
3065
3066 static bool first_err = true;
3067
3068 /**
3069  * When called with first_err set, prints the name of the current function,
3070  * else does noting.
3071  */
3072 static void print_in_function(void) {
3073         if (first_err) {
3074                 first_err = false;
3075                 diagnosticf("%s: In function '%Y':\n",
3076                         current_function->source_position.input_name,
3077                         current_function->symbol);
3078         }
3079 }
3080
3081 /**
3082  * Check if all labels are defined in the current function.
3083  * Check if all labels are used in the current function.
3084  */
3085 static void check_labels(void)
3086 {
3087         for (const goto_statement_t *goto_statement = goto_first;
3088             goto_statement != NULL;
3089             goto_statement = goto_statement->next) {
3090                 declaration_t *label = goto_statement->label;
3091
3092                 label->used = true;
3093                 if (label->source_position.input_name == NULL) {
3094                         print_in_function();
3095                         errorf(goto_statement->base.source_position,
3096                                "label '%Y' used but not defined", label->symbol);
3097                  }
3098         }
3099         goto_first = goto_last = NULL;
3100
3101         if (warning.unused_label) {
3102                 for (const label_statement_t *label_statement = label_first;
3103                          label_statement != NULL;
3104                          label_statement = label_statement->next) {
3105                         const declaration_t *label = label_statement->label;
3106
3107                         if (! label->used) {
3108                                 print_in_function();
3109                                 warningf(label_statement->base.source_position,
3110                                         "label '%Y' defined but not used", label->symbol);
3111                         }
3112                 }
3113         }
3114         label_first = label_last = NULL;
3115 }
3116
3117 /**
3118  * Check declarations of current_function for unused entities.
3119  */
3120 static void check_declarations(void)
3121 {
3122         if (warning.unused_parameter) {
3123                 const scope_t *scope = &current_function->scope;
3124
3125                 const declaration_t *parameter = scope->declarations;
3126                 for (; parameter != NULL; parameter = parameter->next) {
3127                         if (! parameter->used) {
3128                                 print_in_function();
3129                                 warningf(parameter->source_position,
3130                                         "unused parameter '%Y'", parameter->symbol);
3131                         }
3132                 }
3133         }
3134         if (warning.unused_variable) {
3135         }
3136 }
3137
3138 static void parse_external_declaration(void)
3139 {
3140         /* function-definitions and declarations both start with declaration
3141          * specifiers */
3142         declaration_specifiers_t specifiers;
3143         memset(&specifiers, 0, sizeof(specifiers));
3144         parse_declaration_specifiers(&specifiers);
3145
3146         /* must be a declaration */
3147         if(token.type == ';') {
3148                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
3149                 return;
3150         }
3151
3152         /* declarator is common to both function-definitions and declarations */
3153         declaration_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
3154
3155         /* must be a declaration */
3156         if(token.type == ',' || token.type == '=' || token.type == ';') {
3157                 parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
3158                 return;
3159         }
3160
3161         /* must be a function definition */
3162         parse_kr_declaration_list(ndeclaration);
3163
3164         if(token.type != '{') {
3165                 parse_error_expected("while parsing function definition", '{', 0);
3166                 eat_statement();
3167                 return;
3168         }
3169
3170         type_t *type = ndeclaration->type;
3171
3172         /* note that we don't skip typerefs: the standard doesn't allow them here
3173          * (so we can't use is_type_function here) */
3174         if(type->kind != TYPE_FUNCTION) {
3175                 if (is_type_valid(type)) {
3176                         errorf(HERE, "declarator '%#T' has a body but is not a function type",
3177                                type, ndeclaration->symbol);
3178                 }
3179                 eat_block();
3180                 return;
3181         }
3182
3183         /* Â§ 6.7.5.3 (14) a function definition with () means no
3184          * parameters (and not unspecified parameters) */
3185         if(type->function.unspecified_parameters) {
3186                 type_t *duplicate = duplicate_type(type);
3187                 duplicate->function.unspecified_parameters = false;
3188
3189                 type = typehash_insert(duplicate);
3190                 if(type != duplicate) {
3191                         obstack_free(type_obst, duplicate);
3192                 }
3193                 ndeclaration->type = type;
3194         }
3195
3196         declaration_t *const declaration = record_function_definition(ndeclaration);
3197         if(ndeclaration != declaration) {
3198                 declaration->scope = ndeclaration->scope;
3199         }
3200         type = skip_typeref(declaration->type);
3201
3202         /* push function parameters and switch scope */
3203         int       top        = environment_top();
3204         scope_t  *last_scope = scope;
3205         set_scope(&declaration->scope);
3206
3207         declaration_t *parameter = declaration->scope.declarations;
3208         for( ; parameter != NULL; parameter = parameter->next) {
3209                 if(parameter->parent_scope == &ndeclaration->scope) {
3210                         parameter->parent_scope = scope;
3211                 }
3212                 assert(parameter->parent_scope == NULL
3213                                 || parameter->parent_scope == scope);
3214                 parameter->parent_scope = scope;
3215                 environment_push(parameter);
3216         }
3217
3218         if(declaration->init.statement != NULL) {
3219                 parser_error_multiple_definition(declaration, token.source_position);
3220                 eat_block();
3221                 goto end_of_parse_external_declaration;
3222         } else {
3223                 /* parse function body */
3224                 int            label_stack_top      = label_top();
3225                 declaration_t *old_current_function = current_function;
3226                 current_function                    = declaration;
3227
3228                 declaration->init.statement = parse_compound_statement();
3229                 first_err = true;
3230                 check_labels();
3231                 check_declarations();
3232
3233                 assert(current_function == declaration);
3234                 current_function = old_current_function;
3235                 label_pop_to(label_stack_top);
3236         }
3237
3238 end_of_parse_external_declaration:
3239         assert(scope == &declaration->scope);
3240         set_scope(last_scope);
3241         environment_pop_to(top);
3242 }
3243
3244 static type_t *make_bitfield_type(type_t *base, expression_t *size,
3245                                   source_position_t source_position)
3246 {
3247         type_t *type        = allocate_type_zero(TYPE_BITFIELD, source_position);
3248         type->bitfield.base = base;
3249         type->bitfield.size = size;
3250
3251         return type;
3252 }
3253
3254 static declaration_t *find_compound_entry(declaration_t *compound_declaration,
3255                                           symbol_t *symbol)
3256 {
3257         declaration_t *iter = compound_declaration->scope.declarations;
3258         for( ; iter != NULL; iter = iter->next) {
3259                 if(iter->namespc != NAMESPACE_NORMAL)
3260                         continue;
3261
3262                 if(iter->symbol == NULL) {
3263                         type_t *type = skip_typeref(iter->type);
3264                         if(is_type_compound(type)) {
3265                                 declaration_t *result
3266                                         = find_compound_entry(type->compound.declaration, symbol);
3267                                 if(result != NULL)
3268                                         return result;
3269                         }
3270                         continue;
3271                 }
3272
3273                 if(iter->symbol == symbol) {
3274                         return iter;
3275                 }
3276         }
3277
3278         return NULL;
3279 }
3280
3281 static void parse_compound_declarators(declaration_t *struct_declaration,
3282                 const declaration_specifiers_t *specifiers)
3283 {
3284         declaration_t *last_declaration = struct_declaration->scope.declarations;
3285         if(last_declaration != NULL) {
3286                 while(last_declaration->next != NULL) {
3287                         last_declaration = last_declaration->next;
3288                 }
3289         }
3290
3291         while(1) {
3292                 declaration_t *declaration;
3293
3294                 if(token.type == ':') {
3295                         source_position_t source_position = HERE;
3296                         next_token();
3297
3298                         type_t *base_type = specifiers->type;
3299                         expression_t *size = parse_constant_expression();
3300
3301                         if(!is_type_integer(skip_typeref(base_type))) {
3302                                 errorf(HERE, "bitfield base type '%T' is not an integer type",
3303                                        base_type);
3304                         }
3305
3306                         type_t *type = make_bitfield_type(base_type, size, source_position);
3307
3308                         declaration                         = allocate_declaration_zero();
3309                         declaration->namespc                = NAMESPACE_NORMAL;
3310                         declaration->declared_storage_class = STORAGE_CLASS_NONE;
3311                         declaration->storage_class          = STORAGE_CLASS_NONE;
3312                         declaration->source_position        = source_position;
3313                         declaration->modifiers              = specifiers->decl_modifiers;
3314                         declaration->type                   = type;
3315                 } else {
3316                         declaration = parse_declarator(specifiers,/*may_be_abstract=*/true);
3317
3318                         type_t *orig_type = declaration->type;
3319                         type_t *type      = skip_typeref(orig_type);
3320
3321                         if(token.type == ':') {
3322                                 source_position_t source_position = HERE;
3323                                 next_token();
3324                                 expression_t *size = parse_constant_expression();
3325
3326                                 if(!is_type_integer(type)) {
3327                                         errorf(HERE, "bitfield base type '%T' is not an "
3328                                                "integer type", orig_type);
3329                                 }
3330
3331                                 type_t *bitfield_type = make_bitfield_type(orig_type, size, source_position);
3332                                 declaration->type = bitfield_type;
3333                         } else {
3334                                 /* TODO we ignore arrays for now... what is missing is a check
3335                                  * that they're at the end of the struct */
3336                                 if(is_type_incomplete(type) && !is_type_array(type)) {
3337                                         errorf(HERE,
3338                                                "compound member '%Y' has incomplete type '%T'",
3339                                                declaration->symbol, orig_type);
3340                                 } else if(is_type_function(type)) {
3341                                         errorf(HERE, "compound member '%Y' must not have function "
3342                                                "type '%T'", declaration->symbol, orig_type);
3343                                 }
3344                         }
3345                 }
3346
3347                 /* make sure we don't define a symbol multiple times */
3348                 symbol_t *symbol = declaration->symbol;
3349                 if(symbol != NULL) {
3350                         declaration_t *prev_decl
3351                                 = find_compound_entry(struct_declaration, symbol);
3352
3353                         if(prev_decl != NULL) {
3354                                 assert(prev_decl->symbol == symbol);
3355                                 errorf(declaration->source_position,
3356                                        "multiple declarations of symbol '%Y'", symbol);
3357                                 errorf(prev_decl->source_position,
3358                                        "previous declaration of '%Y' was here", symbol);
3359                         }
3360                 }
3361
3362                 /* append declaration */
3363                 if(last_declaration != NULL) {
3364                         last_declaration->next = declaration;
3365                 } else {
3366                         struct_declaration->scope.declarations = declaration;
3367                 }
3368                 last_declaration = declaration;
3369
3370                 if(token.type != ',')
3371                         break;
3372                 next_token();
3373         }
3374         expect_void(';');
3375 }
3376
3377 static void parse_compound_type_entries(declaration_t *compound_declaration)
3378 {
3379         eat('{');
3380
3381         while(token.type != '}' && token.type != T_EOF) {
3382                 declaration_specifiers_t specifiers;
3383                 memset(&specifiers, 0, sizeof(specifiers));
3384                 parse_declaration_specifiers(&specifiers);
3385
3386                 parse_compound_declarators(compound_declaration, &specifiers);
3387         }
3388         if(token.type == T_EOF) {
3389                 errorf(HERE, "EOF while parsing struct");
3390         }
3391         next_token();
3392 }
3393
3394 static type_t *parse_typename(void)
3395 {
3396         declaration_specifiers_t specifiers;
3397         memset(&specifiers, 0, sizeof(specifiers));
3398         parse_declaration_specifiers(&specifiers);
3399         if(specifiers.declared_storage_class != STORAGE_CLASS_NONE) {
3400                 /* TODO: improve error message, user does probably not know what a
3401                  * storage class is...
3402                  */
3403                 errorf(HERE, "typename may not have a storage class");
3404         }
3405
3406         type_t *result = parse_abstract_declarator(specifiers.type);
3407
3408         return result;
3409 }
3410
3411
3412
3413
3414 typedef expression_t* (*parse_expression_function) (unsigned precedence);
3415 typedef expression_t* (*parse_expression_infix_function) (unsigned precedence,
3416                                                           expression_t *left);
3417
3418 typedef struct expression_parser_function_t expression_parser_function_t;
3419 struct expression_parser_function_t {
3420         unsigned                         precedence;
3421         parse_expression_function        parser;
3422         unsigned                         infix_precedence;
3423         parse_expression_infix_function  infix_parser;
3424 };
3425
3426 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
3427
3428 /**
3429  * Creates a new invalid expression.
3430  */
3431 static expression_t *create_invalid_expression(void)
3432 {
3433         expression_t *expression         = allocate_expression_zero(EXPR_INVALID);
3434         expression->base.source_position = token.source_position;
3435         return expression;
3436 }
3437
3438 /**
3439  * Prints an error message if an expression was expected but not read
3440  */
3441 static expression_t *expected_expression_error(void)
3442 {
3443         /* skip the error message if the error token was read */
3444         if (token.type != T_ERROR) {
3445                 errorf(HERE, "expected expression, got token '%K'", &token);
3446         }
3447         next_token();
3448
3449         return create_invalid_expression();
3450 }
3451
3452 /**
3453  * Parse a string constant.
3454  */
3455 static expression_t *parse_string_const(void)
3456 {
3457         wide_string_t wres;
3458         if (token.type == T_STRING_LITERAL) {
3459                 string_t res = token.v.string;
3460                 next_token();
3461                 while (token.type == T_STRING_LITERAL) {
3462                         res = concat_strings(&res, &token.v.string);
3463                         next_token();
3464                 }
3465                 if (token.type != T_WIDE_STRING_LITERAL) {
3466                         expression_t *const cnst = allocate_expression_zero(EXPR_STRING_LITERAL);
3467                         cnst->base.type    = type_char_ptr;
3468                         cnst->string.value = res;
3469                         return cnst;
3470                 }
3471
3472                 wres = concat_string_wide_string(&res, &token.v.wide_string);
3473         } else {
3474                 wres = token.v.wide_string;
3475         }
3476         next_token();
3477
3478         for (;;) {
3479                 switch (token.type) {
3480                         case T_WIDE_STRING_LITERAL:
3481                                 wres = concat_wide_strings(&wres, &token.v.wide_string);
3482                                 break;
3483
3484                         case T_STRING_LITERAL:
3485                                 wres = concat_wide_string_string(&wres, &token.v.string);
3486                                 break;
3487
3488                         default: {
3489                                 expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
3490                                 cnst->base.type         = type_wchar_t_ptr;
3491                                 cnst->wide_string.value = wres;
3492                                 return cnst;
3493                         }
3494                 }
3495                 next_token();
3496         }
3497 }
3498
3499 /**
3500  * Parse an integer constant.
3501  */
3502 static expression_t *parse_int_const(void)
3503 {
3504         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
3505         cnst->base.source_position = HERE;
3506         cnst->base.type            = token.datatype;
3507         cnst->conste.v.int_value   = token.v.intvalue;
3508
3509         next_token();
3510
3511         return cnst;
3512 }
3513
3514 /**
3515  * Parse a character constant.
3516  */
3517 static expression_t *parse_char_const(void)
3518 {
3519         expression_t *cnst         = allocate_expression_zero(EXPR_CHAR_CONST);
3520         cnst->base.source_position = HERE;
3521         cnst->base.type            = token.datatype;
3522         cnst->conste.v.chars.begin = token.v.string.begin;
3523         cnst->conste.v.chars.size  = token.v.string.size;
3524
3525         if (cnst->conste.v.chars.size != 1) {
3526                 if (warning.multichar && (c_mode & _GNUC)) {
3527                         /* TODO */
3528                         warningf(HERE, "multi-character character constant");
3529                 } else {
3530                         errorf(HERE, "more than 1 characters in character constant");
3531                 }
3532         }
3533         next_token();
3534
3535         return cnst;
3536 }
3537
3538 /**
3539  * Parse a float constant.
3540  */
3541 static expression_t *parse_float_const(void)
3542 {
3543         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
3544         cnst->base.type            = token.datatype;
3545         cnst->conste.v.float_value = token.v.floatvalue;
3546
3547         next_token();
3548
3549         return cnst;
3550 }
3551
3552 static declaration_t *create_implicit_function(symbol_t *symbol,
3553                 const source_position_t source_position)
3554 {
3555         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION, source_position);
3556         ntype->function.return_type            = type_int;
3557         ntype->function.unspecified_parameters = true;
3558
3559         type_t *type = typehash_insert(ntype);
3560         if(type != ntype) {
3561                 free_type(ntype);
3562         }
3563
3564         declaration_t *const declaration    = allocate_declaration_zero();
3565         declaration->storage_class          = STORAGE_CLASS_EXTERN;
3566         declaration->declared_storage_class = STORAGE_CLASS_EXTERN;
3567         declaration->type                   = type;
3568         declaration->symbol                 = symbol;
3569         declaration->source_position        = source_position;
3570         declaration->parent_scope           = global_scope;
3571
3572         scope_t *old_scope = scope;
3573         set_scope(global_scope);
3574
3575         environment_push(declaration);
3576         /* prepends the declaration to the global declarations list */
3577         declaration->next   = scope->declarations;
3578         scope->declarations = declaration;
3579
3580         assert(scope == global_scope);
3581         set_scope(old_scope);
3582
3583         return declaration;
3584 }
3585
3586 /**
3587  * Creates a return_type (func)(argument_type) function type if not
3588  * already exists.
3589  *
3590  * @param return_type    the return type
3591  * @param argument_type  the argument type
3592  */
3593 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
3594 {
3595         function_parameter_t *parameter
3596                 = obstack_alloc(type_obst, sizeof(parameter[0]));
3597         memset(parameter, 0, sizeof(parameter[0]));
3598         parameter->type = argument_type;
3599
3600         type_t *type               = allocate_type_zero(TYPE_FUNCTION, builtin_source_position);
3601         type->function.return_type = return_type;
3602         type->function.parameters  = parameter;
3603
3604         type_t *result = typehash_insert(type);
3605         if(result != type) {
3606                 free_type(type);
3607         }
3608
3609         return result;
3610 }
3611
3612 /**
3613  * Creates a function type for some function like builtins.
3614  *
3615  * @param symbol   the symbol describing the builtin
3616  */
3617 static type_t *get_builtin_symbol_type(symbol_t *symbol)
3618 {
3619         switch(symbol->ID) {
3620         case T___builtin_alloca:
3621                 return make_function_1_type(type_void_ptr, type_size_t);
3622         case T___builtin_nan:
3623                 return make_function_1_type(type_double, type_char_ptr);
3624         case T___builtin_nanf:
3625                 return make_function_1_type(type_float, type_char_ptr);
3626         case T___builtin_nand:
3627                 return make_function_1_type(type_long_double, type_char_ptr);
3628         case T___builtin_va_end:
3629                 return make_function_1_type(type_void, type_valist);
3630         default:
3631                 panic("not implemented builtin symbol found");
3632         }
3633 }
3634
3635 /**
3636  * Performs automatic type cast as described in Â§ 6.3.2.1.
3637  *
3638  * @param orig_type  the original type
3639  */
3640 static type_t *automatic_type_conversion(type_t *orig_type)
3641 {
3642         type_t *type = skip_typeref(orig_type);
3643         if(is_type_array(type)) {
3644                 array_type_t *array_type   = &type->array;
3645                 type_t       *element_type = array_type->element_type;
3646                 unsigned      qualifiers   = array_type->type.qualifiers;
3647
3648                 return make_pointer_type(element_type, qualifiers);
3649         }
3650
3651         if(is_type_function(type)) {
3652                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
3653         }
3654
3655         return orig_type;
3656 }
3657
3658 /**
3659  * reverts the automatic casts of array to pointer types and function
3660  * to function-pointer types as defined Â§ 6.3.2.1
3661  */
3662 type_t *revert_automatic_type_conversion(const expression_t *expression)
3663 {
3664         switch (expression->kind) {
3665                 case EXPR_REFERENCE: return expression->reference.declaration->type;
3666                 case EXPR_SELECT:    return expression->select.compound_entry->type;
3667
3668                 case EXPR_UNARY_DEREFERENCE: {
3669                         const expression_t *const value = expression->unary.value;
3670                         type_t             *const type  = skip_typeref(value->base.type);
3671                         assert(is_type_pointer(type));
3672                         return type->pointer.points_to;
3673                 }
3674
3675                 case EXPR_BUILTIN_SYMBOL:
3676                         return get_builtin_symbol_type(expression->builtin_symbol.symbol);
3677
3678                 case EXPR_ARRAY_ACCESS: {
3679                         const expression_t *array_ref = expression->array_access.array_ref;
3680                         type_t             *type_left = skip_typeref(array_ref->base.type);
3681                         if (!is_type_valid(type_left))
3682                                 return type_left;
3683                         assert(is_type_pointer(type_left));
3684                         return type_left->pointer.points_to;
3685                 }
3686
3687                 case EXPR_COMPOUND_LITERAL:
3688                         return expression->compound_literal.type;
3689
3690                 default: break;
3691         }
3692
3693         return expression->base.type;
3694 }
3695
3696 static expression_t *parse_reference(void)
3697 {
3698         expression_t *expression = allocate_expression_zero(EXPR_REFERENCE);
3699
3700         reference_expression_t *ref = &expression->reference;
3701         ref->symbol = token.v.symbol;
3702
3703         declaration_t *declaration = get_declaration(ref->symbol, NAMESPACE_NORMAL);
3704
3705         source_position_t source_position = token.source_position;
3706         next_token();
3707
3708         if(declaration == NULL) {
3709                 if (! strict_mode && token.type == '(') {
3710                         /* an implicitly defined function */
3711                         if (warning.implicit_function_declaration) {
3712                                 warningf(HERE, "implicit declaration of function '%Y'",
3713                                         ref->symbol);
3714                         }
3715
3716                         declaration = create_implicit_function(ref->symbol,
3717                                                                source_position);
3718                 } else {
3719                         errorf(HERE, "unknown symbol '%Y' found.", ref->symbol);
3720                         return create_invalid_expression();
3721                 }
3722         }
3723
3724         type_t *type         = declaration->type;
3725
3726         /* we always do the auto-type conversions; the & and sizeof parser contains
3727          * code to revert this! */
3728         type = automatic_type_conversion(type);
3729
3730         ref->declaration = declaration;
3731         ref->base.type   = type;
3732
3733         /* this declaration is used */
3734         declaration->used = true;
3735
3736         return expression;
3737 }
3738
3739 static void check_cast_allowed(expression_t *expression, type_t *dest_type)
3740 {
3741         (void) expression;
3742         (void) dest_type;
3743         /* TODO check if explicit cast is allowed and issue warnings/errors */
3744 }
3745
3746 static expression_t *parse_compound_literal(type_t *type)
3747 {
3748         expression_t *expression = allocate_expression_zero(EXPR_COMPOUND_LITERAL);
3749
3750         parse_initializer_env_t env;
3751         env.type             = type;
3752         env.must_be_constant = false;
3753         parse_initializer(&env);
3754         type = env.type;
3755
3756         expression->compound_literal.type        = type;
3757         expression->compound_literal.initializer = env.initializer;
3758         expression->base.type                    = automatic_type_conversion(type);
3759
3760         return expression;
3761 }
3762
3763 static expression_t *parse_cast(void)
3764 {
3765         source_position_t source_position = token.source_position;
3766
3767         type_t *type  = parse_typename();
3768
3769         expect(')');
3770
3771         if(token.type == '{') {
3772                 return parse_compound_literal(type);
3773         }
3774
3775         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST);
3776         cast->base.source_position = source_position;
3777
3778         expression_t *value = parse_sub_expression(20);
3779
3780         check_cast_allowed(value, type);
3781
3782         cast->base.type   = type;
3783         cast->unary.value = value;
3784
3785         return cast;
3786 }
3787
3788 static expression_t *parse_statement_expression(void)
3789 {
3790         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
3791
3792         statement_t *statement           = parse_compound_statement();
3793         expression->statement.statement  = statement;
3794         expression->base.source_position = statement->base.source_position;
3795
3796         /* find last statement and use its type */
3797         type_t *type = type_void;
3798         const statement_t *stmt = statement->compound.statements;
3799         if (stmt != NULL) {
3800                 while (stmt->base.next != NULL)
3801                         stmt = stmt->base.next;
3802
3803                 if (stmt->kind == STATEMENT_EXPRESSION) {
3804                         type = stmt->expression.expression->base.type;
3805                 }
3806         } else {
3807                 warningf(expression->base.source_position, "empty statement expression ({})");
3808         }
3809         expression->base.type = type;
3810
3811         expect(')');
3812
3813         return expression;
3814 }
3815
3816 static expression_t *parse_brace_expression(void)
3817 {
3818         eat('(');
3819
3820         switch(token.type) {
3821         case '{':
3822                 /* gcc extension: a statement expression */
3823                 return parse_statement_expression();
3824
3825         TYPE_QUALIFIERS
3826         TYPE_SPECIFIERS
3827                 return parse_cast();
3828         case T_IDENTIFIER:
3829                 if(is_typedef_symbol(token.v.symbol)) {
3830                         return parse_cast();
3831                 }
3832         }
3833
3834         expression_t *result = parse_expression();
3835         expect(')');
3836
3837         return result;
3838 }
3839
3840 static expression_t *parse_function_keyword(void)
3841 {
3842         next_token();
3843         /* TODO */
3844
3845         if (current_function == NULL) {
3846                 errorf(HERE, "'__func__' used outside of a function");
3847         }
3848
3849         expression_t *expression = allocate_expression_zero(EXPR_FUNCTION);
3850         expression->base.type    = type_char_ptr;
3851
3852         return expression;
3853 }
3854
3855 static expression_t *parse_pretty_function_keyword(void)
3856 {
3857         eat(T___PRETTY_FUNCTION__);
3858         /* TODO */
3859
3860         if (current_function == NULL) {
3861                 errorf(HERE, "'__PRETTY_FUNCTION__' used outside of a function");
3862         }
3863
3864         expression_t *expression = allocate_expression_zero(EXPR_PRETTY_FUNCTION);
3865         expression->base.type    = type_char_ptr;
3866
3867         return expression;
3868 }
3869
3870 static designator_t *parse_designator(void)
3871 {
3872         designator_t *result    = allocate_ast_zero(sizeof(result[0]));
3873         result->source_position = HERE;
3874
3875         if(token.type != T_IDENTIFIER) {
3876                 parse_error_expected("while parsing member designator",
3877                                      T_IDENTIFIER, 0);
3878                 eat_paren();
3879                 return NULL;
3880         }
3881         result->symbol = token.v.symbol;
3882         next_token();
3883
3884         designator_t *last_designator = result;
3885         while(true) {
3886                 if(token.type == '.') {
3887                         next_token();
3888                         if(token.type != T_IDENTIFIER) {
3889                                 parse_error_expected("while parsing member designator",
3890                                                      T_IDENTIFIER, 0);
3891                                 eat_paren();
3892                                 return NULL;
3893                         }
3894                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
3895                         designator->source_position = HERE;
3896                         designator->symbol          = token.v.symbol;
3897                         next_token();
3898
3899                         last_designator->next = designator;
3900                         last_designator       = designator;
3901                         continue;
3902                 }
3903                 if(token.type == '[') {
3904                         next_token();
3905                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
3906                         designator->source_position = HERE;
3907                         designator->array_index     = parse_expression();
3908                         if(designator->array_index == NULL) {
3909                                 eat_paren();
3910                                 return NULL;
3911                         }
3912                         expect(']');
3913
3914                         last_designator->next = designator;
3915                         last_designator       = designator;
3916                         continue;
3917                 }
3918                 break;
3919         }
3920
3921         return result;
3922 }
3923
3924 static expression_t *parse_offsetof(void)
3925 {
3926         eat(T___builtin_offsetof);
3927
3928         expression_t *expression = allocate_expression_zero(EXPR_OFFSETOF);
3929         expression->base.type    = type_size_t;
3930
3931         expect('(');
3932         type_t *type = parse_typename();
3933         expect(',');
3934         designator_t *designator = parse_designator();
3935         expect(')');
3936
3937         expression->offsetofe.type       = type;
3938         expression->offsetofe.designator = designator;
3939
3940         type_path_t path;
3941         memset(&path, 0, sizeof(path));
3942         path.top_type = type;
3943         path.path     = NEW_ARR_F(type_path_entry_t, 0);
3944
3945         descend_into_subtype(&path);
3946
3947         if(!walk_designator(&path, designator, true)) {
3948                 return create_invalid_expression();
3949         }
3950
3951         DEL_ARR_F(path.path);
3952
3953         return expression;
3954 }
3955
3956 static expression_t *parse_va_start(void)
3957 {
3958         eat(T___builtin_va_start);
3959
3960         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
3961
3962         expect('(');
3963         expression->va_starte.ap = parse_assignment_expression();
3964         expect(',');
3965         expression_t *const expr = parse_assignment_expression();
3966         if (expr->kind == EXPR_REFERENCE) {
3967                 declaration_t *const decl = expr->reference.declaration;
3968                 if (decl == NULL)
3969                         return create_invalid_expression();
3970                 if (decl->parent_scope == &current_function->scope &&
3971                     decl->next == NULL) {
3972                         expression->va_starte.parameter = decl;
3973                         expect(')');
3974                         return expression;
3975                 }
3976         }
3977         errorf(expr->base.source_position, "second argument of 'va_start' must be last parameter of the current function");
3978
3979         return create_invalid_expression();
3980 }
3981
3982 static expression_t *parse_va_arg(void)
3983 {
3984         eat(T___builtin_va_arg);
3985
3986         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
3987
3988         expect('(');
3989         expression->va_arge.ap = parse_assignment_expression();
3990         expect(',');
3991         expression->base.type = parse_typename();
3992         expect(')');
3993
3994         return expression;
3995 }
3996
3997 static expression_t *parse_builtin_symbol(void)
3998 {
3999         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
4000
4001         symbol_t *symbol = token.v.symbol;
4002
4003         expression->builtin_symbol.symbol = symbol;
4004         next_token();
4005
4006         type_t *type = get_builtin_symbol_type(symbol);
4007         type = automatic_type_conversion(type);
4008
4009         expression->base.type = type;
4010         return expression;
4011 }
4012
4013 static expression_t *parse_builtin_constant(void)
4014 {
4015         eat(T___builtin_constant_p);
4016
4017         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_CONSTANT_P);
4018
4019         expect('(');
4020         expression->builtin_constant.value = parse_assignment_expression();
4021         expect(')');
4022         expression->base.type = type_int;
4023
4024         return expression;
4025 }
4026
4027 static expression_t *parse_builtin_prefetch(void)
4028 {
4029         eat(T___builtin_prefetch);
4030
4031         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_PREFETCH);
4032
4033         expect('(');
4034         expression->builtin_prefetch.adr = parse_assignment_expression();
4035         if (token.type == ',') {
4036                 next_token();
4037                 expression->builtin_prefetch.rw = parse_assignment_expression();
4038         }
4039         if (token.type == ',') {
4040                 next_token();
4041                 expression->builtin_prefetch.locality = parse_assignment_expression();
4042         }
4043         expect(')');
4044         expression->base.type = type_void;
4045
4046         return expression;
4047 }
4048
4049 static expression_t *parse_compare_builtin(void)
4050 {
4051         expression_t *expression;
4052
4053         switch(token.type) {
4054         case T___builtin_isgreater:
4055                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATER);
4056                 break;
4057         case T___builtin_isgreaterequal:
4058                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATEREQUAL);
4059                 break;
4060         case T___builtin_isless:
4061                 expression = allocate_expression_zero(EXPR_BINARY_ISLESS);
4062                 break;
4063         case T___builtin_islessequal:
4064                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSEQUAL);
4065                 break;
4066         case T___builtin_islessgreater:
4067                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSGREATER);
4068                 break;
4069         case T___builtin_isunordered:
4070                 expression = allocate_expression_zero(EXPR_BINARY_ISUNORDERED);
4071                 break;
4072         default:
4073                 panic("invalid compare builtin found");
4074                 break;
4075         }
4076         expression->base.source_position = HERE;
4077         next_token();
4078
4079         expect('(');
4080         expression->binary.left = parse_assignment_expression();
4081         expect(',');
4082         expression->binary.right = parse_assignment_expression();
4083         expect(')');
4084
4085         type_t *const orig_type_left  = expression->binary.left->base.type;
4086         type_t *const orig_type_right = expression->binary.right->base.type;
4087
4088         type_t *const type_left  = skip_typeref(orig_type_left);
4089         type_t *const type_right = skip_typeref(orig_type_right);
4090         if(!is_type_float(type_left) && !is_type_float(type_right)) {
4091                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
4092                         type_error_incompatible("invalid operands in comparison",
4093                                 expression->base.source_position, orig_type_left, orig_type_right);
4094                 }
4095         } else {
4096                 semantic_comparison(&expression->binary);
4097         }
4098
4099         return expression;
4100 }
4101
4102 static expression_t *parse_builtin_expect(void)
4103 {
4104         eat(T___builtin_expect);
4105
4106         expression_t *expression
4107                 = allocate_expression_zero(EXPR_BINARY_BUILTIN_EXPECT);
4108
4109         expect('(');
4110         expression->binary.left = parse_assignment_expression();
4111         expect(',');
4112         expression->binary.right = parse_constant_expression();
4113         expect(')');
4114
4115         expression->base.type = expression->binary.left->base.type;
4116
4117         return expression;
4118 }
4119
4120 static expression_t *parse_assume(void) {
4121         eat(T_assume);
4122
4123         expression_t *expression
4124                 = allocate_expression_zero(EXPR_UNARY_ASSUME);
4125
4126         expect('(');
4127         expression->unary.value = parse_assignment_expression();
4128         expect(')');
4129
4130         expression->base.type = type_void;
4131         return expression;
4132 }
4133
4134 static expression_t *parse_primary_expression(void)
4135 {
4136         switch (token.type) {
4137                 case T_INTEGER:                  return parse_int_const();
4138                 case T_CHARS:                    return parse_char_const();
4139                 case T_FLOATINGPOINT:            return parse_float_const();
4140                 case T_STRING_LITERAL:
4141                 case T_WIDE_STRING_LITERAL:      return parse_string_const();
4142                 case T_IDENTIFIER:               return parse_reference();
4143                 case T___FUNCTION__:
4144                 case T___func__:                 return parse_function_keyword();
4145                 case T___PRETTY_FUNCTION__:      return parse_pretty_function_keyword();
4146                 case T___builtin_offsetof:       return parse_offsetof();
4147                 case T___builtin_va_start:       return parse_va_start();
4148                 case T___builtin_va_arg:         return parse_va_arg();
4149                 case T___builtin_expect:         return parse_builtin_expect();
4150                 case T___builtin_alloca:
4151                 case T___builtin_nan:
4152                 case T___builtin_nand:
4153                 case T___builtin_nanf:
4154                 case T___builtin_va_end:         return parse_builtin_symbol();
4155                 case T___builtin_isgreater:
4156                 case T___builtin_isgreaterequal:
4157                 case T___builtin_isless:
4158                 case T___builtin_islessequal:
4159                 case T___builtin_islessgreater:
4160                 case T___builtin_isunordered:    return parse_compare_builtin();
4161                 case T___builtin_constant_p:     return parse_builtin_constant();
4162                 case T___builtin_prefetch:       return parse_builtin_prefetch();
4163                 case T_assume:                   return parse_assume();
4164
4165                 case '(':                        return parse_brace_expression();
4166         }
4167
4168         errorf(HERE, "unexpected token %K, expected an expression", &token);
4169         eat_statement();
4170
4171         return create_invalid_expression();
4172 }
4173
4174 /**
4175  * Check if the expression has the character type and issue a warning then.
4176  */
4177 static void check_for_char_index_type(const expression_t *expression) {
4178         type_t       *const type      = expression->base.type;
4179         const type_t *const base_type = skip_typeref(type);
4180
4181         if (is_type_atomic(base_type, ATOMIC_TYPE_CHAR) &&
4182                         warning.char_subscripts) {
4183                 warningf(expression->base.source_position,
4184                         "array subscript has type '%T'", type);
4185         }
4186 }
4187
4188 static expression_t *parse_array_expression(unsigned precedence,
4189                                             expression_t *left)
4190 {
4191         (void) precedence;
4192
4193         eat('[');
4194
4195         expression_t *inside = parse_expression();
4196
4197         expression_t *expression = allocate_expression_zero(EXPR_ARRAY_ACCESS);
4198
4199         array_access_expression_t *array_access = &expression->array_access;
4200
4201         type_t *const orig_type_left   = left->base.type;
4202         type_t *const orig_type_inside = inside->base.type;
4203
4204         type_t *const type_left   = skip_typeref(orig_type_left);
4205         type_t *const type_inside = skip_typeref(orig_type_inside);
4206
4207         type_t *return_type;
4208         if (is_type_pointer(type_left)) {
4209                 return_type             = type_left->pointer.points_to;
4210                 array_access->array_ref = left;
4211                 array_access->index     = inside;
4212                 check_for_char_index_type(inside);
4213         } else if (is_type_pointer(type_inside)) {
4214                 return_type             = type_inside->pointer.points_to;
4215                 array_access->array_ref = inside;
4216                 array_access->index     = left;
4217                 array_access->flipped   = true;
4218                 check_for_char_index_type(left);
4219         } else {
4220                 if (is_type_valid(type_left) && is_type_valid(type_inside)) {
4221                         errorf(HERE,
4222                                 "array access on object with non-pointer types '%T', '%T'",
4223                                 orig_type_left, orig_type_inside);
4224                 }
4225                 return_type             = type_error_type;
4226                 array_access->array_ref = create_invalid_expression();
4227         }
4228
4229         if(token.type != ']') {
4230                 parse_error_expected("Problem while parsing array access", ']', 0);
4231                 return expression;
4232         }
4233         next_token();
4234
4235         return_type           = automatic_type_conversion(return_type);
4236         expression->base.type = return_type;
4237
4238         return expression;
4239 }
4240
4241 static expression_t *parse_typeprop(expression_kind_t kind, unsigned precedence)
4242 {
4243         expression_t *tp_expression = allocate_expression_zero(kind);
4244         tp_expression->base.type    = type_size_t;
4245
4246         if(token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
4247                 next_token();
4248                 tp_expression->typeprop.type = parse_typename();
4249                 expect(')');
4250         } else {
4251                 expression_t *expression = parse_sub_expression(precedence);
4252                 expression->base.type    = revert_automatic_type_conversion(expression);
4253
4254                 tp_expression->typeprop.type          = expression->base.type;
4255                 tp_expression->typeprop.tp_expression = expression;
4256         }
4257
4258         return tp_expression;
4259 }
4260
4261 static expression_t *parse_sizeof(unsigned precedence)
4262 {
4263         eat(T_sizeof);
4264         return parse_typeprop(EXPR_SIZEOF, precedence);
4265 }
4266
4267 static expression_t *parse_alignof(unsigned precedence)
4268 {
4269         eat(T___alignof__);
4270         return parse_typeprop(EXPR_SIZEOF, precedence);
4271 }
4272
4273 static expression_t *parse_select_expression(unsigned precedence,
4274                                              expression_t *compound)
4275 {
4276         (void) precedence;
4277         assert(token.type == '.' || token.type == T_MINUSGREATER);
4278
4279         bool is_pointer = (token.type == T_MINUSGREATER);
4280         next_token();
4281
4282         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
4283         select->select.compound = compound;
4284
4285         if(token.type != T_IDENTIFIER) {
4286                 parse_error_expected("while parsing select", T_IDENTIFIER, 0);
4287                 return select;
4288         }
4289         symbol_t *symbol      = token.v.symbol;
4290         select->select.symbol = symbol;
4291         next_token();
4292
4293         type_t *const orig_type = compound->base.type;
4294         type_t *const type      = skip_typeref(orig_type);
4295
4296         type_t *type_left = type;
4297         if(is_pointer) {
4298                 if (!is_type_pointer(type)) {
4299                         if (is_type_valid(type)) {
4300                                 errorf(HERE, "left hand side of '->' is not a pointer, but '%T'", orig_type);
4301                         }
4302                         return create_invalid_expression();
4303                 }
4304                 type_left = type->pointer.points_to;
4305         }
4306         type_left = skip_typeref(type_left);
4307
4308         if (type_left->kind != TYPE_COMPOUND_STRUCT &&
4309             type_left->kind != TYPE_COMPOUND_UNION) {
4310                 if (is_type_valid(type_left)) {
4311                         errorf(HERE, "request for member '%Y' in something not a struct or "
4312                                "union, but '%T'", symbol, type_left);
4313                 }
4314                 return create_invalid_expression();
4315         }
4316
4317         declaration_t *const declaration = type_left->compound.declaration;
4318
4319         if(!declaration->init.is_defined) {
4320                 errorf(HERE, "request for member '%Y' of incomplete type '%T'",
4321                        symbol, type_left);
4322                 return create_invalid_expression();
4323         }
4324
4325         declaration_t *iter = find_compound_entry(declaration, symbol);
4326         if(iter == NULL) {
4327                 errorf(HERE, "'%T' has no member named '%Y'", orig_type, symbol);
4328                 return create_invalid_expression();
4329         }
4330
4331         /* we always do the auto-type conversions; the & and sizeof parser contains
4332          * code to revert this! */
4333         type_t *expression_type = automatic_type_conversion(iter->type);
4334
4335         select->select.compound_entry = iter;
4336         select->base.type             = expression_type;
4337
4338         if(expression_type->kind == TYPE_BITFIELD) {
4339                 expression_t *extract
4340                         = allocate_expression_zero(EXPR_UNARY_BITFIELD_EXTRACT);
4341                 extract->unary.value = select;
4342                 extract->base.type   = expression_type->bitfield.base;
4343
4344                 return extract;
4345         }
4346
4347         return select;
4348 }
4349
4350 /**
4351  * Parse a call expression, ie. expression '( ... )'.
4352  *
4353  * @param expression  the function address
4354  */
4355 static expression_t *parse_call_expression(unsigned precedence,
4356                                            expression_t *expression)
4357 {
4358         (void) precedence;
4359         expression_t *result = allocate_expression_zero(EXPR_CALL);
4360
4361         call_expression_t *call = &result->call;
4362         call->function          = expression;
4363
4364         type_t *const orig_type = expression->base.type;
4365         type_t *const type      = skip_typeref(orig_type);
4366
4367         function_type_t *function_type = NULL;
4368         if (is_type_pointer(type)) {
4369                 type_t *const to_type = skip_typeref(type->pointer.points_to);
4370
4371                 if (is_type_function(to_type)) {
4372                         function_type   = &to_type->function;
4373                         call->base.type = function_type->return_type;
4374                 }
4375         }
4376
4377         if (function_type == NULL && is_type_valid(type)) {
4378                 errorf(HERE, "called object '%E' (type '%T') is not a pointer to a function", expression, orig_type);
4379         }
4380
4381         /* parse arguments */
4382         eat('(');
4383
4384         if(token.type != ')') {
4385                 call_argument_t *last_argument = NULL;
4386
4387                 while(true) {
4388                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
4389
4390                         argument->expression = parse_assignment_expression();
4391                         if(last_argument == NULL) {
4392                                 call->arguments = argument;
4393                         } else {
4394                                 last_argument->next = argument;
4395                         }
4396                         last_argument = argument;
4397
4398                         if(token.type != ',')
4399                                 break;
4400                         next_token();
4401                 }
4402         }
4403         expect(')');
4404
4405         if(function_type != NULL) {
4406                 function_parameter_t *parameter = function_type->parameters;
4407                 call_argument_t      *argument  = call->arguments;
4408                 for( ; parameter != NULL && argument != NULL;
4409                                 parameter = parameter->next, argument = argument->next) {
4410                         type_t *expected_type = parameter->type;
4411                         /* TODO report scope in error messages */
4412                         expression_t *const arg_expr = argument->expression;
4413                         type_t       *const res_type = semantic_assign(expected_type, arg_expr, "function call");
4414                         if (res_type == NULL) {
4415                                 /* TODO improve error message */
4416                                 errorf(arg_expr->base.source_position,
4417                                         "Cannot call function with argument '%E' of type '%T' where type '%T' is expected",
4418                                         arg_expr, arg_expr->base.type, expected_type);
4419                         } else {
4420                                 argument->expression = create_implicit_cast(argument->expression, expected_type);
4421                         }
4422                 }
4423                 /* too few parameters */
4424                 if(parameter != NULL) {
4425                         errorf(HERE, "too few arguments to function '%E'", expression);
4426                 } else if(argument != NULL) {
4427                         /* too many parameters */
4428                         if(!function_type->variadic
4429                                         && !function_type->unspecified_parameters) {
4430                                 errorf(HERE, "too many arguments to function '%E'", expression);
4431                         } else {
4432                                 /* do default promotion */
4433                                 for( ; argument != NULL; argument = argument->next) {
4434                                         type_t *type = argument->expression->base.type;
4435
4436                                         type = skip_typeref(type);
4437                                         if(is_type_integer(type)) {
4438                                                 type = promote_integer(type);
4439                                         } else if(type == type_float) {
4440                                                 type = type_double;
4441                                         }
4442
4443                                         argument->expression
4444                                                 = create_implicit_cast(argument->expression, type);
4445                                 }
4446
4447                                 check_format(&result->call);
4448                         }
4449                 } else {
4450                         check_format(&result->call);
4451                 }
4452         }
4453
4454         return result;
4455 }
4456
4457 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
4458
4459 static bool same_compound_type(const type_t *type1, const type_t *type2)
4460 {
4461         return
4462                 is_type_compound(type1) &&
4463                 type1->kind == type2->kind &&
4464                 type1->compound.declaration == type2->compound.declaration;
4465 }
4466
4467 /**
4468  * Parse a conditional expression, ie. 'expression ? ... : ...'.
4469  *
4470  * @param expression  the conditional expression
4471  */
4472 static expression_t *parse_conditional_expression(unsigned precedence,
4473                                                   expression_t *expression)
4474 {
4475         eat('?');
4476
4477         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
4478
4479         conditional_expression_t *conditional = &result->conditional;
4480         conditional->condition = expression;
4481
4482         /* 6.5.15.2 */
4483         type_t *const condition_type_orig = expression->base.type;
4484         type_t *const condition_type      = skip_typeref(condition_type_orig);
4485         if (!is_type_scalar(condition_type) && is_type_valid(condition_type)) {
4486                 type_error("expected a scalar type in conditional condition",
4487                            expression->base.source_position, condition_type_orig);
4488         }
4489
4490         expression_t *true_expression = parse_expression();
4491         expect(':');
4492         expression_t *false_expression = parse_sub_expression(precedence);
4493
4494         type_t *const orig_true_type  = true_expression->base.type;
4495         type_t *const orig_false_type = false_expression->base.type;
4496         type_t *const true_type       = skip_typeref(orig_true_type);
4497         type_t *const false_type      = skip_typeref(orig_false_type);
4498
4499         /* 6.5.15.3 */
4500         type_t *result_type;
4501         if (is_type_arithmetic(true_type) && is_type_arithmetic(false_type)) {
4502                 result_type = semantic_arithmetic(true_type, false_type);
4503
4504                 true_expression  = create_implicit_cast(true_expression, result_type);
4505                 false_expression = create_implicit_cast(false_expression, result_type);
4506
4507                 conditional->true_expression  = true_expression;
4508                 conditional->false_expression = false_expression;
4509                 conditional->base.type        = result_type;
4510         } else if (same_compound_type(true_type, false_type) || (
4511             is_type_atomic(true_type, ATOMIC_TYPE_VOID) &&
4512             is_type_atomic(false_type, ATOMIC_TYPE_VOID)
4513                 )) {
4514                 /* just take 1 of the 2 types */
4515                 result_type = true_type;
4516         } else if (is_type_pointer(true_type) && is_type_pointer(false_type)
4517                         && pointers_compatible(true_type, false_type)) {
4518                 /* ok */
4519                 result_type = true_type;
4520         } else if (is_type_pointer(true_type)
4521                         && is_null_pointer_constant(false_expression)) {
4522                 result_type = true_type;
4523         } else if (is_type_pointer(false_type)
4524                         && is_null_pointer_constant(true_expression)) {
4525                 result_type = false_type;
4526         } else {
4527                 /* TODO: one pointer to void*, other some pointer */
4528
4529                 if (is_type_valid(true_type) && is_type_valid(false_type)) {
4530                         type_error_incompatible("while parsing conditional",
4531                                                 expression->base.source_position, true_type,
4532                                                 false_type);
4533                 }
4534                 result_type = type_error_type;
4535         }
4536
4537         conditional->true_expression
4538                 = create_implicit_cast(true_expression, result_type);
4539         conditional->false_expression
4540                 = create_implicit_cast(false_expression, result_type);
4541         conditional->base.type = result_type;
4542         return result;
4543 }
4544
4545 /**
4546  * Parse an extension expression.
4547  */
4548 static expression_t *parse_extension(unsigned precedence)
4549 {
4550         eat(T___extension__);
4551
4552         /* TODO enable extensions */
4553         expression_t *expression = parse_sub_expression(precedence);
4554         /* TODO disable extensions */
4555         return expression;
4556 }
4557
4558 static expression_t *parse_builtin_classify_type(const unsigned precedence)
4559 {
4560         eat(T___builtin_classify_type);
4561
4562         expression_t *result = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
4563         result->base.type    = type_int;
4564
4565         expect('(');
4566         expression_t *expression = parse_sub_expression(precedence);
4567         expect(')');
4568         result->classify_type.type_expression = expression;
4569
4570         return result;
4571 }
4572
4573 static void semantic_incdec(unary_expression_t *expression)
4574 {
4575         type_t *const orig_type = expression->value->base.type;
4576         type_t *const type      = skip_typeref(orig_type);
4577         /* TODO !is_type_real && !is_type_pointer */
4578         if(!is_type_arithmetic(type) && type->kind != TYPE_POINTER) {
4579                 if (is_type_valid(type)) {
4580                         /* TODO: improve error message */
4581                         errorf(HERE, "operation needs an arithmetic or pointer type");
4582                 }
4583                 return;
4584         }
4585
4586         expression->base.type = orig_type;
4587 }
4588
4589 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
4590 {
4591         type_t *const orig_type = expression->value->base.type;
4592         type_t *const type      = skip_typeref(orig_type);
4593         if(!is_type_arithmetic(type)) {
4594                 if (is_type_valid(type)) {
4595                         /* TODO: improve error message */
4596                         errorf(HERE, "operation needs an arithmetic type");
4597                 }
4598                 return;
4599         }
4600
4601         expression->base.type = orig_type;
4602 }
4603
4604 static void semantic_unexpr_scalar(unary_expression_t *expression)
4605 {
4606         type_t *const orig_type = expression->value->base.type;
4607         type_t *const type      = skip_typeref(orig_type);
4608         if (!is_type_scalar(type)) {
4609                 if (is_type_valid(type)) {
4610                         errorf(HERE, "operand of ! must be of scalar type");
4611                 }
4612                 return;
4613         }
4614
4615         expression->base.type = orig_type;
4616 }
4617
4618 static void semantic_unexpr_integer(unary_expression_t *expression)
4619 {
4620         type_t *const orig_type = expression->value->base.type;
4621         type_t *const type      = skip_typeref(orig_type);
4622         if (!is_type_integer(type)) {
4623                 if (is_type_valid(type)) {
4624                         errorf(HERE, "operand of ~ must be of integer type");
4625                 }
4626                 return;
4627         }
4628
4629         expression->base.type = orig_type;
4630 }
4631
4632 static void semantic_dereference(unary_expression_t *expression)
4633 {
4634         type_t *const orig_type = expression->value->base.type;
4635         type_t *const type      = skip_typeref(orig_type);
4636         if(!is_type_pointer(type)) {
4637                 if (is_type_valid(type)) {
4638                         errorf(HERE, "Unary '*' needs pointer or arrray type, but type '%T' given", orig_type);
4639                 }
4640                 return;
4641         }
4642
4643         type_t *result_type   = type->pointer.points_to;
4644         result_type           = automatic_type_conversion(result_type);
4645         expression->base.type = result_type;
4646 }
4647
4648 /**
4649  * Check the semantic of the address taken expression.
4650  */
4651 static void semantic_take_addr(unary_expression_t *expression)
4652 {
4653         expression_t *value = expression->value;
4654         value->base.type    = revert_automatic_type_conversion(value);
4655
4656         type_t *orig_type = value->base.type;
4657         if(!is_type_valid(orig_type))
4658                 return;
4659
4660         if(value->kind == EXPR_REFERENCE) {
4661                 declaration_t *const declaration = value->reference.declaration;
4662                 if(declaration != NULL) {
4663                         if (declaration->storage_class == STORAGE_CLASS_REGISTER) {
4664                                 errorf(expression->base.source_position,
4665                                         "address of register variable '%Y' requested",
4666                                         declaration->symbol);
4667                         }
4668                         declaration->address_taken = 1;
4669                 }
4670         }
4671
4672         expression->base.type = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
4673 }
4674
4675 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
4676 static expression_t *parse_##unexpression_type(unsigned precedence)            \
4677 {                                                                              \
4678         eat(token_type);                                                           \
4679                                                                                    \
4680         expression_t *unary_expression                                             \
4681                 = allocate_expression_zero(unexpression_type);                         \
4682         unary_expression->base.source_position = HERE;                             \
4683         unary_expression->unary.value = parse_sub_expression(precedence);          \
4684                                                                                    \
4685         sfunc(&unary_expression->unary);                                           \
4686                                                                                    \
4687         return unary_expression;                                                   \
4688 }
4689
4690 CREATE_UNARY_EXPRESSION_PARSER('-', EXPR_UNARY_NEGATE,
4691                                semantic_unexpr_arithmetic)
4692 CREATE_UNARY_EXPRESSION_PARSER('+', EXPR_UNARY_PLUS,
4693                                semantic_unexpr_arithmetic)
4694 CREATE_UNARY_EXPRESSION_PARSER('!', EXPR_UNARY_NOT,
4695                                semantic_unexpr_scalar)
4696 CREATE_UNARY_EXPRESSION_PARSER('*', EXPR_UNARY_DEREFERENCE,
4697                                semantic_dereference)
4698 CREATE_UNARY_EXPRESSION_PARSER('&', EXPR_UNARY_TAKE_ADDRESS,
4699                                semantic_take_addr)
4700 CREATE_UNARY_EXPRESSION_PARSER('~', EXPR_UNARY_BITWISE_NEGATE,
4701                                semantic_unexpr_integer)
4702 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   EXPR_UNARY_PREFIX_INCREMENT,
4703                                semantic_incdec)
4704 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, EXPR_UNARY_PREFIX_DECREMENT,
4705                                semantic_incdec)
4706
4707 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
4708                                                sfunc)                         \
4709 static expression_t *parse_##unexpression_type(unsigned precedence,           \
4710                                                expression_t *left)            \
4711 {                                                                             \
4712         (void) precedence;                                                        \
4713         eat(token_type);                                                          \
4714                                                                               \
4715         expression_t *unary_expression                                            \
4716                 = allocate_expression_zero(unexpression_type);                        \
4717         unary_expression->unary.value = left;                                     \
4718                                                                                   \
4719         sfunc(&unary_expression->unary);                                          \
4720                                                                               \
4721         return unary_expression;                                                  \
4722 }
4723
4724 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,
4725                                        EXPR_UNARY_POSTFIX_INCREMENT,
4726                                        semantic_incdec)
4727 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS,
4728                                        EXPR_UNARY_POSTFIX_DECREMENT,
4729                                        semantic_incdec)
4730
4731 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
4732 {
4733         /* TODO: handle complex + imaginary types */
4734
4735         /* Â§ 6.3.1.8 Usual arithmetic conversions */
4736         if(type_left == type_long_double || type_right == type_long_double) {
4737                 return type_long_double;
4738         } else if(type_left == type_double || type_right == type_double) {
4739                 return type_double;
4740         } else if(type_left == type_float || type_right == type_float) {
4741                 return type_float;
4742         }
4743
4744         type_right = promote_integer(type_right);
4745         type_left  = promote_integer(type_left);
4746
4747         if(type_left == type_right)
4748                 return type_left;
4749
4750         bool signed_left  = is_type_signed(type_left);
4751         bool signed_right = is_type_signed(type_right);
4752         int  rank_left    = get_rank(type_left);
4753         int  rank_right   = get_rank(type_right);
4754         if(rank_left < rank_right) {
4755                 if(signed_left == signed_right || !signed_right) {
4756                         return type_right;
4757                 } else {
4758                         return type_left;
4759                 }
4760         } else {
4761                 if(signed_left == signed_right || !signed_left) {
4762                         return type_left;
4763                 } else {
4764                         return type_right;
4765                 }
4766         }
4767 }
4768
4769 /**
4770  * Check the semantic restrictions for a binary expression.
4771  */
4772 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
4773 {
4774         expression_t *const left            = expression->left;
4775         expression_t *const right           = expression->right;
4776         type_t       *const orig_type_left  = left->base.type;
4777         type_t       *const orig_type_right = right->base.type;
4778         type_t       *const type_left       = skip_typeref(orig_type_left);
4779         type_t       *const type_right      = skip_typeref(orig_type_right);
4780
4781         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
4782                 /* TODO: improve error message */
4783                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
4784                         errorf(HERE, "operation needs arithmetic types");
4785                 }
4786                 return;
4787         }
4788
4789         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4790         expression->left      = create_implicit_cast(left, arithmetic_type);
4791         expression->right     = create_implicit_cast(right, arithmetic_type);
4792         expression->base.type = arithmetic_type;
4793 }
4794
4795 static void semantic_shift_op(binary_expression_t *expression)
4796 {
4797         expression_t *const left            = expression->left;
4798         expression_t *const right           = expression->right;
4799         type_t       *const orig_type_left  = left->base.type;
4800         type_t       *const orig_type_right = right->base.type;
4801         type_t       *      type_left       = skip_typeref(orig_type_left);
4802         type_t       *      type_right      = skip_typeref(orig_type_right);
4803
4804         if(!is_type_integer(type_left) || !is_type_integer(type_right)) {
4805                 /* TODO: improve error message */
4806                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
4807                         errorf(HERE, "operation needs integer types");
4808                 }
4809                 return;
4810         }
4811
4812         type_left  = promote_integer(type_left);
4813         type_right = promote_integer(type_right);
4814
4815         expression->left      = create_implicit_cast(left, type_left);
4816         expression->right     = create_implicit_cast(right, type_right);
4817         expression->base.type = type_left;
4818 }
4819
4820 static void semantic_add(binary_expression_t *expression)
4821 {
4822         expression_t *const left            = expression->left;
4823         expression_t *const right           = expression->right;
4824         type_t       *const orig_type_left  = left->base.type;
4825         type_t       *const orig_type_right = right->base.type;
4826         type_t       *const type_left       = skip_typeref(orig_type_left);
4827         type_t       *const type_right      = skip_typeref(orig_type_right);
4828
4829         /* Â§ 5.6.5 */
4830         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4831                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4832                 expression->left  = create_implicit_cast(left, arithmetic_type);
4833                 expression->right = create_implicit_cast(right, arithmetic_type);
4834                 expression->base.type = arithmetic_type;
4835                 return;
4836         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4837                 expression->base.type = type_left;
4838         } else if(is_type_pointer(type_right) && is_type_integer(type_left)) {
4839                 expression->base.type = type_right;
4840         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
4841                 errorf(HERE, "invalid operands to binary + ('%T', '%T')", orig_type_left, orig_type_right);
4842         }
4843 }
4844
4845 static void semantic_sub(binary_expression_t *expression)
4846 {
4847         expression_t *const left            = expression->left;
4848         expression_t *const right           = expression->right;
4849         type_t       *const orig_type_left  = left->base.type;
4850         type_t       *const orig_type_right = right->base.type;
4851         type_t       *const type_left       = skip_typeref(orig_type_left);
4852         type_t       *const type_right      = skip_typeref(orig_type_right);
4853
4854         /* Â§ 5.6.5 */
4855         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4856                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4857                 expression->left        = create_implicit_cast(left, arithmetic_type);
4858                 expression->right       = create_implicit_cast(right, arithmetic_type);
4859                 expression->base.type =  arithmetic_type;
4860                 return;
4861         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4862                 expression->base.type = type_left;
4863         } else if(is_type_pointer(type_left) && is_type_pointer(type_right)) {
4864                 if(!pointers_compatible(type_left, type_right)) {
4865                         errorf(HERE,
4866                                "pointers to incompatible objects to binary '-' ('%T', '%T')",
4867                                orig_type_left, orig_type_right);
4868                 } else {
4869                         expression->base.type = type_ptrdiff_t;
4870                 }
4871         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
4872                 errorf(HERE, "invalid operands to binary '-' ('%T', '%T')",
4873                        orig_type_left, orig_type_right);
4874         }
4875 }
4876
4877 /**
4878  * Check the semantics of comparison expressions.
4879  *
4880  * @param expression   The expression to check.
4881  */
4882 static void semantic_comparison(binary_expression_t *expression)
4883 {
4884         expression_t *left            = expression->left;
4885         expression_t *right           = expression->right;
4886         type_t       *orig_type_left  = left->base.type;
4887         type_t       *orig_type_right = right->base.type;
4888
4889         type_t *type_left  = skip_typeref(orig_type_left);
4890         type_t *type_right = skip_typeref(orig_type_right);
4891
4892         /* TODO non-arithmetic types */
4893         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4894                 if (warning.sign_compare &&
4895                     (expression->base.kind != EXPR_BINARY_EQUAL &&
4896                      expression->base.kind != EXPR_BINARY_NOTEQUAL) &&
4897                     (is_type_signed(type_left) != is_type_signed(type_right))) {
4898                         warningf(expression->base.source_position,
4899                                  "comparison between signed and unsigned");
4900                 }
4901                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4902                 expression->left        = create_implicit_cast(left, arithmetic_type);
4903                 expression->right       = create_implicit_cast(right, arithmetic_type);
4904                 expression->base.type   = arithmetic_type;
4905                 if (warning.float_equal &&
4906                     (expression->base.kind == EXPR_BINARY_EQUAL ||
4907                      expression->base.kind == EXPR_BINARY_NOTEQUAL) &&
4908                     is_type_float(arithmetic_type)) {
4909                         warningf(expression->base.source_position,
4910                                  "comparing floating point with == or != is unsafe");
4911                 }
4912         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
4913                 /* TODO check compatibility */
4914         } else if (is_type_pointer(type_left)) {
4915                 expression->right = create_implicit_cast(right, type_left);
4916         } else if (is_type_pointer(type_right)) {
4917                 expression->left = create_implicit_cast(left, type_right);
4918         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
4919                 type_error_incompatible("invalid operands in comparison",
4920                                         expression->base.source_position,
4921                                         type_left, type_right);
4922         }
4923         expression->base.type = type_int;
4924 }
4925
4926 static void semantic_arithmetic_assign(binary_expression_t *expression)
4927 {
4928         expression_t *left            = expression->left;
4929         expression_t *right           = expression->right;
4930         type_t       *orig_type_left  = left->base.type;
4931         type_t       *orig_type_right = right->base.type;
4932
4933         type_t *type_left  = skip_typeref(orig_type_left);
4934         type_t *type_right = skip_typeref(orig_type_right);
4935
4936         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
4937                 /* TODO: improve error message */
4938                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
4939                         errorf(HERE, "operation needs arithmetic types");
4940                 }
4941                 return;
4942         }
4943
4944         /* combined instructions are tricky. We can't create an implicit cast on
4945          * the left side, because we need the uncasted form for the store.
4946          * The ast2firm pass has to know that left_type must be right_type
4947          * for the arithmetic operation and create a cast by itself */
4948         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4949         expression->right       = create_implicit_cast(right, arithmetic_type);
4950         expression->base.type   = type_left;
4951 }
4952
4953 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
4954 {
4955         expression_t *const left            = expression->left;
4956         expression_t *const right           = expression->right;
4957         type_t       *const orig_type_left  = left->base.type;
4958         type_t       *const orig_type_right = right->base.type;
4959         type_t       *const type_left       = skip_typeref(orig_type_left);
4960         type_t       *const type_right      = skip_typeref(orig_type_right);
4961
4962         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4963                 /* combined instructions are tricky. We can't create an implicit cast on
4964                  * the left side, because we need the uncasted form for the store.
4965                  * The ast2firm pass has to know that left_type must be right_type
4966                  * for the arithmetic operation and create a cast by itself */
4967                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
4968                 expression->right     = create_implicit_cast(right, arithmetic_type);
4969                 expression->base.type = type_left;
4970         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
4971                 expression->base.type = type_left;
4972         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
4973                 errorf(HERE, "incompatible types '%T' and '%T' in assignment", orig_type_left, orig_type_right);
4974         }
4975 }
4976
4977 /**
4978  * Check the semantic restrictions of a logical expression.
4979  */
4980 static void semantic_logical_op(binary_expression_t *expression)
4981 {
4982         expression_t *const left            = expression->left;
4983         expression_t *const right           = expression->right;
4984         type_t       *const orig_type_left  = left->base.type;
4985         type_t       *const orig_type_right = right->base.type;
4986         type_t       *const type_left       = skip_typeref(orig_type_left);
4987         type_t       *const type_right      = skip_typeref(orig_type_right);
4988
4989         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
4990                 /* TODO: improve error message */
4991                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
4992                         errorf(HERE, "operation needs scalar types");
4993                 }
4994                 return;
4995         }
4996
4997         expression->base.type = type_int;
4998 }
4999
5000 /**
5001  * Checks if a compound type has constant fields.
5002  */
5003 static bool has_const_fields(const compound_type_t *type)
5004 {
5005         const scope_t       *scope       = &type->declaration->scope;
5006         const declaration_t *declaration = scope->declarations;
5007
5008         for (; declaration != NULL; declaration = declaration->next) {
5009                 if (declaration->namespc != NAMESPACE_NORMAL)
5010                         continue;
5011
5012                 const type_t *decl_type = skip_typeref(declaration->type);
5013                 if (decl_type->base.qualifiers & TYPE_QUALIFIER_CONST)
5014                         return true;
5015         }
5016         /* TODO */
5017         return false;
5018 }
5019
5020 /**
5021  * Check the semantic restrictions of a binary assign expression.
5022  */
5023 static void semantic_binexpr_assign(binary_expression_t *expression)
5024 {
5025         expression_t *left           = expression->left;
5026         type_t       *orig_type_left = left->base.type;
5027
5028         type_t *type_left = revert_automatic_type_conversion(left);
5029         type_left         = skip_typeref(orig_type_left);
5030
5031         /* must be a modifiable lvalue */
5032         if (is_type_array(type_left)) {
5033                 errorf(HERE, "cannot assign to arrays ('%E')", left);
5034                 return;
5035         }
5036         if(type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
5037                 errorf(HERE, "assignment to readonly location '%E' (type '%T')", left,
5038                        orig_type_left);
5039                 return;
5040         }
5041         if(is_type_incomplete(type_left)) {
5042                 errorf(HERE,
5043                        "left-hand side of assignment '%E' has incomplete type '%T'",
5044                        left, orig_type_left);
5045                 return;
5046         }
5047         if(is_type_compound(type_left) && has_const_fields(&type_left->compound)) {
5048                 errorf(HERE, "cannot assign to '%E' because compound type '%T' has readonly fields",
5049                        left, orig_type_left);
5050                 return;
5051         }
5052
5053         type_t *const res_type = semantic_assign(orig_type_left, expression->right,
5054                                                  "assignment");
5055         if (res_type == NULL) {
5056                 errorf(expression->base.source_position,
5057                         "cannot assign to '%T' from '%T'",
5058                         orig_type_left, expression->right->base.type);
5059         } else {
5060                 expression->right = create_implicit_cast(expression->right, res_type);
5061         }
5062
5063         expression->base.type = orig_type_left;
5064 }
5065
5066 static bool expression_has_effect(const expression_t *const expr)
5067 {
5068         switch (expr->kind) {
5069                 case EXPR_UNKNOWN:                   break;
5070                 case EXPR_INVALID:                   break;
5071                 case EXPR_REFERENCE:                 return false;
5072                 case EXPR_CONST:                     return false;
5073                 case EXPR_CHAR_CONST:                return false;
5074                 case EXPR_STRING_LITERAL:            return false;
5075                 case EXPR_WIDE_STRING_LITERAL:       return false;
5076                 case EXPR_CALL: {
5077                         const call_expression_t *const call = &expr->call;
5078                         if (call->function->kind != EXPR_BUILTIN_SYMBOL)
5079                                 return true;
5080
5081                         switch (call->function->builtin_symbol.symbol->ID) {
5082                                 case T___builtin_va_end: return true;
5083                                 default:                 return false;
5084                         }
5085                 }
5086                 case EXPR_CONDITIONAL: {
5087                         const conditional_expression_t *const cond = &expr->conditional;
5088                         return
5089                                 expression_has_effect(cond->true_expression) &&
5090                                 expression_has_effect(cond->false_expression);
5091                 }
5092                 case EXPR_SELECT:                    return false;
5093                 case EXPR_ARRAY_ACCESS:              return false;
5094                 case EXPR_SIZEOF:                    return false;
5095                 case EXPR_CLASSIFY_TYPE:             return false;
5096                 case EXPR_ALIGNOF:                   return false;
5097
5098                 case EXPR_FUNCTION:                  return false;
5099                 case EXPR_PRETTY_FUNCTION:           return false;
5100                 case EXPR_BUILTIN_SYMBOL:            break; /* handled in EXPR_CALL */
5101                 case EXPR_BUILTIN_CONSTANT_P:        return false;
5102                 case EXPR_BUILTIN_PREFETCH:          return true;
5103                 case EXPR_OFFSETOF:                  return false;
5104                 case EXPR_VA_START:                  return true;
5105                 case EXPR_VA_ARG:                    return true;
5106                 case EXPR_STATEMENT:                 return true; // TODO
5107                 case EXPR_COMPOUND_LITERAL:          return false;
5108
5109                 case EXPR_UNARY_NEGATE:              return false;
5110                 case EXPR_UNARY_PLUS:                return false;
5111                 case EXPR_UNARY_BITWISE_NEGATE:      return false;
5112                 case EXPR_UNARY_NOT:                 return false;
5113                 case EXPR_UNARY_DEREFERENCE:         return false;
5114                 case EXPR_UNARY_TAKE_ADDRESS:        return false;
5115                 case EXPR_UNARY_POSTFIX_INCREMENT:   return true;
5116                 case EXPR_UNARY_POSTFIX_DECREMENT:   return true;
5117                 case EXPR_UNARY_PREFIX_INCREMENT:    return true;
5118                 case EXPR_UNARY_PREFIX_DECREMENT:    return true;
5119                 case EXPR_UNARY_CAST: {
5120                         type_t *type = skip_typeref(expr->base.type);
5121                         return is_type_atomic(type, ATOMIC_TYPE_VOID);
5122                 }
5123                 case EXPR_UNARY_CAST_IMPLICIT:       return true;
5124                 case EXPR_UNARY_ASSUME:              return true;
5125                 case EXPR_UNARY_BITFIELD_EXTRACT:    return false;
5126
5127                 case EXPR_BINARY_ADD:                return false;
5128                 case EXPR_BINARY_SUB:                return false;
5129                 case EXPR_BINARY_MUL:                return false;
5130                 case EXPR_BINARY_DIV:                return false;
5131                 case EXPR_BINARY_MOD:                return false;
5132                 case EXPR_BINARY_EQUAL:              return false;
5133                 case EXPR_BINARY_NOTEQUAL:           return false;
5134                 case EXPR_BINARY_LESS:               return false;
5135                 case EXPR_BINARY_LESSEQUAL:          return false;
5136                 case EXPR_BINARY_GREATER:            return false;
5137                 case EXPR_BINARY_GREATEREQUAL:       return false;
5138                 case EXPR_BINARY_BITWISE_AND:        return false;
5139                 case EXPR_BINARY_BITWISE_OR:         return false;
5140                 case EXPR_BINARY_BITWISE_XOR:        return false;
5141                 case EXPR_BINARY_SHIFTLEFT:          return false;
5142                 case EXPR_BINARY_SHIFTRIGHT:         return false;
5143                 case EXPR_BINARY_ASSIGN:             return true;
5144                 case EXPR_BINARY_MUL_ASSIGN:         return true;
5145                 case EXPR_BINARY_DIV_ASSIGN:         return true;
5146                 case EXPR_BINARY_MOD_ASSIGN:         return true;
5147                 case EXPR_BINARY_ADD_ASSIGN:         return true;
5148                 case EXPR_BINARY_SUB_ASSIGN:         return true;
5149                 case EXPR_BINARY_SHIFTLEFT_ASSIGN:   return true;
5150                 case EXPR_BINARY_SHIFTRIGHT_ASSIGN:  return true;
5151                 case EXPR_BINARY_BITWISE_AND_ASSIGN: return true;
5152                 case EXPR_BINARY_BITWISE_XOR_ASSIGN: return true;
5153                 case EXPR_BINARY_BITWISE_OR_ASSIGN:  return true;
5154                 case EXPR_BINARY_LOGICAL_AND:
5155                 case EXPR_BINARY_LOGICAL_OR:
5156                 case EXPR_BINARY_COMMA:
5157                         return expression_has_effect(expr->binary.right);
5158
5159                 case EXPR_BINARY_BUILTIN_EXPECT:     return true;
5160                 case EXPR_BINARY_ISGREATER:          return false;
5161                 case EXPR_BINARY_ISGREATEREQUAL:     return false;
5162                 case EXPR_BINARY_ISLESS:             return false;
5163                 case EXPR_BINARY_ISLESSEQUAL:        return false;
5164                 case EXPR_BINARY_ISLESSGREATER:      return false;
5165                 case EXPR_BINARY_ISUNORDERED:        return false;
5166         }
5167
5168         panic("unexpected statement");
5169 }
5170
5171 static void semantic_comma(binary_expression_t *expression)
5172 {
5173         if (warning.unused_value) {
5174                 const expression_t *const left = expression->left;
5175                 if (!expression_has_effect(left)) {
5176                         warningf(left->base.source_position, "left-hand operand of comma expression has no effect");
5177                 }
5178         }
5179         expression->base.type = expression->right->base.type;
5180 }
5181
5182 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, sfunc, lr)  \
5183 static expression_t *parse_##binexpression_type(unsigned precedence,      \
5184                                                 expression_t *left)       \
5185 {                                                                         \
5186         eat(token_type);                                                      \
5187         source_position_t pos = HERE;                                         \
5188                                                                           \
5189         expression_t *right = parse_sub_expression(precedence + lr);          \
5190                                                                           \
5191         expression_t *binexpr = allocate_expression_zero(binexpression_type); \
5192         binexpr->base.source_position = pos;                                  \
5193         binexpr->binary.left  = left;                                         \
5194         binexpr->binary.right = right;                                        \
5195         sfunc(&binexpr->binary);                                              \
5196                                                                           \
5197         return binexpr;                                                       \
5198 }
5199
5200 CREATE_BINEXPR_PARSER(',', EXPR_BINARY_COMMA,    semantic_comma, 1)
5201 CREATE_BINEXPR_PARSER('*', EXPR_BINARY_MUL,      semantic_binexpr_arithmetic, 1)
5202 CREATE_BINEXPR_PARSER('/', EXPR_BINARY_DIV,      semantic_binexpr_arithmetic, 1)
5203 CREATE_BINEXPR_PARSER('%', EXPR_BINARY_MOD,      semantic_binexpr_arithmetic, 1)
5204 CREATE_BINEXPR_PARSER('+', EXPR_BINARY_ADD,      semantic_add, 1)
5205 CREATE_BINEXPR_PARSER('-', EXPR_BINARY_SUB,      semantic_sub, 1)
5206 CREATE_BINEXPR_PARSER('<', EXPR_BINARY_LESS,     semantic_comparison, 1)
5207 CREATE_BINEXPR_PARSER('>', EXPR_BINARY_GREATER,  semantic_comparison, 1)
5208 CREATE_BINEXPR_PARSER('=', EXPR_BINARY_ASSIGN,   semantic_binexpr_assign, 0)
5209
5210 CREATE_BINEXPR_PARSER(T_EQUALEQUAL,           EXPR_BINARY_EQUAL,
5211                       semantic_comparison, 1)
5212 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, EXPR_BINARY_NOTEQUAL,
5213                       semantic_comparison, 1)
5214 CREATE_BINEXPR_PARSER(T_LESSEQUAL,            EXPR_BINARY_LESSEQUAL,
5215                       semantic_comparison, 1)
5216 CREATE_BINEXPR_PARSER(T_GREATEREQUAL,         EXPR_BINARY_GREATEREQUAL,
5217                       semantic_comparison, 1)
5218
5219 CREATE_BINEXPR_PARSER('&', EXPR_BINARY_BITWISE_AND,
5220                       semantic_binexpr_arithmetic, 1)
5221 CREATE_BINEXPR_PARSER('|', EXPR_BINARY_BITWISE_OR,
5222                       semantic_binexpr_arithmetic, 1)
5223 CREATE_BINEXPR_PARSER('^', EXPR_BINARY_BITWISE_XOR,
5224                       semantic_binexpr_arithmetic, 1)
5225 CREATE_BINEXPR_PARSER(T_ANDAND, EXPR_BINARY_LOGICAL_AND,
5226                       semantic_logical_op, 1)
5227 CREATE_BINEXPR_PARSER(T_PIPEPIPE, EXPR_BINARY_LOGICAL_OR,
5228                       semantic_logical_op, 1)
5229 CREATE_BINEXPR_PARSER(T_LESSLESS, EXPR_BINARY_SHIFTLEFT,
5230                       semantic_shift_op, 1)
5231 CREATE_BINEXPR_PARSER(T_GREATERGREATER, EXPR_BINARY_SHIFTRIGHT,
5232                       semantic_shift_op, 1)
5233 CREATE_BINEXPR_PARSER(T_PLUSEQUAL, EXPR_BINARY_ADD_ASSIGN,
5234                       semantic_arithmetic_addsubb_assign, 0)
5235 CREATE_BINEXPR_PARSER(T_MINUSEQUAL, EXPR_BINARY_SUB_ASSIGN,
5236                       semantic_arithmetic_addsubb_assign, 0)
5237 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL, EXPR_BINARY_MUL_ASSIGN,
5238                       semantic_arithmetic_assign, 0)
5239 CREATE_BINEXPR_PARSER(T_SLASHEQUAL, EXPR_BINARY_DIV_ASSIGN,
5240                       semantic_arithmetic_assign, 0)
5241 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL, EXPR_BINARY_MOD_ASSIGN,
5242                       semantic_arithmetic_assign, 0)
5243 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL, EXPR_BINARY_SHIFTLEFT_ASSIGN,
5244                       semantic_arithmetic_assign, 0)
5245 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL, EXPR_BINARY_SHIFTRIGHT_ASSIGN,
5246                       semantic_arithmetic_assign, 0)
5247 CREATE_BINEXPR_PARSER(T_ANDEQUAL, EXPR_BINARY_BITWISE_AND_ASSIGN,
5248                       semantic_arithmetic_assign, 0)
5249 CREATE_BINEXPR_PARSER(T_PIPEEQUAL, EXPR_BINARY_BITWISE_OR_ASSIGN,
5250                       semantic_arithmetic_assign, 0)
5251 CREATE_BINEXPR_PARSER(T_CARETEQUAL, EXPR_BINARY_BITWISE_XOR_ASSIGN,
5252                       semantic_arithmetic_assign, 0)
5253
5254 static expression_t *parse_sub_expression(unsigned precedence)
5255 {
5256         if(token.type < 0) {
5257                 return expected_expression_error();
5258         }
5259
5260         expression_parser_function_t *parser
5261                 = &expression_parsers[token.type];
5262         source_position_t             source_position = token.source_position;
5263         expression_t                 *left;
5264
5265         if(parser->parser != NULL) {
5266                 left = parser->parser(parser->precedence);
5267         } else {
5268                 left = parse_primary_expression();
5269         }
5270         assert(left != NULL);
5271         left->base.source_position = source_position;
5272
5273         while(true) {
5274                 if(token.type < 0) {
5275                         return expected_expression_error();
5276                 }
5277
5278                 parser = &expression_parsers[token.type];
5279                 if(parser->infix_parser == NULL)
5280                         break;
5281                 if(parser->infix_precedence < precedence)
5282                         break;
5283
5284                 left = parser->infix_parser(parser->infix_precedence, left);
5285
5286                 assert(left != NULL);
5287                 assert(left->kind != EXPR_UNKNOWN);
5288                 left->base.source_position = source_position;
5289         }
5290
5291         return left;
5292 }
5293
5294 /**
5295  * Parse an expression.
5296  */
5297 static expression_t *parse_expression(void)
5298 {
5299         return parse_sub_expression(1);
5300 }
5301
5302 /**
5303  * Register a parser for a prefix-like operator with given precedence.
5304  *
5305  * @param parser      the parser function
5306  * @param token_type  the token type of the prefix token
5307  * @param precedence  the precedence of the operator
5308  */
5309 static void register_expression_parser(parse_expression_function parser,
5310                                        int token_type, unsigned precedence)
5311 {
5312         expression_parser_function_t *entry = &expression_parsers[token_type];
5313
5314         if(entry->parser != NULL) {
5315                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
5316                 panic("trying to register multiple expression parsers for a token");
5317         }
5318         entry->parser     = parser;
5319         entry->precedence = precedence;
5320 }
5321
5322 /**
5323  * Register a parser for an infix operator with given precedence.
5324  *
5325  * @param parser      the parser function
5326  * @param token_type  the token type of the infix operator
5327  * @param precedence  the precedence of the operator
5328  */
5329 static void register_infix_parser(parse_expression_infix_function parser,
5330                 int token_type, unsigned precedence)
5331 {
5332         expression_parser_function_t *entry = &expression_parsers[token_type];
5333
5334         if(entry->infix_parser != NULL) {
5335                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
5336                 panic("trying to register multiple infix expression parsers for a "
5337                       "token");
5338         }
5339         entry->infix_parser     = parser;
5340         entry->infix_precedence = precedence;
5341 }
5342
5343 /**
5344  * Initialize the expression parsers.
5345  */
5346 static void init_expression_parsers(void)
5347 {
5348         memset(&expression_parsers, 0, sizeof(expression_parsers));
5349
5350         register_infix_parser(parse_array_expression,         '[',              30);
5351         register_infix_parser(parse_call_expression,          '(',              30);
5352         register_infix_parser(parse_select_expression,        '.',              30);
5353         register_infix_parser(parse_select_expression,        T_MINUSGREATER,   30);
5354         register_infix_parser(parse_EXPR_UNARY_POSTFIX_INCREMENT,
5355                                                               T_PLUSPLUS,       30);
5356         register_infix_parser(parse_EXPR_UNARY_POSTFIX_DECREMENT,
5357                                                               T_MINUSMINUS,     30);
5358
5359         register_infix_parser(parse_EXPR_BINARY_MUL,          '*',              16);
5360         register_infix_parser(parse_EXPR_BINARY_DIV,          '/',              16);
5361         register_infix_parser(parse_EXPR_BINARY_MOD,          '%',              16);
5362         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT,    T_LESSLESS,       16);
5363         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT,   T_GREATERGREATER, 16);
5364         register_infix_parser(parse_EXPR_BINARY_ADD,          '+',              15);
5365         register_infix_parser(parse_EXPR_BINARY_SUB,          '-',              15);
5366         register_infix_parser(parse_EXPR_BINARY_LESS,         '<',              14);
5367         register_infix_parser(parse_EXPR_BINARY_GREATER,      '>',              14);
5368         register_infix_parser(parse_EXPR_BINARY_LESSEQUAL,    T_LESSEQUAL,      14);
5369         register_infix_parser(parse_EXPR_BINARY_GREATEREQUAL, T_GREATEREQUAL,   14);
5370         register_infix_parser(parse_EXPR_BINARY_EQUAL,        T_EQUALEQUAL,     13);
5371         register_infix_parser(parse_EXPR_BINARY_NOTEQUAL,
5372                                                     T_EXCLAMATIONMARKEQUAL, 13);
5373         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND,  '&',              12);
5374         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR,  '^',              11);
5375         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR,   '|',              10);
5376         register_infix_parser(parse_EXPR_BINARY_LOGICAL_AND,  T_ANDAND,          9);
5377         register_infix_parser(parse_EXPR_BINARY_LOGICAL_OR,   T_PIPEPIPE,        8);
5378         register_infix_parser(parse_conditional_expression,   '?',               7);
5379         register_infix_parser(parse_EXPR_BINARY_ASSIGN,       '=',               2);
5380         register_infix_parser(parse_EXPR_BINARY_ADD_ASSIGN,   T_PLUSEQUAL,       2);
5381         register_infix_parser(parse_EXPR_BINARY_SUB_ASSIGN,   T_MINUSEQUAL,      2);
5382         register_infix_parser(parse_EXPR_BINARY_MUL_ASSIGN,   T_ASTERISKEQUAL,   2);
5383         register_infix_parser(parse_EXPR_BINARY_DIV_ASSIGN,   T_SLASHEQUAL,      2);
5384         register_infix_parser(parse_EXPR_BINARY_MOD_ASSIGN,   T_PERCENTEQUAL,    2);
5385         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT_ASSIGN,
5386                                                                 T_LESSLESSEQUAL, 2);
5387         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT_ASSIGN,
5388                                                           T_GREATERGREATEREQUAL, 2);
5389         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND_ASSIGN,
5390                                                                      T_ANDEQUAL, 2);
5391         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR_ASSIGN,
5392                                                                     T_PIPEEQUAL, 2);
5393         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR_ASSIGN,
5394                                                                    T_CARETEQUAL, 2);
5395
5396         register_infix_parser(parse_EXPR_BINARY_COMMA,        ',',               1);
5397
5398         register_expression_parser(parse_EXPR_UNARY_NEGATE,           '-',      25);
5399         register_expression_parser(parse_EXPR_UNARY_PLUS,             '+',      25);
5400         register_expression_parser(parse_EXPR_UNARY_NOT,              '!',      25);
5401         register_expression_parser(parse_EXPR_UNARY_BITWISE_NEGATE,   '~',      25);
5402         register_expression_parser(parse_EXPR_UNARY_DEREFERENCE,      '*',      25);
5403         register_expression_parser(parse_EXPR_UNARY_TAKE_ADDRESS,     '&',      25);
5404         register_expression_parser(parse_EXPR_UNARY_PREFIX_INCREMENT,
5405                                                                   T_PLUSPLUS,   25);
5406         register_expression_parser(parse_EXPR_UNARY_PREFIX_DECREMENT,
5407                                                                   T_MINUSMINUS, 25);
5408         register_expression_parser(parse_sizeof,                      T_sizeof, 25);
5409         register_expression_parser(parse_alignof,                T___alignof__, 25);
5410         register_expression_parser(parse_extension,            T___extension__, 25);
5411         register_expression_parser(parse_builtin_classify_type,
5412                                                      T___builtin_classify_type, 25);
5413 }
5414
5415 /**
5416  * Parse a asm statement constraints specification.
5417  */
5418 static asm_constraint_t *parse_asm_constraints(void)
5419 {
5420         asm_constraint_t *result = NULL;
5421         asm_constraint_t *last   = NULL;
5422
5423         while(token.type == T_STRING_LITERAL || token.type == '[') {
5424                 asm_constraint_t *constraint = allocate_ast_zero(sizeof(constraint[0]));
5425                 memset(constraint, 0, sizeof(constraint[0]));
5426
5427                 if(token.type == '[') {
5428                         eat('[');
5429                         if(token.type != T_IDENTIFIER) {
5430                                 parse_error_expected("while parsing asm constraint",
5431                                                      T_IDENTIFIER, 0);
5432                                 return NULL;
5433                         }
5434                         constraint->symbol = token.v.symbol;
5435
5436                         expect(']');
5437                 }
5438
5439                 constraint->constraints = parse_string_literals();
5440                 expect('(');
5441                 constraint->expression = parse_expression();
5442                 expect(')');
5443
5444                 if(last != NULL) {
5445                         last->next = constraint;
5446                 } else {
5447                         result = constraint;
5448                 }
5449                 last = constraint;
5450
5451                 if(token.type != ',')
5452                         break;
5453                 eat(',');
5454         }
5455
5456         return result;
5457 }
5458
5459 /**
5460  * Parse a asm statement clobber specification.
5461  */
5462 static asm_clobber_t *parse_asm_clobbers(void)
5463 {
5464         asm_clobber_t *result = NULL;
5465         asm_clobber_t *last   = NULL;
5466
5467         while(token.type == T_STRING_LITERAL) {
5468                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
5469                 clobber->clobber       = parse_string_literals();
5470
5471                 if(last != NULL) {
5472                         last->next = clobber;
5473                 } else {
5474                         result = clobber;
5475                 }
5476                 last = clobber;
5477
5478                 if(token.type != ',')
5479                         break;
5480                 eat(',');
5481         }
5482
5483         return result;
5484 }
5485
5486 /**
5487  * Parse an asm statement.
5488  */
5489 static statement_t *parse_asm_statement(void)
5490 {
5491         eat(T_asm);
5492
5493         statement_t *statement          = allocate_statement_zero(STATEMENT_ASM);
5494         statement->base.source_position = token.source_position;
5495
5496         asm_statement_t *asm_statement = &statement->asms;
5497
5498         if(token.type == T_volatile) {
5499                 next_token();
5500                 asm_statement->is_volatile = true;
5501         }
5502
5503         expect('(');
5504         asm_statement->asm_text = parse_string_literals();
5505
5506         if(token.type != ':')
5507                 goto end_of_asm;
5508         eat(':');
5509
5510         asm_statement->inputs = parse_asm_constraints();
5511         if(token.type != ':')
5512                 goto end_of_asm;
5513         eat(':');
5514
5515         asm_statement->outputs = parse_asm_constraints();
5516         if(token.type != ':')
5517                 goto end_of_asm;
5518         eat(':');
5519
5520         asm_statement->clobbers = parse_asm_clobbers();
5521
5522 end_of_asm:
5523         expect(')');
5524         expect(';');
5525         return statement;
5526 }
5527
5528 /**
5529  * Parse a case statement.
5530  */
5531 static statement_t *parse_case_statement(void)
5532 {
5533         eat(T_case);
5534
5535         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
5536
5537         statement->base.source_position  = token.source_position;
5538         statement->case_label.expression = parse_expression();
5539
5540         if (c_mode & _GNUC) {
5541                 if (token.type == T_DOTDOTDOT) {
5542                         next_token();
5543                         statement->case_label.end_range = parse_expression();
5544                 }
5545         }
5546
5547         expect(':');
5548
5549         if (! is_constant_expression(statement->case_label.expression)) {
5550                 errorf(statement->base.source_position,
5551                         "case label does not reduce to an integer constant");
5552         } else {
5553                 /* TODO: check if the case label is already known */
5554                 if (current_switch != NULL) {
5555                         /* link all cases into the switch statement */
5556                         if (current_switch->last_case == NULL) {
5557                                 current_switch->first_case =
5558                                 current_switch->last_case  = &statement->case_label;
5559                         } else {
5560                                 current_switch->last_case->next = &statement->case_label;
5561                         }
5562                 } else {
5563                         errorf(statement->base.source_position,
5564                                 "case label not within a switch statement");
5565                 }
5566         }
5567         statement->case_label.statement = parse_statement();
5568
5569         return statement;
5570 }
5571
5572 /**
5573  * Finds an existing default label of a switch statement.
5574  */
5575 static case_label_statement_t *
5576 find_default_label(const switch_statement_t *statement)
5577 {
5578         case_label_statement_t *label = statement->first_case;
5579         for ( ; label != NULL; label = label->next) {
5580                 if (label->expression == NULL)
5581                         return label;
5582         }
5583         return NULL;
5584 }
5585
5586 /**
5587  * Parse a default statement.
5588  */
5589 static statement_t *parse_default_statement(void)
5590 {
5591         eat(T_default);
5592
5593         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
5594
5595         statement->base.source_position = token.source_position;
5596
5597         expect(':');
5598         if (current_switch != NULL) {
5599                 const case_label_statement_t *def_label = find_default_label(current_switch);
5600                 if (def_label != NULL) {
5601                         errorf(HERE, "multiple default labels in one switch");
5602                         errorf(def_label->base.source_position,
5603                                 "this is the first default label");
5604                 } else {
5605                         /* link all cases into the switch statement */
5606                         if (current_switch->last_case == NULL) {
5607                                 current_switch->first_case =
5608                                         current_switch->last_case  = &statement->case_label;
5609                         } else {
5610                                 current_switch->last_case->next = &statement->case_label;
5611                         }
5612                 }
5613         } else {
5614                 errorf(statement->base.source_position,
5615                         "'default' label not within a switch statement");
5616         }
5617         statement->case_label.statement = parse_statement();
5618
5619         return statement;
5620 }
5621
5622 /**
5623  * Return the declaration for a given label symbol or create a new one.
5624  */
5625 static declaration_t *get_label(symbol_t *symbol)
5626 {
5627         declaration_t *candidate = get_declaration(symbol, NAMESPACE_LABEL);
5628         assert(current_function != NULL);
5629         /* if we found a label in the same function, then we already created the
5630          * declaration */
5631         if(candidate != NULL
5632                         && candidate->parent_scope == &current_function->scope) {
5633                 return candidate;
5634         }
5635
5636         /* otherwise we need to create a new one */
5637         declaration_t *const declaration = allocate_declaration_zero();
5638         declaration->namespc       = NAMESPACE_LABEL;
5639         declaration->symbol        = symbol;
5640
5641         label_push(declaration);
5642
5643         return declaration;
5644 }
5645
5646 /**
5647  * Parse a label statement.
5648  */
5649 static statement_t *parse_label_statement(void)
5650 {
5651         assert(token.type == T_IDENTIFIER);
5652         symbol_t *symbol = token.v.symbol;
5653         next_token();
5654
5655         declaration_t *label = get_label(symbol);
5656
5657         /* if source position is already set then the label is defined twice,
5658          * otherwise it was just mentioned in a goto so far */
5659         if(label->source_position.input_name != NULL) {
5660                 errorf(HERE, "duplicate label '%Y'", symbol);
5661                 errorf(label->source_position, "previous definition of '%Y' was here",
5662                        symbol);
5663         } else {
5664                 label->source_position = token.source_position;
5665         }
5666
5667         statement_t *statement = allocate_statement_zero(STATEMENT_LABEL);
5668
5669         statement->base.source_position = token.source_position;
5670         statement->label.label          = label;
5671
5672         eat(':');
5673
5674         if(token.type == '}') {
5675                 /* TODO only warn? */
5676                 errorf(HERE, "label at end of compound statement");
5677                 return statement;
5678         } else {
5679                 if (token.type == ';') {
5680                         /* eat an empty statement here, to avoid the warning about an empty
5681                          * after a label.  label:; is commonly used to have a label before
5682                          * a }. */
5683                         next_token();
5684                 } else {
5685                         statement->label.statement = parse_statement();
5686                 }
5687         }
5688
5689         /* remember the labels's in a list for later checking */
5690         if (label_last == NULL) {
5691                 label_first = &statement->label;
5692         } else {
5693                 label_last->next = &statement->label;
5694         }
5695         label_last = &statement->label;
5696
5697         return statement;
5698 }
5699
5700 /**
5701  * Parse an if statement.
5702  */
5703 static statement_t *parse_if(void)
5704 {
5705         eat(T_if);
5706
5707         statement_t *statement          = allocate_statement_zero(STATEMENT_IF);
5708         statement->base.source_position = token.source_position;
5709
5710         expect('(');
5711         statement->ifs.condition = parse_expression();
5712         expect(')');
5713
5714         statement->ifs.true_statement = parse_statement();
5715         if(token.type == T_else) {
5716                 next_token();
5717                 statement->ifs.false_statement = parse_statement();
5718         }
5719
5720         return statement;
5721 }
5722
5723 /**
5724  * Parse a switch statement.
5725  */
5726 static statement_t *parse_switch(void)
5727 {
5728         eat(T_switch);
5729
5730         statement_t *statement          = allocate_statement_zero(STATEMENT_SWITCH);
5731         statement->base.source_position = token.source_position;
5732
5733         expect('(');
5734         expression_t *const expr = parse_expression();
5735         type_t       *      type = skip_typeref(expr->base.type);
5736         if (is_type_integer(type)) {
5737                 type = promote_integer(type);
5738         } else if (is_type_valid(type)) {
5739                 errorf(expr->base.source_position,
5740                        "switch quantity is not an integer, but '%T'", type);
5741                 type = type_error_type;
5742         }
5743         statement->switchs.expression = create_implicit_cast(expr, type);
5744         expect(')');
5745
5746         switch_statement_t *rem = current_switch;
5747         current_switch          = &statement->switchs;
5748         statement->switchs.body = parse_statement();
5749         current_switch          = rem;
5750
5751         if (warning.switch_default
5752                         && find_default_label(&statement->switchs) == NULL) {
5753                 warningf(statement->base.source_position, "switch has no default case");
5754         }
5755
5756         return statement;
5757 }
5758
5759 static statement_t *parse_loop_body(statement_t *const loop)
5760 {
5761         statement_t *const rem = current_loop;
5762         current_loop = loop;
5763
5764         statement_t *const body = parse_statement();
5765
5766         current_loop = rem;
5767         return body;
5768 }
5769
5770 /**
5771  * Parse a while statement.
5772  */
5773 static statement_t *parse_while(void)
5774 {
5775         eat(T_while);
5776
5777         statement_t *statement          = allocate_statement_zero(STATEMENT_WHILE);
5778         statement->base.source_position = token.source_position;
5779
5780         expect('(');
5781         statement->whiles.condition = parse_expression();
5782         expect(')');
5783
5784         statement->whiles.body = parse_loop_body(statement);
5785
5786         return statement;
5787 }
5788
5789 /**
5790  * Parse a do statement.
5791  */
5792 static statement_t *parse_do(void)
5793 {
5794         eat(T_do);
5795
5796         statement_t *statement = allocate_statement_zero(STATEMENT_DO_WHILE);
5797
5798         statement->base.source_position = token.source_position;
5799
5800         statement->do_while.body = parse_loop_body(statement);
5801
5802         expect(T_while);
5803         expect('(');
5804         statement->do_while.condition = parse_expression();
5805         expect(')');
5806         expect(';');
5807
5808         return statement;
5809 }
5810
5811 /**
5812  * Parse a for statement.
5813  */
5814 static statement_t *parse_for(void)
5815 {
5816         eat(T_for);
5817
5818         statement_t *statement          = allocate_statement_zero(STATEMENT_FOR);
5819         statement->base.source_position = token.source_position;
5820
5821         expect('(');
5822
5823         int      top        = environment_top();
5824         scope_t *last_scope = scope;
5825         set_scope(&statement->fors.scope);
5826
5827         if(token.type != ';') {
5828                 if(is_declaration_specifier(&token, false)) {
5829                         parse_declaration(record_declaration);
5830                 } else {
5831                         expression_t *const init = parse_expression();
5832                         statement->fors.initialisation = init;
5833                         if (warning.unused_value  && !expression_has_effect(init)) {
5834                                 warningf(init->base.source_position, "initialisation of 'for'-statement has no effect");
5835                         }
5836                         expect(';');
5837                 }
5838         } else {
5839                 expect(';');
5840         }
5841
5842         if(token.type != ';') {
5843                 statement->fors.condition = parse_expression();
5844         }
5845         expect(';');
5846         if(token.type != ')') {
5847                 expression_t *const step = parse_expression();
5848                 statement->fors.step = step;
5849                 if (warning.unused_value  && !expression_has_effect(step)) {
5850                         warningf(step->base.source_position, "step of 'for'-statement has no effect");
5851                 }
5852         }
5853         expect(')');
5854         statement->fors.body = parse_loop_body(statement);
5855
5856         assert(scope == &statement->fors.scope);
5857         set_scope(last_scope);
5858         environment_pop_to(top);
5859
5860         return statement;
5861 }
5862
5863 /**
5864  * Parse a goto statement.
5865  */
5866 static statement_t *parse_goto(void)
5867 {
5868         eat(T_goto);
5869
5870         if(token.type != T_IDENTIFIER) {
5871                 parse_error_expected("while parsing goto", T_IDENTIFIER, 0);
5872                 eat_statement();
5873                 return NULL;
5874         }
5875         symbol_t *symbol = token.v.symbol;
5876         next_token();
5877
5878         declaration_t *label = get_label(symbol);
5879
5880         statement_t *statement          = allocate_statement_zero(STATEMENT_GOTO);
5881         statement->base.source_position = token.source_position;
5882
5883         statement->gotos.label = label;
5884
5885         /* remember the goto's in a list for later checking */
5886         if (goto_last == NULL) {
5887                 goto_first = &statement->gotos;
5888         } else {
5889                 goto_last->next = &statement->gotos;
5890         }
5891         goto_last = &statement->gotos;
5892
5893         expect(';');
5894
5895         return statement;
5896 }
5897
5898 /**
5899  * Parse a continue statement.
5900  */
5901 static statement_t *parse_continue(void)
5902 {
5903         statement_t *statement;
5904         if (current_loop == NULL) {
5905                 errorf(HERE, "continue statement not within loop");
5906                 statement = NULL;
5907         } else {
5908                 statement = allocate_statement_zero(STATEMENT_CONTINUE);
5909
5910                 statement->base.source_position = token.source_position;
5911         }
5912
5913         eat(T_continue);
5914         expect(';');
5915
5916         return statement;
5917 }
5918
5919 /**
5920  * Parse a break statement.
5921  */
5922 static statement_t *parse_break(void)
5923 {
5924         statement_t *statement;
5925         if (current_switch == NULL && current_loop == NULL) {
5926                 errorf(HERE, "break statement not within loop or switch");
5927                 statement = NULL;
5928         } else {
5929                 statement = allocate_statement_zero(STATEMENT_BREAK);
5930
5931                 statement->base.source_position = token.source_position;
5932         }
5933
5934         eat(T_break);
5935         expect(';');
5936
5937         return statement;
5938 }
5939
5940 /**
5941  * Check if a given declaration represents a local variable.
5942  */
5943 static bool is_local_var_declaration(const declaration_t *declaration) {
5944         switch ((storage_class_tag_t) declaration->storage_class) {
5945         case STORAGE_CLASS_AUTO:
5946         case STORAGE_CLASS_REGISTER: {
5947                 const type_t *type = skip_typeref(declaration->type);
5948                 if(is_type_function(type)) {
5949                         return false;
5950                 } else {
5951                         return true;
5952                 }
5953         }
5954         default:
5955                 return false;
5956         }
5957 }
5958
5959 /**
5960  * Check if a given declaration represents a variable.
5961  */
5962 static bool is_var_declaration(const declaration_t *declaration) {
5963         if(declaration->storage_class == STORAGE_CLASS_TYPEDEF)
5964                 return false;
5965
5966         const type_t *type = skip_typeref(declaration->type);
5967         return !is_type_function(type);
5968 }
5969
5970 /**
5971  * Check if a given expression represents a local variable.
5972  */
5973 static bool is_local_variable(const expression_t *expression)
5974 {
5975         if (expression->base.kind != EXPR_REFERENCE) {
5976                 return false;
5977         }
5978         const declaration_t *declaration = expression->reference.declaration;
5979         return is_local_var_declaration(declaration);
5980 }
5981
5982 /**
5983  * Check if a given expression represents a local variable and
5984  * return its declaration then, else return NULL.
5985  */
5986 declaration_t *expr_is_variable(const expression_t *expression)
5987 {
5988         if (expression->base.kind != EXPR_REFERENCE) {
5989                 return NULL;
5990         }
5991         declaration_t *declaration = expression->reference.declaration;
5992         if (is_var_declaration(declaration))
5993                 return declaration;
5994         return NULL;
5995 }
5996
5997 /**
5998  * Parse a return statement.
5999  */
6000 static statement_t *parse_return(void)
6001 {
6002         eat(T_return);
6003
6004         statement_t *statement          = allocate_statement_zero(STATEMENT_RETURN);
6005         statement->base.source_position = token.source_position;
6006
6007         expression_t *return_value = NULL;
6008         if(token.type != ';') {
6009                 return_value = parse_expression();
6010         }
6011         expect(';');
6012
6013         const type_t *const func_type = current_function->type;
6014         assert(is_type_function(func_type));
6015         type_t *const return_type = skip_typeref(func_type->function.return_type);
6016
6017         if(return_value != NULL) {
6018                 type_t *return_value_type = skip_typeref(return_value->base.type);
6019
6020                 if(is_type_atomic(return_type, ATOMIC_TYPE_VOID)
6021                                 && !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
6022                         warningf(statement->base.source_position,
6023                                  "'return' with a value, in function returning void");
6024                         return_value = NULL;
6025                 } else {
6026                         type_t *const res_type = semantic_assign(return_type,
6027                                 return_value, "'return'");
6028                         if (res_type == NULL) {
6029                                 errorf(statement->base.source_position,
6030                                        "cannot return something of type '%T' in function returning '%T'",
6031                                        return_value->base.type, return_type);
6032                         } else {
6033                                 return_value = create_implicit_cast(return_value, res_type);
6034                         }
6035                 }
6036                 /* check for returning address of a local var */
6037                 if (return_value->base.kind == EXPR_UNARY_TAKE_ADDRESS) {
6038                         const expression_t *expression = return_value->unary.value;
6039                         if (is_local_variable(expression)) {
6040                                 warningf(statement->base.source_position,
6041                                          "function returns address of local variable");
6042                         }
6043                 }
6044         } else {
6045                 if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
6046                         warningf(statement->base.source_position,
6047                                  "'return' without value, in function returning non-void");
6048                 }
6049         }
6050         statement->returns.value = return_value;
6051
6052         return statement;
6053 }
6054
6055 /**
6056  * Parse a declaration statement.
6057  */
6058 static statement_t *parse_declaration_statement(void)
6059 {
6060         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
6061
6062         statement->base.source_position = token.source_position;
6063
6064         declaration_t *before = last_declaration;
6065         parse_declaration(record_declaration);
6066
6067         if(before == NULL) {
6068                 statement->declaration.declarations_begin = scope->declarations;
6069         } else {
6070                 statement->declaration.declarations_begin = before->next;
6071         }
6072         statement->declaration.declarations_end = last_declaration;
6073
6074         return statement;
6075 }
6076
6077 /**
6078  * Parse an expression statement, ie. expr ';'.
6079  */
6080 static statement_t *parse_expression_statement(void)
6081 {
6082         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
6083
6084         statement->base.source_position  = token.source_position;
6085         expression_t *const expr         = parse_expression();
6086         statement->expression.expression = expr;
6087
6088         if (warning.unused_value  && !expression_has_effect(expr)) {
6089                 warningf(expr->base.source_position, "statement has no effect");
6090         }
6091
6092         expect(';');
6093
6094         return statement;
6095 }
6096
6097 /**
6098  * Parse a statement.
6099  */
6100 static statement_t *parse_statement(void)
6101 {
6102         statement_t   *statement = NULL;
6103
6104         /* declaration or statement */
6105         switch(token.type) {
6106         case T_asm:
6107                 statement = parse_asm_statement();
6108                 break;
6109
6110         case T_case:
6111                 statement = parse_case_statement();
6112                 break;
6113
6114         case T_default:
6115                 statement = parse_default_statement();
6116                 break;
6117
6118         case '{':
6119                 statement = parse_compound_statement();
6120                 break;
6121
6122         case T_if:
6123                 statement = parse_if();
6124                 break;
6125
6126         case T_switch:
6127                 statement = parse_switch();
6128                 break;
6129
6130         case T_while:
6131                 statement = parse_while();
6132                 break;
6133
6134         case T_do:
6135                 statement = parse_do();
6136                 break;
6137
6138         case T_for:
6139                 statement = parse_for();
6140                 break;
6141
6142         case T_goto:
6143                 statement = parse_goto();
6144                 break;
6145
6146         case T_continue:
6147                 statement = parse_continue();
6148                 break;
6149
6150         case T_break:
6151                 statement = parse_break();
6152                 break;
6153
6154         case T_return:
6155                 statement = parse_return();
6156                 break;
6157
6158         case ';':
6159                 if (warning.empty_statement) {
6160                         warningf(HERE, "statement is empty");
6161                 }
6162                 next_token();
6163                 statement = NULL;
6164                 break;
6165
6166         case T_IDENTIFIER:
6167                 if(look_ahead(1)->type == ':') {
6168                         statement = parse_label_statement();
6169                         break;
6170                 }
6171
6172                 if(is_typedef_symbol(token.v.symbol)) {
6173                         statement = parse_declaration_statement();
6174                         break;
6175                 }
6176
6177                 statement = parse_expression_statement();
6178                 break;
6179
6180         case T___extension__:
6181                 /* this can be a prefix to a declaration or an expression statement */
6182                 /* we simply eat it now and parse the rest with tail recursion */
6183                 do {
6184                         next_token();
6185                 } while(token.type == T___extension__);
6186                 statement = parse_statement();
6187                 break;
6188
6189         DECLARATION_START
6190                 statement = parse_declaration_statement();
6191                 break;
6192
6193         default:
6194                 statement = parse_expression_statement();
6195                 break;
6196         }
6197
6198         assert(statement == NULL
6199                         || statement->base.source_position.input_name != NULL);
6200
6201         return statement;
6202 }
6203
6204 /**
6205  * Parse a compound statement.
6206  */
6207 static statement_t *parse_compound_statement(void)
6208 {
6209         statement_t *statement = allocate_statement_zero(STATEMENT_COMPOUND);
6210
6211         statement->base.source_position = token.source_position;
6212
6213         eat('{');
6214
6215         int      top        = environment_top();
6216         scope_t *last_scope = scope;
6217         set_scope(&statement->compound.scope);
6218
6219         statement_t *last_statement = NULL;
6220
6221         while(token.type != '}' && token.type != T_EOF) {
6222                 statement_t *sub_statement = parse_statement();
6223                 if(sub_statement == NULL)
6224                         continue;
6225
6226                 if(last_statement != NULL) {
6227                         last_statement->base.next = sub_statement;
6228                 } else {
6229                         statement->compound.statements = sub_statement;
6230                 }
6231
6232                 while(sub_statement->base.next != NULL)
6233                         sub_statement = sub_statement->base.next;
6234
6235                 last_statement = sub_statement;
6236         }
6237
6238         if(token.type == '}') {
6239                 next_token();
6240         } else {
6241                 errorf(statement->base.source_position,
6242                        "end of file while looking for closing '}'");
6243         }
6244
6245         assert(scope == &statement->compound.scope);
6246         set_scope(last_scope);
6247         environment_pop_to(top);
6248
6249         return statement;
6250 }
6251
6252 /**
6253  * Initialize builtin types.
6254  */
6255 static void initialize_builtin_types(void)
6256 {
6257         type_intmax_t    = make_global_typedef("__intmax_t__",      type_long_long);
6258         type_size_t      = make_global_typedef("__SIZE_TYPE__",     type_unsigned_long);
6259         type_ssize_t     = make_global_typedef("__SSIZE_TYPE__",    type_long);
6260         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",  type_long);
6261         type_uintmax_t   = make_global_typedef("__uintmax_t__",     type_unsigned_long_long);
6262         type_uptrdiff_t  = make_global_typedef("__UPTRDIFF_TYPE__", type_unsigned_long);
6263         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    type_int);
6264         type_wint_t      = make_global_typedef("__WINT_TYPE__",     type_int);
6265
6266         type_intmax_t_ptr  = make_pointer_type(type_intmax_t,  TYPE_QUALIFIER_NONE);
6267         type_ptrdiff_t_ptr = make_pointer_type(type_ptrdiff_t, TYPE_QUALIFIER_NONE);
6268         type_ssize_t_ptr   = make_pointer_type(type_ssize_t,   TYPE_QUALIFIER_NONE);
6269         type_wchar_t_ptr   = make_pointer_type(type_wchar_t,   TYPE_QUALIFIER_NONE);
6270 }
6271
6272 /**
6273  * Check for unused global static functions and variables
6274  */
6275 static void check_unused_globals(void)
6276 {
6277         if (!warning.unused_function && !warning.unused_variable)
6278                 return;
6279
6280         for (const declaration_t *decl = global_scope->declarations; decl != NULL; decl = decl->next) {
6281                 if (decl->used || decl->storage_class != STORAGE_CLASS_STATIC)
6282                         continue;
6283
6284                 type_t *const type = decl->type;
6285                 const char *s;
6286                 if (is_type_function(skip_typeref(type))) {
6287                         if (!warning.unused_function || decl->is_inline)
6288                                 continue;
6289
6290                         s = (decl->init.statement != NULL ? "defined" : "declared");
6291                 } else {
6292                         if (!warning.unused_variable)
6293                                 continue;
6294
6295                         s = "defined";
6296                 }
6297
6298                 warningf(decl->source_position, "'%#T' %s but not used",
6299                         type, decl->symbol, s);
6300         }
6301 }
6302
6303 /**
6304  * Parse a translation unit.
6305  */
6306 static translation_unit_t *parse_translation_unit(void)
6307 {
6308         translation_unit_t *unit = allocate_ast_zero(sizeof(unit[0]));
6309
6310         assert(global_scope == NULL);
6311         global_scope = &unit->scope;
6312
6313         assert(scope == NULL);
6314         set_scope(&unit->scope);
6315
6316         initialize_builtin_types();
6317
6318         while(token.type != T_EOF) {
6319                 if (token.type == ';') {
6320                         /* TODO error in strict mode */
6321                         warningf(HERE, "stray ';' outside of function");
6322                         next_token();
6323                 } else {
6324                         parse_external_declaration();
6325                 }
6326         }
6327
6328         assert(scope == &unit->scope);
6329         scope          = NULL;
6330         last_declaration = NULL;
6331
6332         assert(global_scope == &unit->scope);
6333         check_unused_globals();
6334         global_scope = NULL;
6335
6336         return unit;
6337 }
6338
6339 /**
6340  * Parse the input.
6341  *
6342  * @return  the translation unit or NULL if errors occurred.
6343  */
6344 translation_unit_t *parse(void)
6345 {
6346         environment_stack = NEW_ARR_F(stack_entry_t, 0);
6347         label_stack       = NEW_ARR_F(stack_entry_t, 0);
6348         diagnostic_count  = 0;
6349         error_count       = 0;
6350         warning_count     = 0;
6351
6352         type_set_output(stderr);
6353         ast_set_output(stderr);
6354
6355         lookahead_bufpos = 0;
6356         for(int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
6357                 next_token();
6358         }
6359         translation_unit_t *unit = parse_translation_unit();
6360
6361         DEL_ARR_F(environment_stack);
6362         DEL_ARR_F(label_stack);
6363
6364         if(error_count > 0)
6365                 return NULL;
6366
6367         return unit;
6368 }
6369
6370 /**
6371  * Initialize the parser.
6372  */
6373 void init_parser(void)
6374 {
6375         init_expression_parsers();
6376         obstack_init(&temp_obst);
6377
6378         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
6379         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
6380 }
6381
6382 /**
6383  * Terminate the parser.
6384  */
6385 void exit_parser(void)
6386 {
6387         obstack_free(&temp_obst, NULL);
6388 }