add checks for missing return statement
[cparser] / parser.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include <assert.h>
23 #include <stdarg.h>
24 #include <stdbool.h>
25
26 #include "parser.h"
27 #include "diagnostic.h"
28 #include "format_check.h"
29 #include "lexer.h"
30 #include "symbol_t.h"
31 #include "token_t.h"
32 #include "types.h"
33 #include "type_t.h"
34 #include "type_hash.h"
35 #include "ast_t.h"
36 #include "lang_features.h"
37 #include "warning.h"
38 #include "adt/bitfiddle.h"
39 #include "adt/error.h"
40 #include "adt/array.h"
41
42 //#define PRINT_TOKENS
43 #define MAX_LOOKAHEAD 2
44
45 typedef struct {
46         declaration_t *old_declaration;
47         symbol_t      *symbol;
48         unsigned short namespc;
49 } stack_entry_t;
50
51 typedef struct gnu_attribute_t gnu_attribute_t;
52 struct gnu_attribute_t {
53         gnu_attribute_kind_t kind;
54         gnu_attribute_t     *next;
55         bool                 invalid;
56         bool                 have_arguments;
57         union {
58                 size_t   value;
59                 string_t string;
60         } u;
61 };
62
63 typedef struct declaration_specifiers_t  declaration_specifiers_t;
64 struct declaration_specifiers_t {
65         source_position_t  source_position;
66         unsigned char      declared_storage_class;
67         unsigned char      alignment;         /**< Alignment, 0 if not set. */
68         unsigned int       is_inline : 1;
69         unsigned int       deprecated : 1;
70         decl_modifiers_t   decl_modifiers;    /**< MS __declspec extended modifier mask */
71         gnu_attribute_t   *gnu_attributes;    /**< list of GNU attributes */
72         const char        *deprecated_string; /**< can be set if declaration was marked deprecated. */
73         symbol_t          *get_property_sym;  /**< the name of the get property if set. */
74         symbol_t          *put_property_sym;  /**< the name of the put property if set. */
75         type_t            *type;
76 };
77
78 /**
79  * An environment for parsing initializers (and compound literals).
80  */
81 typedef struct parse_initializer_env_t {
82         type_t        *type;        /**< the type of the initializer. In case of an
83                                          array type with unspecified size this gets
84                                          adjusted to the actual size. */
85         declaration_t *declaration; /**< the declaration that is initialized if any */
86         bool           must_be_constant;
87 } parse_initializer_env_t;
88
89 typedef declaration_t* (*parsed_declaration_func) (declaration_t *declaration);
90
91 static token_t             token;
92 static token_t             lookahead_buffer[MAX_LOOKAHEAD];
93 static int                 lookahead_bufpos;
94 static stack_entry_t      *environment_stack = NULL;
95 static stack_entry_t      *label_stack       = NULL;
96 static scope_t            *global_scope      = NULL;
97 static scope_t            *scope             = NULL;
98 static declaration_t      *last_declaration  = NULL;
99 static declaration_t      *current_function  = NULL;
100 static switch_statement_t *current_switch    = NULL;
101 static statement_t        *current_loop      = NULL;
102 static ms_try_statement_t *current_try       = NULL;
103 static goto_statement_t   *goto_first        = NULL;
104 static goto_statement_t   *goto_last         = NULL;
105 static label_statement_t  *label_first       = NULL;
106 static label_statement_t  *label_last        = NULL;
107 static struct obstack      temp_obst;
108
109 static source_position_t null_position = { NULL, 0 };
110
111 /* symbols for Microsoft extended-decl-modifier */
112 static const symbol_t *sym_align      = NULL;
113 static const symbol_t *sym_allocate   = NULL;
114 static const symbol_t *sym_dllimport  = NULL;
115 static const symbol_t *sym_dllexport  = NULL;
116 static const symbol_t *sym_naked      = NULL;
117 static const symbol_t *sym_noinline   = NULL;
118 static const symbol_t *sym_noreturn   = NULL;
119 static const symbol_t *sym_nothrow    = NULL;
120 static const symbol_t *sym_novtable   = NULL;
121 static const symbol_t *sym_property   = NULL;
122 static const symbol_t *sym_get        = NULL;
123 static const symbol_t *sym_put        = NULL;
124 static const symbol_t *sym_selectany  = NULL;
125 static const symbol_t *sym_thread     = NULL;
126 static const symbol_t *sym_uuid       = NULL;
127 static const symbol_t *sym_deprecated = NULL;
128 static const symbol_t *sym_restrict   = NULL;
129 static const symbol_t *sym_noalias    = NULL;
130
131 /** The token anchor set */
132 static unsigned char token_anchor_set[T_LAST_TOKEN];
133
134 /** The current source position. */
135 #define HERE (&token.source_position)
136
137 static type_t *type_valist;
138
139 static statement_t *parse_compound_statement(bool inside_expression_statement);
140 static statement_t *parse_statement(void);
141
142 static expression_t *parse_sub_expression(unsigned precedence);
143 static expression_t *parse_expression(void);
144 static type_t       *parse_typename(void);
145
146 static void parse_compound_type_entries(declaration_t *compound_declaration);
147 static declaration_t *parse_declarator(
148                 const declaration_specifiers_t *specifiers, bool may_be_abstract);
149 static declaration_t *record_declaration(declaration_t *declaration);
150
151 static void semantic_comparison(binary_expression_t *expression);
152
153 #define STORAGE_CLASSES     \
154         case T_typedef:         \
155         case T_extern:          \
156         case T_static:          \
157         case T_auto:            \
158         case T_register:
159
160 #define TYPE_QUALIFIERS     \
161         case T_const:           \
162         case T_restrict:        \
163         case T_volatile:        \
164         case T_inline:          \
165         case T__forceinline:
166
167 #ifdef PROVIDE_COMPLEX
168 #define COMPLEX_SPECIFIERS  \
169         case T__Complex:
170 #define IMAGINARY_SPECIFIERS \
171         case T__Imaginary:
172 #else
173 #define COMPLEX_SPECIFIERS
174 #define IMAGINARY_SPECIFIERS
175 #endif
176
177 #define TYPE_SPECIFIERS       \
178         case T_void:              \
179         case T_char:              \
180         case T_short:             \
181         case T_int:               \
182         case T_long:              \
183         case T_float:             \
184         case T_double:            \
185         case T_signed:            \
186         case T_unsigned:          \
187         case T__Bool:             \
188         case T_struct:            \
189         case T_union:             \
190         case T_enum:              \
191         case T___typeof__:        \
192         case T___builtin_va_list: \
193         case T__declspec:         \
194         COMPLEX_SPECIFIERS        \
195         IMAGINARY_SPECIFIERS
196
197 #define DECLARATION_START   \
198         STORAGE_CLASSES         \
199         TYPE_QUALIFIERS         \
200         TYPE_SPECIFIERS
201
202 #define TYPENAME_START      \
203         TYPE_QUALIFIERS         \
204         TYPE_SPECIFIERS
205
206 /**
207  * Allocate an AST node with given size and
208  * initialize all fields with zero.
209  */
210 static void *allocate_ast_zero(size_t size)
211 {
212         void *res = allocate_ast(size);
213         memset(res, 0, size);
214         return res;
215 }
216
217 static declaration_t *allocate_declaration_zero(void)
218 {
219         declaration_t *declaration = allocate_ast_zero(sizeof(declaration_t));
220         declaration->type      = type_error_type;
221         declaration->alignment = 0;
222         return declaration;
223 }
224
225 /**
226  * Returns the size of a statement node.
227  *
228  * @param kind  the statement kind
229  */
230 static size_t get_statement_struct_size(statement_kind_t kind)
231 {
232         static const size_t sizes[] = {
233                 [STATEMENT_INVALID]     = sizeof(invalid_statement_t),
234                 [STATEMENT_EMPTY]       = sizeof(empty_statement_t),
235                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
236                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
237                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
238                 [STATEMENT_IF]          = sizeof(if_statement_t),
239                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
240                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
241                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
242                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
243                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
244                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
245                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
246                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
247                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
248                 [STATEMENT_FOR]         = sizeof(for_statement_t),
249                 [STATEMENT_ASM]         = sizeof(asm_statement_t),
250                 [STATEMENT_MS_TRY]      = sizeof(ms_try_statement_t),
251                 [STATEMENT_LEAVE]       = sizeof(leave_statement_t)
252         };
253         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
254         assert(sizes[kind] != 0);
255         return sizes[kind];
256 }
257
258 /**
259  * Returns the size of an expression node.
260  *
261  * @param kind  the expression kind
262  */
263 static size_t get_expression_struct_size(expression_kind_t kind)
264 {
265         static const size_t sizes[] = {
266                 [EXPR_INVALID]                 = sizeof(expression_base_t),
267                 [EXPR_REFERENCE]               = sizeof(reference_expression_t),
268                 [EXPR_CONST]                   = sizeof(const_expression_t),
269                 [EXPR_CHARACTER_CONSTANT]      = sizeof(const_expression_t),
270                 [EXPR_WIDE_CHARACTER_CONSTANT] = sizeof(const_expression_t),
271                 [EXPR_STRING_LITERAL]          = sizeof(string_literal_expression_t),
272                 [EXPR_WIDE_STRING_LITERAL]     = sizeof(wide_string_literal_expression_t),
273                 [EXPR_COMPOUND_LITERAL]        = sizeof(compound_literal_expression_t),
274                 [EXPR_CALL]                    = sizeof(call_expression_t),
275                 [EXPR_UNARY_FIRST]             = sizeof(unary_expression_t),
276                 [EXPR_BINARY_FIRST]            = sizeof(binary_expression_t),
277                 [EXPR_CONDITIONAL]             = sizeof(conditional_expression_t),
278                 [EXPR_SELECT]                  = sizeof(select_expression_t),
279                 [EXPR_ARRAY_ACCESS]            = sizeof(array_access_expression_t),
280                 [EXPR_SIZEOF]                  = sizeof(typeprop_expression_t),
281                 [EXPR_ALIGNOF]                 = sizeof(typeprop_expression_t),
282                 [EXPR_CLASSIFY_TYPE]           = sizeof(classify_type_expression_t),
283                 [EXPR_FUNCNAME]                = sizeof(funcname_expression_t),
284                 [EXPR_BUILTIN_SYMBOL]          = sizeof(builtin_symbol_expression_t),
285                 [EXPR_BUILTIN_CONSTANT_P]      = sizeof(builtin_constant_expression_t),
286                 [EXPR_BUILTIN_PREFETCH]        = sizeof(builtin_prefetch_expression_t),
287                 [EXPR_OFFSETOF]                = sizeof(offsetof_expression_t),
288                 [EXPR_VA_START]                = sizeof(va_start_expression_t),
289                 [EXPR_VA_ARG]                  = sizeof(va_arg_expression_t),
290                 [EXPR_STATEMENT]               = sizeof(statement_expression_t),
291         };
292         if(kind >= EXPR_UNARY_FIRST && kind <= EXPR_UNARY_LAST) {
293                 return sizes[EXPR_UNARY_FIRST];
294         }
295         if(kind >= EXPR_BINARY_FIRST && kind <= EXPR_BINARY_LAST) {
296                 return sizes[EXPR_BINARY_FIRST];
297         }
298         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
299         assert(sizes[kind] != 0);
300         return sizes[kind];
301 }
302
303 /**
304  * Allocate a statement node of given kind and initialize all
305  * fields with zero.
306  */
307 static statement_t *allocate_statement_zero(statement_kind_t kind)
308 {
309         size_t       size = get_statement_struct_size(kind);
310         statement_t *res  = allocate_ast_zero(size);
311
312         res->base.kind = kind;
313         return res;
314 }
315
316 /**
317  * Allocate an expression node of given kind and initialize all
318  * fields with zero.
319  */
320 static expression_t *allocate_expression_zero(expression_kind_t kind)
321 {
322         size_t        size = get_expression_struct_size(kind);
323         expression_t *res  = allocate_ast_zero(size);
324
325         res->base.kind = kind;
326         res->base.type = type_error_type;
327         return res;
328 }
329
330 /**
331  * Creates a new invalid expression.
332  */
333 static expression_t *create_invalid_expression(void)
334 {
335         expression_t *expression         = allocate_expression_zero(EXPR_INVALID);
336         expression->base.source_position = token.source_position;
337         return expression;
338 }
339
340 /**
341  * Creates a new invalid statement.
342  */
343 static statement_t *create_invalid_statement(void)
344 {
345         statement_t *statement          = allocate_statement_zero(STATEMENT_INVALID);
346         statement->base.source_position = token.source_position;
347         return statement;
348 }
349
350 /**
351  * Allocate a new empty statement.
352  */
353 static statement_t *create_empty_statement(void)
354 {
355         statement_t *statement          = allocate_statement_zero(STATEMENT_EMPTY);
356         statement->base.source_position = token.source_position;
357         return statement;
358 }
359
360 /**
361  * Returns the size of a type node.
362  *
363  * @param kind  the type kind
364  */
365 static size_t get_type_struct_size(type_kind_t kind)
366 {
367         static const size_t sizes[] = {
368                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
369                 [TYPE_COMPLEX]         = sizeof(complex_type_t),
370                 [TYPE_IMAGINARY]       = sizeof(imaginary_type_t),
371                 [TYPE_BITFIELD]        = sizeof(bitfield_type_t),
372                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
373                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
374                 [TYPE_ENUM]            = sizeof(enum_type_t),
375                 [TYPE_FUNCTION]        = sizeof(function_type_t),
376                 [TYPE_POINTER]         = sizeof(pointer_type_t),
377                 [TYPE_ARRAY]           = sizeof(array_type_t),
378                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
379                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
380                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
381         };
382         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
383         assert(kind <= TYPE_TYPEOF);
384         assert(sizes[kind] != 0);
385         return sizes[kind];
386 }
387
388 /**
389  * Allocate a type node of given kind and initialize all
390  * fields with zero.
391  */
392 static type_t *allocate_type_zero(type_kind_t kind, const source_position_t *source_position)
393 {
394         size_t  size = get_type_struct_size(kind);
395         type_t *res  = obstack_alloc(type_obst, size);
396         memset(res, 0, size);
397
398         res->base.kind            = kind;
399         res->base.source_position = *source_position;
400         return res;
401 }
402
403 /**
404  * Returns the size of an initializer node.
405  *
406  * @param kind  the initializer kind
407  */
408 static size_t get_initializer_size(initializer_kind_t kind)
409 {
410         static const size_t sizes[] = {
411                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
412                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
413                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
414                 [INITIALIZER_LIST]        = sizeof(initializer_list_t),
415                 [INITIALIZER_DESIGNATOR]  = sizeof(initializer_designator_t)
416         };
417         assert(kind < sizeof(sizes) / sizeof(*sizes));
418         assert(sizes[kind] != 0);
419         return sizes[kind];
420 }
421
422 /**
423  * Allocate an initializer node of given kind and initialize all
424  * fields with zero.
425  */
426 static initializer_t *allocate_initializer_zero(initializer_kind_t kind)
427 {
428         initializer_t *result = allocate_ast_zero(get_initializer_size(kind));
429         result->kind          = kind;
430
431         return result;
432 }
433
434 /**
435  * Free a type from the type obstack.
436  */
437 static void free_type(void *type)
438 {
439         obstack_free(type_obst, type);
440 }
441
442 /**
443  * Returns the index of the top element of the environment stack.
444  */
445 static size_t environment_top(void)
446 {
447         return ARR_LEN(environment_stack);
448 }
449
450 /**
451  * Returns the index of the top element of the label stack.
452  */
453 static size_t label_top(void)
454 {
455         return ARR_LEN(label_stack);
456 }
457
458 /**
459  * Return the next token.
460  */
461 static inline void next_token(void)
462 {
463         token                              = lookahead_buffer[lookahead_bufpos];
464         lookahead_buffer[lookahead_bufpos] = lexer_token;
465         lexer_next_token();
466
467         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
468
469 #ifdef PRINT_TOKENS
470         print_token(stderr, &token);
471         fprintf(stderr, "\n");
472 #endif
473 }
474
475 /**
476  * Return the next token with a given lookahead.
477  */
478 static inline const token_t *look_ahead(int num)
479 {
480         assert(num > 0 && num <= MAX_LOOKAHEAD);
481         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
482         return &lookahead_buffer[pos];
483 }
484
485 /**
486  * Adds a token to the token anchor set (a multi-set).
487  */
488 static void add_anchor_token(int token_type) {
489         assert(0 <= token_type && token_type < T_LAST_TOKEN);
490         ++token_anchor_set[token_type];
491 }
492
493 static int save_and_reset_anchor_state(int token_type) {
494         assert(0 <= token_type && token_type < T_LAST_TOKEN);
495         int count = token_anchor_set[token_type];
496         token_anchor_set[token_type] = 0;
497         return count;
498 }
499
500 static void restore_anchor_state(int token_type, int count) {
501         assert(0 <= token_type && token_type < T_LAST_TOKEN);
502         token_anchor_set[token_type] = count;
503 }
504
505 /**
506  * Remove a token from the token anchor set (a multi-set).
507  */
508 static void rem_anchor_token(int token_type) {
509         assert(0 <= token_type && token_type < T_LAST_TOKEN);
510         --token_anchor_set[token_type];
511 }
512
513 static bool at_anchor(void) {
514         if(token.type < 0)
515                 return false;
516         return token_anchor_set[token.type];
517 }
518
519 /**
520  * Eat tokens until a matching token is found.
521  */
522 static void eat_until_matching_token(int type) {
523         unsigned parenthesis_count = 0;
524         unsigned brace_count = 0;
525         unsigned bracket_count = 0;
526         int end_token = type;
527
528         if(type == '(')
529                 end_token = ')';
530         else if(type == '{')
531                 end_token = '}';
532         else if(type == '[')
533                 end_token = ']';
534
535         while(token.type != end_token ||
536               (parenthesis_count > 0 || brace_count > 0 || bracket_count > 0)) {
537
538                 switch(token.type) {
539                 case T_EOF: return;
540                 case '(': ++parenthesis_count; break;
541                 case '{': ++brace_count;       break;
542                 case '[': ++bracket_count;     break;
543                 case ')':
544                         if(parenthesis_count > 0)
545                                 --parenthesis_count;
546                         break;
547                 case '}':
548                         if(brace_count > 0)
549                                 --brace_count;
550                         break;
551                 case ']':
552                         if(bracket_count > 0)
553                                 --bracket_count;
554                         break;
555                 default:
556                         break;
557                 }
558                 next_token();
559         }
560 }
561
562 /**
563  * Eat input tokens until an anchor is found.
564  */
565 static void eat_until_anchor(void) {
566         if(token.type == T_EOF)
567                 return;
568         while(token_anchor_set[token.type] == 0) {
569                 if(token.type == '(' || token.type == '{' || token.type == '[')
570                         eat_until_matching_token(token.type);
571                 if(token.type == T_EOF)
572                         break;
573                 next_token();
574         }
575 }
576
577 static void eat_block(void) {
578         eat_until_matching_token('{');
579         if(token.type == '}')
580                 next_token();
581 }
582
583 /**
584  * eat all token until a ';' is reached or a stop token is found.
585  */
586 static void eat_statement(void) {
587         eat_until_matching_token(';');
588         if(token.type == ';')
589                 next_token();
590 }
591
592 #define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
593
594 /**
595  * Report a parse error because an expected token was not found.
596  */
597 static
598 #if defined __GNUC__ && __GNUC__ >= 4
599 __attribute__((sentinel))
600 #endif
601 void parse_error_expected(const char *message, ...)
602 {
603         if(message != NULL) {
604                 errorf(HERE, "%s", message);
605         }
606         va_list ap;
607         va_start(ap, message);
608         errorf(HERE, "got %K, expected %#k", &token, &ap, ", ");
609         va_end(ap);
610 }
611
612 /**
613  * Report a type error.
614  */
615 static void type_error(const char *msg, const source_position_t *source_position,
616                        type_t *type)
617 {
618         errorf(source_position, "%s, but found type '%T'", msg, type);
619 }
620
621 /**
622  * Report an incompatible type.
623  */
624 static void type_error_incompatible(const char *msg,
625                 const source_position_t *source_position, type_t *type1, type_t *type2)
626 {
627         errorf(source_position, "%s, incompatible types: '%T' - '%T'",
628                msg, type1, type2);
629 }
630
631 /**
632  * Expect the the current token is the expected token.
633  * If not, generate an error, eat the current statement,
634  * and goto the end_error label.
635  */
636 #define expect(expected)                              \
637         do {                                              \
638     if(UNLIKELY(token.type != (expected))) {          \
639         parse_error_expected(NULL, (expected), NULL); \
640                 add_anchor_token(expected);                   \
641         eat_until_anchor();                           \
642         if (token.type == expected)                   \
643                 next_token();                             \
644                 rem_anchor_token(expected);                   \
645         goto end_error;                               \
646     }                                                 \
647     next_token();                                     \
648         } while(0)
649
650 static void set_scope(scope_t *new_scope)
651 {
652         if(scope != NULL) {
653                 scope->last_declaration = last_declaration;
654         }
655         scope = new_scope;
656
657         last_declaration = new_scope->last_declaration;
658 }
659
660 /**
661  * Search a symbol in a given namespace and returns its declaration or
662  * NULL if this symbol was not found.
663  */
664 static declaration_t *get_declaration(const symbol_t *const symbol,
665                                       const namespace_t namespc)
666 {
667         declaration_t *declaration = symbol->declaration;
668         for( ; declaration != NULL; declaration = declaration->symbol_next) {
669                 if(declaration->namespc == namespc)
670                         return declaration;
671         }
672
673         return NULL;
674 }
675
676 /**
677  * pushs an environment_entry on the environment stack and links the
678  * corresponding symbol to the new entry
679  */
680 static void stack_push(stack_entry_t **stack_ptr, declaration_t *declaration)
681 {
682         symbol_t    *symbol  = declaration->symbol;
683         namespace_t  namespc = (namespace_t) declaration->namespc;
684
685         /* replace/add declaration into declaration list of the symbol */
686         declaration_t *iter = symbol->declaration;
687         if (iter == NULL) {
688                 symbol->declaration = declaration;
689         } else {
690                 declaration_t *iter_last = NULL;
691                 for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
692                         /* replace an entry? */
693                         if(iter->namespc == namespc) {
694                                 if(iter_last == NULL) {
695                                         symbol->declaration = declaration;
696                                 } else {
697                                         iter_last->symbol_next = declaration;
698                                 }
699                                 declaration->symbol_next = iter->symbol_next;
700                                 break;
701                         }
702                 }
703                 if(iter == NULL) {
704                         assert(iter_last->symbol_next == NULL);
705                         iter_last->symbol_next = declaration;
706                 }
707         }
708
709         /* remember old declaration */
710         stack_entry_t entry;
711         entry.symbol          = symbol;
712         entry.old_declaration = iter;
713         entry.namespc         = (unsigned short) namespc;
714         ARR_APP1(stack_entry_t, *stack_ptr, entry);
715 }
716
717 static void environment_push(declaration_t *declaration)
718 {
719         assert(declaration->source_position.input_name != NULL);
720         assert(declaration->parent_scope != NULL);
721         stack_push(&environment_stack, declaration);
722 }
723
724 static void label_push(declaration_t *declaration)
725 {
726         declaration->parent_scope = &current_function->scope;
727         stack_push(&label_stack, declaration);
728 }
729
730 /**
731  * pops symbols from the environment stack until @p new_top is the top element
732  */
733 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
734 {
735         stack_entry_t *stack = *stack_ptr;
736         size_t         top   = ARR_LEN(stack);
737         size_t         i;
738
739         assert(new_top <= top);
740         if(new_top == top)
741                 return;
742
743         for(i = top; i > new_top; --i) {
744                 stack_entry_t *entry = &stack[i - 1];
745
746                 declaration_t *old_declaration = entry->old_declaration;
747                 symbol_t      *symbol          = entry->symbol;
748                 namespace_t    namespc         = (namespace_t)entry->namespc;
749
750                 /* replace/remove declaration */
751                 declaration_t *declaration = symbol->declaration;
752                 assert(declaration != NULL);
753                 if(declaration->namespc == namespc) {
754                         if(old_declaration == NULL) {
755                                 symbol->declaration = declaration->symbol_next;
756                         } else {
757                                 symbol->declaration = old_declaration;
758                         }
759                 } else {
760                         declaration_t *iter_last = declaration;
761                         declaration_t *iter      = declaration->symbol_next;
762                         for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
763                                 /* replace an entry? */
764                                 if(iter->namespc == namespc) {
765                                         assert(iter_last != NULL);
766                                         iter_last->symbol_next = old_declaration;
767                                         if(old_declaration != NULL) {
768                                                 old_declaration->symbol_next = iter->symbol_next;
769                                         }
770                                         break;
771                                 }
772                         }
773                         assert(iter != NULL);
774                 }
775         }
776
777         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
778 }
779
780 static void environment_pop_to(size_t new_top)
781 {
782         stack_pop_to(&environment_stack, new_top);
783 }
784
785 static void label_pop_to(size_t new_top)
786 {
787         stack_pop_to(&label_stack, new_top);
788 }
789
790
791 static int get_rank(const type_t *type)
792 {
793         assert(!is_typeref(type));
794         /* The C-standard allows promoting enums to int or unsigned int (see Â§ 7.2.2
795          * and esp. footnote 108). However we can't fold constants (yet), so we
796          * can't decide whether unsigned int is possible, while int always works.
797          * (unsigned int would be preferable when possible... for stuff like
798          *  struct { enum { ... } bla : 4; } ) */
799         if(type->kind == TYPE_ENUM)
800                 return ATOMIC_TYPE_INT;
801
802         assert(type->kind == TYPE_ATOMIC);
803         return type->atomic.akind;
804 }
805
806 static type_t *promote_integer(type_t *type)
807 {
808         if(type->kind == TYPE_BITFIELD)
809                 type = type->bitfield.base_type;
810
811         if(get_rank(type) < ATOMIC_TYPE_INT)
812                 type = type_int;
813
814         return type;
815 }
816
817 /**
818  * Create a cast expression.
819  *
820  * @param expression  the expression to cast
821  * @param dest_type   the destination type
822  */
823 static expression_t *create_cast_expression(expression_t *expression,
824                                             type_t *dest_type)
825 {
826         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST_IMPLICIT);
827
828         cast->unary.value = expression;
829         cast->base.type   = dest_type;
830
831         return cast;
832 }
833
834 /**
835  * Check if a given expression represents the 0 pointer constant.
836  */
837 static bool is_null_pointer_constant(const expression_t *expression)
838 {
839         /* skip void* cast */
840         if(expression->kind == EXPR_UNARY_CAST
841                         || expression->kind == EXPR_UNARY_CAST_IMPLICIT) {
842                 expression = expression->unary.value;
843         }
844
845         /* TODO: not correct yet, should be any constant integer expression
846          * which evaluates to 0 */
847         if (expression->kind != EXPR_CONST)
848                 return false;
849
850         type_t *const type = skip_typeref(expression->base.type);
851         if (!is_type_integer(type))
852                 return false;
853
854         return expression->conste.v.int_value == 0;
855 }
856
857 /**
858  * Create an implicit cast expression.
859  *
860  * @param expression  the expression to cast
861  * @param dest_type   the destination type
862  */
863 static expression_t *create_implicit_cast(expression_t *expression,
864                                           type_t *dest_type)
865 {
866         type_t *const source_type = expression->base.type;
867
868         if (source_type == dest_type)
869                 return expression;
870
871         return create_cast_expression(expression, dest_type);
872 }
873
874 /** Implements the rules from Â§ 6.5.16.1 */
875 static type_t *semantic_assign(type_t *orig_type_left,
876                             const expression_t *const right,
877                             const char *context,
878                             const source_position_t *source_position)
879 {
880         type_t *const orig_type_right = right->base.type;
881         type_t *const type_left       = skip_typeref(orig_type_left);
882         type_t *const type_right      = skip_typeref(orig_type_right);
883
884         if(is_type_pointer(type_left)) {
885                 if(is_null_pointer_constant(right)) {
886                         return orig_type_left;
887                 } else if(is_type_pointer(type_right)) {
888                         type_t *points_to_left
889                                 = skip_typeref(type_left->pointer.points_to);
890                         type_t *points_to_right
891                                 = skip_typeref(type_right->pointer.points_to);
892
893                         /* the left type has all qualifiers from the right type */
894                         unsigned missing_qualifiers
895                                 = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
896                         if(missing_qualifiers != 0) {
897                                 errorf(source_position,
898                                                 "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointed-to type", type_left, context, type_right, missing_qualifiers);
899                                 return orig_type_left;
900                         }
901
902                         points_to_left  = get_unqualified_type(points_to_left);
903                         points_to_right = get_unqualified_type(points_to_right);
904
905                         if (is_type_atomic(points_to_left, ATOMIC_TYPE_VOID) ||
906                                         is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)) {
907                                 return orig_type_left;
908                         }
909
910                         if (!types_compatible(points_to_left, points_to_right)) {
911                                 warningf(source_position,
912                                         "destination type '%T' in %s is incompatible with '%E' of type '%T'",
913                                         orig_type_left, context, right, orig_type_right);
914                         }
915
916                         return orig_type_left;
917                 } else if(is_type_integer(type_right)) {
918                         warningf(source_position,
919                                         "%s makes pointer '%T' from integer '%T' without a cast",
920                                         context, orig_type_left, orig_type_right);
921                         return orig_type_left;
922                 }
923         } else if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
924             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
925                 && is_type_pointer(type_right))) {
926                 return orig_type_left;
927         } else if ((is_type_compound(type_left)  && is_type_compound(type_right))
928                         || (is_type_builtin(type_left) && is_type_builtin(type_right))) {
929                 type_t *const unqual_type_left  = get_unqualified_type(type_left);
930                 type_t *const unqual_type_right = get_unqualified_type(type_right);
931                 if (types_compatible(unqual_type_left, unqual_type_right)) {
932                         return orig_type_left;
933                 }
934         } else if (is_type_integer(type_left) && is_type_pointer(type_right)) {
935                 warningf(source_position,
936                                 "%s makes integer '%T' from pointer '%T' without a cast",
937                                 context, orig_type_left, orig_type_right);
938                 return orig_type_left;
939         }
940
941         if (!is_type_valid(type_left))
942                 return type_left;
943
944         if (!is_type_valid(type_right))
945                 return orig_type_right;
946
947         return NULL;
948 }
949
950 static expression_t *parse_constant_expression(void)
951 {
952         /* start parsing at precedence 7 (conditional expression) */
953         expression_t *result = parse_sub_expression(7);
954
955         if(!is_constant_expression(result)) {
956                 errorf(&result->base.source_position,
957                        "expression '%E' is not constant\n", result);
958         }
959
960         return result;
961 }
962
963 static expression_t *parse_assignment_expression(void)
964 {
965         /* start parsing at precedence 2 (assignment expression) */
966         return parse_sub_expression(2);
967 }
968
969 static type_t *make_global_typedef(const char *name, type_t *type)
970 {
971         symbol_t *const symbol       = symbol_table_insert(name);
972
973         declaration_t *const declaration = allocate_declaration_zero();
974         declaration->namespc                = NAMESPACE_NORMAL;
975         declaration->storage_class          = STORAGE_CLASS_TYPEDEF;
976         declaration->declared_storage_class = STORAGE_CLASS_TYPEDEF;
977         declaration->type                   = type;
978         declaration->symbol                 = symbol;
979         declaration->source_position        = builtin_source_position;
980
981         record_declaration(declaration);
982
983         type_t *typedef_type               = allocate_type_zero(TYPE_TYPEDEF, &builtin_source_position);
984         typedef_type->typedeft.declaration = declaration;
985
986         return typedef_type;
987 }
988
989 static string_t parse_string_literals(void)
990 {
991         assert(token.type == T_STRING_LITERAL);
992         string_t result = token.v.string;
993
994         next_token();
995
996         while (token.type == T_STRING_LITERAL) {
997                 result = concat_strings(&result, &token.v.string);
998                 next_token();
999         }
1000
1001         return result;
1002 }
1003
1004 static const char *gnu_attribute_names[GNU_AK_LAST] = {
1005         [GNU_AK_CONST]                  = "const",
1006         [GNU_AK_VOLATILE]               = "volatile",
1007         [GNU_AK_CDECL]                  = "cdecl",
1008         [GNU_AK_STDCALL]                = "stdcall",
1009         [GNU_AK_FASTCALL]               = "fastcall",
1010         [GNU_AK_DEPRECATED]             = "deprecated",
1011         [GNU_AK_NOINLINE]               = "noinline",
1012         [GNU_AK_NORETURN]               = "noreturn",
1013         [GNU_AK_NAKED]                  = "naked",
1014         [GNU_AK_PURE]                   = "pure",
1015         [GNU_AK_ALWAYS_INLINE]          = "always_inline",
1016         [GNU_AK_MALLOC]                 = "malloc",
1017         [GNU_AK_WEAK]                   = "weak",
1018         [GNU_AK_CONSTRUCTOR]            = "constructor",
1019         [GNU_AK_DESTRUCTOR]             = "destructor",
1020         [GNU_AK_NOTHROW]                = "nothrow",
1021         [GNU_AK_TRANSPARENT_UNION]      = "transparent_union",
1022         [GNU_AK_COMMON]                 = "coommon",
1023         [GNU_AK_NOCOMMON]               = "nocommon",
1024         [GNU_AK_PACKED]                 = "packed",
1025         [GNU_AK_SHARED]                 = "shared",
1026         [GNU_AK_NOTSHARED]              = "notshared",
1027         [GNU_AK_USED]                   = "used",
1028         [GNU_AK_UNUSED]                 = "unused",
1029         [GNU_AK_NO_INSTRUMENT_FUNCTION] = "no_instrument_function",
1030         [GNU_AK_WARN_UNUSED_RESULT]     = "warn_unused_result",
1031         [GNU_AK_LONGCALL]               = "longcall",
1032         [GNU_AK_SHORTCALL]              = "shortcall",
1033         [GNU_AK_LONG_CALL]              = "long_call",
1034         [GNU_AK_SHORT_CALL]             = "short_call",
1035         [GNU_AK_FUNCTION_VECTOR]        = "function_vector",
1036         [GNU_AK_INTERRUPT]                              = "interrupt",
1037         [GNU_AK_INTERRUPT_HANDLER]      = "interrupt_handler",
1038         [GNU_AK_NMI_HANDLER]            = "nmi_handler",
1039         [GNU_AK_NESTING]                = "nesting",
1040         [GNU_AK_NEAR]                   = "near",
1041         [GNU_AK_FAR]                    = "far",
1042         [GNU_AK_SIGNAL]                 = "signal",
1043         [GNU_AK_EIGTHBIT_DATA]          = "eightbit_data",
1044         [GNU_AK_TINY_DATA]              = "tiny_data",
1045         [GNU_AK_SAVEALL]                = "saveall",
1046         [GNU_AK_FLATTEN]                = "flatten",
1047         [GNU_AK_SSEREGPARM]             = "sseregparm",
1048         [GNU_AK_EXTERNALLY_VISIBLE]     = "externally_visible",
1049         [GNU_AK_RETURN_TWICE]           = "return_twice",
1050         [GNU_AK_MAY_ALIAS]              = "may_alias",
1051         [GNU_AK_MS_STRUCT]              = "ms_struct",
1052         [GNU_AK_GCC_STRUCT]             = "gcc_struct",
1053         [GNU_AK_DLLIMPORT]              = "dllimport",
1054         [GNU_AK_DLLEXPORT]              = "dllexport",
1055         [GNU_AK_ALIGNED]                = "aligned",
1056         [GNU_AK_ALIAS]                  = "alias",
1057         [GNU_AK_SECTION]                = "section",
1058         [GNU_AK_FORMAT]                 = "format",
1059         [GNU_AK_FORMAT_ARG]             = "format_arg",
1060         [GNU_AK_WEAKREF]                = "weakref",
1061         [GNU_AK_NONNULL]                = "nonnull",
1062         [GNU_AK_TLS_MODEL]              = "tls_model",
1063         [GNU_AK_VISIBILITY]             = "visibility",
1064         [GNU_AK_REGPARM]                = "regparm",
1065         [GNU_AK_MODE]                   = "mode",
1066         [GNU_AK_MODEL]                  = "model",
1067         [GNU_AK_TRAP_EXIT]              = "trap_exit",
1068         [GNU_AK_SP_SWITCH]              = "sp_switch",
1069         [GNU_AK_SENTINEL]               = "sentinel"
1070 };
1071
1072 /**
1073  * compare two string, ignoring double underscores on the second.
1074  */
1075 static int strcmp_underscore(const char *s1, const char *s2) {
1076         if(s2[0] == '_' && s2[1] == '_') {
1077                 s2 += 2;
1078                 size_t l1 = strlen(s1);
1079                 if(l1 + 2 != strlen(s2)) {
1080                         /* not equal */
1081                         return 1;
1082                 }
1083                 return strncmp(s1, s2, l1);
1084         }
1085         return strcmp(s1, s2);
1086 }
1087
1088 /**
1089  * Allocate a new gnu temporal attribute.
1090  */
1091 static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind) {
1092         gnu_attribute_t *attribute = obstack_alloc(&temp_obst, sizeof(*attribute));
1093         attribute->kind            = kind;
1094         attribute->next            = NULL;
1095         attribute->invalid         = false;
1096         attribute->have_arguments  = false;
1097
1098         return attribute;
1099         return attribute;
1100 }
1101
1102 /**
1103  * parse one constant expression argument.
1104  */
1105 static void parse_gnu_attribute_const_arg(gnu_attribute_t *attribute) {
1106         expression_t *expression;
1107         add_anchor_token(')');
1108         expression = parse_constant_expression();
1109         rem_anchor_token(')');
1110         expect(')');
1111         (void)expression;
1112         return;
1113 end_error:
1114         attribute->invalid = true;
1115 }
1116
1117 /**
1118  * parse a list of constant expressions arguments.
1119  */
1120 static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute) {
1121         expression_t *expression;
1122         add_anchor_token(')');
1123         add_anchor_token(',');
1124         while(true){
1125                 expression = parse_constant_expression();
1126                 if(token.type != ',')
1127                         break;
1128                 next_token();
1129         }
1130         rem_anchor_token(',');
1131         rem_anchor_token(')');
1132         expect(')');
1133         (void)expression;
1134         return;
1135 end_error:
1136         attribute->invalid = true;
1137 }
1138
1139 /**
1140  * parse one string literal argument.
1141  */
1142 static void parse_gnu_attribute_string_arg(gnu_attribute_t *attribute,
1143                                            string_t *string)
1144 {
1145         add_anchor_token('(');
1146         if(token.type != T_STRING_LITERAL) {
1147                 parse_error_expected("while parsing attribute directive",
1148                                      T_STRING_LITERAL, NULL);
1149                 goto end_error;
1150         }
1151         *string = parse_string_literals();
1152         rem_anchor_token('(');
1153         expect(')');
1154         return;
1155 end_error:
1156         attribute->invalid = true;
1157 }
1158
1159 /**
1160  * parse one tls model.
1161  */
1162 static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute) {
1163         static const char *tls_models[] = {
1164                 "global-dynamic",
1165                 "local-dynamic",
1166                 "initial-exec",
1167                 "local-exec"
1168         };
1169         string_t string = { NULL, 0 };
1170         parse_gnu_attribute_string_arg(attribute, &string);
1171         if(string.begin != NULL) {
1172                 for(size_t i = 0; i < 4; ++i) {
1173                         if(strcmp(tls_models[i], string.begin) == 0) {
1174                                 attribute->u.value = i;
1175                                 return;
1176                         }
1177                 }
1178         }
1179         errorf(HERE, "'%s' is an unrecognized tls model", string.begin);
1180         attribute->invalid = true;
1181 }
1182
1183 /**
1184  * parse one tls model.
1185  */
1186 static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute) {
1187         static const char *visibilities[] = {
1188                 "default",
1189                 "protected",
1190                 "hidden",
1191                 "internal"
1192         };
1193         string_t string = { NULL, 0 };
1194         parse_gnu_attribute_string_arg(attribute, &string);
1195         if(string.begin != NULL) {
1196                 for(size_t i = 0; i < 4; ++i) {
1197                         if(strcmp(visibilities[i], string.begin) == 0) {
1198                                 attribute->u.value = i;
1199                                 return;
1200                         }
1201                 }
1202         }
1203         errorf(HERE, "'%s' is an unrecognized visibility", string.begin);
1204         attribute->invalid = true;
1205 }
1206
1207 /**
1208  * parse one (code) model.
1209  */
1210 static void parse_gnu_attribute_model_arg(gnu_attribute_t *attribute) {
1211         static const char *visibilities[] = {
1212                 "small",
1213                 "medium",
1214                 "large"
1215         };
1216         string_t string = { NULL, 0 };
1217         parse_gnu_attribute_string_arg(attribute, &string);
1218         if(string.begin != NULL) {
1219                 for(int i = 0; i < 3; ++i) {
1220                         if(strcmp(visibilities[i], string.begin) == 0) {
1221                                 attribute->u.value = i;
1222                                 return;
1223                         }
1224                 }
1225         }
1226         errorf(HERE, "'%s' is an unrecognized model", string.begin);
1227         attribute->invalid = true;
1228 }
1229
1230 static void parse_gnu_attribute_mode_arg(gnu_attribute_t *attribute)
1231 {
1232         /* TODO: find out what is allowed here... */
1233
1234         /* at least: byte, word, pointer, list of machine modes
1235          * __XXX___ is interpreted as XXX */
1236         add_anchor_token(')');
1237         expect(T_IDENTIFIER);
1238         rem_anchor_token(')');
1239         expect(')');
1240         return;
1241 end_error:
1242         attribute->invalid = true;
1243 }
1244
1245 /**
1246  * parse one interrupt argument.
1247  */
1248 static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute) {
1249         static const char *interrupts[] = {
1250                 "IRQ",
1251                 "FIQ",
1252                 "SWI",
1253                 "ABORT",
1254                 "UNDEF"
1255         };
1256         string_t string = { NULL, 0 };
1257         parse_gnu_attribute_string_arg(attribute, &string);
1258         if(string.begin != NULL) {
1259                 for(size_t i = 0; i < 5; ++i) {
1260                         if(strcmp(interrupts[i], string.begin) == 0) {
1261                                 attribute->u.value = i;
1262                                 return;
1263                         }
1264                 }
1265         }
1266         errorf(HERE, "'%s' is an interrupt", string.begin);
1267         attribute->invalid = true;
1268 }
1269
1270 /**
1271  * parse ( identifier, const expression, const expression )
1272  */
1273 static void parse_gnu_attribute_format_args(gnu_attribute_t *attribute) {
1274         static const char *format_names[] = {
1275                 "printf",
1276                 "scanf",
1277                 "strftime",
1278                 "strfmon"
1279         };
1280         int i;
1281
1282         if(token.type != T_IDENTIFIER) {
1283                 parse_error_expected("while parsing format attribute directive", T_IDENTIFIER, NULL);
1284                 goto end_error;
1285         }
1286         const char *name = token.v.symbol->string;
1287         for(i = 0; i < 4; ++i) {
1288                 if(strcmp_underscore(format_names[i], name) == 0)
1289                         break;
1290         }
1291         if(i >= 4) {
1292                 if(warning.attribute)
1293                         warningf(HERE, "'%s' is an unrecognized format function type", name);
1294         }
1295         next_token();
1296
1297         expect(',');
1298         add_anchor_token(')');
1299         add_anchor_token(',');
1300         parse_constant_expression();
1301         rem_anchor_token(',');
1302         rem_anchor_token('(');
1303
1304         expect(',');
1305         add_anchor_token(')');
1306         parse_constant_expression();
1307         rem_anchor_token('(');
1308         expect(')');
1309         return;
1310 end_error:
1311         attribute->u.value = true;
1312 }
1313
1314 /**
1315  * Parse one GNU attribute.
1316  *
1317  * Note that attribute names can be specified WITH or WITHOUT
1318  * double underscores, ie const or __const__.
1319  *
1320  * The following attributes are parsed without arguments
1321  *  const
1322  *  volatile
1323  *  cdecl
1324  *  stdcall
1325  *  fastcall
1326  *  deprecated
1327  *  noinline
1328  *  noreturn
1329  *  naked
1330  *  pure
1331  *  always_inline
1332  *  malloc
1333  *  weak
1334  *  constructor
1335  *  destructor
1336  *  nothrow
1337  *  transparent_union
1338  *  common
1339  *  nocommon
1340  *  packed
1341  *  shared
1342  *  notshared
1343  *  used
1344  *  unused
1345  *  no_instrument_function
1346  *  warn_unused_result
1347  *  longcall
1348  *  shortcall
1349  *  long_call
1350  *  short_call
1351  *  function_vector
1352  *  interrupt_handler
1353  *  nmi_handler
1354  *  nesting
1355  *  near
1356  *  far
1357  *  signal
1358  *  eightbit_data
1359  *  tiny_data
1360  *  saveall
1361  *  flatten
1362  *  sseregparm
1363  *  externally_visible
1364  *  return_twice
1365  *  may_alias
1366  *  ms_struct
1367  *  gcc_struct
1368  *  dllimport
1369  *  dllexport
1370  *
1371  * The following attributes are parsed with arguments
1372  *  aligned( const expression )
1373  *  alias( string literal )
1374  *  section( string literal )
1375  *  format( identifier, const expression, const expression )
1376  *  format_arg( const expression )
1377  *  tls_model( string literal )
1378  *  visibility( string literal )
1379  *  regparm( const expression )
1380  *  model( string leteral )
1381  *  trap_exit( const expression )
1382  *  sp_switch( string literal )
1383  *
1384  * The following attributes might have arguments
1385  *  weak_ref( string literal )
1386  *  non_null( const expression // ',' )
1387  *  interrupt( string literal )
1388  *  sentinel( constant expression )
1389  */
1390 static void parse_gnu_attribute(gnu_attribute_t **attributes)
1391 {
1392         gnu_attribute_t *head = *attributes;
1393         gnu_attribute_t *last = *attributes;
1394         gnu_attribute_t *attribute;
1395
1396         eat(T___attribute__);
1397         expect('(');
1398         expect('(');
1399
1400         if(token.type != ')') {
1401                 /* find the end of the list */
1402                 if(last != NULL) {
1403                         while(last->next != NULL)
1404                                 last = last->next;
1405                 }
1406
1407                 /* non-empty attribute list */
1408                 while(true) {
1409                         const char *name;
1410                         if(token.type == T_const) {
1411                                 name = "const";
1412                         } else if(token.type == T_volatile) {
1413                                 name = "volatile";
1414                         } else if(token.type == T_cdecl) {
1415                                 /* __attribute__((cdecl)), WITH ms mode */
1416                                 name = "cdecl";
1417                         } else if(token.type != T_IDENTIFIER) {
1418                                 parse_error_expected("while parsing GNU attribute", T_IDENTIFIER, NULL);
1419                                 break;
1420                         }
1421                         const symbol_t *sym = token.v.symbol;
1422                         name = sym->string;
1423                         next_token();
1424
1425                         int i;
1426                         for(i = 0; i < GNU_AK_LAST; ++i) {
1427                                 if(strcmp_underscore(gnu_attribute_names[i], name) == 0)
1428                                         break;
1429                         }
1430                         gnu_attribute_kind_t kind = (gnu_attribute_kind_t)i;
1431
1432                         attribute = NULL;
1433                         if(kind == GNU_AK_LAST) {
1434                                 if(warning.attribute)
1435                                         warningf(HERE, "'%s' attribute directive ignored", name);
1436
1437                                 /* skip possible arguments */
1438                                 if(token.type == '(') {
1439                                         eat_until_matching_token(')');
1440                                 }
1441                         } else {
1442                                 /* check for arguments */
1443                                 attribute = allocate_gnu_attribute(kind);
1444                                 if(token.type == '(') {
1445                                         next_token();
1446                                         if(token.type == ')') {
1447                                                 /* empty args are allowed */
1448                                                 next_token();
1449                                         } else
1450                                                 attribute->have_arguments = true;
1451                                 }
1452
1453                                 switch(kind) {
1454                                 case GNU_AK_CONST:
1455                                 case GNU_AK_VOLATILE:
1456                                 case GNU_AK_CDECL:
1457                                 case GNU_AK_STDCALL:
1458                                 case GNU_AK_FASTCALL:
1459                                 case GNU_AK_DEPRECATED:
1460                                 case GNU_AK_NOINLINE:
1461                                 case GNU_AK_NORETURN:
1462                                 case GNU_AK_NAKED:
1463                                 case GNU_AK_PURE:
1464                                 case GNU_AK_ALWAYS_INLINE:
1465                                 case GNU_AK_MALLOC:
1466                                 case GNU_AK_WEAK:
1467                                 case GNU_AK_CONSTRUCTOR:
1468                                 case GNU_AK_DESTRUCTOR:
1469                                 case GNU_AK_NOTHROW:
1470                                 case GNU_AK_TRANSPARENT_UNION:
1471                                 case GNU_AK_COMMON:
1472                                 case GNU_AK_NOCOMMON:
1473                                 case GNU_AK_PACKED:
1474                                 case GNU_AK_SHARED:
1475                                 case GNU_AK_NOTSHARED:
1476                                 case GNU_AK_USED:
1477                                 case GNU_AK_UNUSED:
1478                                 case GNU_AK_NO_INSTRUMENT_FUNCTION:
1479                                 case GNU_AK_WARN_UNUSED_RESULT:
1480                                 case GNU_AK_LONGCALL:
1481                                 case GNU_AK_SHORTCALL:
1482                                 case GNU_AK_LONG_CALL:
1483                                 case GNU_AK_SHORT_CALL:
1484                                 case GNU_AK_FUNCTION_VECTOR:
1485                                 case GNU_AK_INTERRUPT_HANDLER:
1486                                 case GNU_AK_NMI_HANDLER:
1487                                 case GNU_AK_NESTING:
1488                                 case GNU_AK_NEAR:
1489                                 case GNU_AK_FAR:
1490                                 case GNU_AK_SIGNAL:
1491                                 case GNU_AK_EIGTHBIT_DATA:
1492                                 case GNU_AK_TINY_DATA:
1493                                 case GNU_AK_SAVEALL:
1494                                 case GNU_AK_FLATTEN:
1495                                 case GNU_AK_SSEREGPARM:
1496                                 case GNU_AK_EXTERNALLY_VISIBLE:
1497                                 case GNU_AK_RETURN_TWICE:
1498                                 case GNU_AK_MAY_ALIAS:
1499                                 case GNU_AK_MS_STRUCT:
1500                                 case GNU_AK_GCC_STRUCT:
1501                                 case GNU_AK_DLLIMPORT:
1502                                 case GNU_AK_DLLEXPORT:
1503                                         if(attribute->have_arguments) {
1504                                                 /* should have no arguments */
1505                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1506                                                 eat_until_matching_token('(');
1507                                                 /* we have already consumed '(', so we stop before ')', eat it */
1508                                                 eat(')');
1509                                                 attribute->invalid = true;
1510                                         }
1511                                         break;
1512
1513                                 case GNU_AK_ALIGNED:
1514                                 case GNU_AK_FORMAT_ARG:
1515                                 case GNU_AK_REGPARM:
1516                                 case GNU_AK_TRAP_EXIT:
1517                                         if(!attribute->have_arguments) {
1518                                                 /* should have arguments */
1519                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1520                                                 attribute->invalid = true;
1521                                         } else
1522                                                 parse_gnu_attribute_const_arg(attribute);
1523                                         break;
1524                                 case GNU_AK_ALIAS:
1525                                 case GNU_AK_SECTION:
1526                                 case GNU_AK_SP_SWITCH:
1527                                         if(!attribute->have_arguments) {
1528                                                 /* should have arguments */
1529                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1530                                                 attribute->invalid = true;
1531                                         } else
1532                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1533                                         break;
1534                                 case GNU_AK_FORMAT:
1535                                         if(!attribute->have_arguments) {
1536                                                 /* should have arguments */
1537                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1538                                                 attribute->invalid = true;
1539                                         } else
1540                                                 parse_gnu_attribute_format_args(attribute);
1541                                         break;
1542                                 case GNU_AK_WEAKREF:
1543                                         /* may have one string argument */
1544                                         if(attribute->have_arguments)
1545                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1546                                         break;
1547                                 case GNU_AK_NONNULL:
1548                                         if(attribute->have_arguments)
1549                                                 parse_gnu_attribute_const_arg_list(attribute);
1550                                         break;
1551                                 case GNU_AK_TLS_MODEL:
1552                                         if(!attribute->have_arguments) {
1553                                                 /* should have arguments */
1554                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1555                                         } else
1556                                                 parse_gnu_attribute_tls_model_arg(attribute);
1557                                         break;
1558                                 case GNU_AK_VISIBILITY:
1559                                         if(!attribute->have_arguments) {
1560                                                 /* should have arguments */
1561                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1562                                         } else
1563                                                 parse_gnu_attribute_visibility_arg(attribute);
1564                                         break;
1565                                 case GNU_AK_MODEL:
1566                                         if(!attribute->have_arguments) {
1567                                                 /* should have arguments */
1568                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1569                                         } else {
1570                                                 parse_gnu_attribute_model_arg(attribute);
1571                                         }
1572                                         break;
1573                                 case GNU_AK_MODE:
1574                                         if(!attribute->have_arguments) {
1575                                                 /* should have arguments */
1576                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1577                                         } else {
1578                                                 parse_gnu_attribute_mode_arg(attribute);
1579                                         }
1580                                         break;
1581                                 case GNU_AK_INTERRUPT:
1582                                         /* may have one string argument */
1583                                         if(attribute->have_arguments)
1584                                                 parse_gnu_attribute_interrupt_arg(attribute);
1585                                         break;
1586                                 case GNU_AK_SENTINEL:
1587                                         /* may have one string argument */
1588                                         if(attribute->have_arguments)
1589                                                 parse_gnu_attribute_const_arg(attribute);
1590                                         break;
1591                                 case GNU_AK_LAST:
1592                                         /* already handled */
1593                                         break;
1594                                 }
1595                         }
1596                         if(attribute != NULL) {
1597                                 if(last != NULL) {
1598                                         last->next = attribute;
1599                                         last       = attribute;
1600                                 } else {
1601                                         head = last = attribute;
1602                                 }
1603                         }
1604
1605                         if(token.type != ',')
1606                                 break;
1607                         next_token();
1608                 }
1609         }
1610         expect(')');
1611         expect(')');
1612 end_error:
1613         *attributes = head;
1614 }
1615
1616 /**
1617  * Parse GNU attributes.
1618  */
1619 static void parse_attributes(gnu_attribute_t **attributes)
1620 {
1621         while(true) {
1622                 switch(token.type) {
1623                 case T___attribute__: {
1624                         parse_gnu_attribute(attributes);
1625                         break;
1626                 }
1627                 case T_asm:
1628                         next_token();
1629                         expect('(');
1630                         if(token.type != T_STRING_LITERAL) {
1631                                 parse_error_expected("while parsing assembler attribute",
1632                                                      T_STRING_LITERAL, NULL);
1633                                 eat_until_matching_token('(');
1634                                 break;
1635                         } else {
1636                                 parse_string_literals();
1637                         }
1638                         expect(')');
1639                         break;
1640                 default:
1641                         goto attributes_finished;
1642                 }
1643         }
1644
1645 attributes_finished:
1646 end_error:
1647         return;
1648 }
1649
1650 static designator_t *parse_designation(void)
1651 {
1652         designator_t *result = NULL;
1653         designator_t *last   = NULL;
1654
1655         while(true) {
1656                 designator_t *designator;
1657                 switch(token.type) {
1658                 case '[':
1659                         designator = allocate_ast_zero(sizeof(designator[0]));
1660                         designator->source_position = token.source_position;
1661                         next_token();
1662                         add_anchor_token(']');
1663                         designator->array_index = parse_constant_expression();
1664                         rem_anchor_token(']');
1665                         expect(']');
1666                         break;
1667                 case '.':
1668                         designator = allocate_ast_zero(sizeof(designator[0]));
1669                         designator->source_position = token.source_position;
1670                         next_token();
1671                         if(token.type != T_IDENTIFIER) {
1672                                 parse_error_expected("while parsing designator",
1673                                                      T_IDENTIFIER, NULL);
1674                                 return NULL;
1675                         }
1676                         designator->symbol = token.v.symbol;
1677                         next_token();
1678                         break;
1679                 default:
1680                         expect('=');
1681                         return result;
1682                 }
1683
1684                 assert(designator != NULL);
1685                 if(last != NULL) {
1686                         last->next = designator;
1687                 } else {
1688                         result = designator;
1689                 }
1690                 last = designator;
1691         }
1692 end_error:
1693         return NULL;
1694 }
1695
1696 static initializer_t *initializer_from_string(array_type_t *type,
1697                                               const string_t *const string)
1698 {
1699         /* TODO: check len vs. size of array type */
1700         (void) type;
1701
1702         initializer_t *initializer = allocate_initializer_zero(INITIALIZER_STRING);
1703         initializer->string.string = *string;
1704
1705         return initializer;
1706 }
1707
1708 static initializer_t *initializer_from_wide_string(array_type_t *const type,
1709                                                    wide_string_t *const string)
1710 {
1711         /* TODO: check len vs. size of array type */
1712         (void) type;
1713
1714         initializer_t *const initializer =
1715                 allocate_initializer_zero(INITIALIZER_WIDE_STRING);
1716         initializer->wide_string.string = *string;
1717
1718         return initializer;
1719 }
1720
1721 /**
1722  * Build an initializer from a given expression.
1723  */
1724 static initializer_t *initializer_from_expression(type_t *orig_type,
1725                                                   expression_t *expression)
1726 {
1727         /* TODO check that expression is a constant expression */
1728
1729         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
1730         type_t *type           = skip_typeref(orig_type);
1731         type_t *expr_type_orig = expression->base.type;
1732         type_t *expr_type      = skip_typeref(expr_type_orig);
1733         if (is_type_array(type) && expr_type->kind == TYPE_POINTER) {
1734                 array_type_t *const array_type   = &type->array;
1735                 type_t       *const element_type = skip_typeref(array_type->element_type);
1736
1737                 if (element_type->kind == TYPE_ATOMIC) {
1738                         atomic_type_kind_t akind = element_type->atomic.akind;
1739                         switch (expression->kind) {
1740                                 case EXPR_STRING_LITERAL:
1741                                         if (akind == ATOMIC_TYPE_CHAR
1742                                                         || akind == ATOMIC_TYPE_SCHAR
1743                                                         || akind == ATOMIC_TYPE_UCHAR) {
1744                                                 return initializer_from_string(array_type,
1745                                                         &expression->string.value);
1746                                         }
1747
1748                                 case EXPR_WIDE_STRING_LITERAL: {
1749                                         type_t *bare_wchar_type = skip_typeref(type_wchar_t);
1750                                         if (get_unqualified_type(element_type) == bare_wchar_type) {
1751                                                 return initializer_from_wide_string(array_type,
1752                                                         &expression->wide_string.value);
1753                                         }
1754                                 }
1755
1756                                 default:
1757                                         break;
1758                         }
1759                 }
1760         }
1761
1762         type_t *const res_type = semantic_assign(type, expression, "initializer",
1763                                                  &expression->base.source_position);
1764         if (res_type == NULL)
1765                 return NULL;
1766
1767         initializer_t *const result = allocate_initializer_zero(INITIALIZER_VALUE);
1768         result->value.value = create_implicit_cast(expression, res_type);
1769
1770         return result;
1771 }
1772
1773 /**
1774  * Checks if a given expression can be used as an constant initializer.
1775  */
1776 static bool is_initializer_constant(const expression_t *expression)
1777 {
1778         return is_constant_expression(expression)
1779                 || is_address_constant(expression);
1780 }
1781
1782 /**
1783  * Parses an scalar initializer.
1784  *
1785  * Â§ 6.7.8.11; eat {} without warning
1786  */
1787 static initializer_t *parse_scalar_initializer(type_t *type,
1788                                                bool must_be_constant)
1789 {
1790         /* there might be extra {} hierarchies */
1791         int braces = 0;
1792         while(token.type == '{') {
1793                 next_token();
1794                 if(braces == 0) {
1795                         warningf(HERE, "extra curly braces around scalar initializer");
1796                 }
1797                 braces++;
1798         }
1799
1800         expression_t *expression = parse_assignment_expression();
1801         if(must_be_constant && !is_initializer_constant(expression)) {
1802                 errorf(&expression->base.source_position,
1803                        "Initialisation expression '%E' is not constant\n",
1804                        expression);
1805         }
1806
1807         initializer_t *initializer = initializer_from_expression(type, expression);
1808
1809         if(initializer == NULL) {
1810                 errorf(&expression->base.source_position,
1811                        "expression '%E' (type '%T') doesn't match expected type '%T'",
1812                        expression, expression->base.type, type);
1813                 /* TODO */
1814                 return NULL;
1815         }
1816
1817         bool additional_warning_displayed = false;
1818         while(braces > 0) {
1819                 if(token.type == ',') {
1820                         next_token();
1821                 }
1822                 if(token.type != '}') {
1823                         if(!additional_warning_displayed) {
1824                                 warningf(HERE, "additional elements in scalar initializer");
1825                                 additional_warning_displayed = true;
1826                         }
1827                 }
1828                 eat_block();
1829                 braces--;
1830         }
1831
1832         return initializer;
1833 }
1834
1835 /**
1836  * An entry in the type path.
1837  */
1838 typedef struct type_path_entry_t type_path_entry_t;
1839 struct type_path_entry_t {
1840         type_t *type;       /**< the upper top type. restored to path->top_tye if this entry is popped. */
1841         union {
1842                 size_t         index;          /**< For array types: the current index. */
1843                 declaration_t *compound_entry; /**< For compound types: the current declaration. */
1844         } v;
1845 };
1846
1847 /**
1848  * A type path expression a position inside compound or array types.
1849  */
1850 typedef struct type_path_t type_path_t;
1851 struct type_path_t {
1852         type_path_entry_t *path;         /**< An flexible array containing the current path. */
1853         type_t            *top_type;     /**< type of the element the path points */
1854         size_t             max_index;    /**< largest index in outermost array */
1855 };
1856
1857 /**
1858  * Prints a type path for debugging.
1859  */
1860 static __attribute__((unused)) void debug_print_type_path(
1861                 const type_path_t *path)
1862 {
1863         size_t len = ARR_LEN(path->path);
1864
1865         for(size_t i = 0; i < len; ++i) {
1866                 const type_path_entry_t *entry = & path->path[i];
1867
1868                 type_t *type = skip_typeref(entry->type);
1869                 if(is_type_compound(type)) {
1870                         /* in gcc mode structs can have no members */
1871                         if(entry->v.compound_entry == NULL) {
1872                                 assert(i == len-1);
1873                                 continue;
1874                         }
1875                         fprintf(stderr, ".%s", entry->v.compound_entry->symbol->string);
1876                 } else if(is_type_array(type)) {
1877                         fprintf(stderr, "[%zd]", entry->v.index);
1878                 } else {
1879                         fprintf(stderr, "-INVALID-");
1880                 }
1881         }
1882         if(path->top_type != NULL) {
1883                 fprintf(stderr, "  (");
1884                 print_type(path->top_type);
1885                 fprintf(stderr, ")");
1886         }
1887 }
1888
1889 /**
1890  * Return the top type path entry, ie. in a path
1891  * (type).a.b returns the b.
1892  */
1893 static type_path_entry_t *get_type_path_top(const type_path_t *path)
1894 {
1895         size_t len = ARR_LEN(path->path);
1896         assert(len > 0);
1897         return &path->path[len-1];
1898 }
1899
1900 /**
1901  * Enlarge the type path by an (empty) element.
1902  */
1903 static type_path_entry_t *append_to_type_path(type_path_t *path)
1904 {
1905         size_t len = ARR_LEN(path->path);
1906         ARR_RESIZE(type_path_entry_t, path->path, len+1);
1907
1908         type_path_entry_t *result = & path->path[len];
1909         memset(result, 0, sizeof(result[0]));
1910         return result;
1911 }
1912
1913 /**
1914  * Descending into a sub-type. Enter the scope of the current
1915  * top_type.
1916  */
1917 static void descend_into_subtype(type_path_t *path)
1918 {
1919         type_t *orig_top_type = path->top_type;
1920         type_t *top_type      = skip_typeref(orig_top_type);
1921
1922         assert(is_type_compound(top_type) || is_type_array(top_type));
1923
1924         type_path_entry_t *top = append_to_type_path(path);
1925         top->type              = top_type;
1926
1927         if(is_type_compound(top_type)) {
1928                 declaration_t *declaration = top_type->compound.declaration;
1929                 declaration_t *entry       = declaration->scope.declarations;
1930                 top->v.compound_entry      = entry;
1931
1932                 if(entry != NULL) {
1933                         path->top_type         = entry->type;
1934                 } else {
1935                         path->top_type         = NULL;
1936                 }
1937         } else {
1938                 assert(is_type_array(top_type));
1939
1940                 top->v.index   = 0;
1941                 path->top_type = top_type->array.element_type;
1942         }
1943 }
1944
1945 /**
1946  * Pop an entry from the given type path, ie. returning from
1947  * (type).a.b to (type).a
1948  */
1949 static void ascend_from_subtype(type_path_t *path)
1950 {
1951         type_path_entry_t *top = get_type_path_top(path);
1952
1953         path->top_type = top->type;
1954
1955         size_t len = ARR_LEN(path->path);
1956         ARR_RESIZE(type_path_entry_t, path->path, len-1);
1957 }
1958
1959 /**
1960  * Pop entries from the given type path until the given
1961  * path level is reached.
1962  */
1963 static void ascend_to(type_path_t *path, size_t top_path_level)
1964 {
1965         size_t len = ARR_LEN(path->path);
1966
1967         while(len > top_path_level) {
1968                 ascend_from_subtype(path);
1969                 len = ARR_LEN(path->path);
1970         }
1971 }
1972
1973 static bool walk_designator(type_path_t *path, const designator_t *designator,
1974                             bool used_in_offsetof)
1975 {
1976         for( ; designator != NULL; designator = designator->next) {
1977                 type_path_entry_t *top       = get_type_path_top(path);
1978                 type_t            *orig_type = top->type;
1979
1980                 type_t *type = skip_typeref(orig_type);
1981
1982                 if(designator->symbol != NULL) {
1983                         symbol_t *symbol = designator->symbol;
1984                         if(!is_type_compound(type)) {
1985                                 if(is_type_valid(type)) {
1986                                         errorf(&designator->source_position,
1987                                                "'.%Y' designator used for non-compound type '%T'",
1988                                                symbol, orig_type);
1989                                 }
1990                                 goto failed;
1991                         }
1992
1993                         declaration_t *declaration = type->compound.declaration;
1994                         declaration_t *iter        = declaration->scope.declarations;
1995                         for( ; iter != NULL; iter = iter->next) {
1996                                 if(iter->symbol == symbol) {
1997                                         break;
1998                                 }
1999                         }
2000                         if(iter == NULL) {
2001                                 errorf(&designator->source_position,
2002                                        "'%T' has no member named '%Y'", orig_type, symbol);
2003                                 goto failed;
2004                         }
2005                         if(used_in_offsetof) {
2006                                 type_t *real_type = skip_typeref(iter->type);
2007                                 if(real_type->kind == TYPE_BITFIELD) {
2008                                         errorf(&designator->source_position,
2009                                                "offsetof designator '%Y' may not specify bitfield",
2010                                                symbol);
2011                                         goto failed;
2012                                 }
2013                         }
2014
2015                         top->type             = orig_type;
2016                         top->v.compound_entry = iter;
2017                         orig_type             = iter->type;
2018                 } else {
2019                         expression_t *array_index = designator->array_index;
2020                         assert(designator->array_index != NULL);
2021
2022                         if(!is_type_array(type)) {
2023                                 if(is_type_valid(type)) {
2024                                         errorf(&designator->source_position,
2025                                                "[%E] designator used for non-array type '%T'",
2026                                                array_index, orig_type);
2027                                 }
2028                                 goto failed;
2029                         }
2030                         if(!is_type_valid(array_index->base.type)) {
2031                                 goto failed;
2032                         }
2033
2034                         long index = fold_constant(array_index);
2035                         if(!used_in_offsetof) {
2036                                 if(index < 0) {
2037                                         errorf(&designator->source_position,
2038                                                "array index [%E] must be positive", array_index);
2039                                         goto failed;
2040                                 }
2041                                 if(type->array.size_constant == true) {
2042                                         long array_size = type->array.size;
2043                                         if(index >= array_size) {
2044                                                 errorf(&designator->source_position,
2045                                                        "designator [%E] (%d) exceeds array size %d",
2046                                                        array_index, index, array_size);
2047                                                 goto failed;
2048                                         }
2049                                 }
2050                         }
2051
2052                         top->type    = orig_type;
2053                         top->v.index = (size_t) index;
2054                         orig_type    = type->array.element_type;
2055                 }
2056                 path->top_type = orig_type;
2057
2058                 if(designator->next != NULL) {
2059                         descend_into_subtype(path);
2060                 }
2061         }
2062         return true;
2063
2064 failed:
2065         return false;
2066 }
2067
2068 static void advance_current_object(type_path_t *path, size_t top_path_level)
2069 {
2070         type_path_entry_t *top = get_type_path_top(path);
2071
2072         type_t *type = skip_typeref(top->type);
2073         if(is_type_union(type)) {
2074                 /* in unions only the first element is initialized */
2075                 top->v.compound_entry = NULL;
2076         } else if(is_type_struct(type)) {
2077                 declaration_t *entry = top->v.compound_entry;
2078
2079                 entry                 = entry->next;
2080                 top->v.compound_entry = entry;
2081                 if(entry != NULL) {
2082                         path->top_type = entry->type;
2083                         return;
2084                 }
2085         } else {
2086                 assert(is_type_array(type));
2087
2088                 top->v.index++;
2089
2090                 if(!type->array.size_constant || top->v.index < type->array.size) {
2091                         return;
2092                 }
2093         }
2094
2095         /* we're past the last member of the current sub-aggregate, try if we
2096          * can ascend in the type hierarchy and continue with another subobject */
2097         size_t len = ARR_LEN(path->path);
2098
2099         if(len > top_path_level) {
2100                 ascend_from_subtype(path);
2101                 advance_current_object(path, top_path_level);
2102         } else {
2103                 path->top_type = NULL;
2104         }
2105 }
2106
2107 /**
2108  * skip until token is found.
2109  */
2110 static void skip_until(int type) {
2111         while(token.type != type) {
2112                 if(token.type == T_EOF)
2113                         return;
2114                 next_token();
2115         }
2116 }
2117
2118 /**
2119  * skip any {...} blocks until a closing bracket is reached.
2120  */
2121 static void skip_initializers(void)
2122 {
2123         if(token.type == '{')
2124                 next_token();
2125
2126         while(token.type != '}') {
2127                 if(token.type == T_EOF)
2128                         return;
2129                 if(token.type == '{') {
2130                         eat_block();
2131                         continue;
2132                 }
2133                 next_token();
2134         }
2135 }
2136
2137 static initializer_t *create_empty_initializer(void)
2138 {
2139         static initializer_t empty_initializer
2140                 = { .list = { { INITIALIZER_LIST }, 0 } };
2141         return &empty_initializer;
2142 }
2143
2144 /**
2145  * Parse a part of an initialiser for a struct or union,
2146  */
2147 static initializer_t *parse_sub_initializer(type_path_t *path,
2148                 type_t *outer_type, size_t top_path_level,
2149                 parse_initializer_env_t *env)
2150 {
2151         if(token.type == '}') {
2152                 /* empty initializer */
2153                 return create_empty_initializer();
2154         }
2155
2156         type_t *orig_type = path->top_type;
2157         type_t *type      = NULL;
2158
2159         if (orig_type == NULL) {
2160                 /* We are initializing an empty compound. */
2161         } else {
2162                 type = skip_typeref(orig_type);
2163
2164                 /* we can't do usefull stuff if we didn't even parse the type. Skip the
2165                  * initializers in this case. */
2166                 if(!is_type_valid(type)) {
2167                         skip_initializers();
2168                         return create_empty_initializer();
2169                 }
2170         }
2171
2172         initializer_t **initializers = NEW_ARR_F(initializer_t*, 0);
2173
2174         while(true) {
2175                 designator_t *designator = NULL;
2176                 if(token.type == '.' || token.type == '[') {
2177                         designator = parse_designation();
2178
2179                         /* reset path to toplevel, evaluate designator from there */
2180                         ascend_to(path, top_path_level);
2181                         if(!walk_designator(path, designator, false)) {
2182                                 /* can't continue after designation error */
2183                                 goto end_error;
2184                         }
2185
2186                         initializer_t *designator_initializer
2187                                 = allocate_initializer_zero(INITIALIZER_DESIGNATOR);
2188                         designator_initializer->designator.designator = designator;
2189                         ARR_APP1(initializer_t*, initializers, designator_initializer);
2190                 }
2191
2192                 initializer_t *sub;
2193
2194                 if(token.type == '{') {
2195                         if(type != NULL && is_type_scalar(type)) {
2196                                 sub = parse_scalar_initializer(type, env->must_be_constant);
2197                         } else {
2198                                 eat('{');
2199                                 if(type == NULL) {
2200                                         if (env->declaration != NULL)
2201                                                 errorf(HERE, "extra brace group at end of initializer for '%Y'",
2202                                                 env->declaration->symbol);
2203                                 else
2204                                                 errorf(HERE, "extra brace group at end of initializer");
2205                                 } else
2206                                         descend_into_subtype(path);
2207
2208                                 add_anchor_token('}');
2209                                 sub = parse_sub_initializer(path, orig_type, top_path_level+1,
2210                                                             env);
2211                                 rem_anchor_token('}');
2212
2213                                 if(type != NULL) {
2214                                         ascend_from_subtype(path);
2215                                         expect('}');
2216                                 } else {
2217                                         expect('}');
2218                                         goto error_parse_next;
2219                                 }
2220                         }
2221                 } else {
2222                         /* must be an expression */
2223                         expression_t *expression = parse_assignment_expression();
2224
2225                         if(env->must_be_constant && !is_initializer_constant(expression)) {
2226                                 errorf(&expression->base.source_position,
2227                                        "Initialisation expression '%E' is not constant\n",
2228                                        expression);
2229                         }
2230
2231                         if(type == NULL) {
2232                                 /* we are already outside, ... */
2233                                 goto error_excess;
2234                         }
2235
2236                         /* handle { "string" } special case */
2237                         if((expression->kind == EXPR_STRING_LITERAL
2238                                         || expression->kind == EXPR_WIDE_STRING_LITERAL)
2239                                         && outer_type != NULL) {
2240                                 sub = initializer_from_expression(outer_type, expression);
2241                                 if(sub != NULL) {
2242                                         if(token.type == ',') {
2243                                                 next_token();
2244                                         }
2245                                         if(token.type != '}') {
2246                                                 warningf(HERE, "excessive elements in initializer for type '%T'",
2247                                                                  orig_type);
2248                                         }
2249                                         /* TODO: eat , ... */
2250                                         return sub;
2251                                 }
2252                         }
2253
2254                         /* descend into subtypes until expression matches type */
2255                         while(true) {
2256                                 orig_type = path->top_type;
2257                                 type      = skip_typeref(orig_type);
2258
2259                                 sub = initializer_from_expression(orig_type, expression);
2260                                 if(sub != NULL) {
2261                                         break;
2262                                 }
2263                                 if(!is_type_valid(type)) {
2264                                         goto end_error;
2265                                 }
2266                                 if(is_type_scalar(type)) {
2267                                         errorf(&expression->base.source_position,
2268                                                         "expression '%E' doesn't match expected type '%T'",
2269                                                         expression, orig_type);
2270                                         goto end_error;
2271                                 }
2272
2273                                 descend_into_subtype(path);
2274                         }
2275                 }
2276
2277                 /* update largest index of top array */
2278                 const type_path_entry_t *first      = &path->path[0];
2279                 type_t                  *first_type = first->type;
2280                 first_type                          = skip_typeref(first_type);
2281                 if(is_type_array(first_type)) {
2282                         size_t index = first->v.index;
2283                         if(index > path->max_index)
2284                                 path->max_index = index;
2285                 }
2286
2287                 if(type != NULL) {
2288                         /* append to initializers list */
2289                         ARR_APP1(initializer_t*, initializers, sub);
2290                 } else {
2291 error_excess:
2292                         if(env->declaration != NULL)
2293                                 warningf(HERE, "excess elements in struct initializer for '%Y'",
2294                                  env->declaration->symbol);
2295                         else
2296                                 warningf(HERE, "excess elements in struct initializer");
2297                 }
2298
2299 error_parse_next:
2300                 if(token.type == '}') {
2301                         break;
2302                 }
2303                 expect(',');
2304                 if(token.type == '}') {
2305                         break;
2306                 }
2307
2308                 if(type != NULL) {
2309                         /* advance to the next declaration if we are not at the end */
2310                         advance_current_object(path, top_path_level);
2311                         orig_type = path->top_type;
2312                         if(orig_type != NULL)
2313                                 type = skip_typeref(orig_type);
2314                         else
2315                                 type = NULL;
2316                 }
2317         }
2318
2319         size_t len  = ARR_LEN(initializers);
2320         size_t size = sizeof(initializer_list_t) + len * sizeof(initializers[0]);
2321         initializer_t *result = allocate_ast_zero(size);
2322         result->kind          = INITIALIZER_LIST;
2323         result->list.len      = len;
2324         memcpy(&result->list.initializers, initializers,
2325                len * sizeof(initializers[0]));
2326
2327         DEL_ARR_F(initializers);
2328         ascend_to(path, top_path_level);
2329
2330         return result;
2331
2332 end_error:
2333         skip_initializers();
2334         DEL_ARR_F(initializers);
2335         ascend_to(path, top_path_level);
2336         return NULL;
2337 }
2338
2339 /**
2340  * Parses an initializer. Parsers either a compound literal
2341  * (env->declaration == NULL) or an initializer of a declaration.
2342  */
2343 static initializer_t *parse_initializer(parse_initializer_env_t *env)
2344 {
2345         type_t        *type   = skip_typeref(env->type);
2346         initializer_t *result = NULL;
2347         size_t         max_index;
2348
2349         if(is_type_scalar(type)) {
2350                 result = parse_scalar_initializer(type, env->must_be_constant);
2351         } else if(token.type == '{') {
2352                 eat('{');
2353
2354                 type_path_t path;
2355                 memset(&path, 0, sizeof(path));
2356                 path.top_type = env->type;
2357                 path.path     = NEW_ARR_F(type_path_entry_t, 0);
2358
2359                 descend_into_subtype(&path);
2360
2361                 add_anchor_token('}');
2362                 result = parse_sub_initializer(&path, env->type, 1, env);
2363                 rem_anchor_token('}');
2364
2365                 max_index = path.max_index;
2366                 DEL_ARR_F(path.path);
2367
2368                 expect('}');
2369         } else {
2370                 /* parse_scalar_initializer() also works in this case: we simply
2371                  * have an expression without {} around it */
2372                 result = parse_scalar_initializer(type, env->must_be_constant);
2373         }
2374
2375         /* Â§ 6.7.5 (22)  array initializers for arrays with unknown size determine
2376          * the array type size */
2377         if(is_type_array(type) && type->array.size_expression == NULL
2378                         && result != NULL) {
2379                 size_t size;
2380                 switch (result->kind) {
2381                 case INITIALIZER_LIST:
2382                         size = max_index + 1;
2383                         break;
2384
2385                 case INITIALIZER_STRING:
2386                         size = result->string.string.size;
2387                         break;
2388
2389                 case INITIALIZER_WIDE_STRING:
2390                         size = result->wide_string.string.size;
2391                         break;
2392
2393                 default:
2394                         internal_errorf(HERE, "invalid initializer type");
2395                 }
2396
2397                 expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
2398                 cnst->base.type          = type_size_t;
2399                 cnst->conste.v.int_value = size;
2400
2401                 type_t *new_type = duplicate_type(type);
2402
2403                 new_type->array.size_expression = cnst;
2404                 new_type->array.size_constant   = true;
2405                 new_type->array.size            = size;
2406                 env->type = new_type;
2407         }
2408
2409         return result;
2410 end_error:
2411         return NULL;
2412 }
2413
2414 static declaration_t *append_declaration(declaration_t *declaration);
2415
2416 static declaration_t *parse_compound_type_specifier(bool is_struct)
2417 {
2418         gnu_attribute_t *attributes = NULL;
2419         if(is_struct) {
2420                 eat(T_struct);
2421         } else {
2422                 eat(T_union);
2423         }
2424
2425         symbol_t      *symbol      = NULL;
2426         declaration_t *declaration = NULL;
2427
2428         if (token.type == T___attribute__) {
2429                 parse_attributes(&attributes);
2430         }
2431
2432         if(token.type == T_IDENTIFIER) {
2433                 symbol = token.v.symbol;
2434                 next_token();
2435
2436                 if(is_struct) {
2437                         declaration = get_declaration(symbol, NAMESPACE_STRUCT);
2438                 } else {
2439                         declaration = get_declaration(symbol, NAMESPACE_UNION);
2440                 }
2441         } else if(token.type != '{') {
2442                 if(is_struct) {
2443                         parse_error_expected("while parsing struct type specifier",
2444                                              T_IDENTIFIER, '{', NULL);
2445                 } else {
2446                         parse_error_expected("while parsing union type specifier",
2447                                              T_IDENTIFIER, '{', NULL);
2448                 }
2449
2450                 return NULL;
2451         }
2452
2453         if(declaration == NULL) {
2454                 declaration = allocate_declaration_zero();
2455                 declaration->namespc         =
2456                         (is_struct ? NAMESPACE_STRUCT : NAMESPACE_UNION);
2457                 declaration->source_position = token.source_position;
2458                 declaration->symbol          = symbol;
2459                 declaration->parent_scope    = scope;
2460                 if (symbol != NULL) {
2461                         environment_push(declaration);
2462                 }
2463                 append_declaration(declaration);
2464         }
2465
2466         if(token.type == '{') {
2467                 if (declaration->init.complete) {
2468                         assert(symbol != NULL);
2469                         errorf(HERE, "multiple definitions of '%s %Y'",
2470                                is_struct ? "struct" : "union", symbol);
2471                         declaration->scope.declarations = NULL;
2472                 }
2473                 declaration->init.complete = true;
2474
2475                 parse_compound_type_entries(declaration);
2476                 parse_attributes(&attributes);
2477         }
2478
2479         return declaration;
2480 }
2481
2482 static void parse_enum_entries(type_t *const enum_type)
2483 {
2484         eat('{');
2485
2486         if(token.type == '}') {
2487                 next_token();
2488                 errorf(HERE, "empty enum not allowed");
2489                 return;
2490         }
2491
2492         add_anchor_token('}');
2493         do {
2494                 if(token.type != T_IDENTIFIER) {
2495                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, NULL);
2496                         eat_block();
2497                         rem_anchor_token('}');
2498                         return;
2499                 }
2500
2501                 declaration_t *const entry = allocate_declaration_zero();
2502                 entry->storage_class   = STORAGE_CLASS_ENUM_ENTRY;
2503                 entry->type            = enum_type;
2504                 entry->symbol          = token.v.symbol;
2505                 entry->source_position = token.source_position;
2506                 next_token();
2507
2508                 if(token.type == '=') {
2509                         next_token();
2510                         expression_t *value = parse_constant_expression();
2511
2512                         value = create_implicit_cast(value, enum_type);
2513                         entry->init.enum_value = value;
2514
2515                         /* TODO semantic */
2516                 }
2517
2518                 record_declaration(entry);
2519
2520                 if(token.type != ',')
2521                         break;
2522                 next_token();
2523         } while(token.type != '}');
2524         rem_anchor_token('}');
2525
2526         expect('}');
2527
2528 end_error:
2529         ;
2530 }
2531
2532 static type_t *parse_enum_specifier(void)
2533 {
2534         gnu_attribute_t *attributes = NULL;
2535         declaration_t   *declaration;
2536         symbol_t        *symbol;
2537
2538         eat(T_enum);
2539         if(token.type == T_IDENTIFIER) {
2540                 symbol = token.v.symbol;
2541                 next_token();
2542
2543                 declaration = get_declaration(symbol, NAMESPACE_ENUM);
2544         } else if(token.type != '{') {
2545                 parse_error_expected("while parsing enum type specifier",
2546                                      T_IDENTIFIER, '{', NULL);
2547                 return NULL;
2548         } else {
2549                 declaration = NULL;
2550                 symbol      = NULL;
2551         }
2552
2553         if(declaration == NULL) {
2554                 declaration = allocate_declaration_zero();
2555                 declaration->namespc         = NAMESPACE_ENUM;
2556                 declaration->source_position = token.source_position;
2557                 declaration->symbol          = symbol;
2558                 declaration->parent_scope  = scope;
2559         }
2560
2561         type_t *const type      = allocate_type_zero(TYPE_ENUM, &declaration->source_position);
2562         type->enumt.declaration = declaration;
2563
2564         if(token.type == '{') {
2565                 if(declaration->init.complete) {
2566                         errorf(HERE, "multiple definitions of enum %Y", symbol);
2567                 }
2568                 if (symbol != NULL) {
2569                         environment_push(declaration);
2570                 }
2571                 append_declaration(declaration);
2572                 declaration->init.complete = true;
2573
2574                 parse_enum_entries(type);
2575                 parse_attributes(&attributes);
2576         }
2577
2578         return type;
2579 }
2580
2581 /**
2582  * if a symbol is a typedef to another type, return true
2583  */
2584 static bool is_typedef_symbol(symbol_t *symbol)
2585 {
2586         const declaration_t *const declaration =
2587                 get_declaration(symbol, NAMESPACE_NORMAL);
2588         return
2589                 declaration != NULL &&
2590                 declaration->storage_class == STORAGE_CLASS_TYPEDEF;
2591 }
2592
2593 static type_t *parse_typeof(void)
2594 {
2595         eat(T___typeof__);
2596
2597         type_t *type;
2598
2599         expect('(');
2600         add_anchor_token(')');
2601
2602         expression_t *expression  = NULL;
2603
2604 restart:
2605         switch(token.type) {
2606         case T___extension__:
2607                 /* this can be a prefix to a typename or an expression */
2608                 /* we simply eat it now. */
2609                 do {
2610                         next_token();
2611                 } while(token.type == T___extension__);
2612                 goto restart;
2613
2614         case T_IDENTIFIER:
2615                 if(is_typedef_symbol(token.v.symbol)) {
2616                         type = parse_typename();
2617                 } else {
2618                         expression = parse_expression();
2619                         type       = expression->base.type;
2620                 }
2621                 break;
2622
2623         TYPENAME_START
2624                 type = parse_typename();
2625                 break;
2626
2627         default:
2628                 expression = parse_expression();
2629                 type       = expression->base.type;
2630                 break;
2631         }
2632
2633         rem_anchor_token(')');
2634         expect(')');
2635
2636         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF, &expression->base.source_position);
2637         typeof_type->typeoft.expression  = expression;
2638         typeof_type->typeoft.typeof_type = type;
2639
2640         return typeof_type;
2641 end_error:
2642         return NULL;
2643 }
2644
2645 typedef enum {
2646         SPECIFIER_SIGNED    = 1 << 0,
2647         SPECIFIER_UNSIGNED  = 1 << 1,
2648         SPECIFIER_LONG      = 1 << 2,
2649         SPECIFIER_INT       = 1 << 3,
2650         SPECIFIER_DOUBLE    = 1 << 4,
2651         SPECIFIER_CHAR      = 1 << 5,
2652         SPECIFIER_SHORT     = 1 << 6,
2653         SPECIFIER_LONG_LONG = 1 << 7,
2654         SPECIFIER_FLOAT     = 1 << 8,
2655         SPECIFIER_BOOL      = 1 << 9,
2656         SPECIFIER_VOID      = 1 << 10,
2657         SPECIFIER_INT8      = 1 << 11,
2658         SPECIFIER_INT16     = 1 << 12,
2659         SPECIFIER_INT32     = 1 << 13,
2660         SPECIFIER_INT64     = 1 << 14,
2661         SPECIFIER_INT128    = 1 << 15,
2662         SPECIFIER_COMPLEX   = 1 << 16,
2663         SPECIFIER_IMAGINARY = 1 << 17,
2664 } specifiers_t;
2665
2666 static type_t *create_builtin_type(symbol_t *const symbol,
2667                                    type_t *const real_type)
2668 {
2669         type_t *type            = allocate_type_zero(TYPE_BUILTIN, &builtin_source_position);
2670         type->builtin.symbol    = symbol;
2671         type->builtin.real_type = real_type;
2672
2673         type_t *result = typehash_insert(type);
2674         if(type != result) {
2675                 free_type(type);
2676         }
2677
2678         return result;
2679 }
2680
2681 static type_t *get_typedef_type(symbol_t *symbol)
2682 {
2683         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
2684         if(declaration == NULL ||
2685            declaration->storage_class != STORAGE_CLASS_TYPEDEF)
2686                 return NULL;
2687
2688         type_t *type               = allocate_type_zero(TYPE_TYPEDEF, &declaration->source_position);
2689         type->typedeft.declaration = declaration;
2690
2691         return type;
2692 }
2693
2694 /**
2695  * check for the allowed MS alignment values.
2696  */
2697 static bool check_elignment_value(long long intvalue) {
2698         if(intvalue < 1 || intvalue > 8192) {
2699                 errorf(HERE, "illegal alignment value");
2700                 return false;
2701         }
2702         unsigned v = (unsigned)intvalue;
2703         for(unsigned i = 1; i <= 8192; i += i) {
2704                 if (i == v)
2705                         return true;
2706         }
2707         errorf(HERE, "alignment must be power of two");
2708         return false;
2709 }
2710
2711 #define DET_MOD(name, tag) do { \
2712         if(*modifiers & tag) warningf(HERE, #name " used more than once"); \
2713         *modifiers |= tag; \
2714 } while(0)
2715
2716 static void parse_microsoft_extended_decl_modifier(declaration_specifiers_t *specifiers)
2717 {
2718         decl_modifiers_t *modifiers = &specifiers->decl_modifiers;
2719
2720         while(true) {
2721                 if(token.type == T_restrict) {
2722                         next_token();
2723                         DET_MOD(restrict, DM_RESTRICT);
2724                         goto end_loop;
2725                 } else if(token.type != T_IDENTIFIER)
2726                         break;
2727                 symbol_t *symbol = token.v.symbol;
2728                 if(symbol == sym_align) {
2729                         next_token();
2730                         expect('(');
2731                         if(token.type != T_INTEGER)
2732                                 goto end_error;
2733                         if(check_elignment_value(token.v.intvalue)) {
2734                                 if(specifiers->alignment != 0)
2735                                         warningf(HERE, "align used more than once");
2736                                 specifiers->alignment = (unsigned char)token.v.intvalue;
2737                         }
2738                         next_token();
2739                         expect(')');
2740                 } else if(symbol == sym_allocate) {
2741                         next_token();
2742                         expect('(');
2743                         if(token.type != T_IDENTIFIER)
2744                                 goto end_error;
2745                         (void)token.v.symbol;
2746                         expect(')');
2747                 } else if(symbol == sym_dllimport) {
2748                         next_token();
2749                         DET_MOD(dllimport, DM_DLLIMPORT);
2750                 } else if(symbol == sym_dllexport) {
2751                         next_token();
2752                         DET_MOD(dllexport, DM_DLLEXPORT);
2753                 } else if(symbol == sym_thread) {
2754                         next_token();
2755                         DET_MOD(thread, DM_THREAD);
2756                 } else if(symbol == sym_naked) {
2757                         next_token();
2758                         DET_MOD(naked, DM_NAKED);
2759                 } else if(symbol == sym_noinline) {
2760                         next_token();
2761                         DET_MOD(noinline, DM_NOINLINE);
2762                 } else if(symbol == sym_noreturn) {
2763                         next_token();
2764                         DET_MOD(noreturn, DM_NORETURN);
2765                 } else if(symbol == sym_nothrow) {
2766                         next_token();
2767                         DET_MOD(nothrow, DM_NOTHROW);
2768                 } else if(symbol == sym_novtable) {
2769                         next_token();
2770                         DET_MOD(novtable, DM_NOVTABLE);
2771                 } else if(symbol == sym_property) {
2772                         next_token();
2773                         expect('(');
2774                         for(;;) {
2775                                 bool is_get = false;
2776                                 if(token.type != T_IDENTIFIER)
2777                                         goto end_error;
2778                                 if(token.v.symbol == sym_get) {
2779                                         is_get = true;
2780                                 } else if(token.v.symbol == sym_put) {
2781                                 } else {
2782                                         errorf(HERE, "Bad property name '%Y'", token.v.symbol);
2783                                         goto end_error;
2784                                 }
2785                                 next_token();
2786                                 expect('=');
2787                                 if(token.type != T_IDENTIFIER)
2788                                         goto end_error;
2789                                 if(is_get) {
2790                                         if(specifiers->get_property_sym != NULL) {
2791                                                 errorf(HERE, "get property name already specified");
2792                                         } else {
2793                                                 specifiers->get_property_sym = token.v.symbol;
2794                                         }
2795                                 } else {
2796                                         if(specifiers->put_property_sym != NULL) {
2797                                                 errorf(HERE, "put property name already specified");
2798                                         } else {
2799                                                 specifiers->put_property_sym = token.v.symbol;
2800                                         }
2801                                 }
2802                                 next_token();
2803                                 if(token.type == ',') {
2804                                         next_token();
2805                                         continue;
2806                                 }
2807                                 break;
2808                         }
2809                         expect(')');
2810                 } else if(symbol == sym_selectany) {
2811                         next_token();
2812                         DET_MOD(selectany, DM_SELECTANY);
2813                 } else if(symbol == sym_uuid) {
2814                         next_token();
2815                         expect('(');
2816                         if(token.type != T_STRING_LITERAL)
2817                                 goto end_error;
2818                         next_token();
2819                         expect(')');
2820                 } else if(symbol == sym_deprecated) {
2821                         next_token();
2822                         if(specifiers->deprecated != 0)
2823                                 warningf(HERE, "deprecated used more than once");
2824                         specifiers->deprecated = 1;
2825                         if(token.type == '(') {
2826                                 next_token();
2827                                 if(token.type == T_STRING_LITERAL) {
2828                                         specifiers->deprecated_string = token.v.string.begin;
2829                                         next_token();
2830                                 } else {
2831                                         errorf(HERE, "string literal expected");
2832                                 }
2833                                 expect(')');
2834                         }
2835                 } else if(symbol == sym_noalias) {
2836                         next_token();
2837                         DET_MOD(noalias, DM_NOALIAS);
2838                 } else {
2839                         warningf(HERE, "Unknown modifier %Y ignored", token.v.symbol);
2840                         next_token();
2841                         if(token.type == '(')
2842                                 skip_until(')');
2843                 }
2844 end_loop:
2845                 if (token.type == ',')
2846                         next_token();
2847         }
2848 end_error:
2849         return;
2850 }
2851
2852 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
2853 {
2854         type_t   *type            = NULL;
2855         unsigned  type_qualifiers = 0;
2856         unsigned  type_specifiers = 0;
2857         int       newtype         = 0;
2858
2859         specifiers->source_position = token.source_position;
2860
2861         while(true) {
2862                 switch(token.type) {
2863
2864                 /* storage class */
2865 #define MATCH_STORAGE_CLASS(token, class)                                  \
2866                 case token:                                                        \
2867                         if(specifiers->declared_storage_class != STORAGE_CLASS_NONE) { \
2868                                 errorf(HERE, "multiple storage classes in declaration specifiers"); \
2869                         }                                                              \
2870                         specifiers->declared_storage_class = class;                    \
2871                         next_token();                                                  \
2872                         break;
2873
2874                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
2875                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
2876                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
2877                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
2878                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
2879
2880                 case T__declspec:
2881                         next_token();
2882                         expect('(');
2883                         add_anchor_token(')');
2884                         parse_microsoft_extended_decl_modifier(specifiers);
2885                         rem_anchor_token(')');
2886                         expect(')');
2887                         break;
2888
2889                 case T___thread:
2890                         switch (specifiers->declared_storage_class) {
2891                         case STORAGE_CLASS_NONE:
2892                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD;
2893                                 break;
2894
2895                         case STORAGE_CLASS_EXTERN:
2896                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_EXTERN;
2897                                 break;
2898
2899                         case STORAGE_CLASS_STATIC:
2900                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_STATIC;
2901                                 break;
2902
2903                         default:
2904                                 errorf(HERE, "multiple storage classes in declaration specifiers");
2905                                 break;
2906                         }
2907                         next_token();
2908                         break;
2909
2910                 /* type qualifiers */
2911 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
2912                 case token:                                                     \
2913                         type_qualifiers |= qualifier;                               \
2914                         next_token();                                               \
2915                         break;
2916
2917                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
2918                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
2919                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
2920                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
2921                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
2922                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
2923                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
2924                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
2925
2926                 case T___extension__:
2927                         /* TODO */
2928                         next_token();
2929                         break;
2930
2931                 /* type specifiers */
2932 #define MATCH_SPECIFIER(token, specifier, name)                         \
2933                 case token:                                                     \
2934                         next_token();                                               \
2935                         if(type_specifiers & specifier) {                           \
2936                                 errorf(HERE, "multiple " name " type specifiers given"); \
2937                         } else {                                                    \
2938                                 type_specifiers |= specifier;                           \
2939                         }                                                           \
2940                         break;
2941
2942                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
2943                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
2944                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
2945                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
2946                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
2947                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
2948                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
2949                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
2950                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
2951                 MATCH_SPECIFIER(T__int8,      SPECIFIER_INT8,      "_int8")
2952                 MATCH_SPECIFIER(T__int16,     SPECIFIER_INT16,     "_int16")
2953                 MATCH_SPECIFIER(T__int32,     SPECIFIER_INT32,     "_int32")
2954                 MATCH_SPECIFIER(T__int64,     SPECIFIER_INT64,     "_int64")
2955                 MATCH_SPECIFIER(T__int128,    SPECIFIER_INT128,    "_int128")
2956                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
2957                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
2958
2959                 case T__forceinline:
2960                         /* only in microsoft mode */
2961                         specifiers->decl_modifiers |= DM_FORCEINLINE;
2962
2963                 case T_inline:
2964                         next_token();
2965                         specifiers->is_inline = true;
2966                         break;
2967
2968                 case T_long:
2969                         next_token();
2970                         if(type_specifiers & SPECIFIER_LONG_LONG) {
2971                                 errorf(HERE, "multiple type specifiers given");
2972                         } else if(type_specifiers & SPECIFIER_LONG) {
2973                                 type_specifiers |= SPECIFIER_LONG_LONG;
2974                         } else {
2975                                 type_specifiers |= SPECIFIER_LONG;
2976                         }
2977                         break;
2978
2979                 case T_struct: {
2980                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT, HERE);
2981
2982                         type->compound.declaration = parse_compound_type_specifier(true);
2983                         break;
2984                 }
2985                 case T_union: {
2986                         type = allocate_type_zero(TYPE_COMPOUND_UNION, HERE);
2987
2988                         type->compound.declaration = parse_compound_type_specifier(false);
2989                         break;
2990                 }
2991                 case T_enum:
2992                         type = parse_enum_specifier();
2993                         break;
2994                 case T___typeof__:
2995                         type = parse_typeof();
2996                         break;
2997                 case T___builtin_va_list:
2998                         type = duplicate_type(type_valist);
2999                         next_token();
3000                         break;
3001
3002                 case T___attribute__:
3003                         parse_attributes(&specifiers->gnu_attributes);
3004                         break;
3005
3006                 case T_IDENTIFIER: {
3007                         /* only parse identifier if we haven't found a type yet */
3008                         if(type != NULL || type_specifiers != 0)
3009                                 goto finish_specifiers;
3010
3011                         type_t *typedef_type = get_typedef_type(token.v.symbol);
3012
3013                         if(typedef_type == NULL)
3014                                 goto finish_specifiers;
3015
3016                         next_token();
3017                         type = typedef_type;
3018                         break;
3019                 }
3020
3021                 /* function specifier */
3022                 default:
3023                         goto finish_specifiers;
3024                 }
3025         }
3026
3027 finish_specifiers:
3028
3029         if(type == NULL) {
3030                 atomic_type_kind_t atomic_type;
3031
3032                 /* match valid basic types */
3033                 switch(type_specifiers) {
3034                 case SPECIFIER_VOID:
3035                         atomic_type = ATOMIC_TYPE_VOID;
3036                         break;
3037                 case SPECIFIER_CHAR:
3038                         atomic_type = ATOMIC_TYPE_CHAR;
3039                         break;
3040                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
3041                         atomic_type = ATOMIC_TYPE_SCHAR;
3042                         break;
3043                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
3044                         atomic_type = ATOMIC_TYPE_UCHAR;
3045                         break;
3046                 case SPECIFIER_SHORT:
3047                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
3048                 case SPECIFIER_SHORT | SPECIFIER_INT:
3049                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3050                         atomic_type = ATOMIC_TYPE_SHORT;
3051                         break;
3052                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
3053                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3054                         atomic_type = ATOMIC_TYPE_USHORT;
3055                         break;
3056                 case SPECIFIER_INT:
3057                 case SPECIFIER_SIGNED:
3058                 case SPECIFIER_SIGNED | SPECIFIER_INT:
3059                         atomic_type = ATOMIC_TYPE_INT;
3060                         break;
3061                 case SPECIFIER_UNSIGNED:
3062                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
3063                         atomic_type = ATOMIC_TYPE_UINT;
3064                         break;
3065                 case SPECIFIER_LONG:
3066                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
3067                 case SPECIFIER_LONG | SPECIFIER_INT:
3068                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3069                         atomic_type = ATOMIC_TYPE_LONG;
3070                         break;
3071                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
3072                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3073                         atomic_type = ATOMIC_TYPE_ULONG;
3074                         break;
3075                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3076                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3077                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
3078                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3079                         | SPECIFIER_INT:
3080                         atomic_type = ATOMIC_TYPE_LONGLONG;
3081                         break;
3082                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3083                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3084                         | SPECIFIER_INT:
3085                         atomic_type = ATOMIC_TYPE_ULONGLONG;
3086                         break;
3087
3088                 case SPECIFIER_UNSIGNED | SPECIFIER_INT8:
3089                         atomic_type = unsigned_int8_type_kind;
3090                         break;
3091
3092                 case SPECIFIER_UNSIGNED | SPECIFIER_INT16:
3093                         atomic_type = unsigned_int16_type_kind;
3094                         break;
3095
3096                 case SPECIFIER_UNSIGNED | SPECIFIER_INT32:
3097                         atomic_type = unsigned_int32_type_kind;
3098                         break;
3099
3100                 case SPECIFIER_UNSIGNED | SPECIFIER_INT64:
3101                         atomic_type = unsigned_int64_type_kind;
3102                         break;
3103
3104                 case SPECIFIER_UNSIGNED | SPECIFIER_INT128:
3105                         atomic_type = unsigned_int128_type_kind;
3106                         break;
3107
3108                 case SPECIFIER_INT8:
3109                 case SPECIFIER_SIGNED | SPECIFIER_INT8:
3110                         atomic_type = int8_type_kind;
3111                         break;
3112
3113                 case SPECIFIER_INT16:
3114                 case SPECIFIER_SIGNED | SPECIFIER_INT16:
3115                         atomic_type = int16_type_kind;
3116                         break;
3117
3118                 case SPECIFIER_INT32:
3119                 case SPECIFIER_SIGNED | SPECIFIER_INT32:
3120                         atomic_type = int32_type_kind;
3121                         break;
3122
3123                 case SPECIFIER_INT64:
3124                 case SPECIFIER_SIGNED | SPECIFIER_INT64:
3125                         atomic_type = int64_type_kind;
3126                         break;
3127
3128                 case SPECIFIER_INT128:
3129                 case SPECIFIER_SIGNED | SPECIFIER_INT128:
3130                         atomic_type = int128_type_kind;
3131                         break;
3132
3133                 case SPECIFIER_FLOAT:
3134                         atomic_type = ATOMIC_TYPE_FLOAT;
3135                         break;
3136                 case SPECIFIER_DOUBLE:
3137                         atomic_type = ATOMIC_TYPE_DOUBLE;
3138                         break;
3139                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
3140                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3141                         break;
3142                 case SPECIFIER_BOOL:
3143                         atomic_type = ATOMIC_TYPE_BOOL;
3144                         break;
3145                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
3146                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
3147                         atomic_type = ATOMIC_TYPE_FLOAT;
3148                         break;
3149                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3150                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3151                         atomic_type = ATOMIC_TYPE_DOUBLE;
3152                         break;
3153                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3154                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3155                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3156                         break;
3157                 default:
3158                         /* invalid specifier combination, give an error message */
3159                         if(type_specifiers == 0) {
3160                                 if (! strict_mode) {
3161                                         if (warning.implicit_int) {
3162                                                 warningf(HERE, "no type specifiers in declaration, using 'int'");
3163                                         }
3164                                         atomic_type = ATOMIC_TYPE_INT;
3165                                         break;
3166                                 } else {
3167                                         errorf(HERE, "no type specifiers given in declaration");
3168                                 }
3169                         } else if((type_specifiers & SPECIFIER_SIGNED) &&
3170                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
3171                                 errorf(HERE, "signed and unsigned specifiers gives");
3172                         } else if(type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
3173                                 errorf(HERE, "only integer types can be signed or unsigned");
3174                         } else {
3175                                 errorf(HERE, "multiple datatypes in declaration");
3176                         }
3177                         atomic_type = ATOMIC_TYPE_INVALID;
3178                 }
3179
3180                 if(type_specifiers & SPECIFIER_COMPLEX &&
3181                    atomic_type != ATOMIC_TYPE_INVALID) {
3182                         type                = allocate_type_zero(TYPE_COMPLEX, &builtin_source_position);
3183                         type->complex.akind = atomic_type;
3184                 } else if(type_specifiers & SPECIFIER_IMAGINARY &&
3185                           atomic_type != ATOMIC_TYPE_INVALID) {
3186                         type                  = allocate_type_zero(TYPE_IMAGINARY, &builtin_source_position);
3187                         type->imaginary.akind = atomic_type;
3188                 } else {
3189                         type               = allocate_type_zero(TYPE_ATOMIC, &builtin_source_position);
3190                         type->atomic.akind = atomic_type;
3191                 }
3192                 newtype = 1;
3193         } else {
3194                 if(type_specifiers != 0) {
3195                         errorf(HERE, "multiple datatypes in declaration");
3196                 }
3197         }
3198
3199         type->base.qualifiers = type_qualifiers;
3200         /* FIXME: check type qualifiers here */
3201
3202         type_t *result = typehash_insert(type);
3203         if(newtype && result != type) {
3204                 free_type(type);
3205         }
3206
3207         specifiers->type = result;
3208 end_error:
3209         return;
3210 }
3211
3212 static type_qualifiers_t parse_type_qualifiers(void)
3213 {
3214         type_qualifiers_t type_qualifiers = TYPE_QUALIFIER_NONE;
3215
3216         while(true) {
3217                 switch(token.type) {
3218                 /* type qualifiers */
3219                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
3220                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
3221                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
3222                 /* microsoft extended type modifiers */
3223                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
3224                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
3225                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
3226                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
3227                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
3228
3229                 default:
3230                         return type_qualifiers;
3231                 }
3232         }
3233 }
3234
3235 static declaration_t *parse_identifier_list(void)
3236 {
3237         declaration_t *declarations     = NULL;
3238         declaration_t *last_declaration = NULL;
3239         do {
3240                 declaration_t *const declaration = allocate_declaration_zero();
3241                 declaration->type            = NULL; /* a K&R parameter list has no types, yet */
3242                 declaration->source_position = token.source_position;
3243                 declaration->symbol          = token.v.symbol;
3244                 next_token();
3245
3246                 if(last_declaration != NULL) {
3247                         last_declaration->next = declaration;
3248                 } else {
3249                         declarations = declaration;
3250                 }
3251                 last_declaration = declaration;
3252
3253                 if (token.type != ',') {
3254                         break;
3255                 }
3256                 next_token();
3257         } while(token.type == T_IDENTIFIER);
3258
3259         return declarations;
3260 }
3261
3262 static void semantic_parameter(declaration_t *declaration)
3263 {
3264         /* TODO: improve error messages */
3265
3266         if(declaration->declared_storage_class == STORAGE_CLASS_TYPEDEF) {
3267                 errorf(HERE, "typedef not allowed in parameter list");
3268         } else if(declaration->declared_storage_class != STORAGE_CLASS_NONE
3269                         && declaration->declared_storage_class != STORAGE_CLASS_REGISTER) {
3270                 errorf(HERE, "parameter may only have none or register storage class");
3271         }
3272
3273         type_t *const orig_type = declaration->type;
3274         type_t *      type      = skip_typeref(orig_type);
3275
3276         /* Array as last part of a parameter type is just syntactic sugar.  Turn it
3277          * into a pointer. Â§ 6.7.5.3 (7) */
3278         if (is_type_array(type)) {
3279                 type_t *const element_type = type->array.element_type;
3280
3281                 type = make_pointer_type(element_type, type->base.qualifiers);
3282
3283                 declaration->type = type;
3284         }
3285
3286         if(is_type_incomplete(type)) {
3287                 errorf(HERE, "incomplete type '%T' not allowed for parameter '%Y'",
3288                        orig_type, declaration->symbol);
3289         }
3290 }
3291
3292 static declaration_t *parse_parameter(void)
3293 {
3294         declaration_specifiers_t specifiers;
3295         memset(&specifiers, 0, sizeof(specifiers));
3296
3297         parse_declaration_specifiers(&specifiers);
3298
3299         declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/true);
3300
3301         semantic_parameter(declaration);
3302
3303         return declaration;
3304 }
3305
3306 static declaration_t *parse_parameters(function_type_t *type)
3307 {
3308         declaration_t *declarations = NULL;
3309
3310         eat('(');
3311         add_anchor_token(')');
3312         int saved_comma_state = save_and_reset_anchor_state(',');
3313
3314         if(token.type == T_IDENTIFIER) {
3315                 symbol_t *symbol = token.v.symbol;
3316                 if(!is_typedef_symbol(symbol)) {
3317                         type->kr_style_parameters = true;
3318                         declarations = parse_identifier_list();
3319                         goto parameters_finished;
3320                 }
3321         }
3322
3323         if(token.type == ')') {
3324                 type->unspecified_parameters = 1;
3325                 goto parameters_finished;
3326         }
3327         if(token.type == T_void && look_ahead(1)->type == ')') {
3328                 next_token();
3329                 goto parameters_finished;
3330         }
3331
3332         declaration_t        *declaration;
3333         declaration_t        *last_declaration = NULL;
3334         function_parameter_t *parameter;
3335         function_parameter_t *last_parameter = NULL;
3336
3337         while(true) {
3338                 switch(token.type) {
3339                 case T_DOTDOTDOT:
3340                         next_token();
3341                         type->variadic = 1;
3342                         goto parameters_finished;
3343
3344                 case T_IDENTIFIER:
3345                 case T___extension__:
3346                 DECLARATION_START
3347                         declaration = parse_parameter();
3348
3349                         parameter       = obstack_alloc(type_obst, sizeof(parameter[0]));
3350                         memset(parameter, 0, sizeof(parameter[0]));
3351                         parameter->type = declaration->type;
3352
3353                         if(last_parameter != NULL) {
3354                                 last_declaration->next = declaration;
3355                                 last_parameter->next   = parameter;
3356                         } else {
3357                                 type->parameters = parameter;
3358                                 declarations     = declaration;
3359                         }
3360                         last_parameter   = parameter;
3361                         last_declaration = declaration;
3362                         break;
3363
3364                 default:
3365                         goto parameters_finished;
3366                 }
3367                 if (token.type != ',') {
3368                         goto parameters_finished;
3369                 }
3370                 next_token();
3371         }
3372
3373
3374 parameters_finished:
3375         rem_anchor_token(')');
3376         expect(')');
3377
3378         restore_anchor_state(',', saved_comma_state);
3379         return declarations;
3380
3381 end_error:
3382         restore_anchor_state(',', saved_comma_state);
3383         return NULL;
3384 }
3385
3386 typedef enum {
3387         CONSTRUCT_INVALID,
3388         CONSTRUCT_POINTER,
3389         CONSTRUCT_FUNCTION,
3390         CONSTRUCT_ARRAY
3391 } construct_type_kind_t;
3392
3393 typedef struct construct_type_t construct_type_t;
3394 struct construct_type_t {
3395         construct_type_kind_t  kind;
3396         construct_type_t      *next;
3397 };
3398
3399 typedef struct parsed_pointer_t parsed_pointer_t;
3400 struct parsed_pointer_t {
3401         construct_type_t  construct_type;
3402         type_qualifiers_t type_qualifiers;
3403 };
3404
3405 typedef struct construct_function_type_t construct_function_type_t;
3406 struct construct_function_type_t {
3407         construct_type_t  construct_type;
3408         type_t           *function_type;
3409 };
3410
3411 typedef struct parsed_array_t parsed_array_t;
3412 struct parsed_array_t {
3413         construct_type_t  construct_type;
3414         type_qualifiers_t type_qualifiers;
3415         bool              is_static;
3416         bool              is_variable;
3417         expression_t     *size;
3418 };
3419
3420 typedef struct construct_base_type_t construct_base_type_t;
3421 struct construct_base_type_t {
3422         construct_type_t  construct_type;
3423         type_t           *type;
3424 };
3425
3426 static construct_type_t *parse_pointer_declarator(void)
3427 {
3428         eat('*');
3429
3430         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
3431         memset(pointer, 0, sizeof(pointer[0]));
3432         pointer->construct_type.kind = CONSTRUCT_POINTER;
3433         pointer->type_qualifiers     = parse_type_qualifiers();
3434
3435         return (construct_type_t*) pointer;
3436 }
3437
3438 static construct_type_t *parse_array_declarator(void)
3439 {
3440         eat('[');
3441         add_anchor_token(']');
3442
3443         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
3444         memset(array, 0, sizeof(array[0]));
3445         array->construct_type.kind = CONSTRUCT_ARRAY;
3446
3447         if(token.type == T_static) {
3448                 array->is_static = true;
3449                 next_token();
3450         }
3451
3452         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
3453         if(type_qualifiers != 0) {
3454                 if(token.type == T_static) {
3455                         array->is_static = true;
3456                         next_token();
3457                 }
3458         }
3459         array->type_qualifiers = type_qualifiers;
3460
3461         if(token.type == '*' && look_ahead(1)->type == ']') {
3462                 array->is_variable = true;
3463                 next_token();
3464         } else if(token.type != ']') {
3465                 array->size = parse_assignment_expression();
3466         }
3467
3468         rem_anchor_token(']');
3469         expect(']');
3470
3471         return (construct_type_t*) array;
3472 end_error:
3473         return NULL;
3474 }
3475
3476 static construct_type_t *parse_function_declarator(declaration_t *declaration)
3477 {
3478         type_t *type;
3479         if(declaration != NULL) {
3480                 type = allocate_type_zero(TYPE_FUNCTION, &declaration->source_position);
3481         } else {
3482                 type = allocate_type_zero(TYPE_FUNCTION, HERE);
3483         }
3484
3485         declaration_t *parameters = parse_parameters(&type->function);
3486         if(declaration != NULL) {
3487                 declaration->scope.declarations = parameters;
3488         }
3489
3490         construct_function_type_t *construct_function_type =
3491                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
3492         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
3493         construct_function_type->construct_type.kind = CONSTRUCT_FUNCTION;
3494         construct_function_type->function_type       = type;
3495
3496         return (construct_type_t*) construct_function_type;
3497 }
3498
3499 static construct_type_t *parse_inner_declarator(declaration_t *declaration,
3500                 bool may_be_abstract)
3501 {
3502         /* construct a single linked list of construct_type_t's which describe
3503          * how to construct the final declarator type */
3504         construct_type_t *first = NULL;
3505         construct_type_t *last  = NULL;
3506         gnu_attribute_t  *attributes = NULL;
3507
3508         /* pointers */
3509         while(token.type == '*') {
3510                 construct_type_t *type = parse_pointer_declarator();
3511
3512                 if(last == NULL) {
3513                         first = type;
3514                         last  = type;
3515                 } else {
3516                         last->next = type;
3517                         last       = type;
3518                 }
3519         }
3520
3521         /* TODO: find out if this is correct */
3522         parse_attributes(&attributes);
3523
3524         construct_type_t *inner_types = NULL;
3525
3526         switch(token.type) {
3527         case T_IDENTIFIER:
3528                 if(declaration == NULL) {
3529                         errorf(HERE, "no identifier expected in typename");
3530                 } else {
3531                         declaration->symbol          = token.v.symbol;
3532                         declaration->source_position = token.source_position;
3533                 }
3534                 next_token();
3535                 break;
3536         case '(':
3537                 next_token();
3538                 add_anchor_token(')');
3539                 inner_types = parse_inner_declarator(declaration, may_be_abstract);
3540                 rem_anchor_token(')');
3541                 expect(')');
3542                 break;
3543         default:
3544                 if(may_be_abstract)
3545                         break;
3546                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', NULL);
3547                 /* avoid a loop in the outermost scope, because eat_statement doesn't
3548                  * eat '}' */
3549                 if(token.type == '}' && current_function == NULL) {
3550                         next_token();
3551                 } else {
3552                         eat_statement();
3553                 }
3554                 return NULL;
3555         }
3556
3557         construct_type_t *p = last;
3558
3559         while(true) {
3560                 construct_type_t *type;
3561                 switch(token.type) {
3562                 case '(':
3563                         type = parse_function_declarator(declaration);
3564                         break;
3565                 case '[':
3566                         type = parse_array_declarator();
3567                         break;
3568                 default:
3569                         goto declarator_finished;
3570                 }
3571
3572                 /* insert in the middle of the list (behind p) */
3573                 if(p != NULL) {
3574                         type->next = p->next;
3575                         p->next    = type;
3576                 } else {
3577                         type->next = first;
3578                         first      = type;
3579                 }
3580                 if(last == p) {
3581                         last = type;
3582                 }
3583         }
3584
3585 declarator_finished:
3586         parse_attributes(&attributes);
3587
3588         /* append inner_types at the end of the list, we don't to set last anymore
3589          * as it's not needed anymore */
3590         if(last == NULL) {
3591                 assert(first == NULL);
3592                 first = inner_types;
3593         } else {
3594                 last->next = inner_types;
3595         }
3596
3597         return first;
3598 end_error:
3599         return NULL;
3600 }
3601
3602 static type_t *construct_declarator_type(construct_type_t *construct_list,
3603                                          type_t *type)
3604 {
3605         construct_type_t *iter = construct_list;
3606         for( ; iter != NULL; iter = iter->next) {
3607                 switch(iter->kind) {
3608                 case CONSTRUCT_INVALID:
3609                         internal_errorf(HERE, "invalid type construction found");
3610                 case CONSTRUCT_FUNCTION: {
3611                         construct_function_type_t *construct_function_type
3612                                 = (construct_function_type_t*) iter;
3613
3614                         type_t *function_type = construct_function_type->function_type;
3615
3616                         function_type->function.return_type = type;
3617
3618                         type_t *skipped_return_type = skip_typeref(type);
3619                         if (is_type_function(skipped_return_type)) {
3620                                 errorf(HERE, "function returning function is not allowed");
3621                                 type = type_error_type;
3622                         } else if (is_type_array(skipped_return_type)) {
3623                                 errorf(HERE, "function returning array is not allowed");
3624                                 type = type_error_type;
3625                         } else {
3626                                 type = function_type;
3627                         }
3628                         break;
3629                 }
3630
3631                 case CONSTRUCT_POINTER: {
3632                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
3633                         type_t           *pointer_type   = allocate_type_zero(TYPE_POINTER, &null_position);
3634                         pointer_type->pointer.points_to  = type;
3635                         pointer_type->base.qualifiers    = parsed_pointer->type_qualifiers;
3636
3637                         type = pointer_type;
3638                         break;
3639                 }
3640
3641                 case CONSTRUCT_ARRAY: {
3642                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
3643                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY, &null_position);
3644
3645                         expression_t *size_expression = parsed_array->size;
3646                         if(size_expression != NULL) {
3647                                 size_expression
3648                                         = create_implicit_cast(size_expression, type_size_t);
3649                         }
3650
3651                         array_type->base.qualifiers       = parsed_array->type_qualifiers;
3652                         array_type->array.element_type    = type;
3653                         array_type->array.is_static       = parsed_array->is_static;
3654                         array_type->array.is_variable     = parsed_array->is_variable;
3655                         array_type->array.size_expression = size_expression;
3656
3657                         if(size_expression != NULL) {
3658                                 if(is_constant_expression(size_expression)) {
3659                                         array_type->array.size_constant = true;
3660                                         array_type->array.size
3661                                                 = fold_constant(size_expression);
3662                                 } else {
3663                                         array_type->array.is_vla = true;
3664                                 }
3665                         }
3666
3667                         type_t *skipped_type = skip_typeref(type);
3668                         if (is_type_atomic(skipped_type, ATOMIC_TYPE_VOID)) {
3669                                 errorf(HERE, "array of void is not allowed");
3670                                 type = type_error_type;
3671                         } else {
3672                                 type = array_type;
3673                         }
3674                         break;
3675                 }
3676                 }
3677
3678                 type_t *hashed_type = typehash_insert(type);
3679                 if(hashed_type != type) {
3680                         /* the function type was constructed earlier freeing it here will
3681                          * destroy other types... */
3682                         if(iter->kind != CONSTRUCT_FUNCTION) {
3683                                 free_type(type);
3684                         }
3685                         type = hashed_type;
3686                 }
3687         }
3688
3689         return type;
3690 }
3691
3692 static declaration_t *parse_declarator(
3693                 const declaration_specifiers_t *specifiers, bool may_be_abstract)
3694 {
3695         declaration_t *const declaration    = allocate_declaration_zero();
3696         declaration->declared_storage_class = specifiers->declared_storage_class;
3697         declaration->decl_modifiers         = specifiers->decl_modifiers;
3698         declaration->deprecated             = specifiers->deprecated;
3699         declaration->deprecated_string      = specifiers->deprecated_string;
3700         declaration->get_property_sym       = specifiers->get_property_sym;
3701         declaration->put_property_sym       = specifiers->put_property_sym;
3702         declaration->is_inline              = specifiers->is_inline;
3703
3704         declaration->storage_class          = specifiers->declared_storage_class;
3705         if(declaration->storage_class == STORAGE_CLASS_NONE
3706                         && scope != global_scope) {
3707                 declaration->storage_class = STORAGE_CLASS_AUTO;
3708         }
3709
3710         if(specifiers->alignment != 0) {
3711                 /* TODO: add checks here */
3712                 declaration->alignment = specifiers->alignment;
3713         }
3714
3715         construct_type_t *construct_type
3716                 = parse_inner_declarator(declaration, may_be_abstract);
3717         type_t *const type = specifiers->type;
3718         declaration->type = construct_declarator_type(construct_type, type);
3719
3720         if(construct_type != NULL) {
3721                 obstack_free(&temp_obst, construct_type);
3722         }
3723
3724         return declaration;
3725 }
3726
3727 static type_t *parse_abstract_declarator(type_t *base_type)
3728 {
3729         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
3730
3731         type_t *result = construct_declarator_type(construct_type, base_type);
3732         if(construct_type != NULL) {
3733                 obstack_free(&temp_obst, construct_type);
3734         }
3735
3736         return result;
3737 }
3738
3739 static declaration_t *append_declaration(declaration_t* const declaration)
3740 {
3741         if (last_declaration != NULL) {
3742                 last_declaration->next = declaration;
3743         } else {
3744                 scope->declarations = declaration;
3745         }
3746         last_declaration = declaration;
3747         return declaration;
3748 }
3749
3750 /**
3751  * Check if the declaration of main is suspicious.  main should be a
3752  * function with external linkage, returning int, taking either zero
3753  * arguments, two, or three arguments of appropriate types, ie.
3754  *
3755  * int main([ int argc, char **argv [, char **env ] ]).
3756  *
3757  * @param decl    the declaration to check
3758  * @param type    the function type of the declaration
3759  */
3760 static void check_type_of_main(const declaration_t *const decl, const function_type_t *const func_type)
3761 {
3762         if (decl->storage_class == STORAGE_CLASS_STATIC) {
3763                 warningf(&decl->source_position,
3764                          "'main' is normally a non-static function");
3765         }
3766         if (skip_typeref(func_type->return_type) != type_int) {
3767                 warningf(&decl->source_position,
3768                          "return type of 'main' should be 'int', but is '%T'",
3769                          func_type->return_type);
3770         }
3771         const function_parameter_t *parm = func_type->parameters;
3772         if (parm != NULL) {
3773                 type_t *const first_type = parm->type;
3774                 if (!types_compatible(skip_typeref(first_type), type_int)) {
3775                         warningf(&decl->source_position,
3776                                  "first argument of 'main' should be 'int', but is '%T'", first_type);
3777                 }
3778                 parm = parm->next;
3779                 if (parm != NULL) {
3780                         type_t *const second_type = parm->type;
3781                         if (!types_compatible(skip_typeref(second_type), type_char_ptr_ptr)) {
3782                                 warningf(&decl->source_position,
3783                                          "second argument of 'main' should be 'char**', but is '%T'", second_type);
3784                         }
3785                         parm = parm->next;
3786                         if (parm != NULL) {
3787                                 type_t *const third_type = parm->type;
3788                                 if (!types_compatible(skip_typeref(third_type), type_char_ptr_ptr)) {
3789                                         warningf(&decl->source_position,
3790                                                  "third argument of 'main' should be 'char**', but is '%T'", third_type);
3791                                 }
3792                                 parm = parm->next;
3793                                 if (parm != NULL) {
3794                                         warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
3795                                 }
3796                         }
3797                 } else {
3798                         warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
3799                 }
3800         }
3801 }
3802
3803 /**
3804  * Check if a symbol is the equal to "main".
3805  */
3806 static bool is_sym_main(const symbol_t *const sym)
3807 {
3808         return strcmp(sym->string, "main") == 0;
3809 }
3810
3811 static declaration_t *internal_record_declaration(
3812         declaration_t *const declaration,
3813         const bool is_function_definition)
3814 {
3815         const symbol_t *const symbol  = declaration->symbol;
3816         const namespace_t     namespc = (namespace_t)declaration->namespc;
3817
3818         type_t *const orig_type = declaration->type;
3819         type_t *const type      = skip_typeref(orig_type);
3820         if (is_type_function(type) &&
3821                         type->function.unspecified_parameters &&
3822                         warning.strict_prototypes) {
3823                 warningf(&declaration->source_position,
3824                          "function declaration '%#T' is not a prototype",
3825                          orig_type, declaration->symbol);
3826         }
3827
3828         if (is_function_definition && warning.main && is_sym_main(symbol)) {
3829                 check_type_of_main(declaration, &type->function);
3830         }
3831
3832         assert(declaration->symbol != NULL);
3833         declaration_t *previous_declaration = get_declaration(symbol, namespc);
3834
3835         assert(declaration != previous_declaration);
3836         if (previous_declaration != NULL) {
3837                 if (previous_declaration->parent_scope == scope) {
3838                         /* can happen for K&R style declarations */
3839                         if(previous_declaration->type == NULL) {
3840                                 previous_declaration->type = declaration->type;
3841                         }
3842
3843                         const type_t *prev_type = skip_typeref(previous_declaration->type);
3844                         if (!types_compatible(type, prev_type)) {
3845                                 errorf(&declaration->source_position,
3846                                        "declaration '%#T' is incompatible with '%#T' (declared %P)",
3847                                        orig_type, symbol, previous_declaration->type, symbol,
3848                                    &previous_declaration->source_position);
3849                         } else {
3850                                 unsigned old_storage_class = previous_declaration->storage_class;
3851                                 if(old_storage_class == STORAGE_CLASS_ENUM_ENTRY) {
3852                                         errorf(&declaration->source_position,
3853                                                "redeclaration of enum entry '%Y' (declared %P)",
3854                                                symbol, &previous_declaration->source_position);
3855                                         return previous_declaration;
3856                                 }
3857
3858                                 unsigned new_storage_class = declaration->storage_class;
3859
3860                                 if(is_type_incomplete(prev_type)) {
3861                                         previous_declaration->type = type;
3862                                         prev_type                  = type;
3863                                 }
3864
3865                                 /* pretend no storage class means extern for function
3866                                  * declarations (except if the previous declaration is neither
3867                                  * none nor extern) */
3868                                 if (is_type_function(type)) {
3869                                         switch (old_storage_class) {
3870                                                 case STORAGE_CLASS_NONE:
3871                                                         old_storage_class = STORAGE_CLASS_EXTERN;
3872
3873                                                 case STORAGE_CLASS_EXTERN:
3874                                                         if (is_function_definition) {
3875                                                                 if (warning.missing_prototypes &&
3876                                                                     prev_type->function.unspecified_parameters &&
3877                                                                     !is_sym_main(symbol)) {
3878                                                                         warningf(&declaration->source_position,
3879                                                                                  "no previous prototype for '%#T'",
3880                                                                                  orig_type, symbol);
3881                                                                 }
3882                                                         } else if (new_storage_class == STORAGE_CLASS_NONE) {
3883                                                                 new_storage_class = STORAGE_CLASS_EXTERN;
3884                                                         }
3885                                                         break;
3886
3887                                                 default: break;
3888                                         }
3889                                 }
3890
3891                                 if (old_storage_class == STORAGE_CLASS_EXTERN &&
3892                                                 new_storage_class == STORAGE_CLASS_EXTERN) {
3893 warn_redundant_declaration:
3894                                         if (warning.redundant_decls) {
3895                                                 warningf(&declaration->source_position,
3896                                                          "redundant declaration for '%Y' (declared %P)",
3897                                                          symbol, &previous_declaration->source_position);
3898                                         }
3899                                 } else if (current_function == NULL) {
3900                                         if (old_storage_class != STORAGE_CLASS_STATIC &&
3901                                                         new_storage_class == STORAGE_CLASS_STATIC) {
3902                                                 errorf(&declaration->source_position,
3903                                                        "static declaration of '%Y' follows non-static declaration (declared %P)",
3904                                                        symbol, &previous_declaration->source_position);
3905                                         } else {
3906                                                 if (old_storage_class != STORAGE_CLASS_EXTERN && !is_function_definition) {
3907                                                         goto warn_redundant_declaration;
3908                                                 }
3909                                                 if (new_storage_class == STORAGE_CLASS_NONE) {
3910                                                         previous_declaration->storage_class = STORAGE_CLASS_NONE;
3911                                                         previous_declaration->declared_storage_class = STORAGE_CLASS_NONE;
3912                                                 }
3913                                         }
3914                                 } else {
3915                                         if (old_storage_class == new_storage_class) {
3916                                                 errorf(&declaration->source_position,
3917                                                        "redeclaration of '%Y' (declared %P)",
3918                                                        symbol, &previous_declaration->source_position);
3919                                         } else {
3920                                                 errorf(&declaration->source_position,
3921                                                        "redeclaration of '%Y' with different linkage (declared %P)",
3922                                                        symbol, &previous_declaration->source_position);
3923                                         }
3924                                 }
3925                         }
3926
3927                         if (declaration->is_inline)
3928                                 previous_declaration->is_inline = true;
3929                         return previous_declaration;
3930                 }
3931         } else if (is_function_definition) {
3932                 if (declaration->storage_class != STORAGE_CLASS_STATIC) {
3933                         if (warning.missing_prototypes && !is_sym_main(symbol)) {
3934                                 warningf(&declaration->source_position,
3935                                          "no previous prototype for '%#T'", orig_type, symbol);
3936                         } else if (warning.missing_declarations && !is_sym_main(symbol)) {
3937                                 warningf(&declaration->source_position,
3938                                          "no previous declaration for '%#T'", orig_type,
3939                                          symbol);
3940                         }
3941                 }
3942         } else if (warning.missing_declarations &&
3943             scope == global_scope &&
3944             !is_type_function(type) && (
3945               declaration->storage_class == STORAGE_CLASS_NONE ||
3946               declaration->storage_class == STORAGE_CLASS_THREAD
3947             )) {
3948                 warningf(&declaration->source_position,
3949                          "no previous declaration for '%#T'", orig_type, symbol);
3950         }
3951
3952         assert(declaration->parent_scope == NULL);
3953         assert(scope != NULL);
3954
3955         declaration->parent_scope = scope;
3956
3957         environment_push(declaration);
3958         return append_declaration(declaration);
3959 }
3960
3961 static declaration_t *record_declaration(declaration_t *declaration)
3962 {
3963         return internal_record_declaration(declaration, false);
3964 }
3965
3966 static declaration_t *record_function_definition(declaration_t *declaration)
3967 {
3968         return internal_record_declaration(declaration, true);
3969 }
3970
3971 static void parser_error_multiple_definition(declaration_t *declaration,
3972                 const source_position_t *source_position)
3973 {
3974         errorf(source_position, "multiple definition of symbol '%Y' (declared %P)",
3975                declaration->symbol, &declaration->source_position);
3976 }
3977
3978 static bool is_declaration_specifier(const token_t *token,
3979                                      bool only_specifiers_qualifiers)
3980 {
3981         switch(token->type) {
3982                 TYPE_SPECIFIERS
3983                 TYPE_QUALIFIERS
3984                         return true;
3985                 case T_IDENTIFIER:
3986                         return is_typedef_symbol(token->v.symbol);
3987
3988                 case T___extension__:
3989                 STORAGE_CLASSES
3990                         return !only_specifiers_qualifiers;
3991
3992                 default:
3993                         return false;
3994         }
3995 }
3996
3997 static void parse_init_declarator_rest(declaration_t *declaration)
3998 {
3999         eat('=');
4000
4001         type_t *orig_type = declaration->type;
4002         type_t *type      = skip_typeref(orig_type);
4003
4004         if(declaration->init.initializer != NULL) {
4005                 parser_error_multiple_definition(declaration, HERE);
4006         }
4007
4008         bool must_be_constant = false;
4009         if(declaration->storage_class == STORAGE_CLASS_STATIC
4010                         || declaration->storage_class == STORAGE_CLASS_THREAD_STATIC
4011                         || declaration->parent_scope == global_scope) {
4012                 must_be_constant = true;
4013         }
4014
4015         parse_initializer_env_t env;
4016         env.type             = orig_type;
4017         env.must_be_constant = must_be_constant;
4018         env.declaration      = declaration;
4019
4020         initializer_t *initializer = parse_initializer(&env);
4021
4022         if(env.type != orig_type) {
4023                 orig_type         = env.type;
4024                 type              = skip_typeref(orig_type);
4025                 declaration->type = env.type;
4026         }
4027
4028         if(is_type_function(type)) {
4029                 errorf(&declaration->source_position,
4030                        "initializers not allowed for function types at declator '%Y' (type '%T')",
4031                        declaration->symbol, orig_type);
4032         } else {
4033                 declaration->init.initializer = initializer;
4034         }
4035 }
4036
4037 /* parse rest of a declaration without any declarator */
4038 static void parse_anonymous_declaration_rest(
4039                 const declaration_specifiers_t *specifiers,
4040                 parsed_declaration_func finished_declaration)
4041 {
4042         eat(';');
4043
4044         declaration_t *const declaration    = allocate_declaration_zero();
4045         declaration->type                   = specifiers->type;
4046         declaration->declared_storage_class = specifiers->declared_storage_class;
4047         declaration->source_position        = specifiers->source_position;
4048         declaration->decl_modifiers         = specifiers->decl_modifiers;
4049
4050         if (declaration->declared_storage_class != STORAGE_CLASS_NONE) {
4051                 warningf(&declaration->source_position,
4052                          "useless storage class in empty declaration");
4053         }
4054         declaration->storage_class = STORAGE_CLASS_NONE;
4055
4056         type_t *type = declaration->type;
4057         switch (type->kind) {
4058                 case TYPE_COMPOUND_STRUCT:
4059                 case TYPE_COMPOUND_UNION: {
4060                         if (type->compound.declaration->symbol == NULL) {
4061                                 warningf(&declaration->source_position,
4062                                          "unnamed struct/union that defines no instances");
4063                         }
4064                         break;
4065                 }
4066
4067                 case TYPE_ENUM:
4068                         break;
4069
4070                 default:
4071                         warningf(&declaration->source_position, "empty declaration");
4072                         break;
4073         }
4074
4075         finished_declaration(declaration);
4076 }
4077
4078 static void parse_declaration_rest(declaration_t *ndeclaration,
4079                 const declaration_specifiers_t *specifiers,
4080                 parsed_declaration_func finished_declaration)
4081 {
4082         add_anchor_token(';');
4083         add_anchor_token('=');
4084         add_anchor_token(',');
4085         while(true) {
4086                 declaration_t *declaration = finished_declaration(ndeclaration);
4087
4088                 type_t *orig_type = declaration->type;
4089                 type_t *type      = skip_typeref(orig_type);
4090
4091                 if (type->kind != TYPE_FUNCTION &&
4092                     declaration->is_inline &&
4093                     is_type_valid(type)) {
4094                         warningf(&declaration->source_position,
4095                                  "variable '%Y' declared 'inline'\n", declaration->symbol);
4096                 }
4097
4098                 if(token.type == '=') {
4099                         parse_init_declarator_rest(declaration);
4100                 }
4101
4102                 if(token.type != ',')
4103                         break;
4104                 eat(',');
4105
4106                 ndeclaration = parse_declarator(specifiers, /*may_be_abstract=*/false);
4107         }
4108         expect(';');
4109
4110 end_error:
4111         rem_anchor_token(';');
4112         rem_anchor_token('=');
4113         rem_anchor_token(',');
4114 }
4115
4116 static declaration_t *finished_kr_declaration(declaration_t *declaration)
4117 {
4118         symbol_t *symbol  = declaration->symbol;
4119         if(symbol == NULL) {
4120                 errorf(HERE, "anonymous declaration not valid as function parameter");
4121                 return declaration;
4122         }
4123         namespace_t namespc = (namespace_t) declaration->namespc;
4124         if(namespc != NAMESPACE_NORMAL) {
4125                 return record_declaration(declaration);
4126         }
4127
4128         declaration_t *previous_declaration = get_declaration(symbol, namespc);
4129         if(previous_declaration == NULL ||
4130                         previous_declaration->parent_scope != scope) {
4131                 errorf(HERE, "expected declaration of a function parameter, found '%Y'",
4132                        symbol);
4133                 return declaration;
4134         }
4135
4136         if(previous_declaration->type == NULL) {
4137                 previous_declaration->type          = declaration->type;
4138                 previous_declaration->declared_storage_class = declaration->declared_storage_class;
4139                 previous_declaration->storage_class = declaration->storage_class;
4140                 previous_declaration->parent_scope  = scope;
4141                 return previous_declaration;
4142         } else {
4143                 return record_declaration(declaration);
4144         }
4145 }
4146
4147 static void parse_declaration(parsed_declaration_func finished_declaration)
4148 {
4149         declaration_specifiers_t specifiers;
4150         memset(&specifiers, 0, sizeof(specifiers));
4151         parse_declaration_specifiers(&specifiers);
4152
4153         if(token.type == ';') {
4154                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
4155         } else {
4156                 declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
4157                 parse_declaration_rest(declaration, &specifiers, finished_declaration);
4158         }
4159 }
4160
4161 static void parse_kr_declaration_list(declaration_t *declaration)
4162 {
4163         type_t *type = skip_typeref(declaration->type);
4164         if (!is_type_function(type))
4165                 return;
4166
4167         if (!type->function.kr_style_parameters)
4168                 return;
4169
4170         /* push function parameters */
4171         int       top        = environment_top();
4172         scope_t  *last_scope = scope;
4173         set_scope(&declaration->scope);
4174
4175         declaration_t *parameter = declaration->scope.declarations;
4176         for ( ; parameter != NULL; parameter = parameter->next) {
4177                 assert(parameter->parent_scope == NULL);
4178                 parameter->parent_scope = scope;
4179                 environment_push(parameter);
4180         }
4181
4182         /* parse declaration list */
4183         while (is_declaration_specifier(&token, false)) {
4184                 parse_declaration(finished_kr_declaration);
4185         }
4186
4187         /* pop function parameters */
4188         assert(scope == &declaration->scope);
4189         set_scope(last_scope);
4190         environment_pop_to(top);
4191
4192         /* update function type */
4193         type_t *new_type = duplicate_type(type);
4194
4195         function_parameter_t *parameters     = NULL;
4196         function_parameter_t *last_parameter = NULL;
4197
4198         declaration_t *parameter_declaration = declaration->scope.declarations;
4199         for( ; parameter_declaration != NULL;
4200                         parameter_declaration = parameter_declaration->next) {
4201                 type_t *parameter_type = parameter_declaration->type;
4202                 if(parameter_type == NULL) {
4203                         if (strict_mode) {
4204                                 errorf(HERE, "no type specified for function parameter '%Y'",
4205                                        parameter_declaration->symbol);
4206                         } else {
4207                                 if (warning.implicit_int) {
4208                                         warningf(HERE, "no type specified for function parameter '%Y', using 'int'",
4209                                                 parameter_declaration->symbol);
4210                                 }
4211                                 parameter_type              = type_int;
4212                                 parameter_declaration->type = parameter_type;
4213                         }
4214                 }
4215
4216                 semantic_parameter(parameter_declaration);
4217                 parameter_type = parameter_declaration->type;
4218
4219                 function_parameter_t *function_parameter
4220                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
4221                 memset(function_parameter, 0, sizeof(function_parameter[0]));
4222
4223                 function_parameter->type = parameter_type;
4224                 if(last_parameter != NULL) {
4225                         last_parameter->next = function_parameter;
4226                 } else {
4227                         parameters = function_parameter;
4228                 }
4229                 last_parameter = function_parameter;
4230         }
4231
4232         /* Â§ 6.9.1.7: A K&R style parameter list does NOT act as a function
4233          * prototype */
4234         new_type->function.parameters = parameters;
4235         new_type->function.unspecified_parameters = true;
4236
4237         type = typehash_insert(new_type);
4238         if(type != new_type) {
4239                 obstack_free(type_obst, new_type);
4240         }
4241
4242         declaration->type = type;
4243 }
4244
4245 static bool first_err = true;
4246
4247 /**
4248  * When called with first_err set, prints the name of the current function,
4249  * else does noting.
4250  */
4251 static void print_in_function(void) {
4252         if (first_err) {
4253                 first_err = false;
4254                 diagnosticf("%s: In function '%Y':\n",
4255                         current_function->source_position.input_name,
4256                         current_function->symbol);
4257         }
4258 }
4259
4260 /**
4261  * Check if all labels are defined in the current function.
4262  * Check if all labels are used in the current function.
4263  */
4264 static void check_labels(void)
4265 {
4266         for (const goto_statement_t *goto_statement = goto_first;
4267             goto_statement != NULL;
4268             goto_statement = goto_statement->next) {
4269                 declaration_t *label = goto_statement->label;
4270
4271                 label->used = true;
4272                 if (label->source_position.input_name == NULL) {
4273                         print_in_function();
4274                         errorf(&goto_statement->base.source_position,
4275                                "label '%Y' used but not defined", label->symbol);
4276                  }
4277         }
4278         goto_first = goto_last = NULL;
4279
4280         if (warning.unused_label) {
4281                 for (const label_statement_t *label_statement = label_first;
4282                          label_statement != NULL;
4283                          label_statement = label_statement->next) {
4284                         const declaration_t *label = label_statement->label;
4285
4286                         if (! label->used) {
4287                                 print_in_function();
4288                                 warningf(&label_statement->base.source_position,
4289                                         "label '%Y' defined but not used", label->symbol);
4290                         }
4291                 }
4292         }
4293         label_first = label_last = NULL;
4294 }
4295
4296 /**
4297  * Check declarations of current_function for unused entities.
4298  */
4299 static void check_declarations(void)
4300 {
4301         if (warning.unused_parameter) {
4302                 const scope_t *scope = &current_function->scope;
4303
4304                 const declaration_t *parameter = scope->declarations;
4305                 for (; parameter != NULL; parameter = parameter->next) {
4306                         if (! parameter->used) {
4307                                 print_in_function();
4308                                 warningf(&parameter->source_position,
4309                                          "unused parameter '%Y'", parameter->symbol);
4310                         }
4311                 }
4312         }
4313         if (warning.unused_variable) {
4314         }
4315 }
4316
4317 /**
4318  * check all returns vor matching type.
4319  */
4320 static bool search_return_statements(statement_t *statement) {
4321         switch(statement->kind) {
4322         case STATEMENT_RETURN:
4323                 /* ok, found a return */
4324                 return true;
4325         case STATEMENT_IF: {
4326                 /* return must be found on then and else */
4327                 if_statement_t *if_stat = &statement->ifs;
4328                 if(if_stat->true_statement != NULL && if_stat->false_statement != NULL) {
4329                         return search_return_statements(if_stat->true_statement) &&
4330                                search_return_statements(if_stat->false_statement);
4331                 }
4332                 break;
4333         }
4334         case STATEMENT_DO_WHILE: {
4335                 do_while_statement_t *do_stmt = &statement->do_while;
4336                 if(do_stmt->body != NULL) {
4337                         if (search_return_statements(do_stmt->body))
4338                                 return true;
4339                 }
4340                 break;
4341         }
4342         case STATEMENT_COMPOUND: {
4343                 /* search the last statement */
4344                 compound_statement_t *compound = &statement->compound;
4345                 statement_t *statement = compound->statements;
4346                 if(statement == NULL)
4347                         return false;
4348                 for( ; statement != NULL; statement = statement->base.next) {
4349                         if (search_return_statements(statement))
4350                                 return true;
4351                 }
4352                 break;
4353         }
4354         default:
4355                 break;
4356         }
4357         return false;
4358 }
4359
4360 /**
4361  * Check returns of a function.
4362  */
4363 static void check_return_type(declaration_t *declaration) {
4364         function_type_t *function_type = &declaration->type->function;
4365         type_t          *ret_type      = function_type->return_type;
4366
4367         if (ret_type != type_void) {
4368                 if (! search_return_statements(declaration->init.statement)) {
4369                         warningf(HERE, "missing return statement at end of non-void function '%Y'",
4370                                         declaration->symbol);
4371                 }
4372         }
4373 }
4374
4375 static void parse_external_declaration(void)
4376 {
4377         /* function-definitions and declarations both start with declaration
4378          * specifiers */
4379         declaration_specifiers_t specifiers;
4380         memset(&specifiers, 0, sizeof(specifiers));
4381
4382         add_anchor_token(';');
4383         parse_declaration_specifiers(&specifiers);
4384         rem_anchor_token(';');
4385
4386         /* must be a declaration */
4387         if(token.type == ';') {
4388                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
4389                 return;
4390         }
4391
4392         add_anchor_token(',');
4393         add_anchor_token('=');
4394         rem_anchor_token(';');
4395
4396         /* declarator is common to both function-definitions and declarations */
4397         declaration_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
4398
4399         rem_anchor_token(',');
4400         rem_anchor_token('=');
4401         rem_anchor_token(';');
4402
4403         /* must be a declaration */
4404         if(token.type == ',' || token.type == '=' || token.type == ';') {
4405                 parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
4406                 return;
4407         }
4408
4409         /* must be a function definition */
4410         parse_kr_declaration_list(ndeclaration);
4411
4412         if(token.type != '{') {
4413                 parse_error_expected("while parsing function definition", '{', NULL);
4414                 eat_until_matching_token(';');
4415                 return;
4416         }
4417
4418         type_t *type = ndeclaration->type;
4419
4420         /* note that we don't skip typerefs: the standard doesn't allow them here
4421          * (so we can't use is_type_function here) */
4422         if(type->kind != TYPE_FUNCTION) {
4423                 if (is_type_valid(type)) {
4424                         errorf(HERE, "declarator '%#T' has a body but is not a function type",
4425                                type, ndeclaration->symbol);
4426                 }
4427                 eat_block();
4428                 return;
4429         }
4430
4431         /* Â§ 6.7.5.3 (14) a function definition with () means no
4432          * parameters (and not unspecified parameters) */
4433         if(type->function.unspecified_parameters
4434                         && type->function.parameters == NULL
4435                         && !type->function.kr_style_parameters) {
4436                 type_t *duplicate = duplicate_type(type);
4437                 duplicate->function.unspecified_parameters = false;
4438
4439                 type = typehash_insert(duplicate);
4440                 if(type != duplicate) {
4441                         obstack_free(type_obst, duplicate);
4442                 }
4443                 ndeclaration->type = type;
4444         }
4445
4446         declaration_t *const declaration = record_function_definition(ndeclaration);
4447         if(ndeclaration != declaration) {
4448                 declaration->scope = ndeclaration->scope;
4449         }
4450         type = skip_typeref(declaration->type);
4451
4452         /* push function parameters and switch scope */
4453         int       top        = environment_top();
4454         scope_t  *last_scope = scope;
4455         set_scope(&declaration->scope);
4456
4457         declaration_t *parameter = declaration->scope.declarations;
4458         for( ; parameter != NULL; parameter = parameter->next) {
4459                 if(parameter->parent_scope == &ndeclaration->scope) {
4460                         parameter->parent_scope = scope;
4461                 }
4462                 assert(parameter->parent_scope == NULL
4463                                 || parameter->parent_scope == scope);
4464                 parameter->parent_scope = scope;
4465                 environment_push(parameter);
4466         }
4467
4468         if(declaration->init.statement != NULL) {
4469                 parser_error_multiple_definition(declaration, HERE);
4470                 eat_block();
4471                 goto end_of_parse_external_declaration;
4472         } else {
4473                 /* parse function body */
4474                 int            label_stack_top      = label_top();
4475                 declaration_t *old_current_function = current_function;
4476                 current_function                    = declaration;
4477
4478                 declaration->init.statement = parse_compound_statement(false);
4479                 first_err = true;
4480                 check_labels();
4481                 check_declarations();
4482
4483                 assert(current_function == declaration);
4484                 current_function = old_current_function;
4485                 label_pop_to(label_stack_top);
4486                 check_return_type(declaration);
4487         }
4488
4489 end_of_parse_external_declaration:
4490         assert(scope == &declaration->scope);
4491         set_scope(last_scope);
4492         environment_pop_to(top);
4493 }
4494
4495 static type_t *make_bitfield_type(type_t *base_type, expression_t *size,
4496                                   source_position_t *source_position)
4497 {
4498         type_t *type = allocate_type_zero(TYPE_BITFIELD, source_position);
4499
4500         type->bitfield.base_type = base_type;
4501         type->bitfield.size      = size;
4502
4503         return type;
4504 }
4505
4506 static declaration_t *find_compound_entry(declaration_t *compound_declaration,
4507                                           symbol_t *symbol)
4508 {
4509         declaration_t *iter = compound_declaration->scope.declarations;
4510         for( ; iter != NULL; iter = iter->next) {
4511                 if(iter->namespc != NAMESPACE_NORMAL)
4512                         continue;
4513
4514                 if(iter->symbol == NULL) {
4515                         type_t *type = skip_typeref(iter->type);
4516                         if(is_type_compound(type)) {
4517                                 declaration_t *result
4518                                         = find_compound_entry(type->compound.declaration, symbol);
4519                                 if(result != NULL)
4520                                         return result;
4521                         }
4522                         continue;
4523                 }
4524
4525                 if(iter->symbol == symbol) {
4526                         return iter;
4527                 }
4528         }
4529
4530         return NULL;
4531 }
4532
4533 static void parse_compound_declarators(declaration_t *struct_declaration,
4534                 const declaration_specifiers_t *specifiers)
4535 {
4536         declaration_t *last_declaration = struct_declaration->scope.declarations;
4537         if(last_declaration != NULL) {
4538                 while(last_declaration->next != NULL) {
4539                         last_declaration = last_declaration->next;
4540                 }
4541         }
4542
4543         while(1) {
4544                 declaration_t *declaration;
4545
4546                 if(token.type == ':') {
4547                         source_position_t source_position = *HERE;
4548                         next_token();
4549
4550                         type_t *base_type = specifiers->type;
4551                         expression_t *size = parse_constant_expression();
4552
4553                         if(!is_type_integer(skip_typeref(base_type))) {
4554                                 errorf(HERE, "bitfield base type '%T' is not an integer type",
4555                                        base_type);
4556                         }
4557
4558                         type_t *type = make_bitfield_type(base_type, size, &source_position);
4559
4560                         declaration                         = allocate_declaration_zero();
4561                         declaration->namespc                = NAMESPACE_NORMAL;
4562                         declaration->declared_storage_class = STORAGE_CLASS_NONE;
4563                         declaration->storage_class          = STORAGE_CLASS_NONE;
4564                         declaration->source_position        = source_position;
4565                         declaration->decl_modifiers         = specifiers->decl_modifiers;
4566                         declaration->type                   = type;
4567                 } else {
4568                         declaration = parse_declarator(specifiers,/*may_be_abstract=*/true);
4569
4570                         type_t *orig_type = declaration->type;
4571                         type_t *type      = skip_typeref(orig_type);
4572
4573                         if(token.type == ':') {
4574                                 source_position_t source_position = *HERE;
4575                                 next_token();
4576                                 expression_t *size = parse_constant_expression();
4577
4578                                 if(!is_type_integer(type)) {
4579                                         errorf(HERE, "bitfield base type '%T' is not an "
4580                                                "integer type", orig_type);
4581                                 }
4582
4583                                 type_t *bitfield_type = make_bitfield_type(orig_type, size, &source_position);
4584                                 declaration->type = bitfield_type;
4585                         } else {
4586                                 /* TODO we ignore arrays for now... what is missing is a check
4587                                  * that they're at the end of the struct */
4588                                 if(is_type_incomplete(type) && !is_type_array(type)) {
4589                                         errorf(HERE,
4590                                                "compound member '%Y' has incomplete type '%T'",
4591                                                declaration->symbol, orig_type);
4592                                 } else if(is_type_function(type)) {
4593                                         errorf(HERE, "compound member '%Y' must not have function "
4594                                                "type '%T'", declaration->symbol, orig_type);
4595                                 }
4596                         }
4597                 }
4598
4599                 /* make sure we don't define a symbol multiple times */
4600                 symbol_t *symbol = declaration->symbol;
4601                 if(symbol != NULL) {
4602                         declaration_t *prev_decl
4603                                 = find_compound_entry(struct_declaration, symbol);
4604
4605                         if(prev_decl != NULL) {
4606                                 assert(prev_decl->symbol == symbol);
4607                                 errorf(&declaration->source_position,
4608                                        "multiple declarations of symbol '%Y' (declared %P)",
4609                                        symbol, &prev_decl->source_position);
4610                         }
4611                 }
4612
4613                 /* append declaration */
4614                 if(last_declaration != NULL) {
4615                         last_declaration->next = declaration;
4616                 } else {
4617                         struct_declaration->scope.declarations = declaration;
4618                 }
4619                 last_declaration = declaration;
4620
4621                 if(token.type != ',')
4622                         break;
4623                 next_token();
4624         }
4625         expect(';');
4626
4627 end_error:
4628         ;
4629 }
4630
4631 static void parse_compound_type_entries(declaration_t *compound_declaration)
4632 {
4633         eat('{');
4634         add_anchor_token('}');
4635
4636         while(token.type != '}' && token.type != T_EOF) {
4637                 declaration_specifiers_t specifiers;
4638                 memset(&specifiers, 0, sizeof(specifiers));
4639                 parse_declaration_specifiers(&specifiers);
4640
4641                 parse_compound_declarators(compound_declaration, &specifiers);
4642         }
4643         rem_anchor_token('}');
4644
4645         if(token.type == T_EOF) {
4646                 errorf(HERE, "EOF while parsing struct");
4647         }
4648         next_token();
4649 }
4650
4651 static type_t *parse_typename(void)
4652 {
4653         declaration_specifiers_t specifiers;
4654         memset(&specifiers, 0, sizeof(specifiers));
4655         parse_declaration_specifiers(&specifiers);
4656         if(specifiers.declared_storage_class != STORAGE_CLASS_NONE) {
4657                 /* TODO: improve error message, user does probably not know what a
4658                  * storage class is...
4659                  */
4660                 errorf(HERE, "typename may not have a storage class");
4661         }
4662
4663         type_t *result = parse_abstract_declarator(specifiers.type);
4664
4665         return result;
4666 }
4667
4668
4669
4670
4671 typedef expression_t* (*parse_expression_function) (unsigned precedence);
4672 typedef expression_t* (*parse_expression_infix_function) (unsigned precedence,
4673                                                           expression_t *left);
4674
4675 typedef struct expression_parser_function_t expression_parser_function_t;
4676 struct expression_parser_function_t {
4677         unsigned                         precedence;
4678         parse_expression_function        parser;
4679         unsigned                         infix_precedence;
4680         parse_expression_infix_function  infix_parser;
4681 };
4682
4683 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
4684
4685 /**
4686  * Prints an error message if an expression was expected but not read
4687  */
4688 static expression_t *expected_expression_error(void)
4689 {
4690         /* skip the error message if the error token was read */
4691         if (token.type != T_ERROR) {
4692                 errorf(HERE, "expected expression, got token '%K'", &token);
4693         }
4694         next_token();
4695
4696         return create_invalid_expression();
4697 }
4698
4699 /**
4700  * Parse a string constant.
4701  */
4702 static expression_t *parse_string_const(void)
4703 {
4704         wide_string_t wres;
4705         if (token.type == T_STRING_LITERAL) {
4706                 string_t res = token.v.string;
4707                 next_token();
4708                 while (token.type == T_STRING_LITERAL) {
4709                         res = concat_strings(&res, &token.v.string);
4710                         next_token();
4711                 }
4712                 if (token.type != T_WIDE_STRING_LITERAL) {
4713                         expression_t *const cnst = allocate_expression_zero(EXPR_STRING_LITERAL);
4714                         /* note: that we use type_char_ptr here, which is already the
4715                          * automatic converted type. revert_automatic_type_conversion
4716                          * will construct the array type */
4717                         cnst->base.type    = type_char_ptr;
4718                         cnst->string.value = res;
4719                         return cnst;
4720                 }
4721
4722                 wres = concat_string_wide_string(&res, &token.v.wide_string);
4723         } else {
4724                 wres = token.v.wide_string;
4725         }
4726         next_token();
4727
4728         for (;;) {
4729                 switch (token.type) {
4730                         case T_WIDE_STRING_LITERAL:
4731                                 wres = concat_wide_strings(&wres, &token.v.wide_string);
4732                                 break;
4733
4734                         case T_STRING_LITERAL:
4735                                 wres = concat_wide_string_string(&wres, &token.v.string);
4736                                 break;
4737
4738                         default: {
4739                                 expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
4740                                 cnst->base.type         = type_wchar_t_ptr;
4741                                 cnst->wide_string.value = wres;
4742                                 return cnst;
4743                         }
4744                 }
4745                 next_token();
4746         }
4747 }
4748
4749 /**
4750  * Parse an integer constant.
4751  */
4752 static expression_t *parse_int_const(void)
4753 {
4754         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
4755         cnst->base.source_position = *HERE;
4756         cnst->base.type            = token.datatype;
4757         cnst->conste.v.int_value   = token.v.intvalue;
4758
4759         next_token();
4760
4761         return cnst;
4762 }
4763
4764 /**
4765  * Parse a character constant.
4766  */
4767 static expression_t *parse_character_constant(void)
4768 {
4769         expression_t *cnst = allocate_expression_zero(EXPR_CHARACTER_CONSTANT);
4770
4771         cnst->base.source_position = *HERE;
4772         cnst->base.type            = token.datatype;
4773         cnst->conste.v.character   = token.v.string;
4774
4775         if (cnst->conste.v.character.size != 1) {
4776                 if (warning.multichar && (c_mode & _GNUC)) {
4777                         /* TODO */
4778                         warningf(HERE, "multi-character character constant");
4779                 } else {
4780                         errorf(HERE, "more than 1 characters in character constant");
4781                 }
4782         }
4783         next_token();
4784
4785         return cnst;
4786 }
4787
4788 /**
4789  * Parse a wide character constant.
4790  */
4791 static expression_t *parse_wide_character_constant(void)
4792 {
4793         expression_t *cnst = allocate_expression_zero(EXPR_WIDE_CHARACTER_CONSTANT);
4794
4795         cnst->base.source_position    = *HERE;
4796         cnst->base.type               = token.datatype;
4797         cnst->conste.v.wide_character = token.v.wide_string;
4798
4799         if (cnst->conste.v.wide_character.size != 1) {
4800                 if (warning.multichar && (c_mode & _GNUC)) {
4801                         /* TODO */
4802                         warningf(HERE, "multi-character character constant");
4803                 } else {
4804                         errorf(HERE, "more than 1 characters in character constant");
4805                 }
4806         }
4807         next_token();
4808
4809         return cnst;
4810 }
4811
4812 /**
4813  * Parse a float constant.
4814  */
4815 static expression_t *parse_float_const(void)
4816 {
4817         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
4818         cnst->base.type            = token.datatype;
4819         cnst->conste.v.float_value = token.v.floatvalue;
4820
4821         next_token();
4822
4823         return cnst;
4824 }
4825
4826 static declaration_t *create_implicit_function(symbol_t *symbol,
4827                 const source_position_t *source_position)
4828 {
4829         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION, source_position);
4830         ntype->function.return_type            = type_int;
4831         ntype->function.unspecified_parameters = true;
4832
4833         type_t *type = typehash_insert(ntype);
4834         if(type != ntype) {
4835                 free_type(ntype);
4836         }
4837
4838         declaration_t *const declaration    = allocate_declaration_zero();
4839         declaration->storage_class          = STORAGE_CLASS_EXTERN;
4840         declaration->declared_storage_class = STORAGE_CLASS_EXTERN;
4841         declaration->type                   = type;
4842         declaration->symbol                 = symbol;
4843         declaration->source_position        = *source_position;
4844
4845         bool strict_prototypes_old = warning.strict_prototypes;
4846         warning.strict_prototypes  = false;
4847         record_declaration(declaration);
4848         warning.strict_prototypes = strict_prototypes_old;
4849
4850         return declaration;
4851 }
4852
4853 /**
4854  * Creates a return_type (func)(argument_type) function type if not
4855  * already exists.
4856  *
4857  * @param return_type    the return type
4858  * @param argument_type  the argument type
4859  */
4860 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
4861 {
4862         function_parameter_t *parameter
4863                 = obstack_alloc(type_obst, sizeof(parameter[0]));
4864         memset(parameter, 0, sizeof(parameter[0]));
4865         parameter->type = argument_type;
4866
4867         type_t *type               = allocate_type_zero(TYPE_FUNCTION, &builtin_source_position);
4868         type->function.return_type = return_type;
4869         type->function.parameters  = parameter;
4870
4871         type_t *result = typehash_insert(type);
4872         if(result != type) {
4873                 free_type(type);
4874         }
4875
4876         return result;
4877 }
4878
4879 static type_t *make_function_0_type(type_t *return_type)
4880 {
4881         type_t *type               = allocate_type_zero(TYPE_FUNCTION, &builtin_source_position);
4882         type->function.return_type = return_type;
4883         type->function.parameters  = NULL;
4884
4885         type_t *result = typehash_insert(type);
4886         if(result != type) {
4887                 free_type(type);
4888         }
4889
4890         return result;
4891 }
4892
4893 /**
4894  * Creates a function type for some function like builtins.
4895  *
4896  * @param symbol   the symbol describing the builtin
4897  */
4898 static type_t *get_builtin_symbol_type(symbol_t *symbol)
4899 {
4900         switch(symbol->ID) {
4901         case T___builtin_alloca:
4902                 return make_function_1_type(type_void_ptr, type_size_t);
4903         case T___builtin_huge_val:
4904                 return make_function_0_type(type_double);
4905         case T___builtin_nan:
4906                 return make_function_1_type(type_double, type_char_ptr);
4907         case T___builtin_nanf:
4908                 return make_function_1_type(type_float, type_char_ptr);
4909         case T___builtin_nand:
4910                 return make_function_1_type(type_long_double, type_char_ptr);
4911         case T___builtin_va_end:
4912                 return make_function_1_type(type_void, type_valist);
4913         default:
4914                 internal_errorf(HERE, "not implemented builtin symbol found");
4915         }
4916 }
4917
4918 /**
4919  * Performs automatic type cast as described in Â§ 6.3.2.1.
4920  *
4921  * @param orig_type  the original type
4922  */
4923 static type_t *automatic_type_conversion(type_t *orig_type)
4924 {
4925         type_t *type = skip_typeref(orig_type);
4926         if(is_type_array(type)) {
4927                 array_type_t *array_type   = &type->array;
4928                 type_t       *element_type = array_type->element_type;
4929                 unsigned      qualifiers   = array_type->base.qualifiers;
4930
4931                 return make_pointer_type(element_type, qualifiers);
4932         }
4933
4934         if(is_type_function(type)) {
4935                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
4936         }
4937
4938         return orig_type;
4939 }
4940
4941 /**
4942  * reverts the automatic casts of array to pointer types and function
4943  * to function-pointer types as defined Â§ 6.3.2.1
4944  */
4945 type_t *revert_automatic_type_conversion(const expression_t *expression)
4946 {
4947         switch (expression->kind) {
4948                 case EXPR_REFERENCE: return expression->reference.declaration->type;
4949                 case EXPR_SELECT:    return expression->select.compound_entry->type;
4950
4951                 case EXPR_UNARY_DEREFERENCE: {
4952                         const expression_t *const value = expression->unary.value;
4953                         type_t             *const type  = skip_typeref(value->base.type);
4954                         assert(is_type_pointer(type));
4955                         return type->pointer.points_to;
4956                 }
4957
4958                 case EXPR_BUILTIN_SYMBOL:
4959                         return get_builtin_symbol_type(expression->builtin_symbol.symbol);
4960
4961                 case EXPR_ARRAY_ACCESS: {
4962                         const expression_t *array_ref = expression->array_access.array_ref;
4963                         type_t             *type_left = skip_typeref(array_ref->base.type);
4964                         if (!is_type_valid(type_left))
4965                                 return type_left;
4966                         assert(is_type_pointer(type_left));
4967                         return type_left->pointer.points_to;
4968                 }
4969
4970                 case EXPR_STRING_LITERAL: {
4971                         size_t size = expression->string.value.size;
4972                         return make_array_type(type_char, size, TYPE_QUALIFIER_NONE);
4973                 }
4974
4975                 case EXPR_WIDE_STRING_LITERAL: {
4976                         size_t size = expression->wide_string.value.size;
4977                         return make_array_type(type_wchar_t, size, TYPE_QUALIFIER_NONE);
4978                 }
4979
4980                 case EXPR_COMPOUND_LITERAL:
4981                         return expression->compound_literal.type;
4982
4983                 default: break;
4984         }
4985
4986         return expression->base.type;
4987 }
4988
4989 static expression_t *parse_reference(void)
4990 {
4991         expression_t *expression = allocate_expression_zero(EXPR_REFERENCE);
4992
4993         reference_expression_t *ref = &expression->reference;
4994         symbol_t *const symbol = token.v.symbol;
4995
4996         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
4997
4998         source_position_t source_position = token.source_position;
4999         next_token();
5000
5001         if(declaration == NULL) {
5002                 if (! strict_mode && token.type == '(') {
5003                         /* an implicitly defined function */
5004                         if (warning.implicit_function_declaration) {
5005                                 warningf(HERE, "implicit declaration of function '%Y'",
5006                                         symbol);
5007                         }
5008
5009                         declaration = create_implicit_function(symbol,
5010                                                                &source_position);
5011                 } else {
5012                         errorf(HERE, "unknown symbol '%Y' found.", symbol);
5013                         return create_invalid_expression();
5014                 }
5015         }
5016
5017         type_t *type         = declaration->type;
5018
5019         /* we always do the auto-type conversions; the & and sizeof parser contains
5020          * code to revert this! */
5021         type = automatic_type_conversion(type);
5022
5023         ref->declaration = declaration;
5024         ref->base.type   = type;
5025
5026         /* this declaration is used */
5027         declaration->used = true;
5028
5029         /* check for deprecated functions */
5030         if(declaration->deprecated != 0) {
5031                 const char *prefix = "";
5032                 if (is_type_function(declaration->type))
5033                         prefix = "function ";
5034
5035                 if (declaration->deprecated_string != NULL) {
5036                         warningf(&source_position,
5037                                 "%s'%Y' was declared 'deprecated(\"%s\")'", prefix, declaration->symbol,
5038                                 declaration->deprecated_string);
5039                 } else {
5040                         warningf(&source_position,
5041                                 "%s'%Y' was declared 'deprecated'", prefix, declaration->symbol);
5042                 }
5043         }
5044
5045         return expression;
5046 }
5047
5048 static void check_cast_allowed(expression_t *expression, type_t *dest_type)
5049 {
5050         (void) expression;
5051         (void) dest_type;
5052         /* TODO check if explicit cast is allowed and issue warnings/errors */
5053 }
5054
5055 static expression_t *parse_compound_literal(type_t *type)
5056 {
5057         expression_t *expression = allocate_expression_zero(EXPR_COMPOUND_LITERAL);
5058
5059         parse_initializer_env_t env;
5060         env.type             = type;
5061         env.declaration      = NULL;
5062         env.must_be_constant = false;
5063         initializer_t *initializer = parse_initializer(&env);
5064         type = env.type;
5065
5066         expression->compound_literal.initializer = initializer;
5067         expression->compound_literal.type        = type;
5068         expression->base.type                    = automatic_type_conversion(type);
5069
5070         return expression;
5071 }
5072
5073 /**
5074  * Parse a cast expression.
5075  */
5076 static expression_t *parse_cast(void)
5077 {
5078         source_position_t source_position = token.source_position;
5079
5080         type_t *type  = parse_typename();
5081
5082         /* matching add_anchor_token() is at call site */
5083         rem_anchor_token(')');
5084         expect(')');
5085
5086         if(token.type == '{') {
5087                 return parse_compound_literal(type);
5088         }
5089
5090         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST);
5091         cast->base.source_position = source_position;
5092
5093         expression_t *value = parse_sub_expression(20);
5094
5095         check_cast_allowed(value, type);
5096
5097         cast->base.type   = type;
5098         cast->unary.value = value;
5099
5100         return cast;
5101 end_error:
5102         return create_invalid_expression();
5103 }
5104
5105 /**
5106  * Parse a statement expression.
5107  */
5108 static expression_t *parse_statement_expression(void)
5109 {
5110         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
5111
5112         statement_t *statement           = parse_compound_statement(true);
5113         expression->statement.statement  = statement;
5114         expression->base.source_position = statement->base.source_position;
5115
5116         /* find last statement and use its type */
5117         type_t *type = type_void;
5118         const statement_t *stmt = statement->compound.statements;
5119         if (stmt != NULL) {
5120                 while (stmt->base.next != NULL)
5121                         stmt = stmt->base.next;
5122
5123                 if (stmt->kind == STATEMENT_EXPRESSION) {
5124                         type = stmt->expression.expression->base.type;
5125                 }
5126         } else {
5127                 warningf(&expression->base.source_position, "empty statement expression ({})");
5128         }
5129         expression->base.type = type;
5130
5131         expect(')');
5132
5133         return expression;
5134 end_error:
5135         return create_invalid_expression();
5136 }
5137
5138 /**
5139  * Parse a braced expression.
5140  */
5141 static expression_t *parse_brace_expression(void)
5142 {
5143         eat('(');
5144         add_anchor_token(')');
5145
5146         switch(token.type) {
5147         case '{':
5148                 /* gcc extension: a statement expression */
5149                 return parse_statement_expression();
5150
5151         TYPE_QUALIFIERS
5152         TYPE_SPECIFIERS
5153                 return parse_cast();
5154         case T_IDENTIFIER:
5155                 if(is_typedef_symbol(token.v.symbol)) {
5156                         return parse_cast();
5157                 }
5158         }
5159
5160         expression_t *result = parse_expression();
5161         rem_anchor_token(')');
5162         expect(')');
5163
5164         return result;
5165 end_error:
5166         return create_invalid_expression();
5167 }
5168
5169 static expression_t *parse_function_keyword(void)
5170 {
5171         next_token();
5172         /* TODO */
5173
5174         if (current_function == NULL) {
5175                 errorf(HERE, "'__func__' used outside of a function");
5176         }
5177
5178         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5179         expression->base.type     = type_char_ptr;
5180         expression->funcname.kind = FUNCNAME_FUNCTION;
5181
5182         return expression;
5183 }
5184
5185 static expression_t *parse_pretty_function_keyword(void)
5186 {
5187         eat(T___PRETTY_FUNCTION__);
5188
5189         if (current_function == NULL) {
5190                 errorf(HERE, "'__PRETTY_FUNCTION__' used outside of a function");
5191         }
5192
5193         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5194         expression->base.type     = type_char_ptr;
5195         expression->funcname.kind = FUNCNAME_PRETTY_FUNCTION;
5196
5197         return expression;
5198 }
5199
5200 static expression_t *parse_funcsig_keyword(void)
5201 {
5202         eat(T___FUNCSIG__);
5203
5204         if (current_function == NULL) {
5205                 errorf(HERE, "'__FUNCSIG__' used outside of a function");
5206         }
5207
5208         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5209         expression->base.type     = type_char_ptr;
5210         expression->funcname.kind = FUNCNAME_FUNCSIG;
5211
5212         return expression;
5213 }
5214
5215 static expression_t *parse_funcdname_keyword(void)
5216 {
5217         eat(T___FUNCDNAME__);
5218
5219         if (current_function == NULL) {
5220                 errorf(HERE, "'__FUNCDNAME__' used outside of a function");
5221         }
5222
5223         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5224         expression->base.type     = type_char_ptr;
5225         expression->funcname.kind = FUNCNAME_FUNCDNAME;
5226
5227         return expression;
5228 }
5229
5230 static designator_t *parse_designator(void)
5231 {
5232         designator_t *result    = allocate_ast_zero(sizeof(result[0]));
5233         result->source_position = *HERE;
5234
5235         if(token.type != T_IDENTIFIER) {
5236                 parse_error_expected("while parsing member designator",
5237                                      T_IDENTIFIER, NULL);
5238                 return NULL;
5239         }
5240         result->symbol = token.v.symbol;
5241         next_token();
5242
5243         designator_t *last_designator = result;
5244         while(true) {
5245                 if(token.type == '.') {
5246                         next_token();
5247                         if(token.type != T_IDENTIFIER) {
5248                                 parse_error_expected("while parsing member designator",
5249                                                      T_IDENTIFIER, NULL);
5250                                 return NULL;
5251                         }
5252                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
5253                         designator->source_position = *HERE;
5254                         designator->symbol          = token.v.symbol;
5255                         next_token();
5256
5257                         last_designator->next = designator;
5258                         last_designator       = designator;
5259                         continue;
5260                 }
5261                 if(token.type == '[') {
5262                         next_token();
5263                         add_anchor_token(']');
5264                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
5265                         designator->source_position = *HERE;
5266                         designator->array_index     = parse_expression();
5267                         rem_anchor_token(']');
5268                         expect(']');
5269                         if(designator->array_index == NULL) {
5270                                 return NULL;
5271                         }
5272
5273                         last_designator->next = designator;
5274                         last_designator       = designator;
5275                         continue;
5276                 }
5277                 break;
5278         }
5279
5280         return result;
5281 end_error:
5282         return NULL;
5283 }
5284
5285 /**
5286  * Parse the __builtin_offsetof() expression.
5287  */
5288 static expression_t *parse_offsetof(void)
5289 {
5290         eat(T___builtin_offsetof);
5291
5292         expression_t *expression = allocate_expression_zero(EXPR_OFFSETOF);
5293         expression->base.type    = type_size_t;
5294
5295         expect('(');
5296         add_anchor_token(',');
5297         type_t *type = parse_typename();
5298         rem_anchor_token(',');
5299         expect(',');
5300         add_anchor_token(')');
5301         designator_t *designator = parse_designator();
5302         rem_anchor_token(')');
5303         expect(')');
5304
5305         expression->offsetofe.type       = type;
5306         expression->offsetofe.designator = designator;
5307
5308         type_path_t path;
5309         memset(&path, 0, sizeof(path));
5310         path.top_type = type;
5311         path.path     = NEW_ARR_F(type_path_entry_t, 0);
5312
5313         descend_into_subtype(&path);
5314
5315         if(!walk_designator(&path, designator, true)) {
5316                 return create_invalid_expression();
5317         }
5318
5319         DEL_ARR_F(path.path);
5320
5321         return expression;
5322 end_error:
5323         return create_invalid_expression();
5324 }
5325
5326 /**
5327  * Parses a _builtin_va_start() expression.
5328  */
5329 static expression_t *parse_va_start(void)
5330 {
5331         eat(T___builtin_va_start);
5332
5333         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
5334
5335         expect('(');
5336         add_anchor_token(',');
5337         expression->va_starte.ap = parse_assignment_expression();
5338         rem_anchor_token(',');
5339         expect(',');
5340         expression_t *const expr = parse_assignment_expression();
5341         if (expr->kind == EXPR_REFERENCE) {
5342                 declaration_t *const decl = expr->reference.declaration;
5343                 if (decl == NULL)
5344                         return create_invalid_expression();
5345                 if (decl->parent_scope == &current_function->scope &&
5346                     decl->next == NULL) {
5347                         expression->va_starte.parameter = decl;
5348                         expect(')');
5349                         return expression;
5350                 }
5351         }
5352         errorf(&expr->base.source_position,
5353                "second argument of 'va_start' must be last parameter of the current function");
5354 end_error:
5355         return create_invalid_expression();
5356 }
5357
5358 /**
5359  * Parses a _builtin_va_arg() expression.
5360  */
5361 static expression_t *parse_va_arg(void)
5362 {
5363         eat(T___builtin_va_arg);
5364
5365         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
5366
5367         expect('(');
5368         expression->va_arge.ap = parse_assignment_expression();
5369         expect(',');
5370         expression->base.type = parse_typename();
5371         expect(')');
5372
5373         return expression;
5374 end_error:
5375         return create_invalid_expression();
5376 }
5377
5378 static expression_t *parse_builtin_symbol(void)
5379 {
5380         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
5381
5382         symbol_t *symbol = token.v.symbol;
5383
5384         expression->builtin_symbol.symbol = symbol;
5385         next_token();
5386
5387         type_t *type = get_builtin_symbol_type(symbol);
5388         type = automatic_type_conversion(type);
5389
5390         expression->base.type = type;
5391         return expression;
5392 }
5393
5394 /**
5395  * Parses a __builtin_constant() expression.
5396  */
5397 static expression_t *parse_builtin_constant(void)
5398 {
5399         eat(T___builtin_constant_p);
5400
5401         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_CONSTANT_P);
5402
5403         expect('(');
5404         add_anchor_token(')');
5405         expression->builtin_constant.value = parse_assignment_expression();
5406         rem_anchor_token(')');
5407         expect(')');
5408         expression->base.type = type_int;
5409
5410         return expression;
5411 end_error:
5412         return create_invalid_expression();
5413 }
5414
5415 /**
5416  * Parses a __builtin_prefetch() expression.
5417  */
5418 static expression_t *parse_builtin_prefetch(void)
5419 {
5420         eat(T___builtin_prefetch);
5421
5422         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_PREFETCH);
5423
5424         expect('(');
5425         add_anchor_token(')');
5426         expression->builtin_prefetch.adr = parse_assignment_expression();
5427         if (token.type == ',') {
5428                 next_token();
5429                 expression->builtin_prefetch.rw = parse_assignment_expression();
5430         }
5431         if (token.type == ',') {
5432                 next_token();
5433                 expression->builtin_prefetch.locality = parse_assignment_expression();
5434         }
5435         rem_anchor_token(')');
5436         expect(')');
5437         expression->base.type = type_void;
5438
5439         return expression;
5440 end_error:
5441         return create_invalid_expression();
5442 }
5443
5444 /**
5445  * Parses a __builtin_is_*() compare expression.
5446  */
5447 static expression_t *parse_compare_builtin(void)
5448 {
5449         expression_t *expression;
5450
5451         switch(token.type) {
5452         case T___builtin_isgreater:
5453                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATER);
5454                 break;
5455         case T___builtin_isgreaterequal:
5456                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATEREQUAL);
5457                 break;
5458         case T___builtin_isless:
5459                 expression = allocate_expression_zero(EXPR_BINARY_ISLESS);
5460                 break;
5461         case T___builtin_islessequal:
5462                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSEQUAL);
5463                 break;
5464         case T___builtin_islessgreater:
5465                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSGREATER);
5466                 break;
5467         case T___builtin_isunordered:
5468                 expression = allocate_expression_zero(EXPR_BINARY_ISUNORDERED);
5469                 break;
5470         default:
5471                 internal_errorf(HERE, "invalid compare builtin found");
5472                 break;
5473         }
5474         expression->base.source_position = *HERE;
5475         next_token();
5476
5477         expect('(');
5478         expression->binary.left = parse_assignment_expression();
5479         expect(',');
5480         expression->binary.right = parse_assignment_expression();
5481         expect(')');
5482
5483         type_t *const orig_type_left  = expression->binary.left->base.type;
5484         type_t *const orig_type_right = expression->binary.right->base.type;
5485
5486         type_t *const type_left  = skip_typeref(orig_type_left);
5487         type_t *const type_right = skip_typeref(orig_type_right);
5488         if(!is_type_float(type_left) && !is_type_float(type_right)) {
5489                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
5490                         type_error_incompatible("invalid operands in comparison",
5491                                 &expression->base.source_position, orig_type_left, orig_type_right);
5492                 }
5493         } else {
5494                 semantic_comparison(&expression->binary);
5495         }
5496
5497         return expression;
5498 end_error:
5499         return create_invalid_expression();
5500 }
5501
5502 /**
5503  * Parses a __builtin_expect() expression.
5504  */
5505 static expression_t *parse_builtin_expect(void)
5506 {
5507         eat(T___builtin_expect);
5508
5509         expression_t *expression
5510                 = allocate_expression_zero(EXPR_BINARY_BUILTIN_EXPECT);
5511
5512         expect('(');
5513         expression->binary.left = parse_assignment_expression();
5514         expect(',');
5515         expression->binary.right = parse_constant_expression();
5516         expect(')');
5517
5518         expression->base.type = expression->binary.left->base.type;
5519
5520         return expression;
5521 end_error:
5522         return create_invalid_expression();
5523 }
5524
5525 /**
5526  * Parses a MS assume() expression.
5527  */
5528 static expression_t *parse_assume(void) {
5529         eat(T__assume);
5530
5531         expression_t *expression
5532                 = allocate_expression_zero(EXPR_UNARY_ASSUME);
5533
5534         expect('(');
5535         add_anchor_token(')');
5536         expression->unary.value = parse_assignment_expression();
5537         rem_anchor_token(')');
5538         expect(')');
5539
5540         expression->base.type = type_void;
5541         return expression;
5542 end_error:
5543         return create_invalid_expression();
5544 }
5545
5546 /**
5547  * Parse a microsoft __noop expression.
5548  */
5549 static expression_t *parse_noop_expression(void) {
5550         source_position_t source_position = *HERE;
5551         eat(T___noop);
5552
5553         if (token.type == '(') {
5554                 /* parse arguments */
5555                 eat('(');
5556                 add_anchor_token(')');
5557                 add_anchor_token(',');
5558
5559                 if(token.type != ')') {
5560                         while(true) {
5561                                 (void)parse_assignment_expression();
5562                                 if(token.type != ',')
5563                                         break;
5564                                 next_token();
5565                         }
5566                 }
5567         }
5568         rem_anchor_token(',');
5569         rem_anchor_token(')');
5570         expect(')');
5571
5572         /* the result is a (int)0 */
5573         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
5574         cnst->base.source_position = source_position;
5575         cnst->base.type            = type_int;
5576         cnst->conste.v.int_value   = 0;
5577         cnst->conste.is_ms_noop    = true;
5578
5579         return cnst;
5580
5581 end_error:
5582         return create_invalid_expression();
5583 }
5584
5585 /**
5586  * Parses a primary expression.
5587  */
5588 static expression_t *parse_primary_expression(void)
5589 {
5590         switch (token.type) {
5591                 case T_INTEGER:                  return parse_int_const();
5592                 case T_CHARACTER_CONSTANT:       return parse_character_constant();
5593                 case T_WIDE_CHARACTER_CONSTANT:  return parse_wide_character_constant();
5594                 case T_FLOATINGPOINT:            return parse_float_const();
5595                 case T_STRING_LITERAL:
5596                 case T_WIDE_STRING_LITERAL:      return parse_string_const();
5597                 case T_IDENTIFIER:               return parse_reference();
5598                 case T___FUNCTION__:
5599                 case T___func__:                 return parse_function_keyword();
5600                 case T___PRETTY_FUNCTION__:      return parse_pretty_function_keyword();
5601                 case T___FUNCSIG__:              return parse_funcsig_keyword();
5602                 case T___FUNCDNAME__:            return parse_funcdname_keyword();
5603                 case T___builtin_offsetof:       return parse_offsetof();
5604                 case T___builtin_va_start:       return parse_va_start();
5605                 case T___builtin_va_arg:         return parse_va_arg();
5606                 case T___builtin_expect:         return parse_builtin_expect();
5607                 case T___builtin_alloca:
5608                 case T___builtin_nan:
5609                 case T___builtin_nand:
5610                 case T___builtin_nanf:
5611                 case T___builtin_huge_val:
5612                 case T___builtin_va_end:         return parse_builtin_symbol();
5613                 case T___builtin_isgreater:
5614                 case T___builtin_isgreaterequal:
5615                 case T___builtin_isless:
5616                 case T___builtin_islessequal:
5617                 case T___builtin_islessgreater:
5618                 case T___builtin_isunordered:    return parse_compare_builtin();
5619                 case T___builtin_constant_p:     return parse_builtin_constant();
5620                 case T___builtin_prefetch:       return parse_builtin_prefetch();
5621                 case T__assume:                  return parse_assume();
5622
5623                 case '(':                        return parse_brace_expression();
5624                 case T___noop:                   return parse_noop_expression();
5625         }
5626
5627         errorf(HERE, "unexpected token %K, expected an expression", &token);
5628         return create_invalid_expression();
5629 }
5630
5631 /**
5632  * Check if the expression has the character type and issue a warning then.
5633  */
5634 static void check_for_char_index_type(const expression_t *expression) {
5635         type_t       *const type      = expression->base.type;
5636         const type_t *const base_type = skip_typeref(type);
5637
5638         if (is_type_atomic(base_type, ATOMIC_TYPE_CHAR) &&
5639                         warning.char_subscripts) {
5640                 warningf(&expression->base.source_position,
5641                          "array subscript has type '%T'", type);
5642         }
5643 }
5644
5645 static expression_t *parse_array_expression(unsigned precedence,
5646                                             expression_t *left)
5647 {
5648         (void) precedence;
5649
5650         eat('[');
5651         add_anchor_token(']');
5652
5653         expression_t *inside = parse_expression();
5654
5655         expression_t *expression = allocate_expression_zero(EXPR_ARRAY_ACCESS);
5656
5657         array_access_expression_t *array_access = &expression->array_access;
5658
5659         type_t *const orig_type_left   = left->base.type;
5660         type_t *const orig_type_inside = inside->base.type;
5661
5662         type_t *const type_left   = skip_typeref(orig_type_left);
5663         type_t *const type_inside = skip_typeref(orig_type_inside);
5664
5665         type_t *return_type;
5666         if (is_type_pointer(type_left)) {
5667                 return_type             = type_left->pointer.points_to;
5668                 array_access->array_ref = left;
5669                 array_access->index     = inside;
5670                 check_for_char_index_type(inside);
5671         } else if (is_type_pointer(type_inside)) {
5672                 return_type             = type_inside->pointer.points_to;
5673                 array_access->array_ref = inside;
5674                 array_access->index     = left;
5675                 array_access->flipped   = true;
5676                 check_for_char_index_type(left);
5677         } else {
5678                 if (is_type_valid(type_left) && is_type_valid(type_inside)) {
5679                         errorf(HERE,
5680                                 "array access on object with non-pointer types '%T', '%T'",
5681                                 orig_type_left, orig_type_inside);
5682                 }
5683                 return_type             = type_error_type;
5684                 array_access->array_ref = create_invalid_expression();
5685         }
5686
5687         rem_anchor_token(']');
5688         if(token.type != ']') {
5689                 parse_error_expected("Problem while parsing array access", ']', NULL);
5690                 return expression;
5691         }
5692         next_token();
5693
5694         return_type           = automatic_type_conversion(return_type);
5695         expression->base.type = return_type;
5696
5697         return expression;
5698 }
5699
5700 static expression_t *parse_typeprop(expression_kind_t const kind,
5701                                     source_position_t const pos,
5702                                     unsigned const precedence)
5703 {
5704         expression_t *tp_expression = allocate_expression_zero(kind);
5705         tp_expression->base.type            = type_size_t;
5706         tp_expression->base.source_position = pos;
5707
5708         char const* const what = kind == EXPR_SIZEOF ? "sizeof" : "alignof";
5709
5710         if (token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
5711                 next_token();
5712                 add_anchor_token(')');
5713                 type_t* const orig_type = parse_typename();
5714                 tp_expression->typeprop.type = orig_type;
5715
5716                 type_t const* const type = skip_typeref(orig_type);
5717                 char const* const wrong_type =
5718                         is_type_incomplete(type)    ? "incomplete"          :
5719                         type->kind == TYPE_FUNCTION ? "function designator" :
5720                         type->kind == TYPE_BITFIELD ? "bitfield"            :
5721                         NULL;
5722                 if (wrong_type != NULL) {
5723                         errorf(&pos, "operand of %s expression must not be %s type '%T'",
5724                                what, wrong_type, type);
5725                 }
5726
5727                 rem_anchor_token(')');
5728                 expect(')');
5729         } else {
5730                 expression_t *expression = parse_sub_expression(precedence);
5731
5732                 type_t* const orig_type = revert_automatic_type_conversion(expression);
5733                 expression->base.type = orig_type;
5734
5735                 type_t const* const type = skip_typeref(orig_type);
5736                 char const* const wrong_type =
5737                         is_type_incomplete(type)    ? "incomplete"          :
5738                         type->kind == TYPE_FUNCTION ? "function designator" :
5739                         type->kind == TYPE_BITFIELD ? "bitfield"            :
5740                         NULL;
5741                 if (wrong_type != NULL) {
5742                         errorf(&pos, "operand of %s expression must not be expression of %s type '%T'", what, wrong_type, type);
5743                 }
5744
5745                 tp_expression->typeprop.type          = expression->base.type;
5746                 tp_expression->typeprop.tp_expression = expression;
5747         }
5748
5749         return tp_expression;
5750 end_error:
5751         return create_invalid_expression();
5752 }
5753
5754 static expression_t *parse_sizeof(unsigned precedence)
5755 {
5756         source_position_t pos = *HERE;
5757         eat(T_sizeof);
5758         return parse_typeprop(EXPR_SIZEOF, pos, precedence);
5759 }
5760
5761 static expression_t *parse_alignof(unsigned precedence)
5762 {
5763         source_position_t pos = *HERE;
5764         eat(T___alignof__);
5765         return parse_typeprop(EXPR_ALIGNOF, pos, precedence);
5766 }
5767
5768 static expression_t *parse_select_expression(unsigned precedence,
5769                                              expression_t *compound)
5770 {
5771         (void) precedence;
5772         assert(token.type == '.' || token.type == T_MINUSGREATER);
5773
5774         bool is_pointer = (token.type == T_MINUSGREATER);
5775         next_token();
5776
5777         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
5778         select->select.compound = compound;
5779
5780         if (token.type != T_IDENTIFIER) {
5781                 parse_error_expected("while parsing select", T_IDENTIFIER, NULL);
5782                 return select;
5783         }
5784         symbol_t *symbol      = token.v.symbol;
5785         select->select.symbol = symbol;
5786         next_token();
5787
5788         type_t *const orig_type = compound->base.type;
5789         type_t *const type      = skip_typeref(orig_type);
5790
5791         type_t *type_left = type;
5792         if (is_pointer) {
5793                 if (!is_type_pointer(type)) {
5794                         if (is_type_valid(type)) {
5795                                 errorf(HERE, "left hand side of '->' is not a pointer, but '%T'", orig_type);
5796                         }
5797                         return create_invalid_expression();
5798                 }
5799                 type_left = type->pointer.points_to;
5800         }
5801         type_left = skip_typeref(type_left);
5802
5803         if (type_left->kind != TYPE_COMPOUND_STRUCT &&
5804             type_left->kind != TYPE_COMPOUND_UNION) {
5805                 if (is_type_valid(type_left)) {
5806                         errorf(HERE, "request for member '%Y' in something not a struct or "
5807                                "union, but '%T'", symbol, type_left);
5808                 }
5809                 return create_invalid_expression();
5810         }
5811
5812         declaration_t *const declaration = type_left->compound.declaration;
5813
5814         if (!declaration->init.complete) {
5815                 errorf(HERE, "request for member '%Y' of incomplete type '%T'",
5816                        symbol, type_left);
5817                 return create_invalid_expression();
5818         }
5819
5820         declaration_t *iter = find_compound_entry(declaration, symbol);
5821         if (iter == NULL) {
5822                 errorf(HERE, "'%T' has no member named '%Y'", orig_type, symbol);
5823                 return create_invalid_expression();
5824         }
5825
5826         /* we always do the auto-type conversions; the & and sizeof parser contains
5827          * code to revert this! */
5828         type_t *expression_type = automatic_type_conversion(iter->type);
5829
5830         select->select.compound_entry = iter;
5831         select->base.type             = expression_type;
5832
5833         type_t *skipped = skip_typeref(iter->type);
5834         if (skipped->kind == TYPE_BITFIELD) {
5835                 select->base.type = skipped->bitfield.base_type;
5836         }
5837
5838         return select;
5839 }
5840
5841 /**
5842  * Parse a call expression, ie. expression '( ... )'.
5843  *
5844  * @param expression  the function address
5845  */
5846 static expression_t *parse_call_expression(unsigned precedence,
5847                                            expression_t *expression)
5848 {
5849         (void) precedence;
5850         expression_t *result = allocate_expression_zero(EXPR_CALL);
5851         result->base.source_position = expression->base.source_position;
5852
5853         call_expression_t *call = &result->call;
5854         call->function          = expression;
5855
5856         type_t *const orig_type = expression->base.type;
5857         type_t *const type      = skip_typeref(orig_type);
5858
5859         function_type_t *function_type = NULL;
5860         if (is_type_pointer(type)) {
5861                 type_t *const to_type = skip_typeref(type->pointer.points_to);
5862
5863                 if (is_type_function(to_type)) {
5864                         function_type   = &to_type->function;
5865                         call->base.type = function_type->return_type;
5866                 }
5867         }
5868
5869         if (function_type == NULL && is_type_valid(type)) {
5870                 errorf(HERE, "called object '%E' (type '%T') is not a pointer to a function", expression, orig_type);
5871         }
5872
5873         /* parse arguments */
5874         eat('(');
5875         add_anchor_token(')');
5876         add_anchor_token(',');
5877
5878         if(token.type != ')') {
5879                 call_argument_t *last_argument = NULL;
5880
5881                 while(true) {
5882                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
5883
5884                         argument->expression = parse_assignment_expression();
5885                         if(last_argument == NULL) {
5886                                 call->arguments = argument;
5887                         } else {
5888                                 last_argument->next = argument;
5889                         }
5890                         last_argument = argument;
5891
5892                         if(token.type != ',')
5893                                 break;
5894                         next_token();
5895                 }
5896         }
5897         rem_anchor_token(',');
5898         rem_anchor_token(')');
5899         expect(')');
5900
5901         if(function_type != NULL) {
5902                 function_parameter_t *parameter = function_type->parameters;
5903                 call_argument_t      *argument  = call->arguments;
5904                 for( ; parameter != NULL && argument != NULL;
5905                                 parameter = parameter->next, argument = argument->next) {
5906                         type_t *expected_type = parameter->type;
5907                         /* TODO report scope in error messages */
5908                         expression_t *const arg_expr = argument->expression;
5909                         type_t       *const res_type = semantic_assign(expected_type, arg_expr,
5910                                                                        "function call",
5911                                                                        &arg_expr->base.source_position);
5912                         if (res_type == NULL) {
5913                                 /* TODO improve error message */
5914                                 errorf(&arg_expr->base.source_position,
5915                                         "Cannot call function with argument '%E' of type '%T' where type '%T' is expected",
5916                                         arg_expr, arg_expr->base.type, expected_type);
5917                         } else {
5918                                 argument->expression = create_implicit_cast(argument->expression, expected_type);
5919                         }
5920                 }
5921                 /* too few parameters */
5922                 if(parameter != NULL) {
5923                         errorf(HERE, "too few arguments to function '%E'", expression);
5924                 } else if(argument != NULL) {
5925                         /* too many parameters */
5926                         if(!function_type->variadic
5927                                         && !function_type->unspecified_parameters) {
5928                                 errorf(HERE, "too many arguments to function '%E'", expression);
5929                         } else {
5930                                 /* do default promotion */
5931                                 for( ; argument != NULL; argument = argument->next) {
5932                                         type_t *type = argument->expression->base.type;
5933
5934                                         type = skip_typeref(type);
5935                                         if(is_type_integer(type)) {
5936                                                 type = promote_integer(type);
5937                                         } else if(type == type_float) {
5938                                                 type = type_double;
5939                                         }
5940
5941                                         argument->expression
5942                                                 = create_implicit_cast(argument->expression, type);
5943                                 }
5944
5945                                 check_format(&result->call);
5946                         }
5947                 } else {
5948                         check_format(&result->call);
5949                 }
5950         }
5951
5952         return result;
5953 end_error:
5954         return create_invalid_expression();
5955 }
5956
5957 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
5958
5959 static bool same_compound_type(const type_t *type1, const type_t *type2)
5960 {
5961         return
5962                 is_type_compound(type1) &&
5963                 type1->kind == type2->kind &&
5964                 type1->compound.declaration == type2->compound.declaration;
5965 }
5966
5967 /**
5968  * Parse a conditional expression, ie. 'expression ? ... : ...'.
5969  *
5970  * @param expression  the conditional expression
5971  */
5972 static expression_t *parse_conditional_expression(unsigned precedence,
5973                                                   expression_t *expression)
5974 {
5975         eat('?');
5976         add_anchor_token(':');
5977
5978         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
5979
5980         conditional_expression_t *conditional = &result->conditional;
5981         conditional->condition = expression;
5982
5983         /* 6.5.15.2 */
5984         type_t *const condition_type_orig = expression->base.type;
5985         type_t *const condition_type      = skip_typeref(condition_type_orig);
5986         if (!is_type_scalar(condition_type) && is_type_valid(condition_type)) {
5987                 type_error("expected a scalar type in conditional condition",
5988                            &expression->base.source_position, condition_type_orig);
5989         }
5990
5991         expression_t *true_expression = parse_expression();
5992         rem_anchor_token(':');
5993         expect(':');
5994         expression_t *false_expression = parse_sub_expression(precedence);
5995
5996         type_t *const orig_true_type  = true_expression->base.type;
5997         type_t *const orig_false_type = false_expression->base.type;
5998         type_t *const true_type       = skip_typeref(orig_true_type);
5999         type_t *const false_type      = skip_typeref(orig_false_type);
6000
6001         /* 6.5.15.3 */
6002         type_t *result_type;
6003         if(is_type_atomic(true_type, ATOMIC_TYPE_VOID) ||
6004                 is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
6005                 if (!is_type_atomic(true_type, ATOMIC_TYPE_VOID)
6006                     || !is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
6007                         warningf(&expression->base.source_position,
6008                                         "ISO C forbids conditional expression with only one void side");
6009                 }
6010                 result_type = type_void;
6011         } else if (is_type_arithmetic(true_type)
6012                    && is_type_arithmetic(false_type)) {
6013                 result_type = semantic_arithmetic(true_type, false_type);
6014
6015                 true_expression  = create_implicit_cast(true_expression, result_type);
6016                 false_expression = create_implicit_cast(false_expression, result_type);
6017
6018                 conditional->true_expression  = true_expression;
6019                 conditional->false_expression = false_expression;
6020                 conditional->base.type        = result_type;
6021         } else if (same_compound_type(true_type, false_type)) {
6022                 /* just take 1 of the 2 types */
6023                 result_type = true_type;
6024         } else if (is_type_pointer(true_type) || is_type_pointer(false_type)) {
6025                 type_t *pointer_type;
6026                 type_t *other_type;
6027                 expression_t *other_expression;
6028                 if (is_type_pointer(true_type)) {
6029                         pointer_type     = true_type;
6030                         other_type       = false_type;
6031                         other_expression = false_expression;
6032                 } else {
6033                         pointer_type     = false_type;
6034                         other_type       = true_type;
6035                         other_expression = true_expression;
6036                 }
6037
6038                 if(is_type_pointer(other_type)) {
6039                         if(!pointers_compatible(true_type, false_type)) {
6040                                 warningf(&expression->base.source_position,
6041                                                 "pointer types '%T' and '%T' in conditional expression are incompatible", true_type, false_type);
6042                         }
6043                         result_type = true_type;
6044                 } else if(is_null_pointer_constant(other_expression)) {
6045                         result_type = pointer_type;
6046                 } else if(is_type_integer(other_type)) {
6047                         warningf(&expression->base.source_position,
6048                                         "pointer/integer type mismatch in conditional expression ('%T' and '%T')", true_type, false_type);
6049                         result_type = pointer_type;
6050                 } else {
6051                         type_error_incompatible("while parsing conditional",
6052                                         &expression->base.source_position, true_type, false_type);
6053                         result_type = type_error_type;
6054                 }
6055         } else {
6056                 /* TODO: one pointer to void*, other some pointer */
6057
6058                 if (is_type_valid(true_type) && is_type_valid(false_type)) {
6059                         type_error_incompatible("while parsing conditional",
6060                                                 &expression->base.source_position, true_type,
6061                                                 false_type);
6062                 }
6063                 result_type = type_error_type;
6064         }
6065
6066         conditional->true_expression
6067                 = create_implicit_cast(true_expression, result_type);
6068         conditional->false_expression
6069                 = create_implicit_cast(false_expression, result_type);
6070         conditional->base.type = result_type;
6071         return result;
6072 end_error:
6073         return create_invalid_expression();
6074 }
6075
6076 /**
6077  * Parse an extension expression.
6078  */
6079 static expression_t *parse_extension(unsigned precedence)
6080 {
6081         eat(T___extension__);
6082
6083         /* TODO enable extensions */
6084         expression_t *expression = parse_sub_expression(precedence);
6085         /* TODO disable extensions */
6086         return expression;
6087 }
6088
6089 /**
6090  * Parse a __builtin_classify_type() expression.
6091  */
6092 static expression_t *parse_builtin_classify_type(const unsigned precedence)
6093 {
6094         eat(T___builtin_classify_type);
6095
6096         expression_t *result = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
6097         result->base.type    = type_int;
6098
6099         expect('(');
6100         add_anchor_token(')');
6101         expression_t *expression = parse_sub_expression(precedence);
6102         rem_anchor_token(')');
6103         expect(')');
6104         result->classify_type.type_expression = expression;
6105
6106         return result;
6107 end_error:
6108         return create_invalid_expression();
6109 }
6110
6111 static void semantic_incdec(unary_expression_t *expression)
6112 {
6113         type_t *const orig_type = expression->value->base.type;
6114         type_t *const type      = skip_typeref(orig_type);
6115         /* TODO !is_type_real && !is_type_pointer */
6116         if(!is_type_arithmetic(type) && type->kind != TYPE_POINTER) {
6117                 if (is_type_valid(type)) {
6118                         /* TODO: improve error message */
6119                         errorf(HERE, "operation needs an arithmetic or pointer type");
6120                 }
6121                 return;
6122         }
6123
6124         expression->base.type = orig_type;
6125 }
6126
6127 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
6128 {
6129         type_t *const orig_type = expression->value->base.type;
6130         type_t *const type      = skip_typeref(orig_type);
6131         if(!is_type_arithmetic(type)) {
6132                 if (is_type_valid(type)) {
6133                         /* TODO: improve error message */
6134                         errorf(HERE, "operation needs an arithmetic type");
6135                 }
6136                 return;
6137         }
6138
6139         expression->base.type = orig_type;
6140 }
6141
6142 static void semantic_unexpr_scalar(unary_expression_t *expression)
6143 {
6144         type_t *const orig_type = expression->value->base.type;
6145         type_t *const type      = skip_typeref(orig_type);
6146         if (!is_type_scalar(type)) {
6147                 if (is_type_valid(type)) {
6148                         errorf(HERE, "operand of ! must be of scalar type");
6149                 }
6150                 return;
6151         }
6152
6153         expression->base.type = orig_type;
6154 }
6155
6156 static void semantic_unexpr_integer(unary_expression_t *expression)
6157 {
6158         type_t *const orig_type = expression->value->base.type;
6159         type_t *const type      = skip_typeref(orig_type);
6160         if (!is_type_integer(type)) {
6161                 if (is_type_valid(type)) {
6162                         errorf(HERE, "operand of ~ must be of integer type");
6163                 }
6164                 return;
6165         }
6166
6167         expression->base.type = orig_type;
6168 }
6169
6170 static void semantic_dereference(unary_expression_t *expression)
6171 {
6172         type_t *const orig_type = expression->value->base.type;
6173         type_t *const type      = skip_typeref(orig_type);
6174         if(!is_type_pointer(type)) {
6175                 if (is_type_valid(type)) {
6176                         errorf(HERE, "Unary '*' needs pointer or arrray type, but type '%T' given", orig_type);
6177                 }
6178                 return;
6179         }
6180
6181         type_t *result_type   = type->pointer.points_to;
6182         result_type           = automatic_type_conversion(result_type);
6183         expression->base.type = result_type;
6184 }
6185
6186 /**
6187  * Check the semantic of the address taken expression.
6188  */
6189 static void semantic_take_addr(unary_expression_t *expression)
6190 {
6191         expression_t *value = expression->value;
6192         value->base.type    = revert_automatic_type_conversion(value);
6193
6194         type_t *orig_type = value->base.type;
6195         if(!is_type_valid(orig_type))
6196                 return;
6197
6198         if(value->kind == EXPR_REFERENCE) {
6199                 declaration_t *const declaration = value->reference.declaration;
6200                 if(declaration != NULL) {
6201                         if (declaration->storage_class == STORAGE_CLASS_REGISTER) {
6202                                 errorf(&expression->base.source_position,
6203                                        "address of register variable '%Y' requested",
6204                                        declaration->symbol);
6205                         }
6206                         declaration->address_taken = 1;
6207                 }
6208         }
6209
6210         expression->base.type = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
6211 }
6212
6213 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
6214 static expression_t *parse_##unexpression_type(unsigned precedence)            \
6215 {                                                                              \
6216         eat(token_type);                                                           \
6217                                                                                    \
6218         expression_t *unary_expression                                             \
6219                 = allocate_expression_zero(unexpression_type);                         \
6220         unary_expression->base.source_position = *HERE;                            \
6221         unary_expression->unary.value = parse_sub_expression(precedence);          \
6222                                                                                    \
6223         sfunc(&unary_expression->unary);                                           \
6224                                                                                    \
6225         return unary_expression;                                                   \
6226 }
6227
6228 CREATE_UNARY_EXPRESSION_PARSER('-', EXPR_UNARY_NEGATE,
6229                                semantic_unexpr_arithmetic)
6230 CREATE_UNARY_EXPRESSION_PARSER('+', EXPR_UNARY_PLUS,
6231                                semantic_unexpr_arithmetic)
6232 CREATE_UNARY_EXPRESSION_PARSER('!', EXPR_UNARY_NOT,
6233                                semantic_unexpr_scalar)
6234 CREATE_UNARY_EXPRESSION_PARSER('*', EXPR_UNARY_DEREFERENCE,
6235                                semantic_dereference)
6236 CREATE_UNARY_EXPRESSION_PARSER('&', EXPR_UNARY_TAKE_ADDRESS,
6237                                semantic_take_addr)
6238 CREATE_UNARY_EXPRESSION_PARSER('~', EXPR_UNARY_BITWISE_NEGATE,
6239                                semantic_unexpr_integer)
6240 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   EXPR_UNARY_PREFIX_INCREMENT,
6241                                semantic_incdec)
6242 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, EXPR_UNARY_PREFIX_DECREMENT,
6243                                semantic_incdec)
6244
6245 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
6246                                                sfunc)                         \
6247 static expression_t *parse_##unexpression_type(unsigned precedence,           \
6248                                                expression_t *left)            \
6249 {                                                                             \
6250         (void) precedence;                                                        \
6251         eat(token_type);                                                          \
6252                                                                               \
6253         expression_t *unary_expression                                            \
6254                 = allocate_expression_zero(unexpression_type);                        \
6255         unary_expression->unary.value = left;                                     \
6256                                                                                   \
6257         sfunc(&unary_expression->unary);                                          \
6258                                                                               \
6259         return unary_expression;                                                  \
6260 }
6261
6262 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,
6263                                        EXPR_UNARY_POSTFIX_INCREMENT,
6264                                        semantic_incdec)
6265 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS,
6266                                        EXPR_UNARY_POSTFIX_DECREMENT,
6267                                        semantic_incdec)
6268
6269 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
6270 {
6271         /* TODO: handle complex + imaginary types */
6272
6273         /* Â§ 6.3.1.8 Usual arithmetic conversions */
6274         if(type_left == type_long_double || type_right == type_long_double) {
6275                 return type_long_double;
6276         } else if(type_left == type_double || type_right == type_double) {
6277                 return type_double;
6278         } else if(type_left == type_float || type_right == type_float) {
6279                 return type_float;
6280         }
6281
6282         type_right = promote_integer(type_right);
6283         type_left  = promote_integer(type_left);
6284
6285         if(type_left == type_right)
6286                 return type_left;
6287
6288         bool signed_left  = is_type_signed(type_left);
6289         bool signed_right = is_type_signed(type_right);
6290         int  rank_left    = get_rank(type_left);
6291         int  rank_right   = get_rank(type_right);
6292         if(rank_left < rank_right) {
6293                 if(signed_left == signed_right || !signed_right) {
6294                         return type_right;
6295                 } else {
6296                         return type_left;
6297                 }
6298         } else {
6299                 if(signed_left == signed_right || !signed_left) {
6300                         return type_left;
6301                 } else {
6302                         return type_right;
6303                 }
6304         }
6305 }
6306
6307 /**
6308  * Check the semantic restrictions for a binary expression.
6309  */
6310 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
6311 {
6312         expression_t *const left            = expression->left;
6313         expression_t *const right           = expression->right;
6314         type_t       *const orig_type_left  = left->base.type;
6315         type_t       *const orig_type_right = right->base.type;
6316         type_t       *const type_left       = skip_typeref(orig_type_left);
6317         type_t       *const type_right      = skip_typeref(orig_type_right);
6318
6319         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
6320                 /* TODO: improve error message */
6321                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6322                         errorf(HERE, "operation needs arithmetic types");
6323                 }
6324                 return;
6325         }
6326
6327         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6328         expression->left      = create_implicit_cast(left, arithmetic_type);
6329         expression->right     = create_implicit_cast(right, arithmetic_type);
6330         expression->base.type = arithmetic_type;
6331 }
6332
6333 static void semantic_shift_op(binary_expression_t *expression)
6334 {
6335         expression_t *const left            = expression->left;
6336         expression_t *const right           = expression->right;
6337         type_t       *const orig_type_left  = left->base.type;
6338         type_t       *const orig_type_right = right->base.type;
6339         type_t       *      type_left       = skip_typeref(orig_type_left);
6340         type_t       *      type_right      = skip_typeref(orig_type_right);
6341
6342         if(!is_type_integer(type_left) || !is_type_integer(type_right)) {
6343                 /* TODO: improve error message */
6344                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6345                         errorf(HERE, "operation needs integer types");
6346                 }
6347                 return;
6348         }
6349
6350         type_left  = promote_integer(type_left);
6351         type_right = promote_integer(type_right);
6352
6353         expression->left      = create_implicit_cast(left, type_left);
6354         expression->right     = create_implicit_cast(right, type_right);
6355         expression->base.type = type_left;
6356 }
6357
6358 static void semantic_add(binary_expression_t *expression)
6359 {
6360         expression_t *const left            = expression->left;
6361         expression_t *const right           = expression->right;
6362         type_t       *const orig_type_left  = left->base.type;
6363         type_t       *const orig_type_right = right->base.type;
6364         type_t       *const type_left       = skip_typeref(orig_type_left);
6365         type_t       *const type_right      = skip_typeref(orig_type_right);
6366
6367         /* Â§ 5.6.5 */
6368         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6369                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6370                 expression->left  = create_implicit_cast(left, arithmetic_type);
6371                 expression->right = create_implicit_cast(right, arithmetic_type);
6372                 expression->base.type = arithmetic_type;
6373                 return;
6374         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
6375                 expression->base.type = type_left;
6376         } else if(is_type_pointer(type_right) && is_type_integer(type_left)) {
6377                 expression->base.type = type_right;
6378         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6379                 errorf(HERE, "invalid operands to binary + ('%T', '%T')", orig_type_left, orig_type_right);
6380         }
6381 }
6382
6383 static void semantic_sub(binary_expression_t *expression)
6384 {
6385         expression_t *const left            = expression->left;
6386         expression_t *const right           = expression->right;
6387         type_t       *const orig_type_left  = left->base.type;
6388         type_t       *const orig_type_right = right->base.type;
6389         type_t       *const type_left       = skip_typeref(orig_type_left);
6390         type_t       *const type_right      = skip_typeref(orig_type_right);
6391
6392         /* Â§ 5.6.5 */
6393         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6394                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6395                 expression->left        = create_implicit_cast(left, arithmetic_type);
6396                 expression->right       = create_implicit_cast(right, arithmetic_type);
6397                 expression->base.type =  arithmetic_type;
6398                 return;
6399         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
6400                 expression->base.type = type_left;
6401         } else if(is_type_pointer(type_left) && is_type_pointer(type_right)) {
6402                 if(!pointers_compatible(type_left, type_right)) {
6403                         errorf(HERE,
6404                                "pointers to incompatible objects to binary '-' ('%T', '%T')",
6405                                orig_type_left, orig_type_right);
6406                 } else {
6407                         expression->base.type = type_ptrdiff_t;
6408                 }
6409         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6410                 errorf(HERE, "invalid operands to binary '-' ('%T', '%T')",
6411                        orig_type_left, orig_type_right);
6412         }
6413 }
6414
6415 /**
6416  * Check the semantics of comparison expressions.
6417  *
6418  * @param expression   The expression to check.
6419  */
6420 static void semantic_comparison(binary_expression_t *expression)
6421 {
6422         expression_t *left            = expression->left;
6423         expression_t *right           = expression->right;
6424         type_t       *orig_type_left  = left->base.type;
6425         type_t       *orig_type_right = right->base.type;
6426
6427         type_t *type_left  = skip_typeref(orig_type_left);
6428         type_t *type_right = skip_typeref(orig_type_right);
6429
6430         /* TODO non-arithmetic types */
6431         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6432                 /* test for signed vs unsigned compares */
6433                 if (warning.sign_compare &&
6434                     (expression->base.kind != EXPR_BINARY_EQUAL &&
6435                      expression->base.kind != EXPR_BINARY_NOTEQUAL) &&
6436                     (is_type_signed(type_left) != is_type_signed(type_right))) {
6437
6438                         /* check if 1 of the operands is a constant, in this case we just
6439                          * check wether we can safely represent the resulting constant in
6440                          * the type of the other operand. */
6441                         expression_t *const_expr = NULL;
6442                         expression_t *other_expr = NULL;
6443
6444                         if(is_constant_expression(left)) {
6445                                 const_expr = left;
6446                                 other_expr = right;
6447                         } else if(is_constant_expression(right)) {
6448                                 const_expr = right;
6449                                 other_expr = left;
6450                         }
6451
6452                         if(const_expr != NULL) {
6453                                 type_t *other_type = skip_typeref(other_expr->base.type);
6454                                 long    val        = fold_constant(const_expr);
6455                                 /* TODO: check if val can be represented by other_type */
6456                                 (void) other_type;
6457                                 (void) val;
6458                         }
6459                         warningf(&expression->base.source_position,
6460                                  "comparison between signed and unsigned");
6461                 }
6462                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6463                 expression->left        = create_implicit_cast(left, arithmetic_type);
6464                 expression->right       = create_implicit_cast(right, arithmetic_type);
6465                 expression->base.type   = arithmetic_type;
6466                 if (warning.float_equal &&
6467                     (expression->base.kind == EXPR_BINARY_EQUAL ||
6468                      expression->base.kind == EXPR_BINARY_NOTEQUAL) &&
6469                     is_type_float(arithmetic_type)) {
6470                         warningf(&expression->base.source_position,
6471                                  "comparing floating point with == or != is unsafe");
6472                 }
6473         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
6474                 /* TODO check compatibility */
6475         } else if (is_type_pointer(type_left)) {
6476                 expression->right = create_implicit_cast(right, type_left);
6477         } else if (is_type_pointer(type_right)) {
6478                 expression->left = create_implicit_cast(left, type_right);
6479         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6480                 type_error_incompatible("invalid operands in comparison",
6481                                         &expression->base.source_position,
6482                                         type_left, type_right);
6483         }
6484         expression->base.type = type_int;
6485 }
6486
6487 /**
6488  * Checks if a compound type has constant fields.
6489  */
6490 static bool has_const_fields(const compound_type_t *type)
6491 {
6492         const scope_t       *scope       = &type->declaration->scope;
6493         const declaration_t *declaration = scope->declarations;
6494
6495         for (; declaration != NULL; declaration = declaration->next) {
6496                 if (declaration->namespc != NAMESPACE_NORMAL)
6497                         continue;
6498
6499                 const type_t *decl_type = skip_typeref(declaration->type);
6500                 if (decl_type->base.qualifiers & TYPE_QUALIFIER_CONST)
6501                         return true;
6502         }
6503         /* TODO */
6504         return false;
6505 }
6506
6507 static bool is_valid_assignment_lhs(expression_t const* const left)
6508 {
6509         type_t *const orig_type_left = revert_automatic_type_conversion(left);
6510         type_t *const type_left      = skip_typeref(orig_type_left);
6511
6512         switch (left->kind)  {
6513                 case EXPR_REFERENCE:
6514                 case EXPR_ARRAY_ACCESS:
6515                 case EXPR_SELECT:
6516                 case EXPR_UNARY_DEREFERENCE:
6517                         break;
6518
6519                 default:
6520                         errorf(HERE, "left hand side '%E' of assignment is not an lvalue", left);
6521                         return false;
6522         }
6523
6524         if (is_type_array(type_left)) {
6525                 errorf(HERE, "cannot assign to arrays ('%E')", left);
6526                 return false;
6527         }
6528         if (type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
6529                 errorf(HERE, "assignment to readonly location '%E' (type '%T')", left,
6530                        orig_type_left);
6531                 return false;
6532         }
6533         if (is_type_incomplete(type_left)) {
6534                 errorf(HERE, "left-hand side '%E' of assignment has incomplete type '%T'",
6535                        left, orig_type_left);
6536                 return false;
6537         }
6538         if (is_type_compound(type_left) && has_const_fields(&type_left->compound)) {
6539                 errorf(HERE, "cannot assign to '%E' because compound type '%T' has readonly fields",
6540                        left, orig_type_left);
6541                 return false;
6542         }
6543
6544         return true;
6545 }
6546
6547 static void semantic_arithmetic_assign(binary_expression_t *expression)
6548 {
6549         expression_t *left            = expression->left;
6550         expression_t *right           = expression->right;
6551         type_t       *orig_type_left  = left->base.type;
6552         type_t       *orig_type_right = right->base.type;
6553
6554         if (!is_valid_assignment_lhs(left))
6555                 return;
6556
6557         type_t *type_left  = skip_typeref(orig_type_left);
6558         type_t *type_right = skip_typeref(orig_type_right);
6559
6560         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
6561                 /* TODO: improve error message */
6562                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6563                         errorf(HERE, "operation needs arithmetic types");
6564                 }
6565                 return;
6566         }
6567
6568         /* combined instructions are tricky. We can't create an implicit cast on
6569          * the left side, because we need the uncasted form for the store.
6570          * The ast2firm pass has to know that left_type must be right_type
6571          * for the arithmetic operation and create a cast by itself */
6572         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6573         expression->right       = create_implicit_cast(right, arithmetic_type);
6574         expression->base.type   = type_left;
6575 }
6576
6577 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
6578 {
6579         expression_t *const left            = expression->left;
6580         expression_t *const right           = expression->right;
6581         type_t       *const orig_type_left  = left->base.type;
6582         type_t       *const orig_type_right = right->base.type;
6583         type_t       *const type_left       = skip_typeref(orig_type_left);
6584         type_t       *const type_right      = skip_typeref(orig_type_right);
6585
6586         if (!is_valid_assignment_lhs(left))
6587                 return;
6588
6589         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6590                 /* combined instructions are tricky. We can't create an implicit cast on
6591                  * the left side, because we need the uncasted form for the store.
6592                  * The ast2firm pass has to know that left_type must be right_type
6593                  * for the arithmetic operation and create a cast by itself */
6594                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
6595                 expression->right     = create_implicit_cast(right, arithmetic_type);
6596                 expression->base.type = type_left;
6597         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
6598                 expression->base.type = type_left;
6599         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6600                 errorf(HERE, "incompatible types '%T' and '%T' in assignment", orig_type_left, orig_type_right);
6601         }
6602 }
6603
6604 /**
6605  * Check the semantic restrictions of a logical expression.
6606  */
6607 static void semantic_logical_op(binary_expression_t *expression)
6608 {
6609         expression_t *const left            = expression->left;
6610         expression_t *const right           = expression->right;
6611         type_t       *const orig_type_left  = left->base.type;
6612         type_t       *const orig_type_right = right->base.type;
6613         type_t       *const type_left       = skip_typeref(orig_type_left);
6614         type_t       *const type_right      = skip_typeref(orig_type_right);
6615
6616         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
6617                 /* TODO: improve error message */
6618                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6619                         errorf(HERE, "operation needs scalar types");
6620                 }
6621                 return;
6622         }
6623
6624         expression->base.type = type_int;
6625 }
6626
6627 /**
6628  * Check the semantic restrictions of a binary assign expression.
6629  */
6630 static void semantic_binexpr_assign(binary_expression_t *expression)
6631 {
6632         expression_t *left           = expression->left;
6633         type_t       *orig_type_left = left->base.type;
6634
6635         type_t *type_left = revert_automatic_type_conversion(left);
6636         type_left         = skip_typeref(orig_type_left);
6637
6638         if (!is_valid_assignment_lhs(left))
6639                 return;
6640
6641         type_t *const res_type = semantic_assign(orig_type_left, expression->right,
6642                         "assignment", &left->base.source_position);
6643         if (res_type == NULL) {
6644                 errorf(&expression->base.source_position,
6645                         "cannot assign to '%T' from '%T'",
6646                         orig_type_left, expression->right->base.type);
6647         } else {
6648                 expression->right = create_implicit_cast(expression->right, res_type);
6649         }
6650
6651         expression->base.type = orig_type_left;
6652 }
6653
6654 /**
6655  * Determine if the outermost operation (or parts thereof) of the given
6656  * expression has no effect in order to generate a warning about this fact.
6657  * Therefore in some cases this only examines some of the operands of the
6658  * expression (see comments in the function and examples below).
6659  * Examples:
6660  *   f() + 23;    // warning, because + has no effect
6661  *   x || f();    // no warning, because x controls execution of f()
6662  *   x ? y : f(); // warning, because y has no effect
6663  *   (void)x;     // no warning to be able to suppress the warning
6664  * This function can NOT be used for an "expression has definitely no effect"-
6665  * analysis. */
6666 static bool expression_has_effect(const expression_t *const expr)
6667 {
6668         switch (expr->kind) {
6669                 case EXPR_UNKNOWN:                   break;
6670                 case EXPR_INVALID:                   return true; /* do NOT warn */
6671                 case EXPR_REFERENCE:                 return false;
6672                 /* suppress the warning for microsoft __noop operations */
6673                 case EXPR_CONST:                     return expr->conste.is_ms_noop;
6674                 case EXPR_CHARACTER_CONSTANT:        return false;
6675                 case EXPR_WIDE_CHARACTER_CONSTANT:   return false;
6676                 case EXPR_STRING_LITERAL:            return false;
6677                 case EXPR_WIDE_STRING_LITERAL:       return false;
6678
6679                 case EXPR_CALL: {
6680                         const call_expression_t *const call = &expr->call;
6681                         if (call->function->kind != EXPR_BUILTIN_SYMBOL)
6682                                 return true;
6683
6684                         switch (call->function->builtin_symbol.symbol->ID) {
6685                                 case T___builtin_va_end: return true;
6686                                 default:                 return false;
6687                         }
6688                 }
6689
6690                 /* Generate the warning if either the left or right hand side of a
6691                  * conditional expression has no effect */
6692                 case EXPR_CONDITIONAL: {
6693                         const conditional_expression_t *const cond = &expr->conditional;
6694                         return
6695                                 expression_has_effect(cond->true_expression) &&
6696                                 expression_has_effect(cond->false_expression);
6697                 }
6698
6699                 case EXPR_SELECT:                    return false;
6700                 case EXPR_ARRAY_ACCESS:              return false;
6701                 case EXPR_SIZEOF:                    return false;
6702                 case EXPR_CLASSIFY_TYPE:             return false;
6703                 case EXPR_ALIGNOF:                   return false;
6704
6705                 case EXPR_FUNCNAME:                  return false;
6706                 case EXPR_BUILTIN_SYMBOL:            break; /* handled in EXPR_CALL */
6707                 case EXPR_BUILTIN_CONSTANT_P:        return false;
6708                 case EXPR_BUILTIN_PREFETCH:          return true;
6709                 case EXPR_OFFSETOF:                  return false;
6710                 case EXPR_VA_START:                  return true;
6711                 case EXPR_VA_ARG:                    return true;
6712                 case EXPR_STATEMENT:                 return true; // TODO
6713                 case EXPR_COMPOUND_LITERAL:          return false;
6714
6715                 case EXPR_UNARY_NEGATE:              return false;
6716                 case EXPR_UNARY_PLUS:                return false;
6717                 case EXPR_UNARY_BITWISE_NEGATE:      return false;
6718                 case EXPR_UNARY_NOT:                 return false;
6719                 case EXPR_UNARY_DEREFERENCE:         return false;
6720                 case EXPR_UNARY_TAKE_ADDRESS:        return false;
6721                 case EXPR_UNARY_POSTFIX_INCREMENT:   return true;
6722                 case EXPR_UNARY_POSTFIX_DECREMENT:   return true;
6723                 case EXPR_UNARY_PREFIX_INCREMENT:    return true;
6724                 case EXPR_UNARY_PREFIX_DECREMENT:    return true;
6725
6726                 /* Treat void casts as if they have an effect in order to being able to
6727                  * suppress the warning */
6728                 case EXPR_UNARY_CAST: {
6729                         type_t *const type = skip_typeref(expr->base.type);
6730                         return is_type_atomic(type, ATOMIC_TYPE_VOID);
6731                 }
6732
6733                 case EXPR_UNARY_CAST_IMPLICIT:       return true;
6734                 case EXPR_UNARY_ASSUME:              return true;
6735
6736                 case EXPR_BINARY_ADD:                return false;
6737                 case EXPR_BINARY_SUB:                return false;
6738                 case EXPR_BINARY_MUL:                return false;
6739                 case EXPR_BINARY_DIV:                return false;
6740                 case EXPR_BINARY_MOD:                return false;
6741                 case EXPR_BINARY_EQUAL:              return false;
6742                 case EXPR_BINARY_NOTEQUAL:           return false;
6743                 case EXPR_BINARY_LESS:               return false;
6744                 case EXPR_BINARY_LESSEQUAL:          return false;
6745                 case EXPR_BINARY_GREATER:            return false;
6746                 case EXPR_BINARY_GREATEREQUAL:       return false;
6747                 case EXPR_BINARY_BITWISE_AND:        return false;
6748                 case EXPR_BINARY_BITWISE_OR:         return false;
6749                 case EXPR_BINARY_BITWISE_XOR:        return false;
6750                 case EXPR_BINARY_SHIFTLEFT:          return false;
6751                 case EXPR_BINARY_SHIFTRIGHT:         return false;
6752                 case EXPR_BINARY_ASSIGN:             return true;
6753                 case EXPR_BINARY_MUL_ASSIGN:         return true;
6754                 case EXPR_BINARY_DIV_ASSIGN:         return true;
6755                 case EXPR_BINARY_MOD_ASSIGN:         return true;
6756                 case EXPR_BINARY_ADD_ASSIGN:         return true;
6757                 case EXPR_BINARY_SUB_ASSIGN:         return true;
6758                 case EXPR_BINARY_SHIFTLEFT_ASSIGN:   return true;
6759                 case EXPR_BINARY_SHIFTRIGHT_ASSIGN:  return true;
6760                 case EXPR_BINARY_BITWISE_AND_ASSIGN: return true;
6761                 case EXPR_BINARY_BITWISE_XOR_ASSIGN: return true;
6762                 case EXPR_BINARY_BITWISE_OR_ASSIGN:  return true;
6763
6764                 /* Only examine the right hand side of && and ||, because the left hand
6765                  * side already has the effect of controlling the execution of the right
6766                  * hand side */
6767                 case EXPR_BINARY_LOGICAL_AND:
6768                 case EXPR_BINARY_LOGICAL_OR:
6769                 /* Only examine the right hand side of a comma expression, because the left
6770                  * hand side has a separate warning */
6771                 case EXPR_BINARY_COMMA:
6772                         return expression_has_effect(expr->binary.right);
6773
6774                 case EXPR_BINARY_BUILTIN_EXPECT:     return true;
6775                 case EXPR_BINARY_ISGREATER:          return false;
6776                 case EXPR_BINARY_ISGREATEREQUAL:     return false;
6777                 case EXPR_BINARY_ISLESS:             return false;
6778                 case EXPR_BINARY_ISLESSEQUAL:        return false;
6779                 case EXPR_BINARY_ISLESSGREATER:      return false;
6780                 case EXPR_BINARY_ISUNORDERED:        return false;
6781         }
6782
6783         internal_errorf(HERE, "unexpected expression");
6784 }
6785
6786 static void semantic_comma(binary_expression_t *expression)
6787 {
6788         if (warning.unused_value) {
6789                 const expression_t *const left = expression->left;
6790                 if (!expression_has_effect(left)) {
6791                         warningf(&left->base.source_position,
6792                                  "left-hand operand of comma expression has no effect");
6793                 }
6794         }
6795         expression->base.type = expression->right->base.type;
6796 }
6797
6798 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, sfunc, lr)  \
6799 static expression_t *parse_##binexpression_type(unsigned precedence,      \
6800                                                 expression_t *left)       \
6801 {                                                                         \
6802         eat(token_type);                                                      \
6803         source_position_t pos = *HERE;                                        \
6804                                                                           \
6805         expression_t *right = parse_sub_expression(precedence + lr);          \
6806                                                                           \
6807         expression_t *binexpr = allocate_expression_zero(binexpression_type); \
6808         binexpr->base.source_position = pos;                                  \
6809         binexpr->binary.left  = left;                                         \
6810         binexpr->binary.right = right;                                        \
6811         sfunc(&binexpr->binary);                                              \
6812                                                                           \
6813         return binexpr;                                                       \
6814 }
6815
6816 CREATE_BINEXPR_PARSER(',', EXPR_BINARY_COMMA,    semantic_comma, 1)
6817 CREATE_BINEXPR_PARSER('*', EXPR_BINARY_MUL,      semantic_binexpr_arithmetic, 1)
6818 CREATE_BINEXPR_PARSER('/', EXPR_BINARY_DIV,      semantic_binexpr_arithmetic, 1)
6819 CREATE_BINEXPR_PARSER('%', EXPR_BINARY_MOD,      semantic_binexpr_arithmetic, 1)
6820 CREATE_BINEXPR_PARSER('+', EXPR_BINARY_ADD,      semantic_add, 1)
6821 CREATE_BINEXPR_PARSER('-', EXPR_BINARY_SUB,      semantic_sub, 1)
6822 CREATE_BINEXPR_PARSER('<', EXPR_BINARY_LESS,     semantic_comparison, 1)
6823 CREATE_BINEXPR_PARSER('>', EXPR_BINARY_GREATER,  semantic_comparison, 1)
6824 CREATE_BINEXPR_PARSER('=', EXPR_BINARY_ASSIGN,   semantic_binexpr_assign, 0)
6825
6826 CREATE_BINEXPR_PARSER(T_EQUALEQUAL,           EXPR_BINARY_EQUAL,
6827                       semantic_comparison, 1)
6828 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, EXPR_BINARY_NOTEQUAL,
6829                       semantic_comparison, 1)
6830 CREATE_BINEXPR_PARSER(T_LESSEQUAL,            EXPR_BINARY_LESSEQUAL,
6831                       semantic_comparison, 1)
6832 CREATE_BINEXPR_PARSER(T_GREATEREQUAL,         EXPR_BINARY_GREATEREQUAL,
6833                       semantic_comparison, 1)
6834
6835 CREATE_BINEXPR_PARSER('&', EXPR_BINARY_BITWISE_AND,
6836                       semantic_binexpr_arithmetic, 1)
6837 CREATE_BINEXPR_PARSER('|', EXPR_BINARY_BITWISE_OR,
6838                       semantic_binexpr_arithmetic, 1)
6839 CREATE_BINEXPR_PARSER('^', EXPR_BINARY_BITWISE_XOR,
6840                       semantic_binexpr_arithmetic, 1)
6841 CREATE_BINEXPR_PARSER(T_ANDAND, EXPR_BINARY_LOGICAL_AND,
6842                       semantic_logical_op, 1)
6843 CREATE_BINEXPR_PARSER(T_PIPEPIPE, EXPR_BINARY_LOGICAL_OR,
6844                       semantic_logical_op, 1)
6845 CREATE_BINEXPR_PARSER(T_LESSLESS, EXPR_BINARY_SHIFTLEFT,
6846                       semantic_shift_op, 1)
6847 CREATE_BINEXPR_PARSER(T_GREATERGREATER, EXPR_BINARY_SHIFTRIGHT,
6848                       semantic_shift_op, 1)
6849 CREATE_BINEXPR_PARSER(T_PLUSEQUAL, EXPR_BINARY_ADD_ASSIGN,
6850                       semantic_arithmetic_addsubb_assign, 0)
6851 CREATE_BINEXPR_PARSER(T_MINUSEQUAL, EXPR_BINARY_SUB_ASSIGN,
6852                       semantic_arithmetic_addsubb_assign, 0)
6853 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL, EXPR_BINARY_MUL_ASSIGN,
6854                       semantic_arithmetic_assign, 0)
6855 CREATE_BINEXPR_PARSER(T_SLASHEQUAL, EXPR_BINARY_DIV_ASSIGN,
6856                       semantic_arithmetic_assign, 0)
6857 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL, EXPR_BINARY_MOD_ASSIGN,
6858                       semantic_arithmetic_assign, 0)
6859 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL, EXPR_BINARY_SHIFTLEFT_ASSIGN,
6860                       semantic_arithmetic_assign, 0)
6861 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL, EXPR_BINARY_SHIFTRIGHT_ASSIGN,
6862                       semantic_arithmetic_assign, 0)
6863 CREATE_BINEXPR_PARSER(T_ANDEQUAL, EXPR_BINARY_BITWISE_AND_ASSIGN,
6864                       semantic_arithmetic_assign, 0)
6865 CREATE_BINEXPR_PARSER(T_PIPEEQUAL, EXPR_BINARY_BITWISE_OR_ASSIGN,
6866                       semantic_arithmetic_assign, 0)
6867 CREATE_BINEXPR_PARSER(T_CARETEQUAL, EXPR_BINARY_BITWISE_XOR_ASSIGN,
6868                       semantic_arithmetic_assign, 0)
6869
6870 static expression_t *parse_sub_expression(unsigned precedence)
6871 {
6872         if(token.type < 0) {
6873                 return expected_expression_error();
6874         }
6875
6876         expression_parser_function_t *parser
6877                 = &expression_parsers[token.type];
6878         source_position_t             source_position = token.source_position;
6879         expression_t                 *left;
6880
6881         if(parser->parser != NULL) {
6882                 left = parser->parser(parser->precedence);
6883         } else {
6884                 left = parse_primary_expression();
6885         }
6886         assert(left != NULL);
6887         left->base.source_position = source_position;
6888
6889         while(true) {
6890                 if(token.type < 0) {
6891                         return expected_expression_error();
6892                 }
6893
6894                 parser = &expression_parsers[token.type];
6895                 if(parser->infix_parser == NULL)
6896                         break;
6897                 if(parser->infix_precedence < precedence)
6898                         break;
6899
6900                 left = parser->infix_parser(parser->infix_precedence, left);
6901
6902                 assert(left != NULL);
6903                 assert(left->kind != EXPR_UNKNOWN);
6904                 left->base.source_position = source_position;
6905         }
6906
6907         return left;
6908 }
6909
6910 /**
6911  * Parse an expression.
6912  */
6913 static expression_t *parse_expression(void)
6914 {
6915         return parse_sub_expression(1);
6916 }
6917
6918 /**
6919  * Register a parser for a prefix-like operator with given precedence.
6920  *
6921  * @param parser      the parser function
6922  * @param token_type  the token type of the prefix token
6923  * @param precedence  the precedence of the operator
6924  */
6925 static void register_expression_parser(parse_expression_function parser,
6926                                        int token_type, unsigned precedence)
6927 {
6928         expression_parser_function_t *entry = &expression_parsers[token_type];
6929
6930         if(entry->parser != NULL) {
6931                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
6932                 panic("trying to register multiple expression parsers for a token");
6933         }
6934         entry->parser     = parser;
6935         entry->precedence = precedence;
6936 }
6937
6938 /**
6939  * Register a parser for an infix operator with given precedence.
6940  *
6941  * @param parser      the parser function
6942  * @param token_type  the token type of the infix operator
6943  * @param precedence  the precedence of the operator
6944  */
6945 static void register_infix_parser(parse_expression_infix_function parser,
6946                 int token_type, unsigned precedence)
6947 {
6948         expression_parser_function_t *entry = &expression_parsers[token_type];
6949
6950         if(entry->infix_parser != NULL) {
6951                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
6952                 panic("trying to register multiple infix expression parsers for a "
6953                       "token");
6954         }
6955         entry->infix_parser     = parser;
6956         entry->infix_precedence = precedence;
6957 }
6958
6959 /**
6960  * Initialize the expression parsers.
6961  */
6962 static void init_expression_parsers(void)
6963 {
6964         memset(&expression_parsers, 0, sizeof(expression_parsers));
6965
6966         register_infix_parser(parse_array_expression,         '[',              30);
6967         register_infix_parser(parse_call_expression,          '(',              30);
6968         register_infix_parser(parse_select_expression,        '.',              30);
6969         register_infix_parser(parse_select_expression,        T_MINUSGREATER,   30);
6970         register_infix_parser(parse_EXPR_UNARY_POSTFIX_INCREMENT,
6971                                                               T_PLUSPLUS,       30);
6972         register_infix_parser(parse_EXPR_UNARY_POSTFIX_DECREMENT,
6973                                                               T_MINUSMINUS,     30);
6974
6975         register_infix_parser(parse_EXPR_BINARY_MUL,          '*',              16);
6976         register_infix_parser(parse_EXPR_BINARY_DIV,          '/',              16);
6977         register_infix_parser(parse_EXPR_BINARY_MOD,          '%',              16);
6978         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT,    T_LESSLESS,       16);
6979         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT,   T_GREATERGREATER, 16);
6980         register_infix_parser(parse_EXPR_BINARY_ADD,          '+',              15);
6981         register_infix_parser(parse_EXPR_BINARY_SUB,          '-',              15);
6982         register_infix_parser(parse_EXPR_BINARY_LESS,         '<',              14);
6983         register_infix_parser(parse_EXPR_BINARY_GREATER,      '>',              14);
6984         register_infix_parser(parse_EXPR_BINARY_LESSEQUAL,    T_LESSEQUAL,      14);
6985         register_infix_parser(parse_EXPR_BINARY_GREATEREQUAL, T_GREATEREQUAL,   14);
6986         register_infix_parser(parse_EXPR_BINARY_EQUAL,        T_EQUALEQUAL,     13);
6987         register_infix_parser(parse_EXPR_BINARY_NOTEQUAL,
6988                                                     T_EXCLAMATIONMARKEQUAL, 13);
6989         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND,  '&',              12);
6990         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR,  '^',              11);
6991         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR,   '|',              10);
6992         register_infix_parser(parse_EXPR_BINARY_LOGICAL_AND,  T_ANDAND,          9);
6993         register_infix_parser(parse_EXPR_BINARY_LOGICAL_OR,   T_PIPEPIPE,        8);
6994         register_infix_parser(parse_conditional_expression,   '?',               7);
6995         register_infix_parser(parse_EXPR_BINARY_ASSIGN,       '=',               2);
6996         register_infix_parser(parse_EXPR_BINARY_ADD_ASSIGN,   T_PLUSEQUAL,       2);
6997         register_infix_parser(parse_EXPR_BINARY_SUB_ASSIGN,   T_MINUSEQUAL,      2);
6998         register_infix_parser(parse_EXPR_BINARY_MUL_ASSIGN,   T_ASTERISKEQUAL,   2);
6999         register_infix_parser(parse_EXPR_BINARY_DIV_ASSIGN,   T_SLASHEQUAL,      2);
7000         register_infix_parser(parse_EXPR_BINARY_MOD_ASSIGN,   T_PERCENTEQUAL,    2);
7001         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT_ASSIGN,
7002                                                                 T_LESSLESSEQUAL, 2);
7003         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT_ASSIGN,
7004                                                           T_GREATERGREATEREQUAL, 2);
7005         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND_ASSIGN,
7006                                                                      T_ANDEQUAL, 2);
7007         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR_ASSIGN,
7008                                                                     T_PIPEEQUAL, 2);
7009         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR_ASSIGN,
7010                                                                    T_CARETEQUAL, 2);
7011
7012         register_infix_parser(parse_EXPR_BINARY_COMMA,        ',',               1);
7013
7014         register_expression_parser(parse_EXPR_UNARY_NEGATE,           '-',      25);
7015         register_expression_parser(parse_EXPR_UNARY_PLUS,             '+',      25);
7016         register_expression_parser(parse_EXPR_UNARY_NOT,              '!',      25);
7017         register_expression_parser(parse_EXPR_UNARY_BITWISE_NEGATE,   '~',      25);
7018         register_expression_parser(parse_EXPR_UNARY_DEREFERENCE,      '*',      25);
7019         register_expression_parser(parse_EXPR_UNARY_TAKE_ADDRESS,     '&',      25);
7020         register_expression_parser(parse_EXPR_UNARY_PREFIX_INCREMENT,
7021                                                                   T_PLUSPLUS,   25);
7022         register_expression_parser(parse_EXPR_UNARY_PREFIX_DECREMENT,
7023                                                                   T_MINUSMINUS, 25);
7024         register_expression_parser(parse_sizeof,                      T_sizeof, 25);
7025         register_expression_parser(parse_alignof,                T___alignof__, 25);
7026         register_expression_parser(parse_extension,            T___extension__, 25);
7027         register_expression_parser(parse_builtin_classify_type,
7028                                                      T___builtin_classify_type, 25);
7029 }
7030
7031 /**
7032  * Parse a asm statement constraints specification.
7033  */
7034 static asm_constraint_t *parse_asm_constraints(void)
7035 {
7036         asm_constraint_t *result = NULL;
7037         asm_constraint_t *last   = NULL;
7038
7039         while(token.type == T_STRING_LITERAL || token.type == '[') {
7040                 asm_constraint_t *constraint = allocate_ast_zero(sizeof(constraint[0]));
7041                 memset(constraint, 0, sizeof(constraint[0]));
7042
7043                 if(token.type == '[') {
7044                         eat('[');
7045                         if(token.type != T_IDENTIFIER) {
7046                                 parse_error_expected("while parsing asm constraint",
7047                                                      T_IDENTIFIER, NULL);
7048                                 return NULL;
7049                         }
7050                         constraint->symbol = token.v.symbol;
7051
7052                         expect(']');
7053                 }
7054
7055                 constraint->constraints = parse_string_literals();
7056                 expect('(');
7057                 constraint->expression = parse_expression();
7058                 expect(')');
7059
7060                 if(last != NULL) {
7061                         last->next = constraint;
7062                 } else {
7063                         result = constraint;
7064                 }
7065                 last = constraint;
7066
7067                 if(token.type != ',')
7068                         break;
7069                 eat(',');
7070         }
7071
7072         return result;
7073 end_error:
7074         return NULL;
7075 }
7076
7077 /**
7078  * Parse a asm statement clobber specification.
7079  */
7080 static asm_clobber_t *parse_asm_clobbers(void)
7081 {
7082         asm_clobber_t *result = NULL;
7083         asm_clobber_t *last   = NULL;
7084
7085         while(token.type == T_STRING_LITERAL) {
7086                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
7087                 clobber->clobber       = parse_string_literals();
7088
7089                 if(last != NULL) {
7090                         last->next = clobber;
7091                 } else {
7092                         result = clobber;
7093                 }
7094                 last = clobber;
7095
7096                 if(token.type != ',')
7097                         break;
7098                 eat(',');
7099         }
7100
7101         return result;
7102 }
7103
7104 /**
7105  * Parse an asm statement.
7106  */
7107 static statement_t *parse_asm_statement(void)
7108 {
7109         eat(T_asm);
7110
7111         statement_t *statement          = allocate_statement_zero(STATEMENT_ASM);
7112         statement->base.source_position = token.source_position;
7113
7114         asm_statement_t *asm_statement = &statement->asms;
7115
7116         if(token.type == T_volatile) {
7117                 next_token();
7118                 asm_statement->is_volatile = true;
7119         }
7120
7121         expect('(');
7122         add_anchor_token(')');
7123         add_anchor_token(':');
7124         asm_statement->asm_text = parse_string_literals();
7125
7126         if(token.type != ':') {
7127                 rem_anchor_token(':');
7128                 goto end_of_asm;
7129         }
7130         eat(':');
7131
7132         asm_statement->inputs = parse_asm_constraints();
7133         if(token.type != ':') {
7134                 rem_anchor_token(':');
7135                 goto end_of_asm;
7136         }
7137         eat(':');
7138
7139         asm_statement->outputs = parse_asm_constraints();
7140         if(token.type != ':') {
7141                 rem_anchor_token(':');
7142                 goto end_of_asm;
7143         }
7144         rem_anchor_token(':');
7145         eat(':');
7146
7147         asm_statement->clobbers = parse_asm_clobbers();
7148
7149 end_of_asm:
7150         rem_anchor_token(')');
7151         expect(')');
7152         expect(';');
7153         return statement;
7154 end_error:
7155         return create_invalid_statement();
7156 }
7157
7158 /**
7159  * Parse a case statement.
7160  */
7161 static statement_t *parse_case_statement(void)
7162 {
7163         eat(T_case);
7164
7165         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
7166
7167         statement->base.source_position  = token.source_position;
7168         statement->case_label.expression = parse_expression();
7169
7170         if (c_mode & _GNUC) {
7171                 if (token.type == T_DOTDOTDOT) {
7172                         next_token();
7173                         statement->case_label.end_range = parse_expression();
7174                 }
7175         }
7176
7177         expect(':');
7178
7179         if (! is_constant_expression(statement->case_label.expression)) {
7180                 errorf(&statement->base.source_position,
7181                        "case label does not reduce to an integer constant");
7182         } else {
7183                 /* TODO: check if the case label is already known */
7184                 if (current_switch != NULL) {
7185                         /* link all cases into the switch statement */
7186                         if (current_switch->last_case == NULL) {
7187                                 current_switch->first_case =
7188                                 current_switch->last_case  = &statement->case_label;
7189                         } else {
7190                                 current_switch->last_case->next = &statement->case_label;
7191                         }
7192                 } else {
7193                         errorf(&statement->base.source_position,
7194                                "case label not within a switch statement");
7195                 }
7196         }
7197         statement->case_label.statement = parse_statement();
7198
7199         return statement;
7200 end_error:
7201         return create_invalid_statement();
7202 }
7203
7204 /**
7205  * Finds an existing default label of a switch statement.
7206  */
7207 static case_label_statement_t *
7208 find_default_label(const switch_statement_t *statement)
7209 {
7210         case_label_statement_t *label = statement->first_case;
7211         for ( ; label != NULL; label = label->next) {
7212                 if (label->expression == NULL)
7213                         return label;
7214         }
7215         return NULL;
7216 }
7217
7218 /**
7219  * Parse a default statement.
7220  */
7221 static statement_t *parse_default_statement(void)
7222 {
7223         eat(T_default);
7224
7225         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
7226
7227         statement->base.source_position = token.source_position;
7228
7229         expect(':');
7230         if (current_switch != NULL) {
7231                 const case_label_statement_t *def_label = find_default_label(current_switch);
7232                 if (def_label != NULL) {
7233                         errorf(HERE, "multiple default labels in one switch (previous declared %P)",
7234                                &def_label->base.source_position);
7235                 } else {
7236                         /* link all cases into the switch statement */
7237                         if (current_switch->last_case == NULL) {
7238                                 current_switch->first_case =
7239                                         current_switch->last_case  = &statement->case_label;
7240                         } else {
7241                                 current_switch->last_case->next = &statement->case_label;
7242                         }
7243                 }
7244         } else {
7245                 errorf(&statement->base.source_position,
7246                         "'default' label not within a switch statement");
7247         }
7248         statement->case_label.statement = parse_statement();
7249
7250         return statement;
7251 end_error:
7252         return create_invalid_statement();
7253 }
7254
7255 /**
7256  * Return the declaration for a given label symbol or create a new one.
7257  */
7258 static declaration_t *get_label(symbol_t *symbol)
7259 {
7260         declaration_t *candidate = get_declaration(symbol, NAMESPACE_LABEL);
7261         assert(current_function != NULL);
7262         /* if we found a label in the same function, then we already created the
7263          * declaration */
7264         if(candidate != NULL
7265                         && candidate->parent_scope == &current_function->scope) {
7266                 return candidate;
7267         }
7268
7269         /* otherwise we need to create a new one */
7270         declaration_t *const declaration = allocate_declaration_zero();
7271         declaration->namespc       = NAMESPACE_LABEL;
7272         declaration->symbol        = symbol;
7273
7274         label_push(declaration);
7275
7276         return declaration;
7277 }
7278
7279 /**
7280  * Parse a label statement.
7281  */
7282 static statement_t *parse_label_statement(void)
7283 {
7284         assert(token.type == T_IDENTIFIER);
7285         symbol_t *symbol = token.v.symbol;
7286         next_token();
7287
7288         declaration_t *label = get_label(symbol);
7289
7290         /* if source position is already set then the label is defined twice,
7291          * otherwise it was just mentioned in a goto so far */
7292         if(label->source_position.input_name != NULL) {
7293                 errorf(HERE, "duplicate label '%Y' (declared %P)",
7294                        symbol, &label->source_position);
7295         } else {
7296                 label->source_position = token.source_position;
7297         }
7298
7299         statement_t *statement = allocate_statement_zero(STATEMENT_LABEL);
7300
7301         statement->base.source_position = token.source_position;
7302         statement->label.label          = label;
7303
7304         eat(':');
7305
7306         if(token.type == '}') {
7307                 /* TODO only warn? */
7308                 if(false) {
7309                         warningf(HERE, "label at end of compound statement");
7310                         statement->label.statement = create_empty_statement();
7311                 } else {
7312                         errorf(HERE, "label at end of compound statement");
7313                         statement->label.statement = create_invalid_statement();
7314                 }
7315                 return statement;
7316         } else {
7317                 if (token.type == ';') {
7318                         /* eat an empty statement here, to avoid the warning about an empty
7319                          * after a label.  label:; is commonly used to have a label before
7320                          * a }. */
7321                         statement->label.statement = create_empty_statement();
7322                         next_token();
7323                 } else {
7324                         statement->label.statement = parse_statement();
7325                 }
7326         }
7327
7328         /* remember the labels's in a list for later checking */
7329         if (label_last == NULL) {
7330                 label_first = &statement->label;
7331         } else {
7332                 label_last->next = &statement->label;
7333         }
7334         label_last = &statement->label;
7335
7336         return statement;
7337 }
7338
7339 /**
7340  * Parse an if statement.
7341  */
7342 static statement_t *parse_if(void)
7343 {
7344         eat(T_if);
7345
7346         statement_t *statement          = allocate_statement_zero(STATEMENT_IF);
7347         statement->base.source_position = token.source_position;
7348
7349         expect('(');
7350         add_anchor_token(')');
7351         statement->ifs.condition = parse_expression();
7352         rem_anchor_token(')');
7353         expect(')');
7354
7355         add_anchor_token(T_else);
7356         statement->ifs.true_statement = parse_statement();
7357         rem_anchor_token(T_else);
7358
7359         if(token.type == T_else) {
7360                 next_token();
7361                 statement->ifs.false_statement = parse_statement();
7362         }
7363
7364         return statement;
7365 end_error:
7366         return create_invalid_statement();
7367 }
7368
7369 /**
7370  * Parse a switch statement.
7371  */
7372 static statement_t *parse_switch(void)
7373 {
7374         eat(T_switch);
7375
7376         statement_t *statement          = allocate_statement_zero(STATEMENT_SWITCH);
7377         statement->base.source_position = token.source_position;
7378
7379         expect('(');
7380         expression_t *const expr = parse_expression();
7381         type_t       *      type = skip_typeref(expr->base.type);
7382         if (is_type_integer(type)) {
7383                 type = promote_integer(type);
7384         } else if (is_type_valid(type)) {
7385                 errorf(&expr->base.source_position,
7386                        "switch quantity is not an integer, but '%T'", type);
7387                 type = type_error_type;
7388         }
7389         statement->switchs.expression = create_implicit_cast(expr, type);
7390         expect(')');
7391
7392         switch_statement_t *rem = current_switch;
7393         current_switch          = &statement->switchs;
7394         statement->switchs.body = parse_statement();
7395         current_switch          = rem;
7396
7397         if(warning.switch_default &&
7398            find_default_label(&statement->switchs) == NULL) {
7399                 warningf(&statement->base.source_position, "switch has no default case");
7400         }
7401
7402         return statement;
7403 end_error:
7404         return create_invalid_statement();
7405 }
7406
7407 static statement_t *parse_loop_body(statement_t *const loop)
7408 {
7409         statement_t *const rem = current_loop;
7410         current_loop = loop;
7411
7412         statement_t *const body = parse_statement();
7413
7414         current_loop = rem;
7415         return body;
7416 }
7417
7418 /**
7419  * Parse a while statement.
7420  */
7421 static statement_t *parse_while(void)
7422 {
7423         eat(T_while);
7424
7425         statement_t *statement          = allocate_statement_zero(STATEMENT_WHILE);
7426         statement->base.source_position = token.source_position;
7427
7428         expect('(');
7429         add_anchor_token(')');
7430         statement->whiles.condition = parse_expression();
7431         rem_anchor_token(')');
7432         expect(')');
7433
7434         statement->whiles.body = parse_loop_body(statement);
7435
7436         return statement;
7437 end_error:
7438         return create_invalid_statement();
7439 }
7440
7441 /**
7442  * Parse a do statement.
7443  */
7444 static statement_t *parse_do(void)
7445 {
7446         eat(T_do);
7447
7448         statement_t *statement = allocate_statement_zero(STATEMENT_DO_WHILE);
7449
7450         statement->base.source_position = token.source_position;
7451
7452         add_anchor_token(T_while);
7453         statement->do_while.body = parse_loop_body(statement);
7454         rem_anchor_token(T_while);
7455
7456         expect(T_while);
7457         expect('(');
7458         add_anchor_token(')');
7459         statement->do_while.condition = parse_expression();
7460         rem_anchor_token(')');
7461         expect(')');
7462         expect(';');
7463
7464         return statement;
7465 end_error:
7466         return create_invalid_statement();
7467 }
7468
7469 /**
7470  * Parse a for statement.
7471  */
7472 static statement_t *parse_for(void)
7473 {
7474         eat(T_for);
7475
7476         statement_t *statement          = allocate_statement_zero(STATEMENT_FOR);
7477         statement->base.source_position = token.source_position;
7478
7479         int      top        = environment_top();
7480         scope_t *last_scope = scope;
7481         set_scope(&statement->fors.scope);
7482
7483         expect('(');
7484         add_anchor_token(')');
7485
7486         if(token.type != ';') {
7487                 if(is_declaration_specifier(&token, false)) {
7488                         parse_declaration(record_declaration);
7489                 } else {
7490                         add_anchor_token(';');
7491                         expression_t *const init = parse_expression();
7492                         statement->fors.initialisation = init;
7493                         if (warning.unused_value && !expression_has_effect(init)) {
7494                                 warningf(&init->base.source_position,
7495                                          "initialisation of 'for'-statement has no effect");
7496                         }
7497                         rem_anchor_token(';');
7498                         expect(';');
7499                 }
7500         } else {
7501                 expect(';');
7502         }
7503
7504         if(token.type != ';') {
7505                 add_anchor_token(';');
7506                 statement->fors.condition = parse_expression();
7507                 rem_anchor_token(';');
7508         }
7509         expect(';');
7510         if(token.type != ')') {
7511                 expression_t *const step = parse_expression();
7512                 statement->fors.step = step;
7513                 if (warning.unused_value && !expression_has_effect(step)) {
7514                         warningf(&step->base.source_position,
7515                                  "step of 'for'-statement has no effect");
7516                 }
7517         }
7518         rem_anchor_token(')');
7519         expect(')');
7520         statement->fors.body = parse_loop_body(statement);
7521
7522         assert(scope == &statement->fors.scope);
7523         set_scope(last_scope);
7524         environment_pop_to(top);
7525
7526         return statement;
7527
7528 end_error:
7529         rem_anchor_token(')');
7530         assert(scope == &statement->fors.scope);
7531         set_scope(last_scope);
7532         environment_pop_to(top);
7533
7534         return create_invalid_statement();
7535 }
7536
7537 /**
7538  * Parse a goto statement.
7539  */
7540 static statement_t *parse_goto(void)
7541 {
7542         eat(T_goto);
7543
7544         if(token.type != T_IDENTIFIER) {
7545                 parse_error_expected("while parsing goto", T_IDENTIFIER, NULL);
7546                 eat_statement();
7547                 return NULL;
7548         }
7549         symbol_t *symbol = token.v.symbol;
7550         next_token();
7551
7552         declaration_t *label = get_label(symbol);
7553
7554         statement_t *statement          = allocate_statement_zero(STATEMENT_GOTO);
7555         statement->base.source_position = token.source_position;
7556
7557         statement->gotos.label = label;
7558
7559         /* remember the goto's in a list for later checking */
7560         if (goto_last == NULL) {
7561                 goto_first = &statement->gotos;
7562         } else {
7563                 goto_last->next = &statement->gotos;
7564         }
7565         goto_last = &statement->gotos;
7566
7567         expect(';');
7568
7569         return statement;
7570 end_error:
7571         return create_invalid_statement();
7572 }
7573
7574 /**
7575  * Parse a continue statement.
7576  */
7577 static statement_t *parse_continue(void)
7578 {
7579         statement_t *statement;
7580         if (current_loop == NULL) {
7581                 errorf(HERE, "continue statement not within loop");
7582                 statement = create_invalid_statement();
7583         } else {
7584                 statement = allocate_statement_zero(STATEMENT_CONTINUE);
7585
7586                 statement->base.source_position = token.source_position;
7587         }
7588
7589         eat(T_continue);
7590         expect(';');
7591
7592         return statement;
7593 end_error:
7594         return create_invalid_statement();
7595 }
7596
7597 /**
7598  * Parse a break statement.
7599  */
7600 static statement_t *parse_break(void)
7601 {
7602         statement_t *statement;
7603         if (current_switch == NULL && current_loop == NULL) {
7604                 errorf(HERE, "break statement not within loop or switch");
7605                 statement = create_invalid_statement();
7606         } else {
7607                 statement = allocate_statement_zero(STATEMENT_BREAK);
7608
7609                 statement->base.source_position = token.source_position;
7610         }
7611
7612         eat(T_break);
7613         expect(';');
7614
7615         return statement;
7616 end_error:
7617         return create_invalid_statement();
7618 }
7619
7620 /**
7621  * Parse a __leave statement.
7622  */
7623 static statement_t *parse_leave(void)
7624 {
7625         statement_t *statement;
7626         if (current_try == NULL) {
7627                 errorf(HERE, "__leave statement not within __try");
7628                 statement = create_invalid_statement();
7629         } else {
7630                 statement = allocate_statement_zero(STATEMENT_LEAVE);
7631
7632                 statement->base.source_position = token.source_position;
7633         }
7634
7635         eat(T___leave);
7636         expect(';');
7637
7638         return statement;
7639 end_error:
7640         return create_invalid_statement();
7641 }
7642
7643 /**
7644  * Check if a given declaration represents a local variable.
7645  */
7646 static bool is_local_var_declaration(const declaration_t *declaration) {
7647         switch ((storage_class_tag_t) declaration->storage_class) {
7648         case STORAGE_CLASS_AUTO:
7649         case STORAGE_CLASS_REGISTER: {
7650                 const type_t *type = skip_typeref(declaration->type);
7651                 if(is_type_function(type)) {
7652                         return false;
7653                 } else {
7654                         return true;
7655                 }
7656         }
7657         default:
7658                 return false;
7659         }
7660 }
7661
7662 /**
7663  * Check if a given declaration represents a variable.
7664  */
7665 static bool is_var_declaration(const declaration_t *declaration) {
7666         if(declaration->storage_class == STORAGE_CLASS_TYPEDEF)
7667                 return false;
7668
7669         const type_t *type = skip_typeref(declaration->type);
7670         return !is_type_function(type);
7671 }
7672
7673 /**
7674  * Check if a given expression represents a local variable.
7675  */
7676 static bool is_local_variable(const expression_t *expression)
7677 {
7678         if (expression->base.kind != EXPR_REFERENCE) {
7679                 return false;
7680         }
7681         const declaration_t *declaration = expression->reference.declaration;
7682         return is_local_var_declaration(declaration);
7683 }
7684
7685 /**
7686  * Check if a given expression represents a local variable and
7687  * return its declaration then, else return NULL.
7688  */
7689 declaration_t *expr_is_variable(const expression_t *expression)
7690 {
7691         if (expression->base.kind != EXPR_REFERENCE) {
7692                 return NULL;
7693         }
7694         declaration_t *declaration = expression->reference.declaration;
7695         if (is_var_declaration(declaration))
7696                 return declaration;
7697         return NULL;
7698 }
7699
7700 /**
7701  * Parse a return statement.
7702  */
7703 static statement_t *parse_return(void)
7704 {
7705         statement_t *statement          = allocate_statement_zero(STATEMENT_RETURN);
7706         statement->base.source_position = token.source_position;
7707
7708         eat(T_return);
7709
7710         expression_t *return_value = NULL;
7711         if(token.type != ';') {
7712                 return_value = parse_expression();
7713         }
7714         expect(';');
7715
7716         const type_t *const func_type = current_function->type;
7717         assert(is_type_function(func_type));
7718         type_t *const return_type = skip_typeref(func_type->function.return_type);
7719
7720         if(return_value != NULL) {
7721                 type_t *return_value_type = skip_typeref(return_value->base.type);
7722
7723                 if(is_type_atomic(return_type, ATOMIC_TYPE_VOID)
7724                                 && !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
7725                         warningf(&statement->base.source_position,
7726                                  "'return' with a value, in function returning void");
7727                         return_value = NULL;
7728                 } else {
7729                         type_t *const res_type = semantic_assign(return_type,
7730                                 return_value, "'return'", &statement->base.source_position);
7731                         if (res_type == NULL) {
7732                                 errorf(&statement->base.source_position,
7733                                        "cannot return something of type '%T' in function returning '%T'",
7734                                        return_value->base.type, return_type);
7735                         } else {
7736                                 return_value = create_implicit_cast(return_value, res_type);
7737                         }
7738                 }
7739                 /* check for returning address of a local var */
7740                 if (return_value->base.kind == EXPR_UNARY_TAKE_ADDRESS) {
7741                         const expression_t *expression = return_value->unary.value;
7742                         if (is_local_variable(expression)) {
7743                                 warningf(&statement->base.source_position,
7744                                          "function returns address of local variable");
7745                         }
7746                 }
7747         } else {
7748                 if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
7749                         warningf(&statement->base.source_position,
7750                                  "'return' without value, in function returning non-void");
7751                 }
7752         }
7753         statement->returns.value = return_value;
7754
7755         return statement;
7756 end_error:
7757         return create_invalid_statement();
7758 }
7759
7760 /**
7761  * Parse a declaration statement.
7762  */
7763 static statement_t *parse_declaration_statement(void)
7764 {
7765         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
7766
7767         statement->base.source_position = token.source_position;
7768
7769         declaration_t *before = last_declaration;
7770         parse_declaration(record_declaration);
7771
7772         if(before == NULL) {
7773                 statement->declaration.declarations_begin = scope->declarations;
7774         } else {
7775                 statement->declaration.declarations_begin = before->next;
7776         }
7777         statement->declaration.declarations_end = last_declaration;
7778
7779         return statement;
7780 }
7781
7782 /**
7783  * Parse an expression statement, ie. expr ';'.
7784  */
7785 static statement_t *parse_expression_statement(void)
7786 {
7787         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
7788
7789         statement->base.source_position  = token.source_position;
7790         expression_t *const expr         = parse_expression();
7791         statement->expression.expression = expr;
7792
7793         expect(';');
7794
7795         return statement;
7796 end_error:
7797         return create_invalid_statement();
7798 }
7799
7800 /**
7801  * Parse a microsoft __try { } __finally { } or
7802  * __try{ } __except() { }
7803  */
7804 static statement_t *parse_ms_try_statment(void) {
7805         statement_t *statement = allocate_statement_zero(STATEMENT_MS_TRY);
7806
7807         statement->base.source_position  = token.source_position;
7808         eat(T___try);
7809
7810         ms_try_statement_t *rem = current_try;
7811         current_try = &statement->ms_try;
7812         statement->ms_try.try_statement = parse_compound_statement(false);
7813         current_try = rem;
7814
7815         if(token.type == T___except) {
7816                 eat(T___except);
7817                 expect('(');
7818                 add_anchor_token(')');
7819                 expression_t *const expr = parse_expression();
7820                 type_t       *      type = skip_typeref(expr->base.type);
7821                 if (is_type_integer(type)) {
7822                         type = promote_integer(type);
7823                 } else if (is_type_valid(type)) {
7824                         errorf(&expr->base.source_position,
7825                                "__expect expression is not an integer, but '%T'", type);
7826                         type = type_error_type;
7827                 }
7828                 statement->ms_try.except_expression = create_implicit_cast(expr, type);
7829                 rem_anchor_token(')');
7830                 expect(')');
7831                 statement->ms_try.final_statement = parse_compound_statement(false);
7832         } else if(token.type == T__finally) {
7833                 eat(T___finally);
7834                 statement->ms_try.final_statement = parse_compound_statement(false);
7835         } else {
7836                 parse_error_expected("while parsing __try statement", T___except, T___finally, NULL);
7837                 return create_invalid_statement();
7838         }
7839         return statement;
7840 end_error:
7841         return create_invalid_statement();
7842 }
7843
7844 /**
7845  * Parse a statement.
7846  * There's also parse_statement() which additionally checks for
7847  * "statement has no effect" warnings
7848  */
7849 static statement_t *intern_parse_statement(void)
7850 {
7851         statement_t *statement = NULL;
7852
7853         /* declaration or statement */
7854         add_anchor_token(';');
7855         switch(token.type) {
7856         case T_asm:
7857                 statement = parse_asm_statement();
7858                 break;
7859
7860         case T_case:
7861                 statement = parse_case_statement();
7862                 break;
7863
7864         case T_default:
7865                 statement = parse_default_statement();
7866                 break;
7867
7868         case '{':
7869                 statement = parse_compound_statement(false);
7870                 break;
7871
7872         case T_if:
7873                 statement = parse_if();
7874                 break;
7875
7876         case T_switch:
7877                 statement = parse_switch();
7878                 break;
7879
7880         case T_while:
7881                 statement = parse_while();
7882                 break;
7883
7884         case T_do:
7885                 statement = parse_do();
7886                 break;
7887
7888         case T_for:
7889                 statement = parse_for();
7890                 break;
7891
7892         case T_goto:
7893                 statement = parse_goto();
7894                 break;
7895
7896         case T_continue:
7897                 statement = parse_continue();
7898                 break;
7899
7900         case T_break:
7901                 statement = parse_break();
7902                 break;
7903
7904         case T___leave:
7905                 statement = parse_leave();
7906                 break;
7907
7908         case T_return:
7909                 statement = parse_return();
7910                 break;
7911
7912         case ';':
7913                 if(warning.empty_statement) {
7914                         warningf(HERE, "statement is empty");
7915                 }
7916                 statement = create_empty_statement();
7917                 next_token();
7918                 break;
7919
7920         case T_IDENTIFIER:
7921                 if(look_ahead(1)->type == ':') {
7922                         statement = parse_label_statement();
7923                         break;
7924                 }
7925
7926                 if(is_typedef_symbol(token.v.symbol)) {
7927                         statement = parse_declaration_statement();
7928                         break;
7929                 }
7930
7931                 statement = parse_expression_statement();
7932                 break;
7933
7934         case T___extension__:
7935                 /* this can be a prefix to a declaration or an expression statement */
7936                 /* we simply eat it now and parse the rest with tail recursion */
7937                 do {
7938                         next_token();
7939                 } while(token.type == T___extension__);
7940                 statement = parse_statement();
7941                 break;
7942
7943         DECLARATION_START
7944                 statement = parse_declaration_statement();
7945                 break;
7946
7947         case T___try:
7948                 statement = parse_ms_try_statment();
7949                 break;
7950
7951         default:
7952                 statement = parse_expression_statement();
7953                 break;
7954         }
7955         rem_anchor_token(';');
7956
7957         assert(statement != NULL
7958                         && statement->base.source_position.input_name != NULL);
7959
7960         return statement;
7961 }
7962
7963 /**
7964  * parse a statement and emits "statement has no effect" warning if needed
7965  * (This is really a wrapper around intern_parse_statement with check for 1
7966  *  single warning. It is needed, because for statement expressions we have
7967  *  to avoid the warning on the last statement)
7968  */
7969 static statement_t *parse_statement(void)
7970 {
7971         statement_t *statement = intern_parse_statement();
7972
7973         if(statement->kind == STATEMENT_EXPRESSION && warning.unused_value) {
7974                 expression_t *expression = statement->expression.expression;
7975                 if(!expression_has_effect(expression)) {
7976                         warningf(&expression->base.source_position,
7977                                         "statement has no effect");
7978                 }
7979         }
7980
7981         return statement;
7982 }
7983
7984 /**
7985  * Parse a compound statement.
7986  */
7987 static statement_t *parse_compound_statement(bool inside_expression_statement)
7988 {
7989         statement_t *statement = allocate_statement_zero(STATEMENT_COMPOUND);
7990
7991         statement->base.source_position = token.source_position;
7992
7993         eat('{');
7994         add_anchor_token('}');
7995
7996         int      top        = environment_top();
7997         scope_t *last_scope = scope;
7998         set_scope(&statement->compound.scope);
7999
8000         statement_t *last_statement = NULL;
8001
8002         while(token.type != '}' && token.type != T_EOF) {
8003                 statement_t *sub_statement = intern_parse_statement();
8004                 if(is_invalid_statement(sub_statement)) {
8005                         /* an error occurred. if we are at an anchor, return */
8006                         if(at_anchor())
8007                                 goto end_error;
8008                         continue;
8009                 }
8010
8011                 if(last_statement != NULL) {
8012                         last_statement->base.next = sub_statement;
8013                 } else {
8014                         statement->compound.statements = sub_statement;
8015                 }
8016
8017                 while(sub_statement->base.next != NULL)
8018                         sub_statement = sub_statement->base.next;
8019
8020                 last_statement = sub_statement;
8021         }
8022
8023         if(token.type == '}') {
8024                 next_token();
8025         } else {
8026                 errorf(&statement->base.source_position,
8027                        "end of file while looking for closing '}'");
8028         }
8029
8030         /* look over all statements again to produce no effect warnings */
8031         if(warning.unused_value) {
8032                 statement_t *sub_statement = statement->compound.statements;
8033                 for( ; sub_statement != NULL; sub_statement = sub_statement->base.next) {
8034                         if(sub_statement->kind != STATEMENT_EXPRESSION)
8035                                 continue;
8036                         /* don't emit a warning for the last expression in an expression
8037                          * statement as it has always an effect */
8038                         if(inside_expression_statement && sub_statement->base.next == NULL)
8039                                 continue;
8040
8041                         expression_t *expression = sub_statement->expression.expression;
8042                         if(!expression_has_effect(expression)) {
8043                                 warningf(&expression->base.source_position,
8044                                          "statement has no effect");
8045                         }
8046                 }
8047         }
8048
8049 end_error:
8050         rem_anchor_token('}');
8051         assert(scope == &statement->compound.scope);
8052         set_scope(last_scope);
8053         environment_pop_to(top);
8054
8055         return statement;
8056 }
8057
8058 /**
8059  * Initialize builtin types.
8060  */
8061 static void initialize_builtin_types(void)
8062 {
8063         type_intmax_t    = make_global_typedef("__intmax_t__",      type_long_long);
8064         type_size_t      = make_global_typedef("__SIZE_TYPE__",     type_unsigned_long);
8065         type_ssize_t     = make_global_typedef("__SSIZE_TYPE__",    type_long);
8066         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",  type_long);
8067         type_uintmax_t   = make_global_typedef("__uintmax_t__",     type_unsigned_long_long);
8068         type_uptrdiff_t  = make_global_typedef("__UPTRDIFF_TYPE__", type_unsigned_long);
8069         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    type_int);
8070         type_wint_t      = make_global_typedef("__WINT_TYPE__",     type_int);
8071
8072         type_intmax_t_ptr  = make_pointer_type(type_intmax_t,  TYPE_QUALIFIER_NONE);
8073         type_ptrdiff_t_ptr = make_pointer_type(type_ptrdiff_t, TYPE_QUALIFIER_NONE);
8074         type_ssize_t_ptr   = make_pointer_type(type_ssize_t,   TYPE_QUALIFIER_NONE);
8075         type_wchar_t_ptr   = make_pointer_type(type_wchar_t,   TYPE_QUALIFIER_NONE);
8076 }
8077
8078 /**
8079  * Check for unused global static functions and variables
8080  */
8081 static void check_unused_globals(void)
8082 {
8083         if (!warning.unused_function && !warning.unused_variable)
8084                 return;
8085
8086         for (const declaration_t *decl = global_scope->declarations; decl != NULL; decl = decl->next) {
8087                 if (decl->used || decl->storage_class != STORAGE_CLASS_STATIC)
8088                         continue;
8089
8090                 type_t *const type = decl->type;
8091                 const char *s;
8092                 if (is_type_function(skip_typeref(type))) {
8093                         if (!warning.unused_function || decl->is_inline)
8094                                 continue;
8095
8096                         s = (decl->init.statement != NULL ? "defined" : "declared");
8097                 } else {
8098                         if (!warning.unused_variable)
8099                                 continue;
8100
8101                         s = "defined";
8102                 }
8103
8104                 warningf(&decl->source_position, "'%#T' %s but not used",
8105                         type, decl->symbol, s);
8106         }
8107 }
8108
8109 /**
8110  * Parse a translation unit.
8111  */
8112 static translation_unit_t *parse_translation_unit(void)
8113 {
8114         translation_unit_t *unit = allocate_ast_zero(sizeof(unit[0]));
8115
8116         assert(global_scope == NULL);
8117         global_scope = &unit->scope;
8118
8119         assert(scope == NULL);
8120         set_scope(&unit->scope);
8121
8122         initialize_builtin_types();
8123
8124         while(token.type != T_EOF) {
8125                 if (token.type == ';') {
8126                         /* TODO error in strict mode */
8127                         warningf(HERE, "stray ';' outside of function");
8128                         next_token();
8129                 } else {
8130                         parse_external_declaration();
8131                 }
8132         }
8133
8134         assert(scope == &unit->scope);
8135         scope          = NULL;
8136         last_declaration = NULL;
8137
8138         assert(global_scope == &unit->scope);
8139         check_unused_globals();
8140         global_scope = NULL;
8141
8142         return unit;
8143 }
8144
8145 /**
8146  * Parse the input.
8147  *
8148  * @return  the translation unit or NULL if errors occurred.
8149  */
8150 translation_unit_t *parse(void)
8151 {
8152         environment_stack = NEW_ARR_F(stack_entry_t, 0);
8153         label_stack       = NEW_ARR_F(stack_entry_t, 0);
8154         diagnostic_count  = 0;
8155         error_count       = 0;
8156         warning_count     = 0;
8157
8158         type_set_output(stderr);
8159         ast_set_output(stderr);
8160
8161         lookahead_bufpos = 0;
8162         for(int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
8163                 next_token();
8164         }
8165         translation_unit_t *unit = parse_translation_unit();
8166
8167         DEL_ARR_F(environment_stack);
8168         DEL_ARR_F(label_stack);
8169
8170         return unit;
8171 }
8172
8173 /**
8174  * Initialize the parser.
8175  */
8176 void init_parser(void)
8177 {
8178         if(c_mode & _MS) {
8179                 /* add predefined symbols for extended-decl-modifier */
8180                 sym_align      = symbol_table_insert("align");
8181                 sym_allocate   = symbol_table_insert("allocate");
8182                 sym_dllimport  = symbol_table_insert("dllimport");
8183                 sym_dllexport  = symbol_table_insert("dllexport");
8184                 sym_naked      = symbol_table_insert("naked");
8185                 sym_noinline   = symbol_table_insert("noinline");
8186                 sym_noreturn   = symbol_table_insert("noreturn");
8187                 sym_nothrow    = symbol_table_insert("nothrow");
8188                 sym_novtable   = symbol_table_insert("novtable");
8189                 sym_property   = symbol_table_insert("property");
8190                 sym_get        = symbol_table_insert("get");
8191                 sym_put        = symbol_table_insert("put");
8192                 sym_selectany  = symbol_table_insert("selectany");
8193                 sym_thread     = symbol_table_insert("thread");
8194                 sym_uuid       = symbol_table_insert("uuid");
8195                 sym_deprecated = symbol_table_insert("deprecated");
8196                 sym_restrict   = symbol_table_insert("restrict");
8197                 sym_noalias    = symbol_table_insert("noalias");
8198         }
8199         memset(token_anchor_set, 0, sizeof(token_anchor_set));
8200
8201         init_expression_parsers();
8202         obstack_init(&temp_obst);
8203
8204         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
8205         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
8206 }
8207
8208 /**
8209  * Terminate the parser.
8210  */
8211 void exit_parser(void)
8212 {
8213         obstack_free(&temp_obst, NULL);
8214 }