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