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