fix for last commit
[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 "lang_features.h"
37 #include "warning.h"
38 #include "adt/bitfiddle.h"
39 #include "adt/error.h"
40 #include "adt/array.h"
41
42 //#define PRINT_TOKENS
43 #define MAX_LOOKAHEAD 2
44
45 typedef struct {
46         declaration_t *old_declaration;
47         symbol_t      *symbol;
48         unsigned short namespc;
49 } stack_entry_t;
50
51 typedef struct gnu_attribute_t gnu_attribute_t;
52 struct gnu_attribute_t {
53         gnu_attribute_kind_t kind;
54         gnu_attribute_t     *next;
55         bool                 invalid;
56         bool                 have_arguments;
57         union {
58                 size_t   value;
59                 string_t string;
60         } u;
61 };
62
63 typedef struct declaration_specifiers_t  declaration_specifiers_t;
64 struct declaration_specifiers_t {
65         source_position_t  source_position;
66         unsigned char      declared_storage_class;
67         unsigned char      alignment;         /**< Alignment, 0 if not set. */
68         unsigned int       is_inline : 1;
69         unsigned int       deprecated : 1;
70         decl_modifiers_t   modifiers;         /**< declaration modifiers */
71         gnu_attribute_t   *gnu_attributes;    /**< list of GNU attributes */
72         const char        *deprecated_string; /**< can be set if declaration was marked deprecated. */
73         symbol_t          *get_property_sym;  /**< the name of the get property if set. */
74         symbol_t          *put_property_sym;  /**< the name of the put property if set. */
75         type_t            *type;
76 };
77
78 /**
79  * An environment for parsing initializers (and compound literals).
80  */
81 typedef struct parse_initializer_env_t {
82         type_t        *type;        /**< the type of the initializer. In case of an
83                                          array type with unspecified size this gets
84                                          adjusted to the actual size. */
85         declaration_t *declaration; /**< the declaration that is initialized if any */
86         bool           must_be_constant;
87 } parse_initializer_env_t;
88
89 typedef declaration_t* (*parsed_declaration_func) (declaration_t *declaration);
90
91 static token_t             token;
92 static token_t             lookahead_buffer[MAX_LOOKAHEAD];
93 static int                 lookahead_bufpos;
94 static stack_entry_t      *environment_stack = NULL;
95 static stack_entry_t      *label_stack       = NULL;
96 static scope_t            *global_scope      = NULL;
97 static scope_t            *scope             = NULL;
98 static declaration_t      *last_declaration  = NULL;
99 static declaration_t      *current_function  = NULL;
100 static switch_statement_t *current_switch    = NULL;
101 static statement_t        *current_loop      = NULL;
102 static ms_try_statement_t *current_try       = NULL;
103 static goto_statement_t   *goto_first        = NULL;
104 static goto_statement_t   *goto_last         = NULL;
105 static label_statement_t  *label_first       = NULL;
106 static label_statement_t  *label_last        = NULL;
107 static translation_unit_t *unit              = NULL;
108 static struct obstack      temp_obst;
109
110 static source_position_t null_position = { NULL, 0 };
111
112 /* symbols for Microsoft extended-decl-modifier */
113 static const symbol_t *sym_align      = NULL;
114 static const symbol_t *sym_allocate   = NULL;
115 static const symbol_t *sym_dllimport  = NULL;
116 static const symbol_t *sym_dllexport  = NULL;
117 static const symbol_t *sym_naked      = NULL;
118 static const symbol_t *sym_noinline   = NULL;
119 static const symbol_t *sym_noreturn   = NULL;
120 static const symbol_t *sym_nothrow    = NULL;
121 static const symbol_t *sym_novtable   = NULL;
122 static const symbol_t *sym_property   = NULL;
123 static const symbol_t *sym_get        = NULL;
124 static const symbol_t *sym_put        = NULL;
125 static const symbol_t *sym_selectany  = NULL;
126 static const symbol_t *sym_thread     = NULL;
127 static const symbol_t *sym_uuid       = NULL;
128 static const symbol_t *sym_deprecated = NULL;
129 static const symbol_t *sym_restrict   = NULL;
130 static const symbol_t *sym_noalias    = NULL;
131
132 /** The token anchor set */
133 static unsigned char token_anchor_set[T_LAST_TOKEN];
134
135 /** The current source position. */
136 #define HERE (&token.source_position)
137
138 static type_t *type_valist;
139
140 static statement_t *parse_compound_statement(bool inside_expression_statement);
141 static statement_t *parse_statement(void);
142
143 static expression_t *parse_sub_expression(unsigned precedence);
144 static expression_t *parse_expression(void);
145 static type_t       *parse_typename(void);
146
147 static void parse_compound_type_entries(declaration_t *compound_declaration);
148 static declaration_t *parse_declarator(
149                 const declaration_specifiers_t *specifiers, bool may_be_abstract);
150 static declaration_t *record_declaration(declaration_t *declaration);
151
152 static void semantic_comparison(binary_expression_t *expression);
153
154 #define STORAGE_CLASSES     \
155         case T_typedef:         \
156         case T_extern:          \
157         case T_static:          \
158         case T_auto:            \
159         case T_register:
160
161 #define TYPE_QUALIFIERS     \
162         case T_const:           \
163         case T_restrict:        \
164         case T_volatile:        \
165         case T_inline:          \
166         case T__forceinline:    \
167         case T___attribute__:
168
169 #ifdef PROVIDE_COMPLEX
170 #define COMPLEX_SPECIFIERS  \
171         case T__Complex:
172 #define IMAGINARY_SPECIFIERS \
173         case T__Imaginary:
174 #else
175 #define COMPLEX_SPECIFIERS
176 #define IMAGINARY_SPECIFIERS
177 #endif
178
179 #define TYPE_SPECIFIERS       \
180         case T_void:              \
181         case T_char:              \
182         case T_short:             \
183         case T_int:               \
184         case T_long:              \
185         case T_float:             \
186         case T_double:            \
187         case T_signed:            \
188         case T_unsigned:          \
189         case T__Bool:             \
190         case T_struct:            \
191         case T_union:             \
192         case T_enum:              \
193         case T___typeof__:        \
194         case T___builtin_va_list: \
195         case T__declspec:         \
196         COMPLEX_SPECIFIERS        \
197         IMAGINARY_SPECIFIERS
198
199 #define DECLARATION_START   \
200         STORAGE_CLASSES         \
201         TYPE_QUALIFIERS         \
202         TYPE_SPECIFIERS
203
204 #define TYPENAME_START      \
205         TYPE_QUALIFIERS         \
206         TYPE_SPECIFIERS
207
208 /**
209  * Allocate an AST node with given size and
210  * initialize all fields with zero.
211  */
212 static void *allocate_ast_zero(size_t size)
213 {
214         void *res = allocate_ast(size);
215         memset(res, 0, size);
216         return res;
217 }
218
219 static declaration_t *allocate_declaration_zero(void)
220 {
221         declaration_t *declaration = allocate_ast_zero(sizeof(declaration_t));
222         declaration->type      = type_error_type;
223         declaration->alignment = 0;
224         return declaration;
225 }
226
227 /**
228  * Returns the size of a statement node.
229  *
230  * @param kind  the statement kind
231  */
232 static size_t get_statement_struct_size(statement_kind_t kind)
233 {
234         static const size_t sizes[] = {
235                 [STATEMENT_INVALID]     = sizeof(invalid_statement_t),
236                 [STATEMENT_EMPTY]       = sizeof(empty_statement_t),
237                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
238                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
239                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
240                 [STATEMENT_IF]          = sizeof(if_statement_t),
241                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
242                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
243                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
244                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
245                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
246                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
247                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
248                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
249                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
250                 [STATEMENT_FOR]         = sizeof(for_statement_t),
251                 [STATEMENT_ASM]         = sizeof(asm_statement_t),
252                 [STATEMENT_MS_TRY]      = sizeof(ms_try_statement_t),
253                 [STATEMENT_LEAVE]       = sizeof(leave_statement_t)
254         };
255         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
256         assert(sizes[kind] != 0);
257         return sizes[kind];
258 }
259
260 /**
261  * Returns the size of an expression node.
262  *
263  * @param kind  the expression kind
264  */
265 static size_t get_expression_struct_size(expression_kind_t kind)
266 {
267         static const size_t sizes[] = {
268                 [EXPR_INVALID]                 = sizeof(expression_base_t),
269                 [EXPR_REFERENCE]               = sizeof(reference_expression_t),
270                 [EXPR_CONST]                   = sizeof(const_expression_t),
271                 [EXPR_CHARACTER_CONSTANT]      = sizeof(const_expression_t),
272                 [EXPR_WIDE_CHARACTER_CONSTANT] = sizeof(const_expression_t),
273                 [EXPR_STRING_LITERAL]          = sizeof(string_literal_expression_t),
274                 [EXPR_WIDE_STRING_LITERAL]     = sizeof(wide_string_literal_expression_t),
275                 [EXPR_COMPOUND_LITERAL]        = sizeof(compound_literal_expression_t),
276                 [EXPR_CALL]                    = sizeof(call_expression_t),
277                 [EXPR_UNARY_FIRST]             = sizeof(unary_expression_t),
278                 [EXPR_BINARY_FIRST]            = sizeof(binary_expression_t),
279                 [EXPR_CONDITIONAL]             = sizeof(conditional_expression_t),
280                 [EXPR_SELECT]                  = sizeof(select_expression_t),
281                 [EXPR_ARRAY_ACCESS]            = sizeof(array_access_expression_t),
282                 [EXPR_SIZEOF]                  = sizeof(typeprop_expression_t),
283                 [EXPR_ALIGNOF]                 = sizeof(typeprop_expression_t),
284                 [EXPR_CLASSIFY_TYPE]           = sizeof(classify_type_expression_t),
285                 [EXPR_FUNCNAME]                = sizeof(funcname_expression_t),
286                 [EXPR_BUILTIN_SYMBOL]          = sizeof(builtin_symbol_expression_t),
287                 [EXPR_BUILTIN_CONSTANT_P]      = sizeof(builtin_constant_expression_t),
288                 [EXPR_BUILTIN_PREFETCH]        = sizeof(builtin_prefetch_expression_t),
289                 [EXPR_OFFSETOF]                = sizeof(offsetof_expression_t),
290                 [EXPR_VA_START]                = sizeof(va_start_expression_t),
291                 [EXPR_VA_ARG]                  = sizeof(va_arg_expression_t),
292                 [EXPR_STATEMENT]               = sizeof(statement_expression_t),
293         };
294         if(kind >= EXPR_UNARY_FIRST && kind <= EXPR_UNARY_LAST) {
295                 return sizes[EXPR_UNARY_FIRST];
296         }
297         if(kind >= EXPR_BINARY_FIRST && kind <= EXPR_BINARY_LAST) {
298                 return sizes[EXPR_BINARY_FIRST];
299         }
300         assert(kind <= sizeof(sizes) / sizeof(sizes[0]));
301         assert(sizes[kind] != 0);
302         return sizes[kind];
303 }
304
305 /**
306  * Allocate a statement node of given kind and initialize all
307  * fields with zero.
308  */
309 static statement_t *allocate_statement_zero(statement_kind_t kind)
310 {
311         size_t       size = get_statement_struct_size(kind);
312         statement_t *res  = allocate_ast_zero(size);
313
314         res->base.kind = kind;
315         return res;
316 }
317
318 /**
319  * Allocate an expression node of given kind and initialize all
320  * fields with zero.
321  */
322 static expression_t *allocate_expression_zero(expression_kind_t kind)
323 {
324         size_t        size = get_expression_struct_size(kind);
325         expression_t *res  = allocate_ast_zero(size);
326
327         res->base.kind = kind;
328         res->base.type = type_error_type;
329         return res;
330 }
331
332 /**
333  * Creates a new invalid expression.
334  */
335 static expression_t *create_invalid_expression(void)
336 {
337         expression_t *expression         = allocate_expression_zero(EXPR_INVALID);
338         expression->base.source_position = token.source_position;
339         return expression;
340 }
341
342 /**
343  * Creates a new invalid statement.
344  */
345 static statement_t *create_invalid_statement(void)
346 {
347         statement_t *statement          = allocate_statement_zero(STATEMENT_INVALID);
348         statement->base.source_position = token.source_position;
349         return statement;
350 }
351
352 /**
353  * Allocate a new empty statement.
354  */
355 static statement_t *create_empty_statement(void)
356 {
357         statement_t *statement          = allocate_statement_zero(STATEMENT_EMPTY);
358         statement->base.source_position = token.source_position;
359         return statement;
360 }
361
362 /**
363  * Returns the size of a type node.
364  *
365  * @param kind  the type kind
366  */
367 static size_t get_type_struct_size(type_kind_t kind)
368 {
369         static const size_t sizes[] = {
370                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
371                 [TYPE_COMPLEX]         = sizeof(complex_type_t),
372                 [TYPE_IMAGINARY]       = sizeof(imaginary_type_t),
373                 [TYPE_BITFIELD]        = sizeof(bitfield_type_t),
374                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
375                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
376                 [TYPE_ENUM]            = sizeof(enum_type_t),
377                 [TYPE_FUNCTION]        = sizeof(function_type_t),
378                 [TYPE_POINTER]         = sizeof(pointer_type_t),
379                 [TYPE_ARRAY]           = sizeof(array_type_t),
380                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
381                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
382                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
383         };
384         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
385         assert(kind <= TYPE_TYPEOF);
386         assert(sizes[kind] != 0);
387         return sizes[kind];
388 }
389
390 /**
391  * Allocate a type node of given kind and initialize all
392  * fields with zero.
393  */
394 static type_t *allocate_type_zero(type_kind_t kind, const source_position_t *source_position)
395 {
396         size_t  size = get_type_struct_size(kind);
397         type_t *res  = obstack_alloc(type_obst, size);
398         memset(res, 0, size);
399
400         res->base.kind            = kind;
401         res->base.source_position = *source_position;
402         return res;
403 }
404
405 /**
406  * Returns the size of an initializer node.
407  *
408  * @param kind  the initializer kind
409  */
410 static size_t get_initializer_size(initializer_kind_t kind)
411 {
412         static const size_t sizes[] = {
413                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
414                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
415                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
416                 [INITIALIZER_LIST]        = sizeof(initializer_list_t),
417                 [INITIALIZER_DESIGNATOR]  = sizeof(initializer_designator_t)
418         };
419         assert(kind < sizeof(sizes) / sizeof(*sizes));
420         assert(sizes[kind] != 0);
421         return sizes[kind];
422 }
423
424 /**
425  * Allocate an initializer node of given kind and initialize all
426  * fields with zero.
427  */
428 static initializer_t *allocate_initializer_zero(initializer_kind_t kind)
429 {
430         initializer_t *result = allocate_ast_zero(get_initializer_size(kind));
431         result->kind          = kind;
432
433         return result;
434 }
435
436 /**
437  * Free a type from the type obstack.
438  */
439 static void free_type(void *type)
440 {
441         obstack_free(type_obst, type);
442 }
443
444 /**
445  * Returns the index of the top element of the environment stack.
446  */
447 static size_t environment_top(void)
448 {
449         return ARR_LEN(environment_stack);
450 }
451
452 /**
453  * Returns the index of the top element of the label stack.
454  */
455 static size_t label_top(void)
456 {
457         return ARR_LEN(label_stack);
458 }
459
460 /**
461  * Return the next token.
462  */
463 static inline void next_token(void)
464 {
465         token                              = lookahead_buffer[lookahead_bufpos];
466         lookahead_buffer[lookahead_bufpos] = lexer_token;
467         lexer_next_token();
468
469         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
470
471 #ifdef PRINT_TOKENS
472         print_token(stderr, &token);
473         fprintf(stderr, "\n");
474 #endif
475 }
476
477 /**
478  * Return the next token with a given lookahead.
479  */
480 static inline const token_t *look_ahead(int num)
481 {
482         assert(num > 0 && num <= MAX_LOOKAHEAD);
483         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
484         return &lookahead_buffer[pos];
485 }
486
487 /**
488  * Adds a token to the token anchor set (a multi-set).
489  */
490 static void add_anchor_token(int token_type) {
491         assert(0 <= token_type && token_type < T_LAST_TOKEN);
492         ++token_anchor_set[token_type];
493 }
494
495 static int save_and_reset_anchor_state(int token_type) {
496         assert(0 <= token_type && token_type < T_LAST_TOKEN);
497         int count = token_anchor_set[token_type];
498         token_anchor_set[token_type] = 0;
499         return count;
500 }
501
502 static void restore_anchor_state(int token_type, int count) {
503         assert(0 <= token_type && token_type < T_LAST_TOKEN);
504         token_anchor_set[token_type] = count;
505 }
506
507 /**
508  * Remove a token from the token anchor set (a multi-set).
509  */
510 static void rem_anchor_token(int token_type) {
511         assert(0 <= token_type && token_type < T_LAST_TOKEN);
512         --token_anchor_set[token_type];
513 }
514
515 static bool at_anchor(void) {
516         if(token.type < 0)
517                 return false;
518         return token_anchor_set[token.type];
519 }
520
521 /**
522  * Eat tokens until a matching token is found.
523  */
524 static void eat_until_matching_token(int type) {
525         unsigned parenthesis_count = 0;
526         unsigned brace_count = 0;
527         unsigned bracket_count = 0;
528         int end_token = type;
529
530         if(type == '(')
531                 end_token = ')';
532         else if(type == '{')
533                 end_token = '}';
534         else if(type == '[')
535                 end_token = ']';
536
537         while(token.type != end_token ||
538               (parenthesis_count > 0 || brace_count > 0 || bracket_count > 0)) {
539
540                 switch(token.type) {
541                 case T_EOF: return;
542                 case '(': ++parenthesis_count; break;
543                 case '{': ++brace_count;       break;
544                 case '[': ++bracket_count;     break;
545                 case ')':
546                         if(parenthesis_count > 0)
547                                 --parenthesis_count;
548                         break;
549                 case '}':
550                         if(brace_count > 0)
551                                 --brace_count;
552                         break;
553                 case ']':
554                         if(bracket_count > 0)
555                                 --bracket_count;
556                         break;
557                 default:
558                         break;
559                 }
560                 next_token();
561         }
562 }
563
564 /**
565  * Eat input tokens until an anchor is found.
566  */
567 static void eat_until_anchor(void) {
568         if(token.type == T_EOF)
569                 return;
570         while(token_anchor_set[token.type] == 0) {
571                 if(token.type == '(' || token.type == '{' || token.type == '[')
572                         eat_until_matching_token(token.type);
573                 if(token.type == T_EOF)
574                         break;
575                 next_token();
576         }
577 }
578
579 static void eat_block(void) {
580         eat_until_matching_token('{');
581         if(token.type == '}')
582                 next_token();
583 }
584
585 /**
586  * eat all token until a ';' is reached or a stop token is found.
587  */
588 static void eat_statement(void) {
589         eat_until_matching_token(';');
590         if(token.type == ';')
591                 next_token();
592 }
593
594 #define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
595
596 /**
597  * Report a parse error because an expected token was not found.
598  */
599 static
600 #if defined __GNUC__ && __GNUC__ >= 4
601 __attribute__((sentinel))
602 #endif
603 void parse_error_expected(const char *message, ...)
604 {
605         if(message != NULL) {
606                 errorf(HERE, "%s", message);
607         }
608         va_list ap;
609         va_start(ap, message);
610         errorf(HERE, "got %K, expected %#k", &token, &ap, ", ");
611         va_end(ap);
612 }
613
614 /**
615  * Report a type error.
616  */
617 static void type_error(const char *msg, const source_position_t *source_position,
618                        type_t *type)
619 {
620         errorf(source_position, "%s, but found type '%T'", msg, type);
621 }
622
623 /**
624  * Report an incompatible type.
625  */
626 static void type_error_incompatible(const char *msg,
627                 const source_position_t *source_position, type_t *type1, type_t *type2)
628 {
629         errorf(source_position, "%s, incompatible types: '%T' - '%T'",
630                msg, type1, type2);
631 }
632
633 /**
634  * Expect the the current token is the expected token.
635  * If not, generate an error, eat the current statement,
636  * and goto the end_error label.
637  */
638 #define expect(expected)                              \
639         do {                                              \
640     if(UNLIKELY(token.type != (expected))) {          \
641         parse_error_expected(NULL, (expected), NULL); \
642                 add_anchor_token(expected);                   \
643         eat_until_anchor();                           \
644         if (token.type == expected)                   \
645                 next_token();                             \
646                 rem_anchor_token(expected);                   \
647         goto end_error;                               \
648     }                                                 \
649     next_token();                                     \
650         } while(0)
651
652 static void set_scope(scope_t *new_scope)
653 {
654         if(scope != NULL) {
655                 scope->last_declaration = last_declaration;
656         }
657         scope = new_scope;
658
659         last_declaration = new_scope->last_declaration;
660 }
661
662 /**
663  * Search a symbol in a given namespace and returns its declaration or
664  * NULL if this symbol was not found.
665  */
666 static declaration_t *get_declaration(const symbol_t *const symbol,
667                                       const namespace_t namespc)
668 {
669         declaration_t *declaration = symbol->declaration;
670         for( ; declaration != NULL; declaration = declaration->symbol_next) {
671                 if(declaration->namespc == namespc)
672                         return declaration;
673         }
674
675         return NULL;
676 }
677
678 /**
679  * pushs an environment_entry on the environment stack and links the
680  * corresponding symbol to the new entry
681  */
682 static void stack_push(stack_entry_t **stack_ptr, declaration_t *declaration)
683 {
684         symbol_t    *symbol  = declaration->symbol;
685         namespace_t  namespc = (namespace_t) declaration->namespc;
686
687         /* replace/add declaration into declaration list of the symbol */
688         declaration_t *iter = symbol->declaration;
689         if (iter == NULL) {
690                 symbol->declaration = declaration;
691         } else {
692                 declaration_t *iter_last = NULL;
693                 for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
694                         /* replace an entry? */
695                         if(iter->namespc == namespc) {
696                                 if(iter_last == NULL) {
697                                         symbol->declaration = declaration;
698                                 } else {
699                                         iter_last->symbol_next = declaration;
700                                 }
701                                 declaration->symbol_next = iter->symbol_next;
702                                 break;
703                         }
704                 }
705                 if(iter == NULL) {
706                         assert(iter_last->symbol_next == NULL);
707                         iter_last->symbol_next = declaration;
708                 }
709         }
710
711         /* remember old declaration */
712         stack_entry_t entry;
713         entry.symbol          = symbol;
714         entry.old_declaration = iter;
715         entry.namespc         = (unsigned short) namespc;
716         ARR_APP1(stack_entry_t, *stack_ptr, entry);
717 }
718
719 static void environment_push(declaration_t *declaration)
720 {
721         assert(declaration->source_position.input_name != NULL);
722         assert(declaration->parent_scope != NULL);
723         stack_push(&environment_stack, declaration);
724 }
725
726 static void label_push(declaration_t *declaration)
727 {
728         declaration->parent_scope = &current_function->scope;
729         stack_push(&label_stack, declaration);
730 }
731
732 /**
733  * pops symbols from the environment stack until @p new_top is the top element
734  */
735 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
736 {
737         stack_entry_t *stack = *stack_ptr;
738         size_t         top   = ARR_LEN(stack);
739         size_t         i;
740
741         assert(new_top <= top);
742         if(new_top == top)
743                 return;
744
745         for(i = top; i > new_top; --i) {
746                 stack_entry_t *entry = &stack[i - 1];
747
748                 declaration_t *old_declaration = entry->old_declaration;
749                 symbol_t      *symbol          = entry->symbol;
750                 namespace_t    namespc         = (namespace_t)entry->namespc;
751
752                 /* replace/remove declaration */
753                 declaration_t *declaration = symbol->declaration;
754                 assert(declaration != NULL);
755                 if(declaration->namespc == namespc) {
756                         if(old_declaration == NULL) {
757                                 symbol->declaration = declaration->symbol_next;
758                         } else {
759                                 symbol->declaration = old_declaration;
760                         }
761                 } else {
762                         declaration_t *iter_last = declaration;
763                         declaration_t *iter      = declaration->symbol_next;
764                         for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
765                                 /* replace an entry? */
766                                 if(iter->namespc == namespc) {
767                                         assert(iter_last != NULL);
768                                         iter_last->symbol_next = old_declaration;
769                                         if(old_declaration != NULL) {
770                                                 old_declaration->symbol_next = iter->symbol_next;
771                                         }
772                                         break;
773                                 }
774                         }
775                         assert(iter != NULL);
776                 }
777         }
778
779         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
780 }
781
782 static void environment_pop_to(size_t new_top)
783 {
784         stack_pop_to(&environment_stack, new_top);
785 }
786
787 static void label_pop_to(size_t new_top)
788 {
789         stack_pop_to(&label_stack, new_top);
790 }
791
792
793 static int get_rank(const type_t *type)
794 {
795         assert(!is_typeref(type));
796         /* The C-standard allows promoting enums to int or unsigned int (see Â§ 7.2.2
797          * and esp. footnote 108). However we can't fold constants (yet), so we
798          * can't decide whether unsigned int is possible, while int always works.
799          * (unsigned int would be preferable when possible... for stuff like
800          *  struct { enum { ... } bla : 4; } ) */
801         if(type->kind == TYPE_ENUM)
802                 return ATOMIC_TYPE_INT;
803
804         assert(type->kind == TYPE_ATOMIC);
805         return type->atomic.akind;
806 }
807
808 static type_t *promote_integer(type_t *type)
809 {
810         if(type->kind == TYPE_BITFIELD)
811                 type = type->bitfield.base_type;
812
813         if(get_rank(type) < ATOMIC_TYPE_INT)
814                 type = type_int;
815
816         return type;
817 }
818
819 /**
820  * Create a cast expression.
821  *
822  * @param expression  the expression to cast
823  * @param dest_type   the destination type
824  */
825 static expression_t *create_cast_expression(expression_t *expression,
826                                             type_t *dest_type)
827 {
828         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST_IMPLICIT);
829
830         cast->unary.value = expression;
831         cast->base.type   = dest_type;
832
833         return cast;
834 }
835
836 /**
837  * Check if a given expression represents the 0 pointer constant.
838  */
839 static bool is_null_pointer_constant(const expression_t *expression)
840 {
841         /* skip void* cast */
842         if(expression->kind == EXPR_UNARY_CAST
843                         || expression->kind == EXPR_UNARY_CAST_IMPLICIT) {
844                 expression = expression->unary.value;
845         }
846
847         /* TODO: not correct yet, should be any constant integer expression
848          * which evaluates to 0 */
849         if (expression->kind != EXPR_CONST)
850                 return false;
851
852         type_t *const type = skip_typeref(expression->base.type);
853         if (!is_type_integer(type))
854                 return false;
855
856         return expression->conste.v.int_value == 0;
857 }
858
859 /**
860  * Create an implicit cast expression.
861  *
862  * @param expression  the expression to cast
863  * @param dest_type   the destination type
864  */
865 static expression_t *create_implicit_cast(expression_t *expression,
866                                           type_t *dest_type)
867 {
868         type_t *const source_type = expression->base.type;
869
870         if (source_type == dest_type)
871                 return expression;
872
873         return create_cast_expression(expression, dest_type);
874 }
875
876 typedef enum assign_error_t {
877         ASSIGN_SUCCESS,
878         ASSIGN_ERROR_INCOMPATIBLE,
879         ASSIGN_ERROR_POINTER_QUALIFIER_MISSING,
880         ASSIGN_WARNING_POINTER_INCOMPATIBLE,
881         ASSIGN_WARNING_POINTER_FROM_INT,
882         ASSIGN_WARNING_INT_FROM_POINTER
883 } assign_error_t;
884
885 static void report_assign_error(assign_error_t error, type_t *orig_type_left,
886                                 const expression_t *const right,
887                                 const char *context,
888                                 const source_position_t *source_position)
889 {
890         type_t *const orig_type_right = right->base.type;
891         type_t *const type_left       = skip_typeref(orig_type_left);
892         type_t *const type_right      = skip_typeref(orig_type_right);
893
894         switch (error) {
895         case ASSIGN_SUCCESS:
896                 return;
897         case ASSIGN_ERROR_INCOMPATIBLE:
898                 errorf(source_position,
899                        "destination type '%T' in %s is incompatible with type '%T'",
900                        orig_type_left, context, orig_type_right);
901                 return;
902
903         case ASSIGN_ERROR_POINTER_QUALIFIER_MISSING: {
904                 type_t *points_to_left
905                         = skip_typeref(type_left->pointer.points_to);
906                 type_t *points_to_right
907                         = skip_typeref(type_right->pointer.points_to);
908
909                 /* the left type has all qualifiers from the right type */
910                 unsigned missing_qualifiers
911                         = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
912                 errorf(source_position,
913                        "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointed-to type",
914                        orig_type_left, context, orig_type_right, missing_qualifiers);
915                 return;
916         }
917
918         case ASSIGN_WARNING_POINTER_INCOMPATIBLE:
919                 warningf(source_position,
920                          "destination type '%T' in %s is incompatible with '%E' of type '%T'",
921                                  orig_type_left, context, right, orig_type_right);
922                 return;
923
924         case ASSIGN_WARNING_POINTER_FROM_INT:
925                 warningf(source_position,
926                          "%s makes integer '%T' from pointer '%T' without a cast",
927                                  context, orig_type_left, orig_type_right);
928                 return;
929
930         case ASSIGN_WARNING_INT_FROM_POINTER:
931                 warningf(source_position,
932                                 "%s makes integer '%T' from pointer '%T' without a cast",
933                                 context, orig_type_left, orig_type_right);
934                 return;
935
936         default:
937                 panic("invalid error value");
938         }
939 }
940
941 /** Implements the rules from Â§ 6.5.16.1 */
942 static assign_error_t semantic_assign(type_t *orig_type_left,
943                                       const expression_t *const right)
944 {
945         type_t *const orig_type_right = right->base.type;
946         type_t *const type_left       = skip_typeref(orig_type_left);
947         type_t *const type_right      = skip_typeref(orig_type_right);
948
949         if(is_type_pointer(type_left)) {
950                 if(is_null_pointer_constant(right)) {
951                         return ASSIGN_SUCCESS;
952                 } else if(is_type_pointer(type_right)) {
953                         type_t *points_to_left
954                                 = skip_typeref(type_left->pointer.points_to);
955                         type_t *points_to_right
956                                 = skip_typeref(type_right->pointer.points_to);
957
958                         /* the left type has all qualifiers from the right type */
959                         unsigned missing_qualifiers
960                                 = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
961                         if(missing_qualifiers != 0) {
962                                 return ASSIGN_ERROR_POINTER_QUALIFIER_MISSING;
963                         }
964
965                         points_to_left  = get_unqualified_type(points_to_left);
966                         points_to_right = get_unqualified_type(points_to_right);
967
968                         if (is_type_atomic(points_to_left, ATOMIC_TYPE_VOID) ||
969                                         is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)) {
970                                 return ASSIGN_SUCCESS;
971                         }
972
973                         if (!types_compatible(points_to_left, points_to_right)) {
974                                 return ASSIGN_WARNING_POINTER_INCOMPATIBLE;
975                         }
976
977                         return ASSIGN_SUCCESS;
978                 } else if(is_type_integer(type_right)) {
979                         return ASSIGN_WARNING_POINTER_FROM_INT;
980                 }
981         } else if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
982             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
983                 && is_type_pointer(type_right))) {
984                 return ASSIGN_SUCCESS;
985         } else if ((is_type_compound(type_left)  && is_type_compound(type_right))
986                         || (is_type_builtin(type_left) && is_type_builtin(type_right))) {
987                 type_t *const unqual_type_left  = get_unqualified_type(type_left);
988                 type_t *const unqual_type_right = get_unqualified_type(type_right);
989                 if (types_compatible(unqual_type_left, unqual_type_right)) {
990                         return ASSIGN_SUCCESS;
991                 }
992         } else if (is_type_integer(type_left) && is_type_pointer(type_right)) {
993                 return ASSIGN_WARNING_INT_FROM_POINTER;
994         }
995
996         if (!is_type_valid(type_left) || !is_type_valid(type_right))
997                 return ASSIGN_SUCCESS;
998
999         return ASSIGN_ERROR_INCOMPATIBLE;
1000 }
1001
1002 static expression_t *parse_constant_expression(void)
1003 {
1004         /* start parsing at precedence 7 (conditional expression) */
1005         expression_t *result = parse_sub_expression(7);
1006
1007         if(!is_constant_expression(result)) {
1008                 errorf(&result->base.source_position,
1009                        "expression '%E' is not constant\n", result);
1010         }
1011
1012         return result;
1013 }
1014
1015 static expression_t *parse_assignment_expression(void)
1016 {
1017         /* start parsing at precedence 2 (assignment expression) */
1018         return parse_sub_expression(2);
1019 }
1020
1021 static type_t *make_global_typedef(const char *name, type_t *type)
1022 {
1023         symbol_t *const symbol       = symbol_table_insert(name);
1024
1025         declaration_t *const declaration = allocate_declaration_zero();
1026         declaration->namespc                = NAMESPACE_NORMAL;
1027         declaration->storage_class          = STORAGE_CLASS_TYPEDEF;
1028         declaration->declared_storage_class = STORAGE_CLASS_TYPEDEF;
1029         declaration->type                   = type;
1030         declaration->symbol                 = symbol;
1031         declaration->source_position        = builtin_source_position;
1032
1033         record_declaration(declaration);
1034
1035         type_t *typedef_type               = allocate_type_zero(TYPE_TYPEDEF, &builtin_source_position);
1036         typedef_type->typedeft.declaration = declaration;
1037
1038         return typedef_type;
1039 }
1040
1041 static string_t parse_string_literals(void)
1042 {
1043         assert(token.type == T_STRING_LITERAL);
1044         string_t result = token.v.string;
1045
1046         next_token();
1047
1048         while (token.type == T_STRING_LITERAL) {
1049                 result = concat_strings(&result, &token.v.string);
1050                 next_token();
1051         }
1052
1053         return result;
1054 }
1055
1056 static const char *gnu_attribute_names[GNU_AK_LAST] = {
1057         [GNU_AK_CONST]                  = "const",
1058         [GNU_AK_VOLATILE]               = "volatile",
1059         [GNU_AK_CDECL]                  = "cdecl",
1060         [GNU_AK_STDCALL]                = "stdcall",
1061         [GNU_AK_FASTCALL]               = "fastcall",
1062         [GNU_AK_DEPRECATED]             = "deprecated",
1063         [GNU_AK_NOINLINE]               = "noinline",
1064         [GNU_AK_NORETURN]               = "noreturn",
1065         [GNU_AK_NAKED]                  = "naked",
1066         [GNU_AK_PURE]                   = "pure",
1067         [GNU_AK_ALWAYS_INLINE]          = "always_inline",
1068         [GNU_AK_MALLOC]                 = "malloc",
1069         [GNU_AK_WEAK]                   = "weak",
1070         [GNU_AK_CONSTRUCTOR]            = "constructor",
1071         [GNU_AK_DESTRUCTOR]             = "destructor",
1072         [GNU_AK_NOTHROW]                = "nothrow",
1073         [GNU_AK_TRANSPARENT_UNION]      = "transparent_union",
1074         [GNU_AK_COMMON]                 = "common",
1075         [GNU_AK_NOCOMMON]               = "nocommon",
1076         [GNU_AK_PACKED]                 = "packed",
1077         [GNU_AK_SHARED]                 = "shared",
1078         [GNU_AK_NOTSHARED]              = "notshared",
1079         [GNU_AK_USED]                   = "used",
1080         [GNU_AK_UNUSED]                 = "unused",
1081         [GNU_AK_NO_INSTRUMENT_FUNCTION] = "no_instrument_function",
1082         [GNU_AK_WARN_UNUSED_RESULT]     = "warn_unused_result",
1083         [GNU_AK_LONGCALL]               = "longcall",
1084         [GNU_AK_SHORTCALL]              = "shortcall",
1085         [GNU_AK_LONG_CALL]              = "long_call",
1086         [GNU_AK_SHORT_CALL]             = "short_call",
1087         [GNU_AK_FUNCTION_VECTOR]        = "function_vector",
1088         [GNU_AK_INTERRUPT]                              = "interrupt",
1089         [GNU_AK_INTERRUPT_HANDLER]      = "interrupt_handler",
1090         [GNU_AK_NMI_HANDLER]            = "nmi_handler",
1091         [GNU_AK_NESTING]                = "nesting",
1092         [GNU_AK_NEAR]                   = "near",
1093         [GNU_AK_FAR]                    = "far",
1094         [GNU_AK_SIGNAL]                 = "signal",
1095         [GNU_AK_EIGTHBIT_DATA]          = "eightbit_data",
1096         [GNU_AK_TINY_DATA]              = "tiny_data",
1097         [GNU_AK_SAVEALL]                = "saveall",
1098         [GNU_AK_FLATTEN]                = "flatten",
1099         [GNU_AK_SSEREGPARM]             = "sseregparm",
1100         [GNU_AK_EXTERNALLY_VISIBLE]     = "externally_visible",
1101         [GNU_AK_RETURN_TWICE]           = "return_twice",
1102         [GNU_AK_MAY_ALIAS]              = "may_alias",
1103         [GNU_AK_MS_STRUCT]              = "ms_struct",
1104         [GNU_AK_GCC_STRUCT]             = "gcc_struct",
1105         [GNU_AK_DLLIMPORT]              = "dllimport",
1106         [GNU_AK_DLLEXPORT]              = "dllexport",
1107         [GNU_AK_ALIGNED]                = "aligned",
1108         [GNU_AK_ALIAS]                  = "alias",
1109         [GNU_AK_SECTION]                = "section",
1110         [GNU_AK_FORMAT]                 = "format",
1111         [GNU_AK_FORMAT_ARG]             = "format_arg",
1112         [GNU_AK_WEAKREF]                = "weakref",
1113         [GNU_AK_NONNULL]                = "nonnull",
1114         [GNU_AK_TLS_MODEL]              = "tls_model",
1115         [GNU_AK_VISIBILITY]             = "visibility",
1116         [GNU_AK_REGPARM]                = "regparm",
1117         [GNU_AK_MODE]                   = "mode",
1118         [GNU_AK_MODEL]                  = "model",
1119         [GNU_AK_TRAP_EXIT]              = "trap_exit",
1120         [GNU_AK_SP_SWITCH]              = "sp_switch",
1121         [GNU_AK_SENTINEL]               = "sentinel"
1122 };
1123
1124 /**
1125  * compare two string, ignoring double underscores on the second.
1126  */
1127 static int strcmp_underscore(const char *s1, const char *s2) {
1128         if(s2[0] == '_' && s2[1] == '_') {
1129                 size_t len2 = strlen(s2);
1130                 size_t len1 = strlen(s1);
1131                 if(len1 == len2-4 && s2[len2-2] == '_' && s2[len2-1] == '_') {
1132                         return strncmp(s1, s2+2, len2-4);
1133                 }
1134         }
1135
1136         return strcmp(s1, s2);
1137 }
1138
1139 /**
1140  * Allocate a new gnu temporal attribute.
1141  */
1142 static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind) {
1143         gnu_attribute_t *attribute = obstack_alloc(&temp_obst, sizeof(*attribute));
1144         attribute->kind            = kind;
1145         attribute->next            = NULL;
1146         attribute->invalid         = false;
1147         attribute->have_arguments  = false;
1148
1149         return attribute;
1150 }
1151
1152 /**
1153  * parse one constant expression argument.
1154  */
1155 static void parse_gnu_attribute_const_arg(gnu_attribute_t *attribute) {
1156         expression_t *expression;
1157         add_anchor_token(')');
1158         expression = parse_constant_expression();
1159         rem_anchor_token(')');
1160         expect(')');
1161         (void)expression;
1162         return;
1163 end_error:
1164         attribute->invalid = true;
1165 }
1166
1167 /**
1168  * parse a list of constant expressions arguments.
1169  */
1170 static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute) {
1171         expression_t *expression;
1172         add_anchor_token(')');
1173         add_anchor_token(',');
1174         while(true){
1175                 expression = parse_constant_expression();
1176                 if(token.type != ',')
1177                         break;
1178                 next_token();
1179         }
1180         rem_anchor_token(',');
1181         rem_anchor_token(')');
1182         expect(')');
1183         (void)expression;
1184         return;
1185 end_error:
1186         attribute->invalid = true;
1187 }
1188
1189 /**
1190  * parse one string literal argument.
1191  */
1192 static void parse_gnu_attribute_string_arg(gnu_attribute_t *attribute,
1193                                            string_t *string)
1194 {
1195         add_anchor_token('(');
1196         if(token.type != T_STRING_LITERAL) {
1197                 parse_error_expected("while parsing attribute directive",
1198                                      T_STRING_LITERAL, NULL);
1199                 goto end_error;
1200         }
1201         *string = parse_string_literals();
1202         rem_anchor_token('(');
1203         expect(')');
1204         return;
1205 end_error:
1206         attribute->invalid = true;
1207 }
1208
1209 /**
1210  * parse one tls model.
1211  */
1212 static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute) {
1213         static const char *tls_models[] = {
1214                 "global-dynamic",
1215                 "local-dynamic",
1216                 "initial-exec",
1217                 "local-exec"
1218         };
1219         string_t string = { NULL, 0 };
1220         parse_gnu_attribute_string_arg(attribute, &string);
1221         if(string.begin != NULL) {
1222                 for(size_t i = 0; i < 4; ++i) {
1223                         if(strcmp(tls_models[i], string.begin) == 0) {
1224                                 attribute->u.value = i;
1225                                 return;
1226                         }
1227                 }
1228                 errorf(HERE, "'%s' is an unrecognized tls model", string.begin);
1229         }
1230         attribute->invalid = true;
1231 }
1232
1233 /**
1234  * parse one tls model.
1235  */
1236 static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute) {
1237         static const char *visibilities[] = {
1238                 "default",
1239                 "protected",
1240                 "hidden",
1241                 "internal"
1242         };
1243         string_t string = { NULL, 0 };
1244         parse_gnu_attribute_string_arg(attribute, &string);
1245         if(string.begin != NULL) {
1246                 for(size_t i = 0; i < 4; ++i) {
1247                         if(strcmp(visibilities[i], string.begin) == 0) {
1248                                 attribute->u.value = i;
1249                                 return;
1250                         }
1251                 }
1252                 errorf(HERE, "'%s' is an unrecognized visibility", string.begin);
1253         }
1254         attribute->invalid = true;
1255 }
1256
1257 /**
1258  * parse one (code) model.
1259  */
1260 static void parse_gnu_attribute_model_arg(gnu_attribute_t *attribute) {
1261         static const char *visibilities[] = {
1262                 "small",
1263                 "medium",
1264                 "large"
1265         };
1266         string_t string = { NULL, 0 };
1267         parse_gnu_attribute_string_arg(attribute, &string);
1268         if(string.begin != NULL) {
1269                 for(int i = 0; i < 3; ++i) {
1270                         if(strcmp(visibilities[i], string.begin) == 0) {
1271                                 attribute->u.value = i;
1272                                 return;
1273                         }
1274                 }
1275                 errorf(HERE, "'%s' is an unrecognized model", string.begin);
1276         }
1277         attribute->invalid = true;
1278 }
1279
1280 static void parse_gnu_attribute_mode_arg(gnu_attribute_t *attribute)
1281 {
1282         /* TODO: find out what is allowed here... */
1283
1284         /* at least: byte, word, pointer, list of machine modes
1285          * __XXX___ is interpreted as XXX */
1286         add_anchor_token(')');
1287         expect(T_IDENTIFIER);
1288         rem_anchor_token(')');
1289         expect(')');
1290         return;
1291 end_error:
1292         attribute->invalid = true;
1293 }
1294
1295 /**
1296  * parse one interrupt argument.
1297  */
1298 static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute) {
1299         static const char *interrupts[] = {
1300                 "IRQ",
1301                 "FIQ",
1302                 "SWI",
1303                 "ABORT",
1304                 "UNDEF"
1305         };
1306         string_t string = { NULL, 0 };
1307         parse_gnu_attribute_string_arg(attribute, &string);
1308         if(string.begin != NULL) {
1309                 for(size_t i = 0; i < 5; ++i) {
1310                         if(strcmp(interrupts[i], string.begin) == 0) {
1311                                 attribute->u.value = i;
1312                                 return;
1313                         }
1314                 }
1315                 errorf(HERE, "'%s' is not an interrupt", string.begin);
1316         }
1317         attribute->invalid = true;
1318 }
1319
1320 /**
1321  * parse ( identifier, const expression, const expression )
1322  */
1323 static void parse_gnu_attribute_format_args(gnu_attribute_t *attribute) {
1324         static const char *format_names[] = {
1325                 "printf",
1326                 "scanf",
1327                 "strftime",
1328                 "strfmon"
1329         };
1330         int i;
1331
1332         if(token.type != T_IDENTIFIER) {
1333                 parse_error_expected("while parsing format attribute directive", T_IDENTIFIER, NULL);
1334                 goto end_error;
1335         }
1336         const char *name = token.v.symbol->string;
1337         for(i = 0; i < 4; ++i) {
1338                 if(strcmp_underscore(format_names[i], name) == 0)
1339                         break;
1340         }
1341         if(i >= 4) {
1342                 if(warning.attribute)
1343                         warningf(HERE, "'%s' is an unrecognized format function type", name);
1344         }
1345         next_token();
1346
1347         expect(',');
1348         add_anchor_token(')');
1349         add_anchor_token(',');
1350         parse_constant_expression();
1351         rem_anchor_token(',');
1352         rem_anchor_token('(');
1353
1354         expect(',');
1355         add_anchor_token(')');
1356         parse_constant_expression();
1357         rem_anchor_token('(');
1358         expect(')');
1359         return;
1360 end_error:
1361         attribute->u.value = true;
1362 }
1363
1364 static void check_no_argument(gnu_attribute_t *attribute, const char *name)
1365 {
1366         if(!attribute->have_arguments)
1367                 return;
1368
1369         /* should have no arguments */
1370         errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1371         eat_until_matching_token('(');
1372         /* we have already consumed '(', so we stop before ')', eat it */
1373         eat(')');
1374         attribute->invalid = true;
1375 }
1376
1377 /**
1378  * Parse one GNU attribute.
1379  *
1380  * Note that attribute names can be specified WITH or WITHOUT
1381  * double underscores, ie const or __const__.
1382  *
1383  * The following attributes are parsed without arguments
1384  *  const
1385  *  volatile
1386  *  cdecl
1387  *  stdcall
1388  *  fastcall
1389  *  deprecated
1390  *  noinline
1391  *  noreturn
1392  *  naked
1393  *  pure
1394  *  always_inline
1395  *  malloc
1396  *  weak
1397  *  constructor
1398  *  destructor
1399  *  nothrow
1400  *  transparent_union
1401  *  common
1402  *  nocommon
1403  *  packed
1404  *  shared
1405  *  notshared
1406  *  used
1407  *  unused
1408  *  no_instrument_function
1409  *  warn_unused_result
1410  *  longcall
1411  *  shortcall
1412  *  long_call
1413  *  short_call
1414  *  function_vector
1415  *  interrupt_handler
1416  *  nmi_handler
1417  *  nesting
1418  *  near
1419  *  far
1420  *  signal
1421  *  eightbit_data
1422  *  tiny_data
1423  *  saveall
1424  *  flatten
1425  *  sseregparm
1426  *  externally_visible
1427  *  return_twice
1428  *  may_alias
1429  *  ms_struct
1430  *  gcc_struct
1431  *  dllimport
1432  *  dllexport
1433  *
1434  * The following attributes are parsed with arguments
1435  *  aligned( const expression )
1436  *  alias( string literal )
1437  *  section( string literal )
1438  *  format( identifier, const expression, const expression )
1439  *  format_arg( const expression )
1440  *  tls_model( string literal )
1441  *  visibility( string literal )
1442  *  regparm( const expression )
1443  *  model( string leteral )
1444  *  trap_exit( const expression )
1445  *  sp_switch( string literal )
1446  *
1447  * The following attributes might have arguments
1448  *  weak_ref( string literal )
1449  *  non_null( const expression // ',' )
1450  *  interrupt( string literal )
1451  *  sentinel( constant expression )
1452  */
1453 static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
1454 {
1455         gnu_attribute_t *head      = *attributes;
1456         gnu_attribute_t *last      = *attributes;
1457         decl_modifiers_t modifiers = 0;
1458         gnu_attribute_t *attribute;
1459
1460         eat(T___attribute__);
1461         expect('(');
1462         expect('(');
1463
1464         if(token.type != ')') {
1465                 /* find the end of the list */
1466                 if(last != NULL) {
1467                         while(last->next != NULL)
1468                                 last = last->next;
1469                 }
1470
1471                 /* non-empty attribute list */
1472                 while(true) {
1473                         const char *name;
1474                         if (token.type == T_const) {
1475                                 name = "const";
1476                         } else if(token.type == T_volatile) {
1477                                 name = "volatile";
1478                         } else if(token.type == T_cdecl) {
1479                                 /* __attribute__((cdecl)), WITH ms mode */
1480                                 name = "cdecl";
1481                         } else if (token.type == T_IDENTIFIER) {
1482                                 const symbol_t *sym = token.v.symbol;
1483                                 name = sym->string;
1484                         } else {
1485                                 parse_error_expected("while parsing GNU attribute", T_IDENTIFIER, NULL);
1486                                 break;
1487                         }
1488
1489                         next_token();
1490
1491                         int i;
1492                         for(i = 0; i < GNU_AK_LAST; ++i) {
1493                                 if(strcmp_underscore(gnu_attribute_names[i], name) == 0)
1494                                         break;
1495                         }
1496                         gnu_attribute_kind_t kind = (gnu_attribute_kind_t)i;
1497
1498                         attribute = NULL;
1499                         if(kind == GNU_AK_LAST) {
1500                                 if(warning.attribute)
1501                                         warningf(HERE, "'%s' attribute directive ignored", name);
1502
1503                                 /* skip possible arguments */
1504                                 if(token.type == '(') {
1505                                         eat_until_matching_token(')');
1506                                 }
1507                         } else {
1508                                 /* check for arguments */
1509                                 attribute = allocate_gnu_attribute(kind);
1510                                 if(token.type == '(') {
1511                                         next_token();
1512                                         if(token.type == ')') {
1513                                                 /* empty args are allowed */
1514                                                 next_token();
1515                                         } else
1516                                                 attribute->have_arguments = true;
1517                                 }
1518
1519                                 switch(kind) {
1520                                 case GNU_AK_CONST:
1521                                 case GNU_AK_VOLATILE:
1522                                 case GNU_AK_CDECL:
1523                                 case GNU_AK_STDCALL:
1524                                 case GNU_AK_FASTCALL:
1525                                 case GNU_AK_DEPRECATED:
1526                                 case GNU_AK_NAKED:
1527                                 case GNU_AK_MALLOC:
1528                                 case GNU_AK_WEAK:
1529                                 case GNU_AK_COMMON:
1530                                 case GNU_AK_NOCOMMON:
1531                                 case GNU_AK_SHARED:
1532                                 case GNU_AK_NOTSHARED:
1533                                 case GNU_AK_USED:
1534                                 case GNU_AK_UNUSED:
1535                                 case GNU_AK_NO_INSTRUMENT_FUNCTION:
1536                                 case GNU_AK_WARN_UNUSED_RESULT:
1537                                 case GNU_AK_LONGCALL:
1538                                 case GNU_AK_SHORTCALL:
1539                                 case GNU_AK_LONG_CALL:
1540                                 case GNU_AK_SHORT_CALL:
1541                                 case GNU_AK_FUNCTION_VECTOR:
1542                                 case GNU_AK_INTERRUPT_HANDLER:
1543                                 case GNU_AK_NMI_HANDLER:
1544                                 case GNU_AK_NESTING:
1545                                 case GNU_AK_NEAR:
1546                                 case GNU_AK_FAR:
1547                                 case GNU_AK_SIGNAL:
1548                                 case GNU_AK_EIGTHBIT_DATA:
1549                                 case GNU_AK_TINY_DATA:
1550                                 case GNU_AK_SAVEALL:
1551                                 case GNU_AK_FLATTEN:
1552                                 case GNU_AK_SSEREGPARM:
1553                                 case GNU_AK_EXTERNALLY_VISIBLE:
1554                                 case GNU_AK_RETURN_TWICE:
1555                                 case GNU_AK_MAY_ALIAS:
1556                                 case GNU_AK_MS_STRUCT:
1557                                 case GNU_AK_GCC_STRUCT:
1558                                         check_no_argument(attribute, name);
1559                                         break;
1560
1561                                 case GNU_AK_PURE:
1562                                         check_no_argument(attribute, name);
1563                                         modifiers |= DM_PURE;
1564                                         break;
1565
1566                                 case GNU_AK_ALWAYS_INLINE:
1567                                         check_no_argument(attribute, name);
1568                                         modifiers |= DM_FORCEINLINE;
1569                                         break;
1570
1571                                 case GNU_AK_DLLIMPORT:
1572                                         check_no_argument(attribute, name);
1573                                         modifiers |= DM_DLLIMPORT;
1574                                         break;
1575
1576                                 case GNU_AK_DLLEXPORT:
1577                                         check_no_argument(attribute, name);
1578                                         modifiers |= DM_DLLEXPORT;
1579                                         break;
1580
1581                                 case GNU_AK_PACKED:
1582                                         check_no_argument(attribute, name);
1583                                         modifiers |= DM_PACKED;
1584                                         break;
1585
1586                                 case GNU_AK_NOINLINE:
1587                                         check_no_argument(attribute, name);
1588                                         modifiers |= DM_NOINLINE;
1589                                         break;
1590
1591                                 case GNU_AK_NORETURN:
1592                                         check_no_argument(attribute, name);
1593                                         modifiers |= DM_NORETURN;
1594                                         break;
1595
1596                                 case GNU_AK_NOTHROW:
1597                                         check_no_argument(attribute, name);
1598                                         modifiers |= DM_NOTHROW;
1599                                         break;
1600
1601                                 case GNU_AK_TRANSPARENT_UNION:
1602                                         check_no_argument(attribute, name);
1603                                         modifiers |= DM_TRANSPARENT_UNION;
1604                                         break;
1605
1606                                 case GNU_AK_CONSTRUCTOR:
1607                                         check_no_argument(attribute, name);
1608                                         modifiers |= DM_CONSTRUCTOR;
1609                                         break;
1610
1611                                 case GNU_AK_DESTRUCTOR:
1612                                         check_no_argument(attribute, name);
1613                                         modifiers |= DM_DESTRUCTOR;
1614                                         break;
1615
1616                                 case GNU_AK_ALIGNED:
1617                                 case GNU_AK_FORMAT_ARG:
1618                                 case GNU_AK_REGPARM:
1619                                 case GNU_AK_TRAP_EXIT:
1620                                         if(!attribute->have_arguments) {
1621                                                 /* should have arguments */
1622                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1623                                                 attribute->invalid = true;
1624                                         } else
1625                                                 parse_gnu_attribute_const_arg(attribute);
1626                                         break;
1627                                 case GNU_AK_ALIAS:
1628                                 case GNU_AK_SECTION:
1629                                 case GNU_AK_SP_SWITCH:
1630                                         if(!attribute->have_arguments) {
1631                                                 /* should have arguments */
1632                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1633                                                 attribute->invalid = true;
1634                                         } else
1635                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1636                                         break;
1637                                 case GNU_AK_FORMAT:
1638                                         if(!attribute->have_arguments) {
1639                                                 /* should have arguments */
1640                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1641                                                 attribute->invalid = true;
1642                                         } else
1643                                                 parse_gnu_attribute_format_args(attribute);
1644                                         break;
1645                                 case GNU_AK_WEAKREF:
1646                                         /* may have one string argument */
1647                                         if(attribute->have_arguments)
1648                                                 parse_gnu_attribute_string_arg(attribute, &attribute->u.string);
1649                                         break;
1650                                 case GNU_AK_NONNULL:
1651                                         if(attribute->have_arguments)
1652                                                 parse_gnu_attribute_const_arg_list(attribute);
1653                                         break;
1654                                 case GNU_AK_TLS_MODEL:
1655                                         if(!attribute->have_arguments) {
1656                                                 /* should have arguments */
1657                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1658                                         } else
1659                                                 parse_gnu_attribute_tls_model_arg(attribute);
1660                                         break;
1661                                 case GNU_AK_VISIBILITY:
1662                                         if(!attribute->have_arguments) {
1663                                                 /* should have arguments */
1664                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1665                                         } else
1666                                                 parse_gnu_attribute_visibility_arg(attribute);
1667                                         break;
1668                                 case GNU_AK_MODEL:
1669                                         if(!attribute->have_arguments) {
1670                                                 /* should have arguments */
1671                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1672                                         } else {
1673                                                 parse_gnu_attribute_model_arg(attribute);
1674                                         }
1675                                         break;
1676                                 case GNU_AK_MODE:
1677                                         if(!attribute->have_arguments) {
1678                                                 /* should have arguments */
1679                                                 errorf(HERE, "wrong number of arguments specified for '%s' attribute", name);
1680                                         } else {
1681                                                 parse_gnu_attribute_mode_arg(attribute);
1682                                         }
1683                                         break;
1684                                 case GNU_AK_INTERRUPT:
1685                                         /* may have one string argument */
1686                                         if(attribute->have_arguments)
1687                                                 parse_gnu_attribute_interrupt_arg(attribute);
1688                                         break;
1689                                 case GNU_AK_SENTINEL:
1690                                         /* may have one string argument */
1691                                         if(attribute->have_arguments)
1692                                                 parse_gnu_attribute_const_arg(attribute);
1693                                         break;
1694                                 case GNU_AK_LAST:
1695                                         /* already handled */
1696                                         break;
1697                                 }
1698                         }
1699                         if(attribute != NULL) {
1700                                 if(last != NULL) {
1701                                         last->next = attribute;
1702                                         last       = attribute;
1703                                 } else {
1704                                         head = last = attribute;
1705                                 }
1706                         }
1707
1708                         if(token.type != ',')
1709                                 break;
1710                         next_token();
1711                 }
1712         }
1713         expect(')');
1714         expect(')');
1715 end_error:
1716         *attributes = head;
1717
1718         return modifiers;
1719 }
1720
1721 /**
1722  * Parse GNU attributes.
1723  */
1724 static decl_modifiers_t parse_attributes(gnu_attribute_t **attributes)
1725 {
1726         decl_modifiers_t modifiers = 0;
1727
1728         while(true) {
1729                 switch(token.type) {
1730                 case T___attribute__: {
1731                         modifiers |= parse_gnu_attribute(attributes);
1732                         break;
1733                 }
1734                 case T_asm:
1735                         next_token();
1736                         expect('(');
1737                         if(token.type != T_STRING_LITERAL) {
1738                                 parse_error_expected("while parsing assembler attribute",
1739                                                      T_STRING_LITERAL, NULL);
1740                                 eat_until_matching_token('(');
1741                                 break;
1742                         } else {
1743                                 parse_string_literals();
1744                         }
1745                         expect(')');
1746                         break;
1747                 default:
1748                         goto attributes_finished;
1749                 }
1750         }
1751
1752 attributes_finished:
1753 end_error:
1754         return modifiers;
1755 }
1756
1757 static designator_t *parse_designation(void)
1758 {
1759         designator_t *result = NULL;
1760         designator_t *last   = NULL;
1761
1762         while(true) {
1763                 designator_t *designator;
1764                 switch(token.type) {
1765                 case '[':
1766                         designator = allocate_ast_zero(sizeof(designator[0]));
1767                         designator->source_position = token.source_position;
1768                         next_token();
1769                         add_anchor_token(']');
1770                         designator->array_index = parse_constant_expression();
1771                         rem_anchor_token(']');
1772                         expect(']');
1773                         break;
1774                 case '.':
1775                         designator = allocate_ast_zero(sizeof(designator[0]));
1776                         designator->source_position = token.source_position;
1777                         next_token();
1778                         if(token.type != T_IDENTIFIER) {
1779                                 parse_error_expected("while parsing designator",
1780                                                      T_IDENTIFIER, NULL);
1781                                 return NULL;
1782                         }
1783                         designator->symbol = token.v.symbol;
1784                         next_token();
1785                         break;
1786                 default:
1787                         expect('=');
1788                         return result;
1789                 }
1790
1791                 assert(designator != NULL);
1792                 if(last != NULL) {
1793                         last->next = designator;
1794                 } else {
1795                         result = designator;
1796                 }
1797                 last = designator;
1798         }
1799 end_error:
1800         return NULL;
1801 }
1802
1803 static initializer_t *initializer_from_string(array_type_t *type,
1804                                               const string_t *const string)
1805 {
1806         /* TODO: check len vs. size of array type */
1807         (void) type;
1808
1809         initializer_t *initializer = allocate_initializer_zero(INITIALIZER_STRING);
1810         initializer->string.string = *string;
1811
1812         return initializer;
1813 }
1814
1815 static initializer_t *initializer_from_wide_string(array_type_t *const type,
1816                                                    wide_string_t *const string)
1817 {
1818         /* TODO: check len vs. size of array type */
1819         (void) type;
1820
1821         initializer_t *const initializer =
1822                 allocate_initializer_zero(INITIALIZER_WIDE_STRING);
1823         initializer->wide_string.string = *string;
1824
1825         return initializer;
1826 }
1827
1828 /**
1829  * Build an initializer from a given expression.
1830  */
1831 static initializer_t *initializer_from_expression(type_t *orig_type,
1832                                                   expression_t *expression)
1833 {
1834         /* TODO check that expression is a constant expression */
1835
1836         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
1837         type_t *type           = skip_typeref(orig_type);
1838         type_t *expr_type_orig = expression->base.type;
1839         type_t *expr_type      = skip_typeref(expr_type_orig);
1840         if (is_type_array(type) && expr_type->kind == TYPE_POINTER) {
1841                 array_type_t *const array_type   = &type->array;
1842                 type_t       *const element_type = skip_typeref(array_type->element_type);
1843
1844                 if (element_type->kind == TYPE_ATOMIC) {
1845                         atomic_type_kind_t akind = element_type->atomic.akind;
1846                         switch (expression->kind) {
1847                                 case EXPR_STRING_LITERAL:
1848                                         if (akind == ATOMIC_TYPE_CHAR
1849                                                         || akind == ATOMIC_TYPE_SCHAR
1850                                                         || akind == ATOMIC_TYPE_UCHAR) {
1851                                                 return initializer_from_string(array_type,
1852                                                         &expression->string.value);
1853                                         }
1854
1855                                 case EXPR_WIDE_STRING_LITERAL: {
1856                                         type_t *bare_wchar_type = skip_typeref(type_wchar_t);
1857                                         if (get_unqualified_type(element_type) == bare_wchar_type) {
1858                                                 return initializer_from_wide_string(array_type,
1859                                                         &expression->wide_string.value);
1860                                         }
1861                                 }
1862
1863                                 default:
1864                                         break;
1865                         }
1866                 }
1867         }
1868
1869         assign_error_t error = semantic_assign(type, expression);
1870         if (error == ASSIGN_ERROR_INCOMPATIBLE)
1871                 return NULL;
1872         report_assign_error(error, type, expression, "initializer",
1873                             &expression->base.source_position);
1874
1875         initializer_t *const result = allocate_initializer_zero(INITIALIZER_VALUE);
1876         result->value.value = create_implicit_cast(expression, type);
1877
1878         return result;
1879 }
1880
1881 /**
1882  * Checks if a given expression can be used as an constant initializer.
1883  */
1884 static bool is_initializer_constant(const expression_t *expression)
1885 {
1886         return is_constant_expression(expression)
1887                 || is_address_constant(expression);
1888 }
1889
1890 /**
1891  * Parses an scalar initializer.
1892  *
1893  * Â§ 6.7.8.11; eat {} without warning
1894  */
1895 static initializer_t *parse_scalar_initializer(type_t *type,
1896                                                bool must_be_constant)
1897 {
1898         /* there might be extra {} hierarchies */
1899         int braces = 0;
1900         while(token.type == '{') {
1901                 next_token();
1902                 if(braces == 0) {
1903                         warningf(HERE, "extra curly braces around scalar initializer");
1904                 }
1905                 braces++;
1906         }
1907
1908         expression_t *expression = parse_assignment_expression();
1909         if(must_be_constant && !is_initializer_constant(expression)) {
1910                 errorf(&expression->base.source_position,
1911                        "Initialisation expression '%E' is not constant\n",
1912                        expression);
1913         }
1914
1915         initializer_t *initializer = initializer_from_expression(type, expression);
1916
1917         if(initializer == NULL) {
1918                 errorf(&expression->base.source_position,
1919                        "expression '%E' (type '%T') doesn't match expected type '%T'",
1920                        expression, expression->base.type, type);
1921                 /* TODO */
1922                 return NULL;
1923         }
1924
1925         bool additional_warning_displayed = false;
1926         while(braces > 0) {
1927                 if(token.type == ',') {
1928                         next_token();
1929                 }
1930                 if(token.type != '}') {
1931                         if(!additional_warning_displayed) {
1932                                 warningf(HERE, "additional elements in scalar initializer");
1933                                 additional_warning_displayed = true;
1934                         }
1935                 }
1936                 eat_block();
1937                 braces--;
1938         }
1939
1940         return initializer;
1941 }
1942
1943 /**
1944  * An entry in the type path.
1945  */
1946 typedef struct type_path_entry_t type_path_entry_t;
1947 struct type_path_entry_t {
1948         type_t *type;       /**< the upper top type. restored to path->top_tye if this entry is popped. */
1949         union {
1950                 size_t         index;          /**< For array types: the current index. */
1951                 declaration_t *compound_entry; /**< For compound types: the current declaration. */
1952         } v;
1953 };
1954
1955 /**
1956  * A type path expression a position inside compound or array types.
1957  */
1958 typedef struct type_path_t type_path_t;
1959 struct type_path_t {
1960         type_path_entry_t *path;         /**< An flexible array containing the current path. */
1961         type_t            *top_type;     /**< type of the element the path points */
1962         size_t             max_index;    /**< largest index in outermost array */
1963 };
1964
1965 /**
1966  * Prints a type path for debugging.
1967  */
1968 static __attribute__((unused)) void debug_print_type_path(
1969                 const type_path_t *path)
1970 {
1971         size_t len = ARR_LEN(path->path);
1972
1973         for(size_t i = 0; i < len; ++i) {
1974                 const type_path_entry_t *entry = & path->path[i];
1975
1976                 type_t *type = skip_typeref(entry->type);
1977                 if(is_type_compound(type)) {
1978                         /* in gcc mode structs can have no members */
1979                         if(entry->v.compound_entry == NULL) {
1980                                 assert(i == len-1);
1981                                 continue;
1982                         }
1983                         fprintf(stderr, ".%s", entry->v.compound_entry->symbol->string);
1984                 } else if(is_type_array(type)) {
1985                         fprintf(stderr, "[%zd]", entry->v.index);
1986                 } else {
1987                         fprintf(stderr, "-INVALID-");
1988                 }
1989         }
1990         if(path->top_type != NULL) {
1991                 fprintf(stderr, "  (");
1992                 print_type(path->top_type);
1993                 fprintf(stderr, ")");
1994         }
1995 }
1996
1997 /**
1998  * Return the top type path entry, ie. in a path
1999  * (type).a.b returns the b.
2000  */
2001 static type_path_entry_t *get_type_path_top(const type_path_t *path)
2002 {
2003         size_t len = ARR_LEN(path->path);
2004         assert(len > 0);
2005         return &path->path[len-1];
2006 }
2007
2008 /**
2009  * Enlarge the type path by an (empty) element.
2010  */
2011 static type_path_entry_t *append_to_type_path(type_path_t *path)
2012 {
2013         size_t len = ARR_LEN(path->path);
2014         ARR_RESIZE(type_path_entry_t, path->path, len+1);
2015
2016         type_path_entry_t *result = & path->path[len];
2017         memset(result, 0, sizeof(result[0]));
2018         return result;
2019 }
2020
2021 /**
2022  * Descending into a sub-type. Enter the scope of the current
2023  * top_type.
2024  */
2025 static void descend_into_subtype(type_path_t *path)
2026 {
2027         type_t *orig_top_type = path->top_type;
2028         type_t *top_type      = skip_typeref(orig_top_type);
2029
2030         assert(is_type_compound(top_type) || is_type_array(top_type));
2031
2032         type_path_entry_t *top = append_to_type_path(path);
2033         top->type              = top_type;
2034
2035         if(is_type_compound(top_type)) {
2036                 declaration_t *declaration = top_type->compound.declaration;
2037                 declaration_t *entry       = declaration->scope.declarations;
2038                 top->v.compound_entry      = entry;
2039
2040                 if(entry != NULL) {
2041                         path->top_type         = entry->type;
2042                 } else {
2043                         path->top_type         = NULL;
2044                 }
2045         } else {
2046                 assert(is_type_array(top_type));
2047
2048                 top->v.index   = 0;
2049                 path->top_type = top_type->array.element_type;
2050         }
2051 }
2052
2053 /**
2054  * Pop an entry from the given type path, ie. returning from
2055  * (type).a.b to (type).a
2056  */
2057 static void ascend_from_subtype(type_path_t *path)
2058 {
2059         type_path_entry_t *top = get_type_path_top(path);
2060
2061         path->top_type = top->type;
2062
2063         size_t len = ARR_LEN(path->path);
2064         ARR_RESIZE(type_path_entry_t, path->path, len-1);
2065 }
2066
2067 /**
2068  * Pop entries from the given type path until the given
2069  * path level is reached.
2070  */
2071 static void ascend_to(type_path_t *path, size_t top_path_level)
2072 {
2073         size_t len = ARR_LEN(path->path);
2074
2075         while(len > top_path_level) {
2076                 ascend_from_subtype(path);
2077                 len = ARR_LEN(path->path);
2078         }
2079 }
2080
2081 static bool walk_designator(type_path_t *path, const designator_t *designator,
2082                             bool used_in_offsetof)
2083 {
2084         for( ; designator != NULL; designator = designator->next) {
2085                 type_path_entry_t *top       = get_type_path_top(path);
2086                 type_t            *orig_type = top->type;
2087
2088                 type_t *type = skip_typeref(orig_type);
2089
2090                 if(designator->symbol != NULL) {
2091                         symbol_t *symbol = designator->symbol;
2092                         if(!is_type_compound(type)) {
2093                                 if(is_type_valid(type)) {
2094                                         errorf(&designator->source_position,
2095                                                "'.%Y' designator used for non-compound type '%T'",
2096                                                symbol, orig_type);
2097                                 }
2098                                 goto failed;
2099                         }
2100
2101                         declaration_t *declaration = type->compound.declaration;
2102                         declaration_t *iter        = declaration->scope.declarations;
2103                         for( ; iter != NULL; iter = iter->next) {
2104                                 if(iter->symbol == symbol) {
2105                                         break;
2106                                 }
2107                         }
2108                         if(iter == NULL) {
2109                                 errorf(&designator->source_position,
2110                                        "'%T' has no member named '%Y'", orig_type, symbol);
2111                                 goto failed;
2112                         }
2113                         if(used_in_offsetof) {
2114                                 type_t *real_type = skip_typeref(iter->type);
2115                                 if(real_type->kind == TYPE_BITFIELD) {
2116                                         errorf(&designator->source_position,
2117                                                "offsetof designator '%Y' may not specify bitfield",
2118                                                symbol);
2119                                         goto failed;
2120                                 }
2121                         }
2122
2123                         top->type             = orig_type;
2124                         top->v.compound_entry = iter;
2125                         orig_type             = iter->type;
2126                 } else {
2127                         expression_t *array_index = designator->array_index;
2128                         assert(designator->array_index != NULL);
2129
2130                         if(!is_type_array(type)) {
2131                                 if(is_type_valid(type)) {
2132                                         errorf(&designator->source_position,
2133                                                "[%E] designator used for non-array type '%T'",
2134                                                array_index, orig_type);
2135                                 }
2136                                 goto failed;
2137                         }
2138                         if(!is_type_valid(array_index->base.type)) {
2139                                 goto failed;
2140                         }
2141
2142                         long index = fold_constant(array_index);
2143                         if(!used_in_offsetof) {
2144                                 if(index < 0) {
2145                                         errorf(&designator->source_position,
2146                                                "array index [%E] must be positive", array_index);
2147                                         goto failed;
2148                                 }
2149                                 if(type->array.size_constant == true) {
2150                                         long array_size = type->array.size;
2151                                         if(index >= array_size) {
2152                                                 errorf(&designator->source_position,
2153                                                        "designator [%E] (%d) exceeds array size %d",
2154                                                        array_index, index, array_size);
2155                                                 goto failed;
2156                                         }
2157                                 }
2158                         }
2159
2160                         top->type    = orig_type;
2161                         top->v.index = (size_t) index;
2162                         orig_type    = type->array.element_type;
2163                 }
2164                 path->top_type = orig_type;
2165
2166                 if(designator->next != NULL) {
2167                         descend_into_subtype(path);
2168                 }
2169         }
2170         return true;
2171
2172 failed:
2173         return false;
2174 }
2175
2176 static void advance_current_object(type_path_t *path, size_t top_path_level)
2177 {
2178         type_path_entry_t *top = get_type_path_top(path);
2179
2180         type_t *type = skip_typeref(top->type);
2181         if(is_type_union(type)) {
2182                 /* in unions only the first element is initialized */
2183                 top->v.compound_entry = NULL;
2184         } else if(is_type_struct(type)) {
2185                 declaration_t *entry = top->v.compound_entry;
2186
2187                 entry                 = entry->next;
2188                 top->v.compound_entry = entry;
2189                 if(entry != NULL) {
2190                         path->top_type = entry->type;
2191                         return;
2192                 }
2193         } else {
2194                 assert(is_type_array(type));
2195
2196                 top->v.index++;
2197
2198                 if(!type->array.size_constant || top->v.index < type->array.size) {
2199                         return;
2200                 }
2201         }
2202
2203         /* we're past the last member of the current sub-aggregate, try if we
2204          * can ascend in the type hierarchy and continue with another subobject */
2205         size_t len = ARR_LEN(path->path);
2206
2207         if(len > top_path_level) {
2208                 ascend_from_subtype(path);
2209                 advance_current_object(path, top_path_level);
2210         } else {
2211                 path->top_type = NULL;
2212         }
2213 }
2214
2215 /**
2216  * skip until token is found.
2217  */
2218 static void skip_until(int type) {
2219         while(token.type != type) {
2220                 if(token.type == T_EOF)
2221                         return;
2222                 next_token();
2223         }
2224 }
2225
2226 /**
2227  * skip any {...} blocks until a closing bracket is reached.
2228  */
2229 static void skip_initializers(void)
2230 {
2231         if(token.type == '{')
2232                 next_token();
2233
2234         while(token.type != '}') {
2235                 if(token.type == T_EOF)
2236                         return;
2237                 if(token.type == '{') {
2238                         eat_block();
2239                         continue;
2240                 }
2241                 next_token();
2242         }
2243 }
2244
2245 static initializer_t *create_empty_initializer(void)
2246 {
2247         static initializer_t empty_initializer
2248                 = { .list = { { INITIALIZER_LIST }, 0 } };
2249         return &empty_initializer;
2250 }
2251
2252 /**
2253  * Parse a part of an initialiser for a struct or union,
2254  */
2255 static initializer_t *parse_sub_initializer(type_path_t *path,
2256                 type_t *outer_type, size_t top_path_level,
2257                 parse_initializer_env_t *env)
2258 {
2259         if(token.type == '}') {
2260                 /* empty initializer */
2261                 return create_empty_initializer();
2262         }
2263
2264         type_t *orig_type = path->top_type;
2265         type_t *type      = NULL;
2266
2267         if (orig_type == NULL) {
2268                 /* We are initializing an empty compound. */
2269         } else {
2270                 type = skip_typeref(orig_type);
2271
2272                 /* we can't do usefull stuff if we didn't even parse the type. Skip the
2273                  * initializers in this case. */
2274                 if(!is_type_valid(type)) {
2275                         skip_initializers();
2276                         return create_empty_initializer();
2277                 }
2278         }
2279
2280         initializer_t **initializers = NEW_ARR_F(initializer_t*, 0);
2281
2282         while(true) {
2283                 designator_t *designator = NULL;
2284                 if(token.type == '.' || token.type == '[') {
2285                         designator = parse_designation();
2286
2287                         /* reset path to toplevel, evaluate designator from there */
2288                         ascend_to(path, top_path_level);
2289                         if(!walk_designator(path, designator, false)) {
2290                                 /* can't continue after designation error */
2291                                 goto end_error;
2292                         }
2293
2294                         initializer_t *designator_initializer
2295                                 = allocate_initializer_zero(INITIALIZER_DESIGNATOR);
2296                         designator_initializer->designator.designator = designator;
2297                         ARR_APP1(initializer_t*, initializers, designator_initializer);
2298
2299                         orig_type = path->top_type;
2300                         type      = orig_type != NULL ? skip_typeref(orig_type) : NULL;
2301                 }
2302
2303                 initializer_t *sub;
2304
2305                 if(token.type == '{') {
2306                         if(type != NULL && is_type_scalar(type)) {
2307                                 sub = parse_scalar_initializer(type, env->must_be_constant);
2308                         } else {
2309                                 eat('{');
2310                                 if(type == NULL) {
2311                                         if (env->declaration != NULL)
2312                                                 errorf(HERE, "extra brace group at end of initializer for '%Y'",
2313                                                 env->declaration->symbol);
2314                                 else
2315                                                 errorf(HERE, "extra brace group at end of initializer");
2316                                 } else
2317                                         descend_into_subtype(path);
2318
2319                                 add_anchor_token('}');
2320                                 sub = parse_sub_initializer(path, orig_type, top_path_level+1,
2321                                                             env);
2322                                 rem_anchor_token('}');
2323
2324                                 if(type != NULL) {
2325                                         ascend_from_subtype(path);
2326                                         expect('}');
2327                                 } else {
2328                                         expect('}');
2329                                         goto error_parse_next;
2330                                 }
2331                         }
2332                 } else {
2333                         /* must be an expression */
2334                         expression_t *expression = parse_assignment_expression();
2335
2336                         if(env->must_be_constant && !is_initializer_constant(expression)) {
2337                                 errorf(&expression->base.source_position,
2338                                        "Initialisation expression '%E' is not constant\n",
2339                                        expression);
2340                         }
2341
2342                         if(type == NULL) {
2343                                 /* we are already outside, ... */
2344                                 goto error_excess;
2345                         }
2346
2347                         /* handle { "string" } special case */
2348                         if((expression->kind == EXPR_STRING_LITERAL
2349                                         || expression->kind == EXPR_WIDE_STRING_LITERAL)
2350                                         && outer_type != NULL) {
2351                                 sub = initializer_from_expression(outer_type, expression);
2352                                 if(sub != NULL) {
2353                                         if(token.type == ',') {
2354                                                 next_token();
2355                                         }
2356                                         if(token.type != '}') {
2357                                                 warningf(HERE, "excessive elements in initializer for type '%T'",
2358                                                                  orig_type);
2359                                         }
2360                                         /* TODO: eat , ... */
2361                                         return sub;
2362                                 }
2363                         }
2364
2365                         /* descend into subtypes until expression matches type */
2366                         while(true) {
2367                                 orig_type = path->top_type;
2368                                 type      = skip_typeref(orig_type);
2369
2370                                 sub = initializer_from_expression(orig_type, expression);
2371                                 if(sub != NULL) {
2372                                         break;
2373                                 }
2374                                 if(!is_type_valid(type)) {
2375                                         goto end_error;
2376                                 }
2377                                 if(is_type_scalar(type)) {
2378                                         errorf(&expression->base.source_position,
2379                                                         "expression '%E' doesn't match expected type '%T'",
2380                                                         expression, orig_type);
2381                                         goto end_error;
2382                                 }
2383
2384                                 descend_into_subtype(path);
2385                         }
2386                 }
2387
2388                 /* update largest index of top array */
2389                 const type_path_entry_t *first      = &path->path[0];
2390                 type_t                  *first_type = first->type;
2391                 first_type                          = skip_typeref(first_type);
2392                 if(is_type_array(first_type)) {
2393                         size_t index = first->v.index;
2394                         if(index > path->max_index)
2395                                 path->max_index = index;
2396                 }
2397
2398                 if(type != NULL) {
2399                         /* append to initializers list */
2400                         ARR_APP1(initializer_t*, initializers, sub);
2401                 } else {
2402 error_excess:
2403                         if(env->declaration != NULL)
2404                                 warningf(HERE, "excess elements in struct initializer for '%Y'",
2405                                  env->declaration->symbol);
2406                         else
2407                                 warningf(HERE, "excess elements in struct initializer");
2408                 }
2409
2410 error_parse_next:
2411                 if(token.type == '}') {
2412                         break;
2413                 }
2414                 expect(',');
2415                 if(token.type == '}') {
2416                         break;
2417                 }
2418
2419                 if(type != NULL) {
2420                         /* advance to the next declaration if we are not at the end */
2421                         advance_current_object(path, top_path_level);
2422                         orig_type = path->top_type;
2423                         if(orig_type != NULL)
2424                                 type = skip_typeref(orig_type);
2425                         else
2426                                 type = NULL;
2427                 }
2428         }
2429
2430         size_t len  = ARR_LEN(initializers);
2431         size_t size = sizeof(initializer_list_t) + len * sizeof(initializers[0]);
2432         initializer_t *result = allocate_ast_zero(size);
2433         result->kind          = INITIALIZER_LIST;
2434         result->list.len      = len;
2435         memcpy(&result->list.initializers, initializers,
2436                len * sizeof(initializers[0]));
2437
2438         DEL_ARR_F(initializers);
2439         ascend_to(path, top_path_level+1);
2440
2441         return result;
2442
2443 end_error:
2444         skip_initializers();
2445         DEL_ARR_F(initializers);
2446         ascend_to(path, top_path_level+1);
2447         return NULL;
2448 }
2449
2450 /**
2451  * Parses an initializer. Parsers either a compound literal
2452  * (env->declaration == NULL) or an initializer of a declaration.
2453  */
2454 static initializer_t *parse_initializer(parse_initializer_env_t *env)
2455 {
2456         type_t        *type   = skip_typeref(env->type);
2457         initializer_t *result = NULL;
2458         size_t         max_index;
2459
2460         if(is_type_scalar(type)) {
2461                 result = parse_scalar_initializer(type, env->must_be_constant);
2462         } else if(token.type == '{') {
2463                 eat('{');
2464
2465                 type_path_t path;
2466                 memset(&path, 0, sizeof(path));
2467                 path.top_type = env->type;
2468                 path.path     = NEW_ARR_F(type_path_entry_t, 0);
2469
2470                 descend_into_subtype(&path);
2471
2472                 add_anchor_token('}');
2473                 result = parse_sub_initializer(&path, env->type, 1, env);
2474                 rem_anchor_token('}');
2475
2476                 max_index = path.max_index;
2477                 DEL_ARR_F(path.path);
2478
2479                 expect('}');
2480         } else {
2481                 /* parse_scalar_initializer() also works in this case: we simply
2482                  * have an expression without {} around it */
2483                 result = parse_scalar_initializer(type, env->must_be_constant);
2484         }
2485
2486         /* Â§ 6.7.5 (22)  array initializers for arrays with unknown size determine
2487          * the array type size */
2488         if(is_type_array(type) && type->array.size_expression == NULL
2489                         && result != NULL) {
2490                 size_t size;
2491                 switch (result->kind) {
2492                 case INITIALIZER_LIST:
2493                         size = max_index + 1;
2494                         break;
2495
2496                 case INITIALIZER_STRING:
2497                         size = result->string.string.size;
2498                         break;
2499
2500                 case INITIALIZER_WIDE_STRING:
2501                         size = result->wide_string.string.size;
2502                         break;
2503
2504                 case INITIALIZER_DESIGNATOR:
2505                 case INITIALIZER_VALUE:
2506                         /* can happen for parse errors */
2507                         size = 0;
2508                         break;
2509
2510                 default:
2511                         internal_errorf(HERE, "invalid initializer type");
2512                 }
2513
2514                 expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
2515                 cnst->base.type          = type_size_t;
2516                 cnst->conste.v.int_value = size;
2517
2518                 type_t *new_type = duplicate_type(type);
2519
2520                 new_type->array.size_expression = cnst;
2521                 new_type->array.size_constant   = true;
2522                 new_type->array.size            = size;
2523                 env->type = new_type;
2524         }
2525
2526         return result;
2527 end_error:
2528         return NULL;
2529 }
2530
2531 static declaration_t *append_declaration(declaration_t *declaration);
2532
2533 static declaration_t *parse_compound_type_specifier(bool is_struct)
2534 {
2535         gnu_attribute_t  *attributes = NULL;
2536         decl_modifiers_t  modifiers  = 0;
2537         if(is_struct) {
2538                 eat(T_struct);
2539         } else {
2540                 eat(T_union);
2541         }
2542
2543         symbol_t      *symbol      = NULL;
2544         declaration_t *declaration = NULL;
2545
2546         if (token.type == T___attribute__) {
2547                 modifiers |= parse_attributes(&attributes);
2548         }
2549
2550         if(token.type == T_IDENTIFIER) {
2551                 symbol = token.v.symbol;
2552                 next_token();
2553
2554                 if(is_struct) {
2555                         declaration = get_declaration(symbol, NAMESPACE_STRUCT);
2556                 } else {
2557                         declaration = get_declaration(symbol, NAMESPACE_UNION);
2558                 }
2559         } else if(token.type != '{') {
2560                 if(is_struct) {
2561                         parse_error_expected("while parsing struct type specifier",
2562                                              T_IDENTIFIER, '{', NULL);
2563                 } else {
2564                         parse_error_expected("while parsing union type specifier",
2565                                              T_IDENTIFIER, '{', NULL);
2566                 }
2567
2568                 return NULL;
2569         }
2570
2571         if(declaration == NULL) {
2572                 declaration = allocate_declaration_zero();
2573                 declaration->namespc         =
2574                         (is_struct ? NAMESPACE_STRUCT : NAMESPACE_UNION);
2575                 declaration->source_position = token.source_position;
2576                 declaration->symbol          = symbol;
2577                 declaration->parent_scope    = scope;
2578                 if (symbol != NULL) {
2579                         environment_push(declaration);
2580                 }
2581                 append_declaration(declaration);
2582         }
2583
2584         if(token.type == '{') {
2585                 if (declaration->init.complete) {
2586                         assert(symbol != NULL);
2587                         errorf(HERE, "multiple definitions of '%s %Y' (previous definition at %P)",
2588                                is_struct ? "struct" : "union", symbol,
2589                                &declaration->source_position);
2590                         declaration->scope.declarations = NULL;
2591                 }
2592                 declaration->init.complete = true;
2593
2594                 parse_compound_type_entries(declaration);
2595                 modifiers |= parse_attributes(&attributes);
2596         }
2597
2598         declaration->modifiers |= modifiers;
2599         return declaration;
2600 }
2601
2602 static void parse_enum_entries(type_t *const enum_type)
2603 {
2604         eat('{');
2605
2606         if(token.type == '}') {
2607                 next_token();
2608                 errorf(HERE, "empty enum not allowed");
2609                 return;
2610         }
2611
2612         add_anchor_token('}');
2613         do {
2614                 if(token.type != T_IDENTIFIER) {
2615                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, NULL);
2616                         eat_block();
2617                         rem_anchor_token('}');
2618                         return;
2619                 }
2620
2621                 declaration_t *const entry = allocate_declaration_zero();
2622                 entry->storage_class   = STORAGE_CLASS_ENUM_ENTRY;
2623                 entry->type            = enum_type;
2624                 entry->symbol          = token.v.symbol;
2625                 entry->source_position = token.source_position;
2626                 next_token();
2627
2628                 if(token.type == '=') {
2629                         next_token();
2630                         expression_t *value = parse_constant_expression();
2631
2632                         value = create_implicit_cast(value, enum_type);
2633                         entry->init.enum_value = value;
2634
2635                         /* TODO semantic */
2636                 }
2637
2638                 record_declaration(entry);
2639
2640                 if(token.type != ',')
2641                         break;
2642                 next_token();
2643         } while(token.type != '}');
2644         rem_anchor_token('}');
2645
2646         expect('}');
2647
2648 end_error:
2649         ;
2650 }
2651
2652 static type_t *parse_enum_specifier(void)
2653 {
2654         gnu_attribute_t *attributes = NULL;
2655         declaration_t   *declaration;
2656         symbol_t        *symbol;
2657
2658         eat(T_enum);
2659         if(token.type == T_IDENTIFIER) {
2660                 symbol = token.v.symbol;
2661                 next_token();
2662
2663                 declaration = get_declaration(symbol, NAMESPACE_ENUM);
2664         } else if(token.type != '{') {
2665                 parse_error_expected("while parsing enum type specifier",
2666                                      T_IDENTIFIER, '{', NULL);
2667                 return NULL;
2668         } else {
2669                 declaration = NULL;
2670                 symbol      = NULL;
2671         }
2672
2673         if(declaration == NULL) {
2674                 declaration = allocate_declaration_zero();
2675                 declaration->namespc         = NAMESPACE_ENUM;
2676                 declaration->source_position = token.source_position;
2677                 declaration->symbol          = symbol;
2678                 declaration->parent_scope  = scope;
2679         }
2680
2681         type_t *const type      = allocate_type_zero(TYPE_ENUM, &declaration->source_position);
2682         type->enumt.declaration = declaration;
2683
2684         if(token.type == '{') {
2685                 if(declaration->init.complete) {
2686                         errorf(HERE, "multiple definitions of enum %Y", symbol);
2687                 }
2688                 if (symbol != NULL) {
2689                         environment_push(declaration);
2690                 }
2691                 append_declaration(declaration);
2692                 declaration->init.complete = true;
2693
2694                 parse_enum_entries(type);
2695                 parse_attributes(&attributes);
2696         }
2697
2698         return type;
2699 }
2700
2701 /**
2702  * if a symbol is a typedef to another type, return true
2703  */
2704 static bool is_typedef_symbol(symbol_t *symbol)
2705 {
2706         const declaration_t *const declaration =
2707                 get_declaration(symbol, NAMESPACE_NORMAL);
2708         return
2709                 declaration != NULL &&
2710                 declaration->storage_class == STORAGE_CLASS_TYPEDEF;
2711 }
2712
2713 static type_t *parse_typeof(void)
2714 {
2715         eat(T___typeof__);
2716
2717         type_t *type;
2718
2719         expect('(');
2720         add_anchor_token(')');
2721
2722         expression_t *expression  = NULL;
2723
2724 restart:
2725         switch(token.type) {
2726         case T___extension__:
2727                 /* this can be a prefix to a typename or an expression */
2728                 /* we simply eat it now. */
2729                 do {
2730                         next_token();
2731                 } while(token.type == T___extension__);
2732                 goto restart;
2733
2734         case T_IDENTIFIER:
2735                 if(is_typedef_symbol(token.v.symbol)) {
2736                         type = parse_typename();
2737                 } else {
2738                         expression = parse_expression();
2739                         type       = expression->base.type;
2740                 }
2741                 break;
2742
2743         TYPENAME_START
2744                 type = parse_typename();
2745                 break;
2746
2747         default:
2748                 expression = parse_expression();
2749                 type       = expression->base.type;
2750                 break;
2751         }
2752
2753         rem_anchor_token(')');
2754         expect(')');
2755
2756         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF, &expression->base.source_position);
2757         typeof_type->typeoft.expression  = expression;
2758         typeof_type->typeoft.typeof_type = type;
2759
2760         return typeof_type;
2761 end_error:
2762         return NULL;
2763 }
2764
2765 typedef enum {
2766         SPECIFIER_SIGNED    = 1 << 0,
2767         SPECIFIER_UNSIGNED  = 1 << 1,
2768         SPECIFIER_LONG      = 1 << 2,
2769         SPECIFIER_INT       = 1 << 3,
2770         SPECIFIER_DOUBLE    = 1 << 4,
2771         SPECIFIER_CHAR      = 1 << 5,
2772         SPECIFIER_SHORT     = 1 << 6,
2773         SPECIFIER_LONG_LONG = 1 << 7,
2774         SPECIFIER_FLOAT     = 1 << 8,
2775         SPECIFIER_BOOL      = 1 << 9,
2776         SPECIFIER_VOID      = 1 << 10,
2777         SPECIFIER_INT8      = 1 << 11,
2778         SPECIFIER_INT16     = 1 << 12,
2779         SPECIFIER_INT32     = 1 << 13,
2780         SPECIFIER_INT64     = 1 << 14,
2781         SPECIFIER_INT128    = 1 << 15,
2782         SPECIFIER_COMPLEX   = 1 << 16,
2783         SPECIFIER_IMAGINARY = 1 << 17,
2784 } specifiers_t;
2785
2786 static type_t *create_builtin_type(symbol_t *const symbol,
2787                                    type_t *const real_type)
2788 {
2789         type_t *type            = allocate_type_zero(TYPE_BUILTIN, &builtin_source_position);
2790         type->builtin.symbol    = symbol;
2791         type->builtin.real_type = real_type;
2792
2793         type_t *result = typehash_insert(type);
2794         if(type != result) {
2795                 free_type(type);
2796         }
2797
2798         return result;
2799 }
2800
2801 static type_t *get_typedef_type(symbol_t *symbol)
2802 {
2803         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
2804         if(declaration == NULL ||
2805            declaration->storage_class != STORAGE_CLASS_TYPEDEF)
2806                 return NULL;
2807
2808         type_t *type               = allocate_type_zero(TYPE_TYPEDEF, &declaration->source_position);
2809         type->typedeft.declaration = declaration;
2810
2811         return type;
2812 }
2813
2814 /**
2815  * check for the allowed MS alignment values.
2816  */
2817 static bool check_elignment_value(long long intvalue) {
2818         if(intvalue < 1 || intvalue > 8192) {
2819                 errorf(HERE, "illegal alignment value");
2820                 return false;
2821         }
2822         unsigned v = (unsigned)intvalue;
2823         for(unsigned i = 1; i <= 8192; i += i) {
2824                 if (i == v)
2825                         return true;
2826         }
2827         errorf(HERE, "alignment must be power of two");
2828         return false;
2829 }
2830
2831 #define DET_MOD(name, tag) do { \
2832         if(*modifiers & tag) warningf(HERE, #name " used more than once"); \
2833         *modifiers |= tag; \
2834 } while(0)
2835
2836 static void parse_microsoft_extended_decl_modifier(declaration_specifiers_t *specifiers)
2837 {
2838         decl_modifiers_t *modifiers = &specifiers->modifiers;
2839
2840         while(true) {
2841                 if(token.type == T_restrict) {
2842                         next_token();
2843                         DET_MOD(restrict, DM_RESTRICT);
2844                         goto end_loop;
2845                 } else if(token.type != T_IDENTIFIER)
2846                         break;
2847                 symbol_t *symbol = token.v.symbol;
2848                 if(symbol == sym_align) {
2849                         next_token();
2850                         expect('(');
2851                         if(token.type != T_INTEGER)
2852                                 goto end_error;
2853                         if(check_elignment_value(token.v.intvalue)) {
2854                                 if(specifiers->alignment != 0)
2855                                         warningf(HERE, "align used more than once");
2856                                 specifiers->alignment = (unsigned char)token.v.intvalue;
2857                         }
2858                         next_token();
2859                         expect(')');
2860                 } else if(symbol == sym_allocate) {
2861                         next_token();
2862                         expect('(');
2863                         if(token.type != T_IDENTIFIER)
2864                                 goto end_error;
2865                         (void)token.v.symbol;
2866                         expect(')');
2867                 } else if(symbol == sym_dllimport) {
2868                         next_token();
2869                         DET_MOD(dllimport, DM_DLLIMPORT);
2870                 } else if(symbol == sym_dllexport) {
2871                         next_token();
2872                         DET_MOD(dllexport, DM_DLLEXPORT);
2873                 } else if(symbol == sym_thread) {
2874                         next_token();
2875                         DET_MOD(thread, DM_THREAD);
2876                 } else if(symbol == sym_naked) {
2877                         next_token();
2878                         DET_MOD(naked, DM_NAKED);
2879                 } else if(symbol == sym_noinline) {
2880                         next_token();
2881                         DET_MOD(noinline, DM_NOINLINE);
2882                 } else if(symbol == sym_noreturn) {
2883                         next_token();
2884                         DET_MOD(noreturn, DM_NORETURN);
2885                 } else if(symbol == sym_nothrow) {
2886                         next_token();
2887                         DET_MOD(nothrow, DM_NOTHROW);
2888                 } else if(symbol == sym_novtable) {
2889                         next_token();
2890                         DET_MOD(novtable, DM_NOVTABLE);
2891                 } else if(symbol == sym_property) {
2892                         next_token();
2893                         expect('(');
2894                         for(;;) {
2895                                 bool is_get = false;
2896                                 if(token.type != T_IDENTIFIER)
2897                                         goto end_error;
2898                                 if(token.v.symbol == sym_get) {
2899                                         is_get = true;
2900                                 } else if(token.v.symbol == sym_put) {
2901                                 } else {
2902                                         errorf(HERE, "Bad property name '%Y'", token.v.symbol);
2903                                         goto end_error;
2904                                 }
2905                                 next_token();
2906                                 expect('=');
2907                                 if(token.type != T_IDENTIFIER)
2908                                         goto end_error;
2909                                 if(is_get) {
2910                                         if(specifiers->get_property_sym != NULL) {
2911                                                 errorf(HERE, "get property name already specified");
2912                                         } else {
2913                                                 specifiers->get_property_sym = token.v.symbol;
2914                                         }
2915                                 } else {
2916                                         if(specifiers->put_property_sym != NULL) {
2917                                                 errorf(HERE, "put property name already specified");
2918                                         } else {
2919                                                 specifiers->put_property_sym = token.v.symbol;
2920                                         }
2921                                 }
2922                                 next_token();
2923                                 if(token.type == ',') {
2924                                         next_token();
2925                                         continue;
2926                                 }
2927                                 break;
2928                         }
2929                         expect(')');
2930                 } else if(symbol == sym_selectany) {
2931                         next_token();
2932                         DET_MOD(selectany, DM_SELECTANY);
2933                 } else if(symbol == sym_uuid) {
2934                         next_token();
2935                         expect('(');
2936                         if(token.type != T_STRING_LITERAL)
2937                                 goto end_error;
2938                         next_token();
2939                         expect(')');
2940                 } else if(symbol == sym_deprecated) {
2941                         next_token();
2942                         if(specifiers->deprecated != 0)
2943                                 warningf(HERE, "deprecated used more than once");
2944                         specifiers->deprecated = 1;
2945                         if(token.type == '(') {
2946                                 next_token();
2947                                 if(token.type == T_STRING_LITERAL) {
2948                                         specifiers->deprecated_string = token.v.string.begin;
2949                                         next_token();
2950                                 } else {
2951                                         errorf(HERE, "string literal expected");
2952                                 }
2953                                 expect(')');
2954                         }
2955                 } else if(symbol == sym_noalias) {
2956                         next_token();
2957                         DET_MOD(noalias, DM_NOALIAS);
2958                 } else {
2959                         warningf(HERE, "Unknown modifier %Y ignored", token.v.symbol);
2960                         next_token();
2961                         if(token.type == '(')
2962                                 skip_until(')');
2963                 }
2964 end_loop:
2965                 if (token.type == ',')
2966                         next_token();
2967         }
2968 end_error:
2969         return;
2970 }
2971
2972 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
2973 {
2974         type_t            *type            = NULL;
2975         type_qualifiers_t  qualifiers      = TYPE_QUALIFIER_NONE;
2976         type_modifiers_t   modifiers       = TYPE_MODIFIER_NONE;
2977         unsigned           type_specifiers = 0;
2978         int                newtype         = 0;
2979
2980         specifiers->source_position = token.source_position;
2981
2982         while(true) {
2983                 switch(token.type) {
2984
2985                 /* storage class */
2986 #define MATCH_STORAGE_CLASS(token, class)                                  \
2987                 case token:                                                        \
2988                         if(specifiers->declared_storage_class != STORAGE_CLASS_NONE) { \
2989                                 errorf(HERE, "multiple storage classes in declaration specifiers"); \
2990                         }                                                              \
2991                         specifiers->declared_storage_class = class;                    \
2992                         next_token();                                                  \
2993                         break;
2994
2995                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
2996                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
2997                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
2998                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
2999                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
3000
3001                 case T__declspec:
3002                         next_token();
3003                         expect('(');
3004                         add_anchor_token(')');
3005                         parse_microsoft_extended_decl_modifier(specifiers);
3006                         rem_anchor_token(')');
3007                         expect(')');
3008                         break;
3009
3010                 case T___thread:
3011                         switch (specifiers->declared_storage_class) {
3012                         case STORAGE_CLASS_NONE:
3013                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD;
3014                                 break;
3015
3016                         case STORAGE_CLASS_EXTERN:
3017                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_EXTERN;
3018                                 break;
3019
3020                         case STORAGE_CLASS_STATIC:
3021                                 specifiers->declared_storage_class = STORAGE_CLASS_THREAD_STATIC;
3022                                 break;
3023
3024                         default:
3025                                 errorf(HERE, "multiple storage classes in declaration specifiers");
3026                                 break;
3027                         }
3028                         next_token();
3029                         break;
3030
3031                 /* type qualifiers */
3032 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
3033                 case token:                                                     \
3034                         qualifiers |= qualifier;                                    \
3035                         next_token();                                               \
3036                         break;
3037
3038                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
3039                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
3040                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
3041                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
3042                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
3043                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
3044                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
3045                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
3046
3047                 case T___extension__:
3048                         /* TODO */
3049                         next_token();
3050                         break;
3051
3052                 /* type specifiers */
3053 #define MATCH_SPECIFIER(token, specifier, name)                         \
3054                 case token:                                                     \
3055                         next_token();                                               \
3056                         if(type_specifiers & specifier) {                           \
3057                                 errorf(HERE, "multiple " name " type specifiers given"); \
3058                         } else {                                                    \
3059                                 type_specifiers |= specifier;                           \
3060                         }                                                           \
3061                         break;
3062
3063                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
3064                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
3065                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
3066                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
3067                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
3068                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
3069                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
3070                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
3071                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
3072                 MATCH_SPECIFIER(T__int8,      SPECIFIER_INT8,      "_int8")
3073                 MATCH_SPECIFIER(T__int16,     SPECIFIER_INT16,     "_int16")
3074                 MATCH_SPECIFIER(T__int32,     SPECIFIER_INT32,     "_int32")
3075                 MATCH_SPECIFIER(T__int64,     SPECIFIER_INT64,     "_int64")
3076                 MATCH_SPECIFIER(T__int128,    SPECIFIER_INT128,    "_int128")
3077                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
3078                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
3079
3080                 case T__forceinline:
3081                         /* only in microsoft mode */
3082                         specifiers->modifiers |= DM_FORCEINLINE;
3083
3084                 case T_inline:
3085                         next_token();
3086                         specifiers->is_inline = true;
3087                         break;
3088
3089                 case T_long:
3090                         next_token();
3091                         if(type_specifiers & SPECIFIER_LONG_LONG) {
3092                                 errorf(HERE, "multiple type specifiers given");
3093                         } else if(type_specifiers & SPECIFIER_LONG) {
3094                                 type_specifiers |= SPECIFIER_LONG_LONG;
3095                         } else {
3096                                 type_specifiers |= SPECIFIER_LONG;
3097                         }
3098                         break;
3099
3100                 case T_struct: {
3101                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT, HERE);
3102
3103                         type->compound.declaration = parse_compound_type_specifier(true);
3104                         break;
3105                 }
3106                 case T_union: {
3107                         type = allocate_type_zero(TYPE_COMPOUND_UNION, HERE);
3108                         type->compound.declaration = parse_compound_type_specifier(false);
3109                         if (type->compound.declaration->modifiers & DM_TRANSPARENT_UNION)
3110                                 modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
3111                         break;
3112                 }
3113                 case T_enum:
3114                         type = parse_enum_specifier();
3115                         break;
3116                 case T___typeof__:
3117                         type = parse_typeof();
3118                         break;
3119                 case T___builtin_va_list:
3120                         type = duplicate_type(type_valist);
3121                         next_token();
3122                         break;
3123
3124                 case T___attribute__:
3125                         specifiers->modifiers
3126                                 |= parse_attributes(&specifiers->gnu_attributes);
3127                         if (specifiers->modifiers & DM_TRANSPARENT_UNION)
3128                                 modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
3129                         break;
3130
3131                 case T_IDENTIFIER: {
3132                         /* only parse identifier if we haven't found a type yet */
3133                         if(type != NULL || type_specifiers != 0)
3134                                 goto finish_specifiers;
3135
3136                         type_t *typedef_type = get_typedef_type(token.v.symbol);
3137
3138                         if(typedef_type == NULL)
3139                                 goto finish_specifiers;
3140
3141                         next_token();
3142                         type = typedef_type;
3143                         break;
3144                 }
3145
3146                 /* function specifier */
3147                 default:
3148                         goto finish_specifiers;
3149                 }
3150         }
3151
3152 finish_specifiers:
3153
3154         if(type == NULL) {
3155                 atomic_type_kind_t atomic_type;
3156
3157                 /* match valid basic types */
3158                 switch(type_specifiers) {
3159                 case SPECIFIER_VOID:
3160                         atomic_type = ATOMIC_TYPE_VOID;
3161                         break;
3162                 case SPECIFIER_CHAR:
3163                         atomic_type = ATOMIC_TYPE_CHAR;
3164                         break;
3165                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
3166                         atomic_type = ATOMIC_TYPE_SCHAR;
3167                         break;
3168                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
3169                         atomic_type = ATOMIC_TYPE_UCHAR;
3170                         break;
3171                 case SPECIFIER_SHORT:
3172                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
3173                 case SPECIFIER_SHORT | SPECIFIER_INT:
3174                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3175                         atomic_type = ATOMIC_TYPE_SHORT;
3176                         break;
3177                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
3178                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
3179                         atomic_type = ATOMIC_TYPE_USHORT;
3180                         break;
3181                 case SPECIFIER_INT:
3182                 case SPECIFIER_SIGNED:
3183                 case SPECIFIER_SIGNED | SPECIFIER_INT:
3184                         atomic_type = ATOMIC_TYPE_INT;
3185                         break;
3186                 case SPECIFIER_UNSIGNED:
3187                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
3188                         atomic_type = ATOMIC_TYPE_UINT;
3189                         break;
3190                 case SPECIFIER_LONG:
3191                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
3192                 case SPECIFIER_LONG | SPECIFIER_INT:
3193                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3194                         atomic_type = ATOMIC_TYPE_LONG;
3195                         break;
3196                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
3197                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
3198                         atomic_type = ATOMIC_TYPE_ULONG;
3199                         break;
3200                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3201                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3202                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
3203                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3204                         | SPECIFIER_INT:
3205                         atomic_type = ATOMIC_TYPE_LONGLONG;
3206                         break;
3207                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
3208                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
3209                         | SPECIFIER_INT:
3210                         atomic_type = ATOMIC_TYPE_ULONGLONG;
3211                         break;
3212
3213                 case SPECIFIER_UNSIGNED | SPECIFIER_INT8:
3214                         atomic_type = unsigned_int8_type_kind;
3215                         break;
3216
3217                 case SPECIFIER_UNSIGNED | SPECIFIER_INT16:
3218                         atomic_type = unsigned_int16_type_kind;
3219                         break;
3220
3221                 case SPECIFIER_UNSIGNED | SPECIFIER_INT32:
3222                         atomic_type = unsigned_int32_type_kind;
3223                         break;
3224
3225                 case SPECIFIER_UNSIGNED | SPECIFIER_INT64:
3226                         atomic_type = unsigned_int64_type_kind;
3227                         break;
3228
3229                 case SPECIFIER_UNSIGNED | SPECIFIER_INT128:
3230                         atomic_type = unsigned_int128_type_kind;
3231                         break;
3232
3233                 case SPECIFIER_INT8:
3234                 case SPECIFIER_SIGNED | SPECIFIER_INT8:
3235                         atomic_type = int8_type_kind;
3236                         break;
3237
3238                 case SPECIFIER_INT16:
3239                 case SPECIFIER_SIGNED | SPECIFIER_INT16:
3240                         atomic_type = int16_type_kind;
3241                         break;
3242
3243                 case SPECIFIER_INT32:
3244                 case SPECIFIER_SIGNED | SPECIFIER_INT32:
3245                         atomic_type = int32_type_kind;
3246                         break;
3247
3248                 case SPECIFIER_INT64:
3249                 case SPECIFIER_SIGNED | SPECIFIER_INT64:
3250                         atomic_type = int64_type_kind;
3251                         break;
3252
3253                 case SPECIFIER_INT128:
3254                 case SPECIFIER_SIGNED | SPECIFIER_INT128:
3255                         atomic_type = int128_type_kind;
3256                         break;
3257
3258                 case SPECIFIER_FLOAT:
3259                         atomic_type = ATOMIC_TYPE_FLOAT;
3260                         break;
3261                 case SPECIFIER_DOUBLE:
3262                         atomic_type = ATOMIC_TYPE_DOUBLE;
3263                         break;
3264                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
3265                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3266                         break;
3267                 case SPECIFIER_BOOL:
3268                         atomic_type = ATOMIC_TYPE_BOOL;
3269                         break;
3270                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
3271                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
3272                         atomic_type = ATOMIC_TYPE_FLOAT;
3273                         break;
3274                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3275                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3276                         atomic_type = ATOMIC_TYPE_DOUBLE;
3277                         break;
3278                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
3279                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
3280                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
3281                         break;
3282                 default:
3283                         /* invalid specifier combination, give an error message */
3284                         if(type_specifiers == 0) {
3285                                 if (! strict_mode) {
3286                                         if (warning.implicit_int) {
3287                                                 warningf(HERE, "no type specifiers in declaration, using 'int'");
3288                                         }
3289                                         atomic_type = ATOMIC_TYPE_INT;
3290                                         break;
3291                                 } else {
3292                                         errorf(HERE, "no type specifiers given in declaration");
3293                                 }
3294                         } else if((type_specifiers & SPECIFIER_SIGNED) &&
3295                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
3296                                 errorf(HERE, "signed and unsigned specifiers gives");
3297                         } else if(type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
3298                                 errorf(HERE, "only integer types can be signed or unsigned");
3299                         } else {
3300                                 errorf(HERE, "multiple datatypes in declaration");
3301                         }
3302                         atomic_type = ATOMIC_TYPE_INVALID;
3303                 }
3304
3305                 if(type_specifiers & SPECIFIER_COMPLEX &&
3306                    atomic_type != ATOMIC_TYPE_INVALID) {
3307                         type                = allocate_type_zero(TYPE_COMPLEX, &builtin_source_position);
3308                         type->complex.akind = atomic_type;
3309                 } else if(type_specifiers & SPECIFIER_IMAGINARY &&
3310                           atomic_type != ATOMIC_TYPE_INVALID) {
3311                         type                  = allocate_type_zero(TYPE_IMAGINARY, &builtin_source_position);
3312                         type->imaginary.akind = atomic_type;
3313                 } else {
3314                         type               = allocate_type_zero(TYPE_ATOMIC, &builtin_source_position);
3315                         type->atomic.akind = atomic_type;
3316                 }
3317                 newtype = 1;
3318         } else {
3319                 if(type_specifiers != 0) {
3320                         errorf(HERE, "multiple datatypes in declaration");
3321                 }
3322         }
3323
3324         /* FIXME: check type qualifiers here */
3325
3326         type->base.qualifiers = qualifiers;
3327         type->base.modifiers  = modifiers;
3328
3329         type_t *result = typehash_insert(type);
3330         if(newtype && result != type) {
3331                 free_type(type);
3332         }
3333
3334         specifiers->type = result;
3335 end_error:
3336         return;
3337 }
3338
3339 static type_qualifiers_t parse_type_qualifiers(void)
3340 {
3341         type_qualifiers_t qualifiers = TYPE_QUALIFIER_NONE;
3342
3343         while(true) {
3344                 switch(token.type) {
3345                 /* type qualifiers */
3346                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
3347                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
3348                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
3349                 /* microsoft extended type modifiers */
3350                 MATCH_TYPE_QUALIFIER(T__w64,     TYPE_QUALIFIER_W64);
3351                 MATCH_TYPE_QUALIFIER(T___ptr32,  TYPE_QUALIFIER_PTR32);
3352                 MATCH_TYPE_QUALIFIER(T___ptr64,  TYPE_QUALIFIER_PTR64);
3353                 MATCH_TYPE_QUALIFIER(T___uptr,   TYPE_QUALIFIER_UPTR);
3354                 MATCH_TYPE_QUALIFIER(T___sptr,   TYPE_QUALIFIER_SPTR);
3355
3356                 default:
3357                         return qualifiers;
3358                 }
3359         }
3360 }
3361
3362 static declaration_t *parse_identifier_list(void)
3363 {
3364         declaration_t *declarations     = NULL;
3365         declaration_t *last_declaration = NULL;
3366         do {
3367                 declaration_t *const declaration = allocate_declaration_zero();
3368                 declaration->type            = NULL; /* a K&R parameter list has no types, yet */
3369                 declaration->source_position = token.source_position;
3370                 declaration->symbol          = token.v.symbol;
3371                 next_token();
3372
3373                 if(last_declaration != NULL) {
3374                         last_declaration->next = declaration;
3375                 } else {
3376                         declarations = declaration;
3377                 }
3378                 last_declaration = declaration;
3379
3380                 if (token.type != ',') {
3381                         break;
3382                 }
3383                 next_token();
3384         } while(token.type == T_IDENTIFIER);
3385
3386         return declarations;
3387 }
3388
3389 static void semantic_parameter(declaration_t *declaration)
3390 {
3391         /* TODO: improve error messages */
3392
3393         if(declaration->declared_storage_class == STORAGE_CLASS_TYPEDEF) {
3394                 errorf(HERE, "typedef not allowed in parameter list");
3395         } else if(declaration->declared_storage_class != STORAGE_CLASS_NONE
3396                         && declaration->declared_storage_class != STORAGE_CLASS_REGISTER) {
3397                 errorf(HERE, "parameter may only have none or register storage class");
3398         }
3399
3400         type_t *const orig_type = declaration->type;
3401         type_t *      type      = skip_typeref(orig_type);
3402
3403         /* Array as last part of a parameter type is just syntactic sugar.  Turn it
3404          * into a pointer. Â§ 6.7.5.3 (7) */
3405         if (is_type_array(type)) {
3406                 type_t *const element_type = type->array.element_type;
3407
3408                 type = make_pointer_type(element_type, type->base.qualifiers);
3409
3410                 declaration->type = type;
3411         }
3412
3413         if(is_type_incomplete(type)) {
3414                 errorf(HERE, "incomplete type '%T' not allowed for parameter '%Y'",
3415                        orig_type, declaration->symbol);
3416         }
3417 }
3418
3419 static declaration_t *parse_parameter(void)
3420 {
3421         declaration_specifiers_t specifiers;
3422         memset(&specifiers, 0, sizeof(specifiers));
3423
3424         parse_declaration_specifiers(&specifiers);
3425
3426         declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/true);
3427
3428         semantic_parameter(declaration);
3429
3430         return declaration;
3431 }
3432
3433 static declaration_t *parse_parameters(function_type_t *type)
3434 {
3435         declaration_t *declarations = NULL;
3436
3437         eat('(');
3438         add_anchor_token(')');
3439         int saved_comma_state = save_and_reset_anchor_state(',');
3440
3441         if(token.type == T_IDENTIFIER) {
3442                 symbol_t *symbol = token.v.symbol;
3443                 if(!is_typedef_symbol(symbol)) {
3444                         type->kr_style_parameters = true;
3445                         declarations = parse_identifier_list();
3446                         goto parameters_finished;
3447                 }
3448         }
3449
3450         if(token.type == ')') {
3451                 type->unspecified_parameters = 1;
3452                 goto parameters_finished;
3453         }
3454         if(token.type == T_void && look_ahead(1)->type == ')') {
3455                 next_token();
3456                 goto parameters_finished;
3457         }
3458
3459         declaration_t        *declaration;
3460         declaration_t        *last_declaration = NULL;
3461         function_parameter_t *parameter;
3462         function_parameter_t *last_parameter = NULL;
3463
3464         while(true) {
3465                 switch(token.type) {
3466                 case T_DOTDOTDOT:
3467                         next_token();
3468                         type->variadic = 1;
3469                         goto parameters_finished;
3470
3471                 case T_IDENTIFIER:
3472                 case T___extension__:
3473                 DECLARATION_START
3474                         declaration = parse_parameter();
3475
3476                         parameter       = obstack_alloc(type_obst, sizeof(parameter[0]));
3477                         memset(parameter, 0, sizeof(parameter[0]));
3478                         parameter->type = declaration->type;
3479
3480                         if(last_parameter != NULL) {
3481                                 last_declaration->next = declaration;
3482                                 last_parameter->next   = parameter;
3483                         } else {
3484                                 type->parameters = parameter;
3485                                 declarations     = declaration;
3486                         }
3487                         last_parameter   = parameter;
3488                         last_declaration = declaration;
3489                         break;
3490
3491                 default:
3492                         goto parameters_finished;
3493                 }
3494                 if (token.type != ',') {
3495                         goto parameters_finished;
3496                 }
3497                 next_token();
3498         }
3499
3500
3501 parameters_finished:
3502         rem_anchor_token(')');
3503         expect(')');
3504
3505         restore_anchor_state(',', saved_comma_state);
3506         return declarations;
3507
3508 end_error:
3509         restore_anchor_state(',', saved_comma_state);
3510         return NULL;
3511 }
3512
3513 typedef enum {
3514         CONSTRUCT_INVALID,
3515         CONSTRUCT_POINTER,
3516         CONSTRUCT_FUNCTION,
3517         CONSTRUCT_ARRAY
3518 } construct_type_kind_t;
3519
3520 typedef struct construct_type_t construct_type_t;
3521 struct construct_type_t {
3522         construct_type_kind_t  kind;
3523         construct_type_t      *next;
3524 };
3525
3526 typedef struct parsed_pointer_t parsed_pointer_t;
3527 struct parsed_pointer_t {
3528         construct_type_t  construct_type;
3529         type_qualifiers_t type_qualifiers;
3530 };
3531
3532 typedef struct construct_function_type_t construct_function_type_t;
3533 struct construct_function_type_t {
3534         construct_type_t  construct_type;
3535         type_t           *function_type;
3536 };
3537
3538 typedef struct parsed_array_t parsed_array_t;
3539 struct parsed_array_t {
3540         construct_type_t  construct_type;
3541         type_qualifiers_t type_qualifiers;
3542         bool              is_static;
3543         bool              is_variable;
3544         expression_t     *size;
3545 };
3546
3547 typedef struct construct_base_type_t construct_base_type_t;
3548 struct construct_base_type_t {
3549         construct_type_t  construct_type;
3550         type_t           *type;
3551 };
3552
3553 static construct_type_t *parse_pointer_declarator(void)
3554 {
3555         eat('*');
3556
3557         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
3558         memset(pointer, 0, sizeof(pointer[0]));
3559         pointer->construct_type.kind = CONSTRUCT_POINTER;
3560         pointer->type_qualifiers     = parse_type_qualifiers();
3561
3562         return (construct_type_t*) pointer;
3563 }
3564
3565 static construct_type_t *parse_array_declarator(void)
3566 {
3567         eat('[');
3568         add_anchor_token(']');
3569
3570         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
3571         memset(array, 0, sizeof(array[0]));
3572         array->construct_type.kind = CONSTRUCT_ARRAY;
3573
3574         if(token.type == T_static) {
3575                 array->is_static = true;
3576                 next_token();
3577         }
3578
3579         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
3580         if(type_qualifiers != 0) {
3581                 if(token.type == T_static) {
3582                         array->is_static = true;
3583                         next_token();
3584                 }
3585         }
3586         array->type_qualifiers = type_qualifiers;
3587
3588         if(token.type == '*' && look_ahead(1)->type == ']') {
3589                 array->is_variable = true;
3590                 next_token();
3591         } else if(token.type != ']') {
3592                 array->size = parse_assignment_expression();
3593         }
3594
3595         rem_anchor_token(']');
3596         expect(']');
3597
3598         return (construct_type_t*) array;
3599 end_error:
3600         return NULL;
3601 }
3602
3603 static construct_type_t *parse_function_declarator(declaration_t *declaration)
3604 {
3605         type_t *type;
3606         if(declaration != NULL) {
3607                 type = allocate_type_zero(TYPE_FUNCTION, &declaration->source_position);
3608         } else {
3609                 type = allocate_type_zero(TYPE_FUNCTION, HERE);
3610         }
3611
3612         declaration_t *parameters = parse_parameters(&type->function);
3613         if(declaration != NULL) {
3614                 declaration->scope.declarations = parameters;
3615         }
3616
3617         construct_function_type_t *construct_function_type =
3618                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
3619         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
3620         construct_function_type->construct_type.kind = CONSTRUCT_FUNCTION;
3621         construct_function_type->function_type       = type;
3622
3623         return (construct_type_t*) construct_function_type;
3624 }
3625
3626 static void fix_declaration_type(declaration_t *declaration)
3627 {
3628         decl_modifiers_t declaration_modifiers = declaration->modifiers;
3629         type_modifiers_t type_modifiers        = declaration->type->base.modifiers;
3630
3631         if (declaration_modifiers & DM_TRANSPARENT_UNION)
3632                 type_modifiers |= TYPE_MODIFIER_TRANSPARENT_UNION;
3633
3634         if (declaration->type->base.modifiers == type_modifiers)
3635                 return;
3636
3637         type_t *copy = duplicate_type(declaration->type);
3638         copy->base.modifiers = type_modifiers;
3639
3640         type_t *result = typehash_insert(copy);
3641         if (result != copy) {
3642                 obstack_free(type_obst, copy);
3643         }
3644
3645         declaration->type = result;
3646 }
3647
3648 static construct_type_t *parse_inner_declarator(declaration_t *declaration,
3649                 bool may_be_abstract)
3650 {
3651         /* construct a single linked list of construct_type_t's which describe
3652          * how to construct the final declarator type */
3653         construct_type_t *first = NULL;
3654         construct_type_t *last  = NULL;
3655         gnu_attribute_t  *attributes = NULL;
3656
3657         /* pointers */
3658         while(token.type == '*') {
3659                 construct_type_t *type = parse_pointer_declarator();
3660
3661                 if(last == NULL) {
3662                         first = type;
3663                         last  = type;
3664                 } else {
3665                         last->next = type;
3666                         last       = type;
3667                 }
3668         }
3669
3670         /* TODO: find out if this is correct */
3671         decl_modifiers_t modifiers = parse_attributes(&attributes);
3672
3673         construct_type_t *inner_types = NULL;
3674
3675         switch(token.type) {
3676         case T_IDENTIFIER:
3677                 if(declaration == NULL) {
3678                         errorf(HERE, "no identifier expected in typename");
3679                 } else {
3680                         declaration->symbol          = token.v.symbol;
3681                         declaration->source_position = token.source_position;
3682                 }
3683                 next_token();
3684                 break;
3685         case '(':
3686                 next_token();
3687                 add_anchor_token(')');
3688                 inner_types = parse_inner_declarator(declaration, may_be_abstract);
3689                 rem_anchor_token(')');
3690                 expect(')');
3691                 break;
3692         default:
3693                 if(may_be_abstract)
3694                         break;
3695                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', NULL);
3696                 /* avoid a loop in the outermost scope, because eat_statement doesn't
3697                  * eat '}' */
3698                 if(token.type == '}' && current_function == NULL) {
3699                         next_token();
3700                 } else {
3701                         eat_statement();
3702                 }
3703                 return NULL;
3704         }
3705
3706         construct_type_t *p = last;
3707
3708         while(true) {
3709                 construct_type_t *type;
3710                 switch(token.type) {
3711                 case '(':
3712                         type = parse_function_declarator(declaration);
3713                         break;
3714                 case '[':
3715                         type = parse_array_declarator();
3716                         break;
3717                 default:
3718                         goto declarator_finished;
3719                 }
3720
3721                 /* insert in the middle of the list (behind p) */
3722                 if(p != NULL) {
3723                         type->next = p->next;
3724                         p->next    = type;
3725                 } else {
3726                         type->next = first;
3727                         first      = type;
3728                 }
3729                 if(last == p) {
3730                         last = type;
3731                 }
3732         }
3733
3734 declarator_finished:
3735         modifiers = parse_attributes(&attributes);
3736         if (declaration != NULL) {
3737                 declaration->modifiers |= modifiers;
3738         }
3739
3740         /* append inner_types at the end of the list, we don't to set last anymore
3741          * as it's not needed anymore */
3742         if(last == NULL) {
3743                 assert(first == NULL);
3744                 first = inner_types;
3745         } else {
3746                 last->next = inner_types;
3747         }
3748
3749         return first;
3750 end_error:
3751         return NULL;
3752 }
3753
3754 static type_t *construct_declarator_type(construct_type_t *construct_list,
3755                                          type_t *type)
3756 {
3757         construct_type_t *iter = construct_list;
3758         for( ; iter != NULL; iter = iter->next) {
3759                 switch(iter->kind) {
3760                 case CONSTRUCT_INVALID:
3761                         internal_errorf(HERE, "invalid type construction found");
3762                 case CONSTRUCT_FUNCTION: {
3763                         construct_function_type_t *construct_function_type
3764                                 = (construct_function_type_t*) iter;
3765
3766                         type_t *function_type = construct_function_type->function_type;
3767
3768                         function_type->function.return_type = type;
3769
3770                         type_t *skipped_return_type = skip_typeref(type);
3771                         if (is_type_function(skipped_return_type)) {
3772                                 errorf(HERE, "function returning function is not allowed");
3773                                 type = type_error_type;
3774                         } else if (is_type_array(skipped_return_type)) {
3775                                 errorf(HERE, "function returning array is not allowed");
3776                                 type = type_error_type;
3777                         } else {
3778                                 type = function_type;
3779                         }
3780                         break;
3781                 }
3782
3783                 case CONSTRUCT_POINTER: {
3784                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
3785                         type_t           *pointer_type   = allocate_type_zero(TYPE_POINTER, &null_position);
3786                         pointer_type->pointer.points_to  = type;
3787                         pointer_type->base.qualifiers    = parsed_pointer->type_qualifiers;
3788
3789                         type = pointer_type;
3790                         break;
3791                 }
3792
3793                 case CONSTRUCT_ARRAY: {
3794                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
3795                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY, &null_position);
3796
3797                         expression_t *size_expression = parsed_array->size;
3798                         if(size_expression != NULL) {
3799                                 size_expression
3800                                         = create_implicit_cast(size_expression, type_size_t);
3801                         }
3802
3803                         array_type->base.qualifiers       = parsed_array->type_qualifiers;
3804                         array_type->array.element_type    = type;
3805                         array_type->array.is_static       = parsed_array->is_static;
3806                         array_type->array.is_variable     = parsed_array->is_variable;
3807                         array_type->array.size_expression = size_expression;
3808
3809                         if(size_expression != NULL) {
3810                                 if(is_constant_expression(size_expression)) {
3811                                         array_type->array.size_constant = true;
3812                                         array_type->array.size
3813                                                 = fold_constant(size_expression);
3814                                 } else {
3815                                         array_type->array.is_vla = true;
3816                                 }
3817                         }
3818
3819                         type_t *skipped_type = skip_typeref(type);
3820                         if (is_type_atomic(skipped_type, ATOMIC_TYPE_VOID)) {
3821                                 errorf(HERE, "array of void is not allowed");
3822                                 type = type_error_type;
3823                         } else {
3824                                 type = array_type;
3825                         }
3826                         break;
3827                 }
3828                 }
3829
3830                 type_t *hashed_type = typehash_insert(type);
3831                 if(hashed_type != type) {
3832                         /* the function type was constructed earlier freeing it here will
3833                          * destroy other types... */
3834                         if(iter->kind != CONSTRUCT_FUNCTION) {
3835                                 free_type(type);
3836                         }
3837                         type = hashed_type;
3838                 }
3839         }
3840
3841         return type;
3842 }
3843
3844 static declaration_t *parse_declarator(
3845                 const declaration_specifiers_t *specifiers, bool may_be_abstract)
3846 {
3847         declaration_t *const declaration    = allocate_declaration_zero();
3848         declaration->declared_storage_class = specifiers->declared_storage_class;
3849         declaration->modifiers              = specifiers->modifiers;
3850         declaration->deprecated             = specifiers->deprecated;
3851         declaration->deprecated_string      = specifiers->deprecated_string;
3852         declaration->get_property_sym       = specifiers->get_property_sym;
3853         declaration->put_property_sym       = specifiers->put_property_sym;
3854         declaration->is_inline              = specifiers->is_inline;
3855
3856         declaration->storage_class          = specifiers->declared_storage_class;
3857         if(declaration->storage_class == STORAGE_CLASS_NONE
3858                         && scope != global_scope) {
3859                 declaration->storage_class = STORAGE_CLASS_AUTO;
3860         }
3861
3862         if(specifiers->alignment != 0) {
3863                 /* TODO: add checks here */
3864                 declaration->alignment = specifiers->alignment;
3865         }
3866
3867         construct_type_t *construct_type
3868                 = parse_inner_declarator(declaration, may_be_abstract);
3869         type_t *const type = specifiers->type;
3870         declaration->type = construct_declarator_type(construct_type, type);
3871
3872         fix_declaration_type(declaration);
3873
3874         if(construct_type != NULL) {
3875                 obstack_free(&temp_obst, construct_type);
3876         }
3877
3878         return declaration;
3879 }
3880
3881 static type_t *parse_abstract_declarator(type_t *base_type)
3882 {
3883         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
3884
3885         type_t *result = construct_declarator_type(construct_type, base_type);
3886         if(construct_type != NULL) {
3887                 obstack_free(&temp_obst, construct_type);
3888         }
3889
3890         return result;
3891 }
3892
3893 static declaration_t *append_declaration(declaration_t* const declaration)
3894 {
3895         if (last_declaration != NULL) {
3896                 last_declaration->next = declaration;
3897         } else {
3898                 scope->declarations = declaration;
3899         }
3900         last_declaration = declaration;
3901         return declaration;
3902 }
3903
3904 /**
3905  * Check if the declaration of main is suspicious.  main should be a
3906  * function with external linkage, returning int, taking either zero
3907  * arguments, two, or three arguments of appropriate types, ie.
3908  *
3909  * int main([ int argc, char **argv [, char **env ] ]).
3910  *
3911  * @param decl    the declaration to check
3912  * @param type    the function type of the declaration
3913  */
3914 static void check_type_of_main(const declaration_t *const decl, const function_type_t *const func_type)
3915 {
3916         if (decl->storage_class == STORAGE_CLASS_STATIC) {
3917                 warningf(&decl->source_position,
3918                          "'main' is normally a non-static function");
3919         }
3920         if (skip_typeref(func_type->return_type) != type_int) {
3921                 warningf(&decl->source_position,
3922                          "return type of 'main' should be 'int', but is '%T'",
3923                          func_type->return_type);
3924         }
3925         const function_parameter_t *parm = func_type->parameters;
3926         if (parm != NULL) {
3927                 type_t *const first_type = parm->type;
3928                 if (!types_compatible(skip_typeref(first_type), type_int)) {
3929                         warningf(&decl->source_position,
3930                                  "first argument of 'main' should be 'int', but is '%T'", first_type);
3931                 }
3932                 parm = parm->next;
3933                 if (parm != NULL) {
3934                         type_t *const second_type = parm->type;
3935                         if (!types_compatible(skip_typeref(second_type), type_char_ptr_ptr)) {
3936                                 warningf(&decl->source_position,
3937                                          "second argument of 'main' should be 'char**', but is '%T'", second_type);
3938                         }
3939                         parm = parm->next;
3940                         if (parm != NULL) {
3941                                 type_t *const third_type = parm->type;
3942                                 if (!types_compatible(skip_typeref(third_type), type_char_ptr_ptr)) {
3943                                         warningf(&decl->source_position,
3944                                                  "third argument of 'main' should be 'char**', but is '%T'", third_type);
3945                                 }
3946                                 parm = parm->next;
3947                                 if (parm != NULL) {
3948                                         warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
3949                                 }
3950                         }
3951                 } else {
3952                         warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
3953                 }
3954         }
3955 }
3956
3957 /**
3958  * Check if a symbol is the equal to "main".
3959  */
3960 static bool is_sym_main(const symbol_t *const sym)
3961 {
3962         return strcmp(sym->string, "main") == 0;
3963 }
3964
3965 static declaration_t *internal_record_declaration(
3966         declaration_t *const declaration,
3967         const bool is_function_definition)
3968 {
3969         const symbol_t *const symbol  = declaration->symbol;
3970         const namespace_t     namespc = (namespace_t)declaration->namespc;
3971
3972         assert(declaration->symbol != NULL);
3973         declaration_t *previous_declaration = get_declaration(symbol, namespc);
3974
3975         type_t *const orig_type = declaration->type;
3976         type_t *const type      = skip_typeref(orig_type);
3977         if (is_type_function(type) &&
3978                         type->function.unspecified_parameters &&
3979                         warning.strict_prototypes &&
3980                         previous_declaration == NULL) {
3981                 warningf(&declaration->source_position,
3982                          "function declaration '%#T' is not a prototype",
3983                          orig_type, declaration->symbol);
3984         }
3985
3986         if (is_function_definition && warning.main && is_sym_main(symbol)) {
3987                 check_type_of_main(declaration, &type->function);
3988         }
3989
3990         assert(declaration != previous_declaration);
3991         if (previous_declaration != NULL
3992                         && previous_declaration->parent_scope == scope) {
3993                 /* can happen for K&R style declarations */
3994                 if (previous_declaration->type == NULL) {
3995                         previous_declaration->type = declaration->type;
3996                 }
3997
3998                 const type_t *prev_type = skip_typeref(previous_declaration->type);
3999                 if (!types_compatible(type, prev_type)) {
4000                         errorf(&declaration->source_position,
4001                                    "declaration '%#T' is incompatible with '%#T' (declared %P)",
4002                                    orig_type, symbol, previous_declaration->type, symbol,
4003                                    &previous_declaration->source_position);
4004                 } else {
4005                         unsigned old_storage_class = previous_declaration->storage_class;
4006                         if (old_storage_class == STORAGE_CLASS_ENUM_ENTRY) {
4007                                 errorf(&declaration->source_position,
4008                                            "redeclaration of enum entry '%Y' (declared %P)",
4009                                            symbol, &previous_declaration->source_position);
4010                                 return previous_declaration;
4011                         }
4012
4013                         unsigned new_storage_class = declaration->storage_class;
4014
4015                         if (is_type_incomplete(prev_type)) {
4016                                 previous_declaration->type = type;
4017                                 prev_type                  = type;
4018                         }
4019
4020                         /* pretend no storage class means extern for function
4021                          * declarations (except if the previous declaration is neither
4022                          * none nor extern) */
4023                         if (is_type_function(type)) {
4024                                 if (prev_type->function.unspecified_parameters) {
4025                                         previous_declaration->type = type;
4026                                         prev_type                  = type;
4027                                 }
4028
4029                                 switch (old_storage_class) {
4030                                 case STORAGE_CLASS_NONE:
4031                                         old_storage_class = STORAGE_CLASS_EXTERN;
4032
4033                                 case STORAGE_CLASS_EXTERN:
4034                                         if (is_function_definition) {
4035                                                 if (warning.missing_prototypes &&
4036                                                         prev_type->function.unspecified_parameters &&
4037                                                         !is_sym_main(symbol)) {
4038                                                         warningf(&declaration->source_position,
4039                                                                          "no previous prototype for '%#T'",
4040                                                                          orig_type, symbol);
4041                                                 }
4042                                         } else if (new_storage_class == STORAGE_CLASS_NONE) {
4043                                                 new_storage_class = STORAGE_CLASS_EXTERN;
4044                                         }
4045                                         break;
4046
4047                                 default:
4048                                         break;
4049                                 }
4050                         }
4051
4052                         if (old_storage_class == STORAGE_CLASS_EXTERN &&
4053                                         new_storage_class == STORAGE_CLASS_EXTERN) {
4054 warn_redundant_declaration:
4055                                 if (warning.redundant_decls && strcmp(previous_declaration->source_position.input_name, "<builtin>") != 0) {
4056                                         warningf(&declaration->source_position,
4057                                                          "redundant declaration for '%Y' (declared %P)",
4058                                                          symbol, &previous_declaration->source_position);
4059                                 }
4060                         } else if (current_function == NULL) {
4061                                 if (old_storage_class != STORAGE_CLASS_STATIC &&
4062                                                 new_storage_class == STORAGE_CLASS_STATIC) {
4063                                         errorf(&declaration->source_position,
4064                                                    "static declaration of '%Y' follows non-static declaration (declared %P)",
4065                                                    symbol, &previous_declaration->source_position);
4066                                 } else if (old_storage_class != STORAGE_CLASS_EXTERN
4067                                                 && !is_function_definition) {
4068                                         goto warn_redundant_declaration;
4069                                 } else if (new_storage_class == STORAGE_CLASS_NONE) {
4070                                                 previous_declaration->storage_class = STORAGE_CLASS_NONE;
4071                                                 previous_declaration->declared_storage_class = STORAGE_CLASS_NONE;
4072                                 }
4073                         } else if (old_storage_class == new_storage_class) {
4074                                 errorf(&declaration->source_position,
4075                                            "redeclaration of '%Y' (declared %P)",
4076                                            symbol, &previous_declaration->source_position);
4077                         } else {
4078                                 errorf(&declaration->source_position,
4079                                            "redeclaration of '%Y' with different linkage (declared %P)",
4080                                            symbol, &previous_declaration->source_position);
4081                         }
4082                 }
4083
4084                 if (declaration->is_inline)
4085                         previous_declaration->is_inline = true;
4086                 return previous_declaration;
4087         } else if (is_function_definition) {
4088                 if (declaration->storage_class != STORAGE_CLASS_STATIC) {
4089                         if (warning.missing_prototypes && !is_sym_main(symbol)) {
4090                                 warningf(&declaration->source_position,
4091                                          "no previous prototype for '%#T'", orig_type, symbol);
4092                         } else if (warning.missing_declarations && !is_sym_main(symbol)) {
4093                                 warningf(&declaration->source_position,
4094                                          "no previous declaration for '%#T'", orig_type,
4095                                          symbol);
4096                         }
4097                 }
4098         } else if (warning.missing_declarations &&
4099             scope == global_scope &&
4100             !is_type_function(type) && (
4101               declaration->storage_class == STORAGE_CLASS_NONE ||
4102               declaration->storage_class == STORAGE_CLASS_THREAD
4103             )) {
4104                 warningf(&declaration->source_position,
4105                          "no previous declaration for '%#T'", orig_type, symbol);
4106         }
4107
4108         assert(declaration->parent_scope == NULL);
4109         assert(scope != NULL);
4110
4111         declaration->parent_scope = scope;
4112
4113         environment_push(declaration);
4114         return append_declaration(declaration);
4115 }
4116
4117 static declaration_t *record_declaration(declaration_t *declaration)
4118 {
4119         return internal_record_declaration(declaration, false);
4120 }
4121
4122 static declaration_t *record_function_definition(declaration_t *declaration)
4123 {
4124         return internal_record_declaration(declaration, true);
4125 }
4126
4127 static void parser_error_multiple_definition(declaration_t *declaration,
4128                 const source_position_t *source_position)
4129 {
4130         errorf(source_position, "multiple definition of symbol '%Y' (declared %P)",
4131                declaration->symbol, &declaration->source_position);
4132 }
4133
4134 static bool is_declaration_specifier(const token_t *token,
4135                                      bool only_specifiers_qualifiers)
4136 {
4137         switch(token->type) {
4138                 TYPE_SPECIFIERS
4139                 TYPE_QUALIFIERS
4140                         return true;
4141                 case T_IDENTIFIER:
4142                         return is_typedef_symbol(token->v.symbol);
4143
4144                 case T___extension__:
4145                 STORAGE_CLASSES
4146                         return !only_specifiers_qualifiers;
4147
4148                 default:
4149                         return false;
4150         }
4151 }
4152
4153 static void parse_init_declarator_rest(declaration_t *declaration)
4154 {
4155         eat('=');
4156
4157         type_t *orig_type = declaration->type;
4158         type_t *type      = skip_typeref(orig_type);
4159
4160         if(declaration->init.initializer != NULL) {
4161                 parser_error_multiple_definition(declaration, HERE);
4162         }
4163
4164         bool must_be_constant = false;
4165         if(declaration->storage_class == STORAGE_CLASS_STATIC
4166                         || declaration->storage_class == STORAGE_CLASS_THREAD_STATIC
4167                         || declaration->parent_scope == global_scope) {
4168                 must_be_constant = true;
4169         }
4170
4171         parse_initializer_env_t env;
4172         env.type             = orig_type;
4173         env.must_be_constant = must_be_constant;
4174         env.declaration      = declaration;
4175
4176         initializer_t *initializer = parse_initializer(&env);
4177
4178         if(env.type != orig_type) {
4179                 orig_type         = env.type;
4180                 type              = skip_typeref(orig_type);
4181                 declaration->type = env.type;
4182         }
4183
4184         if(is_type_function(type)) {
4185                 errorf(&declaration->source_position,
4186                        "initializers not allowed for function types at declator '%Y' (type '%T')",
4187                        declaration->symbol, orig_type);
4188         } else {
4189                 declaration->init.initializer = initializer;
4190         }
4191 }
4192
4193 /* parse rest of a declaration without any declarator */
4194 static void parse_anonymous_declaration_rest(
4195                 const declaration_specifiers_t *specifiers,
4196                 parsed_declaration_func finished_declaration)
4197 {
4198         eat(';');
4199
4200         declaration_t *const declaration    = allocate_declaration_zero();
4201         declaration->type                   = specifiers->type;
4202         declaration->declared_storage_class = specifiers->declared_storage_class;
4203         declaration->source_position        = specifiers->source_position;
4204         declaration->modifiers              = specifiers->modifiers;
4205
4206         if (declaration->declared_storage_class != STORAGE_CLASS_NONE) {
4207                 warningf(&declaration->source_position,
4208                          "useless storage class in empty declaration");
4209         }
4210         declaration->storage_class = STORAGE_CLASS_NONE;
4211
4212         type_t *type = declaration->type;
4213         switch (type->kind) {
4214                 case TYPE_COMPOUND_STRUCT:
4215                 case TYPE_COMPOUND_UNION: {
4216                         if (type->compound.declaration->symbol == NULL) {
4217                                 warningf(&declaration->source_position,
4218                                          "unnamed struct/union that defines no instances");
4219                         }
4220                         break;
4221                 }
4222
4223                 case TYPE_ENUM:
4224                         break;
4225
4226                 default:
4227                         warningf(&declaration->source_position, "empty declaration");
4228                         break;
4229         }
4230
4231         finished_declaration(declaration);
4232 }
4233
4234 static void parse_declaration_rest(declaration_t *ndeclaration,
4235                 const declaration_specifiers_t *specifiers,
4236                 parsed_declaration_func finished_declaration)
4237 {
4238         add_anchor_token(';');
4239         add_anchor_token('=');
4240         add_anchor_token(',');
4241         while(true) {
4242                 declaration_t *declaration = finished_declaration(ndeclaration);
4243
4244                 type_t *orig_type = declaration->type;
4245                 type_t *type      = skip_typeref(orig_type);
4246
4247                 if (type->kind != TYPE_FUNCTION &&
4248                     declaration->is_inline &&
4249                     is_type_valid(type)) {
4250                         warningf(&declaration->source_position,
4251                                  "variable '%Y' declared 'inline'\n", declaration->symbol);
4252                 }
4253
4254                 if(token.type == '=') {
4255                         parse_init_declarator_rest(declaration);
4256                 }
4257
4258                 if(token.type != ',')
4259                         break;
4260                 eat(',');
4261
4262                 ndeclaration = parse_declarator(specifiers, /*may_be_abstract=*/false);
4263         }
4264         expect(';');
4265
4266 end_error:
4267         rem_anchor_token(';');
4268         rem_anchor_token('=');
4269         rem_anchor_token(',');
4270 }
4271
4272 static declaration_t *finished_kr_declaration(declaration_t *declaration)
4273 {
4274         symbol_t *symbol  = declaration->symbol;
4275         if(symbol == NULL) {
4276                 errorf(HERE, "anonymous declaration not valid as function parameter");
4277                 return declaration;
4278         }
4279         namespace_t namespc = (namespace_t) declaration->namespc;
4280         if(namespc != NAMESPACE_NORMAL) {
4281                 return record_declaration(declaration);
4282         }
4283
4284         declaration_t *previous_declaration = get_declaration(symbol, namespc);
4285         if(previous_declaration == NULL ||
4286                         previous_declaration->parent_scope != scope) {
4287                 errorf(HERE, "expected declaration of a function parameter, found '%Y'",
4288                        symbol);
4289                 return declaration;
4290         }
4291
4292         if(previous_declaration->type == NULL) {
4293                 previous_declaration->type          = declaration->type;
4294                 previous_declaration->declared_storage_class = declaration->declared_storage_class;
4295                 previous_declaration->storage_class = declaration->storage_class;
4296                 previous_declaration->parent_scope  = scope;
4297                 return previous_declaration;
4298         } else {
4299                 return record_declaration(declaration);
4300         }
4301 }
4302
4303 static void parse_declaration(parsed_declaration_func finished_declaration)
4304 {
4305         declaration_specifiers_t specifiers;
4306         memset(&specifiers, 0, sizeof(specifiers));
4307         parse_declaration_specifiers(&specifiers);
4308
4309         if(token.type == ';') {
4310                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
4311         } else {
4312                 declaration_t *declaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
4313                 parse_declaration_rest(declaration, &specifiers, finished_declaration);
4314         }
4315 }
4316
4317 static type_t *get_default_promoted_type(type_t *orig_type)
4318 {
4319         type_t *result = orig_type;
4320
4321         type_t *type = skip_typeref(orig_type);
4322         if(is_type_integer(type)) {
4323                 result = promote_integer(type);
4324         } else if(type == type_float) {
4325                 result = type_double;
4326         }
4327
4328         return result;
4329 }
4330
4331 static void parse_kr_declaration_list(declaration_t *declaration)
4332 {
4333         type_t *type = skip_typeref(declaration->type);
4334         if (!is_type_function(type))
4335                 return;
4336
4337         if (!type->function.kr_style_parameters)
4338                 return;
4339
4340         /* push function parameters */
4341         int       top        = environment_top();
4342         scope_t  *last_scope = scope;
4343         set_scope(&declaration->scope);
4344
4345         declaration_t *parameter = declaration->scope.declarations;
4346         for ( ; parameter != NULL; parameter = parameter->next) {
4347                 assert(parameter->parent_scope == NULL);
4348                 parameter->parent_scope = scope;
4349                 environment_push(parameter);
4350         }
4351
4352         /* parse declaration list */
4353         while (is_declaration_specifier(&token, false)) {
4354                 parse_declaration(finished_kr_declaration);
4355         }
4356
4357         /* pop function parameters */
4358         assert(scope == &declaration->scope);
4359         set_scope(last_scope);
4360         environment_pop_to(top);
4361
4362         /* update function type */
4363         type_t *new_type = duplicate_type(type);
4364
4365         function_parameter_t *parameters     = NULL;
4366         function_parameter_t *last_parameter = NULL;
4367
4368         declaration_t *parameter_declaration = declaration->scope.declarations;
4369         for( ; parameter_declaration != NULL;
4370                         parameter_declaration = parameter_declaration->next) {
4371                 type_t *parameter_type = parameter_declaration->type;
4372                 if(parameter_type == NULL) {
4373                         if (strict_mode) {
4374                                 errorf(HERE, "no type specified for function parameter '%Y'",
4375                                        parameter_declaration->symbol);
4376                         } else {
4377                                 if (warning.implicit_int) {
4378                                         warningf(HERE, "no type specified for function parameter '%Y', using 'int'",
4379                                                 parameter_declaration->symbol);
4380                                 }
4381                                 parameter_type              = type_int;
4382                                 parameter_declaration->type = parameter_type;
4383                         }
4384                 }
4385
4386                 semantic_parameter(parameter_declaration);
4387                 parameter_type = parameter_declaration->type;
4388
4389                 /*
4390                  * we need the default promoted types for the function type
4391                  */
4392                 parameter_type = get_default_promoted_type(parameter_type);
4393
4394                 function_parameter_t *function_parameter
4395                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
4396                 memset(function_parameter, 0, sizeof(function_parameter[0]));
4397
4398                 function_parameter->type = parameter_type;
4399                 if(last_parameter != NULL) {
4400                         last_parameter->next = function_parameter;
4401                 } else {
4402                         parameters = function_parameter;
4403                 }
4404                 last_parameter = function_parameter;
4405         }
4406
4407         /* Â§ 6.9.1.7: A K&R style parameter list does NOT act as a function
4408          * prototype */
4409         new_type->function.parameters             = parameters;
4410         new_type->function.unspecified_parameters = true;
4411
4412         type = typehash_insert(new_type);
4413         if(type != new_type) {
4414                 obstack_free(type_obst, new_type);
4415         }
4416
4417         declaration->type = type;
4418 }
4419
4420 static bool first_err = true;
4421
4422 /**
4423  * When called with first_err set, prints the name of the current function,
4424  * else does noting.
4425  */
4426 static void print_in_function(void) {
4427         if (first_err) {
4428                 first_err = false;
4429                 diagnosticf("%s: In function '%Y':\n",
4430                         current_function->source_position.input_name,
4431                         current_function->symbol);
4432         }
4433 }
4434
4435 /**
4436  * Check if all labels are defined in the current function.
4437  * Check if all labels are used in the current function.
4438  */
4439 static void check_labels(void)
4440 {
4441         for (const goto_statement_t *goto_statement = goto_first;
4442             goto_statement != NULL;
4443             goto_statement = goto_statement->next) {
4444                 declaration_t *label = goto_statement->label;
4445
4446                 label->used = true;
4447                 if (label->source_position.input_name == NULL) {
4448                         print_in_function();
4449                         errorf(&goto_statement->base.source_position,
4450                                "label '%Y' used but not defined", label->symbol);
4451                  }
4452         }
4453         goto_first = goto_last = NULL;
4454
4455         if (warning.unused_label) {
4456                 for (const label_statement_t *label_statement = label_first;
4457                          label_statement != NULL;
4458                          label_statement = label_statement->next) {
4459                         const declaration_t *label = label_statement->label;
4460
4461                         if (! label->used) {
4462                                 print_in_function();
4463                                 warningf(&label_statement->base.source_position,
4464                                         "label '%Y' defined but not used", label->symbol);
4465                         }
4466                 }
4467         }
4468         label_first = label_last = NULL;
4469 }
4470
4471 /**
4472  * Check declarations of current_function for unused entities.
4473  */
4474 static void check_declarations(void)
4475 {
4476         if (warning.unused_parameter) {
4477                 const scope_t *scope = &current_function->scope;
4478
4479                 const declaration_t *parameter = scope->declarations;
4480                 for (; parameter != NULL; parameter = parameter->next) {
4481                         if (! parameter->used) {
4482                                 print_in_function();
4483                                 warningf(&parameter->source_position,
4484                                          "unused parameter '%Y'", parameter->symbol);
4485                         }
4486                 }
4487         }
4488         if (warning.unused_variable) {
4489         }
4490 }
4491
4492 static void parse_external_declaration(void)
4493 {
4494         /* function-definitions and declarations both start with declaration
4495          * specifiers */
4496         declaration_specifiers_t specifiers;
4497         memset(&specifiers, 0, sizeof(specifiers));
4498
4499         add_anchor_token(';');
4500         parse_declaration_specifiers(&specifiers);
4501         rem_anchor_token(';');
4502
4503         /* must be a declaration */
4504         if(token.type == ';') {
4505                 parse_anonymous_declaration_rest(&specifiers, append_declaration);
4506                 return;
4507         }
4508
4509         add_anchor_token(',');
4510         add_anchor_token('=');
4511         rem_anchor_token(';');
4512
4513         /* declarator is common to both function-definitions and declarations */
4514         declaration_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
4515
4516         rem_anchor_token(',');
4517         rem_anchor_token('=');
4518         rem_anchor_token(';');
4519
4520         /* must be a declaration */
4521         if(token.type == ',' || token.type == '=' || token.type == ';') {
4522                 parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
4523                 return;
4524         }
4525
4526         /* must be a function definition */
4527         parse_kr_declaration_list(ndeclaration);
4528
4529         if(token.type != '{') {
4530                 parse_error_expected("while parsing function definition", '{', NULL);
4531                 eat_until_matching_token(';');
4532                 return;
4533         }
4534
4535         type_t *type = ndeclaration->type;
4536
4537         /* note that we don't skip typerefs: the standard doesn't allow them here
4538          * (so we can't use is_type_function here) */
4539         if(type->kind != TYPE_FUNCTION) {
4540                 if (is_type_valid(type)) {
4541                         errorf(HERE, "declarator '%#T' has a body but is not a function type",
4542                                type, ndeclaration->symbol);
4543                 }
4544                 eat_block();
4545                 return;
4546         }
4547
4548         /* Â§ 6.7.5.3 (14) a function definition with () means no
4549          * parameters (and not unspecified parameters) */
4550         if(type->function.unspecified_parameters
4551                         && type->function.parameters == NULL
4552                         && !type->function.kr_style_parameters) {
4553                 type_t *duplicate = duplicate_type(type);
4554                 duplicate->function.unspecified_parameters = false;
4555
4556                 type = typehash_insert(duplicate);
4557                 if(type != duplicate) {
4558                         obstack_free(type_obst, duplicate);
4559                 }
4560                 ndeclaration->type = type;
4561         }
4562
4563         declaration_t *const declaration = record_function_definition(ndeclaration);
4564         if(ndeclaration != declaration) {
4565                 declaration->scope = ndeclaration->scope;
4566         }
4567         type = skip_typeref(declaration->type);
4568
4569         /* push function parameters and switch scope */
4570         int       top        = environment_top();
4571         scope_t  *last_scope = scope;
4572         set_scope(&declaration->scope);
4573
4574         declaration_t *parameter = declaration->scope.declarations;
4575         for( ; parameter != NULL; parameter = parameter->next) {
4576                 if(parameter->parent_scope == &ndeclaration->scope) {
4577                         parameter->parent_scope = scope;
4578                 }
4579                 assert(parameter->parent_scope == NULL
4580                                 || parameter->parent_scope == scope);
4581                 parameter->parent_scope = scope;
4582                 if (parameter->symbol == NULL) {
4583                         errorf(&ndeclaration->source_position, "parameter name omitted");
4584                         continue;
4585                 }
4586                 environment_push(parameter);
4587         }
4588
4589         if(declaration->init.statement != NULL) {
4590                 parser_error_multiple_definition(declaration, HERE);
4591                 eat_block();
4592                 goto end_of_parse_external_declaration;
4593         } else {
4594                 /* parse function body */
4595                 int            label_stack_top      = label_top();
4596                 declaration_t *old_current_function = current_function;
4597                 current_function                    = declaration;
4598
4599                 declaration->init.statement = parse_compound_statement(false);
4600                 first_err = true;
4601                 check_labels();
4602                 check_declarations();
4603
4604                 assert(current_function == declaration);
4605                 current_function = old_current_function;
4606                 label_pop_to(label_stack_top);
4607         }
4608
4609 end_of_parse_external_declaration:
4610         assert(scope == &declaration->scope);
4611         set_scope(last_scope);
4612         environment_pop_to(top);
4613 }
4614
4615 static type_t *make_bitfield_type(type_t *base_type, expression_t *size,
4616                                   source_position_t *source_position)
4617 {
4618         type_t *type = allocate_type_zero(TYPE_BITFIELD, source_position);
4619
4620         type->bitfield.base_type = base_type;
4621         type->bitfield.size      = size;
4622
4623         return type;
4624 }
4625
4626 static declaration_t *find_compound_entry(declaration_t *compound_declaration,
4627                                           symbol_t *symbol)
4628 {
4629         declaration_t *iter = compound_declaration->scope.declarations;
4630         for( ; iter != NULL; iter = iter->next) {
4631                 if(iter->namespc != NAMESPACE_NORMAL)
4632                         continue;
4633
4634                 if(iter->symbol == NULL) {
4635                         type_t *type = skip_typeref(iter->type);
4636                         if(is_type_compound(type)) {
4637                                 declaration_t *result
4638                                         = find_compound_entry(type->compound.declaration, symbol);
4639                                 if(result != NULL)
4640                                         return result;
4641                         }
4642                         continue;
4643                 }
4644
4645                 if(iter->symbol == symbol) {
4646                         return iter;
4647                 }
4648         }
4649
4650         return NULL;
4651 }
4652
4653 static void parse_compound_declarators(declaration_t *struct_declaration,
4654                 const declaration_specifiers_t *specifiers)
4655 {
4656         declaration_t *last_declaration = struct_declaration->scope.declarations;
4657         if(last_declaration != NULL) {
4658                 while(last_declaration->next != NULL) {
4659                         last_declaration = last_declaration->next;
4660                 }
4661         }
4662
4663         while(1) {
4664                 declaration_t *declaration;
4665
4666                 if(token.type == ':') {
4667                         source_position_t source_position = *HERE;
4668                         next_token();
4669
4670                         type_t *base_type = specifiers->type;
4671                         expression_t *size = parse_constant_expression();
4672
4673                         if(!is_type_integer(skip_typeref(base_type))) {
4674                                 errorf(HERE, "bitfield base type '%T' is not an integer type",
4675                                        base_type);
4676                         }
4677
4678                         type_t *type = make_bitfield_type(base_type, size, &source_position);
4679
4680                         declaration                         = allocate_declaration_zero();
4681                         declaration->namespc                = NAMESPACE_NORMAL;
4682                         declaration->declared_storage_class = STORAGE_CLASS_NONE;
4683                         declaration->storage_class          = STORAGE_CLASS_NONE;
4684                         declaration->source_position        = source_position;
4685                         declaration->modifiers              = specifiers->modifiers;
4686                         declaration->type                   = type;
4687                 } else {
4688                         declaration = parse_declarator(specifiers,/*may_be_abstract=*/true);
4689
4690                         type_t *orig_type = declaration->type;
4691                         type_t *type      = skip_typeref(orig_type);
4692
4693                         if(token.type == ':') {
4694                                 source_position_t source_position = *HERE;
4695                                 next_token();
4696                                 expression_t *size = parse_constant_expression();
4697
4698                                 if(!is_type_integer(type)) {
4699                                         errorf(HERE, "bitfield base type '%T' is not an "
4700                                                "integer type", orig_type);
4701                                 }
4702
4703                                 type_t *bitfield_type = make_bitfield_type(orig_type, size, &source_position);
4704                                 declaration->type = bitfield_type;
4705                         } else {
4706                                 /* TODO we ignore arrays for now... what is missing is a check
4707                                  * that they're at the end of the struct */
4708                                 if(is_type_incomplete(type) && !is_type_array(type)) {
4709                                         errorf(HERE,
4710                                                "compound member '%Y' has incomplete type '%T'",
4711                                                declaration->symbol, orig_type);
4712                                 } else if(is_type_function(type)) {
4713                                         errorf(HERE, "compound member '%Y' must not have function "
4714                                                "type '%T'", declaration->symbol, orig_type);
4715                                 }
4716                         }
4717                 }
4718
4719                 /* make sure we don't define a symbol multiple times */
4720                 symbol_t *symbol = declaration->symbol;
4721                 if(symbol != NULL) {
4722                         declaration_t *prev_decl
4723                                 = find_compound_entry(struct_declaration, symbol);
4724
4725                         if(prev_decl != NULL) {
4726                                 assert(prev_decl->symbol == symbol);
4727                                 errorf(&declaration->source_position,
4728                                        "multiple declarations of symbol '%Y' (declared %P)",
4729                                        symbol, &prev_decl->source_position);
4730                         }
4731                 }
4732
4733                 /* append declaration */
4734                 if(last_declaration != NULL) {
4735                         last_declaration->next = declaration;
4736                 } else {
4737                         struct_declaration->scope.declarations = declaration;
4738                 }
4739                 last_declaration = declaration;
4740
4741                 if(token.type != ',')
4742                         break;
4743                 next_token();
4744         }
4745         expect(';');
4746
4747 end_error:
4748         ;
4749 }
4750
4751 static void parse_compound_type_entries(declaration_t *compound_declaration)
4752 {
4753         eat('{');
4754         add_anchor_token('}');
4755
4756         while(token.type != '}' && token.type != T_EOF) {
4757                 declaration_specifiers_t specifiers;
4758                 memset(&specifiers, 0, sizeof(specifiers));
4759                 parse_declaration_specifiers(&specifiers);
4760
4761                 parse_compound_declarators(compound_declaration, &specifiers);
4762         }
4763         rem_anchor_token('}');
4764
4765         if(token.type == T_EOF) {
4766                 errorf(HERE, "EOF while parsing struct");
4767         }
4768         next_token();
4769 }
4770
4771 static type_t *parse_typename(void)
4772 {
4773         declaration_specifiers_t specifiers;
4774         memset(&specifiers, 0, sizeof(specifiers));
4775         parse_declaration_specifiers(&specifiers);
4776         if(specifiers.declared_storage_class != STORAGE_CLASS_NONE) {
4777                 /* TODO: improve error message, user does probably not know what a
4778                  * storage class is...
4779                  */
4780                 errorf(HERE, "typename may not have a storage class");
4781         }
4782
4783         type_t *result = parse_abstract_declarator(specifiers.type);
4784
4785         return result;
4786 }
4787
4788
4789
4790
4791 typedef expression_t* (*parse_expression_function) (unsigned precedence);
4792 typedef expression_t* (*parse_expression_infix_function) (unsigned precedence,
4793                                                           expression_t *left);
4794
4795 typedef struct expression_parser_function_t expression_parser_function_t;
4796 struct expression_parser_function_t {
4797         unsigned                         precedence;
4798         parse_expression_function        parser;
4799         unsigned                         infix_precedence;
4800         parse_expression_infix_function  infix_parser;
4801 };
4802
4803 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
4804
4805 /**
4806  * Prints an error message if an expression was expected but not read
4807  */
4808 static expression_t *expected_expression_error(void)
4809 {
4810         /* skip the error message if the error token was read */
4811         if (token.type != T_ERROR) {
4812                 errorf(HERE, "expected expression, got token '%K'", &token);
4813         }
4814         next_token();
4815
4816         return create_invalid_expression();
4817 }
4818
4819 /**
4820  * Parse a string constant.
4821  */
4822 static expression_t *parse_string_const(void)
4823 {
4824         wide_string_t wres;
4825         if (token.type == T_STRING_LITERAL) {
4826                 string_t res = token.v.string;
4827                 next_token();
4828                 while (token.type == T_STRING_LITERAL) {
4829                         res = concat_strings(&res, &token.v.string);
4830                         next_token();
4831                 }
4832                 if (token.type != T_WIDE_STRING_LITERAL) {
4833                         expression_t *const cnst = allocate_expression_zero(EXPR_STRING_LITERAL);
4834                         /* note: that we use type_char_ptr here, which is already the
4835                          * automatic converted type. revert_automatic_type_conversion
4836                          * will construct the array type */
4837                         cnst->base.type    = type_char_ptr;
4838                         cnst->string.value = res;
4839                         return cnst;
4840                 }
4841
4842                 wres = concat_string_wide_string(&res, &token.v.wide_string);
4843         } else {
4844                 wres = token.v.wide_string;
4845         }
4846         next_token();
4847
4848         for (;;) {
4849                 switch (token.type) {
4850                         case T_WIDE_STRING_LITERAL:
4851                                 wres = concat_wide_strings(&wres, &token.v.wide_string);
4852                                 break;
4853
4854                         case T_STRING_LITERAL:
4855                                 wres = concat_wide_string_string(&wres, &token.v.string);
4856                                 break;
4857
4858                         default: {
4859                                 expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
4860                                 cnst->base.type         = type_wchar_t_ptr;
4861                                 cnst->wide_string.value = wres;
4862                                 return cnst;
4863                         }
4864                 }
4865                 next_token();
4866         }
4867 }
4868
4869 /**
4870  * Parse an integer constant.
4871  */
4872 static expression_t *parse_int_const(void)
4873 {
4874         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
4875         cnst->base.source_position = *HERE;
4876         cnst->base.type            = token.datatype;
4877         cnst->conste.v.int_value   = token.v.intvalue;
4878
4879         next_token();
4880
4881         return cnst;
4882 }
4883
4884 /**
4885  * Parse a character constant.
4886  */
4887 static expression_t *parse_character_constant(void)
4888 {
4889         expression_t *cnst = allocate_expression_zero(EXPR_CHARACTER_CONSTANT);
4890
4891         cnst->base.source_position = *HERE;
4892         cnst->base.type            = token.datatype;
4893         cnst->conste.v.character   = token.v.string;
4894
4895         if (cnst->conste.v.character.size != 1) {
4896                 if (warning.multichar && (c_mode & _GNUC)) {
4897                         /* TODO */
4898                         warningf(HERE, "multi-character character constant");
4899                 } else {
4900                         errorf(HERE, "more than 1 characters in character constant");
4901                 }
4902         }
4903         next_token();
4904
4905         return cnst;
4906 }
4907
4908 /**
4909  * Parse a wide character constant.
4910  */
4911 static expression_t *parse_wide_character_constant(void)
4912 {
4913         expression_t *cnst = allocate_expression_zero(EXPR_WIDE_CHARACTER_CONSTANT);
4914
4915         cnst->base.source_position    = *HERE;
4916         cnst->base.type               = token.datatype;
4917         cnst->conste.v.wide_character = token.v.wide_string;
4918
4919         if (cnst->conste.v.wide_character.size != 1) {
4920                 if (warning.multichar && (c_mode & _GNUC)) {
4921                         /* TODO */
4922                         warningf(HERE, "multi-character character constant");
4923                 } else {
4924                         errorf(HERE, "more than 1 characters in character constant");
4925                 }
4926         }
4927         next_token();
4928
4929         return cnst;
4930 }
4931
4932 /**
4933  * Parse a float constant.
4934  */
4935 static expression_t *parse_float_const(void)
4936 {
4937         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
4938         cnst->base.type            = token.datatype;
4939         cnst->conste.v.float_value = token.v.floatvalue;
4940
4941         next_token();
4942
4943         return cnst;
4944 }
4945
4946 static declaration_t *create_implicit_function(symbol_t *symbol,
4947                 const source_position_t *source_position)
4948 {
4949         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION, source_position);
4950         ntype->function.return_type            = type_int;
4951         ntype->function.unspecified_parameters = true;
4952
4953         type_t *type = typehash_insert(ntype);
4954         if(type != ntype) {
4955                 free_type(ntype);
4956         }
4957
4958         declaration_t *const declaration    = allocate_declaration_zero();
4959         declaration->storage_class          = STORAGE_CLASS_EXTERN;
4960         declaration->declared_storage_class = STORAGE_CLASS_EXTERN;
4961         declaration->type                   = type;
4962         declaration->symbol                 = symbol;
4963         declaration->source_position        = *source_position;
4964
4965         bool strict_prototypes_old = warning.strict_prototypes;
4966         warning.strict_prototypes  = false;
4967         record_declaration(declaration);
4968         warning.strict_prototypes = strict_prototypes_old;
4969
4970         return declaration;
4971 }
4972
4973 /**
4974  * Creates a return_type (func)(argument_type) function type if not
4975  * already exists.
4976  */
4977 static type_t *make_function_2_type(type_t *return_type, type_t *argument_type1,
4978                                     type_t *argument_type2)
4979 {
4980         function_parameter_t *parameter2
4981                 = obstack_alloc(type_obst, sizeof(parameter2[0]));
4982         memset(parameter2, 0, sizeof(parameter2[0]));
4983         parameter2->type = argument_type2;
4984
4985         function_parameter_t *parameter1
4986                 = obstack_alloc(type_obst, sizeof(parameter1[0]));
4987         memset(parameter1, 0, sizeof(parameter1[0]));
4988         parameter1->type = argument_type1;
4989         parameter1->next = parameter2;
4990
4991         type_t *type               = allocate_type_zero(TYPE_FUNCTION, &builtin_source_position);
4992         type->function.return_type = return_type;
4993         type->function.parameters  = parameter1;
4994
4995         type_t *result = typehash_insert(type);
4996         if(result != type) {
4997                 free_type(type);
4998         }
4999
5000         return result;
5001 }
5002
5003 /**
5004  * Creates a return_type (func)(argument_type) function type if not
5005  * already exists.
5006  *
5007  * @param return_type    the return type
5008  * @param argument_type  the argument type
5009  */
5010 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
5011 {
5012         function_parameter_t *parameter
5013                 = obstack_alloc(type_obst, sizeof(parameter[0]));
5014         memset(parameter, 0, sizeof(parameter[0]));
5015         parameter->type = argument_type;
5016
5017         type_t *type               = allocate_type_zero(TYPE_FUNCTION, &builtin_source_position);
5018         type->function.return_type = return_type;
5019         type->function.parameters  = parameter;
5020
5021         type_t *result = typehash_insert(type);
5022         if(result != type) {
5023                 free_type(type);
5024         }
5025
5026         return result;
5027 }
5028
5029 static type_t *make_function_0_type(type_t *return_type)
5030 {
5031         type_t *type               = allocate_type_zero(TYPE_FUNCTION, &builtin_source_position);
5032         type->function.return_type = return_type;
5033         type->function.parameters  = NULL;
5034
5035         type_t *result = typehash_insert(type);
5036         if(result != type) {
5037                 free_type(type);
5038         }
5039
5040         return result;
5041 }
5042
5043 /**
5044  * Creates a function type for some function like builtins.
5045  *
5046  * @param symbol   the symbol describing the builtin
5047  */
5048 static type_t *get_builtin_symbol_type(symbol_t *symbol)
5049 {
5050         switch(symbol->ID) {
5051         case T___builtin_alloca:
5052                 return make_function_1_type(type_void_ptr, type_size_t);
5053         case T___builtin_huge_val:
5054                 return make_function_0_type(type_double);
5055         case T___builtin_nan:
5056                 return make_function_1_type(type_double, type_char_ptr);
5057         case T___builtin_nanf:
5058                 return make_function_1_type(type_float, type_char_ptr);
5059         case T___builtin_nand:
5060                 return make_function_1_type(type_long_double, type_char_ptr);
5061         case T___builtin_va_end:
5062                 return make_function_1_type(type_void, type_valist);
5063         case T___builtin_expect:
5064                 return make_function_2_type(type_long, type_long, type_long);
5065         default:
5066                 internal_errorf(HERE, "not implemented builtin symbol found");
5067         }
5068 }
5069
5070 /**
5071  * Performs automatic type cast as described in Â§ 6.3.2.1.
5072  *
5073  * @param orig_type  the original type
5074  */
5075 static type_t *automatic_type_conversion(type_t *orig_type)
5076 {
5077         type_t *type = skip_typeref(orig_type);
5078         if(is_type_array(type)) {
5079                 array_type_t *array_type   = &type->array;
5080                 type_t       *element_type = array_type->element_type;
5081                 unsigned      qualifiers   = array_type->base.qualifiers;
5082
5083                 return make_pointer_type(element_type, qualifiers);
5084         }
5085
5086         if(is_type_function(type)) {
5087                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
5088         }
5089
5090         return orig_type;
5091 }
5092
5093 /**
5094  * reverts the automatic casts of array to pointer types and function
5095  * to function-pointer types as defined Â§ 6.3.2.1
5096  */
5097 type_t *revert_automatic_type_conversion(const expression_t *expression)
5098 {
5099         switch (expression->kind) {
5100                 case EXPR_REFERENCE: return expression->reference.declaration->type;
5101                 case EXPR_SELECT:    return expression->select.compound_entry->type;
5102
5103                 case EXPR_UNARY_DEREFERENCE: {
5104                         const expression_t *const value = expression->unary.value;
5105                         type_t             *const type  = skip_typeref(value->base.type);
5106                         assert(is_type_pointer(type));
5107                         return type->pointer.points_to;
5108                 }
5109
5110                 case EXPR_BUILTIN_SYMBOL:
5111                         return get_builtin_symbol_type(expression->builtin_symbol.symbol);
5112
5113                 case EXPR_ARRAY_ACCESS: {
5114                         const expression_t *array_ref = expression->array_access.array_ref;
5115                         type_t             *type_left = skip_typeref(array_ref->base.type);
5116                         if (!is_type_valid(type_left))
5117                                 return type_left;
5118                         assert(is_type_pointer(type_left));
5119                         return type_left->pointer.points_to;
5120                 }
5121
5122                 case EXPR_STRING_LITERAL: {
5123                         size_t size = expression->string.value.size;
5124                         return make_array_type(type_char, size, TYPE_QUALIFIER_NONE);
5125                 }
5126
5127                 case EXPR_WIDE_STRING_LITERAL: {
5128                         size_t size = expression->wide_string.value.size;
5129                         return make_array_type(type_wchar_t, size, TYPE_QUALIFIER_NONE);
5130                 }
5131
5132                 case EXPR_COMPOUND_LITERAL:
5133                         return expression->compound_literal.type;
5134
5135                 default: break;
5136         }
5137
5138         return expression->base.type;
5139 }
5140
5141 static expression_t *parse_reference(void)
5142 {
5143         expression_t *expression = allocate_expression_zero(EXPR_REFERENCE);
5144
5145         reference_expression_t *ref = &expression->reference;
5146         symbol_t *const symbol = token.v.symbol;
5147
5148         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
5149
5150         source_position_t source_position = token.source_position;
5151         next_token();
5152
5153         if(declaration == NULL) {
5154                 if (! strict_mode && token.type == '(') {
5155                         /* an implicitly defined function */
5156                         if (warning.implicit_function_declaration) {
5157                                 warningf(HERE, "implicit declaration of function '%Y'",
5158                                         symbol);
5159                         }
5160
5161                         declaration = create_implicit_function(symbol,
5162                                                                &source_position);
5163                 } else {
5164                         errorf(HERE, "unknown symbol '%Y' found.", symbol);
5165                         return create_invalid_expression();
5166                 }
5167         }
5168
5169         type_t *type         = declaration->type;
5170
5171         /* we always do the auto-type conversions; the & and sizeof parser contains
5172          * code to revert this! */
5173         type = automatic_type_conversion(type);
5174
5175         ref->declaration = declaration;
5176         ref->base.type   = type;
5177
5178         /* this declaration is used */
5179         declaration->used = true;
5180
5181         /* check for deprecated functions */
5182         if(declaration->deprecated != 0) {
5183                 const char *prefix = "";
5184                 if (is_type_function(declaration->type))
5185                         prefix = "function ";
5186
5187                 if (declaration->deprecated_string != NULL) {
5188                         warningf(&source_position,
5189                                 "%s'%Y' was declared 'deprecated(\"%s\")'", prefix, declaration->symbol,
5190                                 declaration->deprecated_string);
5191                 } else {
5192                         warningf(&source_position,
5193                                 "%s'%Y' was declared 'deprecated'", prefix, declaration->symbol);
5194                 }
5195         }
5196
5197         return expression;
5198 }
5199
5200 static void check_cast_allowed(expression_t *expression, type_t *dest_type)
5201 {
5202         (void) expression;
5203         (void) dest_type;
5204         /* TODO check if explicit cast is allowed and issue warnings/errors */
5205 }
5206
5207 static expression_t *parse_compound_literal(type_t *type)
5208 {
5209         expression_t *expression = allocate_expression_zero(EXPR_COMPOUND_LITERAL);
5210
5211         parse_initializer_env_t env;
5212         env.type             = type;
5213         env.declaration      = NULL;
5214         env.must_be_constant = false;
5215         initializer_t *initializer = parse_initializer(&env);
5216         type = env.type;
5217
5218         expression->compound_literal.initializer = initializer;
5219         expression->compound_literal.type        = type;
5220         expression->base.type                    = automatic_type_conversion(type);
5221
5222         return expression;
5223 }
5224
5225 /**
5226  * Parse a cast expression.
5227  */
5228 static expression_t *parse_cast(void)
5229 {
5230         source_position_t source_position = token.source_position;
5231
5232         type_t *type  = parse_typename();
5233
5234         /* matching add_anchor_token() is at call site */
5235         rem_anchor_token(')');
5236         expect(')');
5237
5238         if(token.type == '{') {
5239                 return parse_compound_literal(type);
5240         }
5241
5242         expression_t *cast = allocate_expression_zero(EXPR_UNARY_CAST);
5243         cast->base.source_position = source_position;
5244
5245         expression_t *value = parse_sub_expression(20);
5246
5247         check_cast_allowed(value, type);
5248
5249         cast->base.type   = type;
5250         cast->unary.value = value;
5251
5252         return cast;
5253 end_error:
5254         return create_invalid_expression();
5255 }
5256
5257 /**
5258  * Parse a statement expression.
5259  */
5260 static expression_t *parse_statement_expression(void)
5261 {
5262         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
5263
5264         statement_t *statement           = parse_compound_statement(true);
5265         expression->statement.statement  = statement;
5266         expression->base.source_position = statement->base.source_position;
5267
5268         /* find last statement and use its type */
5269         type_t *type = type_void;
5270         const statement_t *stmt = statement->compound.statements;
5271         if (stmt != NULL) {
5272                 while (stmt->base.next != NULL)
5273                         stmt = stmt->base.next;
5274
5275                 if (stmt->kind == STATEMENT_EXPRESSION) {
5276                         type = stmt->expression.expression->base.type;
5277                 }
5278         } else {
5279                 warningf(&expression->base.source_position, "empty statement expression ({})");
5280         }
5281         expression->base.type = type;
5282
5283         expect(')');
5284
5285         return expression;
5286 end_error:
5287         return create_invalid_expression();
5288 }
5289
5290 /**
5291  * Parse a braced expression.
5292  */
5293 static expression_t *parse_brace_expression(void)
5294 {
5295         eat('(');
5296         add_anchor_token(')');
5297
5298         switch(token.type) {
5299         case '{':
5300                 /* gcc extension: a statement expression */
5301                 return parse_statement_expression();
5302
5303         TYPE_QUALIFIERS
5304         TYPE_SPECIFIERS
5305                 return parse_cast();
5306         case T_IDENTIFIER:
5307                 if(is_typedef_symbol(token.v.symbol)) {
5308                         return parse_cast();
5309                 }
5310         }
5311
5312         expression_t *result = parse_expression();
5313         rem_anchor_token(')');
5314         expect(')');
5315
5316         return result;
5317 end_error:
5318         return create_invalid_expression();
5319 }
5320
5321 static expression_t *parse_function_keyword(void)
5322 {
5323         next_token();
5324         /* TODO */
5325
5326         if (current_function == NULL) {
5327                 errorf(HERE, "'__func__' used outside of a function");
5328         }
5329
5330         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5331         expression->base.type     = type_char_ptr;
5332         expression->funcname.kind = FUNCNAME_FUNCTION;
5333
5334         return expression;
5335 }
5336
5337 static expression_t *parse_pretty_function_keyword(void)
5338 {
5339         eat(T___PRETTY_FUNCTION__);
5340
5341         if (current_function == NULL) {
5342                 errorf(HERE, "'__PRETTY_FUNCTION__' used outside of a function");
5343         }
5344
5345         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5346         expression->base.type     = type_char_ptr;
5347         expression->funcname.kind = FUNCNAME_PRETTY_FUNCTION;
5348
5349         return expression;
5350 }
5351
5352 static expression_t *parse_funcsig_keyword(void)
5353 {
5354         eat(T___FUNCSIG__);
5355
5356         if (current_function == NULL) {
5357                 errorf(HERE, "'__FUNCSIG__' used outside of a function");
5358         }
5359
5360         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5361         expression->base.type     = type_char_ptr;
5362         expression->funcname.kind = FUNCNAME_FUNCSIG;
5363
5364         return expression;
5365 }
5366
5367 static expression_t *parse_funcdname_keyword(void)
5368 {
5369         eat(T___FUNCDNAME__);
5370
5371         if (current_function == NULL) {
5372                 errorf(HERE, "'__FUNCDNAME__' used outside of a function");
5373         }
5374
5375         expression_t *expression  = allocate_expression_zero(EXPR_FUNCNAME);
5376         expression->base.type     = type_char_ptr;
5377         expression->funcname.kind = FUNCNAME_FUNCDNAME;
5378
5379         return expression;
5380 }
5381
5382 static designator_t *parse_designator(void)
5383 {
5384         designator_t *result    = allocate_ast_zero(sizeof(result[0]));
5385         result->source_position = *HERE;
5386
5387         if(token.type != T_IDENTIFIER) {
5388                 parse_error_expected("while parsing member designator",
5389                                      T_IDENTIFIER, NULL);
5390                 return NULL;
5391         }
5392         result->symbol = token.v.symbol;
5393         next_token();
5394
5395         designator_t *last_designator = result;
5396         while(true) {
5397                 if(token.type == '.') {
5398                         next_token();
5399                         if(token.type != T_IDENTIFIER) {
5400                                 parse_error_expected("while parsing member designator",
5401                                                      T_IDENTIFIER, NULL);
5402                                 return NULL;
5403                         }
5404                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
5405                         designator->source_position = *HERE;
5406                         designator->symbol          = token.v.symbol;
5407                         next_token();
5408
5409                         last_designator->next = designator;
5410                         last_designator       = designator;
5411                         continue;
5412                 }
5413                 if(token.type == '[') {
5414                         next_token();
5415                         add_anchor_token(']');
5416                         designator_t *designator    = allocate_ast_zero(sizeof(result[0]));
5417                         designator->source_position = *HERE;
5418                         designator->array_index     = parse_expression();
5419                         rem_anchor_token(']');
5420                         expect(']');
5421                         if(designator->array_index == NULL) {
5422                                 return NULL;
5423                         }
5424
5425                         last_designator->next = designator;
5426                         last_designator       = designator;
5427                         continue;
5428                 }
5429                 break;
5430         }
5431
5432         return result;
5433 end_error:
5434         return NULL;
5435 }
5436
5437 /**
5438  * Parse the __builtin_offsetof() expression.
5439  */
5440 static expression_t *parse_offsetof(void)
5441 {
5442         eat(T___builtin_offsetof);
5443
5444         expression_t *expression = allocate_expression_zero(EXPR_OFFSETOF);
5445         expression->base.type    = type_size_t;
5446
5447         expect('(');
5448         add_anchor_token(',');
5449         type_t *type = parse_typename();
5450         rem_anchor_token(',');
5451         expect(',');
5452         add_anchor_token(')');
5453         designator_t *designator = parse_designator();
5454         rem_anchor_token(')');
5455         expect(')');
5456
5457         expression->offsetofe.type       = type;
5458         expression->offsetofe.designator = designator;
5459
5460         type_path_t path;
5461         memset(&path, 0, sizeof(path));
5462         path.top_type = type;
5463         path.path     = NEW_ARR_F(type_path_entry_t, 0);
5464
5465         descend_into_subtype(&path);
5466
5467         if(!walk_designator(&path, designator, true)) {
5468                 return create_invalid_expression();
5469         }
5470
5471         DEL_ARR_F(path.path);
5472
5473         return expression;
5474 end_error:
5475         return create_invalid_expression();
5476 }
5477
5478 /**
5479  * Parses a _builtin_va_start() expression.
5480  */
5481 static expression_t *parse_va_start(void)
5482 {
5483         eat(T___builtin_va_start);
5484
5485         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
5486
5487         expect('(');
5488         add_anchor_token(',');
5489         expression->va_starte.ap = parse_assignment_expression();
5490         rem_anchor_token(',');
5491         expect(',');
5492         expression_t *const expr = parse_assignment_expression();
5493         if (expr->kind == EXPR_REFERENCE) {
5494                 declaration_t *const decl = expr->reference.declaration;
5495                 if (decl == NULL)
5496                         return create_invalid_expression();
5497                 if (decl->parent_scope == &current_function->scope &&
5498                     decl->next == NULL) {
5499                         expression->va_starte.parameter = decl;
5500                         expect(')');
5501                         return expression;
5502                 }
5503         }
5504         errorf(&expr->base.source_position,
5505                "second argument of 'va_start' must be last parameter of the current function");
5506 end_error:
5507         return create_invalid_expression();
5508 }
5509
5510 /**
5511  * Parses a _builtin_va_arg() expression.
5512  */
5513 static expression_t *parse_va_arg(void)
5514 {
5515         eat(T___builtin_va_arg);
5516
5517         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
5518
5519         expect('(');
5520         expression->va_arge.ap = parse_assignment_expression();
5521         expect(',');
5522         expression->base.type = parse_typename();
5523         expect(')');
5524
5525         return expression;
5526 end_error:
5527         return create_invalid_expression();
5528 }
5529
5530 static expression_t *parse_builtin_symbol(void)
5531 {
5532         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
5533
5534         symbol_t *symbol = token.v.symbol;
5535
5536         expression->builtin_symbol.symbol = symbol;
5537         next_token();
5538
5539         type_t *type = get_builtin_symbol_type(symbol);
5540         type = automatic_type_conversion(type);
5541
5542         expression->base.type = type;
5543         return expression;
5544 }
5545
5546 /**
5547  * Parses a __builtin_constant() expression.
5548  */
5549 static expression_t *parse_builtin_constant(void)
5550 {
5551         eat(T___builtin_constant_p);
5552
5553         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_CONSTANT_P);
5554
5555         expect('(');
5556         add_anchor_token(')');
5557         expression->builtin_constant.value = parse_assignment_expression();
5558         rem_anchor_token(')');
5559         expect(')');
5560         expression->base.type = type_int;
5561
5562         return expression;
5563 end_error:
5564         return create_invalid_expression();
5565 }
5566
5567 /**
5568  * Parses a __builtin_prefetch() expression.
5569  */
5570 static expression_t *parse_builtin_prefetch(void)
5571 {
5572         eat(T___builtin_prefetch);
5573
5574         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_PREFETCH);
5575
5576         expect('(');
5577         add_anchor_token(')');
5578         expression->builtin_prefetch.adr = parse_assignment_expression();
5579         if (token.type == ',') {
5580                 next_token();
5581                 expression->builtin_prefetch.rw = parse_assignment_expression();
5582         }
5583         if (token.type == ',') {
5584                 next_token();
5585                 expression->builtin_prefetch.locality = parse_assignment_expression();
5586         }
5587         rem_anchor_token(')');
5588         expect(')');
5589         expression->base.type = type_void;
5590
5591         return expression;
5592 end_error:
5593         return create_invalid_expression();
5594 }
5595
5596 /**
5597  * Parses a __builtin_is_*() compare expression.
5598  */
5599 static expression_t *parse_compare_builtin(void)
5600 {
5601         expression_t *expression;
5602
5603         switch(token.type) {
5604         case T___builtin_isgreater:
5605                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATER);
5606                 break;
5607         case T___builtin_isgreaterequal:
5608                 expression = allocate_expression_zero(EXPR_BINARY_ISGREATEREQUAL);
5609                 break;
5610         case T___builtin_isless:
5611                 expression = allocate_expression_zero(EXPR_BINARY_ISLESS);
5612                 break;
5613         case T___builtin_islessequal:
5614                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSEQUAL);
5615                 break;
5616         case T___builtin_islessgreater:
5617                 expression = allocate_expression_zero(EXPR_BINARY_ISLESSGREATER);
5618                 break;
5619         case T___builtin_isunordered:
5620                 expression = allocate_expression_zero(EXPR_BINARY_ISUNORDERED);
5621                 break;
5622         default:
5623                 internal_errorf(HERE, "invalid compare builtin found");
5624                 break;
5625         }
5626         expression->base.source_position = *HERE;
5627         next_token();
5628
5629         expect('(');
5630         expression->binary.left = parse_assignment_expression();
5631         expect(',');
5632         expression->binary.right = parse_assignment_expression();
5633         expect(')');
5634
5635         type_t *const orig_type_left  = expression->binary.left->base.type;
5636         type_t *const orig_type_right = expression->binary.right->base.type;
5637
5638         type_t *const type_left  = skip_typeref(orig_type_left);
5639         type_t *const type_right = skip_typeref(orig_type_right);
5640         if(!is_type_float(type_left) && !is_type_float(type_right)) {
5641                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
5642                         type_error_incompatible("invalid operands in comparison",
5643                                 &expression->base.source_position, orig_type_left, orig_type_right);
5644                 }
5645         } else {
5646                 semantic_comparison(&expression->binary);
5647         }
5648
5649         return expression;
5650 end_error:
5651         return create_invalid_expression();
5652 }
5653
5654 #if 0
5655 /**
5656  * Parses a __builtin_expect() expression.
5657  */
5658 static expression_t *parse_builtin_expect(void)
5659 {
5660         eat(T___builtin_expect);
5661
5662         expression_t *expression
5663                 = allocate_expression_zero(EXPR_BINARY_BUILTIN_EXPECT);
5664
5665         expect('(');
5666         expression->binary.left = parse_assignment_expression();
5667         expect(',');
5668         expression->binary.right = parse_constant_expression();
5669         expect(')');
5670
5671         expression->base.type = expression->binary.left->base.type;
5672
5673         return expression;
5674 end_error:
5675         return create_invalid_expression();
5676 }
5677 #endif
5678
5679 /**
5680  * Parses a MS assume() expression.
5681  */
5682 static expression_t *parse_assume(void) {
5683         eat(T__assume);
5684
5685         expression_t *expression
5686                 = allocate_expression_zero(EXPR_UNARY_ASSUME);
5687
5688         expect('(');
5689         add_anchor_token(')');
5690         expression->unary.value = parse_assignment_expression();
5691         rem_anchor_token(')');
5692         expect(')');
5693
5694         expression->base.type = type_void;
5695         return expression;
5696 end_error:
5697         return create_invalid_expression();
5698 }
5699
5700 /**
5701  * Parse a microsoft __noop expression.
5702  */
5703 static expression_t *parse_noop_expression(void) {
5704         source_position_t source_position = *HERE;
5705         eat(T___noop);
5706
5707         if (token.type == '(') {
5708                 /* parse arguments */
5709                 eat('(');
5710                 add_anchor_token(')');
5711                 add_anchor_token(',');
5712
5713                 if(token.type != ')') {
5714                         while(true) {
5715                                 (void)parse_assignment_expression();
5716                                 if(token.type != ',')
5717                                         break;
5718                                 next_token();
5719                         }
5720                 }
5721         }
5722         rem_anchor_token(',');
5723         rem_anchor_token(')');
5724         expect(')');
5725
5726         /* the result is a (int)0 */
5727         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
5728         cnst->base.source_position = source_position;
5729         cnst->base.type            = type_int;
5730         cnst->conste.v.int_value   = 0;
5731         cnst->conste.is_ms_noop    = true;
5732
5733         return cnst;
5734
5735 end_error:
5736         return create_invalid_expression();
5737 }
5738
5739 /**
5740  * Parses a primary expression.
5741  */
5742 static expression_t *parse_primary_expression(void)
5743 {
5744         switch (token.type) {
5745                 case T_INTEGER:                  return parse_int_const();
5746                 case T_CHARACTER_CONSTANT:       return parse_character_constant();
5747                 case T_WIDE_CHARACTER_CONSTANT:  return parse_wide_character_constant();
5748                 case T_FLOATINGPOINT:            return parse_float_const();
5749                 case T_STRING_LITERAL:
5750                 case T_WIDE_STRING_LITERAL:      return parse_string_const();
5751                 case T_IDENTIFIER:               return parse_reference();
5752                 case T___FUNCTION__:
5753                 case T___func__:                 return parse_function_keyword();
5754                 case T___PRETTY_FUNCTION__:      return parse_pretty_function_keyword();
5755                 case T___FUNCSIG__:              return parse_funcsig_keyword();
5756                 case T___FUNCDNAME__:            return parse_funcdname_keyword();
5757                 case T___builtin_offsetof:       return parse_offsetof();
5758                 case T___builtin_va_start:       return parse_va_start();
5759                 case T___builtin_va_arg:         return parse_va_arg();
5760                 case T___builtin_expect:
5761                 case T___builtin_alloca:
5762                 case T___builtin_nan:
5763                 case T___builtin_nand:
5764                 case T___builtin_nanf:
5765                 case T___builtin_huge_val:
5766                 case T___builtin_va_end:         return parse_builtin_symbol();
5767                 case T___builtin_isgreater:
5768                 case T___builtin_isgreaterequal:
5769                 case T___builtin_isless:
5770                 case T___builtin_islessequal:
5771                 case T___builtin_islessgreater:
5772                 case T___builtin_isunordered:    return parse_compare_builtin();
5773                 case T___builtin_constant_p:     return parse_builtin_constant();
5774                 case T___builtin_prefetch:       return parse_builtin_prefetch();
5775                 case T__assume:                  return parse_assume();
5776
5777                 case '(':                        return parse_brace_expression();
5778                 case T___noop:                   return parse_noop_expression();
5779         }
5780
5781         errorf(HERE, "unexpected token %K, expected an expression", &token);
5782         return create_invalid_expression();
5783 }
5784
5785 /**
5786  * Check if the expression has the character type and issue a warning then.
5787  */
5788 static void check_for_char_index_type(const expression_t *expression) {
5789         type_t       *const type      = expression->base.type;
5790         const type_t *const base_type = skip_typeref(type);
5791
5792         if (is_type_atomic(base_type, ATOMIC_TYPE_CHAR) &&
5793                         warning.char_subscripts) {
5794                 warningf(&expression->base.source_position,
5795                          "array subscript has type '%T'", type);
5796         }
5797 }
5798
5799 static expression_t *parse_array_expression(unsigned precedence,
5800                                             expression_t *left)
5801 {
5802         (void) precedence;
5803
5804         eat('[');
5805         add_anchor_token(']');
5806
5807         expression_t *inside = parse_expression();
5808
5809         expression_t *expression = allocate_expression_zero(EXPR_ARRAY_ACCESS);
5810
5811         array_access_expression_t *array_access = &expression->array_access;
5812
5813         type_t *const orig_type_left   = left->base.type;
5814         type_t *const orig_type_inside = inside->base.type;
5815
5816         type_t *const type_left   = skip_typeref(orig_type_left);
5817         type_t *const type_inside = skip_typeref(orig_type_inside);
5818
5819         type_t *return_type;
5820         if (is_type_pointer(type_left)) {
5821                 return_type             = type_left->pointer.points_to;
5822                 array_access->array_ref = left;
5823                 array_access->index     = inside;
5824                 check_for_char_index_type(inside);
5825         } else if (is_type_pointer(type_inside)) {
5826                 return_type             = type_inside->pointer.points_to;
5827                 array_access->array_ref = inside;
5828                 array_access->index     = left;
5829                 array_access->flipped   = true;
5830                 check_for_char_index_type(left);
5831         } else {
5832                 if (is_type_valid(type_left) && is_type_valid(type_inside)) {
5833                         errorf(HERE,
5834                                 "array access on object with non-pointer types '%T', '%T'",
5835                                 orig_type_left, orig_type_inside);
5836                 }
5837                 return_type             = type_error_type;
5838                 array_access->array_ref = create_invalid_expression();
5839         }
5840
5841         rem_anchor_token(']');
5842         if(token.type != ']') {
5843                 parse_error_expected("Problem while parsing array access", ']', NULL);
5844                 return expression;
5845         }
5846         next_token();
5847
5848         return_type           = automatic_type_conversion(return_type);
5849         expression->base.type = return_type;
5850
5851         return expression;
5852 }
5853
5854 static expression_t *parse_typeprop(expression_kind_t const kind,
5855                                     source_position_t const pos,
5856                                     unsigned const precedence)
5857 {
5858         expression_t *tp_expression = allocate_expression_zero(kind);
5859         tp_expression->base.type            = type_size_t;
5860         tp_expression->base.source_position = pos;
5861
5862         char const* const what = kind == EXPR_SIZEOF ? "sizeof" : "alignof";
5863
5864         if (token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
5865                 next_token();
5866                 add_anchor_token(')');
5867                 type_t* const orig_type = parse_typename();
5868                 tp_expression->typeprop.type = orig_type;
5869
5870                 type_t const* const type = skip_typeref(orig_type);
5871                 char const* const wrong_type =
5872                         is_type_incomplete(type)    ? "incomplete"          :
5873                         type->kind == TYPE_FUNCTION ? "function designator" :
5874                         type->kind == TYPE_BITFIELD ? "bitfield"            :
5875                         NULL;
5876                 if (wrong_type != NULL) {
5877                         errorf(&pos, "operand of %s expression must not be %s type '%T'",
5878                                what, wrong_type, type);
5879                 }
5880
5881                 rem_anchor_token(')');
5882                 expect(')');
5883         } else {
5884                 expression_t *expression = parse_sub_expression(precedence);
5885
5886                 type_t* const orig_type = revert_automatic_type_conversion(expression);
5887                 expression->base.type = orig_type;
5888
5889                 type_t const* const type = skip_typeref(orig_type);
5890                 char const* const wrong_type =
5891                         is_type_incomplete(type)    ? "incomplete"          :
5892                         type->kind == TYPE_FUNCTION ? "function designator" :
5893                         type->kind == TYPE_BITFIELD ? "bitfield"            :
5894                         NULL;
5895                 if (wrong_type != NULL) {
5896                         errorf(&pos, "operand of %s expression must not be expression of %s type '%T'", what, wrong_type, type);
5897                 }
5898
5899                 tp_expression->typeprop.type          = expression->base.type;
5900                 tp_expression->typeprop.tp_expression = expression;
5901         }
5902
5903         return tp_expression;
5904 end_error:
5905         return create_invalid_expression();
5906 }
5907
5908 static expression_t *parse_sizeof(unsigned precedence)
5909 {
5910         source_position_t pos = *HERE;
5911         eat(T_sizeof);
5912         return parse_typeprop(EXPR_SIZEOF, pos, precedence);
5913 }
5914
5915 static expression_t *parse_alignof(unsigned precedence)
5916 {
5917         source_position_t pos = *HERE;
5918         eat(T___alignof__);
5919         return parse_typeprop(EXPR_ALIGNOF, pos, precedence);
5920 }
5921
5922 static expression_t *parse_select_expression(unsigned precedence,
5923                                              expression_t *compound)
5924 {
5925         (void) precedence;
5926         assert(token.type == '.' || token.type == T_MINUSGREATER);
5927
5928         bool is_pointer = (token.type == T_MINUSGREATER);
5929         next_token();
5930
5931         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
5932         select->select.compound = compound;
5933
5934         if (token.type != T_IDENTIFIER) {
5935                 parse_error_expected("while parsing select", T_IDENTIFIER, NULL);
5936                 return select;
5937         }
5938         symbol_t *symbol      = token.v.symbol;
5939         select->select.symbol = symbol;
5940         next_token();
5941
5942         type_t *const orig_type = compound->base.type;
5943         type_t *const type      = skip_typeref(orig_type);
5944
5945         type_t *type_left = type;
5946         if (is_pointer) {
5947                 if (!is_type_pointer(type)) {
5948                         if (is_type_valid(type)) {
5949                                 errorf(HERE, "left hand side of '->' is not a pointer, but '%T'", orig_type);
5950                         }
5951                         return create_invalid_expression();
5952                 }
5953                 type_left = type->pointer.points_to;
5954         }
5955         type_left = skip_typeref(type_left);
5956
5957         if (type_left->kind != TYPE_COMPOUND_STRUCT &&
5958             type_left->kind != TYPE_COMPOUND_UNION) {
5959                 if (is_type_valid(type_left)) {
5960                         errorf(HERE, "request for member '%Y' in something not a struct or "
5961                                "union, but '%T'", symbol, type_left);
5962                 }
5963                 return create_invalid_expression();
5964         }
5965
5966         declaration_t *const declaration = type_left->compound.declaration;
5967
5968         if (!declaration->init.complete) {
5969                 errorf(HERE, "request for member '%Y' of incomplete type '%T'",
5970                        symbol, type_left);
5971                 return create_invalid_expression();
5972         }
5973
5974         declaration_t *iter = find_compound_entry(declaration, symbol);
5975         if (iter == NULL) {
5976                 errorf(HERE, "'%T' has no member named '%Y'", orig_type, symbol);
5977                 return create_invalid_expression();
5978         }
5979
5980         /* we always do the auto-type conversions; the & and sizeof parser contains
5981          * code to revert this! */
5982         type_t *expression_type = automatic_type_conversion(iter->type);
5983
5984         select->select.compound_entry = iter;
5985         select->base.type             = expression_type;
5986
5987         type_t *skipped = skip_typeref(iter->type);
5988         if (skipped->kind == TYPE_BITFIELD) {
5989                 select->base.type = skipped->bitfield.base_type;
5990         }
5991
5992         return select;
5993 }
5994
5995 static void check_call_argument(const function_parameter_t *parameter,
5996                                 call_argument_t *argument)
5997 {
5998         type_t         *expected_type      = parameter->type;
5999         type_t         *expected_type_skip = skip_typeref(expected_type);
6000         assign_error_t  error              = ASSIGN_ERROR_INCOMPATIBLE;
6001         expression_t   *arg_expr           = argument->expression;
6002
6003         /* handle transparent union gnu extension */
6004         if (is_type_union(expected_type_skip)
6005                         && (expected_type_skip->base.modifiers
6006                                 & TYPE_MODIFIER_TRANSPARENT_UNION)) {
6007                 declaration_t  *union_decl = expected_type_skip->compound.declaration;
6008
6009                 declaration_t *declaration = union_decl->scope.declarations;
6010                 type_t        *best_type   = NULL;
6011                 for ( ; declaration != NULL; declaration = declaration->next) {
6012                         type_t *decl_type = declaration->type;
6013                         error = semantic_assign(decl_type, arg_expr);
6014                         if (error == ASSIGN_ERROR_INCOMPATIBLE
6015                                 || error == ASSIGN_ERROR_POINTER_QUALIFIER_MISSING)
6016                                 continue;
6017
6018                         if (error == ASSIGN_SUCCESS) {
6019                                 best_type = decl_type;
6020                         } else if (best_type == NULL) {
6021                                 best_type = decl_type;
6022                         }
6023                 }
6024
6025                 if (best_type != NULL) {
6026                         expected_type = best_type;
6027                 }
6028         }
6029
6030         error                = semantic_assign(expected_type, arg_expr);
6031         argument->expression = create_implicit_cast(argument->expression,
6032                                                     expected_type);
6033
6034         /* TODO report exact scope in error messages (like "in 3rd parameter") */
6035         report_assign_error(error, expected_type, arg_expr,     "function call",
6036                             &arg_expr->base.source_position);
6037 }
6038
6039 /**
6040  * Parse a call expression, ie. expression '( ... )'.
6041  *
6042  * @param expression  the function address
6043  */
6044 static expression_t *parse_call_expression(unsigned precedence,
6045                                            expression_t *expression)
6046 {
6047         (void) precedence;
6048         expression_t *result = allocate_expression_zero(EXPR_CALL);
6049         result->base.source_position = expression->base.source_position;
6050
6051         call_expression_t *call = &result->call;
6052         call->function          = expression;
6053
6054         type_t *const orig_type = expression->base.type;
6055         type_t *const type      = skip_typeref(orig_type);
6056
6057         function_type_t *function_type = NULL;
6058         if (is_type_pointer(type)) {
6059                 type_t *const to_type = skip_typeref(type->pointer.points_to);
6060
6061                 if (is_type_function(to_type)) {
6062                         function_type   = &to_type->function;
6063                         call->base.type = function_type->return_type;
6064                 }
6065         }
6066
6067         if (function_type == NULL && is_type_valid(type)) {
6068                 errorf(HERE, "called object '%E' (type '%T') is not a pointer to a function", expression, orig_type);
6069         }
6070
6071         /* parse arguments */
6072         eat('(');
6073         add_anchor_token(')');
6074         add_anchor_token(',');
6075
6076         if(token.type != ')') {
6077                 call_argument_t *last_argument = NULL;
6078
6079                 while(true) {
6080                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
6081
6082                         argument->expression = parse_assignment_expression();
6083                         if(last_argument == NULL) {
6084                                 call->arguments = argument;
6085                         } else {
6086                                 last_argument->next = argument;
6087                         }
6088                         last_argument = argument;
6089
6090                         if(token.type != ',')
6091                                 break;
6092                         next_token();
6093                 }
6094         }
6095         rem_anchor_token(',');
6096         rem_anchor_token(')');
6097         expect(')');
6098
6099         if(function_type == NULL)
6100                 return result;
6101
6102         function_parameter_t *parameter = function_type->parameters;
6103         call_argument_t      *argument  = call->arguments;
6104         if (!function_type->unspecified_parameters) {
6105                 for( ; parameter != NULL && argument != NULL;
6106                                 parameter = parameter->next, argument = argument->next) {
6107                         check_call_argument(parameter, argument);
6108                 }
6109
6110                 if (parameter != NULL) {
6111                         errorf(HERE, "too few arguments to function '%E'", expression);
6112                 } else if (argument != NULL && !function_type->variadic) {
6113                         errorf(HERE, "too many arguments to function '%E'", expression);
6114                 }
6115         }
6116
6117         /* do default promotion */
6118         for( ; argument != NULL; argument = argument->next) {
6119                 type_t *type = argument->expression->base.type;
6120
6121                 type = get_default_promoted_type(type);
6122
6123                 argument->expression
6124                         = create_implicit_cast(argument->expression, type);
6125         }
6126
6127         check_format(&result->call);
6128
6129         return result;
6130 end_error:
6131         return create_invalid_expression();
6132 }
6133
6134 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
6135
6136 static bool same_compound_type(const type_t *type1, const type_t *type2)
6137 {
6138         return
6139                 is_type_compound(type1) &&
6140                 type1->kind == type2->kind &&
6141                 type1->compound.declaration == type2->compound.declaration;
6142 }
6143
6144 /**
6145  * Parse a conditional expression, ie. 'expression ? ... : ...'.
6146  *
6147  * @param expression  the conditional expression
6148  */
6149 static expression_t *parse_conditional_expression(unsigned precedence,
6150                                                   expression_t *expression)
6151 {
6152         eat('?');
6153         add_anchor_token(':');
6154
6155         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
6156
6157         conditional_expression_t *conditional = &result->conditional;
6158         conditional->condition = expression;
6159
6160         /* 6.5.15.2 */
6161         type_t *const condition_type_orig = expression->base.type;
6162         type_t *const condition_type      = skip_typeref(condition_type_orig);
6163         if (!is_type_scalar(condition_type) && is_type_valid(condition_type)) {
6164                 type_error("expected a scalar type in conditional condition",
6165                            &expression->base.source_position, condition_type_orig);
6166         }
6167
6168         expression_t *true_expression = parse_expression();
6169         rem_anchor_token(':');
6170         expect(':');
6171         expression_t *false_expression = parse_sub_expression(precedence);
6172
6173         type_t *const orig_true_type  = true_expression->base.type;
6174         type_t *const orig_false_type = false_expression->base.type;
6175         type_t *const true_type       = skip_typeref(orig_true_type);
6176         type_t *const false_type      = skip_typeref(orig_false_type);
6177
6178         /* 6.5.15.3 */
6179         type_t *result_type;
6180         if(is_type_atomic(true_type, ATOMIC_TYPE_VOID) ||
6181                 is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
6182                 if (!is_type_atomic(true_type, ATOMIC_TYPE_VOID)
6183                     || !is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
6184                         warningf(&expression->base.source_position,
6185                                         "ISO C forbids conditional expression with only one void side");
6186                 }
6187                 result_type = type_void;
6188         } else if (is_type_arithmetic(true_type)
6189                    && is_type_arithmetic(false_type)) {
6190                 result_type = semantic_arithmetic(true_type, false_type);
6191
6192                 true_expression  = create_implicit_cast(true_expression, result_type);
6193                 false_expression = create_implicit_cast(false_expression, result_type);
6194
6195                 conditional->true_expression  = true_expression;
6196                 conditional->false_expression = false_expression;
6197                 conditional->base.type        = result_type;
6198         } else if (same_compound_type(true_type, false_type)) {
6199                 /* just take 1 of the 2 types */
6200                 result_type = true_type;
6201         } else if (is_type_pointer(true_type) || is_type_pointer(false_type)) {
6202                 type_t *pointer_type;
6203                 type_t *other_type;
6204                 expression_t *other_expression;
6205                 if (is_type_pointer(true_type)) {
6206                         pointer_type     = true_type;
6207                         other_type       = false_type;
6208                         other_expression = false_expression;
6209                 } else {
6210                         pointer_type     = false_type;
6211                         other_type       = true_type;
6212                         other_expression = true_expression;
6213                 }
6214
6215                 /* TODO Treat (void*)0 as null pointer constant */
6216                 if (is_type_pointer(other_type)) {
6217                         type_t *to1 = pointer_type->pointer.points_to;
6218                         type_t *to2 = other_type->pointer.points_to;
6219
6220                         type_t *to;
6221                         if (is_type_atomic(to1, ATOMIC_TYPE_VOID) ||
6222                             is_type_atomic(to2, ATOMIC_TYPE_VOID)) {
6223                                 to = type_void;
6224                         } else if (types_compatible(get_unqualified_type(to1),
6225                                                     get_unqualified_type(to2))) {
6226                                 to = to1;
6227                         } else {
6228                                 warningf(&expression->base.source_position,
6229                                         "pointer types '%T' and '%T' in conditional expression are incompatible",
6230                                         true_type, false_type);
6231                                 to = type_void;
6232                         }
6233
6234                         type_t *const copy = duplicate_type(to);
6235                         copy->base.qualifiers = to1->base.qualifiers | to2->base.qualifiers;
6236
6237                         type_t *const type = typehash_insert(copy);
6238                         if (type != copy)
6239                                 free_type(copy);
6240
6241                         result_type = make_pointer_type(type, TYPE_QUALIFIER_NONE);
6242                 } else if(is_null_pointer_constant(other_expression)) {
6243                         result_type = pointer_type;
6244                 } else if(is_type_integer(other_type)) {
6245                         warningf(&expression->base.source_position,
6246                                         "pointer/integer type mismatch in conditional expression ('%T' and '%T')", true_type, false_type);
6247                         result_type = pointer_type;
6248                 } else {
6249                         type_error_incompatible("while parsing conditional",
6250                                         &expression->base.source_position, true_type, false_type);
6251                         result_type = type_error_type;
6252                 }
6253         } else {
6254                 /* TODO: one pointer to void*, other some pointer */
6255
6256                 if (is_type_valid(true_type) && is_type_valid(false_type)) {
6257                         type_error_incompatible("while parsing conditional",
6258                                                 &expression->base.source_position, true_type,
6259                                                 false_type);
6260                 }
6261                 result_type = type_error_type;
6262         }
6263
6264         conditional->true_expression
6265                 = create_implicit_cast(true_expression, result_type);
6266         conditional->false_expression
6267                 = create_implicit_cast(false_expression, result_type);
6268         conditional->base.type = result_type;
6269         return result;
6270 end_error:
6271         return create_invalid_expression();
6272 }
6273
6274 /**
6275  * Parse an extension expression.
6276  */
6277 static expression_t *parse_extension(unsigned precedence)
6278 {
6279         eat(T___extension__);
6280
6281         /* TODO enable extensions */
6282         expression_t *expression = parse_sub_expression(precedence);
6283         /* TODO disable extensions */
6284         return expression;
6285 }
6286
6287 /**
6288  * Parse a __builtin_classify_type() expression.
6289  */
6290 static expression_t *parse_builtin_classify_type(const unsigned precedence)
6291 {
6292         eat(T___builtin_classify_type);
6293
6294         expression_t *result = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
6295         result->base.type    = type_int;
6296
6297         expect('(');
6298         add_anchor_token(')');
6299         expression_t *expression = parse_sub_expression(precedence);
6300         rem_anchor_token(')');
6301         expect(')');
6302         result->classify_type.type_expression = expression;
6303
6304         return result;
6305 end_error:
6306         return create_invalid_expression();
6307 }
6308
6309 static void check_pointer_arithmetic(const source_position_t *source_position,
6310                                      type_t *pointer_type,
6311                                      type_t *orig_pointer_type)
6312 {
6313         type_t *points_to = pointer_type->pointer.points_to;
6314         points_to = skip_typeref(points_to);
6315
6316         if (is_type_incomplete(points_to) &&
6317                         (! (c_mode & _GNUC)
6318                          || !is_type_atomic(points_to, ATOMIC_TYPE_VOID))) {
6319                 errorf(source_position,
6320                            "arithmetic with pointer to incomplete type '%T' not allowed",
6321                            orig_pointer_type);
6322         } else if (is_type_function(points_to)) {
6323                 errorf(source_position,
6324                            "arithmetic with pointer to function type '%T' not allowed",
6325                            orig_pointer_type);
6326         }
6327 }
6328
6329 static void semantic_incdec(unary_expression_t *expression)
6330 {
6331         type_t *const orig_type = expression->value->base.type;
6332         type_t *const type      = skip_typeref(orig_type);
6333         if (is_type_pointer(type)) {
6334                 check_pointer_arithmetic(&expression->base.source_position,
6335                                          type, orig_type);
6336         } else if (!is_type_real(type) && is_type_valid(type)) {
6337                 /* TODO: improve error message */
6338                 errorf(HERE, "operation needs an arithmetic or pointer type");
6339         }
6340         expression->base.type = orig_type;
6341 }
6342
6343 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
6344 {
6345         type_t *const orig_type = expression->value->base.type;
6346         type_t *const type      = skip_typeref(orig_type);
6347         if(!is_type_arithmetic(type)) {
6348                 if (is_type_valid(type)) {
6349                         /* TODO: improve error message */
6350                         errorf(HERE, "operation needs an arithmetic type");
6351                 }
6352                 return;
6353         }
6354
6355         expression->base.type = orig_type;
6356 }
6357
6358 static void semantic_unexpr_scalar(unary_expression_t *expression)
6359 {
6360         type_t *const orig_type = expression->value->base.type;
6361         type_t *const type      = skip_typeref(orig_type);
6362         if (!is_type_scalar(type)) {
6363                 if (is_type_valid(type)) {
6364                         errorf(HERE, "operand of ! must be of scalar type");
6365                 }
6366                 return;
6367         }
6368
6369         expression->base.type = orig_type;
6370 }
6371
6372 static void semantic_unexpr_integer(unary_expression_t *expression)
6373 {
6374         type_t *const orig_type = expression->value->base.type;
6375         type_t *const type      = skip_typeref(orig_type);
6376         if (!is_type_integer(type)) {
6377                 if (is_type_valid(type)) {
6378                         errorf(HERE, "operand of ~ must be of integer type");
6379                 }
6380                 return;
6381         }
6382
6383         expression->base.type = orig_type;
6384 }
6385
6386 static void semantic_dereference(unary_expression_t *expression)
6387 {
6388         type_t *const orig_type = expression->value->base.type;
6389         type_t *const type      = skip_typeref(orig_type);
6390         if(!is_type_pointer(type)) {
6391                 if (is_type_valid(type)) {
6392                         errorf(HERE, "Unary '*' needs pointer or arrray type, but type '%T' given", orig_type);
6393                 }
6394                 return;
6395         }
6396
6397         type_t *result_type   = type->pointer.points_to;
6398         result_type           = automatic_type_conversion(result_type);
6399         expression->base.type = result_type;
6400 }
6401
6402 static void set_address_taken(expression_t *expression)
6403 {
6404         if(expression->kind != EXPR_REFERENCE)
6405                 return;
6406
6407         declaration_t *const declaration = expression->reference.declaration;
6408         /* happens for parse errors */
6409         if(declaration == NULL)
6410                 return;
6411
6412         if (declaration->storage_class == STORAGE_CLASS_REGISTER) {
6413                 errorf(&expression->base.source_position,
6414                                 "address of register variable '%Y' requested",
6415                                 declaration->symbol);
6416         } else {
6417                 declaration->address_taken = 1;
6418         }
6419 }
6420
6421 /**
6422  * Check the semantic of the address taken expression.
6423  */
6424 static void semantic_take_addr(unary_expression_t *expression)
6425 {
6426         expression_t *value = expression->value;
6427         value->base.type    = revert_automatic_type_conversion(value);
6428
6429         type_t *orig_type = value->base.type;
6430         if(!is_type_valid(orig_type))
6431                 return;
6432
6433         set_address_taken(value);
6434
6435         expression->base.type = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
6436 }
6437
6438 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
6439 static expression_t *parse_##unexpression_type(unsigned precedence)            \
6440 {                                                                              \
6441         eat(token_type);                                                           \
6442                                                                                    \
6443         expression_t *unary_expression                                             \
6444                 = allocate_expression_zero(unexpression_type);                         \
6445         unary_expression->base.source_position = *HERE;                            \
6446         unary_expression->unary.value = parse_sub_expression(precedence);          \
6447                                                                                    \
6448         sfunc(&unary_expression->unary);                                           \
6449                                                                                    \
6450         return unary_expression;                                                   \
6451 }
6452
6453 CREATE_UNARY_EXPRESSION_PARSER('-', EXPR_UNARY_NEGATE,
6454                                semantic_unexpr_arithmetic)
6455 CREATE_UNARY_EXPRESSION_PARSER('+', EXPR_UNARY_PLUS,
6456                                semantic_unexpr_arithmetic)
6457 CREATE_UNARY_EXPRESSION_PARSER('!', EXPR_UNARY_NOT,
6458                                semantic_unexpr_scalar)
6459 CREATE_UNARY_EXPRESSION_PARSER('*', EXPR_UNARY_DEREFERENCE,
6460                                semantic_dereference)
6461 CREATE_UNARY_EXPRESSION_PARSER('&', EXPR_UNARY_TAKE_ADDRESS,
6462                                semantic_take_addr)
6463 CREATE_UNARY_EXPRESSION_PARSER('~', EXPR_UNARY_BITWISE_NEGATE,
6464                                semantic_unexpr_integer)
6465 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   EXPR_UNARY_PREFIX_INCREMENT,
6466                                semantic_incdec)
6467 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, EXPR_UNARY_PREFIX_DECREMENT,
6468                                semantic_incdec)
6469
6470 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
6471                                                sfunc)                         \
6472 static expression_t *parse_##unexpression_type(unsigned precedence,           \
6473                                                expression_t *left)            \
6474 {                                                                             \
6475         (void) precedence;                                                        \
6476         eat(token_type);                                                          \
6477                                                                               \
6478         expression_t *unary_expression                                            \
6479                 = allocate_expression_zero(unexpression_type);                        \
6480         unary_expression->unary.value = left;                                     \
6481                                                                                   \
6482         sfunc(&unary_expression->unary);                                          \
6483                                                                               \
6484         return unary_expression;                                                  \
6485 }
6486
6487 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,
6488                                        EXPR_UNARY_POSTFIX_INCREMENT,
6489                                        semantic_incdec)
6490 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS,
6491                                        EXPR_UNARY_POSTFIX_DECREMENT,
6492                                        semantic_incdec)
6493
6494 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
6495 {
6496         /* TODO: handle complex + imaginary types */
6497
6498         /* Â§ 6.3.1.8 Usual arithmetic conversions */
6499         if(type_left == type_long_double || type_right == type_long_double) {
6500                 return type_long_double;
6501         } else if(type_left == type_double || type_right == type_double) {
6502                 return type_double;
6503         } else if(type_left == type_float || type_right == type_float) {
6504                 return type_float;
6505         }
6506
6507         type_right = promote_integer(type_right);
6508         type_left  = promote_integer(type_left);
6509
6510         if(type_left == type_right)
6511                 return type_left;
6512
6513         bool signed_left  = is_type_signed(type_left);
6514         bool signed_right = is_type_signed(type_right);
6515         int  rank_left    = get_rank(type_left);
6516         int  rank_right   = get_rank(type_right);
6517         if(rank_left < rank_right) {
6518                 if(signed_left == signed_right || !signed_right) {
6519                         return type_right;
6520                 } else {
6521                         return type_left;
6522                 }
6523         } else {
6524                 if(signed_left == signed_right || !signed_left) {
6525                         return type_left;
6526                 } else {
6527                         return type_right;
6528                 }
6529         }
6530 }
6531
6532 /**
6533  * Check the semantic restrictions for a binary expression.
6534  */
6535 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
6536 {
6537         expression_t *const left            = expression->left;
6538         expression_t *const right           = expression->right;
6539         type_t       *const orig_type_left  = left->base.type;
6540         type_t       *const orig_type_right = right->base.type;
6541         type_t       *const type_left       = skip_typeref(orig_type_left);
6542         type_t       *const type_right      = skip_typeref(orig_type_right);
6543
6544         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
6545                 /* TODO: improve error message */
6546                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6547                         errorf(HERE, "operation needs arithmetic types");
6548                 }
6549                 return;
6550         }
6551
6552         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6553         expression->left      = create_implicit_cast(left, arithmetic_type);
6554         expression->right     = create_implicit_cast(right, arithmetic_type);
6555         expression->base.type = arithmetic_type;
6556 }
6557
6558 static void semantic_shift_op(binary_expression_t *expression)
6559 {
6560         expression_t *const left            = expression->left;
6561         expression_t *const right           = expression->right;
6562         type_t       *const orig_type_left  = left->base.type;
6563         type_t       *const orig_type_right = right->base.type;
6564         type_t       *      type_left       = skip_typeref(orig_type_left);
6565         type_t       *      type_right      = skip_typeref(orig_type_right);
6566
6567         if(!is_type_integer(type_left) || !is_type_integer(type_right)) {
6568                 /* TODO: improve error message */
6569                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6570                         errorf(HERE, "operation needs integer types");
6571                 }
6572                 return;
6573         }
6574
6575         type_left  = promote_integer(type_left);
6576         type_right = promote_integer(type_right);
6577
6578         expression->left      = create_implicit_cast(left, type_left);
6579         expression->right     = create_implicit_cast(right, type_right);
6580         expression->base.type = type_left;
6581 }
6582
6583 static void semantic_add(binary_expression_t *expression)
6584 {
6585         expression_t *const left            = expression->left;
6586         expression_t *const right           = expression->right;
6587         type_t       *const orig_type_left  = left->base.type;
6588         type_t       *const orig_type_right = right->base.type;
6589         type_t       *const type_left       = skip_typeref(orig_type_left);
6590         type_t       *const type_right      = skip_typeref(orig_type_right);
6591
6592         /* Â§ 6.5.6 */
6593         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6594                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6595                 expression->left  = create_implicit_cast(left, arithmetic_type);
6596                 expression->right = create_implicit_cast(right, arithmetic_type);
6597                 expression->base.type = arithmetic_type;
6598                 return;
6599         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
6600                 check_pointer_arithmetic(&expression->base.source_position,
6601                                          type_left, orig_type_left);
6602                 expression->base.type = type_left;
6603         } else if (is_type_pointer(type_right) && is_type_integer(type_left)) {
6604                 check_pointer_arithmetic(&expression->base.source_position,
6605                                          type_right, orig_type_right);
6606                 expression->base.type = type_right;
6607         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6608                 errorf(&expression->base.source_position,
6609                        "invalid operands to binary + ('%T', '%T')",
6610                        orig_type_left, orig_type_right);
6611         }
6612 }
6613
6614 static void semantic_sub(binary_expression_t *expression)
6615 {
6616         expression_t *const left            = expression->left;
6617         expression_t *const right           = expression->right;
6618         type_t       *const orig_type_left  = left->base.type;
6619         type_t       *const orig_type_right = right->base.type;
6620         type_t       *const type_left       = skip_typeref(orig_type_left);
6621         type_t       *const type_right      = skip_typeref(orig_type_right);
6622
6623         /* Â§ 5.6.5 */
6624         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6625                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6626                 expression->left        = create_implicit_cast(left, arithmetic_type);
6627                 expression->right       = create_implicit_cast(right, arithmetic_type);
6628                 expression->base.type =  arithmetic_type;
6629                 return;
6630         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
6631                 check_pointer_arithmetic(&expression->base.source_position,
6632                                          type_left, orig_type_left);
6633                 expression->base.type = type_left;
6634         } else if(is_type_pointer(type_left) && is_type_pointer(type_right)) {
6635                 type_t *const unqual_left  = get_unqualified_type(skip_typeref(type_left->pointer.points_to));
6636                 type_t *const unqual_right = get_unqualified_type(skip_typeref(type_right->pointer.points_to));
6637                 if (!types_compatible(unqual_left, unqual_right)) {
6638                         errorf(&expression->base.source_position,
6639                                "subtracting pointers to incompatible types '%T' and '%T'",
6640                                orig_type_left, orig_type_right);
6641                 } else if (!is_type_object(unqual_left)) {
6642                         if (is_type_atomic(unqual_left, ATOMIC_TYPE_VOID)) {
6643                                 warningf(&expression->base.source_position,
6644                                          "subtracting pointers to void");
6645                         } else {
6646                                 errorf(&expression->base.source_position,
6647                                        "subtracting pointers to non-object types '%T'",
6648                                        orig_type_left);
6649                         }
6650                 }
6651                 expression->base.type = type_ptrdiff_t;
6652         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6653                 errorf(HERE, "invalid operands of types '%T' and '%T' to binary '-'",
6654                        orig_type_left, orig_type_right);
6655         }
6656 }
6657
6658 /**
6659  * Check the semantics of comparison expressions.
6660  *
6661  * @param expression   The expression to check.
6662  */
6663 static void semantic_comparison(binary_expression_t *expression)
6664 {
6665         expression_t *left            = expression->left;
6666         expression_t *right           = expression->right;
6667         type_t       *orig_type_left  = left->base.type;
6668         type_t       *orig_type_right = right->base.type;
6669
6670         type_t *type_left  = skip_typeref(orig_type_left);
6671         type_t *type_right = skip_typeref(orig_type_right);
6672
6673         /* TODO non-arithmetic types */
6674         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6675                 /* test for signed vs unsigned compares */
6676                 if (warning.sign_compare &&
6677                     (expression->base.kind != EXPR_BINARY_EQUAL &&
6678                      expression->base.kind != EXPR_BINARY_NOTEQUAL) &&
6679                     (is_type_signed(type_left) != is_type_signed(type_right))) {
6680
6681                         /* check if 1 of the operands is a constant, in this case we just
6682                          * check wether we can safely represent the resulting constant in
6683                          * the type of the other operand. */
6684                         expression_t *const_expr = NULL;
6685                         expression_t *other_expr = NULL;
6686
6687                         if(is_constant_expression(left)) {
6688                                 const_expr = left;
6689                                 other_expr = right;
6690                         } else if(is_constant_expression(right)) {
6691                                 const_expr = right;
6692                                 other_expr = left;
6693                         }
6694
6695                         if(const_expr != NULL) {
6696                                 type_t *other_type = skip_typeref(other_expr->base.type);
6697                                 long    val        = fold_constant(const_expr);
6698                                 /* TODO: check if val can be represented by other_type */
6699                                 (void) other_type;
6700                                 (void) val;
6701                         }
6702                         warningf(&expression->base.source_position,
6703                                  "comparison between signed and unsigned");
6704                 }
6705                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6706                 expression->left        = create_implicit_cast(left, arithmetic_type);
6707                 expression->right       = create_implicit_cast(right, arithmetic_type);
6708                 expression->base.type   = arithmetic_type;
6709                 if (warning.float_equal &&
6710                     (expression->base.kind == EXPR_BINARY_EQUAL ||
6711                      expression->base.kind == EXPR_BINARY_NOTEQUAL) &&
6712                     is_type_float(arithmetic_type)) {
6713                         warningf(&expression->base.source_position,
6714                                  "comparing floating point with == or != is unsafe");
6715                 }
6716         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
6717                 /* TODO check compatibility */
6718         } else if (is_type_pointer(type_left)) {
6719                 expression->right = create_implicit_cast(right, type_left);
6720         } else if (is_type_pointer(type_right)) {
6721                 expression->left = create_implicit_cast(left, type_right);
6722         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6723                 type_error_incompatible("invalid operands in comparison",
6724                                         &expression->base.source_position,
6725                                         type_left, type_right);
6726         }
6727         expression->base.type = type_int;
6728 }
6729
6730 /**
6731  * Checks if a compound type has constant fields.
6732  */
6733 static bool has_const_fields(const compound_type_t *type)
6734 {
6735         const scope_t       *scope       = &type->declaration->scope;
6736         const declaration_t *declaration = scope->declarations;
6737
6738         for (; declaration != NULL; declaration = declaration->next) {
6739                 if (declaration->namespc != NAMESPACE_NORMAL)
6740                         continue;
6741
6742                 const type_t *decl_type = skip_typeref(declaration->type);
6743                 if (decl_type->base.qualifiers & TYPE_QUALIFIER_CONST)
6744                         return true;
6745         }
6746         /* TODO */
6747         return false;
6748 }
6749
6750 static bool is_lvalue(const expression_t *expression)
6751 {
6752         switch (expression->kind) {
6753         case EXPR_REFERENCE:
6754         case EXPR_ARRAY_ACCESS:
6755         case EXPR_SELECT:
6756         case EXPR_UNARY_DEREFERENCE:
6757                 return true;
6758
6759         default:
6760                 return false;
6761         }
6762 }
6763
6764 static bool is_valid_assignment_lhs(expression_t const* const left)
6765 {
6766         type_t *const orig_type_left = revert_automatic_type_conversion(left);
6767         type_t *const type_left      = skip_typeref(orig_type_left);
6768
6769         if (!is_lvalue(left)) {
6770                 errorf(HERE, "left hand side '%E' of assignment is not an lvalue",
6771                        left);
6772                 return false;
6773         }
6774
6775         if (is_type_array(type_left)) {
6776                 errorf(HERE, "cannot assign to arrays ('%E')", left);
6777                 return false;
6778         }
6779         if (type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
6780                 errorf(HERE, "assignment to readonly location '%E' (type '%T')", left,
6781                        orig_type_left);
6782                 return false;
6783         }
6784         if (is_type_incomplete(type_left)) {
6785                 errorf(HERE, "left-hand side '%E' of assignment has incomplete type '%T'",
6786                        left, orig_type_left);
6787                 return false;
6788         }
6789         if (is_type_compound(type_left) && has_const_fields(&type_left->compound)) {
6790                 errorf(HERE, "cannot assign to '%E' because compound type '%T' has readonly fields",
6791                        left, orig_type_left);
6792                 return false;
6793         }
6794
6795         return true;
6796 }
6797
6798 static void semantic_arithmetic_assign(binary_expression_t *expression)
6799 {
6800         expression_t *left            = expression->left;
6801         expression_t *right           = expression->right;
6802         type_t       *orig_type_left  = left->base.type;
6803         type_t       *orig_type_right = right->base.type;
6804
6805         if (!is_valid_assignment_lhs(left))
6806                 return;
6807
6808         type_t *type_left  = skip_typeref(orig_type_left);
6809         type_t *type_right = skip_typeref(orig_type_right);
6810
6811         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
6812                 /* TODO: improve error message */
6813                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6814                         errorf(HERE, "operation needs arithmetic types");
6815                 }
6816                 return;
6817         }
6818
6819         /* combined instructions are tricky. We can't create an implicit cast on
6820          * the left side, because we need the uncasted form for the store.
6821          * The ast2firm pass has to know that left_type must be right_type
6822          * for the arithmetic operation and create a cast by itself */
6823         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
6824         expression->right       = create_implicit_cast(right, arithmetic_type);
6825         expression->base.type   = type_left;
6826 }
6827
6828 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
6829 {
6830         expression_t *const left            = expression->left;
6831         expression_t *const right           = expression->right;
6832         type_t       *const orig_type_left  = left->base.type;
6833         type_t       *const orig_type_right = right->base.type;
6834         type_t       *const type_left       = skip_typeref(orig_type_left);
6835         type_t       *const type_right      = skip_typeref(orig_type_right);
6836
6837         if (!is_valid_assignment_lhs(left))
6838                 return;
6839
6840         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
6841                 /* combined instructions are tricky. We can't create an implicit cast on
6842                  * the left side, because we need the uncasted form for the store.
6843                  * The ast2firm pass has to know that left_type must be right_type
6844                  * for the arithmetic operation and create a cast by itself */
6845                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
6846                 expression->right     = create_implicit_cast(right, arithmetic_type);
6847                 expression->base.type = type_left;
6848         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
6849                 check_pointer_arithmetic(&expression->base.source_position,
6850                                          type_left, orig_type_left);
6851                 expression->base.type = type_left;
6852         } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
6853                 errorf(HERE, "incompatible types '%T' and '%T' in assignment", orig_type_left, orig_type_right);
6854         }
6855 }
6856
6857 /**
6858  * Check the semantic restrictions of a logical expression.
6859  */
6860 static void semantic_logical_op(binary_expression_t *expression)
6861 {
6862         expression_t *const left            = expression->left;
6863         expression_t *const right           = expression->right;
6864         type_t       *const orig_type_left  = left->base.type;
6865         type_t       *const orig_type_right = right->base.type;
6866         type_t       *const type_left       = skip_typeref(orig_type_left);
6867         type_t       *const type_right      = skip_typeref(orig_type_right);
6868
6869         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
6870                 /* TODO: improve error message */
6871                 if (is_type_valid(type_left) && is_type_valid(type_right)) {
6872                         errorf(HERE, "operation needs scalar types");
6873                 }
6874                 return;
6875         }
6876
6877         expression->base.type = type_int;
6878 }
6879
6880 /**
6881  * Check the semantic restrictions of a binary assign expression.
6882  */
6883 static void semantic_binexpr_assign(binary_expression_t *expression)
6884 {
6885         expression_t *left           = expression->left;
6886         type_t       *orig_type_left = left->base.type;
6887
6888         type_t *type_left = revert_automatic_type_conversion(left);
6889         type_left         = skip_typeref(orig_type_left);
6890
6891         if (!is_valid_assignment_lhs(left))
6892                 return;
6893
6894         assign_error_t error = semantic_assign(orig_type_left, expression->right);
6895         report_assign_error(error, orig_type_left, expression->right,
6896                         "assignment", &left->base.source_position);
6897         expression->right = create_implicit_cast(expression->right, orig_type_left);
6898         expression->base.type = orig_type_left;
6899 }
6900
6901 /**
6902  * Determine if the outermost operation (or parts thereof) of the given
6903  * expression has no effect in order to generate a warning about this fact.
6904  * Therefore in some cases this only examines some of the operands of the
6905  * expression (see comments in the function and examples below).
6906  * Examples:
6907  *   f() + 23;    // warning, because + has no effect
6908  *   x || f();    // no warning, because x controls execution of f()
6909  *   x ? y : f(); // warning, because y has no effect
6910  *   (void)x;     // no warning to be able to suppress the warning
6911  * This function can NOT be used for an "expression has definitely no effect"-
6912  * analysis. */
6913 static bool expression_has_effect(const expression_t *const expr)
6914 {
6915         switch (expr->kind) {
6916                 case EXPR_UNKNOWN:                   break;
6917                 case EXPR_INVALID:                   return true; /* do NOT warn */
6918                 case EXPR_REFERENCE:                 return false;
6919                 /* suppress the warning for microsoft __noop operations */
6920                 case EXPR_CONST:                     return expr->conste.is_ms_noop;
6921                 case EXPR_CHARACTER_CONSTANT:        return false;
6922                 case EXPR_WIDE_CHARACTER_CONSTANT:   return false;
6923                 case EXPR_STRING_LITERAL:            return false;
6924                 case EXPR_WIDE_STRING_LITERAL:       return false;
6925
6926                 case EXPR_CALL: {
6927                         const call_expression_t *const call = &expr->call;
6928                         if (call->function->kind != EXPR_BUILTIN_SYMBOL)
6929                                 return true;
6930
6931                         switch (call->function->builtin_symbol.symbol->ID) {
6932                                 case T___builtin_va_end: return true;
6933                                 default:                 return false;
6934                         }
6935                 }
6936
6937                 /* Generate the warning if either the left or right hand side of a
6938                  * conditional expression has no effect */
6939                 case EXPR_CONDITIONAL: {
6940                         const conditional_expression_t *const cond = &expr->conditional;
6941                         return
6942                                 expression_has_effect(cond->true_expression) &&
6943                                 expression_has_effect(cond->false_expression);
6944                 }
6945
6946                 case EXPR_SELECT:                    return false;
6947                 case EXPR_ARRAY_ACCESS:              return false;
6948                 case EXPR_SIZEOF:                    return false;
6949                 case EXPR_CLASSIFY_TYPE:             return false;
6950                 case EXPR_ALIGNOF:                   return false;
6951
6952                 case EXPR_FUNCNAME:                  return false;
6953                 case EXPR_BUILTIN_SYMBOL:            break; /* handled in EXPR_CALL */
6954                 case EXPR_BUILTIN_CONSTANT_P:        return false;
6955                 case EXPR_BUILTIN_PREFETCH:          return true;
6956                 case EXPR_OFFSETOF:                  return false;
6957                 case EXPR_VA_START:                  return true;
6958                 case EXPR_VA_ARG:                    return true;
6959                 case EXPR_STATEMENT:                 return true; // TODO
6960                 case EXPR_COMPOUND_LITERAL:          return false;
6961
6962                 case EXPR_UNARY_NEGATE:              return false;
6963                 case EXPR_UNARY_PLUS:                return false;
6964                 case EXPR_UNARY_BITWISE_NEGATE:      return false;
6965                 case EXPR_UNARY_NOT:                 return false;
6966                 case EXPR_UNARY_DEREFERENCE:         return false;
6967                 case EXPR_UNARY_TAKE_ADDRESS:        return false;
6968                 case EXPR_UNARY_POSTFIX_INCREMENT:   return true;
6969                 case EXPR_UNARY_POSTFIX_DECREMENT:   return true;
6970                 case EXPR_UNARY_PREFIX_INCREMENT:    return true;
6971                 case EXPR_UNARY_PREFIX_DECREMENT:    return true;
6972
6973                 /* Treat void casts as if they have an effect in order to being able to
6974                  * suppress the warning */
6975                 case EXPR_UNARY_CAST: {
6976                         type_t *const type = skip_typeref(expr->base.type);
6977                         return is_type_atomic(type, ATOMIC_TYPE_VOID);
6978                 }
6979
6980                 case EXPR_UNARY_CAST_IMPLICIT:       return true;
6981                 case EXPR_UNARY_ASSUME:              return true;
6982
6983                 case EXPR_BINARY_ADD:                return false;
6984                 case EXPR_BINARY_SUB:                return false;
6985                 case EXPR_BINARY_MUL:                return false;
6986                 case EXPR_BINARY_DIV:                return false;
6987                 case EXPR_BINARY_MOD:                return false;
6988                 case EXPR_BINARY_EQUAL:              return false;
6989                 case EXPR_BINARY_NOTEQUAL:           return false;
6990                 case EXPR_BINARY_LESS:               return false;
6991                 case EXPR_BINARY_LESSEQUAL:          return false;
6992                 case EXPR_BINARY_GREATER:            return false;
6993                 case EXPR_BINARY_GREATEREQUAL:       return false;
6994                 case EXPR_BINARY_BITWISE_AND:        return false;
6995                 case EXPR_BINARY_BITWISE_OR:         return false;
6996                 case EXPR_BINARY_BITWISE_XOR:        return false;
6997                 case EXPR_BINARY_SHIFTLEFT:          return false;
6998                 case EXPR_BINARY_SHIFTRIGHT:         return false;
6999                 case EXPR_BINARY_ASSIGN:             return true;
7000                 case EXPR_BINARY_MUL_ASSIGN:         return true;
7001                 case EXPR_BINARY_DIV_ASSIGN:         return true;
7002                 case EXPR_BINARY_MOD_ASSIGN:         return true;
7003                 case EXPR_BINARY_ADD_ASSIGN:         return true;
7004                 case EXPR_BINARY_SUB_ASSIGN:         return true;
7005                 case EXPR_BINARY_SHIFTLEFT_ASSIGN:   return true;
7006                 case EXPR_BINARY_SHIFTRIGHT_ASSIGN:  return true;
7007                 case EXPR_BINARY_BITWISE_AND_ASSIGN: return true;
7008                 case EXPR_BINARY_BITWISE_XOR_ASSIGN: return true;
7009                 case EXPR_BINARY_BITWISE_OR_ASSIGN:  return true;
7010
7011                 /* Only examine the right hand side of && and ||, because the left hand
7012                  * side already has the effect of controlling the execution of the right
7013                  * hand side */
7014                 case EXPR_BINARY_LOGICAL_AND:
7015                 case EXPR_BINARY_LOGICAL_OR:
7016                 /* Only examine the right hand side of a comma expression, because the left
7017                  * hand side has a separate warning */
7018                 case EXPR_BINARY_COMMA:
7019                         return expression_has_effect(expr->binary.right);
7020
7021                 case EXPR_BINARY_BUILTIN_EXPECT:     return true;
7022                 case EXPR_BINARY_ISGREATER:          return false;
7023                 case EXPR_BINARY_ISGREATEREQUAL:     return false;
7024                 case EXPR_BINARY_ISLESS:             return false;
7025                 case EXPR_BINARY_ISLESSEQUAL:        return false;
7026                 case EXPR_BINARY_ISLESSGREATER:      return false;
7027                 case EXPR_BINARY_ISUNORDERED:        return false;
7028         }
7029
7030         internal_errorf(HERE, "unexpected expression");
7031 }
7032
7033 static void semantic_comma(binary_expression_t *expression)
7034 {
7035         if (warning.unused_value) {
7036                 const expression_t *const left = expression->left;
7037                 if (!expression_has_effect(left)) {
7038                         warningf(&left->base.source_position,
7039                                  "left-hand operand of comma expression has no effect");
7040                 }
7041         }
7042         expression->base.type = expression->right->base.type;
7043 }
7044
7045 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, sfunc, lr)  \
7046 static expression_t *parse_##binexpression_type(unsigned precedence,      \
7047                                                 expression_t *left)       \
7048 {                                                                         \
7049         eat(token_type);                                                      \
7050         source_position_t pos = *HERE;                                        \
7051                                                                           \
7052         expression_t *right = parse_sub_expression(precedence + lr);          \
7053                                                                           \
7054         expression_t *binexpr = allocate_expression_zero(binexpression_type); \
7055         binexpr->base.source_position = pos;                                  \
7056         binexpr->binary.left  = left;                                         \
7057         binexpr->binary.right = right;                                        \
7058         sfunc(&binexpr->binary);                                              \
7059                                                                           \
7060         return binexpr;                                                       \
7061 }
7062
7063 CREATE_BINEXPR_PARSER(',', EXPR_BINARY_COMMA,    semantic_comma, 1)
7064 CREATE_BINEXPR_PARSER('*', EXPR_BINARY_MUL,      semantic_binexpr_arithmetic, 1)
7065 CREATE_BINEXPR_PARSER('/', EXPR_BINARY_DIV,      semantic_binexpr_arithmetic, 1)
7066 CREATE_BINEXPR_PARSER('%', EXPR_BINARY_MOD,      semantic_binexpr_arithmetic, 1)
7067 CREATE_BINEXPR_PARSER('+', EXPR_BINARY_ADD,      semantic_add, 1)
7068 CREATE_BINEXPR_PARSER('-', EXPR_BINARY_SUB,      semantic_sub, 1)
7069 CREATE_BINEXPR_PARSER('<', EXPR_BINARY_LESS,     semantic_comparison, 1)
7070 CREATE_BINEXPR_PARSER('>', EXPR_BINARY_GREATER,  semantic_comparison, 1)
7071 CREATE_BINEXPR_PARSER('=', EXPR_BINARY_ASSIGN,   semantic_binexpr_assign, 0)
7072
7073 CREATE_BINEXPR_PARSER(T_EQUALEQUAL,           EXPR_BINARY_EQUAL,
7074                       semantic_comparison, 1)
7075 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, EXPR_BINARY_NOTEQUAL,
7076                       semantic_comparison, 1)
7077 CREATE_BINEXPR_PARSER(T_LESSEQUAL,            EXPR_BINARY_LESSEQUAL,
7078                       semantic_comparison, 1)
7079 CREATE_BINEXPR_PARSER(T_GREATEREQUAL,         EXPR_BINARY_GREATEREQUAL,
7080                       semantic_comparison, 1)
7081
7082 CREATE_BINEXPR_PARSER('&', EXPR_BINARY_BITWISE_AND,
7083                       semantic_binexpr_arithmetic, 1)
7084 CREATE_BINEXPR_PARSER('|', EXPR_BINARY_BITWISE_OR,
7085                       semantic_binexpr_arithmetic, 1)
7086 CREATE_BINEXPR_PARSER('^', EXPR_BINARY_BITWISE_XOR,
7087                       semantic_binexpr_arithmetic, 1)
7088 CREATE_BINEXPR_PARSER(T_ANDAND, EXPR_BINARY_LOGICAL_AND,
7089                       semantic_logical_op, 1)
7090 CREATE_BINEXPR_PARSER(T_PIPEPIPE, EXPR_BINARY_LOGICAL_OR,
7091                       semantic_logical_op, 1)
7092 CREATE_BINEXPR_PARSER(T_LESSLESS, EXPR_BINARY_SHIFTLEFT,
7093                       semantic_shift_op, 1)
7094 CREATE_BINEXPR_PARSER(T_GREATERGREATER, EXPR_BINARY_SHIFTRIGHT,
7095                       semantic_shift_op, 1)
7096 CREATE_BINEXPR_PARSER(T_PLUSEQUAL, EXPR_BINARY_ADD_ASSIGN,
7097                       semantic_arithmetic_addsubb_assign, 0)
7098 CREATE_BINEXPR_PARSER(T_MINUSEQUAL, EXPR_BINARY_SUB_ASSIGN,
7099                       semantic_arithmetic_addsubb_assign, 0)
7100 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL, EXPR_BINARY_MUL_ASSIGN,
7101                       semantic_arithmetic_assign, 0)
7102 CREATE_BINEXPR_PARSER(T_SLASHEQUAL, EXPR_BINARY_DIV_ASSIGN,
7103                       semantic_arithmetic_assign, 0)
7104 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL, EXPR_BINARY_MOD_ASSIGN,
7105                       semantic_arithmetic_assign, 0)
7106 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL, EXPR_BINARY_SHIFTLEFT_ASSIGN,
7107                       semantic_arithmetic_assign, 0)
7108 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL, EXPR_BINARY_SHIFTRIGHT_ASSIGN,
7109                       semantic_arithmetic_assign, 0)
7110 CREATE_BINEXPR_PARSER(T_ANDEQUAL, EXPR_BINARY_BITWISE_AND_ASSIGN,
7111                       semantic_arithmetic_assign, 0)
7112 CREATE_BINEXPR_PARSER(T_PIPEEQUAL, EXPR_BINARY_BITWISE_OR_ASSIGN,
7113                       semantic_arithmetic_assign, 0)
7114 CREATE_BINEXPR_PARSER(T_CARETEQUAL, EXPR_BINARY_BITWISE_XOR_ASSIGN,
7115                       semantic_arithmetic_assign, 0)
7116
7117 static expression_t *parse_sub_expression(unsigned precedence)
7118 {
7119         if(token.type < 0) {
7120                 return expected_expression_error();
7121         }
7122
7123         expression_parser_function_t *parser
7124                 = &expression_parsers[token.type];
7125         source_position_t             source_position = token.source_position;
7126         expression_t                 *left;
7127
7128         if(parser->parser != NULL) {
7129                 left = parser->parser(parser->precedence);
7130         } else {
7131                 left = parse_primary_expression();
7132         }
7133         assert(left != NULL);
7134         left->base.source_position = source_position;
7135
7136         while(true) {
7137                 if(token.type < 0) {
7138                         return expected_expression_error();
7139                 }
7140
7141                 parser = &expression_parsers[token.type];
7142                 if(parser->infix_parser == NULL)
7143                         break;
7144                 if(parser->infix_precedence < precedence)
7145                         break;
7146
7147                 left = parser->infix_parser(parser->infix_precedence, left);
7148
7149                 assert(left != NULL);
7150                 assert(left->kind != EXPR_UNKNOWN);
7151                 left->base.source_position = source_position;
7152         }
7153
7154         return left;
7155 }
7156
7157 /**
7158  * Parse an expression.
7159  */
7160 static expression_t *parse_expression(void)
7161 {
7162         return parse_sub_expression(1);
7163 }
7164
7165 /**
7166  * Register a parser for a prefix-like operator with given precedence.
7167  *
7168  * @param parser      the parser function
7169  * @param token_type  the token type of the prefix token
7170  * @param precedence  the precedence of the operator
7171  */
7172 static void register_expression_parser(parse_expression_function parser,
7173                                        int token_type, unsigned precedence)
7174 {
7175         expression_parser_function_t *entry = &expression_parsers[token_type];
7176
7177         if(entry->parser != NULL) {
7178                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
7179                 panic("trying to register multiple expression parsers for a token");
7180         }
7181         entry->parser     = parser;
7182         entry->precedence = precedence;
7183 }
7184
7185 /**
7186  * Register a parser for an infix operator with given precedence.
7187  *
7188  * @param parser      the parser function
7189  * @param token_type  the token type of the infix operator
7190  * @param precedence  the precedence of the operator
7191  */
7192 static void register_infix_parser(parse_expression_infix_function parser,
7193                 int token_type, unsigned precedence)
7194 {
7195         expression_parser_function_t *entry = &expression_parsers[token_type];
7196
7197         if(entry->infix_parser != NULL) {
7198                 diagnosticf("for token '%k'\n", (token_type_t)token_type);
7199                 panic("trying to register multiple infix expression parsers for a "
7200                       "token");
7201         }
7202         entry->infix_parser     = parser;
7203         entry->infix_precedence = precedence;
7204 }
7205
7206 /**
7207  * Initialize the expression parsers.
7208  */
7209 static void init_expression_parsers(void)
7210 {
7211         memset(&expression_parsers, 0, sizeof(expression_parsers));
7212
7213         register_infix_parser(parse_array_expression,         '[',              30);
7214         register_infix_parser(parse_call_expression,          '(',              30);
7215         register_infix_parser(parse_select_expression,        '.',              30);
7216         register_infix_parser(parse_select_expression,        T_MINUSGREATER,   30);
7217         register_infix_parser(parse_EXPR_UNARY_POSTFIX_INCREMENT,
7218                                                               T_PLUSPLUS,       30);
7219         register_infix_parser(parse_EXPR_UNARY_POSTFIX_DECREMENT,
7220                                                               T_MINUSMINUS,     30);
7221
7222         register_infix_parser(parse_EXPR_BINARY_MUL,          '*',              17);
7223         register_infix_parser(parse_EXPR_BINARY_DIV,          '/',              17);
7224         register_infix_parser(parse_EXPR_BINARY_MOD,          '%',              17);
7225         register_infix_parser(parse_EXPR_BINARY_ADD,          '+',              16);
7226         register_infix_parser(parse_EXPR_BINARY_SUB,          '-',              16);
7227         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT,    T_LESSLESS,       15);
7228         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT,   T_GREATERGREATER, 15);
7229         register_infix_parser(parse_EXPR_BINARY_LESS,         '<',              14);
7230         register_infix_parser(parse_EXPR_BINARY_GREATER,      '>',              14);
7231         register_infix_parser(parse_EXPR_BINARY_LESSEQUAL,    T_LESSEQUAL,      14);
7232         register_infix_parser(parse_EXPR_BINARY_GREATEREQUAL, T_GREATEREQUAL,   14);
7233         register_infix_parser(parse_EXPR_BINARY_EQUAL,        T_EQUALEQUAL,     13);
7234         register_infix_parser(parse_EXPR_BINARY_NOTEQUAL,
7235                                                     T_EXCLAMATIONMARKEQUAL, 13);
7236         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND,  '&',              12);
7237         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR,  '^',              11);
7238         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR,   '|',              10);
7239         register_infix_parser(parse_EXPR_BINARY_LOGICAL_AND,  T_ANDAND,          9);
7240         register_infix_parser(parse_EXPR_BINARY_LOGICAL_OR,   T_PIPEPIPE,        8);
7241         register_infix_parser(parse_conditional_expression,   '?',               7);
7242         register_infix_parser(parse_EXPR_BINARY_ASSIGN,       '=',               2);
7243         register_infix_parser(parse_EXPR_BINARY_ADD_ASSIGN,   T_PLUSEQUAL,       2);
7244         register_infix_parser(parse_EXPR_BINARY_SUB_ASSIGN,   T_MINUSEQUAL,      2);
7245         register_infix_parser(parse_EXPR_BINARY_MUL_ASSIGN,   T_ASTERISKEQUAL,   2);
7246         register_infix_parser(parse_EXPR_BINARY_DIV_ASSIGN,   T_SLASHEQUAL,      2);
7247         register_infix_parser(parse_EXPR_BINARY_MOD_ASSIGN,   T_PERCENTEQUAL,    2);
7248         register_infix_parser(parse_EXPR_BINARY_SHIFTLEFT_ASSIGN,
7249                                                                 T_LESSLESSEQUAL, 2);
7250         register_infix_parser(parse_EXPR_BINARY_SHIFTRIGHT_ASSIGN,
7251                                                           T_GREATERGREATEREQUAL, 2);
7252         register_infix_parser(parse_EXPR_BINARY_BITWISE_AND_ASSIGN,
7253                                                                      T_ANDEQUAL, 2);
7254         register_infix_parser(parse_EXPR_BINARY_BITWISE_OR_ASSIGN,
7255                                                                     T_PIPEEQUAL, 2);
7256         register_infix_parser(parse_EXPR_BINARY_BITWISE_XOR_ASSIGN,
7257                                                                    T_CARETEQUAL, 2);
7258
7259         register_infix_parser(parse_EXPR_BINARY_COMMA,        ',',               1);
7260
7261         register_expression_parser(parse_EXPR_UNARY_NEGATE,           '-',      25);
7262         register_expression_parser(parse_EXPR_UNARY_PLUS,             '+',      25);
7263         register_expression_parser(parse_EXPR_UNARY_NOT,              '!',      25);
7264         register_expression_parser(parse_EXPR_UNARY_BITWISE_NEGATE,   '~',      25);
7265         register_expression_parser(parse_EXPR_UNARY_DEREFERENCE,      '*',      25);
7266         register_expression_parser(parse_EXPR_UNARY_TAKE_ADDRESS,     '&',      25);
7267         register_expression_parser(parse_EXPR_UNARY_PREFIX_INCREMENT,
7268                                                                   T_PLUSPLUS,   25);
7269         register_expression_parser(parse_EXPR_UNARY_PREFIX_DECREMENT,
7270                                                                   T_MINUSMINUS, 25);
7271         register_expression_parser(parse_sizeof,                      T_sizeof, 25);
7272         register_expression_parser(parse_alignof,                T___alignof__, 25);
7273         register_expression_parser(parse_extension,            T___extension__, 25);
7274         register_expression_parser(parse_builtin_classify_type,
7275                                                      T___builtin_classify_type, 25);
7276 }
7277
7278 /**
7279  * Parse a asm statement arguments specification.
7280  */
7281 static asm_argument_t *parse_asm_arguments(bool is_out)
7282 {
7283         asm_argument_t *result = NULL;
7284         asm_argument_t *last   = NULL;
7285
7286         while (token.type == T_STRING_LITERAL || token.type == '[') {
7287                 asm_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
7288                 memset(argument, 0, sizeof(argument[0]));
7289
7290                 if (token.type == '[') {
7291                         eat('[');
7292                         if (token.type != T_IDENTIFIER) {
7293                                 parse_error_expected("while parsing asm argument",
7294                                                      T_IDENTIFIER, NULL);
7295                                 return NULL;
7296                         }
7297                         argument->symbol = token.v.symbol;
7298
7299                         expect(']');
7300                 }
7301
7302                 argument->constraints = parse_string_literals();
7303                 expect('(');
7304                 expression_t *expression = parse_expression();
7305                 argument->expression     = expression;
7306                 if (is_out && !is_lvalue(expression)) {
7307                         errorf(&expression->base.source_position,
7308                                "asm output argument is not an lvalue");
7309                 }
7310                 expect(')');
7311
7312                 set_address_taken(expression);
7313
7314                 if (last != NULL) {
7315                         last->next = argument;
7316                 } else {
7317                         result = argument;
7318                 }
7319                 last = argument;
7320
7321                 if (token.type != ',')
7322                         break;
7323                 eat(',');
7324         }
7325
7326         return result;
7327 end_error:
7328         return NULL;
7329 }
7330
7331 /**
7332  * Parse a asm statement clobber specification.
7333  */
7334 static asm_clobber_t *parse_asm_clobbers(void)
7335 {
7336         asm_clobber_t *result = NULL;
7337         asm_clobber_t *last   = NULL;
7338
7339         while(token.type == T_STRING_LITERAL) {
7340                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
7341                 clobber->clobber       = parse_string_literals();
7342
7343                 if(last != NULL) {
7344                         last->next = clobber;
7345                 } else {
7346                         result = clobber;
7347                 }
7348                 last = clobber;
7349
7350                 if(token.type != ',')
7351                         break;
7352                 eat(',');
7353         }
7354
7355         return result;
7356 }
7357
7358 /**
7359  * Parse an asm statement.
7360  */
7361 static statement_t *parse_asm_statement(void)
7362 {
7363         eat(T_asm);
7364
7365         statement_t *statement          = allocate_statement_zero(STATEMENT_ASM);
7366         statement->base.source_position = token.source_position;
7367
7368         asm_statement_t *asm_statement = &statement->asms;
7369
7370         if(token.type == T_volatile) {
7371                 next_token();
7372                 asm_statement->is_volatile = true;
7373         }
7374
7375         expect('(');
7376         add_anchor_token(')');
7377         add_anchor_token(':');
7378         asm_statement->asm_text = parse_string_literals();
7379
7380         if(token.type != ':') {
7381                 rem_anchor_token(':');
7382                 goto end_of_asm;
7383         }
7384         eat(':');
7385
7386         asm_statement->outputs = parse_asm_arguments(true);
7387         if(token.type != ':') {
7388                 rem_anchor_token(':');
7389                 goto end_of_asm;
7390         }
7391         eat(':');
7392
7393         asm_statement->inputs = parse_asm_arguments(false);
7394         if(token.type != ':') {
7395                 rem_anchor_token(':');
7396                 goto end_of_asm;
7397         }
7398         rem_anchor_token(':');
7399         eat(':');
7400
7401         asm_statement->clobbers = parse_asm_clobbers();
7402
7403 end_of_asm:
7404         rem_anchor_token(')');
7405         expect(')');
7406         expect(';');
7407         return statement;
7408 end_error:
7409         return create_invalid_statement();
7410 }
7411
7412 /**
7413  * Parse a case statement.
7414  */
7415 static statement_t *parse_case_statement(void)
7416 {
7417         eat(T_case);
7418
7419         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
7420
7421         statement->base.source_position  = token.source_position;
7422         statement->case_label.expression = parse_expression();
7423
7424         if (c_mode & _GNUC) {
7425                 if (token.type == T_DOTDOTDOT) {
7426                         next_token();
7427                         statement->case_label.end_range = parse_expression();
7428                 }
7429         }
7430
7431         expect(':');
7432
7433         if (! is_constant_expression(statement->case_label.expression)) {
7434                 errorf(&statement->base.source_position,
7435                        "case label does not reduce to an integer constant");
7436         } else {
7437                 /* TODO: check if the case label is already known */
7438                 if (current_switch != NULL) {
7439                         /* link all cases into the switch statement */
7440                         if (current_switch->last_case == NULL) {
7441                                 current_switch->first_case =
7442                                 current_switch->last_case  = &statement->case_label;
7443                         } else {
7444                                 current_switch->last_case->next = &statement->case_label;
7445                         }
7446                 } else {
7447                         errorf(&statement->base.source_position,
7448                                "case label not within a switch statement");
7449                 }
7450         }
7451         statement->case_label.statement = parse_statement();
7452
7453         return statement;
7454 end_error:
7455         return create_invalid_statement();
7456 }
7457
7458 /**
7459  * Finds an existing default label of a switch statement.
7460  */
7461 static case_label_statement_t *
7462 find_default_label(const switch_statement_t *statement)
7463 {
7464         case_label_statement_t *label = statement->first_case;
7465         for ( ; label != NULL; label = label->next) {
7466                 if (label->expression == NULL)
7467                         return label;
7468         }
7469         return NULL;
7470 }
7471
7472 /**
7473  * Parse a default statement.
7474  */
7475 static statement_t *parse_default_statement(void)
7476 {
7477         eat(T_default);
7478
7479         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
7480
7481         statement->base.source_position = token.source_position;
7482
7483         expect(':');
7484         if (current_switch != NULL) {
7485                 const case_label_statement_t *def_label = find_default_label(current_switch);
7486                 if (def_label != NULL) {
7487                         errorf(HERE, "multiple default labels in one switch (previous declared %P)",
7488                                &def_label->base.source_position);
7489                 } else {
7490                         /* link all cases into the switch statement */
7491                         if (current_switch->last_case == NULL) {
7492                                 current_switch->first_case =
7493                                         current_switch->last_case  = &statement->case_label;
7494                         } else {
7495                                 current_switch->last_case->next = &statement->case_label;
7496                         }
7497                 }
7498         } else {
7499                 errorf(&statement->base.source_position,
7500                         "'default' label not within a switch statement");
7501         }
7502         statement->case_label.statement = parse_statement();
7503
7504         return statement;
7505 end_error:
7506         return create_invalid_statement();
7507 }
7508
7509 /**
7510  * Return the declaration for a given label symbol or create a new one.
7511  */
7512 static declaration_t *get_label(symbol_t *symbol)
7513 {
7514         declaration_t *candidate = get_declaration(symbol, NAMESPACE_LABEL);
7515         assert(current_function != NULL);
7516         /* if we found a label in the same function, then we already created the
7517          * declaration */
7518         if(candidate != NULL
7519                         && candidate->parent_scope == &current_function->scope) {
7520                 return candidate;
7521         }
7522
7523         /* otherwise we need to create a new one */
7524         declaration_t *const declaration = allocate_declaration_zero();
7525         declaration->namespc       = NAMESPACE_LABEL;
7526         declaration->symbol        = symbol;
7527
7528         label_push(declaration);
7529
7530         return declaration;
7531 }
7532
7533 /**
7534  * Parse a label statement.
7535  */
7536 static statement_t *parse_label_statement(void)
7537 {
7538         assert(token.type == T_IDENTIFIER);
7539         symbol_t *symbol = token.v.symbol;
7540         next_token();
7541
7542         declaration_t *label = get_label(symbol);
7543
7544         /* if source position is already set then the label is defined twice,
7545          * otherwise it was just mentioned in a goto so far */
7546         if(label->source_position.input_name != NULL) {
7547                 errorf(HERE, "duplicate label '%Y' (declared %P)",
7548                        symbol, &label->source_position);
7549         } else {
7550                 label->source_position = token.source_position;
7551         }
7552
7553         statement_t *statement = allocate_statement_zero(STATEMENT_LABEL);
7554
7555         statement->base.source_position = token.source_position;
7556         statement->label.label          = label;
7557
7558         eat(':');
7559
7560         if(token.type == '}') {
7561                 /* TODO only warn? */
7562                 if(false) {
7563                         warningf(HERE, "label at end of compound statement");
7564                         statement->label.statement = create_empty_statement();
7565                 } else {
7566                         errorf(HERE, "label at end of compound statement");
7567                         statement->label.statement = create_invalid_statement();
7568                 }
7569                 return statement;
7570         } else {
7571                 if (token.type == ';') {
7572                         /* eat an empty statement here, to avoid the warning about an empty
7573                          * after a label.  label:; is commonly used to have a label before
7574                          * a }. */
7575                         statement->label.statement = create_empty_statement();
7576                         next_token();
7577                 } else {
7578                         statement->label.statement = parse_statement();
7579                 }
7580         }
7581
7582         /* remember the labels's in a list for later checking */
7583         if (label_last == NULL) {
7584                 label_first = &statement->label;
7585         } else {
7586                 label_last->next = &statement->label;
7587         }
7588         label_last = &statement->label;
7589
7590         return statement;
7591 }
7592
7593 /**
7594  * Parse an if statement.
7595  */
7596 static statement_t *parse_if(void)
7597 {
7598         eat(T_if);
7599
7600         statement_t *statement          = allocate_statement_zero(STATEMENT_IF);
7601         statement->base.source_position = token.source_position;
7602
7603         expect('(');
7604         add_anchor_token(')');
7605         statement->ifs.condition = parse_expression();
7606         rem_anchor_token(')');
7607         expect(')');
7608
7609         add_anchor_token(T_else);
7610         statement->ifs.true_statement = parse_statement();
7611         rem_anchor_token(T_else);
7612
7613         if(token.type == T_else) {
7614                 next_token();
7615                 statement->ifs.false_statement = parse_statement();
7616         }
7617
7618         return statement;
7619 end_error:
7620         return create_invalid_statement();
7621 }
7622
7623 /**
7624  * Parse a switch statement.
7625  */
7626 static statement_t *parse_switch(void)
7627 {
7628         eat(T_switch);
7629
7630         statement_t *statement          = allocate_statement_zero(STATEMENT_SWITCH);
7631         statement->base.source_position = token.source_position;
7632
7633         expect('(');
7634         expression_t *const expr = parse_expression();
7635         type_t       *      type = skip_typeref(expr->base.type);
7636         if (is_type_integer(type)) {
7637                 type = promote_integer(type);
7638         } else if (is_type_valid(type)) {
7639                 errorf(&expr->base.source_position,
7640                        "switch quantity is not an integer, but '%T'", type);
7641                 type = type_error_type;
7642         }
7643         statement->switchs.expression = create_implicit_cast(expr, type);
7644         expect(')');
7645
7646         switch_statement_t *rem = current_switch;
7647         current_switch          = &statement->switchs;
7648         statement->switchs.body = parse_statement();
7649         current_switch          = rem;
7650
7651         if(warning.switch_default &&
7652            find_default_label(&statement->switchs) == NULL) {
7653                 warningf(&statement->base.source_position, "switch has no default case");
7654         }
7655
7656         return statement;
7657 end_error:
7658         return create_invalid_statement();
7659 }
7660
7661 static statement_t *parse_loop_body(statement_t *const loop)
7662 {
7663         statement_t *const rem = current_loop;
7664         current_loop = loop;
7665
7666         statement_t *const body = parse_statement();
7667
7668         current_loop = rem;
7669         return body;
7670 }
7671
7672 /**
7673  * Parse a while statement.
7674  */
7675 static statement_t *parse_while(void)
7676 {
7677         eat(T_while);
7678
7679         statement_t *statement          = allocate_statement_zero(STATEMENT_WHILE);
7680         statement->base.source_position = token.source_position;
7681
7682         expect('(');
7683         add_anchor_token(')');
7684         statement->whiles.condition = parse_expression();
7685         rem_anchor_token(')');
7686         expect(')');
7687
7688         statement->whiles.body = parse_loop_body(statement);
7689
7690         return statement;
7691 end_error:
7692         return create_invalid_statement();
7693 }
7694
7695 /**
7696  * Parse a do statement.
7697  */
7698 static statement_t *parse_do(void)
7699 {
7700         eat(T_do);
7701
7702         statement_t *statement = allocate_statement_zero(STATEMENT_DO_WHILE);
7703
7704         statement->base.source_position = token.source_position;
7705
7706         add_anchor_token(T_while);
7707         statement->do_while.body = parse_loop_body(statement);
7708         rem_anchor_token(T_while);
7709
7710         expect(T_while);
7711         expect('(');
7712         add_anchor_token(')');
7713         statement->do_while.condition = parse_expression();
7714         rem_anchor_token(')');
7715         expect(')');
7716         expect(';');
7717
7718         return statement;
7719 end_error:
7720         return create_invalid_statement();
7721 }
7722
7723 /**
7724  * Parse a for statement.
7725  */
7726 static statement_t *parse_for(void)
7727 {
7728         eat(T_for);
7729
7730         statement_t *statement          = allocate_statement_zero(STATEMENT_FOR);
7731         statement->base.source_position = token.source_position;
7732
7733         int      top        = environment_top();
7734         scope_t *last_scope = scope;
7735         set_scope(&statement->fors.scope);
7736
7737         expect('(');
7738         add_anchor_token(')');
7739
7740         if(token.type != ';') {
7741                 if(is_declaration_specifier(&token, false)) {
7742                         parse_declaration(record_declaration);
7743                 } else {
7744                         add_anchor_token(';');
7745                         expression_t *const init = parse_expression();
7746                         statement->fors.initialisation = init;
7747                         if (warning.unused_value && !expression_has_effect(init)) {
7748                                 warningf(&init->base.source_position,
7749                                          "initialisation of 'for'-statement has no effect");
7750                         }
7751                         rem_anchor_token(';');
7752                         expect(';');
7753                 }
7754         } else {
7755                 expect(';');
7756         }
7757
7758         if(token.type != ';') {
7759                 add_anchor_token(';');
7760                 statement->fors.condition = parse_expression();
7761                 rem_anchor_token(';');
7762         }
7763         expect(';');
7764         if(token.type != ')') {
7765                 expression_t *const step = parse_expression();
7766                 statement->fors.step = step;
7767                 if (warning.unused_value && !expression_has_effect(step)) {
7768                         warningf(&step->base.source_position,
7769                                  "step of 'for'-statement has no effect");
7770                 }
7771         }
7772         rem_anchor_token(')');
7773         expect(')');
7774         statement->fors.body = parse_loop_body(statement);
7775
7776         assert(scope == &statement->fors.scope);
7777         set_scope(last_scope);
7778         environment_pop_to(top);
7779
7780         return statement;
7781
7782 end_error:
7783         rem_anchor_token(')');
7784         assert(scope == &statement->fors.scope);
7785         set_scope(last_scope);
7786         environment_pop_to(top);
7787
7788         return create_invalid_statement();
7789 }
7790
7791 /**
7792  * Parse a goto statement.
7793  */
7794 static statement_t *parse_goto(void)
7795 {
7796         eat(T_goto);
7797
7798         if(token.type != T_IDENTIFIER) {
7799                 parse_error_expected("while parsing goto", T_IDENTIFIER, NULL);
7800                 eat_statement();
7801                 goto end_error;
7802         }
7803         symbol_t *symbol = token.v.symbol;
7804         next_token();
7805
7806         declaration_t *label = get_label(symbol);
7807
7808         statement_t *statement          = allocate_statement_zero(STATEMENT_GOTO);
7809         statement->base.source_position = token.source_position;
7810
7811         statement->gotos.label = label;
7812
7813         /* remember the goto's in a list for later checking */
7814         if (goto_last == NULL) {
7815                 goto_first = &statement->gotos;
7816         } else {
7817                 goto_last->next = &statement->gotos;
7818         }
7819         goto_last = &statement->gotos;
7820
7821         expect(';');
7822
7823         return statement;
7824 end_error:
7825         return create_invalid_statement();
7826 }
7827
7828 /**
7829  * Parse a continue statement.
7830  */
7831 static statement_t *parse_continue(void)
7832 {
7833         statement_t *statement;
7834         if (current_loop == NULL) {
7835                 errorf(HERE, "continue statement not within loop");
7836                 statement = create_invalid_statement();
7837         } else {
7838                 statement = allocate_statement_zero(STATEMENT_CONTINUE);
7839
7840                 statement->base.source_position = token.source_position;
7841         }
7842
7843         eat(T_continue);
7844         expect(';');
7845
7846         return statement;
7847 end_error:
7848         return create_invalid_statement();
7849 }
7850
7851 /**
7852  * Parse a break statement.
7853  */
7854 static statement_t *parse_break(void)
7855 {
7856         statement_t *statement;
7857         if (current_switch == NULL && current_loop == NULL) {
7858                 errorf(HERE, "break statement not within loop or switch");
7859                 statement = create_invalid_statement();
7860         } else {
7861                 statement = allocate_statement_zero(STATEMENT_BREAK);
7862
7863                 statement->base.source_position = token.source_position;
7864         }
7865
7866         eat(T_break);
7867         expect(';');
7868
7869         return statement;
7870 end_error:
7871         return create_invalid_statement();
7872 }
7873
7874 /**
7875  * Parse a __leave statement.
7876  */
7877 static statement_t *parse_leave(void)
7878 {
7879         statement_t *statement;
7880         if (current_try == NULL) {
7881                 errorf(HERE, "__leave statement not within __try");
7882                 statement = create_invalid_statement();
7883         } else {
7884                 statement = allocate_statement_zero(STATEMENT_LEAVE);
7885
7886                 statement->base.source_position = token.source_position;
7887         }
7888
7889         eat(T___leave);
7890         expect(';');
7891
7892         return statement;
7893 end_error:
7894         return create_invalid_statement();
7895 }
7896
7897 /**
7898  * Check if a given declaration represents a local variable.
7899  */
7900 static bool is_local_var_declaration(const declaration_t *declaration) {
7901         switch ((storage_class_tag_t) declaration->storage_class) {
7902         case STORAGE_CLASS_AUTO:
7903         case STORAGE_CLASS_REGISTER: {
7904                 const type_t *type = skip_typeref(declaration->type);
7905                 if(is_type_function(type)) {
7906                         return false;
7907                 } else {
7908                         return true;
7909                 }
7910         }
7911         default:
7912                 return false;
7913         }
7914 }
7915
7916 /**
7917  * Check if a given declaration represents a variable.
7918  */
7919 static bool is_var_declaration(const declaration_t *declaration) {
7920         if(declaration->storage_class == STORAGE_CLASS_TYPEDEF)
7921                 return false;
7922
7923         const type_t *type = skip_typeref(declaration->type);
7924         return !is_type_function(type);
7925 }
7926
7927 /**
7928  * Check if a given expression represents a local variable.
7929  */
7930 static bool is_local_variable(const expression_t *expression)
7931 {
7932         if (expression->base.kind != EXPR_REFERENCE) {
7933                 return false;
7934         }
7935         const declaration_t *declaration = expression->reference.declaration;
7936         return is_local_var_declaration(declaration);
7937 }
7938
7939 /**
7940  * Check if a given expression represents a local variable and
7941  * return its declaration then, else return NULL.
7942  */
7943 declaration_t *expr_is_variable(const expression_t *expression)
7944 {
7945         if (expression->base.kind != EXPR_REFERENCE) {
7946                 return NULL;
7947         }
7948         declaration_t *declaration = expression->reference.declaration;
7949         if (is_var_declaration(declaration))
7950                 return declaration;
7951         return NULL;
7952 }
7953
7954 /**
7955  * Parse a return statement.
7956  */
7957 static statement_t *parse_return(void)
7958 {
7959         statement_t *statement          = allocate_statement_zero(STATEMENT_RETURN);
7960         statement->base.source_position = token.source_position;
7961
7962         eat(T_return);
7963
7964         expression_t *return_value = NULL;
7965         if(token.type != ';') {
7966                 return_value = parse_expression();
7967         }
7968         expect(';');
7969
7970         const type_t *const func_type = current_function->type;
7971         assert(is_type_function(func_type));
7972         type_t *const return_type = skip_typeref(func_type->function.return_type);
7973
7974         if(return_value != NULL) {
7975                 type_t *return_value_type = skip_typeref(return_value->base.type);
7976
7977                 if(is_type_atomic(return_type, ATOMIC_TYPE_VOID)
7978                                 && !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
7979                         warningf(&statement->base.source_position,
7980                                  "'return' with a value, in function returning void");
7981                         return_value = NULL;
7982                 } else {
7983                         assign_error_t error = semantic_assign(return_type, return_value);
7984                         report_assign_error(error, return_type, return_value, "'return'",
7985                                             &statement->base.source_position);
7986                         return_value = create_implicit_cast(return_value, return_type);
7987                 }
7988                 /* check for returning address of a local var */
7989                 if (return_value != NULL &&
7990                                 return_value->base.kind == EXPR_UNARY_TAKE_ADDRESS) {
7991                         const expression_t *expression = return_value->unary.value;
7992                         if (is_local_variable(expression)) {
7993                                 warningf(&statement->base.source_position,
7994                                          "function returns address of local variable");
7995                         }
7996                 }
7997         } else {
7998                 if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
7999                         warningf(&statement->base.source_position,
8000                                  "'return' without value, in function returning non-void");
8001                 }
8002         }
8003         statement->returns.value = return_value;
8004
8005         return statement;
8006 end_error:
8007         return create_invalid_statement();
8008 }
8009
8010 /**
8011  * Parse a declaration statement.
8012  */
8013 static statement_t *parse_declaration_statement(void)
8014 {
8015         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
8016
8017         statement->base.source_position = token.source_position;
8018
8019         declaration_t *before = last_declaration;
8020         parse_declaration(record_declaration);
8021
8022         if(before == NULL) {
8023                 statement->declaration.declarations_begin = scope->declarations;
8024         } else {
8025                 statement->declaration.declarations_begin = before->next;
8026         }
8027         statement->declaration.declarations_end = last_declaration;
8028
8029         return statement;
8030 }
8031
8032 /**
8033  * Parse an expression statement, ie. expr ';'.
8034  */
8035 static statement_t *parse_expression_statement(void)
8036 {
8037         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
8038
8039         statement->base.source_position  = token.source_position;
8040         expression_t *const expr         = parse_expression();
8041         statement->expression.expression = expr;
8042
8043         expect(';');
8044
8045         return statement;
8046 end_error:
8047         return create_invalid_statement();
8048 }
8049
8050 /**
8051  * Parse a microsoft __try { } __finally { } or
8052  * __try{ } __except() { }
8053  */
8054 static statement_t *parse_ms_try_statment(void) {
8055         statement_t *statement = allocate_statement_zero(STATEMENT_MS_TRY);
8056
8057         statement->base.source_position  = token.source_position;
8058         eat(T___try);
8059
8060         ms_try_statement_t *rem = current_try;
8061         current_try = &statement->ms_try;
8062         statement->ms_try.try_statement = parse_compound_statement(false);
8063         current_try = rem;
8064
8065         if(token.type == T___except) {
8066                 eat(T___except);
8067                 expect('(');
8068                 add_anchor_token(')');
8069                 expression_t *const expr = parse_expression();
8070                 type_t       *      type = skip_typeref(expr->base.type);
8071                 if (is_type_integer(type)) {
8072                         type = promote_integer(type);
8073                 } else if (is_type_valid(type)) {
8074                         errorf(&expr->base.source_position,
8075                                "__expect expression is not an integer, but '%T'", type);
8076                         type = type_error_type;
8077                 }
8078                 statement->ms_try.except_expression = create_implicit_cast(expr, type);
8079                 rem_anchor_token(')');
8080                 expect(')');
8081                 statement->ms_try.final_statement = parse_compound_statement(false);
8082         } else if(token.type == T__finally) {
8083                 eat(T___finally);
8084                 statement->ms_try.final_statement = parse_compound_statement(false);
8085         } else {
8086                 parse_error_expected("while parsing __try statement", T___except, T___finally, NULL);
8087                 return create_invalid_statement();
8088         }
8089         return statement;
8090 end_error:
8091         return create_invalid_statement();
8092 }
8093
8094 /**
8095  * Parse a statement.
8096  * There's also parse_statement() which additionally checks for
8097  * "statement has no effect" warnings
8098  */
8099 static statement_t *intern_parse_statement(void)
8100 {
8101         statement_t *statement = NULL;
8102
8103         /* declaration or statement */
8104         add_anchor_token(';');
8105         switch(token.type) {
8106         case T_asm:
8107                 statement = parse_asm_statement();
8108                 break;
8109
8110         case T_case:
8111                 statement = parse_case_statement();
8112                 break;
8113
8114         case T_default:
8115                 statement = parse_default_statement();
8116                 break;
8117
8118         case '{':
8119                 statement = parse_compound_statement(false);
8120                 break;
8121
8122         case T_if:
8123                 statement = parse_if();
8124                 break;
8125
8126         case T_switch:
8127                 statement = parse_switch();
8128                 break;
8129
8130         case T_while:
8131                 statement = parse_while();
8132                 break;
8133
8134         case T_do:
8135                 statement = parse_do();
8136                 break;
8137
8138         case T_for:
8139                 statement = parse_for();
8140                 break;
8141
8142         case T_goto:
8143                 statement = parse_goto();
8144                 break;
8145
8146         case T_continue:
8147                 statement = parse_continue();
8148                 break;
8149
8150         case T_break:
8151                 statement = parse_break();
8152                 break;
8153
8154         case T___leave:
8155                 statement = parse_leave();
8156                 break;
8157
8158         case T_return:
8159                 statement = parse_return();
8160                 break;
8161
8162         case ';':
8163                 if(warning.empty_statement) {
8164                         warningf(HERE, "statement is empty");
8165                 }
8166                 statement = create_empty_statement();
8167                 next_token();
8168                 break;
8169
8170         case T_IDENTIFIER:
8171                 if(look_ahead(1)->type == ':') {
8172                         statement = parse_label_statement();
8173                         break;
8174                 }
8175
8176                 if(is_typedef_symbol(token.v.symbol)) {
8177                         statement = parse_declaration_statement();
8178                         break;
8179                 }
8180
8181                 statement = parse_expression_statement();
8182                 break;
8183
8184         case T___extension__:
8185                 /* this can be a prefix to a declaration or an expression statement */
8186                 /* we simply eat it now and parse the rest with tail recursion */
8187                 do {
8188                         next_token();
8189                 } while(token.type == T___extension__);
8190                 statement = parse_statement();
8191                 break;
8192
8193         DECLARATION_START
8194                 statement = parse_declaration_statement();
8195                 break;
8196
8197         case T___try:
8198                 statement = parse_ms_try_statment();
8199                 break;
8200
8201         default:
8202                 statement = parse_expression_statement();
8203                 break;
8204         }
8205         rem_anchor_token(';');
8206
8207         assert(statement != NULL
8208                         && statement->base.source_position.input_name != NULL);
8209
8210         return statement;
8211 }
8212
8213 /**
8214  * parse a statement and emits "statement has no effect" warning if needed
8215  * (This is really a wrapper around intern_parse_statement with check for 1
8216  *  single warning. It is needed, because for statement expressions we have
8217  *  to avoid the warning on the last statement)
8218  */
8219 static statement_t *parse_statement(void)
8220 {
8221         statement_t *statement = intern_parse_statement();
8222
8223         if(statement->kind == STATEMENT_EXPRESSION && warning.unused_value) {
8224                 expression_t *expression = statement->expression.expression;
8225                 if(!expression_has_effect(expression)) {
8226                         warningf(&expression->base.source_position,
8227                                         "statement has no effect");
8228                 }
8229         }
8230
8231         return statement;
8232 }
8233
8234 /**
8235  * Parse a compound statement.
8236  */
8237 static statement_t *parse_compound_statement(bool inside_expression_statement)
8238 {
8239         statement_t *statement = allocate_statement_zero(STATEMENT_COMPOUND);
8240
8241         statement->base.source_position = token.source_position;
8242
8243         eat('{');
8244         add_anchor_token('}');
8245
8246         int      top        = environment_top();
8247         scope_t *last_scope = scope;
8248         set_scope(&statement->compound.scope);
8249
8250         statement_t *last_statement = NULL;
8251
8252         while(token.type != '}' && token.type != T_EOF) {
8253                 statement_t *sub_statement = intern_parse_statement();
8254                 if(is_invalid_statement(sub_statement)) {
8255                         /* an error occurred. if we are at an anchor, return */
8256                         if(at_anchor())
8257                                 goto end_error;
8258                         continue;
8259                 }
8260
8261                 if(last_statement != NULL) {
8262                         last_statement->base.next = sub_statement;
8263                 } else {
8264                         statement->compound.statements = sub_statement;
8265                 }
8266
8267                 while(sub_statement->base.next != NULL)
8268                         sub_statement = sub_statement->base.next;
8269
8270                 last_statement = sub_statement;
8271         }
8272
8273         if(token.type == '}') {
8274                 next_token();
8275         } else {
8276                 errorf(&statement->base.source_position,
8277                        "end of file while looking for closing '}'");
8278         }
8279
8280         /* look over all statements again to produce no effect warnings */
8281         if(warning.unused_value) {
8282                 statement_t *sub_statement = statement->compound.statements;
8283                 for( ; sub_statement != NULL; sub_statement = sub_statement->base.next) {
8284                         if(sub_statement->kind != STATEMENT_EXPRESSION)
8285                                 continue;
8286                         /* don't emit a warning for the last expression in an expression
8287                          * statement as it has always an effect */
8288                         if(inside_expression_statement && sub_statement->base.next == NULL)
8289                                 continue;
8290
8291                         expression_t *expression = sub_statement->expression.expression;
8292                         if(!expression_has_effect(expression)) {
8293                                 warningf(&expression->base.source_position,
8294                                          "statement has no effect");
8295                         }
8296                 }
8297         }
8298
8299 end_error:
8300         rem_anchor_token('}');
8301         assert(scope == &statement->compound.scope);
8302         set_scope(last_scope);
8303         environment_pop_to(top);
8304
8305         return statement;
8306 }
8307
8308 /**
8309  * Initialize builtin types.
8310  */
8311 static void initialize_builtin_types(void)
8312 {
8313         type_intmax_t    = make_global_typedef("__intmax_t__",      type_long_long);
8314         type_size_t      = make_global_typedef("__SIZE_TYPE__",     type_unsigned_long);
8315         type_ssize_t     = make_global_typedef("__SSIZE_TYPE__",    type_long);
8316         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",  type_long);
8317         type_uintmax_t   = make_global_typedef("__uintmax_t__",     type_unsigned_long_long);
8318         type_uptrdiff_t  = make_global_typedef("__UPTRDIFF_TYPE__", type_unsigned_long);
8319         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    type_int);
8320         type_wint_t      = make_global_typedef("__WINT_TYPE__",     type_int);
8321
8322         type_intmax_t_ptr  = make_pointer_type(type_intmax_t,  TYPE_QUALIFIER_NONE);
8323         type_ptrdiff_t_ptr = make_pointer_type(type_ptrdiff_t, TYPE_QUALIFIER_NONE);
8324         type_ssize_t_ptr   = make_pointer_type(type_ssize_t,   TYPE_QUALIFIER_NONE);
8325         type_wchar_t_ptr   = make_pointer_type(type_wchar_t,   TYPE_QUALIFIER_NONE);
8326 }
8327
8328 /**
8329  * Check for unused global static functions and variables
8330  */
8331 static void check_unused_globals(void)
8332 {
8333         if (!warning.unused_function && !warning.unused_variable)
8334                 return;
8335
8336         for (const declaration_t *decl = global_scope->declarations; decl != NULL; decl = decl->next) {
8337                 if (decl->used || decl->storage_class != STORAGE_CLASS_STATIC)
8338                         continue;
8339
8340                 type_t *const type = decl->type;
8341                 const char *s;
8342                 if (is_type_function(skip_typeref(type))) {
8343                         if (!warning.unused_function || decl->is_inline)
8344                                 continue;
8345
8346                         s = (decl->init.statement != NULL ? "defined" : "declared");
8347                 } else {
8348                         if (!warning.unused_variable)
8349                                 continue;
8350
8351                         s = "defined";
8352                 }
8353
8354                 warningf(&decl->source_position, "'%#T' %s but not used",
8355                         type, decl->symbol, s);
8356         }
8357 }
8358
8359 /**
8360  * Parse a translation unit.
8361  */
8362 static void parse_translation_unit(void)
8363 {
8364         while(token.type != T_EOF) {
8365                 if (token.type == ';') {
8366                         /* TODO error in strict mode */
8367                         warningf(HERE, "stray ';' outside of function");
8368                         next_token();
8369                 } else {
8370                         parse_external_declaration();
8371                 }
8372         }
8373 }
8374
8375 /**
8376  * Parse the input.
8377  *
8378  * @return  the translation unit or NULL if errors occurred.
8379  */
8380 void start_parsing(void)
8381 {
8382         environment_stack = NEW_ARR_F(stack_entry_t, 0);
8383         label_stack       = NEW_ARR_F(stack_entry_t, 0);
8384         diagnostic_count  = 0;
8385         error_count       = 0;
8386         warning_count     = 0;
8387
8388         type_set_output(stderr);
8389         ast_set_output(stderr);
8390
8391         assert(unit == NULL);
8392         unit = allocate_ast_zero(sizeof(unit[0]));
8393
8394         assert(global_scope == NULL);
8395         global_scope = &unit->scope;
8396
8397         assert(scope == NULL);
8398         set_scope(&unit->scope);
8399
8400         initialize_builtin_types();
8401 }
8402
8403 translation_unit_t *finish_parsing(void)
8404 {
8405         assert(scope == &unit->scope);
8406         scope          = NULL;
8407         last_declaration = NULL;
8408
8409         assert(global_scope == &unit->scope);
8410         check_unused_globals();
8411         global_scope = NULL;
8412
8413         DEL_ARR_F(environment_stack);
8414         DEL_ARR_F(label_stack);
8415
8416         translation_unit_t *result = unit;
8417         unit = NULL;
8418         return result;
8419 }
8420
8421 void parse(void)
8422 {
8423         lookahead_bufpos = 0;
8424         for(int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
8425                 next_token();
8426         }
8427         parse_translation_unit();
8428 }
8429
8430 /**
8431  * Initialize the parser.
8432  */
8433 void init_parser(void)
8434 {
8435         if(c_mode & _MS) {
8436                 /* add predefined symbols for extended-decl-modifier */
8437                 sym_align      = symbol_table_insert("align");
8438                 sym_allocate   = symbol_table_insert("allocate");
8439                 sym_dllimport  = symbol_table_insert("dllimport");
8440                 sym_dllexport  = symbol_table_insert("dllexport");
8441                 sym_naked      = symbol_table_insert("naked");
8442                 sym_noinline   = symbol_table_insert("noinline");
8443                 sym_noreturn   = symbol_table_insert("noreturn");
8444                 sym_nothrow    = symbol_table_insert("nothrow");
8445                 sym_novtable   = symbol_table_insert("novtable");
8446                 sym_property   = symbol_table_insert("property");
8447                 sym_get        = symbol_table_insert("get");
8448                 sym_put        = symbol_table_insert("put");
8449                 sym_selectany  = symbol_table_insert("selectany");
8450                 sym_thread     = symbol_table_insert("thread");
8451                 sym_uuid       = symbol_table_insert("uuid");
8452                 sym_deprecated = symbol_table_insert("deprecated");
8453                 sym_restrict   = symbol_table_insert("restrict");
8454                 sym_noalias    = symbol_table_insert("noalias");
8455         }
8456         memset(token_anchor_set, 0, sizeof(token_anchor_set));
8457
8458         init_expression_parsers();
8459         obstack_init(&temp_obst);
8460
8461         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
8462         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
8463 }
8464
8465 /**
8466  * Terminate the parser.
8467  */
8468 void exit_parser(void)
8469 {
8470         obstack_free(&temp_obst, NULL);
8471 }