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