bc02cfcbc8cafcdd0486e825e9a1eb918af54508
[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 "entity_t.h"
37 #include "lang_features.h"
38 #include "walk_statements.h"
39 #include "warning.h"
40 #include "adt/bitfiddle.h"
41 #include "adt/error.h"
42 #include "adt/array.h"
43
44 /** if wchar_t is equal to unsigned short. */
45 bool opt_short_wchar_t =
46 #ifdef _WIN32
47         true;
48 #else
49         false;
50 #endif
51
52 //#define PRINT_TOKENS
53 #define MAX_LOOKAHEAD 2
54
55 typedef struct {
56         entity_t    *old_entity;
57         symbol_t    *symbol;
58         namespace_t  namespc;
59 } stack_entry_t;
60
61 typedef struct argument_list_t argument_list_t;
62 struct argument_list_t {
63         long              argument;
64         argument_list_t  *next;
65 };
66
67 typedef struct gnu_attribute_t gnu_attribute_t;
68 struct gnu_attribute_t {
69         gnu_attribute_kind_t kind;           /**< The kind of the GNU attribute. */
70         gnu_attribute_t     *next;
71         bool                 invalid;        /**< Set if this attribute had argument errors, */
72         bool                 have_arguments; /**< True, if this attribute has arguments. */
73         union {
74                 size_t              value;
75                 string_t            string;
76                 atomic_type_kind_t  akind;
77                 long                argument;  /**< Single argument. */
78                 argument_list_t    *arguments; /**< List of argument expressions. */
79         } u;
80 };
81
82 typedef struct declaration_specifiers_t  declaration_specifiers_t;
83 struct declaration_specifiers_t {
84         source_position_t  source_position;
85         storage_class_t    storage_class;
86         unsigned char      alignment;         /**< Alignment, 0 if not set. */
87         bool               is_inline : 1;
88         bool               deprecated : 1;
89         decl_modifiers_t   modifiers;         /**< declaration modifiers */
90         gnu_attribute_t   *gnu_attributes;    /**< list of GNU attributes */
91         const char        *deprecated_string; /**< can be set if declaration was marked deprecated. */
92         symbol_t          *get_property_sym;  /**< the name of the get property if set. */
93         symbol_t          *put_property_sym;  /**< the name of the put property if set. */
94         type_t            *type;
95 };
96
97 /**
98  * An environment for parsing initializers (and compound literals).
99  */
100 typedef struct parse_initializer_env_t {
101         type_t     *type;   /**< the type of the initializer. In case of an
102                                  array type with unspecified size this gets
103                                  adjusted to the actual size. */
104         entity_t   *entity; /**< the variable that is initialized if any */
105         bool        must_be_constant;
106 } parse_initializer_env_t;
107
108 typedef entity_t* (*parsed_declaration_func) (entity_t *declaration, bool is_definition);
109
110 /** The current token. */
111 static token_t             token;
112 /** The lookahead ring-buffer. */
113 static token_t             lookahead_buffer[MAX_LOOKAHEAD];
114 /** Position of the next token in the lookahead buffer. */
115 static int                 lookahead_bufpos;
116 static stack_entry_t      *environment_stack = NULL;
117 static stack_entry_t      *label_stack       = NULL;
118 static stack_entry_t      *local_label_stack = NULL;
119 /** The global file scope. */
120 static scope_t            *file_scope        = NULL;
121 /** The current scope. */
122 static scope_t            *scope             = NULL;
123 /** Point to the current function declaration if inside a function. */
124 static function_t         *current_function  = NULL;
125 static entity_t           *current_init_decl = NULL;
126 static switch_statement_t *current_switch    = NULL;
127 static statement_t        *current_loop      = NULL;
128 static statement_t        *current_parent    = NULL;
129 static ms_try_statement_t *current_try       = NULL;
130 static goto_statement_t   *goto_first        = NULL;
131 static goto_statement_t   *goto_last         = NULL;
132 static label_statement_t  *label_first       = NULL;
133 static label_statement_t  *label_last        = NULL;
134 /** current translation unit. */
135 static translation_unit_t *unit              = NULL;
136 /** true if we are in a type property context (evaluation only for type. */
137 static bool                in_type_prop      = false;
138 /** true in we are in a __extension__ context. */
139 static bool                in_gcc_extension  = false;
140 static struct obstack      temp_obst;
141
142
143 #define PUSH_PARENT(stmt)                          \
144         statement_t *const prev_parent = current_parent; \
145         ((void)(current_parent = (stmt)))
146 #define POP_PARENT ((void)(current_parent = prev_parent))
147
148 /** special symbol used for anonymous entities. */
149 static const symbol_t *sym_anonymous = NULL;
150
151 /* symbols for Microsoft extended-decl-modifier */
152 static const symbol_t *sym_align      = NULL;
153 static const symbol_t *sym_allocate   = NULL;
154 static const symbol_t *sym_dllimport  = NULL;
155 static const symbol_t *sym_dllexport  = NULL;
156 static const symbol_t *sym_naked      = NULL;
157 static const symbol_t *sym_noinline   = NULL;
158 static const symbol_t *sym_noreturn   = NULL;
159 static const symbol_t *sym_nothrow    = NULL;
160 static const symbol_t *sym_novtable   = NULL;
161 static const symbol_t *sym_property   = NULL;
162 static const symbol_t *sym_get        = NULL;
163 static const symbol_t *sym_put        = NULL;
164 static const symbol_t *sym_selectany  = NULL;
165 static const symbol_t *sym_thread     = NULL;
166 static const symbol_t *sym_uuid       = NULL;
167 static const symbol_t *sym_deprecated = NULL;
168 static const symbol_t *sym_restrict   = NULL;
169 static const symbol_t *sym_noalias    = NULL;
170
171 /** The token anchor set */
172 static unsigned char token_anchor_set[T_LAST_TOKEN];
173
174 /** The current source position. */
175 #define HERE (&token.source_position)
176
177 /** true if we are in GCC mode. */
178 #define GNU_MODE ((c_mode & _GNUC) || in_gcc_extension)
179
180 static type_t *type_valist;
181
182 static statement_t *parse_compound_statement(bool inside_expression_statement);
183 static statement_t *parse_statement(void);
184
185 static expression_t *parse_sub_expression(precedence_t);
186 static expression_t *parse_expression(void);
187 static type_t       *parse_typename(void);
188
189 static void parse_compound_type_entries(compound_t *compound_declaration);
190 static entity_t *parse_declarator(const declaration_specifiers_t *specifiers,
191                                   bool may_be_abstract,
192                                   bool create_compound_member);
193 static entity_t *record_entity(entity_t *entity, bool is_definition);
194
195 static void semantic_comparison(binary_expression_t *expression);
196
197 #define STORAGE_CLASSES     \
198         case T_typedef:         \
199         case T_extern:          \
200         case T_static:          \
201         case T_auto:            \
202         case T_register:        \
203         case T___thread:
204
205 #define TYPE_QUALIFIERS     \
206         case T_const:           \
207         case T_restrict:        \
208         case T_volatile:        \
209         case T_inline:          \
210         case T__forceinline:    \
211         case T___attribute__:
212
213 #ifdef PROVIDE_COMPLEX
214 #define COMPLEX_SPECIFIERS  \
215         case T__Complex:
216 #define IMAGINARY_SPECIFIERS \
217         case T__Imaginary:
218 #else
219 #define COMPLEX_SPECIFIERS
220 #define IMAGINARY_SPECIFIERS
221 #endif
222
223 #define TYPE_SPECIFIERS       \
224         case T_void:              \
225         case T_char:              \
226         case T_short:             \
227         case T_int:               \
228         case T_long:              \
229         case T_float:             \
230         case T_double:            \
231         case T_signed:            \
232         case T_unsigned:          \
233         case T__Bool:             \
234         case T_struct:            \
235         case T_union:             \
236         case T_enum:              \
237         case T___typeof__:        \
238         case T___builtin_va_list: \
239         case T__declspec:         \
240         COMPLEX_SPECIFIERS        \
241         IMAGINARY_SPECIFIERS
242
243 #define DECLARATION_START   \
244         STORAGE_CLASSES         \
245         TYPE_QUALIFIERS         \
246         TYPE_SPECIFIERS
247
248 #define TYPENAME_START      \
249         TYPE_QUALIFIERS         \
250         TYPE_SPECIFIERS
251
252 #define EXPRESSION_START           \
253         case '!':                        \
254         case '&':                        \
255         case '(':                        \
256         case '*':                        \
257         case '+':                        \
258         case '-':                        \
259         case '~':                        \
260         case T_ANDAND:                   \
261         case T_CHARACTER_CONSTANT:       \
262         case T_FLOATINGPOINT:            \
263         case T_INTEGER:                  \
264         case T_MINUSMINUS:               \
265         case T_PLUSPLUS:                 \
266         case T_STRING_LITERAL:           \
267         case T_WIDE_CHARACTER_CONSTANT:  \
268         case T_WIDE_STRING_LITERAL:      \
269         case T___FUNCDNAME__:            \
270         case T___FUNCSIG__:              \
271         case T___FUNCTION__:             \
272         case T___PRETTY_FUNCTION__:      \
273         case T___alignof__:              \
274         case T___builtin_alloca:         \
275         case T___builtin_classify_type:  \
276         case T___builtin_constant_p:     \
277         case T___builtin_expect:         \
278         case T___builtin_huge_val:       \
279         case T___builtin_inf:            \
280         case T___builtin_inff:           \
281         case T___builtin_infl:           \
282         case T___builtin_isgreater:      \
283         case T___builtin_isgreaterequal: \
284         case T___builtin_isless:         \
285         case T___builtin_islessequal:    \
286         case T___builtin_islessgreater:  \
287         case T___builtin_isunordered:    \
288         case T___builtin_nan:            \
289         case T___builtin_nanf:           \
290         case T___builtin_nanl:           \
291         case T___builtin_offsetof:       \
292         case T___builtin_prefetch:       \
293         case T___builtin_va_arg:         \
294         case T___builtin_va_end:         \
295         case T___builtin_va_start:       \
296         case T___func__:                 \
297         case T___noop:                   \
298         case T__assume:                  \
299         case T_sizeof:                   \
300         case T_delete:                   \
301         case T_throw:
302
303 /**
304  * Allocate an AST node with given size and
305  * initialize all fields with zero.
306  */
307 static void *allocate_ast_zero(size_t size)
308 {
309         void *res = allocate_ast(size);
310         memset(res, 0, size);
311         return res;
312 }
313
314 static size_t get_entity_struct_size(entity_kind_t kind)
315 {
316         static const size_t sizes[] = {
317                 [ENTITY_VARIABLE]        = sizeof(variable_t),
318                 [ENTITY_COMPOUND_MEMBER] = sizeof(variable_t),
319                 [ENTITY_FUNCTION]        = sizeof(function_t),
320                 [ENTITY_TYPEDEF]         = sizeof(typedef_t),
321                 [ENTITY_STRUCT]          = sizeof(compound_t),
322                 [ENTITY_UNION]           = sizeof(compound_t),
323                 [ENTITY_ENUM]            = sizeof(enum_t),
324                 [ENTITY_ENUM_VALUE]      = sizeof(enum_value_t),
325                 [ENTITY_LABEL]           = sizeof(label_t),
326                 [ENTITY_LOCAL_LABEL]     = sizeof(label_t)
327         };
328         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
329         assert(sizes[kind] != 0);
330         return sizes[kind];
331 }
332
333 static entity_t *allocate_entity_zero(entity_kind_t kind)
334 {
335         size_t    size   = get_entity_struct_size(kind);
336         entity_t *entity = allocate_ast_zero(size);
337         entity->kind     = kind;
338         return entity;
339 }
340
341 /**
342  * Returns the size of a statement node.
343  *
344  * @param kind  the statement kind
345  */
346 static size_t get_statement_struct_size(statement_kind_t kind)
347 {
348         static const size_t sizes[] = {
349                 [STATEMENT_INVALID]     = sizeof(invalid_statement_t),
350                 [STATEMENT_EMPTY]       = sizeof(empty_statement_t),
351                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
352                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
353                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
354                 [STATEMENT_LOCAL_LABEL] = sizeof(local_label_statement_t),
355                 [STATEMENT_IF]          = sizeof(if_statement_t),
356                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
357                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
358                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
359                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
360                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
361                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
362                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
363                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
364                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
365                 [STATEMENT_FOR]         = sizeof(for_statement_t),
366                 [STATEMENT_ASM]         = sizeof(asm_statement_t),
367                 [STATEMENT_MS_TRY]      = sizeof(ms_try_statement_t),
368                 [STATEMENT_LEAVE]       = sizeof(leave_statement_t)
369         };
370         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
371         assert(sizes[kind] != 0);
372         return sizes[kind];
373 }
374
375 /**
376  * Returns the size of an expression node.
377  *
378  * @param kind  the expression kind
379  */
380 static size_t get_expression_struct_size(expression_kind_t kind)
381 {
382         static const size_t sizes[] = {
383                 [EXPR_INVALID]                 = sizeof(expression_base_t),
384                 [EXPR_REFERENCE]               = sizeof(reference_expression_t),
385                 [EXPR_REFERENCE_ENUM_VALUE]    = sizeof(reference_expression_t),
386                 [EXPR_CONST]                   = sizeof(const_expression_t),
387                 [EXPR_CHARACTER_CONSTANT]      = sizeof(const_expression_t),
388                 [EXPR_WIDE_CHARACTER_CONSTANT] = sizeof(const_expression_t),
389                 [EXPR_STRING_LITERAL]          = sizeof(string_literal_expression_t),
390                 [EXPR_WIDE_STRING_LITERAL]     = sizeof(wide_string_literal_expression_t),
391                 [EXPR_COMPOUND_LITERAL]        = sizeof(compound_literal_expression_t),
392                 [EXPR_CALL]                    = sizeof(call_expression_t),
393                 [EXPR_UNARY_FIRST]             = sizeof(unary_expression_t),
394                 [EXPR_BINARY_FIRST]            = sizeof(binary_expression_t),
395                 [EXPR_CONDITIONAL]             = sizeof(conditional_expression_t),
396                 [EXPR_SELECT]                  = sizeof(select_expression_t),
397                 [EXPR_ARRAY_ACCESS]            = sizeof(array_access_expression_t),
398                 [EXPR_SIZEOF]                  = sizeof(typeprop_expression_t),
399                 [EXPR_ALIGNOF]                 = sizeof(typeprop_expression_t),
400                 [EXPR_CLASSIFY_TYPE]           = sizeof(classify_type_expression_t),
401                 [EXPR_FUNCNAME]                = sizeof(funcname_expression_t),
402                 [EXPR_BUILTIN_SYMBOL]          = sizeof(builtin_symbol_expression_t),
403                 [EXPR_BUILTIN_CONSTANT_P]      = sizeof(builtin_constant_expression_t),
404                 [EXPR_BUILTIN_PREFETCH]        = sizeof(builtin_prefetch_expression_t),
405                 [EXPR_OFFSETOF]                = sizeof(offsetof_expression_t),
406                 [EXPR_VA_START]                = sizeof(va_start_expression_t),
407                 [EXPR_VA_ARG]                  = sizeof(va_arg_expression_t),
408                 [EXPR_STATEMENT]               = sizeof(statement_expression_t),
409                 [EXPR_LABEL_ADDRESS]           = sizeof(label_address_expression_t),
410         };
411         if (kind >= EXPR_UNARY_FIRST && kind <= EXPR_UNARY_LAST) {
412                 return sizes[EXPR_UNARY_FIRST];
413         }
414         if (kind >= EXPR_BINARY_FIRST && kind <= EXPR_BINARY_LAST) {
415                 return sizes[EXPR_BINARY_FIRST];
416         }
417         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
418         assert(sizes[kind] != 0);
419         return sizes[kind];
420 }
421
422 /**
423  * Allocate a statement node of given kind and initialize all
424  * fields with zero.
425  */
426 static statement_t *allocate_statement_zero(statement_kind_t kind)
427 {
428         size_t       size = get_statement_struct_size(kind);
429         statement_t *res  = allocate_ast_zero(size);
430
431         res->base.kind            = kind;
432         res->base.parent          = current_parent;
433         res->base.source_position = token.source_position;
434         return res;
435 }
436
437 /**
438  * Allocate an expression node of given kind and initialize all
439  * fields with zero.
440  */
441 static expression_t *allocate_expression_zero(expression_kind_t kind)
442 {
443         size_t        size = get_expression_struct_size(kind);
444         expression_t *res  = allocate_ast_zero(size);
445
446         res->base.kind            = kind;
447         res->base.type            = type_error_type;
448         res->base.source_position = token.source_position;
449         return res;
450 }
451
452 /**
453  * Creates a new invalid expression.
454  */
455 static expression_t *create_invalid_expression(void)
456 {
457         return allocate_expression_zero(EXPR_INVALID);
458 }
459
460 /**
461  * Creates a new invalid statement.
462  */
463 static statement_t *create_invalid_statement(void)
464 {
465         return allocate_statement_zero(STATEMENT_INVALID);
466 }
467
468 /**
469  * Allocate a new empty statement.
470  */
471 static statement_t *create_empty_statement(void)
472 {
473         return allocate_statement_zero(STATEMENT_EMPTY);
474 }
475
476 /**
477  * Returns the size of a type node.
478  *
479  * @param kind  the type kind
480  */
481 static size_t get_type_struct_size(type_kind_t kind)
482 {
483         static const size_t sizes[] = {
484                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
485                 [TYPE_COMPLEX]         = sizeof(complex_type_t),
486                 [TYPE_IMAGINARY]       = sizeof(imaginary_type_t),
487                 [TYPE_BITFIELD]        = sizeof(bitfield_type_t),
488                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
489                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
490                 [TYPE_ENUM]            = sizeof(enum_type_t),
491                 [TYPE_FUNCTION]        = sizeof(function_type_t),
492                 [TYPE_POINTER]         = sizeof(pointer_type_t),
493                 [TYPE_ARRAY]           = sizeof(array_type_t),
494                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
495                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
496                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
497         };
498         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
499         assert(kind <= TYPE_TYPEOF);
500         assert(sizes[kind] != 0);
501         return sizes[kind];
502 }
503
504 /**
505  * Allocate a type node of given kind and initialize all
506  * fields with zero.
507  *
508  * @param kind             type kind to allocate
509  */
510 static type_t *allocate_type_zero(type_kind_t kind)
511 {
512         size_t  size = get_type_struct_size(kind);
513         type_t *res  = obstack_alloc(type_obst, size);
514         memset(res, 0, size);
515         res->base.kind = kind;
516
517         return res;
518 }
519
520 /**
521  * Returns the size of an initializer node.
522  *
523  * @param kind  the initializer kind
524  */
525 static size_t get_initializer_size(initializer_kind_t kind)
526 {
527         static const size_t sizes[] = {
528                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
529                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
530                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
531                 [INITIALIZER_LIST]        = sizeof(initializer_list_t),
532                 [INITIALIZER_DESIGNATOR]  = sizeof(initializer_designator_t)
533         };
534         assert(kind < sizeof(sizes) / sizeof(*sizes));
535         assert(sizes[kind] != 0);
536         return sizes[kind];
537 }
538
539 /**
540  * Allocate an initializer node of given kind and initialize all
541  * fields with zero.
542  */
543 static initializer_t *allocate_initializer_zero(initializer_kind_t kind)
544 {
545         initializer_t *result = allocate_ast_zero(get_initializer_size(kind));
546         result->kind          = kind;
547
548         return result;
549 }
550
551 /**
552  * Free a type from the type obstack.
553  */
554 static void free_type(void *type)
555 {
556         obstack_free(type_obst, type);
557 }
558
559 /**
560  * Returns the index of the top element of the environment stack.
561  */
562 static size_t environment_top(void)
563 {
564         return ARR_LEN(environment_stack);
565 }
566
567 /**
568  * Returns the index of the top element of the global label stack.
569  */
570 static size_t label_top(void)
571 {
572         return ARR_LEN(label_stack);
573 }
574
575 /**
576  * Returns the index of the top element of the local label stack.
577  */
578 static size_t local_label_top(void)
579 {
580         return ARR_LEN(local_label_stack);
581 }
582
583 /**
584  * Return the next token.
585  */
586 static inline void next_token(void)
587 {
588         token                              = lookahead_buffer[lookahead_bufpos];
589         lookahead_buffer[lookahead_bufpos] = lexer_token;
590         lexer_next_token();
591
592         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
593
594 #ifdef PRINT_TOKENS
595         print_token(stderr, &token);
596         fprintf(stderr, "\n");
597 #endif
598 }
599
600 /**
601  * Return the next token with a given lookahead.
602  */
603 static inline const token_t *look_ahead(int num)
604 {
605         assert(num > 0 && num <= MAX_LOOKAHEAD);
606         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
607         return &lookahead_buffer[pos];
608 }
609
610 /**
611  * Adds a token to the token anchor set (a multi-set).
612  */
613 static void add_anchor_token(int token_type)
614 {
615         assert(0 <= token_type && token_type < T_LAST_TOKEN);
616         ++token_anchor_set[token_type];
617 }
618
619 static int save_and_reset_anchor_state(int token_type)
620 {
621         assert(0 <= token_type && token_type < T_LAST_TOKEN);
622         int count = token_anchor_set[token_type];
623         token_anchor_set[token_type] = 0;
624         return count;
625 }
626
627 static void restore_anchor_state(int token_type, int count)
628 {
629         assert(0 <= token_type && token_type < T_LAST_TOKEN);
630         token_anchor_set[token_type] = count;
631 }
632
633 /**
634  * Remove a token from the token anchor set (a multi-set).
635  */
636 static void rem_anchor_token(int token_type)
637 {
638         assert(0 <= token_type && token_type < T_LAST_TOKEN);
639         assert(token_anchor_set[token_type] != 0);
640         --token_anchor_set[token_type];
641 }
642
643 static bool at_anchor(void)
644 {
645         if (token.type < 0)
646                 return false;
647         return token_anchor_set[token.type];
648 }
649
650 /**
651  * Eat tokens until a matching token is found.
652  */
653 static void eat_until_matching_token(int type)
654 {
655         int end_token;
656         switch (type) {
657                 case '(': end_token = ')';  break;
658                 case '{': end_token = '}';  break;
659                 case '[': end_token = ']';  break;
660                 default:  end_token = type; break;
661         }
662
663         unsigned parenthesis_count = 0;
664         unsigned brace_count       = 0;
665         unsigned bracket_count     = 0;
666         while (token.type        != end_token ||
667                parenthesis_count != 0         ||
668                brace_count       != 0         ||
669                bracket_count     != 0) {
670                 switch (token.type) {
671                 case T_EOF: return;
672                 case '(': ++parenthesis_count; break;
673                 case '{': ++brace_count;       break;
674                 case '[': ++bracket_count;     break;
675
676                 case ')':
677                         if (parenthesis_count > 0)
678                                 --parenthesis_count;
679                         goto check_stop;
680
681                 case '}':
682                         if (brace_count > 0)
683                                 --brace_count;
684                         goto check_stop;
685
686                 case ']':
687                         if (bracket_count > 0)
688                                 --bracket_count;
689 check_stop:
690                         if (token.type        == end_token &&
691                             parenthesis_count == 0         &&
692                             brace_count       == 0         &&
693                             bracket_count     == 0)
694                                 return;
695                         break;
696
697                 default:
698                         break;
699                 }
700                 next_token();
701         }
702 }
703
704 /**
705  * Eat input tokens until an anchor is found.
706  */
707 static void eat_until_anchor(void)
708 {
709         while (token_anchor_set[token.type] == 0) {
710                 if (token.type == '(' || token.type == '{' || token.type == '[')
711                         eat_until_matching_token(token.type);
712                 next_token();
713         }
714 }
715
716 static void eat_block(void)
717 {
718         eat_until_matching_token('{');
719         if (token.type == '}')
720                 next_token();
721 }
722
723 #define eat(token_type)  do { assert(token.type == (token_type)); next_token(); } while (0)
724
725 /**
726  * Report a parse error because an expected token was not found.
727  */
728 static
729 #if defined __GNUC__ && __GNUC__ >= 4
730 __attribute__((sentinel))
731 #endif
732 void parse_error_expected(const char *message, ...)
733 {
734         if (message != NULL) {
735                 errorf(HERE, "%s", message);
736         }
737         va_list ap;
738         va_start(ap, message);
739         errorf(HERE, "got %K, expected %#k", &token, &ap, ", ");
740         va_end(ap);
741 }
742
743 /**
744  * Report a type error.
745  */
746 static void type_error(const char *msg, const source_position_t *source_position,
747                        type_t *type)
748 {
749         errorf(source_position, "%s, but found type '%T'", msg, type);
750 }
751
752 /**
753  * Report an incompatible type.
754  */
755 static void type_error_incompatible(const char *msg,
756                 const source_position_t *source_position, type_t *type1, type_t *type2)
757 {
758         errorf(source_position, "%s, incompatible types: '%T' - '%T'",
759                msg, type1, type2);
760 }
761
762 /**
763  * Expect the the current token is the expected token.
764  * If not, generate an error, eat the current statement,
765  * and goto the end_error label.
766  */
767 #define expect(expected)                                  \
768         do {                                                  \
769                 if (UNLIKELY(token.type != (expected))) {         \
770                         parse_error_expected(NULL, (expected), NULL); \
771                         add_anchor_token(expected);                   \
772                         eat_until_anchor();                           \
773                         if (token.type == expected)                   \
774                                 next_token();                             \
775                         rem_anchor_token(expected);                   \
776                         goto end_error;                               \
777                 }                                                 \
778                 next_token();                                     \
779         } while (0)
780
781 static void scope_push(scope_t *new_scope)
782 {
783         if (scope != NULL) {
784                 new_scope->depth = scope->depth + 1;
785         }
786         new_scope->parent = scope;
787         scope             = new_scope;
788 }
789
790 static void scope_pop(void)
791 {
792         scope = scope->parent;
793 }
794
795 /**
796  * Search an entity by its symbol in a given namespace.
797  */
798 static entity_t *get_entity(const symbol_t *const symbol, namespace_t namespc)
799 {
800         entity_t *entity = symbol->entity;
801         for( ; entity != NULL; entity = entity->base.symbol_next) {
802                 if (entity->base.namespc == namespc)
803                         return entity;
804         }
805
806         return NULL;
807 }
808
809 /**
810  * pushs an entity on the environment stack and links the corresponding symbol
811  * it.
812  */
813 static void stack_push(stack_entry_t **stack_ptr, entity_t *entity)
814 {
815         symbol_t    *symbol  = entity->base.symbol;
816         namespace_t  namespc = entity->base.namespc;
817         assert(namespc != NAMESPACE_INVALID);
818
819         /* replace/add entity into entity list of the symbol */
820         entity_t **anchor;
821         entity_t  *iter;
822         for (anchor = &symbol->entity; ; anchor = &iter->base.symbol_next) {
823                 iter = *anchor;
824                 if (iter == NULL)
825                         break;
826
827                 /* replace an entry? */
828                 if (iter->base.namespc == namespc) {
829                         entity->base.symbol_next = iter->base.symbol_next;
830                         break;
831                 }
832         }
833         *anchor = entity;
834
835         /* remember old declaration */
836         stack_entry_t entry;
837         entry.symbol     = symbol;
838         entry.old_entity = iter;
839         entry.namespc    = namespc;
840         ARR_APP1(stack_entry_t, *stack_ptr, entry);
841 }
842
843 /**
844  * Push an entity on the environment stack.
845  */
846 static void environment_push(entity_t *entity)
847 {
848         assert(entity->base.source_position.input_name != NULL);
849         assert(entity->base.parent_scope != NULL);
850         stack_push(&environment_stack, entity);
851 }
852
853 /**
854  * Push a declaration on the global label stack.
855  *
856  * @param declaration  the declaration
857  */
858 static void label_push(entity_t *label)
859 {
860         /* we abuse the parameters scope as parent for the labels */
861         label->base.parent_scope = &current_function->parameters;
862         stack_push(&label_stack, label);
863 }
864
865 /**
866  * Push a declaration of the local label stack.
867  *
868  * @param declaration  the declaration
869  */
870 static void local_label_push(entity_t *label)
871 {
872         assert(label->base.parent_scope != NULL);
873         label->base.parent_scope = scope;
874         stack_push(&local_label_stack, label);
875 }
876
877 /**
878  * pops symbols from the environment stack until @p new_top is the top element
879  */
880 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
881 {
882         stack_entry_t *stack = *stack_ptr;
883         size_t         top   = ARR_LEN(stack);
884         size_t         i;
885
886         assert(new_top <= top);
887         if (new_top == top)
888                 return;
889
890         for(i = top; i > new_top; --i) {
891                 stack_entry_t *entry = &stack[i - 1];
892
893                 entity_t    *old_entity = entry->old_entity;
894                 symbol_t    *symbol     = entry->symbol;
895                 namespace_t  namespc    = entry->namespc;
896
897                 /* replace with old_entity/remove */
898                 entity_t **anchor;
899                 entity_t  *iter;
900                 for (anchor = &symbol->entity; ; anchor = &iter->base.symbol_next) {
901                         iter = *anchor;
902                         assert(iter != NULL);
903                         /* replace an entry? */
904                         if (iter->base.namespc == namespc)
905                                 break;
906                 }
907
908                 /* restore definition from outer scopes (if there was one) */
909                 if (old_entity != NULL) {
910                         old_entity->base.symbol_next = iter->base.symbol_next;
911                         *anchor                      = old_entity;
912                 } else {
913                         /* remove entry from list */
914                         *anchor = iter->base.symbol_next;
915                 }
916         }
917
918         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
919 }
920
921 /**
922  * Pop all entries from the environment stack until the new_top
923  * is reached.
924  *
925  * @param new_top  the new stack top
926  */
927 static void environment_pop_to(size_t new_top)
928 {
929         stack_pop_to(&environment_stack, new_top);
930 }
931
932 /**
933  * Pop all entries from the global label stack until the new_top
934  * is reached.
935  *
936  * @param new_top  the new stack top
937  */
938 static void label_pop_to(size_t new_top)
939 {
940         stack_pop_to(&label_stack, new_top);
941 }
942
943 /**
944  * Pop all entries from the local label stack until the new_top
945  * is reached.
946  *
947  * @param new_top  the new stack top
948  */
949 static void local_label_pop_to(size_t new_top)
950 {
951         stack_pop_to(&local_label_stack, new_top);
952 }
953
954
955 static int get_akind_rank(atomic_type_kind_t akind)
956 {
957         return (int) akind;
958 }
959
960 static int get_rank(const type_t *type)
961 {
962         assert(!is_typeref(type));
963         /* The C-standard allows promoting enums to int or unsigned int (see Â§ 7.2.2
964          * and esp. footnote 108). However we can't fold constants (yet), so we
965          * can't decide whether unsigned int is possible, while int always works.
966          * (unsigned int would be preferable when possible... for stuff like
967          *  struct { enum { ... } bla : 4; } ) */
968         if (type->kind == TYPE_ENUM)
969                 return get_akind_rank(ATOMIC_TYPE_INT);
970
971         assert(type->kind == TYPE_ATOMIC);
972         return get_akind_rank(type->atomic.akind);
973 }
974
975 static type_t *promote_integer(type_t *type)
976 {
977         if (type->kind == TYPE_BITFIELD)
978                 type = type->bitfield.base_type;
979
980         if (get_rank(type) < get_akind_rank(ATOMIC_TYPE_INT))
981                 type = type_int;
982
983         return type;
984 }
985
986 /**
987  * Create a cast expression.
988  *
989  * @param expression  the expression to cast
990  * @param dest_type   the destination type
991  */
992 static expression_t *create_cast_expression(expression_t *expression,
993                                             type_t *dest_type)
994 {
995         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST_IMPLICIT);
996
997         cast->unary.value = expression;
998         cast->base.type   = dest_type;
999
1000         return cast;
1001 }
1002
1003 /**
1004  * Check if a given expression represents the 0 pointer constant.
1005  */
1006 static bool is_null_pointer_constant(const expression_t *expression)
1007 {
1008         /* skip void* cast */
1009         if (expression->kind == EXPR_UNARY_CAST
1010                         || expression->kind == EXPR_UNARY_CAST_IMPLICIT) {
1011                 expression = expression->unary.value;
1012         }
1013
1014         /* TODO: not correct yet, should be any constant integer expression
1015          * which evaluates to 0 */
1016         if (expression->kind != EXPR_CONST)
1017                 return false;
1018
1019         type_t *const type = skip_typeref(expression->base.type);
1020         if (!is_type_integer(type))
1021                 return false;
1022
1023         return expression->conste.v.int_value == 0;
1024 }
1025
1026 /**
1027  * Create an implicit cast expression.
1028  *
1029  * @param expression  the expression to cast
1030  * @param dest_type   the destination type
1031  */
1032 static expression_t *create_implicit_cast(expression_t *expression,
1033                                           type_t *dest_type)
1034 {
1035         type_t *const source_type = expression->base.type;
1036
1037         if (source_type == dest_type)
1038                 return expression;
1039
1040         return create_cast_expression(expression, dest_type);
1041 }
1042
1043 typedef enum assign_error_t {
1044         ASSIGN_SUCCESS,
1045         ASSIGN_ERROR_INCOMPATIBLE,
1046         ASSIGN_ERROR_POINTER_QUALIFIER_MISSING,
1047         ASSIGN_WARNING_POINTER_INCOMPATIBLE,
1048         ASSIGN_WARNING_POINTER_FROM_INT,
1049         ASSIGN_WARNING_INT_FROM_POINTER
1050 } assign_error_t;
1051
1052 static void report_assign_error(assign_error_t error, type_t *orig_type_left,
1053                                 const expression_t *const right,
1054                                 const char *context,
1055                                 const source_position_t *source_position)
1056 {
1057         type_t *const orig_type_right = right->base.type;
1058         type_t *const type_left       = skip_typeref(orig_type_left);
1059         type_t *const type_right      = skip_typeref(orig_type_right);
1060
1061         switch (error) {
1062         case ASSIGN_SUCCESS:
1063                 return;
1064         case ASSIGN_ERROR_INCOMPATIBLE:
1065                 errorf(source_position,
1066                        "destination type '%T' in %s is incompatible with type '%T'",
1067                        orig_type_left, context, orig_type_right);
1068                 return;
1069
1070         case ASSIGN_ERROR_POINTER_QUALIFIER_MISSING: {
1071                 if (warning.other) {
1072                         type_t *points_to_left  = skip_typeref(type_left->pointer.points_to);
1073                         type_t *points_to_right = skip_typeref(type_right->pointer.points_to);
1074
1075                         /* the left type has all qualifiers from the right type */
1076                         unsigned missing_qualifiers
1077                                 = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
1078                         warningf(source_position,
1079                                         "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointer target type",
1080                                         orig_type_left, context, orig_type_right, missing_qualifiers);
1081                 }
1082                 return;
1083         }
1084
1085         case ASSIGN_WARNING_POINTER_INCOMPATIBLE:
1086                 if (warning.other) {
1087                         warningf(source_position,
1088                                         "destination type '%T' in %s is incompatible with '%E' of type '%T'",
1089                                         orig_type_left, context, right, orig_type_right);
1090                 }
1091                 return;
1092
1093         case ASSIGN_WARNING_POINTER_FROM_INT:
1094                 if (warning.other) {
1095                         warningf(source_position,
1096                                         "%s makes pointer '%T' from integer '%T' without a cast",
1097                                         context, orig_type_left, orig_type_right);
1098                 }
1099                 return;
1100
1101         case ASSIGN_WARNING_INT_FROM_POINTER:
1102                 if (warning.other) {
1103                         warningf(source_position,
1104                                         "%s makes integer '%T' from pointer '%T' without a cast",
1105                                         context, orig_type_left, orig_type_right);
1106                 }
1107                 return;
1108
1109         default:
1110                 panic("invalid error value");
1111         }
1112 }
1113
1114 /** Implements the rules from Â§ 6.5.16.1 */
1115 static assign_error_t semantic_assign(type_t *orig_type_left,
1116                                       const expression_t *const right)
1117 {
1118         type_t *const orig_type_right = right->base.type;
1119         type_t *const type_left       = skip_typeref(orig_type_left);
1120         type_t *const type_right      = skip_typeref(orig_type_right);
1121
1122         if (is_type_pointer(type_left)) {
1123                 if (is_null_pointer_constant(right)) {
1124                         return ASSIGN_SUCCESS;
1125                 } else if (is_type_pointer(type_right)) {
1126                         type_t *points_to_left
1127                                 = skip_typeref(type_left->pointer.points_to);
1128                         type_t *points_to_right
1129                                 = skip_typeref(type_right->pointer.points_to);
1130                         assign_error_t res = ASSIGN_SUCCESS;
1131
1132                         /* the left type has all qualifiers from the right type */
1133                         unsigned missing_qualifiers
1134                                 = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
1135                         if (missing_qualifiers != 0) {
1136                                 res = ASSIGN_ERROR_POINTER_QUALIFIER_MISSING;
1137                         }
1138
1139                         points_to_left  = get_unqualified_type(points_to_left);
1140                         points_to_right = get_unqualified_type(points_to_right);
1141
1142                         if (is_type_atomic(points_to_left, ATOMIC_TYPE_VOID))
1143                                 return res;
1144
1145                         if (is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)) {
1146                                 /* ISO/IEC 14882:1998(E) Â§C.1.2:6 */
1147                                 return c_mode & _CXX ? ASSIGN_ERROR_INCOMPATIBLE : res;
1148                         }
1149
1150                         if (!types_compatible(points_to_left, points_to_right)) {
1151                                 return ASSIGN_WARNING_POINTER_INCOMPATIBLE;
1152                         }
1153
1154                         return res;
1155                 } else if (is_type_integer(type_right)) {
1156                         return ASSIGN_WARNING_POINTER_FROM_INT;
1157                 }
1158         } else if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
1159             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
1160                 && is_type_pointer(type_right))) {
1161                 return ASSIGN_SUCCESS;
1162         } else if ((is_type_compound(type_left)  && is_type_compound(type_right))
1163                         || (is_type_builtin(type_left) && is_type_builtin(type_right))) {
1164                 type_t *const unqual_type_left  = get_unqualified_type(type_left);
1165                 type_t *const unqual_type_right = get_unqualified_type(type_right);
1166                 if (types_compatible(unqual_type_left, unqual_type_right)) {
1167                         return ASSIGN_SUCCESS;
1168                 }
1169         } else if (is_type_integer(type_left) && is_type_pointer(type_right)) {
1170                 return ASSIGN_WARNING_INT_FROM_POINTER;
1171         }
1172
1173         if (!is_type_valid(type_left) || !is_type_valid(type_right))
1174                 return ASSIGN_SUCCESS;
1175
1176         return ASSIGN_ERROR_INCOMPATIBLE;
1177 }
1178
1179 static expression_t *parse_constant_expression(void)
1180 {
1181         expression_t *result = parse_sub_expression(PREC_CONDITIONAL);
1182
1183         if (!is_constant_expression(result)) {
1184                 errorf(&result->base.source_position,
1185                        "expression '%E' is not constant\n", result);
1186         }
1187
1188         return result;
1189 }
1190
1191 static expression_t *parse_assignment_expression(void)
1192 {
1193         return parse_sub_expression(PREC_ASSIGNMENT);
1194 }
1195
1196 static type_t *make_global_typedef(const char *name, type_t *type)
1197 {
1198         symbol_t *const symbol = symbol_table_insert(name);
1199
1200         entity_t *const entity       = allocate_entity_zero(ENTITY_TYPEDEF);
1201         entity->base.symbol          = symbol;
1202         entity->base.source_position = builtin_source_position;
1203         entity->base.namespc         = NAMESPACE_NORMAL;
1204         entity->typedefe.type        = type;
1205         entity->typedefe.builtin     = true;
1206
1207         record_entity(entity, false);
1208
1209         type_t *typedef_type            = allocate_type_zero(TYPE_TYPEDEF);
1210         typedef_type->typedeft.typedefe = &entity->typedefe;
1211
1212         return typedef_type;
1213 }
1214
1215 static string_t parse_string_literals(void)
1216 {
1217         assert(token.type == T_STRING_LITERAL);
1218         string_t result = token.v.string;
1219
1220         next_token();
1221
1222         while (token.type == T_STRING_LITERAL) {
1223                 result = concat_strings(&result, &token.v.string);
1224                 next_token();
1225         }
1226
1227         return result;
1228 }
1229
1230 static const char *const gnu_attribute_names[GNU_AK_LAST] = {
1231         [GNU_AK_CONST]                  = "const",
1232         [GNU_AK_VOLATILE]               = "volatile",
1233         [GNU_AK_CDECL]                  = "cdecl",
1234         [GNU_AK_STDCALL]                = "stdcall",
1235         [GNU_AK_FASTCALL]               = "fastcall",
1236         [GNU_AK_DEPRECATED]             = "deprecated",
1237         [GNU_AK_NOINLINE]               = "noinline",
1238         [GNU_AK_NORETURN]               = "noreturn",
1239         [GNU_AK_NAKED]                  = "naked",
1240         [GNU_AK_PURE]                   = "pure",
1241         [GNU_AK_ALWAYS_INLINE]          = "always_inline",
1242         [GNU_AK_MALLOC]                 = "malloc",
1243         [GNU_AK_WEAK]                   = "weak",
1244         [GNU_AK_CONSTRUCTOR]            = "constructor",
1245         [GNU_AK_DESTRUCTOR]             = "destructor",
1246         [GNU_AK_NOTHROW]                = "nothrow",
1247         [GNU_AK_TRANSPARENT_UNION]      = "transparent_union",
1248         [GNU_AK_COMMON]                 = "common",
1249         [GNU_AK_NOCOMMON]               = "nocommon",
1250         [GNU_AK_PACKED]                 = "packed",
1251         [GNU_AK_SHARED]                 = "shared",
1252         [GNU_AK_NOTSHARED]              = "notshared",
1253         [GNU_AK_USED]                   = "used",
1254         [GNU_AK_UNUSED]                 = "unused",
1255         [GNU_AK_NO_INSTRUMENT_FUNCTION] = "no_instrument_function",
1256         [GNU_AK_WARN_UNUSED_RESULT]     = "warn_unused_result",
1257         [GNU_AK_LONGCALL]               = "longcall",
1258         [GNU_AK_SHORTCALL]              = "shortcall",
1259         [GNU_AK_LONG_CALL]              = "long_call",
1260         [GNU_AK_SHORT_CALL]             = "short_call",
1261         [GNU_AK_FUNCTION_VECTOR]        = "function_vector",
1262         [GNU_AK_INTERRUPT]              = "interrupt",
1263         [GNU_AK_INTERRUPT_HANDLER]      = "interrupt_handler",
1264         [GNU_AK_NMI_HANDLER]            = "nmi_handler",
1265         [GNU_AK_NESTING]                = "nesting",
1266         [GNU_AK_NEAR]                   = "near",
1267         [GNU_AK_FAR]                    = "far",
1268         [GNU_AK_SIGNAL]                 = "signal",
1269         [GNU_AK_EIGTHBIT_DATA]          = "eightbit_data",
1270         [GNU_AK_TINY_DATA]              = "tiny_data",
1271         [GNU_AK_SAVEALL]                = "saveall",
1272         [GNU_AK_FLATTEN]                = "flatten",
1273         [GNU_AK_SSEREGPARM]             = "sseregparm",
1274         [GNU_AK_EXTERNALLY_VISIBLE]     = "externally_visible",
1275         [GNU_AK_RETURN_TWICE]           = "return_twice",
1276         [GNU_AK_MAY_ALIAS]              = "may_alias",
1277         [GNU_AK_MS_STRUCT]              = "ms_struct",
1278         [GNU_AK_GCC_STRUCT]             = "gcc_struct",
1279         [GNU_AK_DLLIMPORT]              = "dllimport",
1280         [GNU_AK_DLLEXPORT]              = "dllexport",
1281         [GNU_AK_ALIGNED]                = "aligned",
1282         [GNU_AK_ALIAS]                  = "alias",
1283         [GNU_AK_SECTION]                = "section",
1284         [GNU_AK_FORMAT]                 = "format",
1285         [GNU_AK_FORMAT_ARG]             = "format_arg",
1286         [GNU_AK_WEAKREF]                = "weakref",
1287         [GNU_AK_NONNULL]                = "nonnull",
1288         [GNU_AK_TLS_MODEL]              = "tls_model",
1289         [GNU_AK_VISIBILITY]             = "visibility",
1290         [GNU_AK_REGPARM]                = "regparm",
1291         [GNU_AK_MODE]                   = "mode",
1292         [GNU_AK_MODEL]                  = "model",
1293         [GNU_AK_TRAP_EXIT]              = "trap_exit",
1294         [GNU_AK_SP_SWITCH]              = "sp_switch",
1295         [GNU_AK_SENTINEL]               = "sentinel"
1296 };
1297
1298 /**
1299  * compare two string, ignoring double underscores on the second.
1300  */
1301 static int strcmp_underscore(const char *s1, const char *s2)
1302 {
1303         if (s2[0] == '_' && s2[1] == '_') {
1304                 size_t len2 = strlen(s2);
1305                 size_t len1 = strlen(s1);
1306                 if (len1 == len2-4 && s2[len2-2] == '_' && s2[len2-1] == '_') {
1307                         return strncmp(s1, s2+2, len2-4);
1308                 }
1309         }
1310
1311         return strcmp(s1, s2);
1312 }
1313
1314 /**
1315  * Allocate a new gnu temporal attribute.
1316  */
1317 static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind)
1318 {
1319         gnu_attribute_t *attribute = obstack_alloc(&temp_obst, sizeof(*attribute));
1320         attribute->kind            = kind;
1321         attribute->next            = NULL;
1322         attribute->invalid         = false;
1323         attribute->have_arguments  = false;
1324
1325         return attribute;
1326 }
1327
1328 /**
1329  * parse one constant expression argument.
1330  */
1331 static void parse_gnu_attribute_const_arg(gnu_attribute_t *attribute)
1332 {
1333         expression_t *expression;
1334         add_anchor_token(')');
1335         expression = parse_constant_expression();
1336         rem_anchor_token(')');
1337         expect(')');
1338         attribute->u.argument = fold_constant(expression);
1339         return;
1340 end_error:
1341         attribute->invalid = true;
1342 }
1343
1344 /**
1345  * parse a list of constant expressions arguments.
1346  */
1347 static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute)
1348 {
1349         argument_list_t **list = &attribute->u.arguments;
1350         argument_list_t  *entry;
1351         expression_t     *expression;
1352         add_anchor_token(')');
1353         add_anchor_token(',');
1354         while (true) {
1355                 expression = parse_constant_expression();
1356                 entry = obstack_alloc(&temp_obst, sizeof(entry));
1357                 entry->argument = fold_constant(expression);
1358                 entry->next     = NULL;
1359                 *list = entry;
1360                 list = &entry->next;
1361                 if (token.type != ',')
1362                         break;
1363                 next_token();
1364         }
1365         rem_anchor_token(',');
1366         rem_anchor_token(')');
1367         expect(')');
1368         return;
1369 end_error:
1370         attribute->invalid = true;
1371 }
1372
1373 /**
1374  * parse one string literal argument.
1375  */
1376 static void parse_gnu_attribute_string_arg(gnu_attribute_t *attribute,
1377                                            string_t *string)
1378 {
1379         add_anchor_token('(');
1380         if (token.type != T_STRING_LITERAL) {
1381                 parse_error_expected("while parsing attribute directive",
1382                                      T_STRING_LITERAL, NULL);
1383                 goto end_error;
1384         }
1385         *string = parse_string_literals();
1386         rem_anchor_token('(');
1387         expect(')');
1388         return;
1389 end_error:
1390         attribute->invalid = true;
1391 }
1392
1393 /**
1394  * parse one tls model.
1395  */
1396 static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute)
1397 {
1398         static const char *const tls_models[] = {
1399                 "global-dynamic",
1400                 "local-dynamic",
1401                 "initial-exec",
1402                 "local-exec"
1403         };
1404         string_t string = { NULL, 0 };
1405         parse_gnu_attribute_string_arg(attribute, &string);
1406         if (string.begin != NULL) {
1407                 for(size_t i = 0; i < 4; ++i) {
1408                         if (strcmp(tls_models[i], string.begin) == 0) {
1409                                 attribute->u.value = i;
1410                                 return;
1411                         }
1412                 }
1413                 errorf(HERE, "'%s' is an unrecognized tls model", string.begin);
1414         }
1415         attribute->invalid = true;
1416 }
1417
1418 /**
1419  * parse one tls model.
1420  */
1421 static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute)
1422 {
1423         static const char *const visibilities[] = {
1424                 "default",
1425                 "protected",
1426                 "hidden",
1427                 "internal"
1428         };
1429         string_t string = { NULL, 0 };
1430         parse_gnu_attribute_string_arg(attribute, &string);
1431         if (string.begin != NULL) {
1432                 for(size_t i = 0; i < 4; ++i) {
1433                         if (strcmp(visibilities[i], string.begin) == 0) {
1434                                 attribute->u.value = i;
1435                                 return;
1436                         }
1437                 }
1438                 errorf(HERE, "'%s' is an unrecognized visibility", string.begin);
1439         }
1440         attribute->invalid = true;
1441 }
1442
1443 /**
1444  * parse one (code) model.
1445  */
1446 static void parse_gnu_attribute_model_arg(gnu_attribute_t *attribute)
1447 {
1448         static const char *const visibilities[] = {
1449                 "small",
1450                 "medium",
1451                 "large"
1452         };
1453         string_t string = { NULL, 0 };
1454         parse_gnu_attribute_string_arg(attribute, &string);
1455         if (string.begin != NULL) {
1456                 for(int i = 0; i < 3; ++i) {
1457                         if (strcmp(visibilities[i], string.begin) == 0) {
1458                                 attribute->u.value = i;
1459                                 return;
1460                         }
1461                 }
1462                 errorf(HERE, "'%s' is an unrecognized model", string.begin);
1463         }
1464         attribute->invalid = true;
1465 }
1466
1467 static void parse_gnu_attribute_mode_arg(gnu_attribute_t *attribute)
1468 {
1469         /* TODO: find out what is allowed here... */
1470
1471         /* at least: byte, word, pointer, list of machine modes
1472          * __XXX___ is interpreted as XXX */
1473         add_anchor_token(')');
1474
1475         if (token.type != T_IDENTIFIER) {
1476                 expect(T_IDENTIFIER);
1477         }
1478
1479         /* This isn't really correct, the backend should provide a list of machine
1480          * specific modes (according to gcc philosophy that is...) */
1481         const char *symbol_str = token.v.symbol->string;
1482         if (strcmp_underscore("QI",   symbol_str) == 0 ||
1483             strcmp_underscore("byte", symbol_str) == 0) {
1484                 attribute->u.akind = ATOMIC_TYPE_CHAR;
1485         } else if (strcmp_underscore("HI", symbol_str) == 0) {
1486                 attribute->u.akind = ATOMIC_TYPE_SHORT;
1487         } else if (strcmp_underscore("SI",      symbol_str) == 0
1488                 || strcmp_underscore("word",    symbol_str) == 0
1489                 || strcmp_underscore("pointer", symbol_str) == 0) {
1490                 attribute->u.akind = ATOMIC_TYPE_INT;
1491         } else if (strcmp_underscore("DI", symbol_str) == 0) {
1492                 attribute->u.akind = ATOMIC_TYPE_LONGLONG;
1493         } else {
1494                 if (warning.other)
1495                         warningf(HERE, "ignoring unknown mode '%s'", symbol_str);
1496                 attribute->invalid = true;
1497         }
1498         next_token();
1499
1500         rem_anchor_token(')');
1501         expect(')');
1502         return;
1503 end_error:
1504         attribute->invalid = true;
1505 }
1506
1507 /**
1508  * parse one interrupt argument.
1509  */
1510 static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute)
1511 {
1512         static const char *const interrupts[] = {
1513                 "IRQ",
1514                 "FIQ",
1515                 "SWI",
1516                 "ABORT",
1517                 "UNDEF"
1518         };
1519         string_t string = { NULL, 0 };
1520         parse_gnu_attribute_string_arg(attribute, &string);
1521         if (string.begin != NULL) {
1522                 for(size_t i = 0; i < 5; ++i) {
1523                         if (strcmp(interrupts[i], string.begin) == 0) {
1524                                 attribute->u.value = i;
1525                                 return;
1526                         }
1527                 }
1528                 errorf(HERE, "'%s' is not an interrupt", string.begin);
1529         }
1530         attribute->invalid = true;
1531 }
1532
1533 /**
1534  * parse ( identifier, const expression, const expression )
1535  */
1536 static void parse_gnu_attribute_format_args(gnu_attribute_t *attribute)
1537 {
1538         static const char *const format_names[] = {
1539                 "printf",
1540                 "scanf",
1541                 "strftime",
1542                 "strfmon"
1543         };
1544         int i;
1545
1546         if (token.type != T_IDENTIFIER) {
1547                 parse_error_expected("while parsing format attribute directive", T_IDENTIFIER, NULL);
1548                 goto end_error;
1549         }
1550         const char *name = token.v.symbol->string;
1551         for(i = 0; i < 4; ++i) {
1552                 if (strcmp_underscore(format_names[i], name) == 0)
1553                         break;
1554         }
1555         if (i >= 4) {
1556                 if (warning.attribute)
1557                         warningf(HERE, "'%s' is an unrecognized format function type", name);
1558         }
1559         next_token();
1560
1561         expect(',');
1562         add_anchor_token(')');
1563         add_anchor_token(',');
1564         parse_constant_expression();
1565         rem_anchor_token(',');
1566         rem_anchor_token(')');
1567
1568         expect(',');
1569         add_anchor_token(')');
1570         parse_constant_expression();
1571         rem_anchor_token(')');
1572         expect(')');
1573         return;
1574 end_error:
1575         attribute->u.value = true;
1576 }
1577
1578 static void check_no_argument(gnu_attribute_t *attribute, const char *name)
1579 {
1580         if (!attribute->have_arguments)
1581                 return;
1582
1583         /* should have no arguments */
1584         errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1585         eat_until_matching_token('(');
1586         /* we have already consumed '(', so we stop before ')', eat it */
1587         eat(')');
1588         attribute->invalid = true;
1589 }
1590
1591 /**
1592  * Parse one GNU attribute.
1593  *
1594  * Note that attribute names can be specified WITH or WITHOUT
1595  * double underscores, ie const or __const__.
1596  *
1597  * The following attributes are parsed without arguments
1598  *  const
1599  *  volatile
1600  *  cdecl
1601  *  stdcall
1602  *  fastcall
1603  *  deprecated
1604  *  noinline
1605  *  noreturn
1606  *  naked
1607  *  pure
1608  *  always_inline
1609  *  malloc
1610  *  weak
1611  *  constructor
1612  *  destructor
1613  *  nothrow
1614  *  transparent_union
1615  *  common
1616  *  nocommon
1617  *  packed
1618  *  shared
1619  *  notshared
1620  *  used
1621  *  unused
1622  *  no_instrument_function
1623  *  warn_unused_result
1624  *  longcall
1625  *  shortcall
1626  *  long_call
1627  *  short_call
1628  *  function_vector
1629  *  interrupt_handler
1630  *  nmi_handler
1631  *  nesting
1632  *  near
1633  *  far
1634  *  signal
1635  *  eightbit_data
1636  *  tiny_data
1637  *  saveall
1638  *  flatten
1639  *  sseregparm
1640  *  externally_visible
1641  *  return_twice
1642  *  may_alias
1643  *  ms_struct
1644  *  gcc_struct
1645  *  dllimport
1646  *  dllexport
1647  *
1648  * The following attributes are parsed with arguments
1649  *  aligned( const expression )
1650  *  alias( string literal )
1651  *  section( string literal )
1652  *  format( identifier, const expression, const expression )
1653  *  format_arg( const expression )
1654  *  tls_model( string literal )
1655  *  visibility( string literal )
1656  *  regparm( const expression )
1657  *  model( string leteral )
1658  *  trap_exit( const expression )
1659  *  sp_switch( string literal )
1660  *
1661  * The following attributes might have arguments
1662  *  weak_ref( string literal )
1663  *  non_null( const expression // ',' )
1664  *  interrupt( string literal )
1665  *  sentinel( constant expression )
1666  */
1667 static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
1668 {
1669         gnu_attribute_t *head      = *attributes;
1670         gnu_attribute_t *last      = *attributes;
1671         decl_modifiers_t modifiers = 0;
1672         gnu_attribute_t *attribute;
1673
1674         eat(T___attribute__);
1675         expect('(');
1676         expect('(');
1677
1678         if (token.type != ')') {
1679                 /* find the end of the list */
1680                 if (last != NULL) {
1681                         while (last->next != NULL)
1682                                 last = last->next;
1683                 }
1684
1685                 /* non-empty attribute list */
1686                 while (true) {
1687                         const char *name;
1688                         if (token.type == T_const) {
1689                                 name = "const";
1690                         } else if (token.type == T_volatile) {
1691                                 name = "volatile";
1692                         } else if (token.type == T_cdecl) {
1693                                 /* __attribute__((cdecl)), WITH ms mode */
1694                                 name = "cdecl";
1695                         } else if (token.type == T_IDENTIFIER) {
1696                                 const symbol_t *sym = token.v.symbol;
1697                                 name = sym->string;
1698                         } else {
1699                                 parse_error_expected("while parsing GNU attribute", T_IDENTIFIER, NULL);
1700                                 break;
1701                         }
1702
1703                         next_token();
1704
1705                         int i;
1706                         for(i = 0; i < GNU_AK_LAST; ++i) {
1707                                 if (strcmp_underscore(gnu_attribute_names[i], name) == 0)
1708                                         break;
1709                         }
1710                         gnu_attribute_kind_t kind = (gnu_attribute_kind_t)i;
1711
1712                         attribute = NULL;
1713                         if (kind == GNU_AK_LAST) {
1714                                 if (warning.attribute)
1715                                         warningf(HERE, "'%s' attribute directive ignored", name);
1716
1717                                 /* skip possible arguments */
1718                                 if (token.type == '(') {
1719                                         eat_until_matching_token(')');
1720                                 }
1721                         } else {
1722                                 /* check for arguments */
1723                                 attribute = allocate_gnu_attribute(kind);
1724                                 if (token.type == '(') {
1725                                         next_token();
1726                                         if (token.type == ')') {
1727                                                 /* empty args are allowed */
1728                                                 next_token();
1729                                         } else
1730                                                 attribute->have_arguments = true;
1731                                 }
1732
1733                                 switch (kind) {
1734                                 case GNU_AK_VOLATILE:
1735                                 case GNU_AK_NAKED:
1736                                 case GNU_AK_MALLOC:
1737                                 case GNU_AK_WEAK:
1738                                 case GNU_AK_COMMON:
1739                                 case GNU_AK_NOCOMMON:
1740                                 case GNU_AK_SHARED:
1741                                 case GNU_AK_NOTSHARED:
1742                                 case GNU_AK_NO_INSTRUMENT_FUNCTION:
1743                                 case GNU_AK_WARN_UNUSED_RESULT:
1744                                 case GNU_AK_LONGCALL:
1745                                 case GNU_AK_SHORTCALL:
1746                                 case GNU_AK_LONG_CALL:
1747                                 case GNU_AK_SHORT_CALL:
1748                                 case GNU_AK_FUNCTION_VECTOR:
1749                                 case GNU_AK_INTERRUPT_HANDLER:
1750                                 case GNU_AK_NMI_HANDLER:
1751                                 case GNU_AK_NESTING:
1752                                 case GNU_AK_NEAR:
1753                                 case GNU_AK_FAR:
1754                                 case GNU_AK_SIGNAL:
1755                                 case GNU_AK_EIGTHBIT_DATA:
1756                                 case GNU_AK_TINY_DATA:
1757                                 case GNU_AK_SAVEALL:
1758                                 case GNU_AK_FLATTEN:
1759                                 case GNU_AK_SSEREGPARM:
1760                                 case GNU_AK_EXTERNALLY_VISIBLE:
1761                                 case GNU_AK_RETURN_TWICE:
1762                                 case GNU_AK_MAY_ALIAS:
1763                                 case GNU_AK_MS_STRUCT:
1764                                 case GNU_AK_GCC_STRUCT:
1765                                         goto no_arg;
1766
1767                                 case GNU_AK_CDECL:             modifiers |= DM_CDECL;             goto no_arg;
1768                                 case GNU_AK_FASTCALL:          modifiers |= DM_FASTCALL;          goto no_arg;
1769                                 case GNU_AK_STDCALL:           modifiers |= DM_STDCALL;           goto no_arg;
1770                                 case GNU_AK_UNUSED:            modifiers |= DM_UNUSED;            goto no_arg;
1771                                 case GNU_AK_USED:              modifiers |= DM_USED;              goto no_arg;
1772                                 case GNU_AK_PURE:              modifiers |= DM_PURE;              goto no_arg;
1773                                 case GNU_AK_CONST:             modifiers |= DM_CONST;             goto no_arg;
1774                                 case GNU_AK_ALWAYS_INLINE:     modifiers |= DM_FORCEINLINE;       goto no_arg;
1775                                 case GNU_AK_DLLIMPORT:         modifiers |= DM_DLLIMPORT;         goto no_arg;
1776                                 case GNU_AK_DLLEXPORT:         modifiers |= DM_DLLEXPORT;         goto no_arg;
1777                                 case GNU_AK_PACKED:            modifiers |= DM_PACKED;            goto no_arg;
1778                                 case GNU_AK_NOINLINE:          modifiers |= DM_NOINLINE;          goto no_arg;
1779                                 case GNU_AK_NORETURN:          modifiers |= DM_NORETURN;          goto no_arg;
1780                                 case GNU_AK_NOTHROW:           modifiers |= DM_NOTHROW;           goto no_arg;
1781                                 case GNU_AK_TRANSPARENT_UNION: modifiers |= DM_TRANSPARENT_UNION; goto no_arg;
1782                                 case GNU_AK_CONSTRUCTOR:       modifiers |= DM_CONSTRUCTOR;       goto no_arg;
1783                                 case GNU_AK_DESTRUCTOR:        modifiers |= DM_DESTRUCTOR;        goto no_arg;
1784                                 case GNU_AK_DEPRECATED:        modifiers |= DM_DEPRECATED;        goto no_arg;
1785
1786                                 case GNU_AK_ALIGNED:
1787                                         /* __align__ may be used without an argument */
1788                                         if (attribute->have_arguments) {
1789                                                 parse_gnu_attribute_const_arg(attribute);
1790                                         }
1791                                         break;
1792
1793                                 case GNU_AK_FORMAT_ARG:
1794                                 case GNU_AK_REGPARM:
1795                                 case GNU_AK_TRAP_EXIT:
1796                                         if (!attribute->have_arguments) {
1797                                                 /* should have arguments */
1798                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1799                                                 attribute->invalid = true;
1800                                         } else
1801                                                 parse_gnu_attribute_const_arg(attribute);
1802                                         break;
1803                                 case GNU_AK_ALIAS:
1804                                 case GNU_AK_SECTION:
1805                                 case GNU_AK_SP_SWITCH:
1806                                         if (!attribute->have_arguments) {
1807                                                 /* should have arguments */
1808                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1809                                                 attribute->invalid = true;
1810                                         } else
1811                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1812                                         break;
1813                                 case GNU_AK_FORMAT:
1814                                         if (!attribute->have_arguments) {
1815                                                 /* should have arguments */
1816                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1817                                                 attribute->invalid = true;
1818                                         } else
1819                                                 parse_gnu_attribute_format_args(attribute);
1820                                         break;
1821                                 case GNU_AK_WEAKREF:
1822                                         /* may have one string argument */
1823                                         if (attribute->have_arguments)
1824                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1825                                         break;
1826                                 case GNU_AK_NONNULL:
1827                                         if (attribute->have_arguments)
1828                                                 parse_gnu_attribute_const_arg_list(attribute);
1829                                         break;
1830                                 case GNU_AK_TLS_MODEL:
1831                                         if (!attribute->have_arguments) {
1832                                                 /* should have arguments */
1833                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1834                                         } else
1835                                                 parse_gnu_attribute_tls_model_arg(attribute);
1836                                         break;
1837                                 case GNU_AK_VISIBILITY:
1838                                         if (!attribute->have_arguments) {
1839                                                 /* should have arguments */
1840                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1841                                         } else
1842                                                 parse_gnu_attribute_visibility_arg(attribute);
1843                                         break;
1844                                 case GNU_AK_MODEL:
1845                                         if (!attribute->have_arguments) {
1846                                                 /* should have arguments */
1847                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1848                                         } else {
1849                                                 parse_gnu_attribute_model_arg(attribute);
1850                                         }
1851                                         break;
1852                                 case GNU_AK_MODE:
1853                                         if (!attribute->have_arguments) {
1854                                                 /* should have arguments */
1855                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1856                                         } else {
1857                                                 parse_gnu_attribute_mode_arg(attribute);
1858                                         }
1859                                         break;
1860                                 case GNU_AK_INTERRUPT:
1861                                         /* may have one string argument */
1862                                         if (attribute->have_arguments)
1863                                                 parse_gnu_attribute_interrupt_arg(attribute);
1864                                         break;
1865                                 case GNU_AK_SENTINEL:
1866                                         /* may have one string argument */
1867                                         if (attribute->have_arguments)
1868                                                 parse_gnu_attribute_const_arg(attribute);
1869                                         break;
1870                                 case GNU_AK_LAST:
1871                                         /* already handled */
1872                                         break;
1873
1874 no_arg:
1875                                         check_no_argument(attribute, name);
1876                                 }
1877                         }
1878                         if (attribute != NULL) {
1879                                 if (last != NULL) {
1880                                         last->next = attribute;
1881                                         last       = attribute;
1882                                 } else {
1883                                         head = last = attribute;
1884                                 }
1885                         }
1886
1887                         if (token.type != ',')
1888                                 break;
1889                         next_token();
1890                 }
1891         }
1892         expect(')');
1893         expect(')');
1894 end_error:
1895         *attributes = head;
1896
1897         return modifiers;
1898 }
1899
1900 /**
1901  * Parse GNU attributes.
1902  */
1903 static decl_modifiers_t parse_attributes(gnu_attribute_t **attributes)
1904 {
1905         decl_modifiers_t modifiers = 0;
1906
1907         while (true) {
1908                 switch (token.type) {
1909                 case T___attribute__:
1910                         modifiers |= parse_gnu_attribute(attributes);
1911                         continue;
1912
1913                 case T_asm:
1914                         next_token();
1915                         expect('(');
1916                         if (token.type != T_STRING_LITERAL) {
1917                                 parse_error_expected("while parsing assembler attribute",
1918                                                      T_STRING_LITERAL, NULL);
1919                                 eat_until_matching_token('(');
1920                                 break;
1921                         } else {
1922                                 parse_string_literals();
1923                         }
1924                         expect(')');
1925                         continue;
1926
1927                 case T_cdecl:     modifiers |= DM_CDECL;    break;
1928                 case T__fastcall: modifiers |= DM_FASTCALL; break;
1929                 case T__stdcall:  modifiers |= DM_STDCALL;  break;
1930
1931                 case T___thiscall:
1932                         /* TODO record modifier */
1933                         if (warning.other)
1934                                 warningf(HERE, "Ignoring declaration modifier %K", &token);
1935                         break;
1936
1937 end_error:
1938                 default: return modifiers;
1939                 }
1940
1941                 next_token();
1942         }
1943 }
1944
1945 static void mark_vars_read(expression_t *expr, variable_t *lhs_var);
1946
1947 static variable_t *determine_lhs_var(expression_t *const expr,
1948                                      variable_t *lhs_var)
1949 {
1950         switch (expr->kind) {
1951                 case EXPR_REFERENCE: {
1952                         entity_t *const entity = expr->reference.entity;
1953                         /* we should only find variables as lavlues... */
1954                         if (entity->base.kind != ENTITY_VARIABLE)
1955                                 return NULL;
1956
1957                         return &entity->variable;
1958                 }
1959
1960                 case EXPR_ARRAY_ACCESS: {
1961                         expression_t  *const ref = expr->array_access.array_ref;
1962                         variable_t    *      var = NULL;
1963                         if (is_type_array(skip_typeref(revert_automatic_type_conversion(ref)))) {
1964                                 var     = determine_lhs_var(ref, lhs_var);
1965                                 lhs_var = var;
1966                         } else {
1967                                 mark_vars_read(expr->select.compound, lhs_var);
1968                         }
1969                         mark_vars_read(expr->array_access.index, lhs_var);
1970                         return var;
1971                 }
1972
1973                 case EXPR_SELECT: {
1974                         if (is_type_compound(skip_typeref(expr->base.type))) {
1975                                 return determine_lhs_var(expr->select.compound, lhs_var);
1976                         } else {
1977                                 mark_vars_read(expr->select.compound, lhs_var);
1978                                 return NULL;
1979                         }
1980                 }
1981
1982                 case EXPR_UNARY_DEREFERENCE: {
1983                         expression_t *const val = expr->unary.value;
1984                         if (val->kind == EXPR_UNARY_TAKE_ADDRESS) {
1985                                 /* *&x is a NOP */
1986                                 return determine_lhs_var(val->unary.value, lhs_var);
1987                         } else {
1988                                 mark_vars_read(val, NULL);
1989                                 return NULL;
1990                         }
1991                 }
1992
1993                 default:
1994                         mark_vars_read(expr, NULL);
1995                         return NULL;
1996         }
1997 }
1998
1999 #define VAR_ANY ((variable_t*)-1)
2000
2001 /**
2002  * Mark declarations, which are read.  This is used to deted variables, which
2003  * are never read.
2004  * Example:
2005  * x = x + 1;
2006  *   x is not marked as "read", because it is only read to calculate its own new
2007  *   value.
2008  *
2009  * x += y; y += x;
2010  *   x and y are not detected as "not read", because multiple variables are
2011  *   involved.
2012  */
2013 static void mark_vars_read(expression_t *const expr, variable_t *lhs_var)
2014 {
2015         switch (expr->kind) {
2016                 case EXPR_REFERENCE: {
2017                         entity_t *const entity = expr->reference.entity;
2018                         if (entity->kind != ENTITY_VARIABLE)
2019                                 return;
2020
2021                         variable_t *variable = &entity->variable;
2022                         if (lhs_var != variable && lhs_var != VAR_ANY) {
2023                                 variable->read = true;
2024                         }
2025                         return;
2026                 }
2027
2028                 case EXPR_CALL:
2029                         // TODO respect pure/const
2030                         mark_vars_read(expr->call.function, NULL);
2031                         for (call_argument_t *arg = expr->call.arguments; arg != NULL; arg = arg->next) {
2032                                 mark_vars_read(arg->expression, NULL);
2033                         }
2034                         return;
2035
2036                 case EXPR_CONDITIONAL:
2037                         // TODO lhs_decl should depend on whether true/false have an effect
2038                         mark_vars_read(expr->conditional.condition, NULL);
2039                         if (expr->conditional.true_expression != NULL)
2040                                 mark_vars_read(expr->conditional.true_expression, lhs_var);
2041                         mark_vars_read(expr->conditional.false_expression, lhs_var);
2042                         return;
2043
2044                 case EXPR_SELECT:
2045                         if (lhs_var == VAR_ANY && !is_type_compound(skip_typeref(expr->base.type)))
2046                                 lhs_var = NULL;
2047                         mark_vars_read(expr->select.compound, lhs_var);
2048                         return;
2049
2050                 case EXPR_ARRAY_ACCESS: {
2051                         expression_t *const ref = expr->array_access.array_ref;
2052                         mark_vars_read(ref, lhs_var);
2053                         lhs_var = determine_lhs_var(ref, lhs_var);
2054                         mark_vars_read(expr->array_access.index, lhs_var);
2055                         return;
2056                 }
2057
2058                 case EXPR_VA_ARG:
2059                         mark_vars_read(expr->va_arge.ap, lhs_var);
2060                         return;
2061
2062                 case EXPR_UNARY_CAST:
2063                         /* Special case: Use void cast to mark a variable as "read" */
2064                         if (is_type_atomic(skip_typeref(expr->base.type), ATOMIC_TYPE_VOID))
2065                                 lhs_var = NULL;
2066                         goto unary;
2067
2068
2069                 case EXPR_UNARY_THROW:
2070                         if (expr->unary.value == NULL)
2071                                 return;
2072                         /* FALLTHROUGH */
2073                 case EXPR_UNARY_DEREFERENCE:
2074                 case EXPR_UNARY_DELETE:
2075                 case EXPR_UNARY_DELETE_ARRAY:
2076                         if (lhs_var == VAR_ANY)
2077                                 lhs_var = NULL;
2078                         goto unary;
2079
2080                 case EXPR_UNARY_NEGATE:
2081                 case EXPR_UNARY_PLUS:
2082                 case EXPR_UNARY_BITWISE_NEGATE:
2083                 case EXPR_UNARY_NOT:
2084                 case EXPR_UNARY_TAKE_ADDRESS:
2085                 case EXPR_UNARY_POSTFIX_INCREMENT:
2086                 case EXPR_UNARY_POSTFIX_DECREMENT:
2087                 case EXPR_UNARY_PREFIX_INCREMENT:
2088                 case EXPR_UNARY_PREFIX_DECREMENT:
2089                 case EXPR_UNARY_CAST_IMPLICIT:
2090                 case EXPR_UNARY_ASSUME:
2091 unary:
2092                         mark_vars_read(expr->unary.value, lhs_var);
2093                         return;
2094
2095                 case EXPR_BINARY_ADD:
2096                 case EXPR_BINARY_SUB:
2097                 case EXPR_BINARY_MUL:
2098                 case EXPR_BINARY_DIV:
2099                 case EXPR_BINARY_MOD:
2100                 case EXPR_BINARY_EQUAL:
2101                 case EXPR_BINARY_NOTEQUAL:
2102                 case EXPR_BINARY_LESS:
2103                 case EXPR_BINARY_LESSEQUAL:
2104                 case EXPR_BINARY_GREATER:
2105                 case EXPR_BINARY_GREATEREQUAL:
2106                 case EXPR_BINARY_BITWISE_AND:
2107                 case EXPR_BINARY_BITWISE_OR:
2108                 case EXPR_BINARY_BITWISE_XOR:
2109                 case EXPR_BINARY_LOGICAL_AND:
2110                 case EXPR_BINARY_LOGICAL_OR:
2111                 case EXPR_BINARY_SHIFTLEFT:
2112                 case EXPR_BINARY_SHIFTRIGHT:
2113                 case EXPR_BINARY_COMMA:
2114                 case EXPR_BINARY_ISGREATER:
2115                 case EXPR_BINARY_ISGREATEREQUAL:
2116                 case EXPR_BINARY_ISLESS:
2117                 case EXPR_BINARY_ISLESSEQUAL:
2118                 case EXPR_BINARY_ISLESSGREATER:
2119                 case EXPR_BINARY_ISUNORDERED:
2120                         mark_vars_read(expr->binary.left,  lhs_var);
2121                         mark_vars_read(expr->binary.right, lhs_var);
2122                         return;
2123
2124                 case EXPR_BINARY_ASSIGN:
2125                 case EXPR_BINARY_MUL_ASSIGN:
2126                 case EXPR_BINARY_DIV_ASSIGN:
2127                 case EXPR_BINARY_MOD_ASSIGN:
2128                 case EXPR_BINARY_ADD_ASSIGN:
2129                 case EXPR_BINARY_SUB_ASSIGN:
2130                 case EXPR_BINARY_SHIFTLEFT_ASSIGN:
2131                 case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
2132                 case EXPR_BINARY_BITWISE_AND_ASSIGN:
2133                 case EXPR_BINARY_BITWISE_XOR_ASSIGN:
2134                 case EXPR_BINARY_BITWISE_OR_ASSIGN: {
2135                         if (lhs_var == VAR_ANY)
2136                                 lhs_var = NULL;
2137                         lhs_var = determine_lhs_var(expr->binary.left, lhs_var);
2138                         mark_vars_read(expr->binary.right, lhs_var);
2139                         return;
2140                 }
2141
2142                 case EXPR_VA_START:
2143                         determine_lhs_var(expr->va_starte.ap, lhs_var);
2144                         return;
2145
2146                 case EXPR_UNKNOWN:
2147                 case EXPR_INVALID:
2148                 case EXPR_CONST:
2149                 case EXPR_CHARACTER_CONSTANT:
2150                 case EXPR_WIDE_CHARACTER_CONSTANT:
2151                 case EXPR_STRING_LITERAL:
2152                 case EXPR_WIDE_STRING_LITERAL:
2153                 case EXPR_COMPOUND_LITERAL: // TODO init?
2154                 case EXPR_SIZEOF:
2155                 case EXPR_CLASSIFY_TYPE:
2156                 case EXPR_ALIGNOF:
2157                 case EXPR_FUNCNAME:
2158                 case EXPR_BUILTIN_SYMBOL:
2159                 case EXPR_BUILTIN_CONSTANT_P:
2160                 case EXPR_BUILTIN_PREFETCH:
2161                 case EXPR_OFFSETOF:
2162                 case EXPR_STATEMENT: // TODO
2163                 case EXPR_LABEL_ADDRESS:
2164                 case EXPR_BINARY_BUILTIN_EXPECT:
2165                 case EXPR_REFERENCE_ENUM_VALUE:
2166                         return;
2167         }
2168
2169         panic("unhandled expression");
2170 }
2171
2172 static designator_t *parse_designation(void)
2173 {
2174         designator_t *result = NULL;
2175         designator_t *last   = NULL;
2176
2177         while (true) {
2178                 designator_t *designator;
2179                 switch (token.type) {
2180                 case '[':
2181                         designator = allocate_ast_zero(sizeof(designator[0]));
2182                         designator->source_position = token.source_position;
2183                         next_token();
2184                         add_anchor_token(']');
2185                         designator->array_index = parse_constant_expression();
2186                         rem_anchor_token(']');
2187                         expect(']');
2188                         break;
2189                 case '.':
2190                         designator = allocate_ast_zero(sizeof(designator[0]));
2191                         designator->source_position = token.source_position;
2192                         next_token();
2193                         if (token.type != T_IDENTIFIER) {
2194                                 parse_error_expected("while parsing designator",
2195                                                      T_IDENTIFIER, NULL);
2196                                 return NULL;
2197                         }
2198                         designator->symbol = token.v.symbol;
2199                         next_token();
2200                         break;
2201                 default:
2202                         expect('=');
2203                         return result;
2204                 }
2205
2206                 assert(designator != NULL);
2207                 if (last != NULL) {
2208                         last->next = designator;
2209                 } else {
2210                         result = designator;
2211                 }
2212                 last = designator;
2213         }
2214 end_error:
2215         return NULL;
2216 }
2217
2218 static initializer_t *initializer_from_string(array_type_t *type,
2219                                               const string_t *const string)
2220 {
2221         /* TODO: check len vs. size of array type */
2222         (void) type;
2223
2224         initializer_t *initializer = allocate_initializer_zero(INITIALIZER_STRING);
2225         initializer->string.string = *string;
2226
2227         return initializer;
2228 }
2229
2230 static initializer_t *initializer_from_wide_string(array_type_t *const type,
2231                                                    wide_string_t *const string)
2232 {
2233         /* TODO: check len vs. size of array type */
2234         (void) type;
2235
2236         initializer_t *const initializer =
2237                 allocate_initializer_zero(INITIALIZER_WIDE_STRING);
2238         initializer->wide_string.string = *string;
2239
2240         return initializer;
2241 }
2242
2243 /**
2244  * Build an initializer from a given expression.
2245  */
2246 static initializer_t *initializer_from_expression(type_t *orig_type,
2247                                                   expression_t *expression)
2248 {
2249         /* TODO check that expression is a constant expression */
2250
2251         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
2252         type_t *type           = skip_typeref(orig_type);
2253         type_t *expr_type_orig = expression->base.type;
2254         type_t *expr_type      = skip_typeref(expr_type_orig);
2255         if (is_type_array(type) && expr_type->kind == TYPE_POINTER) {
2256                 array_type_t *const array_type   = &type->array;
2257                 type_t       *const element_type = skip_typeref(array_type->element_type);
2258
2259                 if (element_type->kind == TYPE_ATOMIC) {
2260                         atomic_type_kind_t akind = element_type->atomic.akind;
2261                         switch (expression->kind) {
2262                                 case EXPR_STRING_LITERAL:
2263                                         if (akind == ATOMIC_TYPE_CHAR
2264                                                         || akind == ATOMIC_TYPE_SCHAR
2265                                                         || akind == ATOMIC_TYPE_UCHAR) {
2266                                                 return initializer_from_string(array_type,
2267                                                         &expression->string.value);
2268                                         }
2269
2270                                 case EXPR_WIDE_STRING_LITERAL: {
2271                                         type_t *bare_wchar_type = skip_typeref(type_wchar_t);
2272                                         if (get_unqualified_type(element_type) == bare_wchar_type) {
2273                                                 return initializer_from_wide_string(array_type,
2274                                                         &expression->wide_string.value);
2275                                         }
2276                                 }
2277
2278                                 default:
2279                                         break;
2280                         }
2281                 }
2282         }
2283
2284         assign_error_t error = semantic_assign(type, expression);
2285         if (error == ASSIGN_ERROR_INCOMPATIBLE)
2286                 return NULL;
2287         report_assign_error(error, type, expression, "initializer",
2288                             &expression->base.source_position);
2289
2290         initializer_t *const result = allocate_initializer_zero(INITIALIZER_VALUE);
2291 #if 0
2292         if (type->kind == TYPE_BITFIELD) {
2293                 type = type->bitfield.base_type;
2294         }
2295 #endif
2296         result->value.value = create_implicit_cast(expression, type);
2297
2298         return result;
2299 }
2300
2301 /**
2302  * Checks if a given expression can be used as an constant initializer.
2303  */
2304 static bool is_initializer_constant(const expression_t *expression)
2305 {
2306         return is_constant_expression(expression)
2307                 || is_address_constant(expression);
2308 }
2309
2310 /**
2311  * Parses an scalar initializer.
2312  *
2313  * Â§ 6.7.8.11; eat {} without warning
2314  */
2315 static initializer_t *parse_scalar_initializer(type_t *type,
2316                                                bool must_be_constant)
2317 {
2318         /* there might be extra {} hierarchies */
2319         int braces = 0;
2320         if (token.type == '{') {
2321                 if (warning.other)
2322                         warningf(HERE, "extra curly braces around scalar initializer");
2323                 do {
2324                         ++braces;
2325                         next_token();
2326                 } while (token.type == '{');
2327         }
2328
2329         expression_t *expression = parse_assignment_expression();
2330         mark_vars_read(expression, NULL);
2331         if (must_be_constant && !is_initializer_constant(expression)) {
2332                 errorf(&expression->base.source_position,
2333                        "Initialisation expression '%E' is not constant\n",
2334                        expression);
2335         }
2336
2337         initializer_t *initializer = initializer_from_expression(type, expression);
2338
2339         if (initializer == NULL) {
2340                 errorf(&expression->base.source_position,
2341                        "expression '%E' (type '%T') doesn't match expected type '%T'",
2342                        expression, expression->base.type, type);
2343                 /* TODO */
2344                 return NULL;
2345         }
2346
2347         bool additional_warning_displayed = false;
2348         while (braces > 0) {
2349                 if (token.type == ',') {
2350                         next_token();
2351                 }
2352                 if (token.type != '}') {
2353                         if (!additional_warning_displayed && warning.other) {
2354                                 warningf(HERE, "additional elements in scalar initializer");
2355                                 additional_warning_displayed = true;
2356                         }
2357                 }
2358                 eat_block();
2359                 braces--;
2360         }
2361
2362         return initializer;
2363 }
2364
2365 /**
2366  * An entry in the type path.
2367  */
2368 typedef struct type_path_entry_t type_path_entry_t;
2369 struct type_path_entry_t {
2370         type_t *type;       /**< the upper top type. restored to path->top_tye if this entry is popped. */
2371         union {
2372                 size_t         index;          /**< For array types: the current index. */
2373                 declaration_t *compound_entry; /**< For compound types: the current declaration. */
2374         } v;
2375 };
2376
2377 /**
2378  * A type path expression a position inside compound or array types.
2379  */
2380 typedef struct type_path_t type_path_t;
2381 struct type_path_t {
2382         type_path_entry_t *path;         /**< An flexible array containing the current path. */
2383         type_t            *top_type;     /**< type of the element the path points */
2384         size_t             max_index;    /**< largest index in outermost array */
2385 };
2386
2387 /**
2388  * Prints a type path for debugging.
2389  */
2390 static __attribute__((unused)) void debug_print_type_path(
2391                 const type_path_t *path)
2392 {
2393         size_t len = ARR_LEN(path->path);
2394
2395         for(size_t i = 0; i < len; ++i) {
2396                 const type_path_entry_t *entry = & path->path[i];
2397
2398                 type_t *type = skip_typeref(entry->type);
2399                 if (is_type_compound(type)) {
2400                         /* in gcc mode structs can have no members */
2401                         if (entry->v.compound_entry == NULL) {
2402                                 assert(i == len-1);
2403                                 continue;
2404                         }
2405                         fprintf(stderr, ".%s",
2406                                 entry->v.compound_entry->base.symbol->string);
2407                 } else if (is_type_array(type)) {
2408                         fprintf(stderr, "[%zu]", entry->v.index);
2409                 } else {
2410                         fprintf(stderr, "-INVALID-");
2411                 }
2412         }
2413         if (path->top_type != NULL) {
2414                 fprintf(stderr, "  (");
2415                 print_type(path->top_type);
2416                 fprintf(stderr, ")");
2417         }
2418 }
2419
2420 /**
2421  * Return the top type path entry, ie. in a path
2422  * (type).a.b returns the b.
2423  */
2424 static type_path_entry_t *get_type_path_top(const type_path_t *path)
2425 {
2426         size_t len = ARR_LEN(path->path);
2427         assert(len > 0);
2428         return &path->path[len-1];
2429 }
2430
2431 /**
2432  * Enlarge the type path by an (empty) element.
2433  */
2434 static type_path_entry_t *append_to_type_path(type_path_t *path)
2435 {
2436         size_t len = ARR_LEN(path->path);
2437         ARR_RESIZE(type_path_entry_t, path->path, len+1);
2438
2439         type_path_entry_t *result = & path->path[len];
2440         memset(result, 0, sizeof(result[0]));
2441         return result;
2442 }
2443
2444 /**
2445  * Descending into a sub-type. Enter the scope of the current top_type.
2446  */
2447 static void descend_into_subtype(type_path_t *path)
2448 {
2449         type_t *orig_top_type = path->top_type;
2450         type_t *top_type      = skip_typeref(orig_top_type);
2451
2452         type_path_entry_t *top = append_to_type_path(path);
2453         top->type              = top_type;
2454
2455         if (is_type_compound(top_type)) {
2456                 compound_t *compound  = top_type->compound.compound;
2457                 entity_t   *entry     = compound->members.entities;
2458
2459                 if (entry != NULL) {
2460                         assert(entry->kind == ENTITY_COMPOUND_MEMBER);
2461                         top->v.compound_entry = &entry->declaration;
2462                         path->top_type = entry->declaration.type;
2463                 } else {
2464                         path->top_type = NULL;
2465                 }
2466         } else if (is_type_array(top_type)) {
2467                 top->v.index   = 0;
2468                 path->top_type = top_type->array.element_type;
2469         } else {
2470                 assert(!is_type_valid(top_type));
2471         }
2472 }
2473
2474 /**
2475  * Pop an entry from the given type path, ie. returning from
2476  * (type).a.b to (type).a
2477  */
2478 static void ascend_from_subtype(type_path_t *path)
2479 {
2480         type_path_entry_t *top = get_type_path_top(path);
2481
2482         path->top_type = top->type;
2483
2484         size_t len = ARR_LEN(path->path);
2485         ARR_RESIZE(type_path_entry_t, path->path, len-1);
2486 }
2487
2488 /**
2489  * Pop entries from the given type path until the given
2490  * path level is reached.
2491  */
2492 static void ascend_to(type_path_t *path, size_t top_path_level)
2493 {
2494         size_t len = ARR_LEN(path->path);
2495
2496         while (len > top_path_level) {
2497                 ascend_from_subtype(path);
2498                 len = ARR_LEN(path->path);
2499         }
2500 }
2501
2502 static bool walk_designator(type_path_t *path, const designator_t *designator,
2503                             bool used_in_offsetof)
2504 {
2505         for( ; designator != NULL; designator = designator->next) {
2506                 type_path_entry_t *top       = get_type_path_top(path);
2507                 type_t            *orig_type = top->type;
2508
2509                 type_t *type = skip_typeref(orig_type);
2510
2511                 if (designator->symbol != NULL) {
2512                         symbol_t *symbol = designator->symbol;
2513                         if (!is_type_compound(type)) {
2514                                 if (is_type_valid(type)) {
2515                                         errorf(&designator->source_position,
2516                                                "'.%Y' designator used for non-compound type '%T'",
2517                                                symbol, orig_type);
2518                                 }
2519
2520                                 top->type             = type_error_type;
2521                                 top->v.compound_entry = NULL;
2522                                 orig_type             = type_error_type;
2523                         } else {
2524                                 compound_t *compound = type->compound.compound;
2525                                 entity_t   *iter     = compound->members.entities;
2526                                 for( ; iter != NULL; iter = iter->base.next) {
2527                                         if (iter->base.symbol == symbol) {
2528                                                 break;
2529                                         }
2530                                 }
2531                                 if (iter == NULL) {
2532                                         errorf(&designator->source_position,
2533                                                "'%T' has no member named '%Y'", orig_type, symbol);
2534                                         goto failed;
2535                                 }
2536                                 assert(iter->kind == ENTITY_COMPOUND_MEMBER);
2537                                 if (used_in_offsetof) {
2538                                         type_t *real_type = skip_typeref(iter->declaration.type);
2539                                         if (real_type->kind == TYPE_BITFIELD) {
2540                                                 errorf(&designator->source_position,
2541                                                        "offsetof designator '%Y' may not specify bitfield",
2542                                                        symbol);
2543                                                 goto failed;
2544                                         }
2545                                 }
2546
2547                                 top->type             = orig_type;
2548                                 top->v.compound_entry = &iter->declaration;
2549                                 orig_type             = iter->declaration.type;
2550                         }
2551                 } else {
2552                         expression_t *array_index = designator->array_index;
2553                         assert(designator->array_index != NULL);
2554
2555                         if (!is_type_array(type)) {
2556                                 if (is_type_valid(type)) {
2557                                         errorf(&designator->source_position,
2558                                                "[%E] designator used for non-array type '%T'",
2559                                                array_index, orig_type);
2560                                 }
2561                                 goto failed;
2562                         }
2563
2564                         long index = fold_constant(array_index);
2565                         if (!used_in_offsetof) {
2566                                 if (index < 0) {
2567                                         errorf(&designator->source_position,
2568                                                "array index [%E] must be positive", array_index);
2569                                 } else if (type->array.size_constant) {
2570                                         long array_size = type->array.size;
2571                                         if (index >= array_size) {
2572                                                 errorf(&designator->source_position,
2573                                                        "designator [%E] (%d) exceeds array size %d",
2574                                                        array_index, index, array_size);
2575                                         }
2576                                 }
2577                         }
2578
2579                         top->type    = orig_type;
2580                         top->v.index = (size_t) index;
2581                         orig_type    = type->array.element_type;
2582                 }
2583                 path->top_type = orig_type;
2584
2585                 if (designator->next != NULL) {
2586                         descend_into_subtype(path);
2587                 }
2588         }
2589         return true;
2590
2591 failed:
2592         return false;
2593 }
2594
2595 static void advance_current_object(type_path_t *path, size_t top_path_level)
2596 {
2597         type_path_entry_t *top = get_type_path_top(path);
2598
2599         type_t *type = skip_typeref(top->type);
2600         if (is_type_union(type)) {
2601                 /* in unions only the first element is initialized */
2602                 top->v.compound_entry = NULL;
2603         } else if (is_type_struct(type)) {
2604                 declaration_t *entry = top->v.compound_entry;
2605
2606                 entity_t *next_entity = entry->base.next;
2607                 if (next_entity != NULL) {
2608                         assert(is_declaration(next_entity));
2609                         entry = &next_entity->declaration;
2610                 } else {
2611                         entry = NULL;
2612                 }
2613
2614                 top->v.compound_entry = entry;
2615                 if (entry != NULL) {
2616                         path->top_type = entry->type;
2617                         return;
2618                 }
2619         } else if (is_type_array(type)) {
2620                 assert(is_type_array(type));
2621
2622                 top->v.index++;
2623
2624                 if (!type->array.size_constant || top->v.index < type->array.size) {
2625                         return;
2626                 }
2627         } else {
2628                 assert(!is_type_valid(type));
2629                 return;
2630         }
2631
2632         /* we're past the last member of the current sub-aggregate, try if we
2633          * can ascend in the type hierarchy and continue with another subobject */
2634         size_t len = ARR_LEN(path->path);
2635
2636         if (len > top_path_level) {
2637                 ascend_from_subtype(path);
2638                 advance_current_object(path, top_path_level);
2639         } else {
2640                 path->top_type = NULL;
2641         }
2642 }
2643
2644 /**
2645  * skip until token is found.
2646  */
2647 static void skip_until(int type)
2648 {
2649         while (token.type != type) {
2650                 if (token.type == T_EOF)
2651                         return;
2652                 next_token();
2653         }
2654 }
2655
2656 /**
2657  * skip any {...} blocks until a closing bracket is reached.
2658  */
2659 static void skip_initializers(void)
2660 {
2661         if (token.type == '{')
2662                 next_token();
2663
2664         while (token.type != '}') {
2665                 if (token.type == T_EOF)
2666                         return;
2667                 if (token.type == '{') {
2668                         eat_block();
2669                         continue;
2670                 }
2671                 next_token();
2672         }
2673 }
2674
2675 static initializer_t *create_empty_initializer(void)
2676 {
2677         static initializer_t empty_initializer
2678                 = { .list = { { INITIALIZER_LIST }, 0 } };
2679         return &empty_initializer;
2680 }
2681
2682 /**
2683  * Parse a part of an initialiser for a struct or union,
2684  */
2685 static initializer_t *parse_sub_initializer(type_path_t *path,
2686                 type_t *outer_type, size_t top_path_level,
2687                 parse_initializer_env_t *env)
2688 {
2689         if (token.type == '}') {
2690                 /* empty initializer */
2691                 return create_empty_initializer();
2692         }
2693
2694         type_t *orig_type = path->top_type;
2695         type_t *type      = NULL;
2696
2697         if (orig_type == NULL) {
2698                 /* We are initializing an empty compound. */
2699         } else {
2700                 type = skip_typeref(orig_type);
2701         }
2702
2703         initializer_t **initializers = NEW_ARR_F(initializer_t*, 0);
2704
2705         while (true) {
2706                 designator_t *designator = NULL;
2707                 if (token.type == '.' || token.type == '[') {
2708                         designator = parse_designation();
2709                         goto finish_designator;
2710                 } else if (token.type == T_IDENTIFIER && look_ahead(1)->type == ':') {
2711                         /* GNU-style designator ("identifier: value") */
2712                         designator = allocate_ast_zero(sizeof(designator[0]));
2713                         designator->source_position = token.source_position;
2714                         designator->symbol          = token.v.symbol;
2715                         eat(T_IDENTIFIER);
2716                         eat(':');
2717
2718 finish_designator:
2719                         /* reset path to toplevel, evaluate designator from there */
2720                         ascend_to(path, top_path_level);
2721                         if (!walk_designator(path, designator, false)) {
2722                                 /* can't continue after designation error */
2723                                 goto end_error;
2724                         }
2725
2726                         initializer_t *designator_initializer
2727                                 = allocate_initializer_zero(INITIALIZER_DESIGNATOR);
2728                         designator_initializer->designator.designator = designator;
2729                         ARR_APP1(initializer_t*, initializers, designator_initializer);
2730
2731                         orig_type = path->top_type;
2732                         type      = orig_type != NULL ? skip_typeref(orig_type) : NULL;
2733                 }
2734
2735                 initializer_t *sub;
2736
2737                 if (token.type == '{') {
2738                         if (type != NULL && is_type_scalar(type)) {
2739                                 sub = parse_scalar_initializer(type, env->must_be_constant);
2740                         } else {
2741                                 eat('{');
2742                                 if (type == NULL) {
2743                                         if (env->entity != NULL) {
2744                                                 errorf(HERE,
2745                                                      "extra brace group at end of initializer for '%Y'",
2746                                                      env->entity->base.symbol);
2747                                         } else {
2748                                                 errorf(HERE, "extra brace group at end of initializer");
2749                                         }
2750                                 } else
2751                                         descend_into_subtype(path);
2752
2753                                 add_anchor_token('}');
2754                                 sub = parse_sub_initializer(path, orig_type, top_path_level+1,
2755                                                             env);
2756                                 rem_anchor_token('}');
2757
2758                                 if (type != NULL) {
2759                                         ascend_from_subtype(path);
2760                                         expect('}');
2761                                 } else {
2762                                         expect('}');
2763                                         goto error_parse_next;
2764                                 }
2765                         }
2766                 } else {
2767                         /* must be an expression */
2768                         expression_t *expression = parse_assignment_expression();
2769
2770                         if (env->must_be_constant && !is_initializer_constant(expression)) {
2771                                 errorf(&expression->base.source_position,
2772                                        "Initialisation expression '%E' is not constant\n",
2773                                        expression);
2774                         }
2775
2776                         if (type == NULL) {
2777                                 /* we are already outside, ... */
2778                                 type_t *const outer_type_skip = skip_typeref(outer_type);
2779                                 if (is_type_compound(outer_type_skip) &&
2780                                     !outer_type_skip->compound.compound->complete) {
2781                                         goto error_parse_next;
2782                                 }
2783                                 goto error_excess;
2784                         }
2785
2786                         /* handle { "string" } special case */
2787                         if ((expression->kind == EXPR_STRING_LITERAL
2788                                         || expression->kind == EXPR_WIDE_STRING_LITERAL)
2789                                         && outer_type != NULL) {
2790                                 sub = initializer_from_expression(outer_type, expression);
2791                                 if (sub != NULL) {
2792                                         if (token.type == ',') {
2793                                                 next_token();
2794                                         }
2795                                         if (token.type != '}' && warning.other) {
2796                                                 warningf(HERE, "excessive elements in initializer for type '%T'",
2797                                                                  orig_type);
2798                                         }
2799                                         /* TODO: eat , ... */
2800                                         return sub;
2801                                 }
2802                         }
2803
2804                         /* descend into subtypes until expression matches type */
2805                         while (true) {
2806                                 orig_type = path->top_type;
2807                                 type      = skip_typeref(orig_type);
2808
2809                                 sub = initializer_from_expression(orig_type, expression);
2810                                 if (sub != NULL) {
2811                                         break;
2812                                 }
2813                                 if (!is_type_valid(type)) {
2814                                         goto end_error;
2815                                 }
2816                                 if (is_type_scalar(type)) {
2817                                         errorf(&expression->base.source_position,
2818                                                         "expression '%E' doesn't match expected type '%T'",
2819                                                         expression, orig_type);
2820                                         goto end_error;
2821                                 }
2822
2823                                 descend_into_subtype(path);
2824                         }
2825                 }
2826
2827                 /* update largest index of top array */
2828                 const type_path_entry_t *first      = &path->path[0];
2829                 type_t                  *first_type = first->type;
2830                 first_type                          = skip_typeref(first_type);
2831                 if (is_type_array(first_type)) {
2832                         size_t index = first->v.index;
2833                         if (index > path->max_index)
2834                                 path->max_index = index;
2835                 }
2836
2837                 if (type != NULL) {
2838                         /* append to initializers list */
2839                         ARR_APP1(initializer_t*, initializers, sub);
2840                 } else {
2841 error_excess:
2842                         if (warning.other) {
2843                                 if (env->entity != NULL) {
2844                                         warningf(HERE, "excess elements in struct initializer for '%Y'",
2845                                            env->entity->base.symbol);
2846                                 } else {
2847                                         warningf(HERE, "excess elements in struct initializer");
2848                                 }
2849                         }
2850                 }
2851
2852 error_parse_next:
2853                 if (token.type == '}') {
2854                         break;
2855                 }
2856                 expect(',');
2857                 if (token.type == '}') {
2858                         break;
2859                 }
2860
2861                 if (type != NULL) {
2862                         /* advance to the next declaration if we are not at the end */
2863                         advance_current_object(path, top_path_level);
2864                         orig_type = path->top_type;
2865                         if (orig_type != NULL)
2866                                 type = skip_typeref(orig_type);
2867                         else
2868                                 type = NULL;
2869                 }
2870         }
2871
2872         size_t len  = ARR_LEN(initializers);
2873         size_t size = sizeof(initializer_list_t) + len * sizeof(initializers[0]);
2874         initializer_t *result = allocate_ast_zero(size);
2875         result->kind          = INITIALIZER_LIST;
2876         result->list.len      = len;
2877         memcpy(&result->list.initializers, initializers,
2878                len * sizeof(initializers[0]));
2879
2880         DEL_ARR_F(initializers);
2881         ascend_to(path, top_path_level+1);
2882
2883         return result;
2884
2885 end_error:
2886         skip_initializers();
2887         DEL_ARR_F(initializers);
2888         ascend_to(path, top_path_level+1);
2889         return NULL;
2890 }
2891
2892 /**
2893  * Parses an initializer. Parsers either a compound literal
2894  * (env->declaration == NULL) or an initializer of a declaration.
2895  */
2896 static initializer_t *parse_initializer(parse_initializer_env_t *env)
2897 {
2898         type_t        *type   = skip_typeref(env->type);
2899         initializer_t *result = NULL;
2900         size_t         max_index;
2901
2902         if (is_type_scalar(type)) {
2903                 result = parse_scalar_initializer(type, env->must_be_constant);
2904         } else if (token.type == '{') {
2905                 eat('{');
2906
2907                 type_path_t path;
2908                 memset(&path, 0, sizeof(path));
2909                 path.top_type = env->type;
2910                 path.path     = NEW_ARR_F(type_path_entry_t, 0);
2911
2912                 descend_into_subtype(&path);
2913
2914                 add_anchor_token('}');
2915                 result = parse_sub_initializer(&path, env->type, 1, env);
2916                 rem_anchor_token('}');
2917
2918                 max_index = path.max_index;
2919                 DEL_ARR_F(path.path);
2920
2921                 expect('}');
2922         } else {
2923                 /* parse_scalar_initializer() also works in this case: we simply
2924                  * have an expression without {} around it */
2925                 result = parse_scalar_initializer(type, env->must_be_constant);
2926         }
2927
2928         /* Â§ 6.7.8 (22) array initializers for arrays with unknown size determine
2929          * the array type size */
2930         if (is_type_array(type) && type->array.size_expression == NULL
2931                         && result != NULL) {
2932                 size_t size;
2933                 switch (result->kind) {
2934                 case INITIALIZER_LIST:
2935                         size = max_index + 1;
2936                         break;
2937
2938                 case INITIALIZER_STRING:
2939                         size = result->string.string.size;
2940                         break;
2941
2942                 case INITIALIZER_WIDE_STRING:
2943                         size = result->wide_string.string.size;
2944                         break;
2945
2946                 case INITIALIZER_DESIGNATOR:
2947                 case INITIALIZER_VALUE:
2948                         /* can happen for parse errors */
2949                         size = 0;
2950                         break;
2951
2952                 default:
2953                         internal_errorf(HERE, "invalid initializer type");
2954                 }
2955
2956                 expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
2957                 cnst->base.type          = type_size_t;
2958                 cnst->conste.v.int_value = size;
2959
2960                 type_t *new_type = duplicate_type(type);
2961
2962                 new_type->array.size_expression   = cnst;
2963                 new_type->array.size_constant     = true;
2964                 new_type->array.has_implicit_size = true;
2965                 new_type->array.size              = size;
2966                 env->type = new_type;
2967         }
2968
2969         return result;
2970 end_error:
2971         return NULL;
2972 }
2973
2974 static void append_entity(scope_t *scope, entity_t *entity)
2975 {
2976         if (scope->last_entity != NULL) {
2977                 scope->last_entity->base.next = entity;
2978         } else {
2979                 scope->entities = entity;
2980         }
2981         scope->last_entity = entity;
2982 }
2983
2984
2985 static compound_t *parse_compound_type_specifier(bool is_struct)
2986 {
2987         gnu_attribute_t  *attributes = NULL;
2988         decl_modifiers_t  modifiers  = 0;
2989         if (is_struct) {
2990                 eat(T_struct);
2991         } else {
2992                 eat(T_union);
2993         }
2994
2995         symbol_t   *symbol      = NULL;
2996         compound_t *compound = NULL;
2997
2998         if (token.type == T___attribute__) {
2999                 modifiers |= parse_attributes(&attributes);
3000         }
3001
3002         if (token.type == T_IDENTIFIER) {
3003                 symbol = token.v.symbol;
3004                 next_token();
3005
3006                 namespace_t const namespc =
3007                         is_struct ? NAMESPACE_STRUCT : NAMESPACE_UNION;
3008                 entity_t *entity = get_entity(symbol, namespc);
3009                 if (entity != NULL) {
3010                         assert(entity->kind == (is_struct ? ENTITY_STRUCT : ENTITY_UNION));
3011                         compound = &entity->compound;
3012                         if (compound->base.parent_scope != scope &&
3013                             (token.type == '{' || token.type == ';')) {
3014                                 /* we're in an inner scope and have a definition. Override
3015                                    existing definition in outer scope */
3016                                 compound = NULL;
3017                         } else if (compound->complete && token.type == '{') {
3018                                 assert(symbol != NULL);
3019                                 errorf(HERE, "multiple definitions of '%s %Y' (previous definition %P)",
3020                                        is_struct ? "struct" : "union", symbol,
3021                                        &compound->base.source_position);
3022                                 /* clear members in the hope to avoid further errors */
3023                                 compound->members.entities = NULL;
3024                         }
3025                 }
3026         } else if (token.type != '{') {
3027                 if (is_struct) {
3028                         parse_error_expected("while parsing struct type specifier",
3029                                              T_IDENTIFIER, '{', NULL);
3030                 } else {
3031                         parse_error_expected("while parsing union type specifier",
3032                                              T_IDENTIFIER, '{', NULL);
3033                 }
3034
3035                 return NULL;
3036         }
3037
3038         if (compound == NULL) {
3039                 entity_kind_t  kind   = is_struct ? ENTITY_STRUCT : ENTITY_UNION;
3040                 entity_t      *entity = allocate_entity_zero(kind);
3041                 compound              = &entity->compound;
3042
3043                 compound->base.namespc =
3044                         (is_struct ? NAMESPACE_STRUCT : NAMESPACE_UNION);
3045                 compound->base.source_position = token.source_position;
3046                 compound->base.symbol          = symbol;
3047                 compound->base.parent_scope    = scope;
3048                 if (symbol != NULL) {
3049                         environment_push(entity);
3050                 }
3051                 append_entity(scope, entity);
3052         }
3053
3054         if (token.type == '{') {
3055                 compound->complete = true;
3056
3057                 parse_compound_type_entries(compound);
3058                 modifiers |= parse_attributes(&attributes);
3059         }
3060
3061         compound->modifiers |= modifiers;
3062         return compound;
3063 }
3064
3065 static void parse_enum_entries(type_t *const enum_type)
3066 {
3067         eat('{');
3068
3069         if (token.type == '}') {
3070                 next_token();
3071                 errorf(HERE, "empty enum not allowed");
3072                 return;
3073         }
3074
3075         add_anchor_token('}');
3076         do {
3077                 if (token.type != T_IDENTIFIER) {
3078                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, NULL);
3079                         eat_block();
3080                         rem_anchor_token('}');
3081                         return;
3082                 }
3083
3084                 entity_t *entity             = allocate_entity_zero(ENTITY_ENUM_VALUE);
3085                 entity->enum_value.enum_type = enum_type;
3086                 entity->base.symbol          = token.v.symbol;
3087                 entity->base.source_position = token.source_position;
3088                 next_token();
3089
3090                 if (token.type == '=') {
3091                         next_token();
3092                         expression_t *value = parse_constant_expression();
3093
3094                         value = create_implicit_cast(value, enum_type);
3095                         entity->enum_value.value = value;
3096
3097                         /* TODO semantic */
3098                 }
3099
3100                 record_entity(entity, false);
3101
3102                 if (token.type != ',')
3103                         break;
3104                 next_token();
3105         } while (token.type != '}');
3106         rem_anchor_token('}');
3107
3108         expect('}');
3109
3110 end_error:
3111         ;
3112 }
3113
3114 static type_t *parse_enum_specifier(void)
3115 {
3116         gnu_attribute_t *attributes = NULL;
3117         entity_t        *entity;
3118         symbol_t        *symbol;
3119
3120         eat(T_enum);
3121         if (token.type == T_IDENTIFIER) {
3122                 symbol = token.v.symbol;
3123                 next_token();
3124
3125                 entity = get_entity(symbol, NAMESPACE_ENUM);
3126                 assert(entity == NULL || entity->kind == ENTITY_ENUM);
3127         } else if (token.type != '{') {
3128                 parse_error_expected("while parsing enum type specifier",
3129                                      T_IDENTIFIER, '{', NULL);
3130                 return NULL;
3131         } else {
3132                 entity  = NULL;
3133                 symbol  = NULL;
3134         }
3135
3136         if (entity == NULL) {
3137                 entity                       = allocate_entity_zero(ENTITY_ENUM);
3138                 entity->base.namespc         = NAMESPACE_ENUM;
3139                 entity->base.source_position = token.source_position;
3140                 entity->base.symbol          = symbol;
3141                 entity->base.parent_scope    = scope;
3142         }
3143
3144         type_t *const type = allocate_type_zero(TYPE_ENUM);
3145         type->enumt.enume  = &entity->enume;
3146
3147         if (token.type == '{') {
3148                 if (entity->enume.complete) {
3149                         errorf(HERE, "multiple definitions of enum %Y (previous definition %P)",
3150                                symbol, &entity->base.source_position);
3151                 }
3152                 if (symbol != NULL) {
3153                         environment_push(entity);
3154                 }
3155                 append_entity(scope, entity);
3156                 entity->enume.complete = true;
3157
3158                 parse_enum_entries(type);
3159                 parse_attributes(&attributes);
3160         } else if(!entity->enume.complete && !(c_mode & _GNUC)) {
3161                 errorf(HERE, "enum %Y used before definition (incomplete enumes are a GNU extension)",
3162                        symbol);
3163         }
3164
3165         return type;
3166 }
3167
3168 /**
3169  * if a symbol is a typedef to another type, return true
3170  */
3171 static bool is_typedef_symbol(symbol_t *symbol)
3172 {
3173         const entity_t *const entity = get_entity(symbol, NAMESPACE_NORMAL);
3174         return entity != NULL && entity->kind == ENTITY_TYPEDEF;
3175 }
3176
3177 static type_t *parse_typeof(void)
3178 {
3179         eat(T___typeof__);
3180
3181         type_t *type;
3182
3183         expect('(');
3184         add_anchor_token(')');
3185
3186         expression_t *expression  = NULL;
3187
3188         bool old_type_prop     = in_type_prop;
3189         bool old_gcc_extension = in_gcc_extension;
3190         in_type_prop           = true;
3191
3192         while (token.type == T___extension__) {
3193                 /* This can be a prefix to a typename or an expression. */
3194                 next_token();
3195                 in_gcc_extension = true;
3196         }
3197         switch (token.type) {
3198         case T_IDENTIFIER:
3199                 if (is_typedef_symbol(token.v.symbol)) {
3200                         type = parse_typename();
3201                 } else {
3202                         expression = parse_expression();
3203                         type       = expression->base.type;
3204                 }
3205                 break;
3206
3207         TYPENAME_START
3208                 type = parse_typename();
3209                 break;
3210
3211         default:
3212                 expression = parse_expression();
3213                 type       = expression->base.type;
3214                 break;
3215         }
3216         in_type_prop     = old_type_prop;
3217         in_gcc_extension = old_gcc_extension;
3218
3219         rem_anchor_token(')');
3220         expect(')');
3221
3222         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF);
3223         typeof_type->typeoft.expression  = expression;
3224         typeof_type->typeoft.typeof_type = type;
3225
3226         return typeof_type;
3227 end_error:
3228         return NULL;
3229 }
3230
3231 typedef enum specifiers_t {
3232         SPECIFIER_SIGNED    = 1 << 0,
3233         SPECIFIER_UNSIGNED  = 1 << 1,
3234         SPECIFIER_LONG      = 1 << 2,
3235         SPECIFIER_INT       = 1 << 3,
3236         SPECIFIER_DOUBLE    = 1 << 4,
3237         SPECIFIER_CHAR      = 1 << 5,
3238         SPECIFIER_SHORT     = 1 << 6,
3239         SPECIFIER_LONG_LONG = 1 << 7,
3240         SPECIFIER_FLOAT     = 1 << 8,
3241         SPECIFIER_BOOL      = 1 << 9,
3242         SPECIFIER_VOID      = 1 << 10,
3243         SPECIFIER_INT8      = 1 << 11,
3244         SPECIFIER_INT16     = 1 << 12,
3245         SPECIFIER_INT32     = 1 << 13,
3246         SPECIFIER_INT64     = 1 << 14,
3247         SPECIFIER_INT128    = 1 << 15,
3248         SPECIFIER_COMPLEX   = 1 << 16,
3249         SPECIFIER_IMAGINARY = 1 << 17,
3250 } specifiers_t;
3251
3252 static type_t *create_builtin_type(symbol_t *const symbol,
3253                                    type_t *const real_type)
3254 {
3255         type_t *type            = allocate_type_zero(TYPE_BUILTIN);
3256         type->builtin.symbol    = symbol;
3257         type->builtin.real_type = real_type;
3258
3259         type_t *result = typehash_insert(type);
3260         if (type != result) {
3261                 free_type(type);
3262         }
3263
3264         return result;
3265 }
3266
3267 static type_t *get_typedef_type(symbol_t *symbol)
3268 {
3269         entity_t *entity = get_entity(symbol, NAMESPACE_NORMAL);
3270         if (entity == NULL || entity->kind != ENTITY_TYPEDEF)
3271                 return NULL;
3272
3273         type_t *type            = allocate_type_zero(TYPE_TYPEDEF);
3274         type->typedeft.typedefe = &entity->typedefe;
3275
3276         return type;
3277 }
3278
3279 /**
3280  * check for the allowed MS alignment values.
3281  */
3282 static bool check_alignment_value(long long intvalue)
3283 {
3284         if (intvalue < 1 || intvalue > 8192) {
3285                 errorf(HERE, "illegal alignment value");
3286                 return false;
3287         }
3288         unsigned v = (unsigned)intvalue;
3289         for (unsigned i = 1; i <= 8192; i += i) {
3290                 if (i == v)
3291                         return true;
3292         }
3293         errorf(HERE, "alignment must be power of two");
3294         return false;
3295 }
3296
3297 #define DET_MOD(name, tag) do { \
3298         if (*modifiers & tag && warning.other) warningf(HERE, #name " used more than once"); \
3299         *modifiers |= tag; \
3300 } while (0)
3301
3302 static void parse_microsoft_extended_decl_modifier(declaration_specifiers_t *specifiers)
3303 {
3304         decl_modifiers_t *modifiers = &specifiers->modifiers;
3305
3306         while (true) {
3307                 if (token.type == T_restrict) {
3308                         next_token();
3309                         DET_MOD(restrict, DM_RESTRICT);
3310                         goto end_loop;
3311                 } else if (token.type != T_IDENTIFIER)
3312                         break;
3313                 symbol_t *symbol = token.v.symbol;
3314                 if (symbol == sym_align) {
3315                         next_token();
3316                         expect('(');
3317                         if (token.type != T_INTEGER)
3318                                 goto end_error;
3319                         if (check_alignment_value(token.v.intvalue)) {
3320                                 if (specifiers->alignment != 0 && warning.other)
3321                                         warningf(HERE, "align used more than once");
3322                                 specifiers->alignment = (unsigned char)token.v.intvalue;
3323                         }
3324                         next_token();
3325                         expect(')');
3326                 } else if (symbol == sym_allocate) {
3327                         next_token();
3328                         expect('(');
3329                         if (token.type != T_IDENTIFIER)
3330                                 goto end_error;
3331                         (void)token.v.symbol;
3332                         expect(')');
3333                 } else if (symbol == sym_dllimport) {
3334                         next_token();
3335                         DET_MOD(dllimport, DM_DLLIMPORT);
3336                 } else if (symbol == sym_dllexport) {
3337                         next_token();
3338                         DET_MOD(dllexport, DM_DLLEXPORT);
3339                 } else if (symbol == sym_thread) {
3340                         next_token();
3341                         DET_MOD(thread, DM_THREAD);
3342                 } else if (symbol == sym_naked) {
3343                         next_token();
3344                         DET_MOD(naked, DM_NAKED);
3345                 } else if (symbol == sym_noinline) {
3346                         next_token();
3347                         DET_MOD(noinline, DM_NOINLINE);
3348                 } else if (symbol == sym_noreturn) {
3349                         next_token();
3350                         DET_MOD(noreturn, DM_NORETURN);
3351                 } else if (symbol == sym_nothrow) {
3352                         next_token();
3353                         DET_MOD(nothrow, DM_NOTHROW);
3354                 } else if (symbol == sym_novtable) {
3355                         next_token();
3356                         DET_MOD(novtable, DM_NOVTABLE);
3357                 } else if (symbol == sym_property) {
3358                         next_token();
3359                         expect('(');
3360                         for (;;) {
3361                                 bool is_get = false;
3362                                 if (token.type != T_IDENTIFIER)
3363                                         goto end_error;
3364                                 if (token.v.symbol == sym_get) {
3365                                         is_get = true;
3366                                 } else if (token.v.symbol == sym_put) {
3367                                 } else {
3368                                         errorf(HERE, "Bad property name '%Y'", token.v.symbol);
3369                                         goto end_error;
3370                                 }
3371                                 next_token();
3372                                 expect('=');
3373                                 if (token.type != T_IDENTIFIER)
3374                                         goto end_error;
3375                                 if (is_get) {
3376                                         if (specifiers->get_property_sym != NULL) {
3377                                                 errorf(HERE, "get property name already specified");
3378                                         } else {
3379                                                 specifiers->get_property_sym = token.v.symbol;
3380                                         }
3381                                 } else {
3382                                         if (specifiers->put_property_sym != NULL) {
3383                                                 errorf(HERE, "put property name already specified");
3384                                         } else {
3385                                                 specifiers->put_property_sym = token.v.symbol;
3386                                         }
3387                                 }
3388                                 next_token();
3389                                 if (token.type == ',') {
3390                                         next_token();
3391                                         continue;
3392                                 }
3393                                 break;
3394                         }
3395                         expect(')');
3396                 } else if (symbol == sym_selectany) {
3397                         next_token();
3398                         DET_MOD(selectany, DM_SELECTANY);
3399                 } else if (symbol == sym_uuid) {
3400                         next_token();
3401                         expect('(');
3402                         if (token.type != T_STRING_LITERAL)
3403                                 goto end_error;
3404                         next_token();
3405                         expect(')');
3406                 } else if (symbol == sym_deprecated) {
3407                         next_token();
3408                         if (specifiers->deprecated != 0 && warning.other)
3409                                 warningf(HERE, "deprecated used more than once");
3410                         specifiers->deprecated = true;
3411                         if (token.type == '(') {
3412                                 next_token();
3413                                 if (token.type == T_STRING_LITERAL) {
3414                                         specifiers->deprecated_string = token.v.string.begin;
3415                                         next_token();
3416                                 } else {
3417                                         errorf(HERE, "string literal expected");
3418                                 }
3419                                 expect(')');
3420                         }
3421                 } else if (symbol == sym_noalias) {
3422                         next_token();
3423                         DET_MOD(noalias, DM_NOALIAS);
3424                 } else {
3425                         if (warning.other)
3426                                 warningf(HERE, "Unknown modifier %Y ignored", token.v.symbol);
3427                         next_token();
3428                         if (token.type == '(')
3429                                 skip_until(')');
3430                 }
3431 end_loop:
3432                 if (token.type == ',')
3433                         next_token();
3434         }
3435 end_error:
3436         return;
3437 }
3438
3439 static entity_t *create_error_entity(symbol_t *symbol, entity_kind_tag_t kind)
3440 {
3441         entity_t *entity             = allocate_entity_zero(kind);
3442         entity->base.source_position = *HERE;
3443         entity->base.symbol          = symbol;
3444         if (is_declaration(entity)) {
3445                 entity->declaration.type     = type_error_type;
3446                 entity->declaration.implicit = true;
3447         }
3448         record_entity(entity, false);
3449         return entity;
3450 }
3451
3452 /**
3453  * Finish the construction of a struct type by calculating
3454  * its size, offsets, alignment.
3455  */
3456 static void finish_struct_type(compound_type_t *type)
3457 {
3458         assert(type->compound != NULL);
3459
3460         compound_t *compound = type->compound;
3461         if (!compound->complete)
3462                 return;
3463
3464         il_size_t      size           = 0;
3465         il_size_t      offset;
3466         il_alignment_t alignment      = 1;
3467         bool           need_pad       = false;
3468
3469         entity_t *entry = compound->members.entities;
3470         for (; entry != NULL; entry = entry->base.next) {
3471                 if (entry->kind != ENTITY_COMPOUND_MEMBER)
3472                         continue;
3473
3474                 type_t *m_type = skip_typeref(entry->declaration.type);
3475                 if (! is_type_valid(m_type)) {
3476                         /* simply ignore errors here */
3477                         continue;
3478                 }
3479                 il_alignment_t m_alignment = m_type->base.alignment;
3480                 if (m_alignment > alignment)
3481                         alignment = m_alignment;
3482
3483                 offset = (size + m_alignment - 1) & -m_alignment;
3484
3485                 if (offset > size)
3486                         need_pad = true;
3487                 entry->compound_member.offset = offset;
3488                 size = offset + m_type->base.size;
3489         }
3490         if (type->base.alignment != 0) {
3491                 alignment = type->base.alignment;
3492         }
3493
3494         offset = (size + alignment - 1) & -alignment;
3495         if (offset > size)
3496                 need_pad = true;
3497
3498         if (warning.padded && need_pad) {
3499                 warningf(&compound->base.source_position,
3500                         "'%#T' needs padding", type, compound->base.symbol);
3501         }
3502         if (warning.packed && !need_pad) {
3503                 warningf(&compound->base.source_position,
3504                         "superfluous packed attribute on '%#T'",
3505                         type, compound->base.symbol);
3506         }
3507
3508         type->base.size      = offset;
3509         type->base.alignment = alignment;
3510 }
3511
3512 /**
3513  * Finish the construction of an union type by calculating
3514  * its size and alignment.
3515  */
3516 static void finish_union_type(compound_type_t *type)
3517 {
3518         assert(type->compound != NULL);
3519
3520         compound_t *compound = type->compound;
3521         if (! compound->complete)
3522                 return;
3523
3524         il_size_t      size      = 0;
3525         il_alignment_t alignment = 1;
3526
3527         entity_t *entry = compound->members.entities;
3528         for (; entry != NULL; entry = entry->base.next) {
3529                 if (entry->kind != ENTITY_COMPOUND_MEMBER)
3530                         continue;
3531
3532                 type_t *m_type = skip_typeref(entry->declaration.type);
3533                 if (! is_type_valid(m_type))
3534                         continue;
3535
3536                 entry->compound_member.offset = 0;
3537                 if (m_type->base.size > size)
3538                         size = m_type->base.size;
3539                 if (m_type->base.alignment > alignment)
3540                         alignment = m_type->base.alignment;
3541         }
3542         if (type->base.alignment != 0) {
3543                 alignment = type->base.alignment;
3544         }
3545         size = (size + alignment - 1) & -alignment;
3546         type->base.size      = size;
3547         type->base.alignment = alignment;
3548 }
3549
3550 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
3551 {
3552         type_t            *type              = NULL;
3553         type_qualifiers_t  qualifiers        = TYPE_QUALIFIER_NONE;
3554         type_modifiers_t   modifiers         = TYPE_MODIFIER_NONE;
3555         unsigned           type_specifiers   = 0;
3556         bool               newtype           = false;
3557         bool               saw_error         = false;
3558         bool               old_gcc_extension = in_gcc_extension;
3559
3560         specifiers->source_position = token.source_position;
3561
3562         while (true) {
3563                 specifiers->modifiers
3564                         |= parse_attributes(&specifiers->gnu_attributes);
3565                 if (specifiers->modifiers & DM_TRANSPARENT_UNION)
3566                         modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
3567
3568                 switch (token.type) {
3569
3570                 /* storage class */
3571 #define MATCH_STORAGE_CLASS(token, class)                                  \
3572                 case token:                                                        \
3573                         if (specifiers->storage_class != STORAGE_CLASS_NONE) {         \
3574                                 errorf(HERE, "multiple storage classes in declaration specifiers"); \
3575                         }                                                              \
3576                         specifiers->storage_class = class;                             \
3577                         next_token();                                                  \
3578                         break;
3579
3580                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
3581                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
3582                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
3583                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
3584                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
3585
3586                 case T__declspec:
3587                         next_token();
3588                         expect('(');
3589                         add_anchor_token(')');
3590                         parse_microsoft_extended_decl_modifier(specifiers);
3591                         rem_anchor_token(')');
3592                         expect(')');
3593                         break;
3594
3595                 case T___thread:
3596                         switch (specifiers->storage_class) {
3597                         case STORAGE_CLASS_NONE:
3598                                 specifiers->storage_class = STORAGE_CLASS_THREAD;
3599                                 break;
3600
3601                         case STORAGE_CLASS_EXTERN:
3602                                 specifiers->storage_class = STORAGE_CLASS_THREAD_EXTERN;
3603                                 break;
3604
3605                         case STORAGE_CLASS_STATIC:
3606                                 specifiers->storage_class = STORAGE_CLASS_THREAD_STATIC;
3607                                 break;
3608
3609                         default:
3610                                 errorf(HERE, "multiple storage classes in declaration specifiers");
3611                                 break;
3612                         }
3613                         next_token();
3614                         break;
3615
3616                 /* type qualifiers */
3617 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
3618                 case token:                                                     \
3619                         qualifiers |= qualifier;                                    \
3620                         next_token();                                               \
3621                         break
3622
3623                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
3624                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
3625                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
3626                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
3627                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
3628                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
3629                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
3630                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
3631
3632                 case T___extension__:
3633                         next_token();
3634                         in_gcc_extension = true;
3635                         break;
3636
3637                 /* type specifiers */
3638 #define MATCH_SPECIFIER(token, specifier, name)                         \
3639                 case token:                                                     \
3640                         next_token();                                               \
3641                         if (type_specifiers & specifier) {                           \
3642                                 errorf(HERE, "multiple " name " type specifiers given"); \
3643                         } else {                                                    \
3644                                 type_specifiers |= specifier;                           \
3645                         }                                                           \
3646                         break
3647
3648                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void");
3649                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char");
3650                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short");
3651                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int");
3652                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float");
3653                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double");
3654                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed");
3655                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned");
3656                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool");
3657                 MATCH_SPECIFIER(T__int8,      SPECIFIER_INT8,      "_int8");
3658                 MATCH_SPECIFIER(T__int16,     SPECIFIER_INT16,     "_int16");
3659                 MATCH_SPECIFIER(T__int32,     SPECIFIER_INT32,     "_int32");
3660                 MATCH_SPECIFIER(T__int64,     SPECIFIER_INT64,     "_int64");
3661                 MATCH_SPECIFIER(T__int128,    SPECIFIER_INT128,    "_int128");
3662                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex");
3663                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary");
3664
3665                 case T__forceinline:
3666                         /* only in microsoft mode */
3667                         specifiers->modifiers |= DM_FORCEINLINE;
3668                         /* FALLTHROUGH */
3669
3670                 case T_inline:
3671                         next_token();
3672                         specifiers->is_inline = true;
3673                         break;
3674
3675                 case T_long:
3676                         next_token();
3677                         if (type_specifiers & SPECIFIER_LONG_LONG) {
3678                                 errorf(HERE, "multiple type specifiers given");
3679                         } else if (type_specifiers & SPECIFIER_LONG) {
3680                                 type_specifiers |= SPECIFIER_LONG_LONG;
3681                         } else {
3682                                 type_specifiers |= SPECIFIER_LONG;
3683                         }
3684                         break;
3685
3686                 case T_struct: {
3687                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT);
3688
3689                         type->compound.compound = parse_compound_type_specifier(true);
3690                         finish_struct_type(&type->compound);
3691                         break;
3692                 }
3693                 case T_union: {
3694                         type = allocate_type_zero(TYPE_COMPOUND_UNION);
3695                         type->compound.compound = parse_compound_type_specifier(false);
3696                         if (type->compound.compound->modifiers & DM_TRANSPARENT_UNION)
3697                                 modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
3698                         finish_union_type(&type->compound);
3699                         break;
3700                 }
3701                 case T_enum:
3702                         type = parse_enum_specifier();
3703                         break;
3704                 case T___typeof__:
3705                         type = parse_typeof();
3706                         break;
3707                 case T___builtin_va_list:
3708                         type = duplicate_type(type_valist);
3709                         next_token();
3710                         break;
3711
3712                 case T_IDENTIFIER: {
3713                         /* only parse identifier if we haven't found a type yet */
3714                         if (type != NULL || type_specifiers != 0) {
3715                                 /* Be somewhat resilient to typos like 'unsigned lng* f()' in a
3716                                  * declaration, so it doesn't generate errors about expecting '(' or
3717                                  * '{' later on. */
3718                                 switch (look_ahead(1)->type) {
3719                                         STORAGE_CLASSES
3720                                         TYPE_SPECIFIERS
3721                                         case T_const:
3722                                         case T_restrict:
3723                                         case T_volatile:
3724                                         case T_inline:
3725                                         case T__forceinline: /* ^ DECLARATION_START except for __attribute__ */
3726                                         case T_IDENTIFIER:
3727                                         case '*':
3728                                                 errorf(HERE, "discarding stray %K in declaration specifier", &token);
3729                                                 next_token();
3730                                                 continue;
3731
3732                                         default:
3733                                                 goto finish_specifiers;
3734                                 }
3735                         }
3736
3737                         type_t *const typedef_type = get_typedef_type(token.v.symbol);
3738                         if (typedef_type == NULL) {
3739                                 /* Be somewhat resilient to typos like 'vodi f()' at the beginning of a
3740                                  * declaration, so it doesn't generate 'implicit int' followed by more
3741                                  * errors later on. */
3742                                 token_type_t const la1_type = (token_type_t)look_ahead(1)->type;
3743                                 switch (la1_type) {
3744                                         DECLARATION_START
3745                                         case T_IDENTIFIER:
3746                                         case '*': {
3747                                                 errorf(HERE, "%K does not name a type", &token);
3748
3749                                                 entity_t *entity =
3750                                                         create_error_entity(token.v.symbol, ENTITY_TYPEDEF);
3751
3752                                                 type = allocate_type_zero(TYPE_TYPEDEF);
3753                                                 type->typedeft.typedefe = &entity->typedefe;
3754
3755                                                 next_token();
3756                                                 saw_error = true;
3757                                                 if (la1_type == '*')
3758                                                         goto finish_specifiers;
3759                                                 continue;
3760                                         }
3761
3762                                         default:
3763                                                 goto finish_specifiers;
3764                                 }
3765                         }
3766
3767                         next_token();
3768                         type = typedef_type;
3769                         break;
3770                 }
3771
3772                 /* function specifier */
3773                 default:
3774                         goto finish_specifiers;
3775                 }
3776         }
3777
3778 finish_specifiers:
3779         in_gcc_extension = old_gcc_extension;
3780
3781         if (type == NULL || (saw_error && type_specifiers != 0)) {
3782                 atomic_type_kind_t atomic_type;
3783
3784                 /* match valid basic types */
3785                 switch (type_specifiers) {
3786                 case SPECIFIER_VOID:
3787                         atomic_type = ATOMIC_TYPE_VOID;
3788                         break;
3789                 case SPECIFIER_CHAR:
3790                         atomic_type = ATOMIC_TYPE_CHAR;
3791                         break;
3792                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
3793                         atomic_type = ATOMIC_TYPE_SCHAR;
3794                         break;
3795                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
3796                         atomic_type = ATOMIC_TYPE_UCHAR;
3797                         break;
3798                 case SPECIFIER_SHORT:
3799                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
3800                 case SPECIFIER_SHORT | SPECIFIER_INT:
3801                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3802                         atomic_type = ATOMIC_TYPE_SHORT;
3803                         break;
3804                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
3805                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3806                         atomic_type = ATOMIC_TYPE_USHORT;
3807                         break;
3808                 case SPECIFIER_INT:
3809                 case SPECIFIER_SIGNED:
3810                 case SPECIFIER_SIGNED | SPECIFIER_INT:
3811                         atomic_type = ATOMIC_TYPE_INT;
3812                         break;
3813                 case SPECIFIER_UNSIGNED:
3814                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
3815                         atomic_type = ATOMIC_TYPE_UINT;
3816                         break;
3817                 case SPECIFIER_LONG:
3818                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
3819                 case SPECIFIER_LONG | SPECIFIER_INT:
3820                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3821                         atomic_type = ATOMIC_TYPE_LONG;
3822                         break;
3823                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
3824                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3825                         atomic_type = ATOMIC_TYPE_ULONG;
3826                         break;
3827
3828                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3829                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3830                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
3831                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3832                         | SPECIFIER_INT:
3833                         atomic_type = ATOMIC_TYPE_LONGLONG;
3834                         goto warn_about_long_long;
3835
3836                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3837                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3838                         | SPECIFIER_INT:
3839                         atomic_type = ATOMIC_TYPE_ULONGLONG;
3840 warn_about_long_long:
3841                         if (warning.long_long) {
3842                                 warningf(&specifiers->source_position,
3843                                          "ISO C90 does not support 'long long'");
3844                         }
3845                         break;
3846
3847                 case SPECIFIER_UNSIGNED | SPECIFIER_INT8:
3848                         atomic_type = unsigned_int8_type_kind;
3849                         break;
3850
3851                 case SPECIFIER_UNSIGNED | SPECIFIER_INT16:
3852                         atomic_type = unsigned_int16_type_kind;
3853                         break;
3854
3855                 case SPECIFIER_UNSIGNED | SPECIFIER_INT32:
3856                         atomic_type = unsigned_int32_type_kind;
3857                         break;
3858
3859                 case SPECIFIER_UNSIGNED | SPECIFIER_INT64:
3860                         atomic_type = unsigned_int64_type_kind;
3861                         break;
3862
3863                 case SPECIFIER_UNSIGNED | SPECIFIER_INT128:
3864                         atomic_type = unsigned_int128_type_kind;
3865                         break;
3866
3867                 case SPECIFIER_INT8:
3868                 case SPECIFIER_SIGNED | SPECIFIER_INT8:
3869                         atomic_type = int8_type_kind;
3870                         break;
3871
3872                 case SPECIFIER_INT16:
3873                 case SPECIFIER_SIGNED | SPECIFIER_INT16:
3874                         atomic_type = int16_type_kind;
3875                         break;
3876
3877                 case SPECIFIER_INT32:
3878                 case SPECIFIER_SIGNED | SPECIFIER_INT32:
3879                         atomic_type = int32_type_kind;
3880                         break;
3881
3882                 case SPECIFIER_INT64:
3883                 case SPECIFIER_SIGNED | SPECIFIER_INT64:
3884                         atomic_type = int64_type_kind;
3885                         break;
3886
3887                 case SPECIFIER_INT128:
3888                 case SPECIFIER_SIGNED | SPECIFIER_INT128:
3889                         atomic_type = int128_type_kind;
3890                         break;
3891
3892                 case SPECIFIER_FLOAT:
3893                         atomic_type = ATOMIC_TYPE_FLOAT;
3894                         break;
3895                 case SPECIFIER_DOUBLE:
3896                         atomic_type = ATOMIC_TYPE_DOUBLE;
3897                         break;
3898                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
3899                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3900                         break;
3901                 case SPECIFIER_BOOL:
3902                         atomic_type = ATOMIC_TYPE_BOOL;
3903                         break;
3904                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
3905                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
3906                         atomic_type = ATOMIC_TYPE_FLOAT;
3907                         break;
3908                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3909                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3910                         atomic_type = ATOMIC_TYPE_DOUBLE;
3911                         break;
3912                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3913                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3914                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3915                         break;
3916                 default:
3917                         /* invalid specifier combination, give an error message */
3918                         if (type_specifiers == 0) {
3919                                 if (saw_error)
3920                                         goto end_error;
3921
3922                                 /* ISO/IEC 14882:1998(E) Â§C.1.5:4 */
3923                                 if (!(c_mode & _CXX) && !strict_mode) {
3924                                         if (warning.implicit_int) {
3925                                                 warningf(HERE, "no type specifiers in declaration, using 'int'");
3926                                         }
3927                                         atomic_type = ATOMIC_TYPE_INT;
3928                                         break;
3929                                 } else {
3930                                         errorf(HERE, "no type specifiers given in declaration");
3931                                 }
3932                         } else if ((type_specifiers & SPECIFIER_SIGNED) &&
3933                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
3934                                 errorf(HERE, "signed and unsigned specifiers given");
3935                         } else if (type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
3936                                 errorf(HERE, "only integer types can be signed or unsigned");
3937                         } else {
3938                                 errorf(HERE, "multiple datatypes in declaration");
3939                         }
3940                         goto end_error;
3941                 }
3942
3943                 if (type_specifiers & SPECIFIER_COMPLEX) {
3944                         type                = allocate_type_zero(TYPE_COMPLEX);
3945                         type->complex.akind = atomic_type;
3946                 } else if (type_specifiers & SPECIFIER_IMAGINARY) {
3947                         type                  = allocate_type_zero(TYPE_IMAGINARY);
3948                         type->imaginary.akind = atomic_type;
3949                 } else {
3950                         type               = allocate_type_zero(TYPE_ATOMIC);
3951                         type->atomic.akind = atomic_type;
3952                 }
3953                 newtype = true;
3954         } else if (type_specifiers != 0) {
3955                 errorf(HERE, "multiple datatypes in declaration");
3956         }
3957
3958         /* FIXME: check type qualifiers here */
3959
3960         type->base.qualifiers = qualifiers;
3961         type->base.modifiers  = modifiers;
3962
3963         type_t *result = typehash_insert(type);
3964         if (newtype && result != type) {
3965                 free_type(type);
3966         }
3967
3968         specifiers->type = result;
3969         return;
3970
3971 end_error:
3972         specifiers->type = type_error_type;
3973         return;
3974 }
3975
3976 static type_qualifiers_t parse_type_qualifiers(void)
3977 {
3978         type_qualifiers_t qualifiers = TYPE_QUALIFIER_NONE;
3979
3980         while (true) {
3981                 switch (token.type) {
3982                 /* type qualifiers */
3983                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
3984                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
3985                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
3986                 /* microsoft extended type modifiers */
3987                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
3988                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
3989                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
3990                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
3991                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
3992
3993                 default:
3994                         return qualifiers;
3995                 }
3996         }
3997 }
3998
3999 /**
4000  * Parses an K&R identifier list
4001  */
4002 static void parse_identifier_list(scope_t *scope)
4003 {
4004         do {
4005                 entity_t *entity = allocate_entity_zero(ENTITY_VARIABLE);
4006                 entity->base.source_position = token.source_position;
4007                 entity->base.namespc         = NAMESPACE_NORMAL;
4008                 entity->base.symbol          = token.v.symbol;
4009                 /* a K&R parameter has no type, yet */
4010                 next_token();
4011
4012                 append_entity(scope, entity);
4013
4014                 if (token.type != ',') {
4015                         break;
4016                 }
4017                 next_token();
4018         } while (token.type == T_IDENTIFIER);
4019 }
4020
4021 static type_t *automatic_type_conversion(type_t *orig_type);
4022
4023 static void semantic_parameter(declaration_t *declaration)
4024 {
4025         /* TODO: improve error messages */
4026         source_position_t const* const pos = &declaration->base.source_position;
4027
4028         /* Â§6.9.1:6 */
4029         switch (declaration->declared_storage_class) {
4030                 /* Allowed storage classes */
4031                 case STORAGE_CLASS_NONE:
4032                 case STORAGE_CLASS_REGISTER:
4033                         break;
4034
4035                 default:
4036                         errorf(pos, "parameter may only have none or register storage class");
4037                         break;
4038         }
4039
4040         type_t *const orig_type = declaration->type;
4041         /* Â§6.7.5.3(7): Array as last part of a parameter type is just syntactic
4042          * sugar.  Turn it into a pointer.
4043          * Â§6.7.5.3(8): A declaration of a parameter as ``function returning type''
4044          * shall be adjusted to ``pointer to function returning type'', as in 6.3.2.1.
4045          */
4046         type_t *const type = automatic_type_conversion(orig_type);
4047         declaration->type = type;
4048
4049         if (is_type_incomplete(skip_typeref(type))) {
4050                 errorf(pos, "parameter '%#T' is of incomplete type",
4051                        orig_type, declaration->base.symbol);
4052         }
4053 }
4054
4055 static entity_t *parse_parameter(void)
4056 {
4057         declaration_specifiers_t specifiers;
4058         memset(&specifiers, 0, sizeof(specifiers));
4059
4060         parse_declaration_specifiers(&specifiers);
4061
4062         entity_t *entity = parse_declarator(&specifiers, true, false);
4063         return entity;
4064 }
4065
4066 /**
4067  * Parses function type parameters (and optionally creates variable_t entities
4068  * for them in a scope)
4069  */
4070 static void parse_parameters(function_type_t *type, scope_t *scope)
4071 {
4072         eat('(');
4073         add_anchor_token(')');
4074         int saved_comma_state = save_and_reset_anchor_state(',');
4075
4076         if (token.type == T_IDENTIFIER &&
4077             !is_typedef_symbol(token.v.symbol)) {
4078                 token_type_t la1_type = (token_type_t)look_ahead(1)->type;
4079                 if (la1_type == ',' || la1_type == ')') {
4080                         type->kr_style_parameters = true;
4081                         parse_identifier_list(scope);
4082                         goto parameters_finished;
4083                 }
4084         }
4085
4086         if (token.type == ')') {
4087                 /* ISO/IEC 14882:1998(E) Â§C.1.6:1 */
4088                 if (!(c_mode & _CXX))
4089                         type->unspecified_parameters = true;
4090                 goto parameters_finished;
4091         }
4092
4093         function_parameter_t *parameter;
4094         function_parameter_t *last_parameter = NULL;
4095
4096         while (true) {
4097                 switch (token.type) {
4098                 case T_DOTDOTDOT:
4099                         next_token();
4100                         type->variadic = true;
4101                         goto parameters_finished;
4102
4103                 case T_IDENTIFIER:
4104                 case T___extension__:
4105                 DECLARATION_START
4106                 {
4107                         entity_t *entity = parse_parameter();
4108                         if (entity->kind == ENTITY_TYPEDEF) {
4109                                 errorf(&entity->base.source_position,
4110                                        "typedef not allowed as function parameter");
4111                                 break;
4112                         }
4113                         assert(is_declaration(entity));
4114
4115                         /* func(void) is not a parameter */
4116                         if (last_parameter == NULL
4117                                         && token.type == ')'
4118                                         && entity->base.symbol == NULL
4119                                         && skip_typeref(entity->declaration.type) == type_void) {
4120                                 goto parameters_finished;
4121                         }
4122                         semantic_parameter(&entity->declaration);
4123
4124                         parameter = obstack_alloc(type_obst, sizeof(parameter[0]));
4125                         memset(parameter, 0, sizeof(parameter[0]));
4126                         parameter->type = entity->declaration.type;
4127
4128                         if (scope != NULL) {
4129                                 append_entity(scope, entity);
4130                         }
4131
4132                         if (last_parameter != NULL) {
4133                                 last_parameter->next = parameter;
4134                         } else {
4135                                 type->parameters = parameter;
4136                         }
4137                         last_parameter   = parameter;
4138                         break;
4139                 }
4140
4141                 default:
4142                         goto parameters_finished;
4143                 }
4144                 if (token.type != ',') {
4145                         goto parameters_finished;
4146                 }
4147                 next_token();
4148         }
4149
4150
4151 parameters_finished:
4152         rem_anchor_token(')');
4153         expect(')');
4154
4155 end_error:
4156         restore_anchor_state(',', saved_comma_state);
4157 }
4158
4159 typedef enum construct_type_kind_t {
4160         CONSTRUCT_INVALID,
4161         CONSTRUCT_POINTER,
4162         CONSTRUCT_FUNCTION,
4163         CONSTRUCT_ARRAY
4164 } construct_type_kind_t;
4165
4166 typedef struct construct_type_t construct_type_t;
4167 struct construct_type_t {
4168         construct_type_kind_t  kind;
4169         construct_type_t      *next;
4170 };
4171
4172 typedef struct parsed_pointer_t parsed_pointer_t;
4173 struct parsed_pointer_t {
4174         construct_type_t  construct_type;
4175         type_qualifiers_t type_qualifiers;
4176 };
4177
4178 typedef struct construct_function_type_t construct_function_type_t;
4179 struct construct_function_type_t {
4180         construct_type_t  construct_type;
4181         type_t           *function_type;
4182 };
4183
4184 typedef struct parsed_array_t parsed_array_t;
4185 struct parsed_array_t {
4186         construct_type_t  construct_type;
4187         type_qualifiers_t type_qualifiers;
4188         bool              is_static;
4189         bool              is_variable;
4190         expression_t     *size;
4191 };
4192
4193 typedef struct construct_base_type_t construct_base_type_t;
4194 struct construct_base_type_t {
4195         construct_type_t  construct_type;
4196         type_t           *type;
4197 };
4198
4199 static construct_type_t *parse_pointer_declarator(void)
4200 {
4201         eat('*');
4202
4203         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
4204         memset(pointer, 0, sizeof(pointer[0]));
4205         pointer->construct_type.kind = CONSTRUCT_POINTER;
4206         pointer->type_qualifiers     = parse_type_qualifiers();
4207
4208         return (construct_type_t*) pointer;
4209 }
4210
4211 static construct_type_t *parse_array_declarator(void)
4212 {
4213         eat('[');
4214         add_anchor_token(']');
4215
4216         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
4217         memset(array, 0, sizeof(array[0]));
4218         array->construct_type.kind = CONSTRUCT_ARRAY;
4219
4220         if (token.type == T_static) {
4221                 array->is_static = true;
4222                 next_token();
4223         }
4224
4225         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
4226         if (type_qualifiers != 0) {
4227                 if (token.type == T_static) {
4228                         array->is_static = true;
4229                         next_token();
4230                 }
4231         }
4232         array->type_qualifiers = type_qualifiers;
4233
4234         if (token.type == '*' && look_ahead(1)->type == ']') {
4235                 array->is_variable = true;
4236                 next_token();
4237         } else if (token.type != ']') {
4238                 array->size = parse_assignment_expression();
4239         }
4240
4241         rem_anchor_token(']');
4242         expect(']');
4243
4244 end_error:
4245         return (construct_type_t*) array;
4246 }
4247
4248 static construct_type_t *parse_function_declarator(scope_t *scope)
4249 {
4250         type_t *type = allocate_type_zero(TYPE_FUNCTION);
4251
4252         /* TODO: revive this... once we know exactly how to do it */
4253 #if 0
4254         decl_modifiers_t  modifiers = entity->declaration.modifiers;
4255
4256         unsigned mask = modifiers & (DM_CDECL|DM_STDCALL|DM_FASTCALL|DM_THISCALL);
4257
4258         if (mask & (mask-1)) {
4259                 const char *first = NULL, *second = NULL;
4260
4261                 /* more than one calling convention set */
4262                 if (modifiers & DM_CDECL) {
4263                         if (first == NULL)       first = "cdecl";
4264                         else if (second == NULL) second = "cdecl";
4265                 }
4266                 if (modifiers & DM_STDCALL) {
4267                         if (first == NULL)       first = "stdcall";
4268                         else if (second == NULL) second = "stdcall";
4269                 }
4270                 if (modifiers & DM_FASTCALL) {
4271                         if (first == NULL)       first = "fastcall";
4272                         else if (second == NULL) second = "fastcall";
4273                 }
4274                 if (modifiers & DM_THISCALL) {
4275                         if (first == NULL)       first = "thiscall";
4276                         else if (second == NULL) second = "thiscall";
4277                 }
4278                 errorf(&entity->base.source_position,
4279                            "%s and %s attributes are not compatible", first, second);
4280         }
4281
4282         if (modifiers & DM_CDECL)
4283                 type->function.calling_convention = CC_CDECL;
4284         else if (modifiers & DM_STDCALL)
4285                 type->function.calling_convention = CC_STDCALL;
4286         else if (modifiers & DM_FASTCALL)
4287                 type->function.calling_convention = CC_FASTCALL;
4288         else if (modifiers & DM_THISCALL)
4289                 type->function.calling_convention = CC_THISCALL;
4290 #endif
4291
4292         parse_parameters(&type->function, scope);
4293
4294         construct_function_type_t *construct_function_type =
4295                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
4296         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
4297         construct_function_type->construct_type.kind = CONSTRUCT_FUNCTION;
4298         construct_function_type->function_type       = type;
4299
4300         return &construct_function_type->construct_type;
4301 }
4302
4303 typedef struct parse_declarator_env_t {
4304         decl_modifiers_t   modifiers;
4305         symbol_t          *symbol;
4306         source_position_t  source_position;
4307         scope_t            parameters;
4308 } parse_declarator_env_t;
4309
4310 static construct_type_t *parse_inner_declarator(parse_declarator_env_t *env,
4311                 bool may_be_abstract)
4312 {
4313         /* construct a single linked list of construct_type_t's which describe
4314          * how to construct the final declarator type */
4315         construct_type_t *first      = NULL;
4316         construct_type_t *last       = NULL;
4317         gnu_attribute_t  *attributes = NULL;
4318
4319         decl_modifiers_t modifiers = parse_attributes(&attributes);
4320
4321         /* pointers */
4322         while (token.type == '*') {
4323                 construct_type_t *type = parse_pointer_declarator();
4324
4325                 if (last == NULL) {
4326                         first = type;
4327                         last  = type;
4328                 } else {
4329                         last->next = type;
4330                         last       = type;
4331                 }
4332
4333                 /* TODO: find out if this is correct */
4334                 modifiers |= parse_attributes(&attributes);
4335         }
4336
4337         if (env != NULL)
4338                 env->modifiers |= modifiers;
4339
4340         construct_type_t *inner_types = NULL;
4341
4342         switch (token.type) {
4343         case T_IDENTIFIER:
4344                 if (env == NULL) {
4345                         errorf(HERE, "no identifier expected in typename");
4346                 } else {
4347                         env->symbol          = token.v.symbol;
4348                         env->source_position = token.source_position;
4349                 }
4350                 next_token();
4351                 break;
4352         case '(':
4353                 next_token();
4354                 add_anchor_token(')');
4355                 inner_types = parse_inner_declarator(env, may_be_abstract);
4356                 if (inner_types != NULL) {
4357                         /* All later declarators only modify the return type */
4358                         env = NULL;
4359                 }
4360                 rem_anchor_token(')');
4361                 expect(')');
4362                 break;
4363         default:
4364                 if (may_be_abstract)
4365                         break;
4366                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', NULL);
4367                 eat_until_anchor();
4368                 return NULL;
4369         }
4370
4371         construct_type_t *p = last;
4372
4373         while(true) {
4374                 construct_type_t *type;
4375                 switch (token.type) {
4376                 case '(': {
4377                         scope_t *scope = NULL;
4378                         if (env != NULL)
4379                                 scope = &env->parameters;
4380
4381                         type = parse_function_declarator(scope);
4382                         break;
4383                 }
4384                 case '[':
4385                         type = parse_array_declarator();
4386                         break;
4387                 default:
4388                         goto declarator_finished;
4389                 }
4390
4391                 /* insert in the middle of the list (behind p) */
4392                 if (p != NULL) {
4393                         type->next = p->next;
4394                         p->next    = type;
4395                 } else {
4396                         type->next = first;
4397                         first      = type;
4398                 }
4399                 if (last == p) {
4400                         last = type;
4401                 }
4402         }
4403
4404 declarator_finished:
4405         /* append inner_types at the end of the list, we don't to set last anymore
4406          * as it's not needed anymore */
4407         if (last == NULL) {
4408                 assert(first == NULL);
4409                 first = inner_types;
4410         } else {
4411                 last->next = inner_types;
4412         }
4413
4414         return first;
4415 end_error:
4416         return NULL;
4417 }
4418
4419 static void parse_declaration_attributes(entity_t *entity)
4420 {
4421         gnu_attribute_t  *attributes = NULL;
4422         decl_modifiers_t  modifiers  = parse_attributes(&attributes);
4423
4424         if (entity == NULL)
4425                 return;
4426
4427         type_t *type;
4428         if (entity->kind == ENTITY_TYPEDEF) {
4429                 modifiers |= entity->typedefe.modifiers;
4430                 type       = entity->typedefe.type;
4431         } else {
4432                 assert(is_declaration(entity));
4433                 modifiers |= entity->declaration.modifiers;
4434                 type       = entity->declaration.type;
4435         }
4436         if (type == NULL)
4437                 return;
4438
4439         /* handle these strange/stupid mode attributes */
4440         gnu_attribute_t *attribute = attributes;
4441         for ( ; attribute != NULL; attribute = attribute->next) {
4442                 if (attribute->kind != GNU_AK_MODE || attribute->invalid)
4443                         continue;
4444
4445                 atomic_type_kind_t  akind = attribute->u.akind;
4446                 if (!is_type_signed(type)) {
4447                         switch (akind) {
4448                         case ATOMIC_TYPE_CHAR: akind = ATOMIC_TYPE_UCHAR; break;
4449                         case ATOMIC_TYPE_SHORT: akind = ATOMIC_TYPE_USHORT; break;
4450                         case ATOMIC_TYPE_INT: akind = ATOMIC_TYPE_UINT; break;
4451                         case ATOMIC_TYPE_LONGLONG: akind = ATOMIC_TYPE_ULONGLONG; break;
4452                         default:
4453                                 panic("invalid akind in mode attribute");
4454                         }
4455                 } else {
4456                         switch (akind) {
4457                         case ATOMIC_TYPE_CHAR: akind = ATOMIC_TYPE_SCHAR; break;
4458                         case ATOMIC_TYPE_SHORT: akind = ATOMIC_TYPE_SHORT; break;
4459                         case ATOMIC_TYPE_INT: akind = ATOMIC_TYPE_INT; break;
4460                         case ATOMIC_TYPE_LONGLONG: akind = ATOMIC_TYPE_LONGLONG; break;
4461                         default:
4462                                 panic("invalid akind in mode attribute");
4463                         }
4464                 }
4465
4466                 type = make_atomic_type(akind, type->base.qualifiers);
4467         }
4468
4469         type_modifiers_t type_modifiers = type->base.modifiers;
4470         if (modifiers & DM_TRANSPARENT_UNION)
4471                 modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
4472
4473         if (type->base.modifiers != type_modifiers) {
4474                 type_t *copy = duplicate_type(type);
4475                 copy->base.modifiers = type_modifiers;
4476
4477                 type = typehash_insert(copy);
4478                 if (type != copy) {
4479                         obstack_free(type_obst, copy);
4480                 }
4481         }
4482
4483         if (entity->kind == ENTITY_TYPEDEF) {
4484                 entity->typedefe.type      = type;
4485                 entity->typedefe.modifiers = modifiers;
4486         } else {
4487                 entity->declaration.type      = type;
4488                 entity->declaration.modifiers = modifiers;
4489         }
4490 }
4491
4492 static type_t *construct_declarator_type(construct_type_t *construct_list,
4493                                          type_t *type)
4494 {
4495         construct_type_t *iter = construct_list;
4496         for( ; iter != NULL; iter = iter->next) {
4497                 switch (iter->kind) {
4498                 case CONSTRUCT_INVALID:
4499                         internal_errorf(HERE, "invalid type construction found");
4500                 case CONSTRUCT_FUNCTION: {
4501                         construct_function_type_t *construct_function_type
4502                                 = (construct_function_type_t*) iter;
4503
4504                         type_t *function_type = construct_function_type->function_type;
4505
4506                         function_type->function.return_type = type;
4507
4508                         type_t *skipped_return_type = skip_typeref(type);
4509                         /* Â§6.7.5.3(1) */
4510                         if (is_type_function(skipped_return_type)) {
4511                                 errorf(HERE, "function returning function is not allowed");
4512                         } else if (is_type_array(skipped_return_type)) {
4513                                 errorf(HERE, "function returning array is not allowed");
4514                         } else {
4515                                 if (skipped_return_type->base.qualifiers != 0 && warning.other) {
4516                                         warningf(HERE,
4517                                                 "type qualifiers in return type of function type are meaningless");
4518                                 }
4519                         }
4520
4521                         type = function_type;
4522                         break;
4523                 }
4524
4525                 case CONSTRUCT_POINTER: {
4526                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
4527                         type = make_pointer_type(type, parsed_pointer->type_qualifiers);
4528                         continue;
4529                 }
4530
4531                 case CONSTRUCT_ARRAY: {
4532                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
4533                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY);
4534
4535                         expression_t *size_expression = parsed_array->size;
4536                         if (size_expression != NULL) {
4537                                 size_expression
4538                                         = create_implicit_cast(size_expression, type_size_t);
4539                         }
4540
4541                         array_type->base.qualifiers       = parsed_array->type_qualifiers;
4542                         array_type->array.element_type    = type;
4543                         array_type->array.is_static       = parsed_array->is_static;
4544                         array_type->array.is_variable     = parsed_array->is_variable;
4545                         array_type->array.size_expression = size_expression;
4546
4547                         if (size_expression != NULL) {
4548                                 if (is_constant_expression(size_expression)) {
4549                                         array_type->array.size_constant = true;
4550                                         array_type->array.size
4551                                                 = fold_constant(size_expression);
4552                                 } else {
4553                                         array_type->array.is_vla = true;
4554                                 }
4555                         }
4556
4557                         type_t *skipped_type = skip_typeref(type);
4558                         /* Â§6.7.5.2(1) */
4559                         if (is_type_incomplete(skipped_type)) {
4560                                 errorf(HERE, "array of incomplete type '%T' is not allowed", type);
4561                         } else if (is_type_function(skipped_type)) {
4562                                 errorf(HERE, "array of functions is not allowed");
4563                         }
4564                         type = array_type;
4565                         break;
4566                 }
4567                 }
4568
4569                 type_t *hashed_type = typehash_insert(type);
4570                 if (hashed_type != type) {
4571                         /* the function type was constructed earlier freeing it here will
4572                          * destroy other types... */
4573                         if (iter->kind != CONSTRUCT_FUNCTION) {
4574                                 free_type(type);
4575                         }
4576                         type = hashed_type;
4577                 }
4578         }
4579
4580         return type;
4581 }
4582
4583 static entity_t *parse_declarator(const declaration_specifiers_t *specifiers,
4584                                   bool may_be_abstract,
4585                                   bool create_compound_member)
4586 {
4587         parse_declarator_env_t env;
4588         memset(&env, 0, sizeof(env));
4589
4590         construct_type_t *construct_type
4591                 = parse_inner_declarator(&env, may_be_abstract);
4592         type_t *type = construct_declarator_type(construct_type, specifiers->type);
4593
4594         if (construct_type != NULL) {
4595                 obstack_free(&temp_obst, construct_type);
4596         }
4597
4598         entity_t *entity;
4599         if (specifiers->storage_class == STORAGE_CLASS_TYPEDEF) {
4600                 entity                       = allocate_entity_zero(ENTITY_TYPEDEF);
4601                 entity->base.symbol          = env.symbol;
4602                 entity->base.source_position = env.source_position;
4603                 entity->typedefe.type        = type;
4604         } else {
4605                 if (create_compound_member) {
4606                         entity = allocate_entity_zero(ENTITY_COMPOUND_MEMBER);
4607                 } else if (is_type_function(skip_typeref(type))) {
4608                         entity = allocate_entity_zero(ENTITY_FUNCTION);
4609
4610                         entity->function.is_inline  = specifiers->is_inline;
4611                         entity->function.parameters = env.parameters;
4612                 } else {
4613                         entity = allocate_entity_zero(ENTITY_VARIABLE);
4614
4615                         entity->variable.get_property_sym = specifiers->get_property_sym;
4616                         entity->variable.put_property_sym = specifiers->put_property_sym;
4617                         if (specifiers->alignment != 0) {
4618                                 /* TODO: add checks here */
4619                                 entity->variable.alignment = specifiers->alignment;
4620                         }
4621
4622                         if (warning.other && specifiers->is_inline && is_type_valid(type)) {
4623                                 warningf(&env.source_position,
4624                                                  "variable '%Y' declared 'inline'\n", env.symbol);
4625                         }
4626                 }
4627
4628                 entity->base.source_position  = env.source_position;
4629                 entity->base.symbol           = env.symbol;
4630                 entity->base.namespc          = NAMESPACE_NORMAL;
4631                 entity->declaration.type      = type;
4632                 entity->declaration.modifiers = env.modifiers | specifiers->modifiers;
4633                 entity->declaration.deprecated_string = specifiers->deprecated_string;
4634
4635                 storage_class_t storage_class = specifiers->storage_class;
4636                 entity->declaration.declared_storage_class = storage_class;
4637
4638                 if (storage_class == STORAGE_CLASS_NONE && scope != file_scope) {
4639                         storage_class = STORAGE_CLASS_AUTO;
4640                 }
4641                 entity->declaration.storage_class = storage_class;
4642         }
4643
4644         parse_declaration_attributes(entity);
4645
4646         return entity;
4647 }
4648
4649 static type_t *parse_abstract_declarator(type_t *base_type)
4650 {
4651         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
4652
4653         type_t *result = construct_declarator_type(construct_type, base_type);
4654         if (construct_type != NULL) {
4655                 obstack_free(&temp_obst, construct_type);
4656         }
4657
4658         return result;
4659 }
4660
4661 /**
4662  * Check if the declaration of main is suspicious.  main should be a
4663  * function with external linkage, returning int, taking either zero
4664  * arguments, two, or three arguments of appropriate types, ie.
4665  *
4666  * int main([ int argc, char **argv [, char **env ] ]).
4667  *
4668  * @param decl    the declaration to check
4669  * @param type    the function type of the declaration
4670  */
4671 static void check_type_of_main(const entity_t *entity)
4672 {
4673         const source_position_t *pos = &entity->base.source_position;
4674         if (entity->kind != ENTITY_FUNCTION) {
4675                 warningf(pos, "'main' is not a function");
4676                 return;
4677         }
4678
4679         if (entity->declaration.storage_class == STORAGE_CLASS_STATIC) {
4680                 warningf(pos, "'main' is normally a non-static function");
4681         }
4682
4683         type_t *type = skip_typeref(entity->declaration.type);
4684         assert(is_type_function(type));
4685
4686         function_type_t *func_type = &type->function;
4687         if (!types_compatible(skip_typeref(func_type->return_type), type_int)) {
4688                 warningf(pos, "return type of 'main' should be 'int', but is '%T'",
4689                          func_type->return_type);
4690         }
4691         const function_parameter_t *parm = func_type->parameters;
4692         if (parm != NULL) {
4693                 type_t *const first_type = parm->type;
4694                 if (!types_compatible(skip_typeref(first_type), type_int)) {
4695                         warningf(pos,
4696                                  "first argument of 'main' should be 'int', but is '%T'",
4697                                  first_type);
4698                 }
4699                 parm = parm->next;
4700                 if (parm != NULL) {
4701                         type_t *const second_type = parm->type;
4702                         if (!types_compatible(skip_typeref(second_type), type_char_ptr_ptr)) {
4703                                 warningf(pos, "second argument of 'main' should be 'char**', but is '%T'", second_type);
4704                         }
4705                         parm = parm->next;
4706                         if (parm != NULL) {
4707                                 type_t *const third_type = parm->type;
4708                                 if (!types_compatible(skip_typeref(third_type), type_char_ptr_ptr)) {
4709                                         warningf(pos, "third argument of 'main' should be 'char**', but is '%T'", third_type);
4710                                 }
4711                                 parm = parm->next;
4712                                 if (parm != NULL)
4713                                         goto warn_arg_count;
4714                         }
4715                 } else {
4716 warn_arg_count:
4717                         warningf(pos, "'main' takes only zero, two or three arguments");
4718                 }
4719         }
4720 }
4721
4722 /**
4723  * Check if a symbol is the equal to "main".
4724  */
4725 static bool is_sym_main(const symbol_t *const sym)
4726 {
4727         return strcmp(sym->string, "main") == 0;
4728 }
4729
4730 /**
4731  * record entities for the NAMESPACE_NORMAL, and produce error messages/warnings
4732  * for various problems that occur for multiple definitions
4733  */
4734 static entity_t *record_entity(entity_t *entity, const bool is_definition)
4735 {
4736         const symbol_t *const    symbol  = entity->base.symbol;
4737         const namespace_t        namespc = entity->base.namespc;
4738         const source_position_t *pos     = &entity->base.source_position;
4739
4740         assert(symbol != NULL);
4741         entity_t *previous_entity = get_entity(symbol, namespc);
4742         /* pushing the same entity twice will break the stack structure */
4743         assert(previous_entity != entity);
4744
4745         if (entity->kind == ENTITY_FUNCTION) {
4746                 type_t *const orig_type = entity->declaration.type;
4747                 type_t *const type      = skip_typeref(orig_type);
4748
4749                 assert(is_type_function(type));
4750                 if (type->function.unspecified_parameters &&
4751                                 warning.strict_prototypes &&
4752                                 previous_entity == NULL) {
4753                         warningf(pos, "function declaration '%#T' is not a prototype",
4754                                          orig_type, symbol);
4755                 }
4756
4757                 if (warning.main && scope == file_scope && is_sym_main(symbol)) {
4758                         check_type_of_main(entity);
4759                 }
4760         }
4761
4762         if (is_declaration(entity)) {
4763                 if (warning.nested_externs
4764                                 && entity->declaration.storage_class == STORAGE_CLASS_EXTERN
4765                                 && scope != file_scope) {
4766                         warningf(pos, "nested extern declaration of '%#T'",
4767                                  entity->declaration.type, symbol);
4768                 }
4769         }
4770
4771         if (previous_entity != NULL
4772             && previous_entity->base.parent_scope == &current_function->parameters
4773                 && scope->depth == previous_entity->base.parent_scope->depth + 1) {
4774
4775                 assert(previous_entity->kind == ENTITY_VARIABLE);
4776                 errorf(pos,
4777                        "declaration '%#T' redeclares the parameter '%#T' (declared %P)",
4778                        entity->declaration.type, symbol,
4779                            previous_entity->declaration.type, symbol,
4780                            &previous_entity->base.source_position);
4781                 goto finish;
4782         }
4783
4784         if (previous_entity != NULL
4785                         && previous_entity->base.parent_scope == scope) {
4786
4787                 if (previous_entity->kind != entity->kind) {
4788                         errorf(pos,
4789                                "redeclaration of '%Y' as different kind of symbol (declared %P)",
4790                                symbol, &previous_entity->base.source_position);
4791                         goto finish;
4792                 }
4793                 if (previous_entity->kind == ENTITY_ENUM_VALUE) {
4794                         errorf(pos,
4795                                    "redeclaration of enum entry '%Y' (declared %P)",
4796                                    symbol, &previous_entity->base.source_position);
4797                         goto finish;
4798                 }
4799                 if (previous_entity->kind == ENTITY_TYPEDEF) {
4800                         /* TODO: C++ allows this for exactly the same type */
4801                         errorf(pos,
4802                                "redefinition of typedef '%Y' (declared %P)",
4803                                symbol, &previous_entity->base.source_position);
4804                         goto finish;
4805                 }
4806
4807                 /* at this point we should have only VARIABLES or FUNCTIONS */
4808                 assert(is_declaration(previous_entity) && is_declaration(entity));
4809
4810                 /* can happen for K&R style declarations */
4811                 if (previous_entity->kind == ENTITY_VARIABLE
4812                                 && previous_entity->declaration.type == NULL
4813                                 && entity->kind == ENTITY_VARIABLE) {
4814                         previous_entity->declaration.type = entity->declaration.type;
4815                         previous_entity->declaration.storage_class
4816                                 = entity->declaration.storage_class;
4817                         previous_entity->declaration.declared_storage_class
4818                                 = entity->declaration.declared_storage_class;
4819                         previous_entity->declaration.modifiers
4820                                 = entity->declaration.modifiers;
4821                         previous_entity->declaration.deprecated_string
4822                                 = entity->declaration.deprecated_string;
4823                 }
4824                 assert(entity->declaration.type != NULL);
4825
4826                 declaration_t *const previous_declaration
4827                         = &previous_entity->declaration;
4828                 declaration_t *const declaration = &entity->declaration;
4829                 type_t *const orig_type = entity->declaration.type;
4830                 type_t *const type      = skip_typeref(orig_type);
4831
4832                 type_t *prev_type       = skip_typeref(previous_declaration->type);
4833
4834                 if (!types_compatible(type, prev_type)) {
4835                         errorf(pos,
4836                                    "declaration '%#T' is incompatible with '%#T' (declared %P)",
4837                                    orig_type, symbol, previous_declaration->type, symbol,
4838                                    &previous_entity->base.source_position);
4839                 } else {
4840                         unsigned old_storage_class = previous_declaration->storage_class;
4841                         if (warning.redundant_decls     && is_definition
4842                                 && previous_declaration->storage_class == STORAGE_CLASS_STATIC
4843                                 && !(previous_declaration->modifiers & DM_USED)
4844                                 && !previous_declaration->used) {
4845                                 warningf(&previous_entity->base.source_position,
4846                                          "unnecessary static forward declaration for '%#T'",
4847                                          previous_declaration->type, symbol);
4848                         }
4849
4850                         unsigned new_storage_class = declaration->storage_class;
4851                         if (is_type_incomplete(prev_type)) {
4852                                 previous_declaration->type = type;
4853                                 prev_type                  = type;
4854                         }
4855
4856                         /* pretend no storage class means extern for function
4857                          * declarations (except if the previous declaration is neither
4858                          * none nor extern) */
4859                         if (entity->kind == ENTITY_FUNCTION) {
4860                                 if (prev_type->function.unspecified_parameters) {
4861                                         previous_declaration->type = type;
4862                                         prev_type                  = type;
4863                                 }
4864
4865                                 switch (old_storage_class) {
4866                                 case STORAGE_CLASS_NONE:
4867                                         old_storage_class = STORAGE_CLASS_EXTERN;
4868                                         /* FALLTHROUGH */
4869
4870                                 case STORAGE_CLASS_EXTERN:
4871                                         if (is_definition) {
4872                                                 if (warning.missing_prototypes &&
4873                                                     prev_type->function.unspecified_parameters &&
4874                                                     !is_sym_main(symbol)) {
4875                                                         warningf(pos, "no previous prototype for '%#T'",
4876                                                                          orig_type, symbol);
4877                                                 }
4878                                         } else if (new_storage_class == STORAGE_CLASS_NONE) {
4879                                                 new_storage_class = STORAGE_CLASS_EXTERN;
4880                                         }
4881                                         break;
4882
4883                                 default:
4884                                         break;
4885                                 }
4886                         }
4887
4888                         if (old_storage_class == STORAGE_CLASS_EXTERN &&
4889                                         new_storage_class == STORAGE_CLASS_EXTERN) {
4890 warn_redundant_declaration:
4891                                 if (!is_definition           &&
4892                                     warning.redundant_decls  &&
4893                                     is_type_valid(prev_type) &&
4894                                     strcmp(previous_entity->base.source_position.input_name, "<builtin>") != 0) {
4895                                         warningf(pos,
4896                                                  "redundant declaration for '%Y' (declared %P)",
4897                                                  symbol, &previous_entity->base.source_position);
4898                                 }
4899                         } else if (current_function == NULL) {
4900                                 if (old_storage_class != STORAGE_CLASS_STATIC &&
4901                                     new_storage_class == STORAGE_CLASS_STATIC) {
4902                                         errorf(pos,
4903                                                "static declaration of '%Y' follows non-static declaration (declared %P)",
4904                                                symbol, &previous_entity->base.source_position);
4905                                 } else if (old_storage_class == STORAGE_CLASS_EXTERN) {
4906                                         previous_declaration->storage_class          = STORAGE_CLASS_NONE;
4907                                         previous_declaration->declared_storage_class = STORAGE_CLASS_NONE;
4908                                 } else {
4909                                         /* ISO/IEC 14882:1998(E) Â§C.1.2:1 */
4910                                         if (c_mode & _CXX)
4911                                                 goto error_redeclaration;
4912                                         goto warn_redundant_declaration;
4913                                 }
4914                         } else if (is_type_valid(prev_type)) {
4915                                 if (old_storage_class == new_storage_class) {
4916 error_redeclaration:
4917                                         errorf(pos, "redeclaration of '%Y' (declared %P)",
4918                                                symbol, &previous_entity->base.source_position);
4919                                 } else {
4920                                         errorf(pos,
4921                                                "redeclaration of '%Y' with different linkage (declared %P)",
4922                                                symbol, &previous_entity->base.source_position);
4923                                 }
4924                         }
4925                 }
4926
4927                 previous_declaration->modifiers |= declaration->modifiers;
4928                 if (entity->kind == ENTITY_FUNCTION) {
4929                         previous_entity->function.is_inline |= entity->function.is_inline;
4930                 }
4931                 return previous_entity;
4932         }
4933
4934         if (entity->kind == ENTITY_FUNCTION) {
4935                 if (is_definition &&
4936                                 entity->declaration.storage_class != STORAGE_CLASS_STATIC) {
4937                         if (warning.missing_prototypes && !is_sym_main(symbol)) {
4938                                 warningf(pos, "no previous prototype for '%#T'",
4939                                          entity->declaration.type, symbol);
4940                         } else if (warning.missing_declarations && !is_sym_main(symbol)) {
4941                                 warningf(pos, "no previous declaration for '%#T'",
4942                                          entity->declaration.type, symbol);
4943                         }
4944                 }
4945         } else if (warning.missing_declarations
4946                         && entity->kind == ENTITY_VARIABLE
4947                         && scope == file_scope) {
4948                 declaration_t *declaration = &entity->declaration;
4949                 if (declaration->storage_class == STORAGE_CLASS_NONE ||
4950                                 declaration->storage_class == STORAGE_CLASS_THREAD) {
4951                         warningf(pos, "no previous declaration for '%#T'",
4952                                  declaration->type, symbol);
4953                 }
4954         }
4955
4956 finish:
4957         assert(entity->base.parent_scope == NULL);
4958         assert(scope != NULL);
4959
4960         entity->base.parent_scope = scope;
4961         entity->base.namespc      = NAMESPACE_NORMAL;
4962         environment_push(entity);
4963         append_entity(scope, entity);
4964
4965         return entity;
4966 }
4967
4968 static void parser_error_multiple_definition(entity_t *entity,
4969                 const source_position_t *source_position)
4970 {
4971         errorf(source_position, "multiple definition of symbol '%Y' (declared %P)",
4972                entity->base.symbol, &entity->base.source_position);
4973 }
4974
4975 static bool is_declaration_specifier(const token_t *token,
4976                                      bool only_specifiers_qualifiers)
4977 {
4978         switch (token->type) {
4979                 TYPE_SPECIFIERS
4980                 TYPE_QUALIFIERS
4981                         return true;
4982                 case T_IDENTIFIER:
4983                         return is_typedef_symbol(token->v.symbol);
4984
4985                 case T___extension__:
4986                 STORAGE_CLASSES
4987                         return !only_specifiers_qualifiers;
4988
4989                 default:
4990                         return false;
4991         }
4992 }
4993
4994 static void parse_init_declarator_rest(entity_t *entity)
4995 {
4996         assert(is_declaration(entity));
4997         declaration_t *const declaration = &entity->declaration;
4998
4999         eat('=');
5000
5001         type_t *orig_type = declaration->type;
5002         type_t *type      = skip_typeref(orig_type);
5003
5004         if (entity->kind == ENTITY_VARIABLE
5005                         && entity->variable.initializer != NULL) {
5006                 parser_error_multiple_definition(entity, HERE);
5007         }
5008
5009         bool must_be_constant = false;
5010         if (declaration->storage_class == STORAGE_CLASS_STATIC        ||
5011             declaration->storage_class == STORAGE_CLASS_THREAD_STATIC ||
5012             entity->base.parent_scope  == file_scope) {
5013                 must_be_constant = true;
5014         }
5015
5016         if (is_type_function(type)) {
5017                 errorf(&entity->base.source_position,
5018                        "function '%#T' is initialized like a variable",
5019                        orig_type, entity->base.symbol);
5020                 orig_type = type_error_type;
5021         }
5022
5023         parse_initializer_env_t env;
5024         env.type             = orig_type;
5025         env.must_be_constant = must_be_constant;
5026         env.entity           = entity;
5027         current_init_decl    = entity;
5028
5029         initializer_t *initializer = parse_initializer(&env);
5030         current_init_decl = NULL;
5031
5032         if (entity->kind == ENTITY_VARIABLE) {
5033                 /* Â§ 6.7.5 (22)  array initializers for arrays with unknown size
5034                  * determine the array type size */
5035                 declaration->type            = env.type;
5036                 entity->variable.initializer = initializer;
5037         }
5038 }
5039
5040 /* parse rest of a declaration without any declarator */
5041 static void parse_anonymous_declaration_rest(
5042                 const declaration_specifiers_t *specifiers)
5043 {
5044         eat(';');
5045
5046         if (warning.other) {
5047                 if (specifiers->storage_class != STORAGE_CLASS_NONE) {
5048                         warningf(&specifiers->source_position,
5049                                  "useless storage class in empty declaration");
5050                 }
5051
5052                 type_t *type = specifiers->type;
5053                 switch (type->kind) {
5054                         case TYPE_COMPOUND_STRUCT:
5055                         case TYPE_COMPOUND_UNION: {
5056                                 if (type->compound.compound->base.symbol == NULL) {
5057                                         warningf(&specifiers->source_position,
5058                                                  "unnamed struct/union that defines no instances");
5059                                 }
5060                                 break;
5061                         }
5062
5063                         case TYPE_ENUM:
5064                                 break;
5065
5066                         default:
5067                                 warningf(&specifiers->source_position, "empty declaration");
5068                                 break;
5069                 }
5070         }
5071 }
5072
5073 static void parse_declaration_rest(entity_t *ndeclaration,
5074                 const declaration_specifiers_t *specifiers,
5075                 parsed_declaration_func finished_declaration)
5076 {
5077         add_anchor_token(';');
5078         add_anchor_token(',');
5079         while(true) {
5080                 entity_t *entity = finished_declaration(ndeclaration, token.type == '=');
5081
5082                 if (token.type == '=') {
5083                         parse_init_declarator_rest(entity);
5084                 }
5085
5086                 if (token.type != ',')
5087                         break;
5088                 eat(',');
5089
5090                 add_anchor_token('=');
5091                 ndeclaration = parse_declarator(specifiers, /*may_be_abstract=*/false, false);
5092                 rem_anchor_token('=');
5093         }
5094         expect(';');
5095
5096 end_error:
5097         rem_anchor_token(';');
5098         rem_anchor_token(',');
5099 }
5100
5101 static entity_t *finished_kr_declaration(entity_t *entity, bool is_definition)
5102 {
5103         symbol_t *symbol = entity->base.symbol;
5104         if (symbol == NULL) {
5105                 errorf(HERE, "anonymous declaration not valid as function parameter");
5106                 return entity;
5107         }
5108
5109         assert(entity->base.namespc == NAMESPACE_NORMAL);
5110         entity_t *previous_entity = get_entity(symbol, NAMESPACE_NORMAL);
5111         if (previous_entity == NULL
5112                         || previous_entity->base.parent_scope != scope) {
5113                 errorf(HERE, "expected declaration of a function parameter, found '%Y'",
5114                        symbol);
5115                 return entity;
5116         }
5117
5118         if (is_definition) {
5119                 errorf(HERE, "parameter %Y is initialised", entity->base.symbol);
5120         }
5121
5122         return record_entity(entity, false);
5123 }
5124
5125 static void parse_declaration(parsed_declaration_func finished_declaration)
5126 {
5127         declaration_specifiers_t specifiers;
5128         memset(&specifiers, 0, sizeof(specifiers));
5129
5130         add_anchor_token(';');
5131         parse_declaration_specifiers(&specifiers);
5132         rem_anchor_token(';');
5133
5134         if (token.type == ';') {
5135                 parse_anonymous_declaration_rest(&specifiers);
5136         } else {
5137                 entity_t *entity = parse_declarator(&specifiers, /*may_be_abstract=*/false, false);
5138                 parse_declaration_rest(entity, &specifiers, finished_declaration);
5139         }
5140 }
5141
5142 static type_t *get_default_promoted_type(type_t *orig_type)
5143 {
5144         type_t *result = orig_type;
5145
5146         type_t *type = skip_typeref(orig_type);
5147         if (is_type_integer(type)) {
5148                 result = promote_integer(type);
5149         } else if (type == type_float) {
5150                 result = type_double;
5151         }
5152
5153         return result;
5154 }
5155
5156 static void parse_kr_declaration_list(entity_t *entity)
5157 {
5158         if (entity->kind != ENTITY_FUNCTION)
5159                 return;
5160
5161         type_t *type = skip_typeref(entity->declaration.type);
5162         assert(is_type_function(type));
5163         if (!type->function.kr_style_parameters)
5164                 return;
5165
5166
5167         add_anchor_token('{');
5168
5169         /* push function parameters */
5170         size_t const top = environment_top();
5171         scope_push(&entity->function.parameters);
5172
5173         entity_t *parameter = entity->function.parameters.entities;
5174         for ( ; parameter != NULL; parameter = parameter->base.next) {
5175                 assert(parameter->base.parent_scope == NULL);
5176                 parameter->base.parent_scope = scope;
5177                 environment_push(parameter);
5178         }
5179
5180         /* parse declaration list */
5181         while (is_declaration_specifier(&token, false)) {
5182                 parse_declaration(finished_kr_declaration);
5183         }
5184
5185         /* pop function parameters */
5186         assert(scope == &entity->function.parameters);
5187         scope_pop();
5188         environment_pop_to(top);
5189
5190         /* update function type */
5191         type_t *new_type = duplicate_type(type);
5192
5193         function_parameter_t *parameters     = NULL;
5194         function_parameter_t *last_parameter = NULL;
5195
5196         entity_t *parameter_declaration = entity->function.parameters.entities;
5197         for( ; parameter_declaration != NULL;
5198                         parameter_declaration = parameter_declaration->base.next) {
5199                 type_t *parameter_type = parameter_declaration->declaration.type;
5200                 if (parameter_type == NULL) {
5201                         if (strict_mode) {
5202                                 errorf(HERE, "no type specified for function parameter '%Y'",
5203                                        parameter_declaration->base.symbol);
5204                         } else {
5205                                 if (warning.implicit_int) {
5206                                         warningf(HERE, "no type specified for function parameter '%Y', using 'int'",
5207                                                  parameter_declaration->base.symbol);
5208                                 }
5209                                 parameter_type                          = type_int;
5210                                 parameter_declaration->declaration.type = parameter_type;
5211                         }
5212                 }
5213
5214                 semantic_parameter(&parameter_declaration->declaration);
5215                 parameter_type = parameter_declaration->declaration.type;
5216
5217                 /*
5218                  * we need the default promoted types for the function type
5219                  */
5220                 parameter_type = get_default_promoted_type(parameter_type);
5221
5222                 function_parameter_t *function_parameter
5223                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
5224                 memset(function_parameter, 0, sizeof(function_parameter[0]));
5225
5226                 function_parameter->type = parameter_type;
5227                 if (last_parameter != NULL) {
5228                         last_parameter->next = function_parameter;
5229                 } else {
5230                         parameters = function_parameter;
5231                 }
5232                 last_parameter = function_parameter;
5233         }
5234
5235         /* Â§ 6.9.1.7: A K&R style parameter list does NOT act as a function
5236          * prototype */
5237         new_type->function.parameters             = parameters;
5238         new_type->function.unspecified_parameters = true;
5239
5240         type = typehash_insert(new_type);
5241         if (type != new_type) {
5242                 obstack_free(type_obst, new_type);
5243         }
5244
5245         entity->declaration.type = type;
5246
5247         rem_anchor_token('{');
5248 }
5249
5250 static bool first_err = true;
5251
5252 /**
5253  * When called with first_err set, prints the name of the current function,
5254  * else does noting.
5255  */
5256 static void print_in_function(void)
5257 {
5258         if (first_err) {
5259                 first_err = false;
5260                 diagnosticf("%s: In function '%Y':\n",
5261                             current_function->base.base.source_position.input_name,
5262                             current_function->base.base.symbol);
5263         }
5264 }
5265
5266 /**
5267  * Check if all labels are defined in the current function.
5268  * Check if all labels are used in the current function.
5269  */
5270 static void check_labels(void)
5271 {
5272         for (const goto_statement_t *goto_statement = goto_first;
5273             goto_statement != NULL;
5274             goto_statement = goto_statement->next) {
5275                 /* skip computed gotos */
5276                 if (goto_statement->expression != NULL)
5277                         continue;
5278
5279                 label_t *label = goto_statement->label;
5280
5281                 label->used = true;
5282                 if (label->base.source_position.input_name == NULL) {
5283                         print_in_function();
5284                         errorf(&goto_statement->base.source_position,
5285                                "label '%Y' used but not defined", label->base.symbol);
5286                  }
5287         }
5288         goto_first = NULL;
5289         goto_last  = NULL;
5290
5291         if (warning.unused_label) {
5292                 for (const label_statement_t *label_statement = label_first;
5293                          label_statement != NULL;
5294                          label_statement = label_statement->next) {
5295                         label_t *label = label_statement->label;
5296
5297                         if (! label->used) {
5298                                 print_in_function();
5299                                 warningf(&label_statement->base.source_position,
5300                                          "label '%Y' defined but not used", label->base.symbol);
5301                         }
5302                 }
5303         }
5304         label_first = label_last = NULL;
5305 }
5306
5307 static void warn_unused_decl(entity_t *entity, entity_t *end,
5308                              char const *const what)
5309 {
5310         for (; entity != NULL; entity = entity->base.next) {
5311                 if (!is_declaration(entity))
5312                         continue;
5313
5314                 declaration_t *declaration = &entity->declaration;
5315                 if (declaration->implicit)
5316                         continue;
5317
5318                 if (!declaration->used) {
5319                         print_in_function();
5320                         warningf(&entity->base.source_position, "%s '%Y' is unused",
5321                                  what, entity->base.symbol);
5322                 } else if (entity->kind == ENTITY_VARIABLE && !entity->variable.read) {
5323                         print_in_function();
5324                         warningf(&entity->base.source_position, "%s '%Y' is never read",
5325                                  what, entity->base.symbol);
5326                 }
5327
5328                 if (entity == end)
5329                         break;
5330         }
5331 }
5332
5333 static void check_unused_variables(statement_t *const stmt, void *const env)
5334 {
5335         (void)env;
5336
5337         switch (stmt->kind) {
5338                 case STATEMENT_DECLARATION: {
5339                         declaration_statement_t const *const decls = &stmt->declaration;
5340                         warn_unused_decl(decls->declarations_begin, decls->declarations_end,
5341                                          "variable");
5342                         return;
5343                 }
5344
5345                 case STATEMENT_FOR:
5346                         warn_unused_decl(stmt->fors.scope.entities, NULL, "variable");
5347                         return;
5348
5349                 default:
5350                         return;
5351         }
5352 }
5353
5354 /**
5355  * Check declarations of current_function for unused entities.
5356  */
5357 static void check_declarations(void)
5358 {
5359         if (warning.unused_parameter) {
5360                 const scope_t *scope = &current_function->parameters;
5361
5362                 /* do not issue unused warnings for main */
5363                 if (!is_sym_main(current_function->base.base.symbol)) {
5364                         warn_unused_decl(scope->entities, NULL, "parameter");
5365                 }
5366         }
5367         if (warning.unused_variable) {
5368                 walk_statements(current_function->statement, check_unused_variables,
5369                                 NULL);
5370         }
5371 }
5372
5373 static int determine_truth(expression_t const* const cond)
5374 {
5375         return
5376                 !is_constant_expression(cond) ? 0 :
5377                 fold_constant(cond) != 0      ? 1 :
5378                 -1;
5379 }
5380
5381 static bool expression_returns(expression_t const *const expr)
5382 {
5383         switch (expr->kind) {
5384                 case EXPR_CALL: {
5385                         expression_t const *const func = expr->call.function;
5386                         if (func->kind == EXPR_REFERENCE) {
5387                                 entity_t *entity = func->reference.entity;
5388                                 if (entity->kind == ENTITY_FUNCTION
5389                                                 && entity->declaration.modifiers & DM_NORETURN)
5390                                         return false;
5391                         }
5392
5393                         if (!expression_returns(func))
5394                                 return false;
5395
5396                         for (call_argument_t const* arg = expr->call.arguments; arg != NULL; arg = arg->next) {
5397                                 if (!expression_returns(arg->expression))
5398                                         return false;
5399                         }
5400
5401                         return true;
5402                 }
5403
5404                 case EXPR_REFERENCE:
5405                 case EXPR_REFERENCE_ENUM_VALUE:
5406                 case EXPR_CONST:
5407                 case EXPR_CHARACTER_CONSTANT:
5408                 case EXPR_WIDE_CHARACTER_CONSTANT:
5409                 case EXPR_STRING_LITERAL:
5410                 case EXPR_WIDE_STRING_LITERAL:
5411                 case EXPR_COMPOUND_LITERAL: // TODO descend into initialisers
5412                 case EXPR_LABEL_ADDRESS:
5413                 case EXPR_CLASSIFY_TYPE:
5414                 case EXPR_SIZEOF: // TODO handle obscure VLA case
5415                 case EXPR_ALIGNOF:
5416                 case EXPR_FUNCNAME:
5417                 case EXPR_BUILTIN_SYMBOL:
5418                 case EXPR_BUILTIN_CONSTANT_P:
5419                 case EXPR_BUILTIN_PREFETCH:
5420                 case EXPR_OFFSETOF:
5421                 case EXPR_INVALID:
5422                 case EXPR_STATEMENT: // TODO implement
5423                         return true;
5424
5425                 case EXPR_CONDITIONAL:
5426                         // TODO handle constant expression
5427                         return
5428                                 expression_returns(expr->conditional.condition) && (
5429                                         expression_returns(expr->conditional.true_expression) ||
5430                                         expression_returns(expr->conditional.false_expression)
5431                                 );
5432
5433                 case EXPR_SELECT:
5434                         return expression_returns(expr->select.compound);
5435
5436                 case EXPR_ARRAY_ACCESS:
5437                         return
5438                                 expression_returns(expr->array_access.array_ref) &&
5439                                 expression_returns(expr->array_access.index);
5440
5441                 case EXPR_VA_START:
5442                         return expression_returns(expr->va_starte.ap);
5443
5444                 case EXPR_VA_ARG:
5445                         return expression_returns(expr->va_arge.ap);
5446
5447                 EXPR_UNARY_CASES_MANDATORY
5448                         return expression_returns(expr->unary.value);
5449
5450                 case EXPR_UNARY_THROW:
5451                         return false;
5452
5453                 EXPR_BINARY_CASES
5454                         // TODO handle constant lhs of && and ||
5455                         return
5456                                 expression_returns(expr->binary.left) &&
5457                                 expression_returns(expr->binary.right);
5458
5459                 case EXPR_UNKNOWN:
5460                         break;
5461         }
5462
5463         panic("unhandled expression");
5464 }
5465
5466 static bool noreturn_candidate;
5467
5468 static void check_reachable(statement_t *const stmt)
5469 {
5470         if (stmt->base.reachable)
5471                 return;
5472         if (stmt->kind != STATEMENT_DO_WHILE)
5473                 stmt->base.reachable = true;
5474
5475         statement_t *last = stmt;
5476         statement_t *next;
5477         switch (stmt->kind) {
5478                 case STATEMENT_INVALID:
5479                 case STATEMENT_EMPTY:
5480                 case STATEMENT_DECLARATION:
5481                 case STATEMENT_LOCAL_LABEL:
5482                 case STATEMENT_ASM:
5483                         next = stmt->base.next;
5484                         break;
5485
5486                 case STATEMENT_COMPOUND:
5487                         next = stmt->compound.statements;
5488                         break;
5489
5490                 case STATEMENT_RETURN:
5491                         noreturn_candidate = false;
5492                         return;
5493
5494                 case STATEMENT_IF: {
5495                         if_statement_t const* const ifs = &stmt->ifs;
5496                         int            const        val = determine_truth(ifs->condition);
5497
5498                         if (val >= 0)
5499                                 check_reachable(ifs->true_statement);
5500
5501                         if (val > 0)
5502                                 return;
5503
5504                         if (ifs->false_statement != NULL) {
5505                                 check_reachable(ifs->false_statement);
5506                                 return;
5507                         }
5508
5509                         next = stmt->base.next;
5510                         break;
5511                 }
5512
5513                 case STATEMENT_SWITCH: {
5514                         switch_statement_t const *const switchs = &stmt->switchs;
5515                         expression_t       const *const expr    = switchs->expression;
5516
5517                         if (is_constant_expression(expr)) {
5518                                 long                    const val      = fold_constant(expr);
5519                                 case_label_statement_t *      defaults = NULL;
5520                                 for (case_label_statement_t *i = switchs->first_case; i != NULL; i = i->next) {
5521                                         if (i->expression == NULL) {
5522                                                 defaults = i;
5523                                                 continue;
5524                                         }
5525
5526                                         if (i->first_case <= val && val <= i->last_case) {
5527                                                 check_reachable((statement_t*)i);
5528                                                 return;
5529                                         }
5530                                 }
5531
5532                                 if (defaults != NULL) {
5533                                         check_reachable((statement_t*)defaults);
5534                                         return;
5535                                 }
5536                         } else {
5537                                 bool has_default = false;
5538                                 for (case_label_statement_t *i = switchs->first_case; i != NULL; i = i->next) {
5539                                         if (i->expression == NULL)
5540                                                 has_default = true;
5541
5542                                         check_reachable((statement_t*)i);
5543                                 }
5544
5545                                 if (has_default)
5546                                         return;
5547                         }
5548
5549                         next = stmt->base.next;
5550                         break;
5551                 }
5552
5553                 case STATEMENT_EXPRESSION: {
5554                         /* Check for noreturn function call */
5555                         expression_t const *const expr = stmt->expression.expression;
5556                         if (!expression_returns(expr))
5557                                 return;
5558
5559                         next = stmt->base.next;
5560                         break;
5561                 }
5562
5563                 case STATEMENT_CONTINUE: {
5564                         statement_t *parent = stmt;
5565                         for (;;) {
5566                                 parent = parent->base.parent;
5567                                 if (parent == NULL) /* continue not within loop */
5568                                         return;
5569
5570                                 next = parent;
5571                                 switch (parent->kind) {
5572                                         case STATEMENT_WHILE:    goto continue_while;
5573                                         case STATEMENT_DO_WHILE: goto continue_do_while;
5574                                         case STATEMENT_FOR:      goto continue_for;
5575
5576                                         default: break;
5577                                 }
5578                         }
5579                 }
5580
5581                 case STATEMENT_BREAK: {
5582                         statement_t *parent = stmt;
5583                         for (;;) {
5584                                 parent = parent->base.parent;
5585                                 if (parent == NULL) /* break not within loop/switch */
5586                                         return;
5587
5588                                 switch (parent->kind) {
5589                                         case STATEMENT_SWITCH:
5590                                         case STATEMENT_WHILE:
5591                                         case STATEMENT_DO_WHILE:
5592                                         case STATEMENT_FOR:
5593                                                 last = parent;
5594                                                 next = parent->base.next;
5595                                                 goto found_break_parent;
5596
5597                                         default: break;
5598                                 }
5599                         }
5600 found_break_parent:
5601                         break;
5602                 }
5603
5604                 case STATEMENT_GOTO:
5605                         if (stmt->gotos.expression) {
5606                                 statement_t *parent = stmt->base.parent;
5607                                 if (parent == NULL) /* top level goto */
5608                                         return;
5609                                 next = parent;
5610                         } else {
5611                                 next = stmt->gotos.label->statement;
5612                                 if (next == NULL) /* missing label */
5613                                         return;
5614                         }
5615                         break;
5616
5617                 case STATEMENT_LABEL:
5618                         next = stmt->label.statement;
5619                         break;
5620
5621                 case STATEMENT_CASE_LABEL:
5622                         next = stmt->case_label.statement;
5623                         break;
5624
5625                 case STATEMENT_WHILE: {
5626                         while_statement_t const *const whiles = &stmt->whiles;
5627                         int                      const val    = determine_truth(whiles->condition);
5628
5629                         if (val >= 0)
5630                                 check_reachable(whiles->body);
5631
5632                         if (val > 0)
5633                                 return;
5634
5635                         next = stmt->base.next;
5636                         break;
5637                 }
5638
5639                 case STATEMENT_DO_WHILE:
5640                         next = stmt->do_while.body;
5641                         break;
5642
5643                 case STATEMENT_FOR: {
5644                         for_statement_t *const fors = &stmt->fors;
5645
5646                         if (fors->condition_reachable)
5647                                 return;
5648                         fors->condition_reachable = true;
5649
5650                         expression_t const *const cond = fors->condition;
5651                         int          const        val  =
5652                                 cond == NULL ? 1 : determine_truth(cond);
5653
5654                         if (val >= 0)
5655                                 check_reachable(fors->body);
5656
5657                         if (val > 0)
5658                                 return;
5659
5660                         next = stmt->base.next;
5661                         break;
5662                 }
5663
5664                 case STATEMENT_MS_TRY: {
5665                         ms_try_statement_t const *const ms_try = &stmt->ms_try;
5666                         check_reachable(ms_try->try_statement);
5667                         next = ms_try->final_statement;
5668                         break;
5669                 }
5670
5671                 case STATEMENT_LEAVE: {
5672                         statement_t *parent = stmt;
5673                         for (;;) {
5674                                 parent = parent->base.parent;
5675                                 if (parent == NULL) /* __leave not within __try */
5676                                         return;
5677
5678                                 if (parent->kind == STATEMENT_MS_TRY) {
5679                                         last = parent;
5680                                         next = parent->ms_try.final_statement;
5681                                         break;
5682                                 }
5683                         }
5684                         break;
5685                 }
5686         }
5687
5688         while (next == NULL) {
5689                 next = last->base.parent;
5690                 if (next == NULL) {
5691                         noreturn_candidate = false;
5692
5693                         type_t *const type = current_function->base.type;
5694                         assert(is_type_function(type));
5695                         type_t *const ret  = skip_typeref(type->function.return_type);
5696                         if (warning.return_type                    &&
5697                             !is_type_atomic(ret, ATOMIC_TYPE_VOID) &&
5698                             is_type_valid(ret)                     &&
5699                             !is_sym_main(current_function->base.base.symbol)) {
5700                                 warningf(&stmt->base.source_position,
5701                                          "control reaches end of non-void function");
5702                         }
5703                         return;
5704                 }
5705
5706                 switch (next->kind) {
5707                         case STATEMENT_INVALID:
5708                         case STATEMENT_EMPTY:
5709                         case STATEMENT_DECLARATION:
5710                         case STATEMENT_LOCAL_LABEL:
5711                         case STATEMENT_EXPRESSION:
5712                         case STATEMENT_ASM:
5713                         case STATEMENT_RETURN:
5714                         case STATEMENT_CONTINUE:
5715                         case STATEMENT_BREAK:
5716                         case STATEMENT_GOTO:
5717                         case STATEMENT_LEAVE:
5718                                 panic("invalid control flow in function");
5719
5720                         case STATEMENT_COMPOUND:
5721                         case STATEMENT_IF:
5722                         case STATEMENT_SWITCH:
5723                         case STATEMENT_LABEL:
5724                         case STATEMENT_CASE_LABEL:
5725                                 last = next;
5726                                 next = next->base.next;
5727                                 break;
5728
5729                         case STATEMENT_WHILE: {
5730 continue_while:
5731                                 if (next->base.reachable)
5732                                         return;
5733                                 next->base.reachable = true;
5734
5735                                 while_statement_t const *const whiles = &next->whiles;
5736                                 int                      const val    = determine_truth(whiles->condition);
5737
5738                                 if (val >= 0)
5739                                         check_reachable(whiles->body);
5740
5741                                 if (val > 0)
5742                                         return;
5743
5744                                 last = next;
5745                                 next = next->base.next;
5746                                 break;
5747                         }
5748
5749                         case STATEMENT_DO_WHILE: {
5750 continue_do_while:
5751                                 if (next->base.reachable)
5752                                         return;
5753                                 next->base.reachable = true;
5754
5755                                 do_while_statement_t const *const dw  = &next->do_while;
5756                                 int                  const        val = determine_truth(dw->condition);
5757
5758                                 if (val >= 0)
5759                                         check_reachable(dw->body);
5760
5761                                 if (val > 0)
5762                                         return;
5763
5764                                 last = next;
5765                                 next = next->base.next;
5766                                 break;
5767                         }
5768
5769                         case STATEMENT_FOR: {
5770 continue_for:;
5771                                 for_statement_t *const fors = &next->fors;
5772
5773                                 fors->step_reachable = true;
5774
5775                                 if (fors->condition_reachable)
5776                                         return;
5777                                 fors->condition_reachable = true;
5778
5779                                 expression_t const *const cond = fors->condition;
5780                                 int          const        val  =
5781                                         cond == NULL ? 1 : determine_truth(cond);
5782
5783                                 if (val >= 0)
5784                                         check_reachable(fors->body);
5785
5786                                 if (val > 0)
5787                                         return;
5788
5789                                 last = next;
5790                                 next = next->base.next;
5791                                 break;
5792                         }
5793
5794                         case STATEMENT_MS_TRY:
5795                                 last = next;
5796                                 next = next->ms_try.final_statement;
5797                                 break;
5798                 }
5799         }
5800
5801         check_reachable(next);
5802 }
5803
5804 static void check_unreachable(statement_t* const stmt, void *const env)
5805 {
5806         (void)env;
5807
5808         switch (stmt->kind) {
5809                 case STATEMENT_DO_WHILE:
5810                         if (!stmt->base.reachable) {
5811                                 expression_t const *const cond = stmt->do_while.condition;
5812                                 if (determine_truth(cond) >= 0) {
5813                                         warningf(&cond->base.source_position,
5814                                                  "condition of do-while-loop is unreachable");
5815                                 }
5816                         }
5817                         return;
5818
5819                 case STATEMENT_FOR: {
5820                         for_statement_t const* const fors = &stmt->fors;
5821
5822                         // if init and step are unreachable, cond is unreachable, too
5823                         if (!stmt->base.reachable && !fors->step_reachable) {
5824                                 warningf(&stmt->base.source_position, "statement is unreachable");
5825                         } else {
5826                                 if (!stmt->base.reachable && fors->initialisation != NULL) {
5827                                         warningf(&fors->initialisation->base.source_position,
5828                                                  "initialisation of for-statement is unreachable");
5829                                 }
5830
5831                                 if (!fors->condition_reachable && fors->condition != NULL) {
5832                                         warningf(&fors->condition->base.source_position,
5833                                                  "condition of for-statement is unreachable");
5834                                 }
5835
5836                                 if (!fors->step_reachable && fors->step != NULL) {
5837                                         warningf(&fors->step->base.source_position,
5838                                                  "step of for-statement is unreachable");
5839                                 }
5840                         }
5841                         return;
5842                 }
5843
5844                 case STATEMENT_COMPOUND:
5845                         if (stmt->compound.statements != NULL)
5846                                 return;
5847                         /* FALLTHROUGH*/
5848
5849                 default:
5850                         if (!stmt->base.reachable)
5851                                 warningf(&stmt->base.source_position, "statement is unreachable");
5852                         return;
5853         }
5854 }
5855
5856 static void parse_external_declaration(void)
5857 {
5858         /* function-definitions and declarations both start with declaration
5859          * specifiers */
5860         declaration_specifiers_t specifiers;
5861         memset(&specifiers, 0, sizeof(specifiers));
5862
5863         add_anchor_token(';');
5864         parse_declaration_specifiers(&specifiers);
5865         rem_anchor_token(';');
5866
5867         /* must be a declaration */
5868         if (token.type == ';') {
5869                 parse_anonymous_declaration_rest(&specifiers);
5870                 return;
5871         }
5872
5873         add_anchor_token(',');
5874         add_anchor_token('=');
5875         add_anchor_token(';');
5876         add_anchor_token('{');
5877
5878         /* declarator is common to both function-definitions and declarations */
5879         entity_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false, false);
5880
5881         rem_anchor_token('{');
5882         rem_anchor_token(';');
5883         rem_anchor_token('=');
5884         rem_anchor_token(',');
5885
5886         /* must be a declaration */
5887         switch (token.type) {
5888                 case ',':
5889                 case ';':
5890                 case '=':
5891                         parse_declaration_rest(ndeclaration, &specifiers, record_entity);
5892                         return;
5893         }
5894
5895         /* must be a function definition */
5896         parse_kr_declaration_list(ndeclaration);
5897
5898         if (token.type != '{') {
5899                 parse_error_expected("while parsing function definition", '{', NULL);
5900                 eat_until_matching_token(';');
5901                 return;
5902         }
5903
5904         assert(is_declaration(ndeclaration));
5905         type_t *type = ndeclaration->declaration.type;
5906
5907         /* note that we don't skip typerefs: the standard doesn't allow them here
5908          * (so we can't use is_type_function here) */
5909         if (type->kind != TYPE_FUNCTION) {
5910                 if (is_type_valid(type)) {
5911                         errorf(HERE, "declarator '%#T' has a body but is not a function type",
5912                                type, ndeclaration->base.symbol);
5913                 }
5914                 eat_block();
5915                 return;
5916         }
5917
5918         if (warning.aggregate_return &&
5919             is_type_compound(skip_typeref(type->function.return_type))) {
5920                 warningf(HERE, "function '%Y' returns an aggregate",
5921                          ndeclaration->base.symbol);
5922         }
5923         if (warning.traditional && !type->function.unspecified_parameters) {
5924                 warningf(HERE, "traditional C rejects ISO C style function definition of function '%Y'",
5925                         ndeclaration->base.symbol);
5926         }
5927         if (warning.old_style_definition && type->function.unspecified_parameters) {
5928                 warningf(HERE, "old-style function definition '%Y'",
5929                         ndeclaration->base.symbol);
5930         }
5931
5932         /* Â§ 6.7.5.3 (14) a function definition with () means no
5933          * parameters (and not unspecified parameters) */
5934         if (type->function.unspecified_parameters
5935                         && type->function.parameters == NULL
5936                         && !type->function.kr_style_parameters) {
5937                 type_t *duplicate = duplicate_type(type);
5938                 duplicate->function.unspecified_parameters = false;
5939
5940                 type = typehash_insert(duplicate);
5941                 if (type != duplicate) {
5942                         obstack_free(type_obst, duplicate);
5943                 }
5944                 ndeclaration->declaration.type = type;
5945         }
5946
5947         entity_t *const entity = record_entity(ndeclaration, true);
5948         assert(entity->kind == ENTITY_FUNCTION);
5949         assert(ndeclaration->kind == ENTITY_FUNCTION);
5950
5951         function_t *function = &entity->function;
5952         if (ndeclaration != entity) {
5953                 function->parameters = ndeclaration->function.parameters;
5954         }
5955         assert(is_declaration(entity));
5956         type = skip_typeref(entity->declaration.type);
5957
5958         /* push function parameters and switch scope */
5959         size_t const top = environment_top();
5960         scope_push(&function->parameters);
5961
5962         entity_t *parameter = function->parameters.entities;
5963         for( ; parameter != NULL; parameter = parameter->base.next) {
5964                 if (parameter->base.parent_scope == &ndeclaration->function.parameters) {
5965                         parameter->base.parent_scope = scope;
5966                 }
5967                 assert(parameter->base.parent_scope == NULL
5968                                 || parameter->base.parent_scope == scope);
5969                 parameter->base.parent_scope = scope;
5970                 if (parameter->base.symbol == NULL) {
5971                         errorf(&parameter->base.source_position, "parameter name omitted");
5972                         continue;
5973                 }
5974                 environment_push(parameter);
5975         }
5976
5977         if (function->statement != NULL) {
5978                 parser_error_multiple_definition(entity, HERE);
5979                 eat_block();
5980         } else {
5981                 /* parse function body */
5982                 int         label_stack_top      = label_top();
5983                 function_t *old_current_function = current_function;
5984                 current_function                 = function;
5985                 current_parent                   = NULL;
5986
5987                 statement_t *const body     = parse_compound_statement(false);
5988                 function->statement = body;
5989                 first_err = true;
5990                 check_labels();
5991                 check_declarations();
5992                 if (warning.return_type      ||
5993                     warning.unreachable_code ||
5994                     (warning.missing_noreturn
5995                      && !(function->base.modifiers & DM_NORETURN))) {
5996                         noreturn_candidate = true;
5997                         check_reachable(body);
5998                         if (warning.unreachable_code)
5999                                 walk_statements(body, check_unreachable, NULL);
6000                         if (warning.missing_noreturn &&
6001                             noreturn_candidate       &&
6002                             !(function->base.modifiers & DM_NORETURN)) {
6003                                 warningf(&body->base.source_position,
6004                                          "function '%#T' is candidate for attribute 'noreturn'",
6005                                          type, entity->base.symbol);
6006                         }
6007                 }
6008
6009                 assert(current_parent   == NULL);
6010                 assert(current_function == function);
6011                 current_function = old_current_function;
6012                 label_pop_to(label_stack_top);
6013         }
6014
6015         assert(scope == &function->parameters);
6016         scope_pop();
6017         environment_pop_to(top);
6018 }
6019
6020 static type_t *make_bitfield_type(type_t *base_type, expression_t *size,
6021                                   source_position_t *source_position,
6022                                   const symbol_t *symbol)
6023 {
6024         type_t *type = allocate_type_zero(TYPE_BITFIELD);
6025
6026         type->bitfield.base_type       = base_type;
6027         type->bitfield.size_expression = size;
6028
6029         il_size_t bit_size;
6030         type_t *skipped_type = skip_typeref(base_type);
6031         if (!is_type_integer(skipped_type)) {
6032                 errorf(HERE, "bitfield base type '%T' is not an integer type",
6033                         base_type);
6034                 bit_size = 0;
6035         } else {
6036                 bit_size = skipped_type->base.size * 8;
6037         }
6038
6039         if (is_constant_expression(size)) {
6040                 long v = fold_constant(size);
6041
6042                 if (v < 0) {
6043                         errorf(source_position, "negative width in bit-field '%Y'",
6044                                 symbol);
6045                 } else if (v == 0) {
6046                         errorf(source_position, "zero width for bit-field '%Y'",
6047                                 symbol);
6048                 } else if (bit_size > 0 && (il_size_t)v > bit_size) {
6049                         errorf(source_position, "width of '%Y' exceeds its type",
6050                                 symbol);
6051                 } else {
6052                         type->bitfield.bit_size = v;
6053                 }
6054         }
6055
6056         return type;
6057 }
6058
6059 static entity_t *find_compound_entry(compound_t *compound, symbol_t *symbol)
6060 {
6061         entity_t *iter = compound->members.entities;
6062         for( ; iter != NULL; iter = iter->base.next) {
6063                 if (iter->kind != ENTITY_COMPOUND_MEMBER)
6064                         continue;
6065
6066                 if (iter->base.symbol == NULL) {
6067                         type_t *type = skip_typeref(iter->declaration.type);
6068                         if (is_type_compound(type)) {
6069                                 entity_t *result
6070                                         = find_compound_entry(type->compound.compound, symbol);
6071                                 if (result != NULL)
6072                                         return result;
6073                         }
6074                         continue;
6075                 }
6076
6077                 if (iter->base.symbol == symbol) {
6078                         return iter;
6079                 }
6080         }
6081
6082         return NULL;
6083 }
6084
6085 static void parse_compound_declarators(compound_t *compound,
6086                 const declaration_specifiers_t *specifiers)
6087 {
6088         while (true) {
6089                 entity_t *entity;
6090
6091                 if (token.type == ':') {
6092                         source_position_t source_position = *HERE;
6093                         next_token();
6094
6095                         type_t *base_type = specifiers->type;
6096                         expression_t *size = parse_constant_expression();
6097
6098                         type_t *type = make_bitfield_type(base_type, size,
6099                                         &source_position, sym_anonymous);
6100
6101                         entity = allocate_entity_zero(ENTITY_COMPOUND_MEMBER);
6102                         entity->base.namespc                       = NAMESPACE_NORMAL;
6103                         entity->base.source_position               = source_position;
6104                         entity->declaration.declared_storage_class = STORAGE_CLASS_NONE;
6105                         entity->declaration.storage_class          = STORAGE_CLASS_NONE;
6106                         entity->declaration.modifiers              = specifiers->modifiers;
6107                         entity->declaration.type                   = type;
6108                 } else {
6109                         entity = parse_declarator(specifiers,/*may_be_abstract=*/true, true);
6110                         assert(entity->kind == ENTITY_COMPOUND_MEMBER);
6111
6112                         if (token.type == ':') {
6113                                 source_position_t source_position = *HERE;
6114                                 next_token();
6115                                 expression_t *size = parse_constant_expression();
6116
6117                                 type_t *type = entity->declaration.type;
6118                                 type_t *bitfield_type = make_bitfield_type(type, size,
6119                                                 &source_position, entity->base.symbol);
6120                                 entity->declaration.type = bitfield_type;
6121                         }
6122                 }
6123
6124                 /* make sure we don't define a symbol multiple times */
6125                 symbol_t *symbol = entity->base.symbol;
6126                 if (symbol != NULL) {
6127                         entity_t *prev = find_compound_entry(compound, symbol);
6128
6129                         if (prev != NULL) {
6130                                 assert(prev->base.symbol == symbol);
6131                                 errorf(&entity->base.source_position,
6132                                        "multiple declarations of symbol '%Y' (declared %P)",
6133                                        symbol, &prev->base.source_position);
6134                         }
6135                 }
6136
6137                 append_entity(&compound->members, entity);
6138
6139                 if (token.type != ',')
6140                         break;
6141                 next_token();
6142         }
6143         expect(';');
6144
6145 end_error:
6146         ;
6147 }
6148
6149 static void semantic_compound(compound_t *compound)
6150 {
6151         entity_t *entity = compound->members.entities;
6152         for ( ; entity != NULL; entity = entity->base.next) {
6153                 assert(entity->kind == ENTITY_COMPOUND_MEMBER);
6154
6155                 type_t *orig_type = entity->declaration.type;
6156                 type_t *type      = skip_typeref(orig_type);
6157
6158                 if (is_type_function(type)) {
6159                         errorf(HERE,
6160                                "compound member '%Y' must not have function type '%T'",
6161                                entity->base.symbol, orig_type);
6162                 } else if (is_type_incomplete(type)) {
6163                         /* Â§6.7.2.1 (16) flexible array member */
6164                         if (is_type_array(type) && entity->base.next == NULL) {
6165                                 compound->has_flexible_member = true;
6166                         } else {
6167                                 errorf(HERE,
6168                                        "compound member '%Y' has incomplete type '%T'",
6169                                        entity->base.symbol, orig_type);
6170                         }
6171                 }
6172         }
6173 }
6174
6175 static void parse_compound_type_entries(compound_t *compound)
6176 {
6177         eat('{');
6178         add_anchor_token('}');
6179
6180         while (token.type != '}') {
6181                 if (token.type == T_EOF) {
6182                         errorf(HERE, "EOF while parsing struct");
6183                         break;
6184                 }
6185                 declaration_specifiers_t specifiers;
6186                 memset(&specifiers, 0, sizeof(specifiers));
6187                 parse_declaration_specifiers(&specifiers);
6188
6189                 parse_compound_declarators(compound, &specifiers);
6190         }
6191         semantic_compound(compound);
6192         rem_anchor_token('}');
6193         next_token();
6194 }
6195
6196 static type_t *parse_typename(void)
6197 {
6198         declaration_specifiers_t specifiers;
6199         memset(&specifiers, 0, sizeof(specifiers));
6200         parse_declaration_specifiers(&specifiers);
6201         if (specifiers.storage_class != STORAGE_CLASS_NONE) {
6202                 /* TODO: improve error message, user does probably not know what a
6203                  * storage class is...
6204                  */
6205                 errorf(HERE, "typename may not have a storage class");
6206         }
6207
6208         type_t *result = parse_abstract_declarator(specifiers.type);
6209
6210         return result;
6211 }
6212
6213
6214
6215
6216 typedef expression_t* (*parse_expression_function)(void);
6217 typedef expression_t* (*parse_expression_infix_function)(expression_t *left);
6218
6219 typedef struct expression_parser_function_t expression_parser_function_t;
6220 struct expression_parser_function_t {
6221         parse_expression_function        parser;
6222         unsigned                         infix_precedence;
6223         parse_expression_infix_function  infix_parser;
6224 };
6225
6226 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
6227
6228 /**
6229  * Prints an error message if an expression was expected but not read
6230  */
6231 static expression_t *expected_expression_error(void)
6232 {
6233         /* skip the error message if the error token was read */
6234         if (token.type != T_ERROR) {
6235                 errorf(HERE, "expected expression, got token '%K'", &token);
6236         }
6237         next_token();
6238
6239         return create_invalid_expression();
6240 }
6241
6242 /**
6243  * Parse a string constant.
6244  */
6245 static expression_t *parse_string_const(void)
6246 {
6247         wide_string_t wres;
6248         if (token.type == T_STRING_LITERAL) {
6249                 string_t res = token.v.string;
6250                 next_token();
6251                 while (token.type == T_STRING_LITERAL) {
6252                         res = concat_strings(&res, &token.v.string);
6253                         next_token();
6254                 }
6255                 if (token.type != T_WIDE_STRING_LITERAL) {
6256                         expression_t *const cnst = allocate_expression_zero(EXPR_STRING_LITERAL);
6257                         /* note: that we use type_char_ptr here, which is already the
6258                          * automatic converted type. revert_automatic_type_conversion
6259                          * will construct the array type */
6260                         cnst->base.type    = warning.write_strings ? type_const_char_ptr : type_char_ptr;
6261                         cnst->string.value = res;
6262                         return cnst;
6263                 }
6264
6265                 wres = concat_string_wide_string(&res, &token.v.wide_string);
6266         } else {
6267                 wres = token.v.wide_string;
6268         }
6269         next_token();
6270
6271         for (;;) {
6272                 switch (token.type) {
6273                         case T_WIDE_STRING_LITERAL:
6274                                 wres = concat_wide_strings(&wres, &token.v.wide_string);
6275                                 break;
6276
6277                         case T_STRING_LITERAL:
6278                                 wres = concat_wide_string_string(&wres, &token.v.string);
6279                                 break;
6280
6281                         default: {
6282                                 expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
6283                                 cnst->base.type         = warning.write_strings ? type_const_wchar_t_ptr : type_wchar_t_ptr;
6284                                 cnst->wide_string.value = wres;
6285                                 return cnst;
6286                         }
6287                 }
6288                 next_token();
6289         }
6290 }
6291
6292 /**
6293  * Parse an integer constant.
6294  */
6295 static expression_t *parse_int_const(void)
6296 {
6297         expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
6298         cnst->base.type          = token.datatype;
6299         cnst->conste.v.int_value = token.v.intvalue;
6300
6301         next_token();
6302
6303         return cnst;
6304 }
6305
6306 /**
6307  * Parse a character constant.
6308  */
6309 static expression_t *parse_character_constant(void)
6310 {
6311         expression_t *cnst = allocate_expression_zero(EXPR_CHARACTER_CONSTANT);
6312         cnst->base.type          = token.datatype;
6313         cnst->conste.v.character = token.v.string;
6314
6315         if (cnst->conste.v.character.size != 1) {
6316                 if (warning.multichar && GNU_MODE) {
6317                         warningf(HERE, "multi-character character constant");
6318                 } else {
6319                         errorf(HERE, "more than 1 characters in character constant");
6320                 }
6321         }
6322         next_token();
6323
6324         return cnst;
6325 }
6326
6327 /**
6328  * Parse a wide character constant.
6329  */
6330 static expression_t *parse_wide_character_constant(void)
6331 {
6332         expression_t *cnst = allocate_expression_zero(EXPR_WIDE_CHARACTER_CONSTANT);
6333         cnst->base.type               = token.datatype;
6334         cnst->conste.v.wide_character = token.v.wide_string;
6335
6336         if (cnst->conste.v.wide_character.size != 1) {
6337                 if (warning.multichar && GNU_MODE) {
6338                         warningf(HERE, "multi-character character constant");
6339                 } else {
6340                         errorf(HERE, "more than 1 characters in character constant");
6341                 }
6342         }
6343         next_token();
6344
6345         return cnst;
6346 }
6347
6348 /**
6349  * Parse a float constant.
6350  */
6351 static expression_t *parse_float_const(void)
6352 {
6353         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
6354         cnst->base.type            = token.datatype;
6355         cnst->conste.v.float_value = token.v.floatvalue;
6356
6357         next_token();
6358
6359         return cnst;
6360 }
6361
6362 static entity_t *create_implicit_function(symbol_t *symbol,
6363                 const source_position_t *source_position)
6364 {
6365         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION);
6366         ntype->function.return_type            = type_int;
6367         ntype->function.unspecified_parameters = true;
6368
6369         type_t *type = typehash_insert(ntype);
6370         if (type != ntype) {
6371                 free_type(ntype);
6372         }
6373
6374         entity_t *entity = allocate_entity_zero(ENTITY_FUNCTION);
6375         entity->declaration.storage_class          = STORAGE_CLASS_EXTERN;
6376         entity->declaration.declared_storage_class = STORAGE_CLASS_EXTERN;
6377         entity->declaration.type                   = type;
6378         entity->declaration.implicit               = true;
6379         entity->base.symbol                        = symbol;
6380         entity->base.source_position               = *source_position;
6381
6382         bool strict_prototypes_old = warning.strict_prototypes;
6383         warning.strict_prototypes  = false;
6384         record_entity(entity, false);
6385         warning.strict_prototypes = strict_prototypes_old;
6386
6387         return entity;
6388 }
6389
6390 /**
6391  * Creates a return_type (func)(argument_type) function type if not
6392  * already exists.
6393  */
6394 static type_t *make_function_2_type(type_t *return_type, type_t *argument_type1,
6395                                     type_t *argument_type2)
6396 {
6397         function_parameter_t *parameter2
6398                 = obstack_alloc(type_obst, sizeof(parameter2[0]));
6399         memset(parameter2, 0, sizeof(parameter2[0]));
6400         parameter2->type = argument_type2;
6401
6402         function_parameter_t *parameter1
6403                 = obstack_alloc(type_obst, sizeof(parameter1[0]));
6404         memset(parameter1, 0, sizeof(parameter1[0]));
6405         parameter1->type = argument_type1;
6406         parameter1->next = parameter2;
6407
6408         type_t *type               = allocate_type_zero(TYPE_FUNCTION);
6409         type->function.return_type = return_type;
6410         type->function.parameters  = parameter1;
6411
6412         type_t *result = typehash_insert(type);
6413         if (result != type) {
6414                 free_type(type);
6415         }
6416
6417         return result;
6418 }
6419
6420 /**
6421  * Creates a return_type (func)(argument_type) function type if not
6422  * already exists.
6423  *
6424  * @param return_type    the return type
6425  * @param argument_type  the argument type
6426  */
6427 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
6428 {
6429         function_parameter_t *parameter
6430                 = obstack_alloc(type_obst, sizeof(parameter[0]));
6431         memset(parameter, 0, sizeof(parameter[0]));
6432         parameter->type = argument_type;
6433
6434         type_t *type               = allocate_type_zero(TYPE_FUNCTION);
6435         type->function.return_type = return_type;
6436         type->function.parameters  = parameter;
6437
6438         type_t *result = typehash_insert(type);
6439         if (result != type) {
6440                 free_type(type);
6441         }
6442
6443         return result;
6444 }
6445
6446 static type_t *make_function_0_type(type_t *return_type)
6447 {
6448         type_t *type               = allocate_type_zero(TYPE_FUNCTION);
6449         type->function.return_type = return_type;
6450         type->function.parameters  = NULL;
6451
6452         type_t *result = typehash_insert(type);
6453         if (result != type) {
6454                 free_type(type);
6455         }
6456
6457         return result;
6458 }
6459
6460 /**
6461  * Creates a function type for some function like builtins.
6462  *
6463  * @param symbol   the symbol describing the builtin
6464  */
6465 static type_t *get_builtin_symbol_type(symbol_t *symbol)
6466 {
6467         switch (symbol->ID) {
6468         case T___builtin_alloca:
6469                 return make_function_1_type(type_void_ptr, type_size_t);
6470         case T___builtin_huge_val:
6471                 return make_function_0_type(type_double);
6472         case T___builtin_inf:
6473                 return make_function_0_type(type_double);
6474         case T___builtin_inff:
6475                 return make_function_0_type(type_float);
6476         case T___builtin_infl:
6477                 return make_function_0_type(type_long_double);
6478         case T___builtin_nan:
6479                 return make_function_1_type(type_double, type_char_ptr);
6480         case T___builtin_nanf:
6481                 return make_function_1_type(type_float, type_char_ptr);
6482         case T___builtin_nanl:
6483                 return make_function_1_type(type_long_double, type_char_ptr);
6484         case T___builtin_va_end:
6485                 return make_function_1_type(type_void, type_valist);
6486         case T___builtin_expect:
6487                 return make_function_2_type(type_long, type_long, type_long);
6488         default:
6489                 internal_errorf(HERE, "not implemented builtin symbol found");
6490         }
6491 }
6492
6493 /**
6494  * Performs automatic type cast as described in Â§ 6.3.2.1.
6495  *
6496  * @param orig_type  the original type
6497  */
6498 static type_t *automatic_type_conversion(type_t *orig_type)
6499 {
6500         type_t *type = skip_typeref(orig_type);
6501         if (is_type_array(type)) {
6502                 array_type_t *array_type   = &type->array;
6503                 type_t       *element_type = array_type->element_type;
6504                 unsigned      qualifiers   = array_type->base.qualifiers;
6505
6506                 return make_pointer_type(element_type, qualifiers);
6507         }
6508
6509         if (is_type_function(type)) {
6510                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
6511         }
6512
6513         return orig_type;
6514 }
6515
6516 /**
6517  * reverts the automatic casts of array to pointer types and function
6518  * to function-pointer types as defined Â§ 6.3.2.1
6519  */
6520 type_t *revert_automatic_type_conversion(const expression_t *expression)
6521 {
6522         switch (expression->kind) {
6523                 case EXPR_REFERENCE: {
6524                         entity_t *entity = expression->reference.entity;
6525                         if (is_declaration(entity)) {
6526                                 return entity->declaration.type;
6527                         } else if (entity->kind == ENTITY_ENUM_VALUE) {
6528                                 return entity->enum_value.enum_type;
6529                         } else {
6530                                 panic("no declaration or enum in reference");
6531                         }
6532                 }
6533
6534                 case EXPR_SELECT: {
6535                         entity_t *entity = expression->select.compound_entry;
6536                         assert(is_declaration(entity));
6537                         type_t   *type   = entity->declaration.type;
6538                         return get_qualified_type(type,
6539                                                   expression->base.type->base.qualifiers);
6540                 }
6541
6542                 case EXPR_UNARY_DEREFERENCE: {
6543                         const expression_t *const value = expression->unary.value;
6544                         type_t             *const type  = skip_typeref(value->base.type);
6545                         assert(is_type_pointer(type));
6546                         return type->pointer.points_to;
6547                 }
6548
6549                 case EXPR_BUILTIN_SYMBOL:
6550                         return get_builtin_symbol_type(expression->builtin_symbol.symbol);
6551
6552                 case EXPR_ARRAY_ACCESS: {
6553                         const expression_t *array_ref = expression->array_access.array_ref;
6554                         type_t             *type_left = skip_typeref(array_ref->base.type);
6555                         if (!is_type_valid(type_left))
6556                                 return type_left;
6557                         assert(is_type_pointer(type_left));
6558                         return type_left->pointer.points_to;
6559                 }
6560
6561                 case EXPR_STRING_LITERAL: {
6562                         size_t size = expression->string.value.size;
6563                         return make_array_type(type_char, size, TYPE_QUALIFIER_NONE);
6564                 }
6565
6566                 case EXPR_WIDE_STRING_LITERAL: {
6567                         size_t size = expression->wide_string.value.size;
6568                         return make_array_type(type_wchar_t, size, TYPE_QUALIFIER_NONE);
6569                 }
6570
6571                 case EXPR_COMPOUND_LITERAL:
6572                         return expression->compound_literal.type;
6573
6574                 default: break;
6575         }
6576
6577         return expression->base.type;
6578 }
6579
6580 static expression_t *parse_reference(void)
6581 {
6582         symbol_t *const symbol = token.v.symbol;
6583
6584         entity_t *entity = get_entity(symbol, NAMESPACE_NORMAL);
6585
6586         if (entity == NULL) {
6587                 if (!strict_mode && look_ahead(1)->type == '(') {
6588                         /* an implicitly declared function */
6589                         if (warning.implicit_function_declaration) {
6590                                 warningf(HERE, "implicit declaration of function '%Y'",
6591                                         symbol);
6592                         }
6593
6594                         entity = create_implicit_function(symbol, HERE);
6595                 } else {
6596                         errorf(HERE, "unknown symbol '%Y' found.", symbol);
6597                         entity = create_error_entity(symbol, ENTITY_VARIABLE);
6598                 }
6599         }
6600
6601         type_t *orig_type;
6602
6603         if (is_declaration(entity)) {
6604                 orig_type = entity->declaration.type;
6605         } else if (entity->kind == ENTITY_ENUM_VALUE) {
6606                 orig_type = entity->enum_value.enum_type;
6607         } else {
6608                 panic("expected declaration or enum value in reference");
6609         }
6610
6611         /* we always do the auto-type conversions; the & and sizeof parser contains
6612          * code to revert this! */
6613         type_t *type = automatic_type_conversion(orig_type);
6614
6615         expression_kind_t kind = EXPR_REFERENCE;
6616         if (entity->kind == ENTITY_ENUM_VALUE)
6617                 kind = EXPR_REFERENCE_ENUM_VALUE;
6618
6619         expression_t *expression     = allocate_expression_zero(kind);
6620         expression->reference.entity = entity;
6621         expression->base.type        = type;
6622
6623         /* this declaration is used */
6624         if (is_declaration(entity)) {
6625                 entity->declaration.used = true;
6626         }
6627
6628         if (entity->base.parent_scope != file_scope
6629                 && entity->base.parent_scope->depth < current_function->parameters.depth
6630                 && is_type_valid(orig_type) && !is_type_function(orig_type)) {
6631                 if (entity->kind == ENTITY_VARIABLE) {
6632                         /* access of a variable from an outer function */
6633                         entity->variable.address_taken = true;
6634                 }
6635                 current_function->need_closure = true;
6636         }
6637
6638         /* check for deprecated functions */
6639         if (warning.deprecated_declarations
6640                 && is_declaration(entity)
6641                 && entity->declaration.modifiers & DM_DEPRECATED) {
6642                 declaration_t *declaration = &entity->declaration;
6643
6644                 char const *const prefix = entity->kind == ENTITY_FUNCTION ?
6645                         "function" : "variable";
6646
6647                 if (declaration->deprecated_string != NULL) {
6648                         warningf(HERE, "%s '%Y' is deprecated (declared %P): \"%s\"",
6649                                  prefix, entity->base.symbol, &entity->base.source_position,
6650                                  declaration->deprecated_string);
6651                 } else {
6652                         warningf(HERE, "%s '%Y' is deprecated (declared %P)", prefix,
6653                                  entity->base.symbol, &entity->base.source_position);
6654                 }
6655         }
6656
6657         if (warning.init_self && entity == current_init_decl && !in_type_prop
6658             && entity->kind == ENTITY_VARIABLE) {
6659                 current_init_decl = NULL;
6660                 warningf(HERE, "variable '%#T' is initialized by itself",
6661                          entity->declaration.type, entity->base.symbol);
6662         }
6663
6664         next_token();
6665         return expression;
6666 }
6667
6668 static bool semantic_cast(expression_t *cast)
6669 {
6670         expression_t            *expression      = cast->unary.value;
6671         type_t                  *orig_dest_type  = cast->base.type;
6672         type_t                  *orig_type_right = expression->base.type;
6673         type_t            const *dst_type        = skip_typeref(orig_dest_type);
6674         type_t            const *src_type        = skip_typeref(orig_type_right);
6675         source_position_t const *pos             = &cast->base.source_position;
6676
6677         /* Â§6.5.4 A (void) cast is explicitly permitted, more for documentation than for utility. */
6678         if (dst_type == type_void)
6679                 return true;
6680
6681         /* only integer and pointer can be casted to pointer */
6682         if (is_type_pointer(dst_type)  &&
6683             !is_type_pointer(src_type) &&
6684             !is_type_integer(src_type) &&
6685             is_type_valid(src_type)) {
6686                 errorf(pos, "cannot convert type '%T' to a pointer type", orig_type_right);
6687                 return false;
6688         }
6689
6690         if (!is_type_scalar(dst_type) && is_type_valid(dst_type)) {
6691                 errorf(pos, "conversion to non-scalar type '%T' requested", orig_dest_type);
6692                 return false;
6693         }
6694
6695         if (!is_type_scalar(src_type) && is_type_valid(src_type)) {
6696                 errorf(pos, "conversion from non-scalar type '%T' requested", orig_type_right);
6697                 return false;
6698         }
6699
6700         if (warning.cast_qual &&
6701             is_type_pointer(src_type) &&
6702             is_type_pointer(dst_type)) {
6703                 type_t *src = skip_typeref(src_type->pointer.points_to);
6704                 type_t *dst = skip_typeref(dst_type->pointer.points_to);
6705                 unsigned missing_qualifiers =
6706                         src->base.qualifiers & ~dst->base.qualifiers;
6707                 if (missing_qualifiers != 0) {
6708                         warningf(pos,
6709                                  "cast discards qualifiers '%Q' in pointer target type of '%T'",
6710                                  missing_qualifiers, orig_type_right);
6711                 }
6712         }
6713         return true;
6714 }
6715
6716 static expression_t *parse_compound_literal(type_t *type)
6717 {
6718         expression_t *expression = allocate_expression_zero(EXPR_COMPOUND_LITERAL);
6719
6720         parse_initializer_env_t env;
6721         env.type             = type;
6722         env.entity           = NULL;
6723         env.must_be_constant = false;
6724         initializer_t *initializer = parse_initializer(&env);
6725         type = env.type;
6726
6727         expression->compound_literal.initializer = initializer;
6728         expression->compound_literal.type        = type;
6729         expression->base.type                    = automatic_type_conversion(type);
6730
6731         return expression;
6732 }
6733
6734 /**
6735  * Parse a cast expression.
6736  */
6737 static expression_t *parse_cast(void)
6738 {
6739         add_anchor_token(')');
6740
6741         source_position_t source_position = token.source_position;
6742
6743         type_t *type = parse_typename();
6744
6745         rem_anchor_token(')');
6746         expect(')');
6747
6748         if (token.type == '{') {
6749                 return parse_compound_literal(type);
6750         }
6751
6752         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST);
6753         cast->base.source_position = source_position;
6754
6755         expression_t *value = parse_sub_expression(PREC_CAST);
6756         cast->base.type   = type;
6757         cast->unary.value = value;
6758
6759         if (! semantic_cast(cast)) {
6760                 /* TODO: record the error in the AST. else it is impossible to detect it */
6761         }
6762
6763         return cast;
6764 end_error:
6765         return create_invalid_expression();
6766 }
6767
6768 /**
6769  * Parse a statement expression.
6770  */
6771 static expression_t *parse_statement_expression(void)
6772 {
6773         add_anchor_token(')');
6774
6775         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
6776
6777         statement_t *statement          = parse_compound_statement(true);
6778         expression->statement.statement = statement;
6779
6780         /* find last statement and use its type */
6781         type_t *type = type_void;
6782         const statement_t *stmt = statement->compound.statements;
6783         if (stmt != NULL) {
6784                 while (stmt->base.next != NULL)
6785                         stmt = stmt->base.next;
6786
6787                 if (stmt->kind == STATEMENT_EXPRESSION) {
6788                         type = stmt->expression.expression->base.type;
6789                 }
6790         } else if (warning.other) {
6791                 warningf(&expression->base.source_position, "empty statement expression ({})");
6792         }
6793         expression->base.type = type;
6794
6795         rem_anchor_token(')');
6796         expect(')');
6797
6798 end_error:
6799         return expression;
6800 }
6801
6802 /**
6803  * Parse a parenthesized expression.
6804  */
6805 static expression_t *parse_parenthesized_expression(void)
6806 {
6807         eat('(');
6808
6809         switch (token.type) {
6810         case '{':
6811                 /* gcc extension: a statement expression */
6812                 return parse_statement_expression();
6813
6814         TYPE_QUALIFIERS
6815         TYPE_SPECIFIERS
6816                 return parse_cast();
6817         case T_IDENTIFIER:
6818                 if (is_typedef_symbol(token.v.symbol)) {
6819                         return parse_cast();
6820                 }
6821         }
6822
6823         add_anchor_token(')');
6824         expression_t *result = parse_expression();
6825         rem_anchor_token(')');
6826         expect(')');
6827
6828 end_error:
6829         return result;
6830 }
6831
6832 static expression_t *parse_function_keyword(void)
6833 {
6834         /* TODO */
6835
6836         if (current_function == NULL) {
6837                 errorf(HERE, "'__func__' used outside of a function");
6838         }
6839
6840         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
6841         expression->base.type     = type_char_ptr;
6842         expression->funcname.kind = FUNCNAME_FUNCTION;
6843
6844         next_token();
6845
6846         return expression;
6847 }
6848
6849 static expression_t *parse_pretty_function_keyword(void)
6850 {
6851         if (current_function == NULL) {
6852                 errorf(HERE, "'__PRETTY_FUNCTION__' used outside of a function");
6853         }
6854
6855         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
6856         expression->base.type     = type_char_ptr;
6857         expression->funcname.kind = FUNCNAME_PRETTY_FUNCTION;
6858
6859         eat(T___PRETTY_FUNCTION__);
6860
6861         return expression;
6862 }
6863
6864 static expression_t *parse_funcsig_keyword(void)
6865 {
6866         if (current_function == NULL) {
6867                 errorf(HERE, "'__FUNCSIG__' used outside of a function");
6868         }
6869
6870         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
6871         expression->base.type     = type_char_ptr;
6872         expression->funcname.kind = FUNCNAME_FUNCSIG;
6873
6874         eat(T___FUNCSIG__);
6875
6876         return expression;
6877 }
6878
6879 static expression_t *parse_funcdname_keyword(void)
6880 {
6881         if (current_function == NULL) {
6882                 errorf(HERE, "'__FUNCDNAME__' used outside of a function");
6883         }
6884
6885         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
6886         expression->base.type     = type_char_ptr;
6887         expression->funcname.kind = FUNCNAME_FUNCDNAME;
6888
6889         eat(T___FUNCDNAME__);
6890
6891         return expression;
6892 }
6893
6894 static designator_t *parse_designator(void)
6895 {
6896         designator_t *result    = allocate_ast_zero(sizeof(result[0]));
6897         result->source_position = *HERE;
6898
6899         if (token.type != T_IDENTIFIER) {
6900                 parse_error_expected("while parsing member designator",
6901                                      T_IDENTIFIER, NULL);
6902                 return NULL;
6903         }
6904         result->symbol = token.v.symbol;
6905         next_token();
6906
6907         designator_t *last_designator = result;
6908         while(true) {
6909                 if (token.type == '.') {
6910                         next_token();
6911                         if (token.type != T_IDENTIFIER) {
6912                                 parse_error_expected("while parsing member designator",
6913                                                      T_IDENTIFIER, NULL);
6914                                 return NULL;
6915                         }
6916                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
6917                         designator->source_position = *HERE;
6918                         designator->symbol          = token.v.symbol;
6919                         next_token();
6920
6921                         last_designator->next = designator;
6922                         last_designator       = designator;
6923                         continue;
6924                 }
6925                 if (token.type == '[') {
6926                         next_token();
6927                         add_anchor_token(']');
6928                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
6929                         designator->source_position = *HERE;
6930                         designator->array_index     = parse_expression();
6931                         rem_anchor_token(']');
6932                         expect(']');
6933                         if (designator->array_index == NULL) {
6934                                 return NULL;
6935                         }
6936
6937                         last_designator->next = designator;
6938                         last_designator       = designator;
6939                         continue;
6940                 }
6941                 break;
6942         }
6943
6944         return result;
6945 end_error:
6946         return NULL;
6947 }
6948
6949 /**
6950  * Parse the __builtin_offsetof() expression.
6951  */
6952 static expression_t *parse_offsetof(void)
6953 {
6954         expression_t *expression = allocate_expression_zero(EXPR_OFFSETOF);
6955         expression->base.type    = type_size_t;
6956
6957         eat(T___builtin_offsetof);
6958
6959         expect('(');
6960         add_anchor_token(',');
6961         type_t *type = parse_typename();
6962         rem_anchor_token(',');
6963         expect(',');
6964         add_anchor_token(')');
6965         designator_t *designator = parse_designator();
6966         rem_anchor_token(')');
6967         expect(')');
6968
6969         expression->offsetofe.type       = type;
6970         expression->offsetofe.designator = designator;
6971
6972         type_path_t path;
6973         memset(&path, 0, sizeof(path));
6974         path.top_type = type;
6975         path.path     = NEW_ARR_F(type_path_entry_t, 0);
6976
6977         descend_into_subtype(&path);
6978
6979         if (!walk_designator(&path, designator, true)) {
6980                 return create_invalid_expression();
6981         }
6982
6983         DEL_ARR_F(path.path);
6984
6985         return expression;
6986 end_error:
6987         return create_invalid_expression();
6988 }
6989
6990 /**
6991  * Parses a _builtin_va_start() expression.
6992  */
6993 static expression_t *parse_va_start(void)
6994 {
6995         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
6996
6997         eat(T___builtin_va_start);
6998
6999         expect('(');
7000         add_anchor_token(',');
7001         expression->va_starte.ap = parse_assignment_expression();
7002         rem_anchor_token(',');
7003         expect(',');
7004         expression_t *const expr = parse_assignment_expression();
7005         if (expr->kind == EXPR_REFERENCE) {
7006                 entity_t *const entity = expr->reference.entity;
7007                 if (entity->base.parent_scope != &current_function->parameters
7008                                 || entity->base.next != NULL
7009                                 || entity->kind != ENTITY_VARIABLE) {
7010                         errorf(&expr->base.source_position,
7011                                "second argument of 'va_start' must be last parameter of the current function");
7012                 } else {
7013                         expression->va_starte.parameter = &entity->variable;
7014                 }
7015                 expect(')');
7016                 return expression;
7017         }
7018         expect(')');
7019 end_error:
7020         return create_invalid_expression();
7021 }
7022
7023 /**
7024  * Parses a _builtin_va_arg() expression.
7025  */
7026 static expression_t *parse_va_arg(void)
7027 {
7028         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
7029
7030         eat(T___builtin_va_arg);
7031
7032         expect('(');
7033         expression->va_arge.ap = parse_assignment_expression();
7034         expect(',');
7035         expression->base.type = parse_typename();
7036         expect(')');
7037
7038         return expression;
7039 end_error:
7040         return create_invalid_expression();
7041 }
7042
7043 static expression_t *parse_builtin_symbol(void)
7044 {
7045         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
7046
7047         symbol_t *symbol = token.v.symbol;
7048
7049         expression->builtin_symbol.symbol = symbol;
7050         next_token();
7051
7052         type_t *type = get_builtin_symbol_type(symbol);
7053         type = automatic_type_conversion(type);
7054
7055         expression->base.type = type;
7056         return expression;
7057 }
7058
7059 /**
7060  * Parses a __builtin_constant() expression.
7061  */
7062 static expression_t *parse_builtin_constant(void)
7063 {
7064         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_CONSTANT_P);
7065
7066         eat(T___builtin_constant_p);
7067
7068         expect('(');
7069         add_anchor_token(')');
7070         expression->builtin_constant.value = parse_assignment_expression();
7071         rem_anchor_token(')');
7072         expect(')');
7073         expression->base.type = type_int;
7074
7075         return expression;
7076 end_error:
7077         return create_invalid_expression();
7078 }
7079
7080 /**
7081  * Parses a __builtin_prefetch() expression.
7082  */
7083 static expression_t *parse_builtin_prefetch(void)
7084 {
7085         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_PREFETCH);
7086
7087         eat(T___builtin_prefetch);
7088
7089         expect('(');
7090         add_anchor_token(')');
7091         expression->builtin_prefetch.adr = parse_assignment_expression();
7092         if (token.type == ',') {
7093                 next_token();
7094                 expression->builtin_prefetch.rw = parse_assignment_expression();
7095         }
7096         if (token.type == ',') {
7097                 next_token();
7098                 expression->builtin_prefetch.locality = parse_assignment_expression();
7099         }
7100         rem_anchor_token(')');
7101         expect(')');
7102         expression->base.type = type_void;
7103
7104         return expression;
7105 end_error:
7106         return create_invalid_expression();
7107 }
7108
7109 /**
7110  * Parses a __builtin_is_*() compare expression.
7111  */
7112 static expression_t *parse_compare_builtin(void)
7113 {
7114         expression_t *expression;
7115
7116         switch (token.type) {
7117         case T___builtin_isgreater:
7118                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATER);
7119                 break;
7120         case T___builtin_isgreaterequal:
7121                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATEREQUAL);
7122                 break;
7123         case T___builtin_isless:
7124                 expression = allocate_expression_zero(EXPR_BINARY_ISLESS);
7125                 break;
7126         case T___builtin_islessequal:
7127                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSEQUAL);
7128                 break;
7129         case T___builtin_islessgreater:
7130                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSGREATER);
7131                 break;
7132         case T___builtin_isunordered:
7133                 expression = allocate_expression_zero(EXPR_BINARY_ISUNORDERED);
7134                 break;
7135         default:
7136                 internal_errorf(HERE, "invalid compare builtin found");
7137         }
7138         expression->base.source_position = *HERE;
7139         next_token();
7140
7141         expect('(');
7142         expression->binary.left = parse_assignment_expression();
7143         expect(',');
7144         expression->binary.right = parse_assignment_expression();
7145         expect(')');
7146
7147         type_t *const orig_type_left  = expression->binary.left->base.type;
7148         type_t *const orig_type_right = expression->binary.right->base.type;
7149
7150         type_t *const type_left  = skip_typeref(orig_type_left);
7151         type_t *const type_right = skip_typeref(orig_type_right);
7152         if (!is_type_float(type_left) && !is_type_float(type_right)) {
7153                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
7154                         type_error_incompatible("invalid operands in comparison",
7155                                 &expression->base.source_position, orig_type_left, orig_type_right);
7156                 }
7157         } else {
7158                 semantic_comparison(&expression->binary);
7159         }
7160
7161         return expression;
7162 end_error:
7163         return create_invalid_expression();
7164 }
7165
7166 #if 0
7167 /**
7168  * Parses a __builtin_expect() expression.
7169  */
7170 static expression_t *parse_builtin_expect(void)
7171 {
7172         expression_t *expression
7173                 = allocate_expression_zero(EXPR_BINARY_BUILTIN_EXPECT);
7174
7175         eat(T___builtin_expect);
7176
7177         expect('(');
7178         expression->binary.left = parse_assignment_expression();
7179         expect(',');
7180         expression->binary.right = parse_constant_expression();
7181         expect(')');
7182
7183         expression->base.type = expression->binary.left->base.type;
7184
7185         return expression;
7186 end_error:
7187         return create_invalid_expression();
7188 }
7189 #endif
7190
7191 /**
7192  * Parses a MS assume() expression.
7193  */
7194 static expression_t *parse_assume(void)
7195 {
7196         expression_t *expression = allocate_expression_zero(EXPR_UNARY_ASSUME);
7197
7198         eat(T__assume);
7199
7200         expect('(');
7201         add_anchor_token(')');
7202         expression->unary.value = parse_assignment_expression();
7203         rem_anchor_token(')');
7204         expect(')');
7205
7206         expression->base.type = type_void;
7207         return expression;
7208 end_error:
7209         return create_invalid_expression();
7210 }
7211
7212 /**
7213  * Return the declaration for a given label symbol or create a new one.
7214  *
7215  * @param symbol  the symbol of the label
7216  */
7217 static label_t *get_label(symbol_t *symbol)
7218 {
7219         entity_t *label;
7220         assert(current_function != NULL);
7221
7222         label = get_entity(symbol, NAMESPACE_LOCAL_LABEL);
7223         /* if we found a local label, we already created the declaration */
7224         if (label != NULL && label->kind == ENTITY_LOCAL_LABEL) {
7225                 if (label->base.parent_scope != scope) {
7226                         assert(label->base.parent_scope->depth < scope->depth);
7227                         current_function->goto_to_outer = true;
7228                 }
7229                 return &label->label;
7230         }
7231
7232         label = get_entity(symbol, NAMESPACE_LABEL);
7233         /* if we found a label in the same function, then we already created the
7234          * declaration */
7235         if (label != NULL
7236                         && label->base.parent_scope == &current_function->parameters) {
7237                 return &label->label;
7238         }
7239
7240         /* otherwise we need to create a new one */
7241         label               = allocate_entity_zero(ENTITY_LABEL);
7242         label->base.namespc = NAMESPACE_LABEL;
7243         label->base.symbol  = symbol;
7244
7245         label_push(label);
7246
7247         return &label->label;
7248 }
7249
7250 /**
7251  * Parses a GNU && label address expression.
7252  */
7253 static expression_t *parse_label_address(void)
7254 {
7255         source_position_t source_position = token.source_position;
7256         eat(T_ANDAND);
7257         if (token.type != T_IDENTIFIER) {
7258                 parse_error_expected("while parsing label address", T_IDENTIFIER, NULL);
7259                 goto end_error;
7260         }
7261         symbol_t *symbol = token.v.symbol;
7262         next_token();
7263
7264         label_t *label       = get_label(symbol);
7265         label->used          = true;
7266         label->address_taken = true;
7267
7268         expression_t *expression = allocate_expression_zero(EXPR_LABEL_ADDRESS);
7269         expression->base.source_position = source_position;
7270
7271         /* label address is threaten as a void pointer */
7272         expression->base.type           = type_void_ptr;
7273         expression->label_address.label = label;
7274         return expression;
7275 end_error:
7276         return create_invalid_expression();
7277 }
7278
7279 /**
7280  * Parse a microsoft __noop expression.
7281  */
7282 static expression_t *parse_noop_expression(void)
7283 {
7284         /* the result is a (int)0 */
7285         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
7286         cnst->base.type            = type_int;
7287         cnst->conste.v.int_value   = 0;
7288         cnst->conste.is_ms_noop    = true;
7289
7290         eat(T___noop);
7291
7292         if (token.type == '(') {
7293                 /* parse arguments */
7294                 eat('(');
7295                 add_anchor_token(')');
7296                 add_anchor_token(',');
7297
7298                 if (token.type != ')') {
7299                         while(true) {
7300                                 (void)parse_assignment_expression();
7301                                 if (token.type != ',')
7302                                         break;
7303                                 next_token();
7304                         }
7305                 }
7306         }
7307         rem_anchor_token(',');
7308         rem_anchor_token(')');
7309         expect(')');
7310
7311 end_error:
7312         return cnst;
7313 }
7314
7315 /**
7316  * Parses a primary expression.
7317  */
7318 static expression_t *parse_primary_expression(void)
7319 {
7320         switch (token.type) {
7321                 case T_INTEGER:                  return parse_int_const();
7322                 case T_CHARACTER_CONSTANT:       return parse_character_constant();
7323                 case T_WIDE_CHARACTER_CONSTANT:  return parse_wide_character_constant();
7324                 case T_FLOATINGPOINT:            return parse_float_const();
7325                 case T_STRING_LITERAL:
7326                 case T_WIDE_STRING_LITERAL:      return parse_string_const();
7327                 case T_IDENTIFIER:               return parse_reference();
7328                 case T___FUNCTION__:
7329                 case T___func__:                 return parse_function_keyword();
7330                 case T___PRETTY_FUNCTION__:      return parse_pretty_function_keyword();
7331                 case T___FUNCSIG__:              return parse_funcsig_keyword();
7332                 case T___FUNCDNAME__:            return parse_funcdname_keyword();
7333                 case T___builtin_offsetof:       return parse_offsetof();
7334                 case T___builtin_va_start:       return parse_va_start();
7335                 case T___builtin_va_arg:         return parse_va_arg();
7336                 case T___builtin_expect:
7337                 case T___builtin_alloca:
7338                 case T___builtin_inf:
7339                 case T___builtin_inff:
7340                 case T___builtin_infl:
7341                 case T___builtin_nan:
7342                 case T___builtin_nanf:
7343                 case T___builtin_nanl:
7344                 case T___builtin_huge_val:
7345                 case T___builtin_va_end:         return parse_builtin_symbol();
7346                 case T___builtin_isgreater:
7347                 case T___builtin_isgreaterequal:
7348                 case T___builtin_isless:
7349                 case T___builtin_islessequal:
7350                 case T___builtin_islessgreater:
7351                 case T___builtin_isunordered:    return parse_compare_builtin();
7352                 case T___builtin_constant_p:     return parse_builtin_constant();
7353                 case T___builtin_prefetch:       return parse_builtin_prefetch();
7354                 case T__assume:                  return parse_assume();
7355                 case T_ANDAND:
7356                         if (GNU_MODE)
7357                                 return parse_label_address();
7358                         break;
7359
7360                 case '(':                        return parse_parenthesized_expression();
7361                 case T___noop:                   return parse_noop_expression();
7362         }
7363
7364         errorf(HERE, "unexpected token %K, expected an expression", &token);
7365         return create_invalid_expression();
7366 }
7367
7368 /**
7369  * Check if the expression has the character type and issue a warning then.
7370  */
7371 static void check_for_char_index_type(const expression_t *expression)
7372 {
7373         type_t       *const type      = expression->base.type;
7374         const type_t *const base_type = skip_typeref(type);
7375
7376         if (is_type_atomic(base_type, ATOMIC_TYPE_CHAR) &&
7377                         warning.char_subscripts) {
7378                 warningf(&expression->base.source_position,
7379                          "array subscript has type '%T'", type);
7380         }
7381 }
7382
7383 static expression_t *parse_array_expression(expression_t *left)
7384 {
7385         expression_t *expression = allocate_expression_zero(EXPR_ARRAY_ACCESS);
7386
7387         eat('[');
7388         add_anchor_token(']');
7389
7390         expression_t *inside = parse_expression();
7391
7392         type_t *const orig_type_left   = left->base.type;
7393         type_t *const orig_type_inside = inside->base.type;
7394
7395         type_t *const type_left   = skip_typeref(orig_type_left);
7396         type_t *const type_inside = skip_typeref(orig_type_inside);
7397
7398         type_t                    *return_type;
7399         array_access_expression_t *array_access = &expression->array_access;
7400         if (is_type_pointer(type_left)) {
7401                 return_type             = type_left->pointer.points_to;
7402                 array_access->array_ref = left;
7403                 array_access->index     = inside;
7404                 check_for_char_index_type(inside);
7405         } else if (is_type_pointer(type_inside)) {
7406                 return_type             = type_inside->pointer.points_to;
7407                 array_access->array_ref = inside;
7408                 array_access->index     = left;
7409                 array_access->flipped   = true;
7410                 check_for_char_index_type(left);
7411         } else {
7412                 if (is_type_valid(type_left) && is_type_valid(type_inside)) {
7413                         errorf(HERE,
7414                                 "array access on object with non-pointer types '%T', '%T'",
7415                                 orig_type_left, orig_type_inside);
7416                 }
7417                 return_type             = type_error_type;
7418                 array_access->array_ref = left;
7419                 array_access->index     = inside;
7420         }
7421
7422         expression->base.type = automatic_type_conversion(return_type);
7423
7424         rem_anchor_token(']');
7425         if (token.type == ']') {
7426                 next_token();
7427         } else {
7428                 parse_error_expected("Problem while parsing array access", ']', NULL);
7429         }
7430         return expression;
7431 }
7432
7433 static expression_t *parse_typeprop(expression_kind_t const kind)
7434 {
7435         expression_t  *tp_expression = allocate_expression_zero(kind);
7436         tp_expression->base.type     = type_size_t;
7437
7438         eat(kind == EXPR_SIZEOF ? T_sizeof : T___alignof__);
7439
7440         char const* const what = kind == EXPR_SIZEOF ? "sizeof" : "alignof";
7441
7442         /* we only refer to a type property, mark this case */
7443         bool old     = in_type_prop;
7444         in_type_prop = true;
7445
7446         type_t       *orig_type;
7447         expression_t *expression;
7448         if (token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
7449                 next_token();
7450                 add_anchor_token(')');
7451                 orig_type = parse_typename();
7452                 rem_anchor_token(')');
7453                 expect(')');
7454
7455                 if (token.type == '{') {
7456                         /* It was not sizeof(type) after all.  It is sizeof of an expression
7457                          * starting with a compound literal */
7458                         expression = parse_compound_literal(orig_type);
7459                         goto typeprop_expression;
7460                 }
7461         } else {
7462                 expression = parse_sub_expression(PREC_UNARY);
7463
7464 typeprop_expression:
7465                 tp_expression->typeprop.tp_expression = expression;
7466
7467                 orig_type = revert_automatic_type_conversion(expression);
7468                 expression->base.type = orig_type;
7469         }
7470
7471         tp_expression->typeprop.type   = orig_type;
7472         type_t const* const type       = skip_typeref(orig_type);
7473         char   const* const wrong_type =
7474                 is_type_incomplete(type)    ? "incomplete"          :
7475                 type->kind == TYPE_FUNCTION ? "function designator" :
7476                 type->kind == TYPE_BITFIELD ? "bitfield"            :
7477                 NULL;
7478         if (wrong_type != NULL) {
7479                 errorf(&tp_expression->base.source_position,
7480                                 "operand of %s expression must not be of %s type '%T'",
7481                                 what, wrong_type, orig_type);
7482         }
7483
7484 end_error:
7485         in_type_prop = old;
7486         return tp_expression;
7487 }
7488
7489 static expression_t *parse_sizeof(void)
7490 {
7491         return parse_typeprop(EXPR_SIZEOF);
7492 }
7493
7494 static expression_t *parse_alignof(void)
7495 {
7496         return parse_typeprop(EXPR_ALIGNOF);
7497 }
7498
7499 static expression_t *parse_select_expression(expression_t *compound)
7500 {
7501         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
7502         select->select.compound = compound;
7503
7504         assert(token.type == '.' || token.type == T_MINUSGREATER);
7505         bool is_pointer = (token.type == T_MINUSGREATER);
7506         next_token();
7507
7508         if (token.type != T_IDENTIFIER) {
7509                 parse_error_expected("while parsing select", T_IDENTIFIER, NULL);
7510                 return select;
7511         }
7512         symbol_t *symbol = token.v.symbol;
7513         next_token();
7514
7515         type_t *const orig_type = compound->base.type;
7516         type_t *const type      = skip_typeref(orig_type);
7517
7518         type_t *type_left;
7519         bool    saw_error = false;
7520         if (is_type_pointer(type)) {
7521                 if (!is_pointer) {
7522                         errorf(HERE,
7523                                "request for member '%Y' in something not a struct or union, but '%T'",
7524                                symbol, orig_type);
7525                         saw_error = true;
7526                 }
7527                 type_left = skip_typeref(type->pointer.points_to);
7528         } else {
7529                 if (is_pointer && is_type_valid(type)) {
7530                         errorf(HERE, "left hand side of '->' is not a pointer, but '%T'", orig_type);
7531                         saw_error = true;
7532                 }
7533                 type_left = type;
7534         }
7535
7536         entity_t *entry;
7537         if (type_left->kind == TYPE_COMPOUND_STRUCT ||
7538             type_left->kind == TYPE_COMPOUND_UNION) {
7539                 compound_t *compound = type_left->compound.compound;
7540
7541                 if (!compound->complete) {
7542                         errorf(HERE, "request for member '%Y' of incomplete type '%T'",
7543                                symbol, type_left);
7544                         goto create_error_entry;
7545                 }
7546
7547                 entry = find_compound_entry(compound, symbol);
7548                 if (entry == NULL) {
7549                         errorf(HERE, "'%T' has no member named '%Y'", orig_type, symbol);
7550                         goto create_error_entry;
7551                 }
7552         } else {
7553                 if (is_type_valid(type_left) && !saw_error) {
7554                         errorf(HERE,
7555                                "request for member '%Y' in something not a struct or union, but '%T'",
7556                                symbol, type_left);
7557                 }
7558 create_error_entry:
7559                 return create_invalid_expression();
7560         }
7561
7562         assert(is_declaration(entry));
7563         select->select.compound_entry = entry;
7564
7565         type_t *entry_type = entry->declaration.type;
7566         type_t *res_type
7567                 = get_qualified_type(entry_type, type_left->base.qualifiers);
7568
7569         /* we always do the auto-type conversions; the & and sizeof parser contains
7570          * code to revert this! */
7571         select->base.type = automatic_type_conversion(res_type);
7572
7573         type_t *skipped = skip_typeref(res_type);
7574         if (skipped->kind == TYPE_BITFIELD) {
7575                 select->base.type = skipped->bitfield.base_type;
7576         }
7577
7578         return select;
7579 }
7580
7581 static void check_call_argument(const function_parameter_t *parameter,
7582                                 call_argument_t *argument, unsigned pos)
7583 {
7584         type_t         *expected_type      = parameter->type;
7585         type_t         *expected_type_skip = skip_typeref(expected_type);
7586         assign_error_t  error              = ASSIGN_ERROR_INCOMPATIBLE;
7587         expression_t   *arg_expr           = argument->expression;
7588         type_t         *arg_type           = skip_typeref(arg_expr->base.type);
7589
7590         /* handle transparent union gnu extension */
7591         if (is_type_union(expected_type_skip)
7592                         && (expected_type_skip->base.modifiers
7593                                 & TYPE_MODIFIER_TRANSPARENT_UNION)) {
7594                 compound_t *union_decl  = expected_type_skip->compound.compound;
7595                 type_t     *best_type   = NULL;
7596                 entity_t   *entry       = union_decl->members.entities;
7597                 for ( ; entry != NULL; entry = entry->base.next) {
7598                         assert(is_declaration(entry));
7599                         type_t *decl_type = entry->declaration.type;
7600                         error = semantic_assign(decl_type, arg_expr);
7601                         if (error == ASSIGN_ERROR_INCOMPATIBLE
7602                                 || error == ASSIGN_ERROR_POINTER_QUALIFIER_MISSING)
7603                                 continue;
7604
7605                         if (error == ASSIGN_SUCCESS) {
7606                                 best_type = decl_type;
7607                         } else if (best_type == NULL) {
7608                                 best_type = decl_type;
7609                         }
7610                 }
7611
7612                 if (best_type != NULL) {
7613                         expected_type = best_type;
7614                 }
7615         }
7616
7617         error                = semantic_assign(expected_type, arg_expr);
7618         argument->expression = create_implicit_cast(argument->expression,
7619                                                     expected_type);
7620
7621         if (error != ASSIGN_SUCCESS) {
7622                 /* report exact scope in error messages (like "in argument 3") */
7623                 char buf[64];
7624                 snprintf(buf, sizeof(buf), "call argument %u", pos);
7625                 report_assign_error(error, expected_type, arg_expr,     buf,
7626                                                         &arg_expr->base.source_position);
7627         } else if (warning.traditional || warning.conversion) {
7628                 type_t *const promoted_type = get_default_promoted_type(arg_type);
7629                 if (!types_compatible(expected_type_skip, promoted_type) &&
7630                     !types_compatible(expected_type_skip, type_void_ptr) &&
7631                     !types_compatible(type_void_ptr,      promoted_type)) {
7632                         /* Deliberately show the skipped types in this warning */
7633                         warningf(&arg_expr->base.source_position,
7634                                 "passing call argument %u as '%T' rather than '%T' due to prototype",
7635                                 pos, expected_type_skip, promoted_type);
7636                 }
7637         }
7638 }
7639
7640 /**
7641  * Parse a call expression, ie. expression '( ... )'.
7642  *
7643  * @param expression  the function address
7644  */
7645 static expression_t *parse_call_expression(expression_t *expression)
7646 {
7647         expression_t      *result = allocate_expression_zero(EXPR_CALL);
7648         call_expression_t *call   = &result->call;
7649         call->function            = expression;
7650
7651         type_t *const orig_type = expression->base.type;
7652         type_t *const type      = skip_typeref(orig_type);
7653
7654         function_type_t *function_type = NULL;
7655         if (is_type_pointer(type)) {
7656                 type_t *const to_type = skip_typeref(type->pointer.points_to);
7657
7658                 if (is_type_function(to_type)) {
7659                         function_type   = &to_type->function;
7660                         call->base.type = function_type->return_type;
7661                 }
7662         }
7663
7664         if (function_type == NULL && is_type_valid(type)) {
7665                 errorf(HERE, "called object '%E' (type '%T') is not a pointer to a function", expression, orig_type);
7666         }
7667
7668         /* parse arguments */
7669         eat('(');
7670         add_anchor_token(')');
7671         add_anchor_token(',');
7672
7673         if (token.type != ')') {
7674                 call_argument_t *last_argument = NULL;
7675
7676                 while (true) {
7677                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
7678
7679                         argument->expression = parse_assignment_expression();
7680                         if (last_argument == NULL) {
7681                                 call->arguments = argument;
7682                         } else {
7683                                 last_argument->next = argument;
7684                         }
7685                         last_argument = argument;
7686
7687                         if (token.type != ',')
7688                                 break;
7689                         next_token();
7690                 }
7691         }
7692         rem_anchor_token(',');
7693         rem_anchor_token(')');
7694         expect(')');
7695
7696         if (function_type == NULL)
7697                 return result;
7698
7699         function_parameter_t *parameter = function_type->parameters;
7700         call_argument_t      *argument  = call->arguments;
7701         if (!function_type->unspecified_parameters) {
7702                 for (unsigned pos = 0; parameter != NULL && argument != NULL;
7703                                 parameter = parameter->next, argument = argument->next) {
7704                         check_call_argument(parameter, argument, ++pos);
7705                 }
7706
7707                 if (parameter != NULL) {
7708                         errorf(HERE, "too few arguments to function '%E'", expression);
7709                 } else if (argument != NULL && !function_type->variadic) {
7710                         errorf(HERE, "too many arguments to function '%E'", expression);
7711                 }
7712         }
7713
7714         /* do default promotion */
7715         for( ; argument != NULL; argument = argument->next) {
7716                 type_t *type = argument->expression->base.type;
7717
7718                 type = get_default_promoted_type(type);
7719
7720                 argument->expression
7721                         = create_implicit_cast(argument->expression, type);
7722         }
7723
7724         check_format(&result->call);
7725
7726         if (warning.aggregate_return &&
7727             is_type_compound(skip_typeref(function_type->return_type))) {
7728                 warningf(&result->base.source_position,
7729                          "function call has aggregate value");
7730         }
7731
7732 end_error:
7733         return result;
7734 }
7735
7736 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
7737
7738 static bool same_compound_type(const type_t *type1, const type_t *type2)
7739 {
7740         return
7741                 is_type_compound(type1) &&
7742                 type1->kind == type2->kind &&
7743                 type1->compound.compound == type2->compound.compound;
7744 }
7745
7746 /**
7747  * Parse a conditional expression, ie. 'expression ? ... : ...'.
7748  *
7749  * @param expression  the conditional expression
7750  */
7751 static expression_t *parse_conditional_expression(expression_t *expression)
7752 {
7753         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
7754
7755         conditional_expression_t *conditional = &result->conditional;
7756         conditional->condition                = expression;
7757
7758         eat('?');
7759         add_anchor_token(':');
7760
7761         /* 6.5.15.2 */
7762         type_t *const condition_type_orig = expression->base.type;
7763         type_t *const condition_type      = skip_typeref(condition_type_orig);
7764         if (!is_type_scalar(condition_type) && is_type_valid(condition_type)) {
7765                 type_error("expected a scalar type in conditional condition",
7766                            &expression->base.source_position, condition_type_orig);
7767         }
7768
7769         expression_t *true_expression = expression;
7770         bool          gnu_cond = false;
7771         if (GNU_MODE && token.type == ':') {
7772                 gnu_cond = true;
7773         } else {
7774                 true_expression = parse_expression();
7775         }
7776         rem_anchor_token(':');
7777         expect(':');
7778         expression_t *false_expression =
7779                 parse_sub_expression(c_mode & _CXX ? PREC_ASSIGNMENT : PREC_CONDITIONAL);
7780
7781         type_t *const orig_true_type  = true_expression->base.type;
7782         type_t *const orig_false_type = false_expression->base.type;
7783         type_t *const true_type       = skip_typeref(orig_true_type);
7784         type_t *const false_type      = skip_typeref(orig_false_type);
7785
7786         /* 6.5.15.3 */
7787         type_t *result_type;
7788         if (is_type_atomic(true_type,  ATOMIC_TYPE_VOID) ||
7789                         is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
7790                 /* ISO/IEC 14882:1998(E) Â§5.16:2 */
7791                 if (true_expression->kind == EXPR_UNARY_THROW) {
7792                         result_type = false_type;
7793                 } else if (false_expression->kind == EXPR_UNARY_THROW) {
7794                         result_type = true_type;
7795                 } else {
7796                         if (warning.other && (
7797                                                 !is_type_atomic(true_type,  ATOMIC_TYPE_VOID) ||
7798                                                 !is_type_atomic(false_type, ATOMIC_TYPE_VOID)
7799                                         )) {
7800                                 warningf(&conditional->base.source_position,
7801                                                 "ISO C forbids conditional expression with only one void side");
7802                         }
7803                         result_type = type_void;
7804                 }
7805         } else if (is_type_arithmetic(true_type)
7806                    && is_type_arithmetic(false_type)) {
7807                 result_type = semantic_arithmetic(true_type, false_type);
7808
7809                 true_expression  = create_implicit_cast(true_expression, result_type);
7810                 false_expression = create_implicit_cast(false_expression, result_type);
7811
7812                 conditional->true_expression  = true_expression;
7813                 conditional->false_expression = false_expression;
7814                 conditional->base.type        = result_type;
7815         } else if (same_compound_type(true_type, false_type)) {
7816                 /* just take 1 of the 2 types */
7817                 result_type = true_type;
7818         } else if (is_type_pointer(true_type) || is_type_pointer(false_type)) {
7819                 type_t *pointer_type;
7820                 type_t *other_type;
7821                 expression_t *other_expression;
7822                 if (is_type_pointer(true_type) &&
7823                                 (!is_type_pointer(false_type) || is_null_pointer_constant(false_expression))) {
7824                         pointer_type     = true_type;
7825                         other_type       = false_type;
7826                         other_expression = false_expression;
7827                 } else {
7828                         pointer_type     = false_type;
7829                         other_type       = true_type;
7830                         other_expression = true_expression;
7831                 }
7832
7833                 if (is_null_pointer_constant(other_expression)) {
7834                         result_type = pointer_type;
7835                 } else if (is_type_pointer(other_type)) {
7836                         type_t *to1 = skip_typeref(pointer_type->pointer.points_to);
7837                         type_t *to2 = skip_typeref(other_type->pointer.points_to);
7838
7839                         type_t *to;
7840                         if (is_type_atomic(to1, ATOMIC_TYPE_VOID) ||
7841                             is_type_atomic(to2, ATOMIC_TYPE_VOID)) {
7842                                 to = type_void;
7843                         } else if (types_compatible(get_unqualified_type(to1),
7844                                                     get_unqualified_type(to2))) {
7845                                 to = to1;
7846                         } else {
7847                                 if (warning.other) {
7848                                         warningf(&conditional->base.source_position,
7849                                                         "pointer types '%T' and '%T' in conditional expression are incompatible",
7850                                                         true_type, false_type);
7851                                 }
7852                                 to = type_void;
7853                         }
7854
7855                         type_t *const type =
7856                                 get_qualified_type(to, to1->base.qualifiers | to2->base.qualifiers);
7857                         result_type = make_pointer_type(type, TYPE_QUALIFIER_NONE);
7858                 } else if (is_type_integer(other_type)) {
7859                         if (warning.other) {
7860                                 warningf(&conditional->base.source_position,
7861                                                 "pointer/integer type mismatch in conditional expression ('%T' and '%T')", true_type, false_type);
7862                         }
7863                         result_type = pointer_type;
7864                 } else {
7865                         if (is_type_valid(other_type)) {
7866                                 type_error_incompatible("while parsing conditional",
7867                                                 &expression->base.source_position, true_type, false_type);
7868                         }
7869                         result_type = type_error_type;
7870                 }
7871         } else {
7872                 if (is_type_valid(true_type) && is_type_valid(false_type)) {
7873                         type_error_incompatible("while parsing conditional",
7874                                                 &conditional->base.source_position, true_type,
7875                                                 false_type);
7876                 }
7877                 result_type = type_error_type;
7878         }
7879
7880         conditional->true_expression
7881                 = gnu_cond ? NULL : create_implicit_cast(true_expression, result_type);
7882         conditional->false_expression
7883                 = create_implicit_cast(false_expression, result_type);
7884         conditional->base.type = result_type;
7885         return result;
7886 end_error:
7887         return create_invalid_expression();
7888 }
7889
7890 /**
7891  * Parse an extension expression.
7892  */
7893 static expression_t *parse_extension(void)
7894 {
7895         eat(T___extension__);
7896
7897         bool old_gcc_extension   = in_gcc_extension;
7898         in_gcc_extension         = true;
7899         expression_t *expression = parse_sub_expression(PREC_UNARY);
7900         in_gcc_extension         = old_gcc_extension;
7901         return expression;
7902 }
7903
7904 /**
7905  * Parse a __builtin_classify_type() expression.
7906  */
7907 static expression_t *parse_builtin_classify_type(void)
7908 {
7909         expression_t *result = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
7910         result->base.type    = type_int;
7911
7912         eat(T___builtin_classify_type);
7913
7914         expect('(');
7915         add_anchor_token(')');
7916         expression_t *expression = parse_expression();
7917         rem_anchor_token(')');
7918         expect(')');
7919         result->classify_type.type_expression = expression;
7920
7921         return result;
7922 end_error:
7923         return create_invalid_expression();
7924 }
7925
7926 /**
7927  * Parse a delete expression
7928  * ISO/IEC 14882:1998(E) Â§5.3.5
7929  */
7930 static expression_t *parse_delete(void)
7931 {
7932         expression_t *const result = allocate_expression_zero(EXPR_UNARY_DELETE);
7933         result->base.type          = type_void;
7934
7935         eat(T_delete);
7936
7937         if (token.type == '[') {
7938                 next_token();
7939                 result->kind = EXPR_UNARY_DELETE_ARRAY;
7940                 expect(']');
7941 end_error:;
7942         }
7943
7944         expression_t *const value = parse_sub_expression(PREC_CAST);
7945         result->unary.value = value;
7946
7947         type_t *const type = skip_typeref(value->base.type);
7948         if (!is_type_pointer(type)) {
7949                 errorf(&value->base.source_position,
7950                                 "operand of delete must have pointer type");
7951         } else if (warning.other &&
7952                         is_type_atomic(skip_typeref(type->pointer.points_to), ATOMIC_TYPE_VOID)) {
7953                 warningf(&value->base.source_position,
7954                                 "deleting 'void*' is undefined");
7955         }
7956
7957         return result;
7958 }
7959
7960 /**
7961  * Parse a throw expression
7962  * ISO/IEC 14882:1998(E) Â§15:1
7963  */
7964 static expression_t *parse_throw(void)
7965 {
7966         expression_t *const result = allocate_expression_zero(EXPR_UNARY_THROW);
7967         result->base.type          = type_void;
7968
7969         eat(T_throw);
7970
7971         expression_t *value = NULL;
7972         switch (token.type) {
7973                 EXPRESSION_START {
7974                         value = parse_assignment_expression();
7975                         /* ISO/IEC 14882:1998(E) Â§15.1:3 */
7976                         type_t *const orig_type = value->base.type;
7977                         type_t *const type      = skip_typeref(orig_type);
7978                         if (is_type_incomplete(type)) {
7979                                 errorf(&value->base.source_position,
7980                                                 "cannot throw object of incomplete type '%T'", orig_type);
7981                         } else if (is_type_pointer(type)) {
7982                                 type_t *const points_to = skip_typeref(type->pointer.points_to);
7983                                 if (is_type_incomplete(points_to) &&
7984                                                 !is_type_atomic(points_to, ATOMIC_TYPE_VOID)) {
7985                                         errorf(&value->base.source_position,
7986                                                         "cannot throw pointer to incomplete type '%T'", orig_type);
7987                                 }
7988                         }
7989                 }
7990
7991                 default:
7992                         break;
7993         }
7994         result->unary.value = value;
7995
7996         return result;
7997 }
7998
7999 static bool check_pointer_arithmetic(const source_position_t *source_position,
8000                                      type_t *pointer_type,
8001                                      type_t *orig_pointer_type)
8002 {
8003         type_t *points_to = pointer_type->pointer.points_to;
8004         points_to = skip_typeref(points_to);
8005
8006         if (is_type_incomplete(points_to)) {
8007                 if (!GNU_MODE || !is_type_atomic(points_to, ATOMIC_TYPE_VOID)) {
8008                         errorf(source_position,
8009                                "arithmetic with pointer to incomplete type '%T' not allowed",
8010                                orig_pointer_type);
8011                         return false;
8012                 } else if (warning.pointer_arith) {
8013                         warningf(source_position,
8014                                  "pointer of type '%T' used in arithmetic",
8015                                  orig_pointer_type);
8016                 }
8017         } else if (is_type_function(points_to)) {
8018                 if (!GNU_MODE) {
8019                         errorf(source_position,
8020                                "arithmetic with pointer to function type '%T' not allowed",
8021                                orig_pointer_type);
8022                         return false;
8023                 } else if (warning.pointer_arith) {
8024                         warningf(source_position,
8025                                  "pointer to a function '%T' used in arithmetic",
8026                                  orig_pointer_type);
8027                 }
8028         }
8029         return true;
8030 }
8031
8032 static bool is_lvalue(const expression_t *expression)
8033 {
8034         /* TODO: doesn't seem to be consistent with Â§6.3.2.1 (1) */
8035         switch (expression->kind) {
8036         case EXPR_REFERENCE:
8037         case EXPR_ARRAY_ACCESS:
8038         case EXPR_SELECT:
8039         case EXPR_UNARY_DEREFERENCE:
8040                 return true;
8041
8042         default:
8043                 /* Claim it is an lvalue, if the type is invalid.  There was a parse
8044                  * error before, which maybe prevented properly recognizing it as
8045                  * lvalue. */
8046                 return !is_type_valid(skip_typeref(expression->base.type));
8047         }
8048 }
8049
8050 static void semantic_incdec(unary_expression_t *expression)
8051 {
8052         type_t *const orig_type = expression->value->base.type;
8053         type_t *const type      = skip_typeref(orig_type);
8054         if (is_type_pointer(type)) {
8055                 if (!check_pointer_arithmetic(&expression->base.source_position,
8056                                               type, orig_type)) {
8057                         return;
8058                 }
8059         } else if (!is_type_real(type) && is_type_valid(type)) {
8060                 /* TODO: improve error message */
8061                 errorf(&expression->base.source_position,
8062                        "operation needs an arithmetic or pointer type");
8063                 return;
8064         }
8065         if (!is_lvalue(expression->value)) {
8066                 /* TODO: improve error message */
8067                 errorf(&expression->base.source_position, "lvalue required as operand");
8068         }
8069         expression->base.type = orig_type;
8070 }
8071
8072 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
8073 {
8074         type_t *const orig_type = expression->value->base.type;
8075         type_t *const type      = skip_typeref(orig_type);
8076         if (!is_type_arithmetic(type)) {
8077                 if (is_type_valid(type)) {
8078                         /* TODO: improve error message */
8079                         errorf(&expression->base.source_position,
8080                                 "operation needs an arithmetic type");
8081                 }
8082                 return;
8083         }
8084
8085         expression->base.type = orig_type;
8086 }
8087
8088 static void semantic_unexpr_plus(unary_expression_t *expression)
8089 {
8090         semantic_unexpr_arithmetic(expression);
8091         if (warning.traditional)
8092                 warningf(&expression->base.source_position,
8093                         "traditional C rejects the unary plus operator");
8094 }
8095
8096 static expression_t const *get_reference_address(expression_t const *expr)
8097 {
8098         bool regular_take_address = true;
8099         for (;;) {
8100                 if (expr->kind == EXPR_UNARY_TAKE_ADDRESS) {
8101                         expr = expr->unary.value;
8102                 } else {
8103                         regular_take_address = false;
8104                 }
8105
8106                 if (expr->kind != EXPR_UNARY_DEREFERENCE)
8107                         break;
8108
8109                 expr = expr->unary.value;
8110         }
8111
8112         /* special case for functions which are automatically converted to a
8113          * pointer to function without an extra TAKE_ADDRESS operation */
8114         if (!regular_take_address && expr->kind == EXPR_REFERENCE
8115                         && expr->reference.entity->kind == ENTITY_FUNCTION) {
8116                 return expr;
8117         }
8118
8119         return NULL;
8120 }
8121
8122 static void warn_function_address_as_bool(expression_t const* expr)
8123 {
8124         if (!warning.address)
8125                 return;
8126
8127         expr = get_reference_address(expr);
8128         if (expr != NULL) {
8129                 warningf(&expr->base.source_position,
8130                          "the address of '%Y' will always evaluate as 'true'",
8131                          expr->reference.entity->base.symbol);
8132         }
8133 }
8134
8135 static void semantic_not(unary_expression_t *expression)
8136 {
8137         type_t *const orig_type = expression->value->base.type;
8138         type_t *const type      = skip_typeref(orig_type);
8139         if (!is_type_scalar(type) && is_type_valid(type)) {
8140                 errorf(&expression->base.source_position,
8141                        "operand of ! must be of scalar type");
8142         }
8143
8144         warn_function_address_as_bool(expression->value);
8145
8146         expression->base.type = type_int;
8147 }
8148
8149 static void semantic_unexpr_integer(unary_expression_t *expression)
8150 {
8151         type_t *const orig_type = expression->value->base.type;
8152         type_t *const type      = skip_typeref(orig_type);
8153         if (!is_type_integer(type)) {
8154                 if (is_type_valid(type)) {
8155                         errorf(&expression->base.source_position,
8156                                "operand of ~ must be of integer type");
8157                 }
8158                 return;
8159         }
8160
8161         expression->base.type = orig_type;
8162 }
8163
8164 static void semantic_dereference(unary_expression_t *expression)
8165 {
8166         type_t *const orig_type = expression->value->base.type;
8167         type_t *const type      = skip_typeref(orig_type);
8168         if (!is_type_pointer(type)) {
8169                 if (is_type_valid(type)) {
8170                         errorf(&expression->base.source_position,
8171                                "Unary '*' needs pointer or array type, but type '%T' given", orig_type);
8172                 }
8173                 return;
8174         }
8175
8176         type_t *result_type   = type->pointer.points_to;
8177         result_type           = automatic_type_conversion(result_type);
8178         expression->base.type = result_type;
8179 }
8180
8181 /**
8182  * Record that an address is taken (expression represents an lvalue).
8183  *
8184  * @param expression       the expression
8185  * @param may_be_register  if true, the expression might be an register
8186  */
8187 static void set_address_taken(expression_t *expression, bool may_be_register)
8188 {
8189         if (expression->kind != EXPR_REFERENCE)
8190                 return;
8191
8192         entity_t *const entity = expression->reference.entity;
8193
8194         if (entity->kind != ENTITY_VARIABLE)
8195                 return;
8196
8197         if (entity->declaration.storage_class == STORAGE_CLASS_REGISTER
8198                         && !may_be_register) {
8199                 errorf(&expression->base.source_position,
8200                                 "address of register variable '%Y' requested",
8201                                 entity->base.symbol);
8202         }
8203
8204         entity->variable.address_taken = true;
8205 }
8206
8207 /**
8208  * Check the semantic of the address taken expression.
8209  */
8210 static void semantic_take_addr(unary_expression_t *expression)
8211 {
8212         expression_t *value = expression->value;
8213         value->base.type    = revert_automatic_type_conversion(value);
8214
8215         type_t *orig_type = value->base.type;
8216         type_t *type      = skip_typeref(orig_type);
8217         if (!is_type_valid(type))
8218                 return;
8219
8220         /* Â§6.5.3.2 */
8221         if (value->kind != EXPR_ARRAY_ACCESS
8222                         && value->kind != EXPR_UNARY_DEREFERENCE
8223                         && !is_lvalue(value)) {
8224                 errorf(&expression->base.source_position,
8225                        "'&' requires an lvalue");
8226         }
8227         if (type->kind == TYPE_BITFIELD) {
8228                 errorf(&expression->base.source_position,
8229                        "'&' not allowed on object with bitfield type '%T'",
8230                        type);
8231         }
8232
8233         set_address_taken(value, false);
8234
8235         expression->base.type = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
8236 }
8237
8238 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc) \
8239 static expression_t *parse_##unexpression_type(void)                         \
8240 {                                                                            \
8241         expression_t *unary_expression                                           \
8242                 = allocate_expression_zero(unexpression_type);                       \
8243         eat(token_type);                                                         \
8244         unary_expression->unary.value = parse_sub_expression(PREC_UNARY);        \
8245                                                                                  \
8246         sfunc(&unary_expression->unary);                                         \
8247                                                                                  \
8248         return unary_expression;                                                 \
8249 }
8250
8251 CREATE_UNARY_EXPRESSION_PARSER('-', EXPR_UNARY_NEGATE,
8252                                semantic_unexpr_arithmetic)
8253 CREATE_UNARY_EXPRESSION_PARSER('+', EXPR_UNARY_PLUS,
8254                                semantic_unexpr_plus)
8255 CREATE_UNARY_EXPRESSION_PARSER('!', EXPR_UNARY_NOT,
8256                                semantic_not)
8257 CREATE_UNARY_EXPRESSION_PARSER('*', EXPR_UNARY_DEREFERENCE,
8258                                semantic_dereference)
8259 CREATE_UNARY_EXPRESSION_PARSER('&', EXPR_UNARY_TAKE_ADDRESS,
8260                                semantic_take_addr)
8261 CREATE_UNARY_EXPRESSION_PARSER('~', EXPR_UNARY_BITWISE_NEGATE,
8262                                semantic_unexpr_integer)
8263 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   EXPR_UNARY_PREFIX_INCREMENT,
8264                                semantic_incdec)
8265 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, EXPR_UNARY_PREFIX_DECREMENT,
8266                                semantic_incdec)
8267
8268 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
8269                                                sfunc)                         \
8270 static expression_t *parse_##unexpression_type(expression_t *left)            \
8271 {                                                                             \
8272         expression_t *unary_expression                                            \
8273                 = allocate_expression_zero(unexpression_type);                        \
8274         eat(token_type);                                                          \
8275         unary_expression->unary.value = left;                                     \
8276                                                                                   \
8277         sfunc(&unary_expression->unary);                                          \
8278                                                                               \
8279         return unary_expression;                                                  \
8280 }
8281
8282 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,
8283                                        EXPR_UNARY_POSTFIX_INCREMENT,
8284                                        semantic_incdec)
8285 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS,
8286                                        EXPR_UNARY_POSTFIX_DECREMENT,
8287                                        semantic_incdec)
8288
8289 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
8290 {
8291         /* TODO: handle complex + imaginary types */
8292
8293         type_left  = get_unqualified_type(type_left);
8294         type_right = get_unqualified_type(type_right);
8295
8296         /* Â§ 6.3.1.8 Usual arithmetic conversions */
8297         if (type_left == type_long_double || type_right == type_long_double) {
8298                 return type_long_double;
8299         } else if (type_left == type_double || type_right == type_double) {
8300                 return type_double;
8301         } else if (type_left == type_float || type_right == type_float) {
8302                 return type_float;
8303         }
8304
8305         type_left  = promote_integer(type_left);
8306         type_right = promote_integer(type_right);
8307
8308         if (type_left == type_right)
8309                 return type_left;
8310
8311         bool const signed_left  = is_type_signed(type_left);
8312         bool const signed_right = is_type_signed(type_right);
8313         int const  rank_left    = get_rank(type_left);
8314         int const  rank_right   = get_rank(type_right);
8315
8316         if (signed_left == signed_right)
8317                 return rank_left >= rank_right ? type_left : type_right;
8318
8319         int     s_rank;
8320         int     u_rank;
8321         type_t *s_type;
8322         type_t *u_type;
8323         if (signed_left) {
8324                 s_rank = rank_left;
8325                 s_type = type_left;
8326                 u_rank = rank_right;
8327                 u_type = type_right;
8328         } else {
8329                 s_rank = rank_right;
8330                 s_type = type_right;
8331                 u_rank = rank_left;
8332                 u_type = type_left;
8333         }
8334
8335         if (u_rank >= s_rank)
8336                 return u_type;
8337
8338         /* casting rank to atomic_type_kind is a bit hacky, but makes things
8339          * easier here... */
8340         if (get_atomic_type_size((atomic_type_kind_t) s_rank)
8341                         > get_atomic_type_size((atomic_type_kind_t) u_rank))
8342                 return s_type;
8343
8344         switch (s_rank) {
8345                 case ATOMIC_TYPE_INT:      return type_unsigned_int;
8346                 case ATOMIC_TYPE_LONG:     return type_unsigned_long;
8347                 case ATOMIC_TYPE_LONGLONG: return type_unsigned_long_long;
8348
8349                 default: panic("invalid atomic type");
8350         }
8351 }
8352
8353 /**
8354  * Check the semantic restrictions for a binary expression.
8355  */
8356 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
8357 {
8358         expression_t *const left            = expression->left;
8359         expression_t *const right           = expression->right;
8360         type_t       *const orig_type_left  = left->base.type;
8361         type_t       *const orig_type_right = right->base.type;
8362         type_t       *const type_left       = skip_typeref(orig_type_left);
8363         type_t       *const type_right      = skip_typeref(orig_type_right);
8364
8365         if (!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
8366                 /* TODO: improve error message */
8367                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
8368                         errorf(&expression->base.source_position,
8369                                "operation needs arithmetic types");
8370                 }
8371                 return;
8372         }
8373
8374         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
8375         expression->left      = create_implicit_cast(left, arithmetic_type);
8376         expression->right     = create_implicit_cast(right, arithmetic_type);
8377         expression->base.type = arithmetic_type;
8378 }
8379
8380 static void warn_div_by_zero(binary_expression_t const *const expression)
8381 {
8382         if (!warning.div_by_zero ||
8383             !is_type_integer(expression->base.type))
8384                 return;
8385
8386         expression_t const *const right = expression->right;
8387         /* The type of the right operand can be different for /= */
8388         if (is_type_integer(right->base.type) &&
8389             is_constant_expression(right)     &&
8390             fold_constant(right) == 0) {
8391                 warningf(&expression->base.source_position, "division by zero");
8392         }
8393 }
8394
8395 /**
8396  * Check the semantic restrictions for a div/mod expression.
8397  */
8398 static void semantic_divmod_arithmetic(binary_expression_t *expression) {
8399         semantic_binexpr_arithmetic(expression);
8400         warn_div_by_zero(expression);
8401 }
8402
8403 static void semantic_shift_op(binary_expression_t *expression)
8404 {
8405         expression_t *const left            = expression->left;
8406         expression_t *const right           = expression->right;
8407         type_t       *const orig_type_left  = left->base.type;
8408         type_t       *const orig_type_right = right->base.type;
8409         type_t       *      type_left       = skip_typeref(orig_type_left);
8410         type_t       *      type_right      = skip_typeref(orig_type_right);
8411
8412         if (!is_type_integer(type_left) || !is_type_integer(type_right)) {
8413                 /* TODO: improve error message */
8414                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
8415                         errorf(&expression->base.source_position,
8416                                "operands of shift operation must have integer types");
8417                 }
8418                 return;
8419         }
8420
8421         type_left  = promote_integer(type_left);
8422         type_right = promote_integer(type_right);
8423
8424         expression->left      = create_implicit_cast(left, type_left);
8425         expression->right     = create_implicit_cast(right, type_right);
8426         expression->base.type = type_left;
8427 }
8428
8429 static void semantic_add(binary_expression_t *expression)
8430 {
8431         expression_t *const left            = expression->left;
8432         expression_t *const right           = expression->right;
8433         type_t       *const orig_type_left  = left->base.type;
8434         type_t       *const orig_type_right = right->base.type;
8435         type_t       *const type_left       = skip_typeref(orig_type_left);
8436         type_t       *const type_right      = skip_typeref(orig_type_right);
8437
8438         /* Â§ 6.5.6 */
8439         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
8440                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
8441                 expression->left  = create_implicit_cast(left, arithmetic_type);
8442                 expression->right = create_implicit_cast(right, arithmetic_type);
8443                 expression->base.type = arithmetic_type;
8444                 return;
8445         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
8446                 check_pointer_arithmetic(&expression->base.source_position,
8447                                          type_left, orig_type_left);
8448                 expression->base.type = type_left;
8449         } else if (is_type_pointer(type_right) && is_type_integer(type_left)) {
8450                 check_pointer_arithmetic(&expression->base.source_position,
8451                                          type_right, orig_type_right);
8452                 expression->base.type = type_right;
8453         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
8454                 errorf(&expression->base.source_position,
8455                        "invalid operands to binary + ('%T', '%T')",
8456                        orig_type_left, orig_type_right);
8457         }
8458 }
8459
8460 static void semantic_sub(binary_expression_t *expression)
8461 {
8462         expression_t            *const left            = expression->left;
8463         expression_t            *const right           = expression->right;
8464         type_t                  *const orig_type_left  = left->base.type;
8465         type_t                  *const orig_type_right = right->base.type;
8466         type_t                  *const type_left       = skip_typeref(orig_type_left);
8467         type_t                  *const type_right      = skip_typeref(orig_type_right);
8468         source_position_t const *const pos             = &expression->base.source_position;
8469
8470         /* Â§ 5.6.5 */
8471         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
8472                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
8473                 expression->left        = create_implicit_cast(left, arithmetic_type);
8474                 expression->right       = create_implicit_cast(right, arithmetic_type);
8475                 expression->base.type =  arithmetic_type;
8476                 return;
8477         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
8478                 check_pointer_arithmetic(&expression->base.source_position,
8479                                          type_left, orig_type_left);
8480                 expression->base.type = type_left;
8481         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
8482                 type_t *const unqual_left  = get_unqualified_type(skip_typeref(type_left->pointer.points_to));
8483                 type_t *const unqual_right = get_unqualified_type(skip_typeref(type_right->pointer.points_to));
8484                 if (!types_compatible(unqual_left, unqual_right)) {
8485                         errorf(pos,
8486                                "subtracting pointers to incompatible types '%T' and '%T'",
8487                                orig_type_left, orig_type_right);
8488                 } else if (!is_type_object(unqual_left)) {
8489                         if (!is_type_atomic(unqual_left, ATOMIC_TYPE_VOID)) {
8490                                 errorf(pos, "subtracting pointers to non-object types '%T'",
8491                                        orig_type_left);
8492                         } else if (warning.other) {
8493                                 warningf(pos, "subtracting pointers to void");
8494                         }
8495                 }
8496                 expression->base.type = type_ptrdiff_t;
8497         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
8498                 errorf(pos, "invalid operands of types '%T' and '%T' to binary '-'",
8499                        orig_type_left, orig_type_right);
8500         }
8501 }
8502
8503 static void warn_string_literal_address(expression_t const* expr)
8504 {
8505         while (expr->kind == EXPR_UNARY_TAKE_ADDRESS) {
8506                 expr = expr->unary.value;
8507                 if (expr->kind != EXPR_UNARY_DEREFERENCE)
8508                         return;
8509                 expr = expr->unary.value;
8510         }
8511
8512         if (expr->kind == EXPR_STRING_LITERAL ||
8513             expr->kind == EXPR_WIDE_STRING_LITERAL) {
8514                 warningf(&expr->base.source_position,
8515                         "comparison with string literal results in unspecified behaviour");
8516         }
8517 }
8518
8519 /**
8520  * Check the semantics of comparison expressions.
8521  *
8522  * @param expression   The expression to check.
8523  */
8524 static void semantic_comparison(binary_expression_t *expression)
8525 {
8526         expression_t *left  = expression->left;
8527         expression_t *right = expression->right;
8528
8529         if (warning.address) {
8530                 warn_string_literal_address(left);
8531                 warn_string_literal_address(right);
8532
8533                 expression_t const* const func_left = get_reference_address(left);
8534                 if (func_left != NULL && is_null_pointer_constant(right)) {
8535                         warningf(&expression->base.source_position,
8536                                  "the address of '%Y' will never be NULL",
8537                                  func_left->reference.entity->base.symbol);
8538                 }
8539
8540                 expression_t const* const func_right = get_reference_address(right);
8541                 if (func_right != NULL && is_null_pointer_constant(right)) {
8542                         warningf(&expression->base.source_position,
8543                                  "the address of '%Y' will never be NULL",
8544                                  func_right->reference.entity->base.symbol);
8545                 }
8546         }
8547
8548         type_t *orig_type_left  = left->base.type;
8549         type_t *orig_type_right = right->base.type;
8550         type_t *type_left       = skip_typeref(orig_type_left);
8551         type_t *type_right      = skip_typeref(orig_type_right);
8552
8553         /* TODO non-arithmetic types */
8554         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
8555                 /* test for signed vs unsigned compares */
8556                 if (warning.sign_compare &&
8557                     (expression->base.kind != EXPR_BINARY_EQUAL &&
8558                      expression->base.kind != EXPR_BINARY_NOTEQUAL) &&
8559                     (is_type_signed(type_left) != is_type_signed(type_right))) {
8560
8561                         /* check if 1 of the operands is a constant, in this case we just
8562                          * check wether we can safely represent the resulting constant in
8563                          * the type of the other operand. */
8564                         expression_t *const_expr = NULL;
8565                         expression_t *other_expr = NULL;
8566
8567                         if (is_constant_expression(left)) {
8568                                 const_expr = left;
8569                                 other_expr = right;
8570                         } else if (is_constant_expression(right)) {
8571                                 const_expr = right;
8572                                 other_expr = left;
8573                         }
8574
8575                         if (const_expr != NULL) {
8576                                 type_t *other_type = skip_typeref(other_expr->base.type);
8577                                 long    val        = fold_constant(const_expr);
8578                                 /* TODO: check if val can be represented by other_type */
8579                                 (void) other_type;
8580                                 (void) val;
8581                         }
8582                         warningf(&expression->base.source_position,
8583                                  "comparison between signed and unsigned");
8584                 }
8585                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
8586                 expression->left        = create_implicit_cast(left, arithmetic_type);
8587                 expression->right       = create_implicit_cast(right, arithmetic_type);
8588                 expression->base.type   = arithmetic_type;
8589                 if (warning.float_equal &&
8590                     (expression->base.kind == EXPR_BINARY_EQUAL ||
8591                      expression->base.kind == EXPR_BINARY_NOTEQUAL) &&
8592                     is_type_float(arithmetic_type)) {
8593                         warningf(&expression->base.source_position,
8594                                  "comparing floating point with == or != is unsafe");
8595                 }
8596         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
8597                 /* TODO check compatibility */
8598         } else if (is_type_pointer(type_left)) {
8599                 expression->right = create_implicit_cast(right, type_left);
8600         } else if (is_type_pointer(type_right)) {
8601                 expression->left = create_implicit_cast(left, type_right);
8602         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
8603                 type_error_incompatible("invalid operands in comparison",
8604                                         &expression->base.source_position,
8605                                         type_left, type_right);
8606         }
8607         expression->base.type = type_int;
8608 }
8609
8610 /**
8611  * Checks if a compound type has constant fields.
8612  */
8613 static bool has_const_fields(const compound_type_t *type)
8614 {
8615         compound_t *compound = type->compound;
8616         entity_t   *entry    = compound->members.entities;
8617
8618         for (; entry != NULL; entry = entry->base.next) {
8619                 if (!is_declaration(entry))
8620                         continue;
8621
8622                 const type_t *decl_type = skip_typeref(entry->declaration.type);
8623                 if (decl_type->base.qualifiers & TYPE_QUALIFIER_CONST)
8624                         return true;
8625         }
8626
8627         return false;
8628 }
8629
8630 static bool is_valid_assignment_lhs(expression_t const* const left)
8631 {
8632         type_t *const orig_type_left = revert_automatic_type_conversion(left);
8633         type_t *const type_left      = skip_typeref(orig_type_left);
8634
8635         if (!is_lvalue(left)) {
8636                 errorf(HERE, "left hand side '%E' of assignment is not an lvalue",
8637                        left);
8638                 return false;
8639         }
8640
8641         if (is_type_array(type_left)) {
8642                 errorf(HERE, "cannot assign to arrays ('%E')", left);
8643                 return false;
8644         }
8645         if (type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
8646                 errorf(HERE, "assignment to readonly location '%E' (type '%T')", left,
8647                        orig_type_left);
8648                 return false;
8649         }
8650         if (is_type_incomplete(type_left)) {
8651                 errorf(HERE, "left-hand side '%E' of assignment has incomplete type '%T'",
8652                        left, orig_type_left);
8653                 return false;
8654         }
8655         if (is_type_compound(type_left) && has_const_fields(&type_left->compound)) {
8656                 errorf(HERE, "cannot assign to '%E' because compound type '%T' has readonly fields",
8657                        left, orig_type_left);
8658                 return false;
8659         }
8660
8661         return true;
8662 }
8663
8664 static void semantic_arithmetic_assign(binary_expression_t *expression)
8665 {
8666         expression_t *left            = expression->left;
8667         expression_t *right           = expression->right;
8668         type_t       *orig_type_left  = left->base.type;
8669         type_t       *orig_type_right = right->base.type;
8670
8671         if (!is_valid_assignment_lhs(left))
8672                 return;
8673
8674         type_t *type_left  = skip_typeref(orig_type_left);
8675         type_t *type_right = skip_typeref(orig_type_right);
8676
8677         if (!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
8678                 /* TODO: improve error message */
8679                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
8680                         errorf(&expression->base.source_position,
8681                                "operation needs arithmetic types");
8682                 }
8683                 return;
8684         }
8685
8686         /* combined instructions are tricky. We can't create an implicit cast on
8687          * the left side, because we need the uncasted form for the store.
8688          * The ast2firm pass has to know that left_type must be right_type
8689          * for the arithmetic operation and create a cast by itself */
8690         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
8691         expression->right       = create_implicit_cast(right, arithmetic_type);
8692         expression->base.type   = type_left;
8693 }
8694
8695 static void semantic_divmod_assign(binary_expression_t *expression)
8696 {
8697         semantic_arithmetic_assign(expression);
8698         warn_div_by_zero(expression);
8699 }
8700
8701 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
8702 {
8703         expression_t *const left            = expression->left;
8704         expression_t *const right           = expression->right;
8705         type_t       *const orig_type_left  = left->base.type;
8706         type_t       *const orig_type_right = right->base.type;
8707         type_t       *const type_left       = skip_typeref(orig_type_left);
8708         type_t       *const type_right      = skip_typeref(orig_type_right);
8709
8710         if (!is_valid_assignment_lhs(left))
8711                 return;
8712
8713         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
8714                 /* combined instructions are tricky. We can't create an implicit cast on
8715                  * the left side, because we need the uncasted form for the store.
8716                  * The ast2firm pass has to know that left_type must be right_type
8717                  * for the arithmetic operation and create a cast by itself */
8718                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
8719                 expression->right     = create_implicit_cast(right, arithmetic_type);
8720                 expression->base.type = type_left;
8721         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
8722                 check_pointer_arithmetic(&expression->base.source_position,
8723                                          type_left, orig_type_left);
8724                 expression->base.type = type_left;
8725         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
8726                 errorf(&expression->base.source_position,
8727                        "incompatible types '%T' and '%T' in assignment",
8728                        orig_type_left, orig_type_right);
8729         }
8730 }
8731
8732 /**
8733  * Check the semantic restrictions of a logical expression.
8734  */
8735 static void semantic_logical_op(binary_expression_t *expression)
8736 {
8737         expression_t *const left            = expression->left;
8738         expression_t *const right           = expression->right;
8739         type_t       *const orig_type_left  = left->base.type;
8740         type_t       *const orig_type_right = right->base.type;
8741         type_t       *const type_left       = skip_typeref(orig_type_left);
8742         type_t       *const type_right      = skip_typeref(orig_type_right);
8743
8744         warn_function_address_as_bool(left);
8745         warn_function_address_as_bool(right);
8746
8747         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
8748                 /* TODO: improve error message */
8749                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
8750                         errorf(&expression->base.source_position,
8751                                "operation needs scalar types");
8752                 }
8753                 return;
8754         }
8755
8756         expression->base.type = type_int;
8757 }
8758
8759 /**
8760  * Check the semantic restrictions of a binary assign expression.
8761  */
8762 static void semantic_binexpr_assign(binary_expression_t *expression)
8763 {
8764         expression_t *left           = expression->left;
8765         type_t       *orig_type_left = left->base.type;
8766
8767         if (!is_valid_assignment_lhs(left))
8768                 return;
8769
8770         assign_error_t error = semantic_assign(orig_type_left, expression->right);
8771         report_assign_error(error, orig_type_left, expression->right,
8772                         "assignment", &left->base.source_position);
8773         expression->right = create_implicit_cast(expression->right, orig_type_left);
8774         expression->base.type = orig_type_left;
8775 }
8776
8777 /**
8778  * Determine if the outermost operation (or parts thereof) of the given
8779  * expression has no effect in order to generate a warning about this fact.
8780  * Therefore in some cases this only examines some of the operands of the
8781  * expression (see comments in the function and examples below).
8782  * Examples:
8783  *   f() + 23;    // warning, because + has no effect
8784  *   x || f();    // no warning, because x controls execution of f()
8785  *   x ? y : f(); // warning, because y has no effect
8786  *   (void)x;     // no warning to be able to suppress the warning
8787  * This function can NOT be used for an "expression has definitely no effect"-
8788  * analysis. */
8789 static bool expression_has_effect(const expression_t *const expr)
8790 {
8791         switch (expr->kind) {
8792                 case EXPR_UNKNOWN:                   break;
8793                 case EXPR_INVALID:                   return true; /* do NOT warn */
8794                 case EXPR_REFERENCE:                 return false;
8795                 case EXPR_REFERENCE_ENUM_VALUE:      return false;
8796                 /* suppress the warning for microsoft __noop operations */
8797                 case EXPR_CONST:                     return expr->conste.is_ms_noop;
8798                 case EXPR_CHARACTER_CONSTANT:        return false;
8799                 case EXPR_WIDE_CHARACTER_CONSTANT:   return false;
8800                 case EXPR_STRING_LITERAL:            return false;
8801                 case EXPR_WIDE_STRING_LITERAL:       return false;
8802                 case EXPR_LABEL_ADDRESS:             return false;
8803
8804                 case EXPR_CALL: {
8805                         const call_expression_t *const call = &expr->call;
8806                         if (call->function->kind != EXPR_BUILTIN_SYMBOL)
8807                                 return true;
8808
8809                         switch (call->function->builtin_symbol.symbol->ID) {
8810                                 case T___builtin_va_end: return true;
8811                                 default:                 return false;
8812                         }
8813                 }
8814
8815                 /* Generate the warning if either the left or right hand side of a
8816                  * conditional expression has no effect */
8817                 case EXPR_CONDITIONAL: {
8818                         const conditional_expression_t *const cond = &expr->conditional;
8819                         return
8820                                 expression_has_effect(cond->true_expression) &&
8821                                 expression_has_effect(cond->false_expression);
8822                 }
8823
8824                 case EXPR_SELECT:                    return false;
8825                 case EXPR_ARRAY_ACCESS:              return false;
8826                 case EXPR_SIZEOF:                    return false;
8827                 case EXPR_CLASSIFY_TYPE:             return false;
8828                 case EXPR_ALIGNOF:                   return false;
8829
8830                 case EXPR_FUNCNAME:                  return false;
8831                 case EXPR_BUILTIN_SYMBOL:            break; /* handled in EXPR_CALL */
8832                 case EXPR_BUILTIN_CONSTANT_P:        return false;
8833                 case EXPR_BUILTIN_PREFETCH:          return true;
8834                 case EXPR_OFFSETOF:                  return false;
8835                 case EXPR_VA_START:                  return true;
8836                 case EXPR_VA_ARG:                    return true;
8837                 case EXPR_STATEMENT:                 return true; // TODO
8838                 case EXPR_COMPOUND_LITERAL:          return false;
8839
8840                 case EXPR_UNARY_NEGATE:              return false;
8841                 case EXPR_UNARY_PLUS:                return false;
8842                 case EXPR_UNARY_BITWISE_NEGATE:      return false;
8843                 case EXPR_UNARY_NOT:                 return false;
8844                 case EXPR_UNARY_DEREFERENCE:         return false;
8845                 case EXPR_UNARY_TAKE_ADDRESS:        return false;
8846                 case EXPR_UNARY_POSTFIX_INCREMENT:   return true;
8847                 case EXPR_UNARY_POSTFIX_DECREMENT:   return true;
8848                 case EXPR_UNARY_PREFIX_INCREMENT:    return true;
8849                 case EXPR_UNARY_PREFIX_DECREMENT:    return true;
8850
8851                 /* Treat void casts as if they have an effect in order to being able to
8852                  * suppress the warning */
8853                 case EXPR_UNARY_CAST: {
8854                         type_t *const type = skip_typeref(expr->base.type);
8855                         return is_type_atomic(type, ATOMIC_TYPE_VOID);
8856                 }
8857
8858                 case EXPR_UNARY_CAST_IMPLICIT:       return true;
8859                 case EXPR_UNARY_ASSUME:              return true;
8860                 case EXPR_UNARY_DELETE:              return true;
8861                 case EXPR_UNARY_DELETE_ARRAY:        return true;
8862                 case EXPR_UNARY_THROW:               return true;
8863
8864                 case EXPR_BINARY_ADD:                return false;
8865                 case EXPR_BINARY_SUB:                return false;
8866                 case EXPR_BINARY_MUL:                return false;
8867                 case EXPR_BINARY_DIV:                return false;
8868                 case EXPR_BINARY_MOD:                return false;
8869                 case EXPR_BINARY_EQUAL:              return false;
8870                 case EXPR_BINARY_NOTEQUAL:           return false;
8871                 case EXPR_BINARY_LESS:               return false;
8872                 case EXPR_BINARY_LESSEQUAL:          return false;
8873                 case EXPR_BINARY_GREATER:            return false;
8874                 case EXPR_BINARY_GREATEREQUAL:       return false;
8875                 case EXPR_BINARY_BITWISE_AND:        return false;
8876                 case EXPR_BINARY_BITWISE_OR:         return false;
8877                 case EXPR_BINARY_BITWISE_XOR:        return false;
8878                 case EXPR_BINARY_SHIFTLEFT:          return false;
8879                 case EXPR_BINARY_SHIFTRIGHT:         return false;
8880                 case EXPR_BINARY_ASSIGN:             return true;
8881                 case EXPR_BINARY_MUL_ASSIGN:         return true;
8882                 case EXPR_BINARY_DIV_ASSIGN:         return true;
8883                 case EXPR_BINARY_MOD_ASSIGN:         return true;
8884                 case EXPR_BINARY_ADD_ASSIGN:         return true;
8885                 case EXPR_BINARY_SUB_ASSIGN:         return true;
8886                 case EXPR_BINARY_SHIFTLEFT_ASSIGN:   return true;
8887                 case EXPR_BINARY_SHIFTRIGHT_ASSIGN:  return true;
8888                 case EXPR_BINARY_BITWISE_AND_ASSIGN: return true;
8889                 case EXPR_BINARY_BITWISE_XOR_ASSIGN: return true;
8890                 case EXPR_BINARY_BITWISE_OR_ASSIGN:  return true;
8891
8892                 /* Only examine the right hand side of && and ||, because the left hand
8893                  * side already has the effect of controlling the execution of the right
8894                  * hand side */
8895                 case EXPR_BINARY_LOGICAL_AND:
8896                 case EXPR_BINARY_LOGICAL_OR:
8897                 /* Only examine the right hand side of a comma expression, because the left
8898                  * hand side has a separate warning */
8899                 case EXPR_BINARY_COMMA:
8900                         return expression_has_effect(expr->binary.right);
8901
8902                 case EXPR_BINARY_BUILTIN_EXPECT:     return true;
8903                 case EXPR_BINARY_ISGREATER:          return false;
8904                 case EXPR_BINARY_ISGREATEREQUAL:     return false;
8905                 case EXPR_BINARY_ISLESS:             return false;
8906                 case EXPR_BINARY_ISLESSEQUAL:        return false;
8907                 case EXPR_BINARY_ISLESSGREATER:      return false;
8908                 case EXPR_BINARY_ISUNORDERED:        return false;
8909         }
8910
8911         internal_errorf(HERE, "unexpected expression");
8912 }
8913
8914 static void semantic_comma(binary_expression_t *expression)
8915 {
8916         if (warning.unused_value) {
8917                 const expression_t *const left = expression->left;
8918                 if (!expression_has_effect(left)) {
8919                         warningf(&left->base.source_position,
8920                                  "left-hand operand of comma expression has no effect");
8921                 }
8922         }
8923         expression->base.type = expression->right->base.type;
8924 }
8925
8926 /**
8927  * @param prec_r precedence of the right operand
8928  */
8929 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, prec_r, sfunc) \
8930 static expression_t *parse_##binexpression_type(expression_t *left)          \
8931 {                                                                            \
8932         expression_t *binexpr = allocate_expression_zero(binexpression_type);    \
8933         binexpr->binary.left  = left;                                            \
8934         eat(token_type);                                                         \
8935                                                                              \
8936         expression_t *right = parse_sub_expression(prec_r);                      \
8937                                                                              \
8938         binexpr->binary.right = right;                                           \
8939         sfunc(&binexpr->binary);                                                 \
8940                                                                              \
8941         return binexpr;                                                          \
8942 }
8943
8944 CREATE_BINEXPR_PARSER('*',                    EXPR_BINARY_MUL,                PREC_CAST,           semantic_binexpr_arithmetic)
8945 CREATE_BINEXPR_PARSER('/',                    EXPR_BINARY_DIV,                PREC_CAST,           semantic_divmod_arithmetic)
8946 CREATE_BINEXPR_PARSER('%',                    EXPR_BINARY_MOD,                PREC_CAST,           semantic_divmod_arithmetic)
8947 CREATE_BINEXPR_PARSER('+',                    EXPR_BINARY_ADD,                PREC_MULTIPLICATIVE, semantic_add)
8948 CREATE_BINEXPR_PARSER('-',                    EXPR_BINARY_SUB,                PREC_MULTIPLICATIVE, semantic_sub)
8949 CREATE_BINEXPR_PARSER(T_LESSLESS,             EXPR_BINARY_SHIFTLEFT,          PREC_ADDITIVE,       semantic_shift_op)
8950 CREATE_BINEXPR_PARSER(T_GREATERGREATER,       EXPR_BINARY_SHIFTRIGHT,         PREC_ADDITIVE,       semantic_shift_op)
8951 CREATE_BINEXPR_PARSER('<',                    EXPR_BINARY_LESS,               PREC_SHIFT,          semantic_comparison)
8952 CREATE_BINEXPR_PARSER('>',                    EXPR_BINARY_GREATER,            PREC_SHIFT,          semantic_comparison)
8953 CREATE_BINEXPR_PARSER(T_LESSEQUAL,            EXPR_BINARY_LESSEQUAL,          PREC_SHIFT,          semantic_comparison)
8954 CREATE_BINEXPR_PARSER(T_GREATEREQUAL,         EXPR_BINARY_GREATEREQUAL,       PREC_SHIFT,          semantic_comparison)
8955 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, EXPR_BINARY_NOTEQUAL,           PREC_RELATIONAL,     semantic_comparison)
8956 CREATE_BINEXPR_PARSER(T_EQUALEQUAL,           EXPR_BINARY_EQUAL,              PREC_RELATIONAL,     semantic_comparison)
8957 CREATE_BINEXPR_PARSER('&',                    EXPR_BINARY_BITWISE_AND,        PREC_EQUALITY,       semantic_binexpr_arithmetic)
8958 CREATE_BINEXPR_PARSER('^',                    EXPR_BINARY_BITWISE_XOR,        PREC_AND,            semantic_binexpr_arithmetic)
8959 CREATE_BINEXPR_PARSER('|',                    EXPR_BINARY_BITWISE_OR,         PREC_XOR,            semantic_binexpr_arithmetic)
8960 CREATE_BINEXPR_PARSER(T_ANDAND,               EXPR_BINARY_LOGICAL_AND,        PREC_OR,             semantic_logical_op)
8961 CREATE_BINEXPR_PARSER(T_PIPEPIPE,             EXPR_BINARY_LOGICAL_OR,         PREC_LOGICAL_AND,    semantic_logical_op)
8962 CREATE_BINEXPR_PARSER('=',                    EXPR_BINARY_ASSIGN,             PREC_ASSIGNMENT,     semantic_binexpr_assign)
8963 CREATE_BINEXPR_PARSER(T_PLUSEQUAL,            EXPR_BINARY_ADD_ASSIGN,         PREC_ASSIGNMENT,     semantic_arithmetic_addsubb_assign)
8964 CREATE_BINEXPR_PARSER(T_MINUSEQUAL,           EXPR_BINARY_SUB_ASSIGN,         PREC_ASSIGNMENT,     semantic_arithmetic_addsubb_assign)
8965 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL,        EXPR_BINARY_MUL_ASSIGN,         PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8966 CREATE_BINEXPR_PARSER(T_SLASHEQUAL,           EXPR_BINARY_DIV_ASSIGN,         PREC_ASSIGNMENT,     semantic_divmod_assign)
8967 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL,         EXPR_BINARY_MOD_ASSIGN,         PREC_ASSIGNMENT,     semantic_divmod_assign)
8968 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL,        EXPR_BINARY_SHIFTLEFT_ASSIGN,   PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8969 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL,  EXPR_BINARY_SHIFTRIGHT_ASSIGN,  PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8970 CREATE_BINEXPR_PARSER(T_ANDEQUAL,             EXPR_BINARY_BITWISE_AND_ASSIGN, PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8971 CREATE_BINEXPR_PARSER(T_PIPEEQUAL,            EXPR_BINARY_BITWISE_OR_ASSIGN,  PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8972 CREATE_BINEXPR_PARSER(T_CARETEQUAL,           EXPR_BINARY_BITWISE_XOR_ASSIGN, PREC_ASSIGNMENT,     semantic_arithmetic_assign)
8973 CREATE_BINEXPR_PARSER(',',                    EXPR_BINARY_COMMA,              PREC_ASSIGNMENT,     semantic_comma)
8974
8975
8976 static expression_t *parse_sub_expression(precedence_t precedence)
8977 {
8978         if (token.type < 0) {
8979                 return expected_expression_error();
8980         }
8981
8982         expression_parser_function_t *parser
8983                 = &expression_parsers[token.type];
8984         source_position_t             source_position = token.source_position;
8985         expression_t                 *left;
8986
8987         if (parser->parser != NULL) {
8988                 left = parser->parser();
8989         } else {
8990                 left = parse_primary_expression();
8991         }
8992         assert(left != NULL);
8993         left->base.source_position = source_position;
8994
8995         while(true) {
8996                 if (token.type < 0) {
8997                         return expected_expression_error();
8998                 }
8999
9000                 parser = &expression_parsers[token.type];
9001                 if (parser->infix_parser == NULL)
9002                         break;
9003                 if (parser->infix_precedence < precedence)
9004                         break;
9005
9006                 left = parser->infix_parser(left);
9007
9008                 assert(left != NULL);
9009                 assert(left->kind != EXPR_UNKNOWN);
9010                 left->base.source_position = source_position;
9011         }
9012
9013         return left;
9014 }
9015
9016 /**
9017  * Parse an expression.
9018  */
9019 static expression_t *parse_expression(void)
9020 {
9021         return parse_sub_expression(PREC_EXPRESSION);
9022 }
9023
9024 /**
9025  * Register a parser for a prefix-like operator.
9026  *
9027  * @param parser      the parser function
9028  * @param token_type  the token type of the prefix token
9029  */
9030 static void register_expression_parser(parse_expression_function parser,
9031                                        int token_type)
9032 {
9033         expression_parser_function_t *entry = &expression_parsers[token_type];
9034
9035         if (entry->parser != NULL) {
9036                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
9037                 panic("trying to register multiple expression parsers for a token");
9038         }
9039         entry->parser = parser;
9040 }
9041
9042 /**
9043  * Register a parser for an infix operator with given precedence.
9044  *
9045  * @param parser      the parser function
9046  * @param token_type  the token type of the infix operator
9047  * @param precedence  the precedence of the operator
9048  */
9049 static void register_infix_parser(parse_expression_infix_function parser,
9050                 int token_type, unsigned precedence)
9051 {
9052         expression_parser_function_t *entry = &expression_parsers[token_type];
9053
9054         if (entry->infix_parser != NULL) {
9055                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
9056                 panic("trying to register multiple infix expression parsers for a "
9057                       "token");
9058         }
9059         entry->infix_parser     = parser;
9060         entry->infix_precedence = precedence;
9061 }
9062
9063 /**
9064  * Initialize the expression parsers.
9065  */
9066 static void init_expression_parsers(void)
9067 {
9068         memset(&expression_parsers, 0, sizeof(expression_parsers));
9069
9070         register_infix_parser(parse_array_expression,               '[',                    PREC_POSTFIX);
9071         register_infix_parser(parse_call_expression,                '(',                    PREC_POSTFIX);
9072         register_infix_parser(parse_select_expression,              '.',                    PREC_POSTFIX);
9073         register_infix_parser(parse_select_expression,              T_MINUSGREATER,         PREC_POSTFIX);
9074         register_infix_parser(parse_EXPR_UNARY_POSTFIX_INCREMENT,   T_PLUSPLUS,             PREC_POSTFIX);
9075         register_infix_parser(parse_EXPR_UNARY_POSTFIX_DECREMENT,   T_MINUSMINUS,           PREC_POSTFIX);
9076         register_infix_parser(parse_EXPR_BINARY_MUL,                '*',                    PREC_MULTIPLICATIVE);
9077         register_infix_parser(parse_EXPR_BINARY_DIV,                '/',                    PREC_MULTIPLICATIVE);
9078         register_infix_parser(parse_EXPR_BINARY_MOD,                '%',                    PREC_MULTIPLICATIVE);
9079         register_infix_parser(parse_EXPR_BINARY_ADD,                '+',                    PREC_ADDITIVE);
9080         register_infix_parser(parse_EXPR_BINARY_SUB,                '-',                    PREC_ADDITIVE);
9081         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT,          T_LESSLESS,             PREC_SHIFT);
9082         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT,         T_GREATERGREATER,       PREC_SHIFT);
9083         register_infix_parser(parse_EXPR_BINARY_LESS,               '<',                    PREC_RELATIONAL);
9084         register_infix_parser(parse_EXPR_BINARY_GREATER,            '>',                    PREC_RELATIONAL);
9085         register_infix_parser(parse_EXPR_BINARY_LESSEQUAL,          T_LESSEQUAL,            PREC_RELATIONAL);
9086         register_infix_parser(parse_EXPR_BINARY_GREATEREQUAL,       T_GREATEREQUAL,         PREC_RELATIONAL);
9087         register_infix_parser(parse_EXPR_BINARY_EQUAL,              T_EQUALEQUAL,           PREC_EQUALITY);
9088         register_infix_parser(parse_EXPR_BINARY_NOTEQUAL,           T_EXCLAMATIONMARKEQUAL, PREC_EQUALITY);
9089         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND,        '&',                    PREC_AND);
9090         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR,        '^',                    PREC_XOR);
9091         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR,         '|',                    PREC_OR);
9092         register_infix_parser(parse_EXPR_BINARY_LOGICAL_AND,        T_ANDAND,               PREC_LOGICAL_AND);
9093         register_infix_parser(parse_EXPR_BINARY_LOGICAL_OR,         T_PIPEPIPE,             PREC_LOGICAL_OR);
9094         register_infix_parser(parse_conditional_expression,         '?',                    PREC_CONDITIONAL);
9095         register_infix_parser(parse_EXPR_BINARY_ASSIGN,             '=',                    PREC_ASSIGNMENT);
9096         register_infix_parser(parse_EXPR_BINARY_ADD_ASSIGN,         T_PLUSEQUAL,            PREC_ASSIGNMENT);
9097         register_infix_parser(parse_EXPR_BINARY_SUB_ASSIGN,         T_MINUSEQUAL,           PREC_ASSIGNMENT);
9098         register_infix_parser(parse_EXPR_BINARY_MUL_ASSIGN,         T_ASTERISKEQUAL,        PREC_ASSIGNMENT);
9099         register_infix_parser(parse_EXPR_BINARY_DIV_ASSIGN,         T_SLASHEQUAL,           PREC_ASSIGNMENT);
9100         register_infix_parser(parse_EXPR_BINARY_MOD_ASSIGN,         T_PERCENTEQUAL,         PREC_ASSIGNMENT);
9101         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT_ASSIGN,   T_LESSLESSEQUAL,        PREC_ASSIGNMENT);
9102         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT_ASSIGN,  T_GREATERGREATEREQUAL,  PREC_ASSIGNMENT);
9103         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND_ASSIGN, T_ANDEQUAL,             PREC_ASSIGNMENT);
9104         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR_ASSIGN,  T_PIPEEQUAL,            PREC_ASSIGNMENT);
9105         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR_ASSIGN, T_CARETEQUAL,           PREC_ASSIGNMENT);
9106         register_infix_parser(parse_EXPR_BINARY_COMMA,              ',',                    PREC_EXPRESSION);
9107
9108         register_expression_parser(parse_EXPR_UNARY_NEGATE,           '-');
9109         register_expression_parser(parse_EXPR_UNARY_PLUS,             '+');
9110         register_expression_parser(parse_EXPR_UNARY_NOT,              '!');
9111         register_expression_parser(parse_EXPR_UNARY_BITWISE_NEGATE,   '~');
9112         register_expression_parser(parse_EXPR_UNARY_DEREFERENCE,      '*');
9113         register_expression_parser(parse_EXPR_UNARY_TAKE_ADDRESS,     '&');
9114         register_expression_parser(parse_EXPR_UNARY_PREFIX_INCREMENT, T_PLUSPLUS);
9115         register_expression_parser(parse_EXPR_UNARY_PREFIX_DECREMENT, T_MINUSMINUS);
9116         register_expression_parser(parse_sizeof,                      T_sizeof);
9117         register_expression_parser(parse_alignof,                     T___alignof__);
9118         register_expression_parser(parse_extension,                   T___extension__);
9119         register_expression_parser(parse_builtin_classify_type,       T___builtin_classify_type);
9120         register_expression_parser(parse_delete,                      T_delete);
9121         register_expression_parser(parse_throw,                       T_throw);
9122 }
9123
9124 /**
9125  * Parse a asm statement arguments specification.
9126  */
9127 static asm_argument_t *parse_asm_arguments(bool is_out)
9128 {
9129         asm_argument_t *result = NULL;
9130         asm_argument_t *last   = NULL;
9131
9132         while (token.type == T_STRING_LITERAL || token.type == '[') {
9133                 asm_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
9134                 memset(argument, 0, sizeof(argument[0]));
9135
9136                 if (token.type == '[') {
9137                         eat('[');
9138                         if (token.type != T_IDENTIFIER) {
9139                                 parse_error_expected("while parsing asm argument",
9140                                                      T_IDENTIFIER, NULL);
9141                                 return NULL;
9142                         }
9143                         argument->symbol = token.v.symbol;
9144
9145                         expect(']');
9146                 }
9147
9148                 argument->constraints = parse_string_literals();
9149                 expect('(');
9150                 add_anchor_token(')');
9151                 expression_t *expression = parse_expression();
9152                 rem_anchor_token(')');
9153                 if (is_out) {
9154                         /* Ugly GCC stuff: Allow lvalue casts.  Skip casts, when they do not
9155                          * change size or type representation (e.g. int -> long is ok, but
9156                          * int -> float is not) */
9157                         if (expression->kind == EXPR_UNARY_CAST) {
9158                                 type_t      *const type = expression->base.type;
9159                                 type_kind_t  const kind = type->kind;
9160                                 if (kind == TYPE_ATOMIC || kind == TYPE_POINTER) {
9161                                         unsigned flags;
9162                                         unsigned size;
9163                                         if (kind == TYPE_ATOMIC) {
9164                                                 atomic_type_kind_t const akind = type->atomic.akind;
9165                                                 flags = get_atomic_type_flags(akind) & ~ATOMIC_TYPE_FLAG_SIGNED;
9166                                                 size  = get_atomic_type_size(akind);
9167                                         } else {
9168                                                 flags = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC;
9169                                                 size  = get_atomic_type_size(get_intptr_kind());
9170                                         }
9171
9172                                         do {
9173                                                 expression_t *const value      = expression->unary.value;
9174                                                 type_t       *const value_type = value->base.type;
9175                                                 type_kind_t   const value_kind = value_type->kind;
9176
9177                                                 unsigned value_flags;
9178                                                 unsigned value_size;
9179                                                 if (value_kind == TYPE_ATOMIC) {
9180                                                         atomic_type_kind_t const value_akind = value_type->atomic.akind;
9181                                                         value_flags = get_atomic_type_flags(value_akind) & ~ATOMIC_TYPE_FLAG_SIGNED;
9182                                                         value_size  = get_atomic_type_size(value_akind);
9183                                                 } else if (value_kind == TYPE_POINTER) {
9184                                                         value_flags = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC;
9185                                                         value_size  = get_atomic_type_size(get_intptr_kind());
9186                                                 } else {
9187                                                         break;
9188                                                 }
9189
9190                                                 if (value_flags != flags || value_size != size)
9191                                                         break;
9192
9193                                                 expression = value;
9194                                         } while (expression->kind == EXPR_UNARY_CAST);
9195                                 }
9196                         }
9197
9198                         if (!is_lvalue(expression)) {
9199                                 errorf(&expression->base.source_position,
9200                                        "asm output argument is not an lvalue");
9201                         }
9202
9203                         if (argument->constraints.begin[0] == '+')
9204                                 mark_vars_read(expression, NULL);
9205                 } else {
9206                         mark_vars_read(expression, NULL);
9207                 }
9208                 argument->expression = expression;
9209                 expect(')');
9210
9211                 set_address_taken(expression, true);
9212
9213                 if (last != NULL) {
9214                         last->next = argument;
9215                 } else {
9216                         result = argument;
9217                 }
9218                 last = argument;
9219
9220                 if (token.type != ',')
9221                         break;
9222                 eat(',');
9223         }
9224
9225         return result;
9226 end_error:
9227         return NULL;
9228 }
9229
9230 /**
9231  * Parse a asm statement clobber specification.
9232  */
9233 static asm_clobber_t *parse_asm_clobbers(void)
9234 {
9235         asm_clobber_t *result = NULL;
9236         asm_clobber_t *last   = NULL;
9237
9238         while(token.type == T_STRING_LITERAL) {
9239                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
9240                 clobber->clobber       = parse_string_literals();
9241
9242                 if (last != NULL) {
9243                         last->next = clobber;
9244                 } else {
9245                         result = clobber;
9246                 }
9247                 last = clobber;
9248
9249                 if (token.type != ',')
9250                         break;
9251                 eat(',');
9252         }
9253
9254         return result;
9255 }
9256
9257 /**
9258  * Parse an asm statement.
9259  */
9260 static statement_t *parse_asm_statement(void)
9261 {
9262         statement_t     *statement     = allocate_statement_zero(STATEMENT_ASM);
9263         asm_statement_t *asm_statement = &statement->asms;
9264
9265         eat(T_asm);
9266
9267         if (token.type == T_volatile) {
9268                 next_token();
9269                 asm_statement->is_volatile = true;
9270         }
9271
9272         expect('(');
9273         add_anchor_token(')');
9274         add_anchor_token(':');
9275         asm_statement->asm_text = parse_string_literals();
9276
9277         if (token.type != ':') {
9278                 rem_anchor_token(':');
9279                 goto end_of_asm;
9280         }
9281         eat(':');
9282
9283         asm_statement->outputs = parse_asm_arguments(true);
9284         if (token.type != ':') {
9285                 rem_anchor_token(':');
9286                 goto end_of_asm;
9287         }
9288         eat(':');
9289
9290         asm_statement->inputs = parse_asm_arguments(false);
9291         if (token.type != ':') {
9292                 rem_anchor_token(':');
9293                 goto end_of_asm;
9294         }
9295         rem_anchor_token(':');
9296         eat(':');
9297
9298         asm_statement->clobbers = parse_asm_clobbers();
9299
9300 end_of_asm:
9301         rem_anchor_token(')');
9302         expect(')');
9303         expect(';');
9304
9305         if (asm_statement->outputs == NULL) {
9306                 /* GCC: An 'asm' instruction without any output operands will be treated
9307                  * identically to a volatile 'asm' instruction. */
9308                 asm_statement->is_volatile = true;
9309         }
9310
9311         return statement;
9312 end_error:
9313         return create_invalid_statement();
9314 }
9315
9316 /**
9317  * Parse a case statement.
9318  */
9319 static statement_t *parse_case_statement(void)
9320 {
9321         statement_t       *const statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
9322         source_position_t *const pos       = &statement->base.source_position;
9323
9324         eat(T_case);
9325
9326         expression_t *const expression   = parse_expression();
9327         statement->case_label.expression = expression;
9328         if (!is_constant_expression(expression)) {
9329                 /* This check does not prevent the error message in all cases of an
9330                  * prior error while parsing the expression.  At least it catches the
9331                  * common case of a mistyped enum entry. */
9332                 if (is_type_valid(skip_typeref(expression->base.type))) {
9333                         errorf(pos, "case label does not reduce to an integer constant");
9334                 }
9335                 statement->case_label.is_bad = true;
9336         } else {
9337                 long const val = fold_constant(expression);
9338                 statement->case_label.first_case = val;
9339                 statement->case_label.last_case  = val;
9340         }
9341
9342         if (GNU_MODE) {
9343                 if (token.type == T_DOTDOTDOT) {
9344                         next_token();
9345                         expression_t *const end_range   = parse_expression();
9346                         statement->case_label.end_range = end_range;
9347                         if (!is_constant_expression(end_range)) {
9348                                 /* This check does not prevent the error message in all cases of an
9349                                  * prior error while parsing the expression.  At least it catches the
9350                                  * common case of a mistyped enum entry. */
9351                                 if (is_type_valid(skip_typeref(end_range->base.type))) {
9352                                         errorf(pos, "case range does not reduce to an integer constant");
9353                                 }
9354                                 statement->case_label.is_bad = true;
9355                         } else {
9356                                 long const val = fold_constant(end_range);
9357                                 statement->case_label.last_case = val;
9358
9359                                 if (warning.other && val < statement->case_label.first_case) {
9360                                         statement->case_label.is_empty_range = true;
9361                                         warningf(pos, "empty range specified");
9362                                 }
9363                         }
9364                 }
9365         }
9366
9367         PUSH_PARENT(statement);
9368
9369         expect(':');
9370
9371         if (current_switch != NULL) {
9372                 if (! statement->case_label.is_bad) {
9373                         /* Check for duplicate case values */
9374                         case_label_statement_t *c = &statement->case_label;
9375                         for (case_label_statement_t *l = current_switch->first_case; l != NULL; l = l->next) {
9376                                 if (l->is_bad || l->is_empty_range || l->expression == NULL)
9377                                         continue;
9378
9379                                 if (c->last_case < l->first_case || c->first_case > l->last_case)
9380                                         continue;
9381
9382                                 errorf(pos, "duplicate case value (previously used %P)",
9383                                        &l->base.source_position);
9384                                 break;
9385                         }
9386                 }
9387                 /* link all cases into the switch statement */
9388                 if (current_switch->last_case == NULL) {
9389                         current_switch->first_case      = &statement->case_label;
9390                 } else {
9391                         current_switch->last_case->next = &statement->case_label;
9392                 }
9393                 current_switch->last_case = &statement->case_label;
9394         } else {
9395                 errorf(pos, "case label not within a switch statement");
9396         }
9397
9398         statement_t *const inner_stmt = parse_statement();
9399         statement->case_label.statement = inner_stmt;
9400         if (inner_stmt->kind == STATEMENT_DECLARATION) {
9401                 errorf(&inner_stmt->base.source_position, "declaration after case label");
9402         }
9403
9404         POP_PARENT;
9405         return statement;
9406 end_error:
9407         POP_PARENT;
9408         return create_invalid_statement();
9409 }
9410
9411 /**
9412  * Parse a default statement.
9413  */
9414 static statement_t *parse_default_statement(void)
9415 {
9416         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
9417
9418         eat(T_default);
9419
9420         PUSH_PARENT(statement);
9421
9422         expect(':');
9423         if (current_switch != NULL) {
9424                 const case_label_statement_t *def_label = current_switch->default_label;
9425                 if (def_label != NULL) {
9426                         errorf(HERE, "multiple default labels in one switch (previous declared %P)",
9427                                &def_label->base.source_position);
9428                 } else {
9429                         current_switch->default_label = &statement->case_label;
9430
9431                         /* link all cases into the switch statement */
9432                         if (current_switch->last_case == NULL) {
9433                                 current_switch->first_case      = &statement->case_label;
9434                         } else {
9435                                 current_switch->last_case->next = &statement->case_label;
9436                         }
9437                         current_switch->last_case = &statement->case_label;
9438                 }
9439         } else {
9440                 errorf(&statement->base.source_position,
9441                         "'default' label not within a switch statement");
9442         }
9443
9444         statement_t *const inner_stmt = parse_statement();
9445         statement->case_label.statement = inner_stmt;
9446         if (inner_stmt->kind == STATEMENT_DECLARATION) {
9447                 errorf(&inner_stmt->base.source_position, "declaration after default label");
9448         }
9449
9450         POP_PARENT;
9451         return statement;
9452 end_error:
9453         POP_PARENT;
9454         return create_invalid_statement();
9455 }
9456
9457 /**
9458  * Parse a label statement.
9459  */
9460 static statement_t *parse_label_statement(void)
9461 {
9462         assert(token.type == T_IDENTIFIER);
9463         symbol_t *symbol = token.v.symbol;
9464         label_t  *label  = get_label(symbol);
9465
9466         statement_t *const statement = allocate_statement_zero(STATEMENT_LABEL);
9467         statement->label.label       = label;
9468
9469         next_token();
9470
9471         PUSH_PARENT(statement);
9472
9473         /* if statement is already set then the label is defined twice,
9474          * otherwise it was just mentioned in a goto/local label declaration so far
9475          */
9476         if (label->statement != NULL) {
9477                 errorf(HERE, "duplicate label '%Y' (declared %P)",
9478                        symbol, &label->base.source_position);
9479         } else {
9480                 label->base.source_position = token.source_position;
9481                 label->statement            = statement;
9482         }
9483
9484         eat(':');
9485
9486         if (token.type == '}') {
9487                 /* TODO only warn? */
9488                 if (warning.other && false) {
9489                         warningf(HERE, "label at end of compound statement");
9490                         statement->label.statement = create_empty_statement();
9491                 } else {
9492                         errorf(HERE, "label at end of compound statement");
9493                         statement->label.statement = create_invalid_statement();
9494                 }
9495         } else if (token.type == ';') {
9496                 /* Eat an empty statement here, to avoid the warning about an empty
9497                  * statement after a label.  label:; is commonly used to have a label
9498                  * before a closing brace. */
9499                 statement->label.statement = create_empty_statement();
9500                 next_token();
9501         } else {
9502                 statement_t *const inner_stmt = parse_statement();
9503                 statement->label.statement = inner_stmt;
9504                 if (inner_stmt->kind == STATEMENT_DECLARATION) {
9505                         errorf(&inner_stmt->base.source_position, "declaration after label");
9506                 }
9507         }
9508
9509         /* remember the labels in a list for later checking */
9510         if (label_last == NULL) {
9511                 label_first = &statement->label;
9512         } else {
9513                 label_last->next = &statement->label;
9514         }
9515         label_last = &statement->label;
9516
9517         POP_PARENT;
9518         return statement;
9519 }
9520
9521 /**
9522  * Parse an if statement.
9523  */
9524 static statement_t *parse_if(void)
9525 {
9526         statement_t *statement = allocate_statement_zero(STATEMENT_IF);
9527
9528         eat(T_if);
9529
9530         PUSH_PARENT(statement);
9531
9532         add_anchor_token('{');
9533
9534         expect('(');
9535         add_anchor_token(')');
9536         expression_t *const expr = parse_expression();
9537         statement->ifs.condition = expr;
9538         mark_vars_read(expr, NULL);
9539         rem_anchor_token(')');
9540         expect(')');
9541
9542 end_error:
9543         rem_anchor_token('{');
9544
9545         add_anchor_token(T_else);
9546         statement->ifs.true_statement = parse_statement();
9547         rem_anchor_token(T_else);
9548
9549         if (token.type == T_else) {
9550                 next_token();
9551                 statement->ifs.false_statement = parse_statement();
9552         }
9553
9554         POP_PARENT;
9555         return statement;
9556 }
9557
9558 /**
9559  * Check that all enums are handled in a switch.
9560  *
9561  * @param statement  the switch statement to check
9562  */
9563 static void check_enum_cases(const switch_statement_t *statement) {
9564         const type_t *type = skip_typeref(statement->expression->base.type);
9565         if (! is_type_enum(type))
9566                 return;
9567         const enum_type_t *enumt = &type->enumt;
9568
9569         /* if we have a default, no warnings */
9570         if (statement->default_label != NULL)
9571                 return;
9572
9573         /* FIXME: calculation of value should be done while parsing */
9574         /* TODO: quadratic algorithm here. Change to an n log n one */
9575         long            last_value = -1;
9576         const entity_t *entry      = enumt->enume->base.next;
9577         for (; entry != NULL && entry->kind == ENTITY_ENUM_VALUE;
9578              entry = entry->base.next) {
9579                 const expression_t *expression = entry->enum_value.value;
9580                 long                value      = expression != NULL ? fold_constant(expression) : last_value + 1;
9581                 bool                found      = false;
9582                 for (const case_label_statement_t *l = statement->first_case; l != NULL; l = l->next) {
9583                         if (l->expression == NULL)
9584                                 continue;
9585                         if (l->first_case <= value && value <= l->last_case) {
9586                                 found = true;
9587                                 break;
9588                         }
9589                 }
9590                 if (! found) {
9591                         warningf(&statement->base.source_position,
9592                                  "enumeration value '%Y' not handled in switch",
9593                                  entry->base.symbol);
9594                 }
9595                 last_value = value;
9596         }
9597 }
9598
9599 /**
9600  * Parse a switch statement.
9601  */
9602 static statement_t *parse_switch(void)
9603 {
9604         statement_t *statement = allocate_statement_zero(STATEMENT_SWITCH);
9605
9606         eat(T_switch);
9607
9608         PUSH_PARENT(statement);
9609
9610         expect('(');
9611         add_anchor_token(')');
9612         expression_t *const expr = parse_expression();
9613         mark_vars_read(expr, NULL);
9614         type_t       *      type = skip_typeref(expr->base.type);
9615         if (is_type_integer(type)) {
9616                 type = promote_integer(type);
9617                 if (warning.traditional) {
9618                         if (get_rank(type) >= get_akind_rank(ATOMIC_TYPE_LONG)) {
9619                                 warningf(&expr->base.source_position,
9620                                         "'%T' switch expression not converted to '%T' in ISO C",
9621                                         type, type_int);
9622                         }
9623                 }
9624         } else if (is_type_valid(type)) {
9625                 errorf(&expr->base.source_position,
9626                        "switch quantity is not an integer, but '%T'", type);
9627                 type = type_error_type;
9628         }
9629         statement->switchs.expression = create_implicit_cast(expr, type);
9630         expect(')');
9631         rem_anchor_token(')');
9632
9633         switch_statement_t *rem = current_switch;
9634         current_switch          = &statement->switchs;
9635         statement->switchs.body = parse_statement();
9636         current_switch          = rem;
9637
9638         if (warning.switch_default &&
9639             statement->switchs.default_label == NULL) {
9640                 warningf(&statement->base.source_position, "switch has no default case");
9641         }
9642         if (warning.switch_enum)
9643                 check_enum_cases(&statement->switchs);
9644
9645         POP_PARENT;
9646         return statement;
9647 end_error:
9648         POP_PARENT;
9649         return create_invalid_statement();
9650 }
9651
9652 static statement_t *parse_loop_body(statement_t *const loop)
9653 {
9654         statement_t *const rem = current_loop;
9655         current_loop = loop;
9656
9657         statement_t *const body = parse_statement();
9658
9659         current_loop = rem;
9660         return body;
9661 }
9662
9663 /**
9664  * Parse a while statement.
9665  */
9666 static statement_t *parse_while(void)
9667 {
9668         statement_t *statement = allocate_statement_zero(STATEMENT_WHILE);
9669
9670         eat(T_while);
9671
9672         PUSH_PARENT(statement);
9673
9674         expect('(');
9675         add_anchor_token(')');
9676         expression_t *const cond = parse_expression();
9677         statement->whiles.condition = cond;
9678         mark_vars_read(cond, NULL);
9679         rem_anchor_token(')');
9680         expect(')');
9681
9682         statement->whiles.body = parse_loop_body(statement);
9683
9684         POP_PARENT;
9685         return statement;
9686 end_error:
9687         POP_PARENT;
9688         return create_invalid_statement();
9689 }
9690
9691 /**
9692  * Parse a do statement.
9693  */
9694 static statement_t *parse_do(void)
9695 {
9696         statement_t *statement = allocate_statement_zero(STATEMENT_DO_WHILE);
9697
9698         eat(T_do);
9699
9700         PUSH_PARENT(statement);
9701
9702         add_anchor_token(T_while);
9703         statement->do_while.body = parse_loop_body(statement);
9704         rem_anchor_token(T_while);
9705
9706         expect(T_while);
9707         expect('(');
9708         add_anchor_token(')');
9709         expression_t *const cond = parse_expression();
9710         statement->do_while.condition = cond;
9711         mark_vars_read(cond, NULL);
9712         rem_anchor_token(')');
9713         expect(')');
9714         expect(';');
9715
9716         POP_PARENT;
9717         return statement;
9718 end_error:
9719         POP_PARENT;
9720         return create_invalid_statement();
9721 }
9722
9723 /**
9724  * Parse a for statement.
9725  */
9726 static statement_t *parse_for(void)
9727 {
9728         statement_t *statement = allocate_statement_zero(STATEMENT_FOR);
9729
9730         eat(T_for);
9731
9732         PUSH_PARENT(statement);
9733
9734         size_t const top = environment_top();
9735         scope_push(&statement->fors.scope);
9736
9737         expect('(');
9738         add_anchor_token(')');
9739
9740         if (token.type != ';') {
9741                 if (is_declaration_specifier(&token, false)) {
9742                         parse_declaration(record_entity);
9743                 } else {
9744                         add_anchor_token(';');
9745                         expression_t *const init = parse_expression();
9746                         statement->fors.initialisation = init;
9747                         mark_vars_read(init, VAR_ANY);
9748                         if (warning.unused_value && !expression_has_effect(init)) {
9749                                 warningf(&init->base.source_position,
9750                                          "initialisation of 'for'-statement has no effect");
9751                         }
9752                         rem_anchor_token(';');
9753                         expect(';');
9754                 }
9755         } else {
9756                 expect(';');
9757         }
9758
9759         if (token.type != ';') {
9760                 add_anchor_token(';');
9761                 expression_t *const cond = parse_expression();
9762                 statement->fors.condition = cond;
9763                 mark_vars_read(cond, NULL);
9764                 rem_anchor_token(';');
9765         }
9766         expect(';');
9767         if (token.type != ')') {
9768                 expression_t *const step = parse_expression();
9769                 statement->fors.step = step;
9770                 mark_vars_read(step, VAR_ANY);
9771                 if (warning.unused_value && !expression_has_effect(step)) {
9772                         warningf(&step->base.source_position,
9773                                  "step of 'for'-statement has no effect");
9774                 }
9775         }
9776         expect(')');
9777         rem_anchor_token(')');
9778         statement->fors.body = parse_loop_body(statement);
9779
9780         assert(scope == &statement->fors.scope);
9781         scope_pop();
9782         environment_pop_to(top);
9783
9784         POP_PARENT;
9785         return statement;
9786
9787 end_error:
9788         POP_PARENT;
9789         rem_anchor_token(')');
9790         assert(scope == &statement->fors.scope);
9791         scope_pop();
9792         environment_pop_to(top);
9793
9794         return create_invalid_statement();
9795 }
9796
9797 /**
9798  * Parse a goto statement.
9799  */
9800 static statement_t *parse_goto(void)
9801 {
9802         statement_t *statement = allocate_statement_zero(STATEMENT_GOTO);
9803         eat(T_goto);
9804
9805         if (GNU_MODE && token.type == '*') {
9806                 next_token();
9807                 expression_t *expression = parse_expression();
9808                 mark_vars_read(expression, NULL);
9809
9810                 /* Argh: although documentation say the expression must be of type void *,
9811                  * gcc excepts anything that can be casted into void * without error */
9812                 type_t *type = expression->base.type;
9813
9814                 if (type != type_error_type) {
9815                         if (!is_type_pointer(type) && !is_type_integer(type)) {
9816                                 errorf(&expression->base.source_position,
9817                                         "cannot convert to a pointer type");
9818                         } else if (warning.other && type != type_void_ptr) {
9819                                 warningf(&expression->base.source_position,
9820                                         "type of computed goto expression should be 'void*' not '%T'", type);
9821                         }
9822                         expression = create_implicit_cast(expression, type_void_ptr);
9823                 }
9824
9825                 statement->gotos.expression = expression;
9826         } else {
9827                 if (token.type != T_IDENTIFIER) {
9828                         if (GNU_MODE)
9829                                 parse_error_expected("while parsing goto", T_IDENTIFIER, '*', NULL);
9830                         else
9831                                 parse_error_expected("while parsing goto", T_IDENTIFIER, NULL);
9832                         eat_until_anchor();
9833                         goto end_error;
9834                 }
9835                 symbol_t *symbol = token.v.symbol;
9836                 next_token();
9837
9838                 statement->gotos.label = get_label(symbol);
9839         }
9840
9841         /* remember the goto's in a list for later checking */
9842         if (goto_last == NULL) {
9843                 goto_first = &statement->gotos;
9844         } else {
9845                 goto_last->next = &statement->gotos;
9846         }
9847         goto_last = &statement->gotos;
9848
9849         expect(';');
9850
9851         return statement;
9852 end_error:
9853         return create_invalid_statement();
9854 }
9855
9856 /**
9857  * Parse a continue statement.
9858  */
9859 static statement_t *parse_continue(void)
9860 {
9861         if (current_loop == NULL) {
9862                 errorf(HERE, "continue statement not within loop");
9863         }
9864
9865         statement_t *statement = allocate_statement_zero(STATEMENT_CONTINUE);
9866
9867         eat(T_continue);
9868         expect(';');
9869
9870 end_error:
9871         return statement;
9872 }
9873
9874 /**
9875  * Parse a break statement.
9876  */
9877 static statement_t *parse_break(void)
9878 {
9879         if (current_switch == NULL && current_loop == NULL) {
9880                 errorf(HERE, "break statement not within loop or switch");
9881         }
9882
9883         statement_t *statement = allocate_statement_zero(STATEMENT_BREAK);
9884
9885         eat(T_break);
9886         expect(';');
9887
9888 end_error:
9889         return statement;
9890 }
9891
9892 /**
9893  * Parse a __leave statement.
9894  */
9895 static statement_t *parse_leave_statement(void)
9896 {
9897         if (current_try == NULL) {
9898                 errorf(HERE, "__leave statement not within __try");
9899         }
9900
9901         statement_t *statement = allocate_statement_zero(STATEMENT_LEAVE);
9902
9903         eat(T___leave);
9904         expect(';');
9905
9906 end_error:
9907         return statement;
9908 }
9909
9910 /**
9911  * Check if a given entity represents a local variable.
9912  */
9913 static bool is_local_variable(const entity_t *entity)
9914 {
9915         if (entity->kind != ENTITY_VARIABLE)
9916                 return false;
9917
9918         switch ((storage_class_tag_t) entity->declaration.storage_class) {
9919         case STORAGE_CLASS_AUTO:
9920         case STORAGE_CLASS_REGISTER: {
9921                 const type_t *type = skip_typeref(entity->declaration.type);
9922                 if (is_type_function(type)) {
9923                         return false;
9924                 } else {
9925                         return true;
9926                 }
9927         }
9928         default:
9929                 return false;
9930         }
9931 }
9932
9933 /**
9934  * Check if a given expression represents a local variable.
9935  */
9936 static bool expression_is_local_variable(const expression_t *expression)
9937 {
9938         if (expression->base.kind != EXPR_REFERENCE) {
9939                 return false;
9940         }
9941         const entity_t *entity = expression->reference.entity;
9942         return is_local_variable(entity);
9943 }
9944
9945 /**
9946  * Check if a given expression represents a local variable and
9947  * return its declaration then, else return NULL.
9948  */
9949 entity_t *expression_is_variable(const expression_t *expression)
9950 {
9951         if (expression->base.kind != EXPR_REFERENCE) {
9952                 return NULL;
9953         }
9954         entity_t *entity = expression->reference.entity;
9955         if (entity->kind != ENTITY_VARIABLE)
9956                 return NULL;
9957
9958         return entity;
9959 }
9960
9961 /**
9962  * Parse a return statement.
9963  */
9964 static statement_t *parse_return(void)
9965 {
9966         eat(T_return);
9967
9968         statement_t *statement = allocate_statement_zero(STATEMENT_RETURN);
9969
9970         expression_t *return_value = NULL;
9971         if (token.type != ';') {
9972                 return_value = parse_expression();
9973                 mark_vars_read(return_value, NULL);
9974         }
9975
9976         const type_t *const func_type = current_function->base.type;
9977         assert(is_type_function(func_type));
9978         type_t *const return_type = skip_typeref(func_type->function.return_type);
9979
9980         if (return_value != NULL) {
9981                 type_t *return_value_type = skip_typeref(return_value->base.type);
9982
9983                 if (is_type_atomic(return_type,        ATOMIC_TYPE_VOID) &&
9984                                 !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
9985                         if (warning.other) {
9986                                 warningf(&statement->base.source_position,
9987                                                 "'return' with a value, in function returning void");
9988                         }
9989                         return_value = NULL;
9990                 } else {
9991                         assign_error_t error = semantic_assign(return_type, return_value);
9992                         report_assign_error(error, return_type, return_value, "'return'",
9993                                             &statement->base.source_position);
9994                         return_value = create_implicit_cast(return_value, return_type);
9995                 }
9996                 /* check for returning address of a local var */
9997                 if (warning.other && return_value != NULL
9998                                 && return_value->base.kind == EXPR_UNARY_TAKE_ADDRESS) {
9999                         const expression_t *expression = return_value->unary.value;
10000                         if (expression_is_local_variable(expression)) {
10001                                 warningf(&statement->base.source_position,
10002                                          "function returns address of local variable");
10003                         }
10004                 }
10005         } else if (warning.other && !is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
10006                 warningf(&statement->base.source_position,
10007                                 "'return' without value, in function returning non-void");
10008         }
10009         statement->returns.value = return_value;
10010
10011         expect(';');
10012
10013 end_error:
10014         return statement;
10015 }
10016
10017 /**
10018  * Parse a declaration statement.
10019  */
10020 static statement_t *parse_declaration_statement(void)
10021 {
10022         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
10023
10024         entity_t *before = scope->last_entity;
10025         if (GNU_MODE)
10026                 parse_external_declaration();
10027         else
10028                 parse_declaration(record_entity);
10029
10030         if (before == NULL) {
10031                 statement->declaration.declarations_begin = scope->entities;
10032         } else {
10033                 statement->declaration.declarations_begin = before->base.next;
10034         }
10035         statement->declaration.declarations_end = scope->last_entity;
10036
10037         return statement;
10038 }
10039
10040 /**
10041  * Parse an expression statement, ie. expr ';'.
10042  */
10043 static statement_t *parse_expression_statement(void)
10044 {
10045         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
10046
10047         expression_t *const expr         = parse_expression();
10048         statement->expression.expression = expr;
10049         mark_vars_read(expr, VAR_ANY);
10050
10051         expect(';');
10052
10053 end_error:
10054         return statement;
10055 }
10056
10057 /**
10058  * Parse a microsoft __try { } __finally { } or
10059  * __try{ } __except() { }
10060  */
10061 static statement_t *parse_ms_try_statment(void)
10062 {
10063         statement_t *statement = allocate_statement_zero(STATEMENT_MS_TRY);
10064         eat(T___try);
10065
10066         PUSH_PARENT(statement);
10067
10068         ms_try_statement_t *rem = current_try;
10069         current_try = &statement->ms_try;
10070         statement->ms_try.try_statement = parse_compound_statement(false);
10071         current_try = rem;
10072
10073         POP_PARENT;
10074
10075         if (token.type == T___except) {
10076                 eat(T___except);
10077                 expect('(');
10078                 add_anchor_token(')');
10079                 expression_t *const expr = parse_expression();
10080                 mark_vars_read(expr, NULL);
10081                 type_t       *      type = skip_typeref(expr->base.type);
10082                 if (is_type_integer(type)) {
10083                         type = promote_integer(type);
10084                 } else if (is_type_valid(type)) {
10085                         errorf(&expr->base.source_position,
10086                                "__expect expression is not an integer, but '%T'", type);
10087                         type = type_error_type;
10088                 }
10089                 statement->ms_try.except_expression = create_implicit_cast(expr, type);
10090                 rem_anchor_token(')');
10091                 expect(')');
10092                 statement->ms_try.final_statement = parse_compound_statement(false);
10093         } else if (token.type == T__finally) {
10094                 eat(T___finally);
10095                 statement->ms_try.final_statement = parse_compound_statement(false);
10096         } else {
10097                 parse_error_expected("while parsing __try statement", T___except, T___finally, NULL);
10098                 return create_invalid_statement();
10099         }
10100         return statement;
10101 end_error:
10102         return create_invalid_statement();
10103 }
10104
10105 static statement_t *parse_empty_statement(void)
10106 {
10107         if (warning.empty_statement) {
10108                 warningf(HERE, "statement is empty");
10109         }
10110         statement_t *const statement = create_empty_statement();
10111         eat(';');
10112         return statement;
10113 }
10114
10115 static statement_t *parse_local_label_declaration(void)
10116 {
10117         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
10118
10119         eat(T___label__);
10120
10121         entity_t *begin = NULL, *end = NULL;
10122
10123         while (true) {
10124                 if (token.type != T_IDENTIFIER) {
10125                         parse_error_expected("while parsing local label declaration",
10126                                 T_IDENTIFIER, NULL);
10127                         goto end_error;
10128                 }
10129                 symbol_t *symbol = token.v.symbol;
10130                 entity_t *entity = get_entity(symbol, NAMESPACE_LOCAL_LABEL);
10131                 if (entity != NULL && entity->base.parent_scope == scope) {
10132                         errorf(HERE, "multiple definitions of '__label__ %Y' (previous definition %P)",
10133                                symbol, &entity->base.source_position);
10134                 } else {
10135                         entity = allocate_entity_zero(ENTITY_LOCAL_LABEL);
10136
10137                         entity->base.parent_scope    = scope;
10138                         entity->base.namespc         = NAMESPACE_LOCAL_LABEL;
10139                         entity->base.source_position = token.source_position;
10140                         entity->base.symbol          = symbol;
10141
10142                         if (end != NULL)
10143                                 end->base.next = entity;
10144                         end = entity;
10145                         if (begin == NULL)
10146                                 begin = entity;
10147
10148                         local_label_push(entity);
10149                 }
10150                 next_token();
10151
10152                 if (token.type != ',')
10153                         break;
10154                 next_token();
10155         }
10156         eat(';');
10157 end_error:
10158         statement->declaration.declarations_begin = begin;
10159         statement->declaration.declarations_end   = end;
10160         return statement;
10161 }
10162
10163 /**
10164  * Parse a statement.
10165  * There's also parse_statement() which additionally checks for
10166  * "statement has no effect" warnings
10167  */
10168 static statement_t *intern_parse_statement(void)
10169 {
10170         statement_t *statement = NULL;
10171
10172         /* declaration or statement */
10173         add_anchor_token(';');
10174         switch (token.type) {
10175         case T_IDENTIFIER: {
10176                 token_type_t la1_type = (token_type_t)look_ahead(1)->type;
10177                 if (la1_type == ':') {
10178                         statement = parse_label_statement();
10179                 } else if (is_typedef_symbol(token.v.symbol)) {
10180                         statement = parse_declaration_statement();
10181                 } else {
10182                         /* it's an identifier, the grammar says this must be an
10183                          * expression statement. However it is common that users mistype
10184                          * declaration types, so we guess a bit here to improve robustness
10185                          * for incorrect programs */
10186                         switch (la1_type) {
10187                         case '*':
10188                                 if (get_entity(token.v.symbol, NAMESPACE_NORMAL) != NULL)
10189                                         goto expression_statment;
10190                                 /* FALLTHROUGH */
10191
10192                         DECLARATION_START
10193                         case T_IDENTIFIER:
10194                                 statement = parse_declaration_statement();
10195                                 break;
10196
10197                         default:
10198 expression_statment:
10199                                 statement = parse_expression_statement();
10200                                 break;
10201                         }
10202                 }
10203                 break;
10204         }
10205
10206         case T___extension__:
10207                 /* This can be a prefix to a declaration or an expression statement.
10208                  * We simply eat it now and parse the rest with tail recursion. */
10209                 do {
10210                         next_token();
10211                 } while (token.type == T___extension__);
10212                 bool old_gcc_extension = in_gcc_extension;
10213                 in_gcc_extension       = true;
10214                 statement = parse_statement();
10215                 in_gcc_extension = old_gcc_extension;
10216                 break;
10217
10218         DECLARATION_START
10219                 statement = parse_declaration_statement();
10220                 break;
10221
10222         case T___label__:
10223                 statement = parse_local_label_declaration();
10224                 break;
10225
10226         case ';':        statement = parse_empty_statement();         break;
10227         case '{':        statement = parse_compound_statement(false); break;
10228         case T___leave:  statement = parse_leave_statement();         break;
10229         case T___try:    statement = parse_ms_try_statment();         break;
10230         case T_asm:      statement = parse_asm_statement();           break;
10231         case T_break:    statement = parse_break();                   break;
10232         case T_case:     statement = parse_case_statement();          break;
10233         case T_continue: statement = parse_continue();                break;
10234         case T_default:  statement = parse_default_statement();       break;
10235         case T_do:       statement = parse_do();                      break;
10236         case T_for:      statement = parse_for();                     break;
10237         case T_goto:     statement = parse_goto();                    break;
10238         case T_if:       statement = parse_if();                      break;
10239         case T_return:   statement = parse_return();                  break;
10240         case T_switch:   statement = parse_switch();                  break;
10241         case T_while:    statement = parse_while();                   break;
10242
10243         EXPRESSION_START
10244                 statement = parse_expression_statement();
10245                 break;
10246
10247         default:
10248                 errorf(HERE, "unexpected token %K while parsing statement", &token);
10249                 statement = create_invalid_statement();
10250                 if (!at_anchor())
10251                         next_token();
10252                 break;
10253         }
10254         rem_anchor_token(';');
10255
10256         assert(statement != NULL
10257                         && statement->base.source_position.input_name != NULL);
10258
10259         return statement;
10260 }
10261
10262 /**
10263  * parse a statement and emits "statement has no effect" warning if needed
10264  * (This is really a wrapper around intern_parse_statement with check for 1
10265  *  single warning. It is needed, because for statement expressions we have
10266  *  to avoid the warning on the last statement)
10267  */
10268 static statement_t *parse_statement(void)
10269 {
10270         statement_t *statement = intern_parse_statement();
10271
10272         if (statement->kind == STATEMENT_EXPRESSION && warning.unused_value) {
10273                 expression_t *expression = statement->expression.expression;
10274                 if (!expression_has_effect(expression)) {
10275                         warningf(&expression->base.source_position,
10276                                         "statement has no effect");
10277                 }
10278         }
10279
10280         return statement;
10281 }
10282
10283 /**
10284  * Parse a compound statement.
10285  */
10286 static statement_t *parse_compound_statement(bool inside_expression_statement)
10287 {
10288         statement_t *statement = allocate_statement_zero(STATEMENT_COMPOUND);
10289
10290         PUSH_PARENT(statement);
10291
10292         eat('{');
10293         add_anchor_token('}');
10294
10295         size_t const top       = environment_top();
10296         size_t const top_local = local_label_top();
10297         scope_push(&statement->compound.scope);
10298
10299         statement_t **anchor            = &statement->compound.statements;
10300         bool          only_decls_so_far = true;
10301         while (token.type != '}') {
10302                 if (token.type == T_EOF) {
10303                         errorf(&statement->base.source_position,
10304                                "EOF while parsing compound statement");
10305                         break;
10306                 }
10307                 statement_t *sub_statement = intern_parse_statement();
10308                 if (is_invalid_statement(sub_statement)) {
10309                         /* an error occurred. if we are at an anchor, return */
10310                         if (at_anchor())
10311                                 goto end_error;
10312                         continue;
10313                 }
10314
10315                 if (warning.declaration_after_statement) {
10316                         if (sub_statement->kind != STATEMENT_DECLARATION) {
10317                                 only_decls_so_far = false;
10318                         } else if (!only_decls_so_far) {
10319                                 warningf(&sub_statement->base.source_position,
10320                                          "ISO C90 forbids mixed declarations and code");
10321                         }
10322                 }
10323
10324                 *anchor = sub_statement;
10325
10326                 while (sub_statement->base.next != NULL)
10327                         sub_statement = sub_statement->base.next;
10328
10329                 anchor = &sub_statement->base.next;
10330         }
10331         next_token();
10332
10333         /* look over all statements again to produce no effect warnings */
10334         if (warning.unused_value) {
10335                 statement_t *sub_statement = statement->compound.statements;
10336                 for( ; sub_statement != NULL; sub_statement = sub_statement->base.next) {
10337                         if (sub_statement->kind != STATEMENT_EXPRESSION)
10338                                 continue;
10339                         /* don't emit a warning for the last expression in an expression
10340                          * statement as it has always an effect */
10341                         if (inside_expression_statement && sub_statement->base.next == NULL)
10342                                 continue;
10343
10344                         expression_t *expression = sub_statement->expression.expression;
10345                         if (!expression_has_effect(expression)) {
10346                                 warningf(&expression->base.source_position,
10347                                          "statement has no effect");
10348                         }
10349                 }
10350         }
10351
10352 end_error:
10353         rem_anchor_token('}');
10354         assert(scope == &statement->compound.scope);
10355         scope_pop();
10356         environment_pop_to(top);
10357         local_label_pop_to(top_local);
10358
10359         POP_PARENT;
10360         return statement;
10361 }
10362
10363 /**
10364  * Initialize builtin types.
10365  */
10366 static void initialize_builtin_types(void)
10367 {
10368         type_intmax_t    = make_global_typedef("__intmax_t__",      type_long_long);
10369         type_size_t      = make_global_typedef("__SIZE_TYPE__",     type_unsigned_long);
10370         type_ssize_t     = make_global_typedef("__SSIZE_TYPE__",    type_long);
10371         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",  type_long);
10372         type_uintmax_t   = make_global_typedef("__uintmax_t__",     type_unsigned_long_long);
10373         type_uptrdiff_t  = make_global_typedef("__UPTRDIFF_TYPE__", type_unsigned_long);
10374         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    opt_short_wchar_t ? type_unsigned_short : type_int);
10375         type_wint_t      = make_global_typedef("__WINT_TYPE__",     type_int);
10376
10377         type_intmax_t_ptr  = make_pointer_type(type_intmax_t,  TYPE_QUALIFIER_NONE);
10378         type_ptrdiff_t_ptr = make_pointer_type(type_ptrdiff_t, TYPE_QUALIFIER_NONE);
10379         type_ssize_t_ptr   = make_pointer_type(type_ssize_t,   TYPE_QUALIFIER_NONE);
10380         type_wchar_t_ptr   = make_pointer_type(type_wchar_t,   TYPE_QUALIFIER_NONE);
10381
10382         /* const version of wchar_t */
10383         type_const_wchar_t = allocate_type_zero(TYPE_TYPEDEF);
10384         type_const_wchar_t->typedeft.typedefe  = type_wchar_t->typedeft.typedefe;
10385         type_const_wchar_t->base.qualifiers   |= TYPE_QUALIFIER_CONST;
10386
10387         type_const_wchar_t_ptr = make_pointer_type(type_const_wchar_t, TYPE_QUALIFIER_NONE);
10388 }
10389
10390 /**
10391  * Check for unused global static functions and variables
10392  */
10393 static void check_unused_globals(void)
10394 {
10395         if (!warning.unused_function && !warning.unused_variable)
10396                 return;
10397
10398         for (const entity_t *entity = file_scope->entities; entity != NULL;
10399              entity = entity->base.next) {
10400                 if (!is_declaration(entity))
10401                         continue;
10402
10403                 const declaration_t *declaration = &entity->declaration;
10404                 if (declaration->used                  ||
10405                     declaration->modifiers & DM_UNUSED ||
10406                     declaration->modifiers & DM_USED   ||
10407                     declaration->storage_class != STORAGE_CLASS_STATIC)
10408                         continue;
10409
10410                 type_t *const type = declaration->type;
10411                 const char *s;
10412                 if (entity->kind == ENTITY_FUNCTION) {
10413                         /* inhibit warning for static inline functions */
10414                         if (entity->function.is_inline)
10415                                 continue;
10416
10417                         s = entity->function.statement != NULL ? "defined" : "declared";
10418                 } else {
10419                         s = "defined";
10420                 }
10421
10422                 warningf(&declaration->base.source_position, "'%#T' %s but not used",
10423                         type, declaration->base.symbol, s);
10424         }
10425 }
10426
10427 static void parse_global_asm(void)
10428 {
10429         statement_t *statement = allocate_statement_zero(STATEMENT_ASM);
10430
10431         eat(T_asm);
10432         expect('(');
10433
10434         statement->asms.asm_text = parse_string_literals();
10435         statement->base.next     = unit->global_asm;
10436         unit->global_asm         = statement;
10437
10438         expect(')');
10439         expect(';');
10440
10441 end_error:;
10442 }
10443
10444 /**
10445  * Parse a translation unit.
10446  */
10447 static void parse_translation_unit(void)
10448 {
10449         add_anchor_token(T_EOF);
10450
10451 #ifndef NDEBUG
10452         unsigned char token_anchor_copy[T_LAST_TOKEN];
10453         memcpy(token_anchor_copy, token_anchor_set, sizeof(token_anchor_copy));
10454 #endif
10455         for (;;) {
10456 #ifndef NDEBUG
10457                 bool anchor_leak = false;
10458                 for (int i = 0; i != T_LAST_TOKEN; ++i) {
10459                         unsigned char count = token_anchor_set[i] - token_anchor_copy[i];
10460                         if (count != 0) {
10461                                 errorf(HERE, "Leaked anchor token %k %d times", i, count);
10462                                 anchor_leak = true;
10463                         }
10464                 }
10465                 if (in_gcc_extension) {
10466                         errorf(HERE, "Leaked __extension__");
10467                         anchor_leak = true;
10468                 }
10469
10470                 if (anchor_leak)
10471                         abort();
10472 #endif
10473
10474                 switch (token.type) {
10475                         DECLARATION_START
10476                         case T_IDENTIFIER:
10477                         case T___extension__:
10478                                 parse_external_declaration();
10479                                 break;
10480
10481                         case T_asm:
10482                                 parse_global_asm();
10483                                 break;
10484
10485                         case T_EOF:
10486                                 rem_anchor_token(T_EOF);
10487                                 return;
10488
10489                         case ';':
10490                                 if (!strict_mode) {
10491                                         if (warning.other)
10492                                                 warningf(HERE, "stray ';' outside of function");
10493                                         next_token();
10494                                         break;
10495                                 }
10496                                 /* FALLTHROUGH */
10497
10498                         default:
10499                                 errorf(HERE, "stray %K outside of function", &token);
10500                                 if (token.type == '(' || token.type == '{' || token.type == '[')
10501                                         eat_until_matching_token(token.type);
10502                                 next_token();
10503                                 break;
10504                 }
10505         }
10506 }
10507
10508 /**
10509  * Parse the input.
10510  *
10511  * @return  the translation unit or NULL if errors occurred.
10512  */
10513 void start_parsing(void)
10514 {
10515         environment_stack = NEW_ARR_F(stack_entry_t, 0);
10516         label_stack       = NEW_ARR_F(stack_entry_t, 0);
10517         local_label_stack = NEW_ARR_F(stack_entry_t, 0);
10518         diagnostic_count  = 0;
10519         error_count       = 0;
10520         warning_count     = 0;
10521
10522         type_set_output(stderr);
10523         ast_set_output(stderr);
10524
10525         assert(unit == NULL);
10526         unit = allocate_ast_zero(sizeof(unit[0]));
10527
10528         assert(file_scope == NULL);
10529         file_scope = &unit->scope;
10530
10531         assert(scope == NULL);
10532         scope_push(&unit->scope);
10533
10534         initialize_builtin_types();
10535 }
10536
10537 translation_unit_t *finish_parsing(void)
10538 {
10539         /* do NOT use scope_pop() here, this will crash, will it by hand */
10540         assert(scope == &unit->scope);
10541         scope            = NULL;
10542
10543         assert(file_scope == &unit->scope);
10544         check_unused_globals();
10545         file_scope = NULL;
10546
10547         DEL_ARR_F(environment_stack);
10548         DEL_ARR_F(label_stack);
10549         DEL_ARR_F(local_label_stack);
10550
10551         translation_unit_t *result = unit;
10552         unit = NULL;
10553         return result;
10554 }
10555
10556 void parse(void)
10557 {
10558         lookahead_bufpos = 0;
10559         for (int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
10560                 next_token();
10561         }
10562         parse_translation_unit();
10563 }
10564
10565 /**
10566  * Initialize the parser.
10567  */
10568 void init_parser(void)
10569 {
10570         sym_anonymous = symbol_table_insert("<anonymous>");
10571
10572         if (c_mode & _MS) {
10573                 /* add predefined symbols for extended-decl-modifier */
10574                 sym_align      = symbol_table_insert("align");
10575                 sym_allocate   = symbol_table_insert("allocate");
10576                 sym_dllimport  = symbol_table_insert("dllimport");
10577                 sym_dllexport  = symbol_table_insert("dllexport");
10578                 sym_naked      = symbol_table_insert("naked");
10579                 sym_noinline   = symbol_table_insert("noinline");
10580                 sym_noreturn   = symbol_table_insert("noreturn");
10581                 sym_nothrow    = symbol_table_insert("nothrow");
10582                 sym_novtable   = symbol_table_insert("novtable");
10583                 sym_property   = symbol_table_insert("property");
10584                 sym_get        = symbol_table_insert("get");
10585                 sym_put        = symbol_table_insert("put");
10586                 sym_selectany  = symbol_table_insert("selectany");
10587                 sym_thread     = symbol_table_insert("thread");
10588                 sym_uuid       = symbol_table_insert("uuid");
10589                 sym_deprecated = symbol_table_insert("deprecated");
10590                 sym_restrict   = symbol_table_insert("restrict");
10591                 sym_noalias    = symbol_table_insert("noalias");
10592         }
10593         memset(token_anchor_set, 0, sizeof(token_anchor_set));
10594
10595         init_expression_parsers();
10596         obstack_init(&temp_obst);
10597
10598         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
10599         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
10600 }
10601
10602 /**
10603  * Terminate the parser.
10604  */
10605 void exit_parser(void)
10606 {
10607         obstack_free(&temp_obst, NULL);
10608 }