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