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