Add support for variadic arguments.
[cparser] / parser.c
1 #include <config.h>
2
3 #include <assert.h>
4 #include <stdarg.h>
5 #include <stdbool.h>
6
7 #include "parser.h"
8 #include "lexer.h"
9 #include "token_t.h"
10 #include "type_t.h"
11 #include "type_hash.h"
12 #include "ast_t.h"
13 #include "adt/bitfiddle.h"
14 #include "adt/error.h"
15 #include "adt/array.h"
16
17 //#define PRINT_TOKENS
18 //#define ABORT_ON_ERROR
19 #define MAX_LOOKAHEAD 2
20 //#define STRICT_C99
21
22 typedef struct {
23         declaration_t *old_declaration;
24         symbol_t      *symbol;
25         unsigned short namespc;
26 } stack_entry_t;
27
28 typedef struct declaration_specifiers_t  declaration_specifiers_t;
29 struct declaration_specifiers_t {
30         source_position_t  source_position;
31         unsigned char      storage_class;
32         bool               is_inline;
33         type_t            *type;
34 };
35
36 typedef declaration_t* (*parsed_declaration_func) (declaration_t *declaration);
37
38 static token_t         token;
39 static token_t         lookahead_buffer[MAX_LOOKAHEAD];
40 static int             lookahead_bufpos;
41 static stack_entry_t  *environment_stack = NULL;
42 static stack_entry_t  *label_stack       = NULL;
43 static context_t      *global_context    = NULL;
44 static context_t      *context           = NULL;
45 static declaration_t  *last_declaration  = NULL;
46 static declaration_t  *current_function  = NULL;
47 static struct obstack  temp_obst;
48 static bool            found_error;
49
50 static type_t         *type_int         = NULL;
51 static type_t         *type_long_double = NULL;
52 static type_t         *type_double      = NULL;
53 static type_t         *type_float       = NULL;
54 static type_t         *type_char        = NULL;
55 static type_t         *type_string      = NULL;
56 static type_t         *type_void        = NULL;
57 static type_t         *type_void_ptr    = NULL;
58 static type_t         *type_valist      = NULL;
59
60 type_t *type_size_t      = NULL;
61 type_t *type_ptrdiff_t   = NULL;
62 type_t *type_wchar_t     = NULL;
63 type_t *type_wchar_t_ptr = NULL;
64
65 static statement_t *parse_compound_statement(void);
66 static statement_t *parse_statement(void);
67
68 static expression_t *parse_sub_expression(unsigned precedence);
69 static expression_t *parse_expression(void);
70 static type_t       *parse_typename(void);
71
72 static void parse_compound_type_entries(void);
73 static declaration_t *parse_declarator(
74                 const declaration_specifiers_t *specifiers, bool may_be_abstract);
75 static declaration_t *record_declaration(declaration_t *declaration);
76
77 #define STORAGE_CLASSES     \
78         case T_typedef:         \
79         case T_extern:          \
80         case T_static:          \
81         case T_auto:            \
82         case T_register:
83
84 #define TYPE_QUALIFIERS     \
85         case T_const:           \
86         case T_restrict:        \
87         case T_volatile:        \
88         case T_inline:
89
90 #ifdef PROVIDE_COMPLEX
91 #define COMPLEX_SPECIFIERS  \
92         case T__Complex:
93 #define IMAGINARY_SPECIFIERS \
94         case T__Imaginary:
95 #else
96 #define COMPLEX_SPECIFIERS
97 #define IMAGINARY_SPECIFIERS
98 #endif
99
100 #define TYPE_SPECIFIERS       \
101         case T_void:              \
102         case T_char:              \
103         case T_short:             \
104         case T_int:               \
105         case T_long:              \
106         case T_float:             \
107         case T_double:            \
108         case T_signed:            \
109         case T_unsigned:          \
110         case T__Bool:             \
111         case T_struct:            \
112         case T_union:             \
113         case T_enum:              \
114         case T___typeof__:        \
115         case T___builtin_va_list: \
116         COMPLEX_SPECIFIERS        \
117         IMAGINARY_SPECIFIERS
118
119 #define DECLARATION_START   \
120         STORAGE_CLASSES         \
121         TYPE_QUALIFIERS         \
122         TYPE_SPECIFIERS
123
124 #define TYPENAME_START      \
125         TYPE_QUALIFIERS         \
126         TYPE_SPECIFIERS
127
128 static void *allocate_ast_zero(size_t size)
129 {
130         void *res = allocate_ast(size);
131         memset(res, 0, size);
132         return res;
133 }
134
135 static size_t get_statement_struct_size(statement_type_t type)
136 {
137         static const size_t sizes[] = {
138                 [STATEMENT_COMPOUND]    = sizeof(compound_statement_t),
139                 [STATEMENT_RETURN]      = sizeof(return_statement_t),
140                 [STATEMENT_DECLARATION] = sizeof(declaration_statement_t),
141                 [STATEMENT_IF]          = sizeof(if_statement_t),
142                 [STATEMENT_SWITCH]      = sizeof(switch_statement_t),
143                 [STATEMENT_EXPRESSION]  = sizeof(expression_statement_t),
144                 [STATEMENT_CONTINUE]    = sizeof(statement_base_t),
145                 [STATEMENT_BREAK]       = sizeof(statement_base_t),
146                 [STATEMENT_GOTO]        = sizeof(goto_statement_t),
147                 [STATEMENT_LABEL]       = sizeof(label_statement_t),
148                 [STATEMENT_CASE_LABEL]  = sizeof(case_label_statement_t),
149                 [STATEMENT_WHILE]       = sizeof(while_statement_t),
150                 [STATEMENT_DO_WHILE]    = sizeof(do_while_statement_t),
151                 [STATEMENT_FOR]         = sizeof(for_statement_t),
152                 [STATEMENT_ASM]         = sizeof(asm_statement_t)
153         };
154         assert(sizeof(sizes) / sizeof(sizes[0]) == STATEMENT_ASM + 1);
155         assert(type <= STATEMENT_ASM);
156         assert(sizes[type] != 0);
157         return sizes[type];
158 }
159
160 static statement_t *allocate_statement_zero(statement_type_t type)
161 {
162         size_t       size = get_statement_struct_size(type);
163         statement_t *res  = allocate_ast_zero(size);
164
165         res->base.type = type;
166         return res;
167 }
168
169
170 static size_t get_expression_struct_size(expression_type_t type)
171 {
172         static const size_t sizes[] = {
173                 [EXPR_INVALID]             = sizeof(expression_base_t),
174                 [EXPR_REFERENCE]           = sizeof(reference_expression_t),
175                 [EXPR_CONST]               = sizeof(const_expression_t),
176                 [EXPR_STRING_LITERAL]      = sizeof(string_literal_expression_t),
177                 [EXPR_WIDE_STRING_LITERAL] = sizeof(wide_string_literal_expression_t),
178                 [EXPR_CALL]                = sizeof(call_expression_t),
179                 [EXPR_UNARY]               = sizeof(unary_expression_t),
180                 [EXPR_BINARY]              = sizeof(binary_expression_t),
181                 [EXPR_CONDITIONAL]         = sizeof(conditional_expression_t),
182                 [EXPR_SELECT]              = sizeof(select_expression_t),
183                 [EXPR_ARRAY_ACCESS]        = sizeof(array_access_expression_t),
184                 [EXPR_SIZEOF]              = sizeof(sizeof_expression_t),
185                 [EXPR_CLASSIFY_TYPE]       = sizeof(classify_type_expression_t),
186                 [EXPR_FUNCTION]            = sizeof(string_literal_expression_t),
187                 [EXPR_PRETTY_FUNCTION]     = sizeof(string_literal_expression_t),
188                 [EXPR_BUILTIN_SYMBOL]      = sizeof(builtin_symbol_expression_t),
189                 [EXPR_OFFSETOF]            = sizeof(offsetof_expression_t),
190                 [EXPR_VA_START]            = sizeof(va_start_expression_t),
191                 [EXPR_VA_ARG]              = sizeof(va_arg_expression_t),
192                 [EXPR_STATEMENT]           = sizeof(statement_expression_t)
193         };
194         assert(sizeof(sizes) / sizeof(sizes[0]) == EXPR_STATEMENT + 1);
195         assert(type <= EXPR_STATEMENT);
196         assert(sizes[type] != 0);
197         return sizes[type];
198 }
199
200 static expression_t *allocate_expression_zero(expression_type_t type)
201 {
202         size_t        size = get_expression_struct_size(type);
203         expression_t *res  = allocate_ast_zero(size);
204
205         res->base.type = type;
206         return res;
207 }
208
209 static size_t get_type_struct_size(type_type_t type)
210 {
211         static const size_t sizes[] = {
212                 [TYPE_ATOMIC]          = sizeof(atomic_type_t),
213                 [TYPE_COMPOUND_STRUCT] = sizeof(compound_type_t),
214                 [TYPE_COMPOUND_UNION]  = sizeof(compound_type_t),
215                 [TYPE_ENUM]            = sizeof(enum_type_t),
216                 [TYPE_FUNCTION]        = sizeof(function_type_t),
217                 [TYPE_POINTER]         = sizeof(pointer_type_t),
218                 [TYPE_ARRAY]           = sizeof(array_type_t),
219                 [TYPE_BUILTIN]         = sizeof(builtin_type_t),
220                 [TYPE_TYPEDEF]         = sizeof(typedef_type_t),
221                 [TYPE_TYPEOF]          = sizeof(typeof_type_t),
222         };
223         assert(sizeof(sizes) / sizeof(sizes[0]) == (int) TYPE_TYPEOF + 1);
224         assert(type <= TYPE_TYPEOF);
225         assert(sizes[type] != 0);
226         return sizes[type];
227 }
228
229 static type_t *allocate_type_zero(type_type_t type)
230 {
231         size_t  size = get_type_struct_size(type);
232         type_t *res  = obstack_alloc(type_obst, size);
233         memset(res, 0, size);
234
235         res->base.type = type;
236         return res;
237 }
238
239 static size_t get_initializer_size(initializer_type_t type)
240 {
241         static const size_t sizes[] = {
242                 [INITIALIZER_VALUE]       = sizeof(initializer_value_t),
243                 [INITIALIZER_STRING]      = sizeof(initializer_string_t),
244                 [INITIALIZER_WIDE_STRING] = sizeof(initializer_wide_string_t),
245                 [INITIALIZER_LIST]        = sizeof(initializer_list_t)
246         };
247         assert(type < sizeof(sizes) / sizeof(*sizes));
248         assert(sizes[type] != 0);
249         return sizes[type];
250 }
251
252 static initializer_t *allocate_initializer(initializer_type_t type)
253 {
254         initializer_t *result = allocate_ast_zero(get_initializer_size(type));
255         result->type          = type;
256
257         return result;
258 }
259
260 static void free_type(void *type)
261 {
262         obstack_free(type_obst, type);
263 }
264
265 /**
266  * returns the top element of the environment stack
267  */
268 static size_t environment_top(void)
269 {
270         return ARR_LEN(environment_stack);
271 }
272
273 static size_t label_top(void)
274 {
275         return ARR_LEN(label_stack);
276 }
277
278
279
280 static inline void next_token(void)
281 {
282         token                              = lookahead_buffer[lookahead_bufpos];
283         lookahead_buffer[lookahead_bufpos] = lexer_token;
284         lexer_next_token();
285
286         lookahead_bufpos = (lookahead_bufpos+1) % MAX_LOOKAHEAD;
287
288 #ifdef PRINT_TOKENS
289         print_token(stderr, &token);
290         fprintf(stderr, "\n");
291 #endif
292 }
293
294 static inline const token_t *look_ahead(int num)
295 {
296         assert(num > 0 && num <= MAX_LOOKAHEAD);
297         int pos = (lookahead_bufpos+num-1) % MAX_LOOKAHEAD;
298         return &lookahead_buffer[pos];
299 }
300
301 #define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
302
303 static void error(void)
304 {
305         found_error = true;
306 #ifdef ABORT_ON_ERROR
307         abort();
308 #endif
309 }
310
311 static void parser_print_prefix_pos(const source_position_t source_position)
312 {
313     fputs(source_position.input_name, stderr);
314     fputc(':', stderr);
315     fprintf(stderr, "%u", source_position.linenr);
316     fputs(": ", stderr);
317 }
318
319 static void parser_print_error_prefix_pos(
320                 const source_position_t source_position)
321 {
322         parser_print_prefix_pos(source_position);
323         fputs("error: ", stderr);
324         error();
325 }
326
327 static void parser_print_error_prefix(void)
328 {
329         parser_print_error_prefix_pos(token.source_position);
330 }
331
332 static void parse_error(const char *message)
333 {
334         parser_print_error_prefix();
335         fprintf(stderr, "parse error: %s\n", message);
336 }
337
338 static void parser_print_warning_prefix_pos(
339                 const source_position_t source_position)
340 {
341         parser_print_prefix_pos(source_position);
342         fputs("warning: ", stderr);
343 }
344
345 static void parser_print_warning_prefix(void)
346 {
347         parser_print_warning_prefix_pos(token.source_position);
348 }
349
350 static void parse_warning_pos(const source_position_t source_position,
351                               const char *const message)
352 {
353         parser_print_prefix_pos(source_position);
354         fprintf(stderr, "warning: %s\n", message);
355 }
356
357 static void parse_warning(const char *message)
358 {
359         parse_warning_pos(token.source_position, message);
360 }
361
362 static void parse_error_expected(const char *message, ...)
363 {
364         va_list args;
365         int first = 1;
366
367         if(message != NULL) {
368                 parser_print_error_prefix();
369                 fprintf(stderr, "%s\n", message);
370         }
371         parser_print_error_prefix();
372         fputs("Parse error: got ", stderr);
373         print_token(stderr, &token);
374         fputs(", expected ", stderr);
375
376         va_start(args, message);
377         token_type_t token_type = va_arg(args, token_type_t);
378         while(token_type != 0) {
379                 if(first == 1) {
380                         first = 0;
381                 } else {
382                         fprintf(stderr, ", ");
383                 }
384                 print_token_type(stderr, token_type);
385                 token_type = va_arg(args, token_type_t);
386         }
387         va_end(args);
388         fprintf(stderr, "\n");
389 }
390
391 static void print_type_quoted(type_t *type)
392 {
393         fputc('\'', stderr);
394         print_type(type);
395         fputc('\'', stderr);
396 }
397
398 static void type_error(const char *msg, const source_position_t source_position,
399                        type_t *type)
400 {
401         parser_print_error_prefix_pos(source_position);
402         fprintf(stderr, "%s, but found type ", msg);
403         print_type_quoted(type);
404         fputc('\n', stderr);
405 }
406
407 static void type_error_incompatible(const char *msg,
408                 const source_position_t source_position, type_t *type1, type_t *type2)
409 {
410         parser_print_error_prefix_pos(source_position);
411         fprintf(stderr, "%s, incompatible types: ", msg);
412         print_type_quoted(type1);
413         fprintf(stderr, " - ");
414         print_type_quoted(type2);
415         fprintf(stderr, ")\n");
416 }
417
418 static void eat_block(void)
419 {
420         if(token.type == '{')
421                 next_token();
422
423         while(token.type != '}') {
424                 if(token.type == T_EOF)
425                         return;
426                 if(token.type == '{') {
427                         eat_block();
428                         continue;
429                 }
430                 next_token();
431         }
432         eat('}');
433 }
434
435 static void eat_statement(void)
436 {
437         while(token.type != ';') {
438                 if(token.type == T_EOF)
439                         return;
440                 if(token.type == '}')
441                         return;
442                 if(token.type == '{') {
443                         eat_block();
444                         continue;
445                 }
446                 next_token();
447         }
448         eat(';');
449 }
450
451 static void eat_paren(void)
452 {
453         if(token.type == '(')
454                 next_token();
455
456         while(token.type != ')') {
457                 if(token.type == T_EOF)
458                         return;
459                 if(token.type == ')' || token.type == ';' || token.type == '}') {
460                         return;
461                 }
462                 if(token.type == '(') {
463                         eat_paren();
464                         continue;
465                 }
466                 if(token.type == '{') {
467                         eat_block();
468                         continue;
469                 }
470                 next_token();
471         }
472         eat(')');
473 }
474
475 #define expect(expected)                           \
476     if(UNLIKELY(token.type != (expected))) {       \
477         parse_error_expected(NULL, (expected), 0); \
478         eat_statement();                           \
479         return NULL;                               \
480     }                                              \
481     next_token();
482
483 #define expect_block(expected)                     \
484     if(UNLIKELY(token.type != (expected))) {       \
485         parse_error_expected(NULL, (expected), 0); \
486         eat_block();                               \
487         return NULL;                               \
488     }                                              \
489     next_token();
490
491 #define expect_void(expected)                      \
492     if(UNLIKELY(token.type != (expected))) {       \
493         parse_error_expected(NULL, (expected), 0); \
494         eat_statement();                           \
495         return;                                    \
496     }                                              \
497     next_token();
498
499 static void set_context(context_t *new_context)
500 {
501         context = new_context;
502
503         last_declaration = new_context->declarations;
504         if(last_declaration != NULL) {
505                 while(last_declaration->next != NULL) {
506                         last_declaration = last_declaration->next;
507                 }
508         }
509 }
510
511 /**
512  * called when we find a 2nd declarator for an identifier we already have a
513  * declarator for
514  */
515 static bool is_compatible_declaration(declaration_t *declaration,
516                                       declaration_t *previous)
517 {
518         /* happens for K&R style function parameters */
519         if(previous->type == NULL) {
520                 previous->type = declaration->type;
521                 return true;
522         }
523
524         type_t *type1 = skip_typeref(declaration->type);
525         type_t *type2 = skip_typeref(previous->type);
526
527         return types_compatible(type1, type2);
528 }
529
530 static declaration_t *get_declaration(symbol_t *symbol, namespace_t namespc)
531 {
532         declaration_t *declaration = symbol->declaration;
533         for( ; declaration != NULL; declaration = declaration->symbol_next) {
534                 if(declaration->namespc == namespc)
535                         return declaration;
536         }
537
538         return NULL;
539 }
540
541 static const char *get_namespace_prefix(namespace_t namespc)
542 {
543         switch(namespc) {
544         case NAMESPACE_NORMAL:
545                 return "";
546         case NAMESPACE_UNION:
547                 return "union ";
548         case NAMESPACE_STRUCT:
549                 return "struct ";
550         case NAMESPACE_ENUM:
551                 return "enum ";
552         case NAMESPACE_LABEL:
553                 return "label ";
554         }
555         panic("invalid namespace found");
556 }
557
558 /**
559  * pushs an environment_entry on the environment stack and links the
560  * corresponding symbol to the new entry
561  */
562 static declaration_t *stack_push(stack_entry_t **stack_ptr,
563                                  declaration_t *declaration,
564                                  context_t *parent_context)
565 {
566         symbol_t    *symbol    = declaration->symbol;
567         namespace_t  namespc = (namespace_t)declaration->namespc;
568
569         /* a declaration should be only pushed once */
570         declaration->parent_context = parent_context;
571
572         declaration_t *previous_declaration = get_declaration(symbol, namespc);
573         assert(declaration != previous_declaration);
574         if(previous_declaration != NULL
575                         && previous_declaration->parent_context == context) {
576                 if(!is_compatible_declaration(declaration, previous_declaration)) {
577                         parser_print_error_prefix_pos(declaration->source_position);
578                         fprintf(stderr, "definition of symbol '%s%s' with type ",
579                                         get_namespace_prefix(namespc), symbol->string);
580                         print_type_quoted(declaration->type);
581                         fputc('\n', stderr);
582                         parser_print_error_prefix_pos(
583                                         previous_declaration->source_position);
584                         fprintf(stderr, "is incompatible with previous declaration "
585                                         "of type ");
586                         print_type_quoted(previous_declaration->type);
587                         fputc('\n', stderr);
588                 } else {
589                         unsigned old_storage_class = previous_declaration->storage_class;
590                         unsigned new_storage_class = declaration->storage_class;
591                         if (current_function == NULL) {
592                                 if (old_storage_class != STORAGE_CLASS_STATIC &&
593                                     new_storage_class == STORAGE_CLASS_STATIC) {
594                                         parser_print_error_prefix_pos(declaration->source_position);
595                                         fprintf(stderr,
596                                                 "static declaration of '%s' follows non-static declaration\n",
597                                                 symbol->string);
598                                         parser_print_error_prefix_pos(previous_declaration->source_position);
599                                         fprintf(stderr, "previous declaration of '%s' was here\n",
600                                                 symbol->string);
601                                 } else {
602                                         if (old_storage_class == STORAGE_CLASS_EXTERN) {
603                                                 if (new_storage_class == STORAGE_CLASS_NONE) {
604                                                         previous_declaration->storage_class = STORAGE_CLASS_NONE;
605                                                 }
606                                         } else {
607                                                 parser_print_warning_prefix_pos(declaration->source_position);
608                                                 fprintf(stderr, "redundant declaration for '%s'\n",
609                                                                                 symbol->string);
610                                                 parser_print_warning_prefix_pos(previous_declaration->source_position);
611                                                 fprintf(stderr, "previous declaration of '%s' was here\n",
612                                                                                 symbol->string);
613                                         }
614                                 }
615                         } else {
616                                 if (old_storage_class == STORAGE_CLASS_EXTERN &&
617                                                 new_storage_class == STORAGE_CLASS_EXTERN) {
618                                         parser_print_warning_prefix_pos(declaration->source_position);
619                                         fprintf(stderr, "redundant extern declaration for '%s'\n",
620                                                 symbol->string);
621                                         parser_print_warning_prefix_pos(previous_declaration->source_position);
622                                         fprintf(stderr, "previous declaration of '%s' was here\n",
623                                                 symbol->string);
624                                 } else {
625                                         parser_print_error_prefix_pos(declaration->source_position);
626                                         if (old_storage_class == new_storage_class) {
627                                                 fprintf(stderr, "redeclaration of '%s'\n", symbol->string);
628                                         } else {
629                                                 fprintf(stderr, "redeclaration of '%s' with different linkage\n", symbol->string);
630                                         }
631                                         parser_print_error_prefix_pos(previous_declaration->source_position);
632                                         fprintf(stderr, "previous declaration of '%s' was here\n",
633                                                 symbol->string);
634                                 }
635                         }
636                 }
637                 return previous_declaration;
638         }
639
640         /* remember old declaration */
641         stack_entry_t entry;
642         entry.symbol          = symbol;
643         entry.old_declaration = symbol->declaration;
644         entry.namespc         = (unsigned short) namespc;
645         ARR_APP1(stack_entry_t, *stack_ptr, entry);
646
647         /* replace/add declaration into declaration list of the symbol */
648         if(symbol->declaration == NULL) {
649                 symbol->declaration = declaration;
650         } else {
651                 declaration_t *iter_last = NULL;
652                 declaration_t *iter      = symbol->declaration;
653                 for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
654                         /* replace an entry? */
655                         if(iter->namespc == namespc) {
656                                 if(iter_last == NULL) {
657                                         symbol->declaration = declaration;
658                                 } else {
659                                         iter_last->symbol_next = declaration;
660                                 }
661                                 declaration->symbol_next = iter->symbol_next;
662                                 break;
663                         }
664                 }
665                 if(iter == NULL) {
666                         assert(iter_last->symbol_next == NULL);
667                         iter_last->symbol_next = declaration;
668                 }
669         }
670
671         return declaration;
672 }
673
674 static declaration_t *environment_push(declaration_t *declaration)
675 {
676         assert(declaration->source_position.input_name != NULL);
677         return stack_push(&environment_stack, declaration, context);
678 }
679
680 static declaration_t *label_push(declaration_t *declaration)
681 {
682         return stack_push(&label_stack, declaration, &current_function->context);
683 }
684
685 /**
686  * pops symbols from the environment stack until @p new_top is the top element
687  */
688 static void stack_pop_to(stack_entry_t **stack_ptr, size_t new_top)
689 {
690         stack_entry_t *stack = *stack_ptr;
691         size_t         top   = ARR_LEN(stack);
692         size_t         i;
693
694         assert(new_top <= top);
695         if(new_top == top)
696                 return;
697
698         for(i = top; i > new_top; --i) {
699                 stack_entry_t *entry = &stack[i - 1];
700
701                 declaration_t *old_declaration = entry->old_declaration;
702                 symbol_t      *symbol          = entry->symbol;
703                 namespace_t    namespc         = (namespace_t)entry->namespc;
704
705                 /* replace/remove declaration */
706                 declaration_t *declaration = symbol->declaration;
707                 assert(declaration != NULL);
708                 if(declaration->namespc == namespc) {
709                         if(old_declaration == NULL) {
710                                 symbol->declaration = declaration->symbol_next;
711                         } else {
712                                 symbol->declaration = old_declaration;
713                         }
714                 } else {
715                         declaration_t *iter_last = declaration;
716                         declaration_t *iter      = declaration->symbol_next;
717                         for( ; iter != NULL; iter_last = iter, iter = iter->symbol_next) {
718                                 /* replace an entry? */
719                                 if(iter->namespc == namespc) {
720                                         assert(iter_last != NULL);
721                                         iter_last->symbol_next = old_declaration;
722                                         old_declaration->symbol_next = iter->symbol_next;
723                                         break;
724                                 }
725                         }
726                         assert(iter != NULL);
727                 }
728         }
729
730         ARR_SHRINKLEN(*stack_ptr, (int) new_top);
731 }
732
733 static void environment_pop_to(size_t new_top)
734 {
735         stack_pop_to(&environment_stack, new_top);
736 }
737
738 static void label_pop_to(size_t new_top)
739 {
740         stack_pop_to(&label_stack, new_top);
741 }
742
743
744 static int get_rank(const type_t *type)
745 {
746         assert(!is_typeref(type));
747         /* The C-standard allows promoting to int or unsigned int (see Â§ 7.2.2
748          * and esp. footnote 108). However we can't fold constants (yet), so we
749          * can't decide wether unsigned int is possible, while int always works.
750          * (unsigned int would be preferable when possible... for stuff like
751          *  struct { enum { ... } bla : 4; } ) */
752         if(type->type == TYPE_ENUM)
753                 return ATOMIC_TYPE_INT;
754
755         assert(type->type == TYPE_ATOMIC);
756         const atomic_type_t *atomic_type = &type->atomic;
757         atomic_type_type_t   atype       = atomic_type->atype;
758         return atype;
759 }
760
761 static type_t *promote_integer(type_t *type)
762 {
763         if(get_rank(type) < ATOMIC_TYPE_INT)
764                 type = type_int;
765
766         return type;
767 }
768
769 static expression_t *create_cast_expression(expression_t *expression,
770                                             type_t *dest_type)
771 {
772         expression_t *cast = allocate_expression_zero(EXPR_UNARY);
773
774         cast->unary.type    = UNEXPR_CAST_IMPLICIT;
775         cast->unary.value   = expression;
776         cast->base.datatype = dest_type;
777
778         return cast;
779 }
780
781 static bool is_null_pointer_constant(const expression_t *expression)
782 {
783         /* skip void* cast */
784         if(expression->type == EXPR_UNARY) {
785                 const unary_expression_t *unary = &expression->unary;
786                 if(unary->type == UNEXPR_CAST
787                                 && expression->base.datatype == type_void_ptr) {
788                         expression = unary->value;
789                 }
790         }
791
792         /* TODO: not correct yet, should be any constant integer expression
793          * which evaluates to 0 */
794         if (expression->type != EXPR_CONST)
795                 return false;
796
797         type_t *const type = skip_typeref(expression->base.datatype);
798         if (!is_type_integer(type))
799                 return false;
800
801         return expression->conste.v.int_value == 0;
802 }
803
804 static expression_t *create_implicit_cast(expression_t *expression,
805                                           type_t *dest_type)
806 {
807         type_t *source_type = expression->base.datatype;
808
809         if(source_type == NULL)
810                 return expression;
811
812         source_type = skip_typeref(source_type);
813         dest_type   = skip_typeref(dest_type);
814
815         if(source_type == dest_type)
816                 return expression;
817
818         switch (dest_type->type) {
819                 case TYPE_ENUM:
820                         /* TODO warning for implicitly converting to enum */
821                 case TYPE_ATOMIC:
822                         if (source_type->type != TYPE_ATOMIC &&
823                                         source_type->type != TYPE_ENUM) {
824                                 panic("casting of non-atomic types not implemented yet");
825                         }
826
827                         if(is_type_floating(dest_type) && !is_type_scalar(source_type)) {
828                                 type_error_incompatible("can't cast types",
829                                                 expression->base.source_position, source_type,
830                                                 dest_type);
831                                 return expression;
832                         }
833
834                         return create_cast_expression(expression, dest_type);
835
836                 case TYPE_POINTER:
837                         switch (source_type->type) {
838                                 case TYPE_ATOMIC:
839                                         if (is_null_pointer_constant(expression)) {
840                                                 return create_cast_expression(expression, dest_type);
841                                         }
842                                         break;
843
844                                 case TYPE_POINTER:
845                                         if (pointers_compatible(source_type, dest_type)) {
846                                                 return create_cast_expression(expression, dest_type);
847                                         }
848                                         break;
849
850                                 case TYPE_ARRAY: {
851                                         array_type_t   *array_type   = &source_type->array;
852                                         pointer_type_t *pointer_type = &dest_type->pointer;
853                                         if (types_compatible(array_type->element_type,
854                                                                                  pointer_type->points_to)) {
855                                                 return create_cast_expression(expression, dest_type);
856                                         }
857                                         break;
858                                 }
859
860                                 default:
861                                         panic("casting of non-atomic types not implemented yet");
862                         }
863
864                         type_error_incompatible("can't implicitly cast types",
865                                         expression->base.source_position, source_type, dest_type);
866                         return expression;
867
868                 default:
869                         panic("casting of non-atomic types not implemented yet");
870         }
871 }
872
873 /** Implements the rules from Â§ 6.5.16.1 */
874 static void semantic_assign(type_t *orig_type_left, expression_t **right,
875                             const char *context)
876 {
877         type_t *orig_type_right = (*right)->base.datatype;
878
879         if(orig_type_right == NULL)
880                 return;
881
882         type_t *const type_left  = skip_typeref(orig_type_left);
883         type_t *const type_right = skip_typeref(orig_type_right);
884
885         if ((is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) ||
886             (is_type_pointer(type_left) && is_null_pointer_constant(*right)) ||
887             (is_type_atomic(type_left, ATOMIC_TYPE_BOOL)
888                 && is_type_pointer(type_right))) {
889                 *right = create_implicit_cast(*right, type_left);
890                 return;
891         }
892
893         if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
894                 pointer_type_t *pointer_type_left  = &type_left->pointer;
895                 pointer_type_t *pointer_type_right = &type_right->pointer;
896                 type_t         *points_to_left     = pointer_type_left->points_to;
897                 type_t         *points_to_right    = pointer_type_right->points_to;
898
899                 points_to_left  = skip_typeref(points_to_left);
900                 points_to_right = skip_typeref(points_to_right);
901
902                 /* the left type has all qualifiers from the right type */
903                 unsigned missing_qualifiers
904                         = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
905                 if(missing_qualifiers != 0) {
906                         parser_print_error_prefix();
907                         fprintf(stderr, "destination type ");
908                         print_type_quoted(type_left);
909                         fprintf(stderr, " in %s from type ", context);
910                         print_type_quoted(type_right);
911                         fprintf(stderr, " lacks qualifiers '");
912                         print_type_qualifiers(missing_qualifiers);
913                         fprintf(stderr, "' in pointed-to type\n");
914                         return;
915                 }
916
917                 points_to_left  = get_unqualified_type(points_to_left);
918                 points_to_right = get_unqualified_type(points_to_right);
919
920                 if(!is_type_atomic(points_to_left, ATOMIC_TYPE_VOID)
921                                 && !is_type_atomic(points_to_right, ATOMIC_TYPE_VOID)
922                                 && !types_compatible(points_to_left, points_to_right)) {
923                         goto incompatible_assign_types;
924                 }
925
926                 *right = create_implicit_cast(*right, type_left);
927                 return;
928         }
929
930         if (is_type_compound(type_left)
931                         && types_compatible(type_left, type_right)) {
932                 *right = create_implicit_cast(*right, type_left);
933                 return;
934         }
935
936 incompatible_assign_types:
937         /* TODO: improve error message */
938         parser_print_error_prefix();
939         fprintf(stderr, "incompatible types in %s\n", context);
940         parser_print_error_prefix();
941         print_type_quoted(orig_type_left);
942         fputs(" <- ", stderr);
943         print_type_quoted(orig_type_right);
944         fputs("\n", stderr);
945 }
946
947 static expression_t *parse_constant_expression(void)
948 {
949         /* start parsing at precedence 7 (conditional expression) */
950         return parse_sub_expression(7);
951 }
952
953 static expression_t *parse_assignment_expression(void)
954 {
955         /* start parsing at precedence 2 (assignment expression) */
956         return parse_sub_expression(2);
957 }
958
959 static type_t *make_global_typedef(const char *name, type_t *type)
960 {
961         symbol_t *symbol       = symbol_table_insert(name);
962
963         declaration_t *declaration   = allocate_ast_zero(sizeof(declaration[0]));
964         declaration->namespc         = NAMESPACE_NORMAL;
965         declaration->storage_class   = STORAGE_CLASS_TYPEDEF;
966         declaration->type            = type;
967         declaration->symbol          = symbol;
968         declaration->source_position = builtin_source_position;
969
970         record_declaration(declaration);
971
972         type_t *typedef_type               = allocate_type_zero(TYPE_TYPEDEF);
973         typedef_type->typedeft.declaration = declaration;
974
975         return typedef_type;
976 }
977
978 static const char *parse_string_literals(void)
979 {
980         assert(token.type == T_STRING_LITERAL);
981         const char *result = token.v.string;
982
983         next_token();
984
985         while(token.type == T_STRING_LITERAL) {
986                 result = concat_strings(result, token.v.string);
987                 next_token();
988         }
989
990         return result;
991 }
992
993 static void parse_attributes(void)
994 {
995         while(true) {
996                 switch(token.type) {
997                 case T___attribute__: {
998                         next_token();
999
1000                         expect_void('(');
1001                         int depth = 1;
1002                         while(depth > 0) {
1003                                 switch(token.type) {
1004                                 case T_EOF:
1005                                         parse_error("EOF while parsing attribute");
1006                                         break;
1007                                 case '(':
1008                                         next_token();
1009                                         depth++;
1010                                         break;
1011                                 case ')':
1012                                         next_token();
1013                                         depth--;
1014                                         break;
1015                                 default:
1016                                         next_token();
1017                                 }
1018                         }
1019                         break;
1020                 }
1021                 case T_asm:
1022                         next_token();
1023                         expect_void('(');
1024                         if(token.type != T_STRING_LITERAL) {
1025                                 parse_error_expected("while parsing assembler attribute",
1026                                                      T_STRING_LITERAL);
1027                                 eat_paren();
1028                                 break;
1029                         } else {
1030                                 parse_string_literals();
1031                         }
1032                         expect_void(')');
1033                         break;
1034                 default:
1035                         goto attributes_finished;
1036                 }
1037         }
1038
1039 attributes_finished:
1040         ;
1041 }
1042
1043 #if 0
1044 static designator_t *parse_designation(void)
1045 {
1046         if(token.type != '[' && token.type != '.')
1047                 return NULL;
1048
1049         designator_t *result = NULL;
1050         designator_t *last   = NULL;
1051
1052         while(1) {
1053                 designator_t *designator;
1054                 switch(token.type) {
1055                 case '[':
1056                         designator = allocate_ast_zero(sizeof(designator[0]));
1057                         next_token();
1058                         designator->array_access = parse_constant_expression();
1059                         expect(']');
1060                         break;
1061                 case '.':
1062                         designator = allocate_ast_zero(sizeof(designator[0]));
1063                         next_token();
1064                         if(token.type != T_IDENTIFIER) {
1065                                 parse_error_expected("while parsing designator",
1066                                                      T_IDENTIFIER, 0);
1067                                 return NULL;
1068                         }
1069                         designator->symbol = token.v.symbol;
1070                         next_token();
1071                         break;
1072                 default:
1073                         expect('=');
1074                         return result;
1075                 }
1076
1077                 assert(designator != NULL);
1078                 if(last != NULL) {
1079                         last->next = designator;
1080                 } else {
1081                         result = designator;
1082                 }
1083                 last = designator;
1084         }
1085 }
1086 #endif
1087
1088 static initializer_t *initializer_from_string(array_type_t *type,
1089                                               const char *string)
1090 {
1091         /* TODO: check len vs. size of array type */
1092         (void) type;
1093
1094         initializer_t *initializer = allocate_initializer(INITIALIZER_STRING);
1095         initializer->string.string = string;
1096
1097         return initializer;
1098 }
1099
1100 static initializer_t *initializer_from_wide_string(array_type_t *const type,
1101                                                    wide_string_t *const string)
1102 {
1103         /* TODO: check len vs. size of array type */
1104         (void) type;
1105
1106         initializer_t *const initializer =
1107                 allocate_initializer(INITIALIZER_WIDE_STRING);
1108         initializer->wide_string.string = *string;
1109
1110         return initializer;
1111 }
1112
1113 static initializer_t *initializer_from_expression(type_t *type,
1114                                                   expression_t *expression)
1115 {
1116         /* TODO check that expression is a constant expression */
1117
1118         /* Â§ 6.7.8.14/15 char array may be initialized by string literals */
1119         type_t *const expr_type = expression->base.datatype;
1120         if (is_type_array(type) && expr_type->type == TYPE_POINTER) {
1121                 array_type_t *const array_type     = &type->array;
1122                 type_t       *const element_type   = skip_typeref(array_type->element_type);
1123
1124                 if (element_type->type == TYPE_ATOMIC) {
1125                         switch (expression->type) {
1126                                 case EXPR_STRING_LITERAL:
1127                                         if (element_type->atomic.atype == ATOMIC_TYPE_CHAR) {
1128                                                 return initializer_from_string(array_type,
1129                                                         expression->string.value);
1130                                         }
1131
1132                                 case EXPR_WIDE_STRING_LITERAL:
1133                                         if (get_unqualified_type(element_type) == skip_typeref(type_wchar_t)) {
1134                                                 return initializer_from_wide_string(array_type,
1135                                                         &expression->wide_string.value);
1136                                         }
1137
1138                                 default: break;
1139                         }
1140                 }
1141         }
1142
1143         type_t *expression_type = skip_typeref(expression->base.datatype);
1144         if(is_type_scalar(type) || types_compatible(type, expression_type)) {
1145                 semantic_assign(type, &expression, "initializer");
1146
1147                 initializer_t *result = allocate_initializer(INITIALIZER_VALUE);
1148                 result->value.value   = expression;
1149
1150                 return result;
1151         }
1152
1153         return NULL;
1154 }
1155
1156 static initializer_t *parse_sub_initializer(type_t *type,
1157                                             expression_t *expression,
1158                                             type_t *expression_type);
1159
1160 static initializer_t *parse_sub_initializer_elem(type_t *type)
1161 {
1162         if(token.type == '{') {
1163                 return parse_sub_initializer(type, NULL, NULL);
1164         }
1165
1166         expression_t *expression      = parse_assignment_expression();
1167         type_t       *expression_type = skip_typeref(expression->base.datatype);
1168
1169         return parse_sub_initializer(type, expression, expression_type);
1170 }
1171
1172 static bool had_initializer_brace_warning;
1173
1174 static initializer_t *parse_sub_initializer(type_t *type,
1175                                             expression_t *expression,
1176                                             type_t *expression_type)
1177 {
1178         if(is_type_scalar(type)) {
1179                 /* there might be extra {} hierarchies */
1180                 if(token.type == '{') {
1181                         next_token();
1182                         if(!had_initializer_brace_warning) {
1183                                 parse_warning("braces around scalar initializer");
1184                                 had_initializer_brace_warning = true;
1185                         }
1186                         initializer_t *result = parse_sub_initializer(type, NULL, NULL);
1187                         if(token.type == ',') {
1188                                 next_token();
1189                                 /* TODO: warn about excessive elements */
1190                         }
1191                         expect_block('}');
1192                         return result;
1193                 }
1194
1195                 if(expression == NULL) {
1196                         expression = parse_assignment_expression();
1197                 }
1198                 return initializer_from_expression(type, expression);
1199         }
1200
1201         /* does the expression match the currently looked at object to initalize */
1202         if(expression != NULL) {
1203                 initializer_t *result = initializer_from_expression(type, expression);
1204                 if(result != NULL)
1205                         return result;
1206         }
1207
1208         bool read_paren = false;
1209         if(token.type == '{') {
1210                 next_token();
1211                 read_paren = true;
1212         }
1213
1214         /* descend into subtype */
1215         initializer_t  *result = NULL;
1216         initializer_t **elems;
1217         if(is_type_array(type)) {
1218                 array_type_t *array_type   = &type->array;
1219                 type_t       *element_type = array_type->element_type;
1220                 element_type               = skip_typeref(element_type);
1221
1222                 initializer_t *sub;
1223                 had_initializer_brace_warning = false;
1224                 if(expression == NULL) {
1225                         sub = parse_sub_initializer_elem(element_type);
1226                 } else {
1227                         sub = parse_sub_initializer(element_type, expression,
1228                                                     expression_type);
1229                 }
1230
1231                 /* didn't match the subtypes -> try the parent type */
1232                 if(sub == NULL) {
1233                         assert(!read_paren);
1234                         return NULL;
1235                 }
1236
1237                 elems = NEW_ARR_F(initializer_t*, 0);
1238                 ARR_APP1(initializer_t*, elems, sub);
1239
1240                 while(true) {
1241                         if(token.type == '}')
1242                                 break;
1243                         expect_block(',');
1244                         if(token.type == '}')
1245                                 break;
1246
1247                         sub = parse_sub_initializer_elem(element_type);
1248                         if(sub == NULL) {
1249                                 /* TODO error, do nicer cleanup */
1250                                 parse_error("member initializer didn't match");
1251                                 DEL_ARR_F(elems);
1252                                 return NULL;
1253                         }
1254                         ARR_APP1(initializer_t*, elems, sub);
1255                 }
1256         } else {
1257                 assert(is_type_compound(type));
1258                 compound_type_t *compound_type = &type->compound;
1259                 context_t       *context       = &compound_type->declaration->context;
1260
1261                 declaration_t *first = context->declarations;
1262                 if(first == NULL)
1263                         return NULL;
1264                 type_t *first_type = first->type;
1265                 first_type         = skip_typeref(first_type);
1266
1267                 initializer_t *sub;
1268                 had_initializer_brace_warning = false;
1269                 if(expression == NULL) {
1270                         sub = parse_sub_initializer_elem(first_type);
1271                 } else {
1272                         sub = parse_sub_initializer(first_type, expression,expression_type);
1273                 }
1274
1275                 /* didn't match the subtypes -> try our parent type */
1276                 if(sub == NULL) {
1277                         assert(!read_paren);
1278                         return NULL;
1279                 }
1280
1281                 elems = NEW_ARR_F(initializer_t*, 0);
1282                 ARR_APP1(initializer_t*, elems, sub);
1283
1284                 declaration_t *iter  = first->next;
1285                 for( ; iter != NULL; iter = iter->next) {
1286                         if(iter->symbol == NULL)
1287                                 continue;
1288                         if(iter->namespc != NAMESPACE_NORMAL)
1289                                 continue;
1290
1291                         if(token.type == '}')
1292                                 break;
1293                         expect_block(',');
1294                         if(token.type == '}')
1295                                 break;
1296
1297                         type_t *iter_type = iter->type;
1298                         iter_type         = skip_typeref(iter_type);
1299
1300                         sub = parse_sub_initializer_elem(iter_type);
1301                         if(sub == NULL) {
1302                                 /* TODO error, do nicer cleanup*/
1303                                 parse_error("member initializer didn't match");
1304                                 DEL_ARR_F(elems);
1305                                 return NULL;
1306                         }
1307                         ARR_APP1(initializer_t*, elems, sub);
1308                 }
1309         }
1310
1311         int    len        = ARR_LEN(elems);
1312         size_t elems_size = sizeof(initializer_t*) * len;
1313
1314         initializer_list_t *init = allocate_ast_zero(sizeof(init[0]) + elems_size);
1315
1316         init->initializer.type = INITIALIZER_LIST;
1317         init->len              = len;
1318         memcpy(init->initializers, elems, elems_size);
1319         DEL_ARR_F(elems);
1320
1321         result = (initializer_t*) init;
1322
1323         if(read_paren) {
1324                 if(token.type == ',')
1325                         next_token();
1326                 expect('}');
1327         }
1328         return result;
1329 }
1330
1331 static initializer_t *parse_initializer(type_t *type)
1332 {
1333         initializer_t *result;
1334
1335         type = skip_typeref(type);
1336
1337         if(token.type != '{') {
1338                 expression_t  *expression  = parse_assignment_expression();
1339                 initializer_t *initializer = initializer_from_expression(type, expression);
1340                 if(initializer == NULL) {
1341                         parser_print_error_prefix();
1342                         fprintf(stderr, "initializer expression '");
1343                         print_expression(expression);
1344                         fprintf(stderr, "', type ");
1345                         print_type_quoted(expression->base.datatype);
1346                         fprintf(stderr, " is incompatible with type ");
1347                         print_type_quoted(type);
1348                         fprintf(stderr, "\n");
1349                 }
1350                 return initializer;
1351         }
1352
1353         if(is_type_scalar(type)) {
1354                 /* Â§ 6.7.8.11 */
1355                 eat('{');
1356
1357                 expression_t *expression = parse_assignment_expression();
1358                 result = initializer_from_expression(type, expression);
1359
1360                 if(token.type == ',')
1361                         next_token();
1362
1363                 expect('}');
1364                 return result;
1365         } else {
1366                 result = parse_sub_initializer(type, NULL, NULL);
1367         }
1368
1369         return result;
1370 }
1371
1372
1373
1374 static declaration_t *parse_compound_type_specifier(bool is_struct)
1375 {
1376         if(is_struct) {
1377                 eat(T_struct);
1378         } else {
1379                 eat(T_union);
1380         }
1381
1382         symbol_t      *symbol      = NULL;
1383         declaration_t *declaration = NULL;
1384
1385         if (token.type == T___attribute__) {
1386                 /* TODO */
1387                 parse_attributes();
1388         }
1389
1390         if(token.type == T_IDENTIFIER) {
1391                 symbol = token.v.symbol;
1392                 next_token();
1393
1394                 if(is_struct) {
1395                         declaration = get_declaration(symbol, NAMESPACE_STRUCT);
1396                 } else {
1397                         declaration = get_declaration(symbol, NAMESPACE_UNION);
1398                 }
1399         } else if(token.type != '{') {
1400                 if(is_struct) {
1401                         parse_error_expected("while parsing struct type specifier",
1402                                              T_IDENTIFIER, '{', 0);
1403                 } else {
1404                         parse_error_expected("while parsing union type specifier",
1405                                              T_IDENTIFIER, '{', 0);
1406                 }
1407
1408                 return NULL;
1409         }
1410
1411         if(declaration == NULL) {
1412                 declaration = allocate_ast_zero(sizeof(declaration[0]));
1413
1414                 if(is_struct) {
1415                         declaration->namespc = NAMESPACE_STRUCT;
1416                 } else {
1417                         declaration->namespc = NAMESPACE_UNION;
1418                 }
1419                 declaration->source_position = token.source_position;
1420                 declaration->symbol          = symbol;
1421                 record_declaration(declaration);
1422         }
1423
1424         if(token.type == '{') {
1425                 if(declaration->init.is_defined) {
1426                         assert(symbol != NULL);
1427                         parser_print_error_prefix();
1428                         fprintf(stderr, "multiple definition of %s %s\n",
1429                                         is_struct ? "struct" : "union", symbol->string);
1430                         declaration->context.declarations = NULL;
1431                 }
1432                 declaration->init.is_defined = true;
1433
1434                 int         top          = environment_top();
1435                 context_t  *last_context = context;
1436                 set_context(&declaration->context);
1437
1438                 parse_compound_type_entries();
1439                 parse_attributes();
1440
1441                 assert(context == &declaration->context);
1442                 set_context(last_context);
1443                 environment_pop_to(top);
1444         }
1445
1446         return declaration;
1447 }
1448
1449 static void parse_enum_entries(enum_type_t *const enum_type)
1450 {
1451         eat('{');
1452
1453         if(token.type == '}') {
1454                 next_token();
1455                 parse_error("empty enum not allowed");
1456                 return;
1457         }
1458
1459         do {
1460                 declaration_t *entry = allocate_ast_zero(sizeof(entry[0]));
1461
1462                 if(token.type != T_IDENTIFIER) {
1463                         parse_error_expected("while parsing enum entry", T_IDENTIFIER, 0);
1464                         eat_block();
1465                         return;
1466                 }
1467                 entry->storage_class   = STORAGE_CLASS_ENUM_ENTRY;
1468                 entry->type            = (type_t*) enum_type;
1469                 entry->symbol          = token.v.symbol;
1470                 entry->source_position = token.source_position;
1471                 next_token();
1472
1473                 if(token.type == '=') {
1474                         next_token();
1475                         entry->init.enum_value = parse_constant_expression();
1476
1477                         /* TODO semantic */
1478                 }
1479
1480                 record_declaration(entry);
1481
1482                 if(token.type != ',')
1483                         break;
1484                 next_token();
1485         } while(token.type != '}');
1486
1487         expect_void('}');
1488 }
1489
1490 static type_t *parse_enum_specifier(void)
1491 {
1492         eat(T_enum);
1493
1494         declaration_t *declaration;
1495         symbol_t      *symbol;
1496
1497         if(token.type == T_IDENTIFIER) {
1498                 symbol = token.v.symbol;
1499                 next_token();
1500
1501                 declaration = get_declaration(symbol, NAMESPACE_ENUM);
1502         } else if(token.type != '{') {
1503                 parse_error_expected("while parsing enum type specifier",
1504                                      T_IDENTIFIER, '{', 0);
1505                 return NULL;
1506         } else {
1507                 declaration = NULL;
1508                 symbol      = NULL;
1509         }
1510
1511         if(declaration == NULL) {
1512                 declaration = allocate_ast_zero(sizeof(declaration[0]));
1513
1514                 declaration->namespc       = NAMESPACE_ENUM;
1515                 declaration->source_position = token.source_position;
1516                 declaration->symbol          = symbol;
1517         }
1518
1519         type_t *const type      = allocate_type_zero(TYPE_ENUM);
1520         type->enumt.declaration = declaration;
1521
1522         if(token.type == '{') {
1523                 if(declaration->init.is_defined) {
1524                         parser_print_error_prefix();
1525                         fprintf(stderr, "multiple definitions of enum %s\n",
1526                                 symbol->string);
1527                 }
1528                 record_declaration(declaration);
1529                 declaration->init.is_defined = 1;
1530
1531                 parse_enum_entries(&type->enumt);
1532                 parse_attributes();
1533         }
1534
1535         return type;
1536 }
1537
1538 /**
1539  * if a symbol is a typedef to another type, return true
1540  */
1541 static bool is_typedef_symbol(symbol_t *symbol)
1542 {
1543         const declaration_t *const declaration =
1544                 get_declaration(symbol, NAMESPACE_NORMAL);
1545         return
1546                 declaration != NULL &&
1547                 declaration->storage_class == STORAGE_CLASS_TYPEDEF;
1548 }
1549
1550 static type_t *parse_typeof(void)
1551 {
1552         eat(T___typeof__);
1553
1554         type_t *type;
1555
1556         expect('(');
1557
1558         expression_t *expression  = NULL;
1559
1560 restart:
1561         switch(token.type) {
1562         case T___extension__:
1563                 /* this can be a prefix to a typename or an expression */
1564                 /* we simply eat it now. */
1565                 do {
1566                         next_token();
1567                 } while(token.type == T___extension__);
1568                 goto restart;
1569
1570         case T_IDENTIFIER:
1571                 if(is_typedef_symbol(token.v.symbol)) {
1572                         type = parse_typename();
1573                 } else {
1574                         expression = parse_expression();
1575                         type       = expression->base.datatype;
1576                 }
1577                 break;
1578
1579         TYPENAME_START
1580                 type = parse_typename();
1581                 break;
1582
1583         default:
1584                 expression = parse_expression();
1585                 type       = expression->base.datatype;
1586                 break;
1587         }
1588
1589         expect(')');
1590
1591         type_t *typeof_type              = allocate_type_zero(TYPE_TYPEOF);
1592         typeof_type->typeoft.expression  = expression;
1593         typeof_type->typeoft.typeof_type = type;
1594
1595         return typeof_type;
1596 }
1597
1598 typedef enum {
1599         SPECIFIER_SIGNED    = 1 << 0,
1600         SPECIFIER_UNSIGNED  = 1 << 1,
1601         SPECIFIER_LONG      = 1 << 2,
1602         SPECIFIER_INT       = 1 << 3,
1603         SPECIFIER_DOUBLE    = 1 << 4,
1604         SPECIFIER_CHAR      = 1 << 5,
1605         SPECIFIER_SHORT     = 1 << 6,
1606         SPECIFIER_LONG_LONG = 1 << 7,
1607         SPECIFIER_FLOAT     = 1 << 8,
1608         SPECIFIER_BOOL      = 1 << 9,
1609         SPECIFIER_VOID      = 1 << 10,
1610 #ifdef PROVIDE_COMPLEX
1611         SPECIFIER_COMPLEX   = 1 << 11,
1612         SPECIFIER_IMAGINARY = 1 << 12,
1613 #endif
1614 } specifiers_t;
1615
1616 static type_t *create_builtin_type(symbol_t *const symbol,
1617                                    type_t *const real_type)
1618 {
1619         type_t *type            = allocate_type_zero(TYPE_BUILTIN);
1620         type->builtin.symbol    = symbol;
1621         type->builtin.real_type = real_type;
1622
1623         type_t *result = typehash_insert(type);
1624         if (type != result) {
1625                 free_type(type);
1626         }
1627
1628         return result;
1629 }
1630
1631 static type_t *get_typedef_type(symbol_t *symbol)
1632 {
1633         declaration_t *declaration = get_declaration(symbol, NAMESPACE_NORMAL);
1634         if(declaration == NULL
1635                         || declaration->storage_class != STORAGE_CLASS_TYPEDEF)
1636                 return NULL;
1637
1638         type_t *type               = allocate_type_zero(TYPE_TYPEDEF);
1639         type->typedeft.declaration = declaration;
1640
1641         return type;
1642 }
1643
1644 static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
1645 {
1646         type_t   *type            = NULL;
1647         unsigned  type_qualifiers = 0;
1648         unsigned  type_specifiers = 0;
1649         int       newtype         = 0;
1650
1651         specifiers->source_position = token.source_position;
1652
1653         while(true) {
1654                 switch(token.type) {
1655
1656                 /* storage class */
1657 #define MATCH_STORAGE_CLASS(token, class)                                \
1658                 case token:                                                      \
1659                         if(specifiers->storage_class != STORAGE_CLASS_NONE) {        \
1660                                 parse_error("multiple storage classes in declaration "   \
1661                                             "specifiers");                               \
1662                         }                                                            \
1663                         specifiers->storage_class = class;                           \
1664                         next_token();                                                \
1665                         break;
1666
1667                 MATCH_STORAGE_CLASS(T_typedef,  STORAGE_CLASS_TYPEDEF)
1668                 MATCH_STORAGE_CLASS(T_extern,   STORAGE_CLASS_EXTERN)
1669                 MATCH_STORAGE_CLASS(T_static,   STORAGE_CLASS_STATIC)
1670                 MATCH_STORAGE_CLASS(T_auto,     STORAGE_CLASS_AUTO)
1671                 MATCH_STORAGE_CLASS(T_register, STORAGE_CLASS_REGISTER)
1672
1673                 case T___thread:
1674                         switch (specifiers->storage_class) {
1675                                 case STORAGE_CLASS_NONE:
1676                                         specifiers->storage_class = STORAGE_CLASS_THREAD;
1677                                         break;
1678
1679                                 case STORAGE_CLASS_EXTERN:
1680                                         specifiers->storage_class = STORAGE_CLASS_THREAD_EXTERN;
1681                                         break;
1682
1683                                 case STORAGE_CLASS_STATIC:
1684                                         specifiers->storage_class = STORAGE_CLASS_THREAD_STATIC;
1685                                         break;
1686
1687                                 default:
1688                                         parse_error("multiple storage classes in declaration specifiers");
1689                                         break;
1690                         }
1691                         next_token();
1692                         break;
1693
1694                 /* type qualifiers */
1695 #define MATCH_TYPE_QUALIFIER(token, qualifier)                          \
1696                 case token:                                                     \
1697                         type_qualifiers |= qualifier;                               \
1698                         next_token();                                               \
1699                         break;
1700
1701                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
1702                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
1703                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
1704
1705                 case T___extension__:
1706                         /* TODO */
1707                         next_token();
1708                         break;
1709
1710                 /* type specifiers */
1711 #define MATCH_SPECIFIER(token, specifier, name)                         \
1712                 case token:                                                     \
1713                         next_token();                                               \
1714                         if(type_specifiers & specifier) {                           \
1715                                 parse_error("multiple " name " type specifiers given"); \
1716                         } else {                                                    \
1717                                 type_specifiers |= specifier;                           \
1718                         }                                                           \
1719                         break;
1720
1721                 MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
1722                 MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
1723                 MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
1724                 MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
1725                 MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
1726                 MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
1727                 MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
1728                 MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
1729                 MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
1730 #ifdef PROVIDE_COMPLEX
1731                 MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
1732                 MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
1733 #endif
1734                 case T_inline:
1735                         next_token();
1736                         specifiers->is_inline = true;
1737                         break;
1738
1739                 case T_long:
1740                         next_token();
1741                         if(type_specifiers & SPECIFIER_LONG_LONG) {
1742                                 parse_error("multiple type specifiers given");
1743                         } else if(type_specifiers & SPECIFIER_LONG) {
1744                                 type_specifiers |= SPECIFIER_LONG_LONG;
1745                         } else {
1746                                 type_specifiers |= SPECIFIER_LONG;
1747                         }
1748                         break;
1749
1750                 /* TODO: if type != NULL for the following rules should issue
1751                  * an error */
1752                 case T_struct: {
1753                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT);
1754
1755                         type->compound.declaration = parse_compound_type_specifier(true);
1756                         break;
1757                 }
1758                 case T_union: {
1759                         type = allocate_type_zero(TYPE_COMPOUND_STRUCT);
1760
1761                         type->compound.declaration = parse_compound_type_specifier(false);
1762                         break;
1763                 }
1764                 case T_enum:
1765                         type = parse_enum_specifier();
1766                         break;
1767                 case T___typeof__:
1768                         type = parse_typeof();
1769                         break;
1770                 case T___builtin_va_list:
1771                         type = duplicate_type(type_valist);
1772                         next_token();
1773                         break;
1774
1775                 case T___attribute__:
1776                         /* TODO */
1777                         parse_attributes();
1778                         break;
1779
1780                 case T_IDENTIFIER: {
1781                         type_t *typedef_type = get_typedef_type(token.v.symbol);
1782
1783                         if(typedef_type == NULL)
1784                                 goto finish_specifiers;
1785
1786                         next_token();
1787                         type = typedef_type;
1788                         break;
1789                 }
1790
1791                 /* function specifier */
1792                 default:
1793                         goto finish_specifiers;
1794                 }
1795         }
1796
1797 finish_specifiers:
1798
1799         if(type == NULL) {
1800                 atomic_type_type_t atomic_type;
1801
1802                 /* match valid basic types */
1803                 switch(type_specifiers) {
1804                 case SPECIFIER_VOID:
1805                         atomic_type = ATOMIC_TYPE_VOID;
1806                         break;
1807                 case SPECIFIER_CHAR:
1808                         atomic_type = ATOMIC_TYPE_CHAR;
1809                         break;
1810                 case SPECIFIER_SIGNED | SPECIFIER_CHAR:
1811                         atomic_type = ATOMIC_TYPE_SCHAR;
1812                         break;
1813                 case SPECIFIER_UNSIGNED | SPECIFIER_CHAR:
1814                         atomic_type = ATOMIC_TYPE_UCHAR;
1815                         break;
1816                 case SPECIFIER_SHORT:
1817                 case SPECIFIER_SIGNED | SPECIFIER_SHORT:
1818                 case SPECIFIER_SHORT | SPECIFIER_INT:
1819                 case SPECIFIER_SIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1820                         atomic_type = ATOMIC_TYPE_SHORT;
1821                         break;
1822                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT:
1823                 case SPECIFIER_UNSIGNED | SPECIFIER_SHORT | SPECIFIER_INT:
1824                         atomic_type = ATOMIC_TYPE_USHORT;
1825                         break;
1826                 case SPECIFIER_INT:
1827                 case SPECIFIER_SIGNED:
1828                 case SPECIFIER_SIGNED | SPECIFIER_INT:
1829                         atomic_type = ATOMIC_TYPE_INT;
1830                         break;
1831                 case SPECIFIER_UNSIGNED:
1832                 case SPECIFIER_UNSIGNED | SPECIFIER_INT:
1833                         atomic_type = ATOMIC_TYPE_UINT;
1834                         break;
1835                 case SPECIFIER_LONG:
1836                 case SPECIFIER_SIGNED | SPECIFIER_LONG:
1837                 case SPECIFIER_LONG | SPECIFIER_INT:
1838                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_INT:
1839                         atomic_type = ATOMIC_TYPE_LONG;
1840                         break;
1841                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG:
1842                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
1843                         atomic_type = ATOMIC_TYPE_ULONG;
1844                         break;
1845                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1846                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1847                 case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
1848                 case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
1849                         | SPECIFIER_INT:
1850                         atomic_type = ATOMIC_TYPE_LONGLONG;
1851                         break;
1852                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
1853                 case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
1854                         | SPECIFIER_INT:
1855                         atomic_type = ATOMIC_TYPE_ULONGLONG;
1856                         break;
1857                 case SPECIFIER_FLOAT:
1858                         atomic_type = ATOMIC_TYPE_FLOAT;
1859                         break;
1860                 case SPECIFIER_DOUBLE:
1861                         atomic_type = ATOMIC_TYPE_DOUBLE;
1862                         break;
1863                 case SPECIFIER_LONG | SPECIFIER_DOUBLE:
1864                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE;
1865                         break;
1866                 case SPECIFIER_BOOL:
1867                         atomic_type = ATOMIC_TYPE_BOOL;
1868                         break;
1869 #ifdef PROVIDE_COMPLEX
1870                 case SPECIFIER_FLOAT | SPECIFIER_COMPLEX:
1871                         atomic_type = ATOMIC_TYPE_FLOAT_COMPLEX;
1872                         break;
1873                 case SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
1874                         atomic_type = ATOMIC_TYPE_DOUBLE_COMPLEX;
1875                         break;
1876                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_COMPLEX:
1877                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_COMPLEX;
1878                         break;
1879                 case SPECIFIER_FLOAT | SPECIFIER_IMAGINARY:
1880                         atomic_type = ATOMIC_TYPE_FLOAT_IMAGINARY;
1881                         break;
1882                 case SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
1883                         atomic_type = ATOMIC_TYPE_DOUBLE_IMAGINARY;
1884                         break;
1885                 case SPECIFIER_LONG | SPECIFIER_DOUBLE | SPECIFIER_IMAGINARY:
1886                         atomic_type = ATOMIC_TYPE_LONG_DOUBLE_IMAGINARY;
1887                         break;
1888 #endif
1889                 default:
1890                         /* invalid specifier combination, give an error message */
1891                         if(type_specifiers == 0) {
1892 #ifndef STRICT_C99
1893                                 parse_warning("no type specifiers in declaration, using int");
1894                                 atomic_type = ATOMIC_TYPE_INT;
1895                                 break;
1896 #else
1897                                 parse_error("no type specifiers given in declaration");
1898 #endif
1899                         } else if((type_specifiers & SPECIFIER_SIGNED) &&
1900                                   (type_specifiers & SPECIFIER_UNSIGNED)) {
1901                                 parse_error("signed and unsigned specifiers gives");
1902                         } else if(type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
1903                                 parse_error("only integer types can be signed or unsigned");
1904                         } else {
1905                                 parse_error("multiple datatypes in declaration");
1906                         }
1907                         atomic_type = ATOMIC_TYPE_INVALID;
1908                 }
1909
1910                 type               = allocate_type_zero(TYPE_ATOMIC);
1911                 type->atomic.atype = atomic_type;
1912                 newtype            = 1;
1913         } else {
1914                 if(type_specifiers != 0) {
1915                         parse_error("multiple datatypes in declaration");
1916                 }
1917         }
1918
1919         type->base.qualifiers = type_qualifiers;
1920
1921         type_t *result = typehash_insert(type);
1922         if(newtype && result != type) {
1923                 free_type(type);
1924         }
1925
1926         specifiers->type = result;
1927 }
1928
1929 static type_qualifiers_t parse_type_qualifiers(void)
1930 {
1931         type_qualifiers_t type_qualifiers = TYPE_QUALIFIER_NONE;
1932
1933         while(true) {
1934                 switch(token.type) {
1935                 /* type qualifiers */
1936                 MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
1937                 MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
1938                 MATCH_TYPE_QUALIFIER(T_volatile, TYPE_QUALIFIER_VOLATILE);
1939
1940                 default:
1941                         return type_qualifiers;
1942                 }
1943         }
1944 }
1945
1946 static declaration_t *parse_identifier_list(void)
1947 {
1948         declaration_t *declarations     = NULL;
1949         declaration_t *last_declaration = NULL;
1950         do {
1951                 declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
1952
1953                 declaration->source_position = token.source_position;
1954                 declaration->symbol          = token.v.symbol;
1955                 next_token();
1956
1957                 if(last_declaration != NULL) {
1958                         last_declaration->next = declaration;
1959                 } else {
1960                         declarations = declaration;
1961                 }
1962                 last_declaration = declaration;
1963
1964                 if(token.type != ',')
1965                         break;
1966                 next_token();
1967         } while(token.type == T_IDENTIFIER);
1968
1969         return declarations;
1970 }
1971
1972 static void semantic_parameter(declaration_t *declaration)
1973 {
1974         /* TODO: improve error messages */
1975
1976         if(declaration->storage_class == STORAGE_CLASS_TYPEDEF) {
1977                 parse_error("typedef not allowed in parameter list");
1978         } else if(declaration->storage_class != STORAGE_CLASS_NONE
1979                         && declaration->storage_class != STORAGE_CLASS_REGISTER) {
1980                 parse_error("parameter may only have none or register storage class");
1981         }
1982
1983         type_t *orig_type = declaration->type;
1984         if(orig_type == NULL)
1985                 return;
1986         type_t *type = skip_typeref(orig_type);
1987
1988         /* Array as last part of a paramter type is just syntactic sugar.  Turn it
1989          * into a pointer. Â§ 6.7.5.3 (7) */
1990         if (is_type_array(type)) {
1991                 const array_type_t *arr_type     = &type->array;
1992                 type_t             *element_type = arr_type->element_type;
1993
1994                 type = make_pointer_type(element_type, type->base.qualifiers);
1995
1996                 declaration->type = type;
1997         }
1998
1999         if(is_type_incomplete(type)) {
2000                 parser_print_error_prefix();
2001                 fprintf(stderr, "incomplete type (");
2002                 print_type_quoted(orig_type);
2003                 fprintf(stderr, ") not allowed for parameter '%s'\n",
2004                         declaration->symbol->string);
2005         }
2006 }
2007
2008 static declaration_t *parse_parameter(void)
2009 {
2010         declaration_specifiers_t specifiers;
2011         memset(&specifiers, 0, sizeof(specifiers));
2012
2013         parse_declaration_specifiers(&specifiers);
2014
2015         declaration_t *declaration = parse_declarator(&specifiers, true);
2016
2017         semantic_parameter(declaration);
2018
2019         return declaration;
2020 }
2021
2022 static declaration_t *parse_parameters(function_type_t *type)
2023 {
2024         if(token.type == T_IDENTIFIER) {
2025                 symbol_t *symbol = token.v.symbol;
2026                 if(!is_typedef_symbol(symbol)) {
2027                         type->kr_style_parameters = true;
2028                         return parse_identifier_list();
2029                 }
2030         }
2031
2032         if(token.type == ')') {
2033                 type->unspecified_parameters = 1;
2034                 return NULL;
2035         }
2036         if(token.type == T_void && look_ahead(1)->type == ')') {
2037                 next_token();
2038                 return NULL;
2039         }
2040
2041         declaration_t        *declarations = NULL;
2042         declaration_t        *declaration;
2043         declaration_t        *last_declaration = NULL;
2044         function_parameter_t *parameter;
2045         function_parameter_t *last_parameter = NULL;
2046
2047         while(true) {
2048                 switch(token.type) {
2049                 case T_DOTDOTDOT:
2050                         next_token();
2051                         type->variadic = 1;
2052                         return declarations;
2053
2054                 case T_IDENTIFIER:
2055                 case T___extension__:
2056                 DECLARATION_START
2057                         declaration = parse_parameter();
2058
2059                         parameter       = obstack_alloc(type_obst, sizeof(parameter[0]));
2060                         memset(parameter, 0, sizeof(parameter[0]));
2061                         parameter->type = declaration->type;
2062
2063                         if(last_parameter != NULL) {
2064                                 last_declaration->next = declaration;
2065                                 last_parameter->next   = parameter;
2066                         } else {
2067                                 type->parameters = parameter;
2068                                 declarations     = declaration;
2069                         }
2070                         last_parameter   = parameter;
2071                         last_declaration = declaration;
2072                         break;
2073
2074                 default:
2075                         return declarations;
2076                 }
2077                 if(token.type != ',')
2078                         return declarations;
2079                 next_token();
2080         }
2081 }
2082
2083 typedef enum {
2084         CONSTRUCT_INVALID,
2085         CONSTRUCT_POINTER,
2086         CONSTRUCT_FUNCTION,
2087         CONSTRUCT_ARRAY
2088 } construct_type_type_t;
2089
2090 typedef struct construct_type_t construct_type_t;
2091 struct construct_type_t {
2092         construct_type_type_t  type;
2093         construct_type_t      *next;
2094 };
2095
2096 typedef struct parsed_pointer_t parsed_pointer_t;
2097 struct parsed_pointer_t {
2098         construct_type_t  construct_type;
2099         type_qualifiers_t type_qualifiers;
2100 };
2101
2102 typedef struct construct_function_type_t construct_function_type_t;
2103 struct construct_function_type_t {
2104         construct_type_t  construct_type;
2105         type_t           *function_type;
2106 };
2107
2108 typedef struct parsed_array_t parsed_array_t;
2109 struct parsed_array_t {
2110         construct_type_t  construct_type;
2111         type_qualifiers_t type_qualifiers;
2112         bool              is_static;
2113         bool              is_variable;
2114         expression_t     *size;
2115 };
2116
2117 typedef struct construct_base_type_t construct_base_type_t;
2118 struct construct_base_type_t {
2119         construct_type_t  construct_type;
2120         type_t           *type;
2121 };
2122
2123 static construct_type_t *parse_pointer_declarator(void)
2124 {
2125         eat('*');
2126
2127         parsed_pointer_t *pointer = obstack_alloc(&temp_obst, sizeof(pointer[0]));
2128         memset(pointer, 0, sizeof(pointer[0]));
2129         pointer->construct_type.type = CONSTRUCT_POINTER;
2130         pointer->type_qualifiers     = parse_type_qualifiers();
2131
2132         return (construct_type_t*) pointer;
2133 }
2134
2135 static construct_type_t *parse_array_declarator(void)
2136 {
2137         eat('[');
2138
2139         parsed_array_t *array = obstack_alloc(&temp_obst, sizeof(array[0]));
2140         memset(array, 0, sizeof(array[0]));
2141         array->construct_type.type = CONSTRUCT_ARRAY;
2142
2143         if(token.type == T_static) {
2144                 array->is_static = true;
2145                 next_token();
2146         }
2147
2148         type_qualifiers_t type_qualifiers = parse_type_qualifiers();
2149         if(type_qualifiers != 0) {
2150                 if(token.type == T_static) {
2151                         array->is_static = true;
2152                         next_token();
2153                 }
2154         }
2155         array->type_qualifiers = type_qualifiers;
2156
2157         if(token.type == '*' && look_ahead(1)->type == ']') {
2158                 array->is_variable = true;
2159                 next_token();
2160         } else if(token.type != ']') {
2161                 array->size = parse_assignment_expression();
2162         }
2163
2164         expect(']');
2165
2166         return (construct_type_t*) array;
2167 }
2168
2169 static construct_type_t *parse_function_declarator(declaration_t *declaration)
2170 {
2171         eat('(');
2172
2173         type_t *type = allocate_type_zero(TYPE_FUNCTION);
2174
2175         declaration_t *parameters = parse_parameters(&type->function);
2176         if(declaration != NULL) {
2177                 declaration->context.declarations = parameters;
2178         }
2179
2180         construct_function_type_t *construct_function_type =
2181                 obstack_alloc(&temp_obst, sizeof(construct_function_type[0]));
2182         memset(construct_function_type, 0, sizeof(construct_function_type[0]));
2183         construct_function_type->construct_type.type = CONSTRUCT_FUNCTION;
2184         construct_function_type->function_type       = type;
2185
2186         expect(')');
2187
2188         return (construct_type_t*) construct_function_type;
2189 }
2190
2191 static construct_type_t *parse_inner_declarator(declaration_t *declaration,
2192                 bool may_be_abstract)
2193 {
2194         /* construct a single linked list of construct_type_t's which describe
2195          * how to construct the final declarator type */
2196         construct_type_t *first = NULL;
2197         construct_type_t *last  = NULL;
2198
2199         /* pointers */
2200         while(token.type == '*') {
2201                 construct_type_t *type = parse_pointer_declarator();
2202
2203                 if(last == NULL) {
2204                         first = type;
2205                         last  = type;
2206                 } else {
2207                         last->next = type;
2208                         last       = type;
2209                 }
2210         }
2211
2212         /* TODO: find out if this is correct */
2213         parse_attributes();
2214
2215         construct_type_t *inner_types = NULL;
2216
2217         switch(token.type) {
2218         case T_IDENTIFIER:
2219                 if(declaration == NULL) {
2220                         parse_error("no identifier expected in typename");
2221                 } else {
2222                         declaration->symbol          = token.v.symbol;
2223                         declaration->source_position = token.source_position;
2224                 }
2225                 next_token();
2226                 break;
2227         case '(':
2228                 next_token();
2229                 inner_types = parse_inner_declarator(declaration, may_be_abstract);
2230                 expect(')');
2231                 break;
2232         default:
2233                 if(may_be_abstract)
2234                         break;
2235                 parse_error_expected("while parsing declarator", T_IDENTIFIER, '(', 0);
2236                 /* avoid a loop in the outermost scope, because eat_statement doesn't
2237                  * eat '}' */
2238                 if(token.type == '}' && current_function == NULL) {
2239                         next_token();
2240                 } else {
2241                         eat_statement();
2242                 }
2243                 return NULL;
2244         }
2245
2246         construct_type_t *p = last;
2247
2248         while(true) {
2249                 construct_type_t *type;
2250                 switch(token.type) {
2251                 case '(':
2252                         type = parse_function_declarator(declaration);
2253                         break;
2254                 case '[':
2255                         type = parse_array_declarator();
2256                         break;
2257                 default:
2258                         goto declarator_finished;
2259                 }
2260
2261                 /* insert in the middle of the list (behind p) */
2262                 if(p != NULL) {
2263                         type->next = p->next;
2264                         p->next    = type;
2265                 } else {
2266                         type->next = first;
2267                         first      = type;
2268                 }
2269                 if(last == p) {
2270                         last = type;
2271                 }
2272         }
2273
2274 declarator_finished:
2275         parse_attributes();
2276
2277         /* append inner_types at the end of the list, we don't to set last anymore
2278          * as it's not needed anymore */
2279         if(last == NULL) {
2280                 assert(first == NULL);
2281                 first = inner_types;
2282         } else {
2283                 last->next = inner_types;
2284         }
2285
2286         return first;
2287 }
2288
2289 static type_t *construct_declarator_type(construct_type_t *construct_list,
2290                                          type_t *type)
2291 {
2292         construct_type_t *iter = construct_list;
2293         for( ; iter != NULL; iter = iter->next) {
2294                 switch(iter->type) {
2295                 case CONSTRUCT_INVALID:
2296                         panic("invalid type construction found");
2297                 case CONSTRUCT_FUNCTION: {
2298                         construct_function_type_t *construct_function_type
2299                                 = (construct_function_type_t*) iter;
2300
2301                         type_t *function_type = construct_function_type->function_type;
2302
2303                         function_type->function.return_type = type;
2304
2305                         type = function_type;
2306                         break;
2307                 }
2308
2309                 case CONSTRUCT_POINTER: {
2310                         parsed_pointer_t *parsed_pointer = (parsed_pointer_t*) iter;
2311                         type_t           *pointer_type   = allocate_type_zero(TYPE_POINTER);
2312                         pointer_type->pointer.points_to  = type;
2313                         pointer_type->base.qualifiers    = parsed_pointer->type_qualifiers;
2314
2315                         type = pointer_type;
2316                         break;
2317                 }
2318
2319                 case CONSTRUCT_ARRAY: {
2320                         parsed_array_t *parsed_array  = (parsed_array_t*) iter;
2321                         type_t         *array_type    = allocate_type_zero(TYPE_ARRAY);
2322
2323                         array_type->base.qualifiers    = parsed_array->type_qualifiers;
2324                         array_type->array.element_type = type;
2325                         array_type->array.is_static    = parsed_array->is_static;
2326                         array_type->array.is_variable  = parsed_array->is_variable;
2327                         array_type->array.size         = parsed_array->size;
2328
2329                         type = array_type;
2330                         break;
2331                 }
2332                 }
2333
2334                 type_t *hashed_type = typehash_insert(type);
2335                 if(hashed_type != type) {
2336                         /* the function type was constructed earlier freeing it here will
2337                          * destroy other types... */
2338                         if(iter->type != CONSTRUCT_FUNCTION) {
2339                                 free_type(type);
2340                         }
2341                         type = hashed_type;
2342                 }
2343         }
2344
2345         return type;
2346 }
2347
2348 static declaration_t *parse_declarator(
2349                 const declaration_specifiers_t *specifiers, bool may_be_abstract)
2350 {
2351         type_t        *type        = specifiers->type;
2352         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2353         declaration->storage_class = specifiers->storage_class;
2354         declaration->is_inline     = specifiers->is_inline;
2355
2356         construct_type_t *construct_type
2357                 = parse_inner_declarator(declaration, may_be_abstract);
2358         declaration->type = construct_declarator_type(construct_type, type);
2359
2360         if(construct_type != NULL) {
2361                 obstack_free(&temp_obst, construct_type);
2362         }
2363
2364         return declaration;
2365 }
2366
2367 static type_t *parse_abstract_declarator(type_t *base_type)
2368 {
2369         construct_type_t *construct_type = parse_inner_declarator(NULL, 1);
2370
2371         type_t *result = construct_declarator_type(construct_type, base_type);
2372         if(construct_type != NULL) {
2373                 obstack_free(&temp_obst, construct_type);
2374         }
2375
2376         return result;
2377 }
2378
2379 static declaration_t *record_declaration(declaration_t *declaration)
2380 {
2381         assert(declaration->parent_context == NULL);
2382         assert(context != NULL);
2383
2384         symbol_t *symbol = declaration->symbol;
2385         if(symbol != NULL) {
2386                 declaration_t *alias = environment_push(declaration);
2387                 if(alias != declaration)
2388                         return alias;
2389         } else {
2390                 declaration->parent_context = context;
2391         }
2392
2393         if(last_declaration != NULL) {
2394                 last_declaration->next = declaration;
2395         } else {
2396                 context->declarations = declaration;
2397         }
2398         last_declaration = declaration;
2399
2400         return declaration;
2401 }
2402
2403 static void parser_error_multiple_definition(declaration_t *declaration,
2404                 const source_position_t source_position)
2405 {
2406         parser_print_error_prefix_pos(source_position);
2407         fprintf(stderr, "multiple definition of symbol '%s'\n",
2408                 declaration->symbol->string);
2409         parser_print_error_prefix_pos(declaration->source_position);
2410         fprintf(stderr, "this is the location of the previous definition.\n");
2411 }
2412
2413 static bool is_declaration_specifier(const token_t *token,
2414                                      bool only_type_specifiers)
2415 {
2416         switch(token->type) {
2417                 TYPE_SPECIFIERS
2418                         return true;
2419                 case T_IDENTIFIER:
2420                         return is_typedef_symbol(token->v.symbol);
2421
2422                 case T___extension__:
2423                 STORAGE_CLASSES
2424                 TYPE_QUALIFIERS
2425                         return !only_type_specifiers;
2426
2427                 default:
2428                         return false;
2429         }
2430 }
2431
2432 static void parse_init_declarator_rest(declaration_t *declaration)
2433 {
2434         eat('=');
2435
2436         type_t *orig_type = declaration->type;
2437         type_t *type      = NULL;
2438         if(orig_type != NULL)
2439                 type = skip_typeref(orig_type);
2440
2441         if(declaration->init.initializer != NULL) {
2442                 parser_error_multiple_definition(declaration, token.source_position);
2443         }
2444
2445         initializer_t *initializer = parse_initializer(type);
2446
2447         /* Â§ 6.7.5 (22)  array intializers for arrays with unknown size determine
2448          * the array type size */
2449         if(type != NULL && is_type_array(type) && initializer != NULL) {
2450                 array_type_t *array_type = &type->array;
2451
2452                 if(array_type->size == NULL) {
2453                         expression_t *cnst = allocate_expression_zero(EXPR_CONST);
2454
2455                         cnst->base.datatype = type_size_t;
2456
2457                         switch (initializer->type) {
2458                                 case INITIALIZER_LIST: {
2459                                         initializer_list_t *const list = &initializer->list;
2460                                         cnst->conste.v.int_value = list->len;
2461                                         break;
2462                                 }
2463
2464                                 case INITIALIZER_STRING: {
2465                                         initializer_string_t *const string = &initializer->string;
2466                                         cnst->conste.v.int_value = strlen(string->string) + 1;
2467                                         break;
2468                                 }
2469
2470                                 case INITIALIZER_WIDE_STRING: {
2471                                         initializer_wide_string_t *const string = &initializer->wide_string;
2472                                         cnst->conste.v.int_value = string->string.size;
2473                                         break;
2474                                 }
2475
2476                                 default:
2477                                         panic("invalid initializer type");
2478                         }
2479
2480                         array_type->size = cnst;
2481                 }
2482         }
2483
2484         if(type != NULL && is_type_function(type)) {
2485                 parser_print_error_prefix_pos(declaration->source_position);
2486                 fprintf(stderr, "initializers not allowed for function types at "
2487                                 "declator '%s' (type ", declaration->symbol->string);
2488                 print_type_quoted(orig_type);
2489                 fprintf(stderr, ")\n");
2490         } else {
2491                 declaration->init.initializer = initializer;
2492         }
2493 }
2494
2495 /* parse rest of a declaration without any declarator */
2496 static void parse_anonymous_declaration_rest(
2497                 const declaration_specifiers_t *specifiers,
2498                 parsed_declaration_func finished_declaration)
2499 {
2500         eat(';');
2501
2502         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2503
2504         declaration->type            = specifiers->type;
2505         declaration->storage_class   = specifiers->storage_class;
2506         declaration->source_position = specifiers->source_position;
2507
2508         if (declaration->storage_class != STORAGE_CLASS_NONE) {
2509                 parse_warning_pos(declaration->source_position,
2510                                 "useless storage class in empty declaration");
2511         }
2512
2513         type_t *type = declaration->type;
2514         switch (type->type) {
2515                 case TYPE_COMPOUND_STRUCT:
2516                 case TYPE_COMPOUND_UNION: {
2517                         const compound_type_t *compound_type = &type->compound;
2518                         if (compound_type->declaration->symbol == NULL) {
2519                                 parse_warning_pos(declaration->source_position,
2520                                                 "unnamed struct/union that defines no instances");
2521                         }
2522                         break;
2523                 }
2524
2525                 case TYPE_ENUM:
2526                         break;
2527
2528                 default:
2529                         parse_warning_pos(declaration->source_position,
2530                                           "empty declaration");
2531                         break;
2532         }
2533
2534         finished_declaration(declaration);
2535 }
2536
2537 static void parse_declaration_rest(declaration_t *ndeclaration,
2538                 const declaration_specifiers_t *specifiers,
2539                 parsed_declaration_func finished_declaration)
2540 {
2541         while(true) {
2542                 declaration_t *declaration = finished_declaration(ndeclaration);
2543
2544                 type_t *orig_type = declaration->type;
2545                 type_t *type      = skip_typeref(orig_type);
2546
2547                 if(type->type != TYPE_FUNCTION && declaration->is_inline) {
2548                         parser_print_warning_prefix_pos(declaration->source_position);
2549                         fprintf(stderr, "variable '%s' declared 'inline'\n",
2550                                         declaration->symbol->string);
2551                 }
2552
2553                 if(token.type == '=') {
2554                         parse_init_declarator_rest(declaration);
2555                 }
2556
2557                 if(token.type != ',')
2558                         break;
2559                 eat(',');
2560
2561                 ndeclaration = parse_declarator(specifiers, false);
2562         }
2563         expect_void(';');
2564 }
2565
2566 static declaration_t *finished_kr_declaration(declaration_t *declaration)
2567 {
2568         /* TODO: check that it was actually a parameter that gets a type */
2569
2570         /* we should have a declaration for the parameter in the current
2571          * scope */
2572         return record_declaration(declaration);
2573 }
2574
2575 static void parse_declaration(parsed_declaration_func finished_declaration)
2576 {
2577         declaration_specifiers_t specifiers;
2578         memset(&specifiers, 0, sizeof(specifiers));
2579         parse_declaration_specifiers(&specifiers);
2580
2581         if(token.type == ';') {
2582                 parse_anonymous_declaration_rest(&specifiers, finished_declaration);
2583         } else {
2584                 declaration_t *declaration = parse_declarator(&specifiers, false);
2585                 parse_declaration_rest(declaration, &specifiers, finished_declaration);
2586         }
2587 }
2588
2589 static void parse_kr_declaration_list(declaration_t *declaration)
2590 {
2591         type_t *type = skip_typeref(declaration->type);
2592         assert(is_type_function(type));
2593
2594         if(!type->function.kr_style_parameters)
2595                 return;
2596
2597         /* push function parameters */
2598         int         top          = environment_top();
2599         context_t  *last_context = context;
2600         set_context(&declaration->context);
2601
2602         declaration_t *parameter = declaration->context.declarations;
2603         for( ; parameter != NULL; parameter = parameter->next) {
2604                 environment_push(parameter);
2605         }
2606
2607         /* parse declaration list */
2608         while(is_declaration_specifier(&token, false)) {
2609                 parse_declaration(finished_kr_declaration);
2610         }
2611
2612         /* pop function parameters */
2613         assert(context == &declaration->context);
2614         set_context(last_context);
2615         environment_pop_to(top);
2616
2617         /* update function type */
2618         type_t *new_type = duplicate_type(type);
2619         new_type->function.kr_style_parameters = false;
2620
2621         function_parameter_t *parameters     = NULL;
2622         function_parameter_t *last_parameter = NULL;
2623
2624         declaration_t *parameter_declaration = declaration->context.declarations;
2625         for( ; parameter_declaration != NULL;
2626                         parameter_declaration = parameter_declaration->next) {
2627                 type_t *parameter_type = parameter_declaration->type;
2628                 if(parameter_type == NULL) {
2629 #ifdef STRICT_C99
2630                         parser_print_error_prefix();
2631                         fprintf(stderr, "no type specified for function parameter '%s'\n",
2632                                 parameter_declaration->symbol->string);
2633 #else
2634                         parser_print_warning_prefix();
2635                         fprintf(stderr, "no type specified for function parameter '%s', "
2636                                 "using int\n", parameter_declaration->symbol->string);
2637                         parameter_type              = type_int;
2638                         parameter_declaration->type = parameter_type;
2639 #endif
2640                 }
2641
2642                 semantic_parameter(parameter_declaration);
2643                 parameter_type = parameter_declaration->type;
2644
2645                 function_parameter_t *function_parameter
2646                         = obstack_alloc(type_obst, sizeof(function_parameter[0]));
2647                 memset(function_parameter, 0, sizeof(function_parameter[0]));
2648
2649                 function_parameter->type = parameter_type;
2650                 if(last_parameter != NULL) {
2651                         last_parameter->next = function_parameter;
2652                 } else {
2653                         parameters = function_parameter;
2654                 }
2655                 last_parameter = function_parameter;
2656         }
2657         new_type->function.parameters = parameters;
2658
2659         type = typehash_insert(new_type);
2660         if(type != new_type) {
2661                 obstack_free(type_obst, new_type);
2662         }
2663
2664         declaration->type = type;
2665 }
2666
2667 static void parse_external_declaration(void)
2668 {
2669         /* function-definitions and declarations both start with declaration
2670          * specifiers */
2671         declaration_specifiers_t specifiers;
2672         memset(&specifiers, 0, sizeof(specifiers));
2673         parse_declaration_specifiers(&specifiers);
2674
2675         /* must be a declaration */
2676         if(token.type == ';') {
2677                 parse_anonymous_declaration_rest(&specifiers, record_declaration);
2678                 return;
2679         }
2680
2681         /* declarator is common to both function-definitions and declarations */
2682         declaration_t *ndeclaration = parse_declarator(&specifiers, false);
2683
2684         /* must be a declaration */
2685         if(token.type == ',' || token.type == '=' || token.type == ';') {
2686                 parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
2687                 return;
2688         }
2689
2690         /* must be a function definition */
2691         parse_kr_declaration_list(ndeclaration);
2692
2693         if(token.type != '{') {
2694                 parse_error_expected("while parsing function definition", '{', 0);
2695                 eat_statement();
2696                 return;
2697         }
2698
2699         type_t *type = ndeclaration->type;
2700         if(type == NULL) {
2701                 eat_block();
2702                 return;
2703         }
2704
2705         /* note that we don't skip typerefs: the standard doesn't allow them here
2706          * (so we can't use is_type_function here) */
2707         if(type->type != TYPE_FUNCTION) {
2708                 parser_print_error_prefix();
2709                 fprintf(stderr, "declarator '");
2710                 print_type_ext(type, ndeclaration->symbol, NULL);
2711                 fprintf(stderr, "' has a body but is not a function type.\n");
2712                 eat_block();
2713                 return;
2714         }
2715
2716         /* Â§ 6.7.5.3 (14) a function definition with () means no
2717          * parameters (and not unspecified parameters) */
2718         if(type->function.unspecified_parameters) {
2719                 type_t *duplicate = duplicate_type(type);
2720                 duplicate->function.unspecified_parameters = false;
2721
2722                 type = typehash_insert(duplicate);
2723                 if(type != duplicate) {
2724                         obstack_free(type_obst, duplicate);
2725                 }
2726                 ndeclaration->type = type;
2727         }
2728
2729         declaration_t *declaration = record_declaration(ndeclaration);
2730         if(ndeclaration != declaration) {
2731                 memcpy(&declaration->context, &ndeclaration->context,
2732                                 sizeof(declaration->context));
2733         }
2734         type = skip_typeref(declaration->type);
2735
2736         /* push function parameters and switch context */
2737         int         top          = environment_top();
2738         context_t  *last_context = context;
2739         set_context(&declaration->context);
2740
2741         declaration_t *parameter = declaration->context.declarations;
2742         for( ; parameter != NULL; parameter = parameter->next) {
2743                 environment_push(parameter);
2744         }
2745
2746         if(declaration->init.statement != NULL) {
2747                 parser_error_multiple_definition(declaration, token.source_position);
2748                 eat_block();
2749                 goto end_of_parse_external_declaration;
2750         } else {
2751                 /* parse function body */
2752                 int            label_stack_top      = label_top();
2753                 declaration_t *old_current_function = current_function;
2754                 current_function                    = declaration;
2755
2756                 declaration->init.statement = parse_compound_statement();
2757
2758                 assert(current_function == declaration);
2759                 current_function = old_current_function;
2760                 label_pop_to(label_stack_top);
2761         }
2762
2763 end_of_parse_external_declaration:
2764         assert(context == &declaration->context);
2765         set_context(last_context);
2766         environment_pop_to(top);
2767 }
2768
2769 static void parse_struct_declarators(const declaration_specifiers_t *specifiers)
2770 {
2771         while(1) {
2772                 if(token.type == ':') {
2773                         next_token();
2774                         parse_constant_expression();
2775                         /* TODO (bitfields) */
2776                 } else {
2777                         declaration_t *declaration = parse_declarator(specifiers, true);
2778
2779                         /* TODO: check constraints for struct declarations */
2780                         /* TODO: check for doubled fields */
2781                         record_declaration(declaration);
2782
2783                         if(token.type == ':') {
2784                                 next_token();
2785                                 parse_constant_expression();
2786                                 /* TODO (bitfields) */
2787                         }
2788                 }
2789
2790                 if(token.type != ',')
2791                         break;
2792                 next_token();
2793         }
2794         expect_void(';');
2795 }
2796
2797 static void parse_compound_type_entries(void)
2798 {
2799         eat('{');
2800
2801         while(token.type != '}' && token.type != T_EOF) {
2802                 declaration_specifiers_t specifiers;
2803                 memset(&specifiers, 0, sizeof(specifiers));
2804                 parse_declaration_specifiers(&specifiers);
2805
2806                 parse_struct_declarators(&specifiers);
2807         }
2808         if(token.type == T_EOF) {
2809                 parse_error("EOF while parsing struct");
2810         }
2811         next_token();
2812 }
2813
2814 static type_t *parse_typename(void)
2815 {
2816         declaration_specifiers_t specifiers;
2817         memset(&specifiers, 0, sizeof(specifiers));
2818         parse_declaration_specifiers(&specifiers);
2819         if(specifiers.storage_class != STORAGE_CLASS_NONE) {
2820                 /* TODO: improve error message, user does probably not know what a
2821                  * storage class is...
2822                  */
2823                 parse_error("typename may not have a storage class");
2824         }
2825
2826         type_t *result = parse_abstract_declarator(specifiers.type);
2827
2828         return result;
2829 }
2830
2831
2832
2833
2834 typedef expression_t* (*parse_expression_function) (unsigned precedence);
2835 typedef expression_t* (*parse_expression_infix_function) (unsigned precedence,
2836                                                           expression_t *left);
2837
2838 typedef struct expression_parser_function_t expression_parser_function_t;
2839 struct expression_parser_function_t {
2840         unsigned                         precedence;
2841         parse_expression_function        parser;
2842         unsigned                         infix_precedence;
2843         parse_expression_infix_function  infix_parser;
2844 };
2845
2846 expression_parser_function_t expression_parsers[T_LAST_TOKEN];
2847
2848 static expression_t *create_invalid_expression(void)
2849 {
2850         expression_t *expression         = allocate_expression_zero(EXPR_INVALID);
2851         expression->base.source_position = token.source_position;
2852         return expression;
2853 }
2854
2855 static expression_t *expected_expression_error(void)
2856 {
2857         parser_print_error_prefix();
2858         fprintf(stderr, "expected expression, got token ");
2859         print_token(stderr, &token);
2860         fprintf(stderr, "\n");
2861
2862         next_token();
2863
2864         return create_invalid_expression();
2865 }
2866
2867 static expression_t *parse_string_const(void)
2868 {
2869         expression_t *cnst  = allocate_expression_zero(EXPR_STRING_LITERAL);
2870         cnst->base.datatype = type_string;
2871         cnst->string.value  = parse_string_literals();
2872
2873         return cnst;
2874 }
2875
2876 static expression_t *parse_wide_string_const(void)
2877 {
2878         expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
2879         cnst->base.datatype      = type_wchar_t_ptr;
2880         cnst->wide_string.value  = token.v.wide_string; /* TODO concatenate */
2881         next_token();
2882         return cnst;
2883 }
2884
2885 static expression_t *parse_int_const(void)
2886 {
2887         expression_t *cnst       = allocate_expression_zero(EXPR_CONST);
2888         cnst->base.datatype      = token.datatype;
2889         cnst->conste.v.int_value = token.v.intvalue;
2890
2891         next_token();
2892
2893         return cnst;
2894 }
2895
2896 static expression_t *parse_float_const(void)
2897 {
2898         expression_t *cnst         = allocate_expression_zero(EXPR_CONST);
2899         cnst->base.datatype        = token.datatype;
2900         cnst->conste.v.float_value = token.v.floatvalue;
2901
2902         next_token();
2903
2904         return cnst;
2905 }
2906
2907 static declaration_t *create_implicit_function(symbol_t *symbol,
2908                 const source_position_t source_position)
2909 {
2910         type_t *ntype                          = allocate_type_zero(TYPE_FUNCTION);
2911         ntype->function.return_type            = type_int;
2912         ntype->function.unspecified_parameters = true;
2913
2914         type_t *type = typehash_insert(ntype);
2915         if(type != ntype) {
2916                 free_type(ntype);
2917         }
2918
2919         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
2920
2921         declaration->storage_class   = STORAGE_CLASS_EXTERN;
2922         declaration->type            = type;
2923         declaration->symbol          = symbol;
2924         declaration->source_position = source_position;
2925
2926         /* prepend the implicit definition to the global context
2927          * this is safe since the symbol wasn't declared as anything else yet
2928          */
2929         assert(symbol->declaration == NULL);
2930
2931         context_t *last_context = context;
2932         context = global_context;
2933
2934         environment_push(declaration);
2935         declaration->next     = context->declarations;
2936         context->declarations = declaration;
2937
2938         context = last_context;
2939
2940         return declaration;
2941 }
2942
2943 static type_t *make_function_1_type(type_t *return_type, type_t *argument_type)
2944 {
2945         function_parameter_t *parameter
2946                 = obstack_alloc(type_obst, sizeof(parameter[0]));
2947         memset(parameter, 0, sizeof(parameter[0]));
2948         parameter->type = argument_type;
2949
2950         type_t *type               = allocate_type_zero(TYPE_FUNCTION);
2951         type->function.return_type = return_type;
2952         type->function.parameters  = parameter;
2953
2954         type_t *result = typehash_insert(type);
2955         if(result != type) {
2956                 free_type(type);
2957         }
2958
2959         return result;
2960 }
2961
2962 static type_t *get_builtin_symbol_type(symbol_t *symbol)
2963 {
2964         switch(symbol->ID) {
2965         case T___builtin_alloca:
2966                 return make_function_1_type(type_void_ptr, type_size_t);
2967         case T___builtin_nan:
2968                 return make_function_1_type(type_double, type_string);
2969         case T___builtin_nanf:
2970                 return make_function_1_type(type_float, type_string);
2971         case T___builtin_nand:
2972                 return make_function_1_type(type_long_double, type_string);
2973         case T___builtin_va_end:
2974                 return make_function_1_type(type_void, type_valist);
2975         default:
2976                 panic("not implemented builtin symbol found");
2977         }
2978 }
2979
2980 /**
2981  * performs automatic type cast as described in Â§ 6.3.2.1
2982  */
2983 static type_t *automatic_type_conversion(type_t *orig_type)
2984 {
2985         if(orig_type == NULL)
2986                 return NULL;
2987
2988         type_t *type = skip_typeref(orig_type);
2989         if(is_type_array(type)) {
2990                 array_type_t *array_type   = &type->array;
2991                 type_t       *element_type = array_type->element_type;
2992                 unsigned      qualifiers   = array_type->type.qualifiers;
2993
2994                 return make_pointer_type(element_type, qualifiers);
2995         }
2996
2997         if(is_type_function(type)) {
2998                 return make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
2999         }
3000
3001         return orig_type;
3002 }
3003
3004 /**
3005  * reverts the automatic casts of array to pointer types and function
3006  * to function-pointer types as defined Â§ 6.3.2.1
3007  */
3008 type_t *revert_automatic_type_conversion(const expression_t *expression)
3009 {
3010         if(expression->base.datatype == NULL)
3011                 return NULL;
3012
3013         switch(expression->type) {
3014         case EXPR_REFERENCE: {
3015                 const reference_expression_t *ref = &expression->reference;
3016                 return ref->declaration->type;
3017         }
3018         case EXPR_SELECT: {
3019                 const select_expression_t *select = &expression->select;
3020                 return select->compound_entry->type;
3021         }
3022         case EXPR_UNARY: {
3023                 const unary_expression_t *unary = &expression->unary;
3024                 if(unary->type == UNEXPR_DEREFERENCE) {
3025                         expression_t   *value        = unary->value;
3026                         type_t         *type         = skip_typeref(value->base.datatype);
3027                         pointer_type_t *pointer_type = &type->pointer;
3028
3029                         return pointer_type->points_to;
3030                 }
3031                 break;
3032         }
3033         case EXPR_BUILTIN_SYMBOL: {
3034                 const builtin_symbol_expression_t *builtin
3035                         = &expression->builtin_symbol;
3036                 return get_builtin_symbol_type(builtin->symbol);
3037         }
3038         case EXPR_ARRAY_ACCESS: {
3039                 const array_access_expression_t *array_access
3040                         = &expression->array_access;
3041                 const expression_t *array_ref = array_access->array_ref;
3042                 type_t *type_left  = skip_typeref(array_ref->base.datatype);
3043                 assert(is_type_pointer(type_left));
3044                 pointer_type_t *pointer_type = &type_left->pointer;
3045                 return pointer_type->points_to;
3046         }
3047
3048         default:
3049                 break;
3050         }
3051
3052         return expression->base.datatype;
3053 }
3054
3055 static expression_t *parse_reference(void)
3056 {
3057         expression_t *expression = allocate_expression_zero(EXPR_REFERENCE);
3058
3059         reference_expression_t *ref = &expression->reference;
3060         ref->symbol = token.v.symbol;
3061
3062         declaration_t *declaration = get_declaration(ref->symbol, NAMESPACE_NORMAL);
3063
3064         source_position_t source_position = token.source_position;
3065         next_token();
3066
3067         if(declaration == NULL) {
3068 #ifndef STRICT_C99
3069                 /* an implicitly defined function */
3070                 if(token.type == '(') {
3071                         parser_print_prefix_pos(token.source_position);
3072                         fprintf(stderr, "warning: implicit declaration of function '%s'\n",
3073                                 ref->symbol->string);
3074
3075                         declaration = create_implicit_function(ref->symbol,
3076                                                                source_position);
3077                 } else
3078 #endif
3079                 {
3080                         parser_print_error_prefix();
3081                         fprintf(stderr, "unknown symbol '%s' found.\n", ref->symbol->string);
3082                         return expression;
3083                 }
3084         }
3085
3086         type_t *type = declaration->type;
3087         /* we always do the auto-type conversions; the & and sizeof parser contains
3088          * code to revert this! */
3089         type = automatic_type_conversion(type);
3090
3091         ref->declaration         = declaration;
3092         ref->expression.datatype = type;
3093
3094         return expression;
3095 }
3096
3097 static void check_cast_allowed(expression_t *expression, type_t *dest_type)
3098 {
3099         (void) expression;
3100         (void) dest_type;
3101         /* TODO check if explicit cast is allowed and issue warnings/errors */
3102 }
3103
3104 static expression_t *parse_cast(void)
3105 {
3106         expression_t *cast = allocate_expression_zero(EXPR_UNARY);
3107
3108         cast->unary.type           = UNEXPR_CAST;
3109         cast->base.source_position = token.source_position;
3110
3111         type_t *type  = parse_typename();
3112
3113         expect(')');
3114         expression_t *value = parse_sub_expression(20);
3115
3116         check_cast_allowed(value, type);
3117
3118         cast->base.datatype = type;
3119         cast->unary.value   = value;
3120
3121         return cast;
3122 }
3123
3124 static expression_t *parse_statement_expression(void)
3125 {
3126         expression_t *expression = allocate_expression_zero(EXPR_STATEMENT);
3127
3128         statement_t *statement          = parse_compound_statement();
3129         expression->statement.statement = statement;
3130         if(statement == NULL) {
3131                 expect(')');
3132                 return NULL;
3133         }
3134
3135         assert(statement->type == STATEMENT_COMPOUND);
3136         compound_statement_t *compound_statement = &statement->compound;
3137
3138         /* find last statement and use it's type */
3139         const statement_t *last_statement = NULL;
3140         const statement_t *iter           = compound_statement->statements;
3141         for( ; iter != NULL; iter = iter->base.next) {
3142                 last_statement = iter;
3143         }
3144
3145         if(last_statement->type == STATEMENT_EXPRESSION) {
3146                 const expression_statement_t *expression_statement
3147                         = &last_statement->expression;
3148                 expression->base.datatype
3149                         = expression_statement->expression->base.datatype;
3150         } else {
3151                 expression->base.datatype = type_void;
3152         }
3153
3154         expect(')');
3155
3156         return expression;
3157 }
3158
3159 static expression_t *parse_brace_expression(void)
3160 {
3161         eat('(');
3162
3163         switch(token.type) {
3164         case '{':
3165                 /* gcc extension: a stement expression */
3166                 return parse_statement_expression();
3167
3168         TYPE_QUALIFIERS
3169         TYPE_SPECIFIERS
3170                 return parse_cast();
3171         case T_IDENTIFIER:
3172                 if(is_typedef_symbol(token.v.symbol)) {
3173                         return parse_cast();
3174                 }
3175         }
3176
3177         expression_t *result = parse_expression();
3178         expect(')');
3179
3180         return result;
3181 }
3182
3183 static expression_t *parse_function_keyword(void)
3184 {
3185         next_token();
3186         /* TODO */
3187
3188         if (current_function == NULL) {
3189                 parse_error("'__func__' used outside of a function");
3190         }
3191
3192         string_literal_expression_t *expression
3193                 = allocate_ast_zero(sizeof(expression[0]));
3194
3195         expression->expression.type     = EXPR_FUNCTION;
3196         expression->expression.datatype = type_string;
3197         expression->value               = "TODO: FUNCTION";
3198
3199         return (expression_t*) expression;
3200 }
3201
3202 static expression_t *parse_pretty_function_keyword(void)
3203 {
3204         eat(T___PRETTY_FUNCTION__);
3205         /* TODO */
3206
3207         string_literal_expression_t *expression
3208                 = allocate_ast_zero(sizeof(expression[0]));
3209
3210         expression->expression.type     = EXPR_PRETTY_FUNCTION;
3211         expression->expression.datatype = type_string;
3212         expression->value               = "TODO: PRETTY FUNCTION";
3213
3214         return (expression_t*) expression;
3215 }
3216
3217 static designator_t *parse_designator(void)
3218 {
3219         designator_t *result = allocate_ast_zero(sizeof(result[0]));
3220
3221         if(token.type != T_IDENTIFIER) {
3222                 parse_error_expected("while parsing member designator",
3223                                      T_IDENTIFIER, 0);
3224                 eat_paren();
3225                 return NULL;
3226         }
3227         result->symbol = token.v.symbol;
3228         next_token();
3229
3230         designator_t *last_designator = result;
3231         while(true) {
3232                 if(token.type == '.') {
3233                         next_token();
3234                         if(token.type != T_IDENTIFIER) {
3235                                 parse_error_expected("while parsing member designator",
3236                                                      T_IDENTIFIER, 0);
3237                                 eat_paren();
3238                                 return NULL;
3239                         }
3240                         designator_t *designator = allocate_ast_zero(sizeof(result[0]));
3241                         designator->symbol       = token.v.symbol;
3242                         next_token();
3243
3244                         last_designator->next = designator;
3245                         last_designator       = designator;
3246                         continue;
3247                 }
3248                 if(token.type == '[') {
3249                         next_token();
3250                         designator_t *designator = allocate_ast_zero(sizeof(result[0]));
3251                         designator->array_access = parse_expression();
3252                         if(designator->array_access == NULL) {
3253                                 eat_paren();
3254                                 return NULL;
3255                         }
3256                         expect(']');
3257
3258                         last_designator->next = designator;
3259                         last_designator       = designator;
3260                         continue;
3261                 }
3262                 break;
3263         }
3264
3265         return result;
3266 }
3267
3268 static expression_t *parse_offsetof(void)
3269 {
3270         eat(T___builtin_offsetof);
3271
3272         expression_t *expression  = allocate_expression_zero(EXPR_OFFSETOF);
3273         expression->base.datatype = type_size_t;
3274
3275         expect('(');
3276         expression->offsetofe.type = parse_typename();
3277         expect(',');
3278         expression->offsetofe.designator = parse_designator();
3279         expect(')');
3280
3281         return expression;
3282 }
3283
3284 static expression_t *parse_va_start(void)
3285 {
3286         eat(T___builtin_va_start);
3287
3288         expression_t *expression = allocate_expression_zero(EXPR_VA_START);
3289
3290         expect('(');
3291         expression->va_starte.ap = parse_assignment_expression();
3292         expect(',');
3293         if (token.type != T_IDENTIFIER) {
3294                 parse_error_expected("while parsing va_start", T_IDENTIFIER, 0);
3295                 eat_paren();
3296                 return create_invalid_expression();
3297         }
3298         expression_t *const expr = parse_reference();
3299         if (expr->type == EXPR_INVALID) {
3300                 return create_invalid_expression();
3301         }
3302         assert(expr->type == EXPR_REFERENCE);
3303         declaration_t *const decl = expr->reference.declaration;
3304         if (decl->parent_context != &current_function->context ||
3305             decl->next != NULL) {
3306                 parser_print_error_prefix_pos(decl->source_position);
3307                 fprintf(stderr, "second argument of 'va_start' must be last parameter "
3308                                 "of the current function\n");
3309         }
3310         expression->va_starte.parameter = decl;
3311         expect(')');
3312
3313         return expression;
3314 }
3315
3316 static expression_t *parse_va_arg(void)
3317 {
3318         eat(T___builtin_va_arg);
3319
3320         expression_t *expression = allocate_expression_zero(EXPR_VA_ARG);
3321
3322         expect('(');
3323         expression->va_arge.ap = parse_assignment_expression();
3324         expect(',');
3325         expression->base.datatype = parse_typename();
3326         expect(')');
3327
3328         return expression;
3329 }
3330
3331 static expression_t *parse_builtin_symbol(void)
3332 {
3333         expression_t *expression = allocate_expression_zero(EXPR_BUILTIN_SYMBOL);
3334
3335         symbol_t *symbol = token.v.symbol;
3336
3337         expression->builtin_symbol.symbol = symbol;
3338         next_token();
3339
3340         type_t *type = get_builtin_symbol_type(symbol);
3341         type = automatic_type_conversion(type);
3342
3343         expression->base.datatype = type;
3344         return expression;
3345 }
3346
3347 static expression_t *parse_primary_expression(void)
3348 {
3349         switch(token.type) {
3350         case T_INTEGER:
3351                 return parse_int_const();
3352         case T_FLOATINGPOINT:
3353                 return parse_float_const();
3354         case T_STRING_LITERAL: /* TODO merge */
3355                 return parse_string_const();
3356         case T_WIDE_STRING_LITERAL:
3357                 return parse_wide_string_const();
3358         case T_IDENTIFIER:
3359                 return parse_reference();
3360         case T___FUNCTION__:
3361         case T___func__:
3362                 return parse_function_keyword();
3363         case T___PRETTY_FUNCTION__:
3364                 return parse_pretty_function_keyword();
3365         case T___builtin_offsetof:
3366                 return parse_offsetof();
3367         case T___builtin_va_start:
3368                 return parse_va_start();
3369         case T___builtin_va_arg:
3370                 return parse_va_arg();
3371         case T___builtin_nanf:
3372         case T___builtin_alloca:
3373         case T___builtin_expect:
3374         case T___builtin_va_end:
3375                 return parse_builtin_symbol();
3376
3377         case '(':
3378                 return parse_brace_expression();
3379         }
3380
3381         parser_print_error_prefix();
3382         fprintf(stderr, "unexpected token ");
3383         print_token(stderr, &token);
3384         fprintf(stderr, "\n");
3385         eat_statement();
3386
3387         return create_invalid_expression();
3388 }
3389
3390 static expression_t *parse_array_expression(unsigned precedence,
3391                                             expression_t *left)
3392 {
3393         (void) precedence;
3394
3395         eat('[');
3396
3397         expression_t *inside = parse_expression();
3398
3399         array_access_expression_t *array_access
3400                 = allocate_ast_zero(sizeof(array_access[0]));
3401
3402         array_access->expression.type = EXPR_ARRAY_ACCESS;
3403
3404         type_t *type_left   = left->base.datatype;
3405         type_t *type_inside = inside->base.datatype;
3406         type_t *return_type = NULL;
3407
3408         if(type_left != NULL && type_inside != NULL) {
3409                 type_left   = skip_typeref(type_left);
3410                 type_inside = skip_typeref(type_inside);
3411
3412                 if(is_type_pointer(type_left)) {
3413                         pointer_type_t *pointer = &type_left->pointer;
3414                         return_type             = pointer->points_to;
3415                         array_access->array_ref = left;
3416                         array_access->index     = inside;
3417                 } else if(is_type_pointer(type_inside)) {
3418                         pointer_type_t *pointer = &type_inside->pointer;
3419                         return_type             = pointer->points_to;
3420                         array_access->array_ref = inside;
3421                         array_access->index     = left;
3422                         array_access->flipped   = true;
3423                 } else {
3424                         parser_print_error_prefix();
3425                         fprintf(stderr, "array access on object with non-pointer types ");
3426                         print_type_quoted(type_left);
3427                         fprintf(stderr, ", ");
3428                         print_type_quoted(type_inside);
3429                         fprintf(stderr, "\n");
3430                 }
3431         } else {
3432                 array_access->array_ref = left;
3433                 array_access->index     = inside;
3434         }
3435
3436         if(token.type != ']') {
3437                 parse_error_expected("Problem while parsing array access", ']', 0);
3438                 return (expression_t*) array_access;
3439         }
3440         next_token();
3441
3442         return_type = automatic_type_conversion(return_type);
3443         array_access->expression.datatype = return_type;
3444
3445         return (expression_t*) array_access;
3446 }
3447
3448 static expression_t *parse_sizeof(unsigned precedence)
3449 {
3450         eat(T_sizeof);
3451
3452         sizeof_expression_t *sizeof_expression
3453                 = allocate_ast_zero(sizeof(sizeof_expression[0]));
3454         sizeof_expression->expression.type     = EXPR_SIZEOF;
3455         sizeof_expression->expression.datatype = type_size_t;
3456
3457         if(token.type == '(' && is_declaration_specifier(look_ahead(1), true)) {
3458                 next_token();
3459                 sizeof_expression->type = parse_typename();
3460                 expect(')');
3461         } else {
3462                 expression_t *expression  = parse_sub_expression(precedence);
3463                 expression->base.datatype = revert_automatic_type_conversion(expression);
3464
3465                 sizeof_expression->type            = expression->base.datatype;
3466                 sizeof_expression->size_expression = expression;
3467         }
3468
3469         return (expression_t*) sizeof_expression;
3470 }
3471
3472 static expression_t *parse_select_expression(unsigned precedence,
3473                                              expression_t *compound)
3474 {
3475         (void) precedence;
3476         assert(token.type == '.' || token.type == T_MINUSGREATER);
3477
3478         bool is_pointer = (token.type == T_MINUSGREATER);
3479         next_token();
3480
3481         expression_t *select    = allocate_expression_zero(EXPR_SELECT);
3482         select->select.compound = compound;
3483
3484         if(token.type != T_IDENTIFIER) {
3485                 parse_error_expected("while parsing select", T_IDENTIFIER, 0);
3486                 return select;
3487         }
3488         symbol_t *symbol      = token.v.symbol;
3489         select->select.symbol = symbol;
3490         next_token();
3491
3492         type_t *orig_type = compound->base.datatype;
3493         if(orig_type == NULL)
3494                 return create_invalid_expression();
3495
3496         type_t *type = skip_typeref(orig_type);
3497
3498         type_t *type_left = type;
3499         if(is_pointer) {
3500                 if(type->type != TYPE_POINTER) {
3501                         parser_print_error_prefix();
3502                         fprintf(stderr, "left hand side of '->' is not a pointer, but ");
3503                         print_type_quoted(orig_type);
3504                         fputc('\n', stderr);
3505                         return create_invalid_expression();
3506                 }
3507                 pointer_type_t *pointer_type = &type->pointer;
3508                 type_left                    = pointer_type->points_to;
3509         }
3510         type_left = skip_typeref(type_left);
3511
3512         if(type_left->type != TYPE_COMPOUND_STRUCT
3513                         && type_left->type != TYPE_COMPOUND_UNION) {
3514                 parser_print_error_prefix();
3515                 fprintf(stderr, "request for member '%s' in something not a struct or "
3516                         "union, but ", symbol->string);
3517                 print_type_quoted(type_left);
3518                 fputc('\n', stderr);
3519                 return create_invalid_expression();
3520         }
3521
3522         compound_type_t *compound_type = &type_left->compound;
3523         declaration_t   *declaration   = compound_type->declaration;
3524
3525         if(!declaration->init.is_defined) {
3526                 parser_print_error_prefix();
3527                 fprintf(stderr, "request for member '%s' of incomplete type ",
3528                         symbol->string);
3529                 print_type_quoted(type_left);
3530                 fputc('\n', stderr);
3531                 return create_invalid_expression();
3532         }
3533
3534         declaration_t *iter = declaration->context.declarations;
3535         for( ; iter != NULL; iter = iter->next) {
3536                 if(iter->symbol == symbol) {
3537                         break;
3538                 }
3539         }
3540         if(iter == NULL) {
3541                 parser_print_error_prefix();
3542                 print_type_quoted(type_left);
3543                 fprintf(stderr, " has no member named '%s'\n", symbol->string);
3544                 return create_invalid_expression();
3545         }
3546
3547         /* we always do the auto-type conversions; the & and sizeof parser contains
3548          * code to revert this! */
3549         type_t *expression_type = automatic_type_conversion(iter->type);
3550
3551         select->select.compound_entry = iter;
3552         select->base.datatype         = expression_type;
3553         return select;
3554 }
3555
3556 static expression_t *parse_call_expression(unsigned precedence,
3557                                            expression_t *expression)
3558 {
3559         (void) precedence;
3560         expression_t *result = allocate_expression_zero(EXPR_CALL);
3561
3562         call_expression_t *call  = &result->call;
3563         call->function           = expression;
3564
3565         function_type_t *function_type = NULL;
3566         type_t          *orig_type     = expression->base.datatype;
3567         if(orig_type != NULL) {
3568                 type_t *type  = skip_typeref(orig_type);
3569
3570                 if(is_type_pointer(type)) {
3571                         pointer_type_t *pointer_type = &type->pointer;
3572
3573                         type = skip_typeref(pointer_type->points_to);
3574
3575                         if (is_type_function(type)) {
3576                                 function_type             = &type->function;
3577                                 call->expression.datatype = function_type->return_type;
3578                         }
3579                 }
3580                 if(function_type == NULL) {
3581                         parser_print_error_prefix();
3582                         fputs("called object '", stderr);
3583                         print_expression(expression);
3584                         fputs("' (type ", stderr);
3585                         print_type_quoted(orig_type);
3586                         fputs(") is not a pointer to a function\n", stderr);
3587
3588                         function_type             = NULL;
3589                         call->expression.datatype = NULL;
3590                 }
3591         }
3592
3593         /* parse arguments */
3594         eat('(');
3595
3596         if(token.type != ')') {
3597                 call_argument_t *last_argument = NULL;
3598
3599                 while(true) {
3600                         call_argument_t *argument = allocate_ast_zero(sizeof(argument[0]));
3601
3602                         argument->expression = parse_assignment_expression();
3603                         if(last_argument == NULL) {
3604                                 call->arguments = argument;
3605                         } else {
3606                                 last_argument->next = argument;
3607                         }
3608                         last_argument = argument;
3609
3610                         if(token.type != ',')
3611                                 break;
3612                         next_token();
3613                 }
3614         }
3615         expect(')');
3616
3617         if(function_type != NULL) {
3618                 function_parameter_t *parameter = function_type->parameters;
3619                 call_argument_t      *argument  = call->arguments;
3620                 for( ; parameter != NULL && argument != NULL;
3621                                 parameter = parameter->next, argument = argument->next) {
3622                         type_t *expected_type = parameter->type;
3623                         /* TODO report context in error messages */
3624                         argument->expression = create_implicit_cast(argument->expression,
3625                                                                     expected_type);
3626                 }
3627                 /* too few parameters */
3628                 if(parameter != NULL) {
3629                         parser_print_error_prefix();
3630                         fprintf(stderr, "too few arguments to function '");
3631                         print_expression(expression);
3632                         fprintf(stderr, "'\n");
3633                 } else if(argument != NULL) {
3634                         /* too many parameters */
3635                         if(!function_type->variadic
3636                                         && !function_type->unspecified_parameters) {
3637                                 parser_print_error_prefix();
3638                                 fprintf(stderr, "too many arguments to function '");
3639                                 print_expression(expression);
3640                                 fprintf(stderr, "'\n");
3641                         } else {
3642                                 /* do default promotion */
3643                                 for( ; argument != NULL; argument = argument->next) {
3644                                         type_t *type = argument->expression->base.datatype;
3645
3646                                         if(type == NULL)
3647                                                 continue;
3648
3649                                         type = skip_typeref(type);
3650                                         if(is_type_integer(type)) {
3651                                                 type = promote_integer(type);
3652                                         } else if(type == type_float) {
3653                                                 type = type_double;
3654                                         }
3655
3656                                         argument->expression
3657                                                 = create_implicit_cast(argument->expression, type);
3658                                 }
3659                         }
3660                 }
3661         }
3662
3663         return result;
3664 }
3665
3666 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right);
3667
3668 static bool same_compound_type(const type_t *type1, const type_t *type2)
3669 {
3670         if(!is_type_compound(type1))
3671                 return false;
3672         if(type1->type != type2->type)
3673                 return false;
3674
3675         const compound_type_t *compound1 = &type1->compound;
3676         const compound_type_t *compound2 = &type2->compound;
3677
3678         return compound1->declaration == compound2->declaration;
3679 }
3680
3681 static expression_t *parse_conditional_expression(unsigned precedence,
3682                                                   expression_t *expression)
3683 {
3684         eat('?');
3685
3686         expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
3687
3688         conditional_expression_t *conditional = &result->conditional;
3689         conditional->condition = expression;
3690
3691         /* 6.5.15.2 */
3692         type_t *condition_type_orig = expression->base.datatype;
3693         if(condition_type_orig != NULL) {
3694                 type_t *condition_type = skip_typeref(condition_type_orig);
3695                 if(condition_type != NULL && !is_type_scalar(condition_type)) {
3696                         type_error("expected a scalar type in conditional condition",
3697                                    expression->base.source_position, condition_type_orig);
3698                 }
3699         }
3700
3701         expression_t *true_expression = parse_expression();
3702         expect(':');
3703         expression_t *false_expression = parse_sub_expression(precedence);
3704
3705         conditional->true_expression  = true_expression;
3706         conditional->false_expression = false_expression;
3707
3708         type_t *orig_true_type  = true_expression->base.datatype;
3709         type_t *orig_false_type = false_expression->base.datatype;
3710         if(orig_true_type == NULL || orig_false_type == NULL)
3711                 return result;
3712
3713         type_t *true_type  = skip_typeref(orig_true_type);
3714         type_t *false_type = skip_typeref(orig_false_type);
3715
3716         /* 6.5.15.3 */
3717         type_t *result_type = NULL;
3718         if (is_type_arithmetic(true_type) && is_type_arithmetic(false_type)) {
3719                 result_type = semantic_arithmetic(true_type, false_type);
3720
3721                 true_expression  = create_implicit_cast(true_expression, result_type);
3722                 false_expression = create_implicit_cast(false_expression, result_type);
3723
3724                 conditional->true_expression     = true_expression;
3725                 conditional->false_expression    = false_expression;
3726                 conditional->expression.datatype = result_type;
3727         } else if (same_compound_type(true_type, false_type)
3728                         || (is_type_atomic(true_type, ATOMIC_TYPE_VOID) &&
3729                                 is_type_atomic(false_type, ATOMIC_TYPE_VOID))) {
3730                 /* just take 1 of the 2 types */
3731                 result_type = true_type;
3732         } else if (is_type_pointer(true_type) && is_type_pointer(false_type)
3733                         && pointers_compatible(true_type, false_type)) {
3734                 /* ok */
3735                 result_type = true_type;
3736         } else {
3737                 /* TODO */
3738                 type_error_incompatible("while parsing conditional",
3739                                         expression->base.source_position, true_type,
3740                                         false_type);
3741         }
3742
3743         conditional->expression.datatype = result_type;
3744         return result;
3745 }
3746
3747 static expression_t *parse_extension(unsigned precedence)
3748 {
3749         eat(T___extension__);
3750
3751         /* TODO enable extensions */
3752
3753         return parse_sub_expression(precedence);
3754 }
3755
3756 static expression_t *parse_builtin_classify_type(const unsigned precedence)
3757 {
3758         eat(T___builtin_classify_type);
3759
3760         expression_t *result  = allocate_expression_zero(EXPR_CLASSIFY_TYPE);
3761         result->base.datatype = type_int;
3762
3763         expect('(');
3764         expression_t *expression = parse_sub_expression(precedence);
3765         expect(')');
3766         result->classify_type.type_expression = expression;
3767
3768         return result;
3769 }
3770
3771 static void semantic_incdec(unary_expression_t *expression)
3772 {
3773         type_t *orig_type = expression->value->base.datatype;
3774         if(orig_type == NULL)
3775                 return;
3776
3777         type_t *type = skip_typeref(orig_type);
3778         if(!is_type_arithmetic(type) && type->type != TYPE_POINTER) {
3779                 /* TODO: improve error message */
3780                 parser_print_error_prefix();
3781                 fprintf(stderr, "operation needs an arithmetic or pointer type\n");
3782                 return;
3783         }
3784
3785         expression->expression.datatype = orig_type;
3786 }
3787
3788 static void semantic_unexpr_arithmetic(unary_expression_t *expression)
3789 {
3790         type_t *orig_type = expression->value->base.datatype;
3791         if(orig_type == NULL)
3792                 return;
3793
3794         type_t *type = skip_typeref(orig_type);
3795         if(!is_type_arithmetic(type)) {
3796                 /* TODO: improve error message */
3797                 parser_print_error_prefix();
3798                 fprintf(stderr, "operation needs an arithmetic type\n");
3799                 return;
3800         }
3801
3802         expression->expression.datatype = orig_type;
3803 }
3804
3805 static void semantic_unexpr_scalar(unary_expression_t *expression)
3806 {
3807         type_t *orig_type = expression->value->base.datatype;
3808         if(orig_type == NULL)
3809                 return;
3810
3811         type_t *type = skip_typeref(orig_type);
3812         if (!is_type_scalar(type)) {
3813                 parse_error("operand of ! must be of scalar type\n");
3814                 return;
3815         }
3816
3817         expression->expression.datatype = orig_type;
3818 }
3819
3820 static void semantic_unexpr_integer(unary_expression_t *expression)
3821 {
3822         type_t *orig_type = expression->value->base.datatype;
3823         if(orig_type == NULL)
3824                 return;
3825
3826         type_t *type = skip_typeref(orig_type);
3827         if (!is_type_integer(type)) {
3828                 parse_error("operand of ~ must be of integer type\n");
3829                 return;
3830         }
3831
3832         expression->expression.datatype = orig_type;
3833 }
3834
3835 static void semantic_dereference(unary_expression_t *expression)
3836 {
3837         type_t *orig_type = expression->value->base.datatype;
3838         if(orig_type == NULL)
3839                 return;
3840
3841         type_t *type = skip_typeref(orig_type);
3842         if(!is_type_pointer(type)) {
3843                 parser_print_error_prefix();
3844                 fputs("Unary '*' needs pointer or arrray type, but type ", stderr);
3845                 print_type_quoted(orig_type);
3846                 fputs(" given.\n", stderr);
3847                 return;
3848         }
3849
3850         pointer_type_t *pointer_type = &type->pointer;
3851         type_t         *result_type  = pointer_type->points_to;
3852
3853         result_type = automatic_type_conversion(result_type);
3854         expression->expression.datatype = result_type;
3855 }
3856
3857 static void semantic_take_addr(unary_expression_t *expression)
3858 {
3859         expression_t *value  = expression->value;
3860         value->base.datatype = revert_automatic_type_conversion(value);
3861
3862         type_t *orig_type = value->base.datatype;
3863         if(orig_type == NULL)
3864                 return;
3865
3866         if(value->type == EXPR_REFERENCE) {
3867                 reference_expression_t *reference   = (reference_expression_t*) value;
3868                 declaration_t          *declaration = reference->declaration;
3869                 if(declaration != NULL) {
3870                         declaration->address_taken = 1;
3871                 }
3872         }
3873
3874         expression->expression.datatype = make_pointer_type(orig_type, TYPE_QUALIFIER_NONE);
3875 }
3876
3877 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
3878 static expression_t *parse_##unexpression_type(unsigned precedence)            \
3879 {                                                                              \
3880         eat(token_type);                                                           \
3881                                                                                \
3882         unary_expression_t *unary_expression                                       \
3883                 = allocate_ast_zero(sizeof(unary_expression[0]));                      \
3884         unary_expression->expression.type     = EXPR_UNARY;                        \
3885         unary_expression->type                = unexpression_type;                 \
3886         unary_expression->value               = parse_sub_expression(precedence);  \
3887                                                                                    \
3888         sfunc(unary_expression);                                                   \
3889                                                                                \
3890         return (expression_t*) unary_expression;                                   \
3891 }
3892
3893 CREATE_UNARY_EXPRESSION_PARSER('-', UNEXPR_NEGATE, semantic_unexpr_arithmetic)
3894 CREATE_UNARY_EXPRESSION_PARSER('+', UNEXPR_PLUS,   semantic_unexpr_arithmetic)
3895 CREATE_UNARY_EXPRESSION_PARSER('!', UNEXPR_NOT,    semantic_unexpr_scalar)
3896 CREATE_UNARY_EXPRESSION_PARSER('*', UNEXPR_DEREFERENCE, semantic_dereference)
3897 CREATE_UNARY_EXPRESSION_PARSER('&', UNEXPR_TAKE_ADDRESS, semantic_take_addr)
3898 CREATE_UNARY_EXPRESSION_PARSER('~', UNEXPR_BITWISE_NEGATE,
3899                                semantic_unexpr_integer)
3900 CREATE_UNARY_EXPRESSION_PARSER(T_PLUSPLUS,   UNEXPR_PREFIX_INCREMENT,
3901                                semantic_incdec)
3902 CREATE_UNARY_EXPRESSION_PARSER(T_MINUSMINUS, UNEXPR_PREFIX_DECREMENT,
3903                                semantic_incdec)
3904
3905 #define CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(token_type, unexpression_type, \
3906                                                sfunc)                         \
3907 static expression_t *parse_##unexpression_type(unsigned precedence,           \
3908                                                expression_t *left)            \
3909 {                                                                             \
3910         (void) precedence;                                                        \
3911         eat(token_type);                                                          \
3912                                                                               \
3913         unary_expression_t *unary_expression                                      \
3914                 = allocate_ast_zero(sizeof(unary_expression[0]));                     \
3915         unary_expression->expression.type     = EXPR_UNARY;                       \
3916         unary_expression->type                = unexpression_type;                \
3917         unary_expression->value               = left;                             \
3918                                                                                   \
3919         sfunc(unary_expression);                                                  \
3920                                                                               \
3921         return (expression_t*) unary_expression;                                  \
3922 }
3923
3924 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_PLUSPLUS,   UNEXPR_POSTFIX_INCREMENT,
3925                                        semantic_incdec)
3926 CREATE_UNARY_POSTFIX_EXPRESSION_PARSER(T_MINUSMINUS, UNEXPR_POSTFIX_DECREMENT,
3927                                        semantic_incdec)
3928
3929 static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
3930 {
3931         /* TODO: handle complex + imaginary types */
3932
3933         /* Â§ 6.3.1.8 Usual arithmetic conversions */
3934         if(type_left == type_long_double || type_right == type_long_double) {
3935                 return type_long_double;
3936         } else if(type_left == type_double || type_right == type_double) {
3937                 return type_double;
3938         } else if(type_left == type_float || type_right == type_float) {
3939                 return type_float;
3940         }
3941
3942         type_right = promote_integer(type_right);
3943         type_left  = promote_integer(type_left);
3944
3945         if(type_left == type_right)
3946                 return type_left;
3947
3948         bool signed_left  = is_type_signed(type_left);
3949         bool signed_right = is_type_signed(type_right);
3950         int  rank_left    = get_rank(type_left);
3951         int  rank_right   = get_rank(type_right);
3952         if(rank_left < rank_right) {
3953                 if(signed_left == signed_right || !signed_right) {
3954                         return type_right;
3955                 } else {
3956                         return type_left;
3957                 }
3958         } else {
3959                 if(signed_left == signed_right || !signed_left) {
3960                         return type_left;
3961                 } else {
3962                         return type_right;
3963                 }
3964         }
3965 }
3966
3967 static void semantic_binexpr_arithmetic(binary_expression_t *expression)
3968 {
3969         expression_t *left       = expression->left;
3970         expression_t *right      = expression->right;
3971         type_t       *orig_type_left  = left->base.datatype;
3972         type_t       *orig_type_right = right->base.datatype;
3973
3974         if(orig_type_left == NULL || orig_type_right == NULL)
3975                 return;
3976
3977         type_t *type_left  = skip_typeref(orig_type_left);
3978         type_t *type_right = skip_typeref(orig_type_right);
3979
3980         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
3981                 /* TODO: improve error message */
3982                 parser_print_error_prefix();
3983                 fprintf(stderr, "operation needs arithmetic types\n");
3984                 return;
3985         }
3986
3987         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
3988         expression->left  = create_implicit_cast(left, arithmetic_type);
3989         expression->right = create_implicit_cast(right, arithmetic_type);
3990         expression->expression.datatype = arithmetic_type;
3991 }
3992
3993 static void semantic_shift_op(binary_expression_t *expression)
3994 {
3995         expression_t *left       = expression->left;
3996         expression_t *right      = expression->right;
3997         type_t       *orig_type_left  = left->base.datatype;
3998         type_t       *orig_type_right = right->base.datatype;
3999
4000         if(orig_type_left == NULL || orig_type_right == NULL)
4001                 return;
4002
4003         type_t *type_left  = skip_typeref(orig_type_left);
4004         type_t *type_right = skip_typeref(orig_type_right);
4005
4006         if(!is_type_integer(type_left) || !is_type_integer(type_right)) {
4007                 /* TODO: improve error message */
4008                 parser_print_error_prefix();
4009                 fprintf(stderr, "operation needs integer types\n");
4010                 return;
4011         }
4012
4013         type_left  = promote_integer(type_left);
4014         type_right = promote_integer(type_right);
4015
4016         expression->left  = create_implicit_cast(left, type_left);
4017         expression->right = create_implicit_cast(right, type_right);
4018         expression->expression.datatype = type_left;
4019 }
4020
4021 static void semantic_add(binary_expression_t *expression)
4022 {
4023         expression_t *left            = expression->left;
4024         expression_t *right           = expression->right;
4025         type_t       *orig_type_left  = left->base.datatype;
4026         type_t       *orig_type_right = right->base.datatype;
4027
4028         if(orig_type_left == NULL || orig_type_right == NULL)
4029                 return;
4030
4031         type_t *type_left  = skip_typeref(orig_type_left);
4032         type_t *type_right = skip_typeref(orig_type_right);
4033
4034         /* Â§ 5.6.5 */
4035         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4036                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4037                 expression->left  = create_implicit_cast(left, arithmetic_type);
4038                 expression->right = create_implicit_cast(right, arithmetic_type);
4039                 expression->expression.datatype = arithmetic_type;
4040                 return;
4041         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4042                 expression->expression.datatype = type_left;
4043         } else if(is_type_pointer(type_right) && is_type_integer(type_left)) {
4044                 expression->expression.datatype = type_right;
4045         } else {
4046                 parser_print_error_prefix();
4047                 fprintf(stderr, "invalid operands to binary + (");
4048                 print_type_quoted(orig_type_left);
4049                 fprintf(stderr, ", ");
4050                 print_type_quoted(orig_type_right);
4051                 fprintf(stderr, ")\n");
4052         }
4053 }
4054
4055 static void semantic_sub(binary_expression_t *expression)
4056 {
4057         expression_t *left            = expression->left;
4058         expression_t *right           = expression->right;
4059         type_t       *orig_type_left  = left->base.datatype;
4060         type_t       *orig_type_right = right->base.datatype;
4061
4062         if(orig_type_left == NULL || orig_type_right == NULL)
4063                 return;
4064
4065         type_t       *type_left       = skip_typeref(orig_type_left);
4066         type_t       *type_right      = skip_typeref(orig_type_right);
4067
4068         /* Â§ 5.6.5 */
4069         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4070                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4071                 expression->left  = create_implicit_cast(left, arithmetic_type);
4072                 expression->right = create_implicit_cast(right, arithmetic_type);
4073                 expression->expression.datatype = arithmetic_type;
4074                 return;
4075         } else if(is_type_pointer(type_left) && is_type_integer(type_right)) {
4076                 expression->expression.datatype = type_left;
4077         } else if(is_type_pointer(type_left) && is_type_pointer(type_right)) {
4078                 if(!pointers_compatible(type_left, type_right)) {
4079                         parser_print_error_prefix();
4080                         fprintf(stderr, "pointers to incompatible objects to binary - (");
4081                         print_type_quoted(orig_type_left);
4082                         fprintf(stderr, ", ");
4083                         print_type_quoted(orig_type_right);
4084                         fprintf(stderr, ")\n");
4085                 } else {
4086                         expression->expression.datatype = type_ptrdiff_t;
4087                 }
4088         } else {
4089                 parser_print_error_prefix();
4090                 fprintf(stderr, "invalid operands to binary - (");
4091                 print_type_quoted(orig_type_left);
4092                 fprintf(stderr, ", ");
4093                 print_type_quoted(orig_type_right);
4094                 fprintf(stderr, ")\n");
4095         }
4096 }
4097
4098 static void semantic_comparison(binary_expression_t *expression)
4099 {
4100         expression_t *left            = expression->left;
4101         expression_t *right           = expression->right;
4102         type_t       *orig_type_left  = left->base.datatype;
4103         type_t       *orig_type_right = right->base.datatype;
4104
4105         if(orig_type_left == NULL || orig_type_right == NULL)
4106                 return;
4107
4108         type_t *type_left  = skip_typeref(orig_type_left);
4109         type_t *type_right = skip_typeref(orig_type_right);
4110
4111         /* TODO non-arithmetic types */
4112         if(is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4113                 type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4114                 expression->left  = create_implicit_cast(left, arithmetic_type);
4115                 expression->right = create_implicit_cast(right, arithmetic_type);
4116                 expression->expression.datatype = arithmetic_type;
4117         } else if (is_type_pointer(type_left) && is_type_pointer(type_right)) {
4118                 /* TODO check compatibility */
4119         } else if (is_type_pointer(type_left)) {
4120                 expression->right = create_implicit_cast(right, type_left);
4121         } else if (is_type_pointer(type_right)) {
4122                 expression->left = create_implicit_cast(left, type_right);
4123         } else {
4124                 type_error_incompatible("invalid operands in comparison",
4125                                         token.source_position, type_left, type_right);
4126         }
4127         expression->expression.datatype = type_int;
4128 }
4129
4130 static void semantic_arithmetic_assign(binary_expression_t *expression)
4131 {
4132         expression_t *left            = expression->left;
4133         expression_t *right           = expression->right;
4134         type_t       *orig_type_left  = left->base.datatype;
4135         type_t       *orig_type_right = right->base.datatype;
4136
4137         if(orig_type_left == NULL || orig_type_right == NULL)
4138                 return;
4139
4140         type_t *type_left  = skip_typeref(orig_type_left);
4141         type_t *type_right = skip_typeref(orig_type_right);
4142
4143         if(!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
4144                 /* TODO: improve error message */
4145                 parser_print_error_prefix();
4146                 fprintf(stderr, "operation needs arithmetic types\n");
4147                 return;
4148         }
4149
4150         /* combined instructions are tricky. We can't create an implicit cast on
4151          * the left side, because we need the uncasted form for the store.
4152          * The ast2firm pass has to know that left_type must be right_type
4153          * for the arithmeitc operation and create a cast by itself */
4154         type_t *arithmetic_type = semantic_arithmetic(type_left, type_right);
4155         expression->right       = create_implicit_cast(right, arithmetic_type);
4156         expression->expression.datatype = type_left;
4157 }
4158
4159 static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
4160 {
4161         expression_t *left            = expression->left;
4162         expression_t *right           = expression->right;
4163         type_t       *orig_type_left  = left->base.datatype;
4164         type_t       *orig_type_right = right->base.datatype;
4165
4166         if(orig_type_left == NULL || orig_type_right == NULL)
4167                 return;
4168
4169         type_t *type_left  = skip_typeref(orig_type_left);
4170         type_t *type_right = skip_typeref(orig_type_right);
4171
4172         if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
4173                 /* combined instructions are tricky. We can't create an implicit cast on
4174                  * the left side, because we need the uncasted form for the store.
4175                  * The ast2firm pass has to know that left_type must be right_type
4176                  * for the arithmeitc operation and create a cast by itself */
4177                 type_t *const arithmetic_type = semantic_arithmetic(type_left, type_right);
4178                 expression->right = create_implicit_cast(right, arithmetic_type);
4179                 expression->expression.datatype = type_left;
4180         } else if (is_type_pointer(type_left) && is_type_integer(type_right)) {
4181                 expression->expression.datatype = type_left;
4182         } else {
4183                 parser_print_error_prefix();
4184                 fputs("Incompatible types ", stderr);
4185                 print_type_quoted(orig_type_left);
4186                 fputs(" and ", stderr);
4187                 print_type_quoted(orig_type_right);
4188                 fputs(" in assignment\n", stderr);
4189                 return;
4190         }
4191 }
4192
4193 static void semantic_logical_op(binary_expression_t *expression)
4194 {
4195         expression_t *left            = expression->left;
4196         expression_t *right           = expression->right;
4197         type_t       *orig_type_left  = left->base.datatype;
4198         type_t       *orig_type_right = right->base.datatype;
4199
4200         if(orig_type_left == NULL || orig_type_right == NULL)
4201                 return;
4202
4203         type_t *type_left  = skip_typeref(orig_type_left);
4204         type_t *type_right = skip_typeref(orig_type_right);
4205
4206         if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
4207                 /* TODO: improve error message */
4208                 parser_print_error_prefix();
4209                 fprintf(stderr, "operation needs scalar types\n");
4210                 return;
4211         }
4212
4213         expression->expression.datatype = type_int;
4214 }
4215
4216 static bool has_const_fields(type_t *type)
4217 {
4218         (void) type;
4219         /* TODO */
4220         return false;
4221 }
4222
4223 static void semantic_binexpr_assign(binary_expression_t *expression)
4224 {
4225         expression_t *left           = expression->left;
4226         type_t       *orig_type_left = left->base.datatype;
4227
4228         if(orig_type_left == NULL)
4229                 return;
4230
4231         type_t *type_left = revert_automatic_type_conversion(left);
4232         type_left         = skip_typeref(orig_type_left);
4233
4234         /* must be a modifiable lvalue */
4235         if (is_type_array(type_left)) {
4236                 parser_print_error_prefix();
4237                 fprintf(stderr, "Cannot assign to arrays ('");
4238                 print_expression(left);
4239                 fprintf(stderr, "')\n");
4240                 return;
4241         }
4242         if(type_left->base.qualifiers & TYPE_QUALIFIER_CONST) {
4243                 parser_print_error_prefix();
4244                 fprintf(stderr, "assignment to readonly location '");
4245                 print_expression(left);
4246                 fprintf(stderr, "' (type ");
4247                 print_type_quoted(orig_type_left);
4248                 fprintf(stderr, ")\n");
4249                 return;
4250         }
4251         if(is_type_incomplete(type_left)) {
4252                 parser_print_error_prefix();
4253                 fprintf(stderr, "left-hand side of assignment '");
4254                 print_expression(left);
4255                 fprintf(stderr, "' has incomplete type ");
4256                 print_type_quoted(orig_type_left);
4257                 fprintf(stderr, "\n");
4258                 return;
4259         }
4260         if(is_type_compound(type_left) && has_const_fields(type_left)) {
4261                 parser_print_error_prefix();
4262                 fprintf(stderr, "can't assign to '");
4263                 print_expression(left);
4264                 fprintf(stderr, "' because compound type ");
4265                 print_type_quoted(orig_type_left);
4266                 fprintf(stderr, " has readonly fields\n");
4267                 return;
4268         }
4269
4270         semantic_assign(orig_type_left, &expression->right, "assignment");
4271
4272         expression->expression.datatype = orig_type_left;
4273 }
4274
4275 static void semantic_comma(binary_expression_t *expression)
4276 {
4277         expression->expression.datatype = expression->right->base.datatype;
4278 }
4279
4280 #define CREATE_BINEXPR_PARSER(token_type, binexpression_type, sfunc, lr) \
4281 static expression_t *parse_##binexpression_type(unsigned precedence,     \
4282                                                 expression_t *left)      \
4283 {                                                                        \
4284         eat(token_type);                                                     \
4285                                                                          \
4286         expression_t *right = parse_sub_expression(precedence + lr);         \
4287                                                                          \
4288         binary_expression_t *binexpr                                         \
4289                 = allocate_ast_zero(sizeof(binexpr[0]));                         \
4290         binexpr->expression.type     = EXPR_BINARY;                          \
4291         binexpr->type                = binexpression_type;                   \
4292         binexpr->left                = left;                                 \
4293         binexpr->right               = right;                                \
4294         sfunc(binexpr);                                                      \
4295                                                                          \
4296         return (expression_t*) binexpr;                                      \
4297 }
4298
4299 CREATE_BINEXPR_PARSER(',', BINEXPR_COMMA,          semantic_comma, 1)
4300 CREATE_BINEXPR_PARSER('*', BINEXPR_MUL,            semantic_binexpr_arithmetic, 1)
4301 CREATE_BINEXPR_PARSER('/', BINEXPR_DIV,            semantic_binexpr_arithmetic, 1)
4302 CREATE_BINEXPR_PARSER('%', BINEXPR_MOD,            semantic_binexpr_arithmetic, 1)
4303 CREATE_BINEXPR_PARSER('+', BINEXPR_ADD,            semantic_add, 1)
4304 CREATE_BINEXPR_PARSER('-', BINEXPR_SUB,            semantic_sub, 1)
4305 CREATE_BINEXPR_PARSER('<', BINEXPR_LESS,           semantic_comparison, 1)
4306 CREATE_BINEXPR_PARSER('>', BINEXPR_GREATER,        semantic_comparison, 1)
4307 CREATE_BINEXPR_PARSER('=', BINEXPR_ASSIGN,         semantic_binexpr_assign, 0)
4308 CREATE_BINEXPR_PARSER(T_EQUALEQUAL, BINEXPR_EQUAL, semantic_comparison, 1)
4309 CREATE_BINEXPR_PARSER(T_EXCLAMATIONMARKEQUAL, BINEXPR_NOTEQUAL,
4310                       semantic_comparison, 1)
4311 CREATE_BINEXPR_PARSER(T_LESSEQUAL, BINEXPR_LESSEQUAL, semantic_comparison, 1)
4312 CREATE_BINEXPR_PARSER(T_GREATEREQUAL, BINEXPR_GREATEREQUAL,
4313                       semantic_comparison, 1)
4314 CREATE_BINEXPR_PARSER('&', BINEXPR_BITWISE_AND,    semantic_binexpr_arithmetic, 1)
4315 CREATE_BINEXPR_PARSER('|', BINEXPR_BITWISE_OR,     semantic_binexpr_arithmetic, 1)
4316 CREATE_BINEXPR_PARSER('^', BINEXPR_BITWISE_XOR,    semantic_binexpr_arithmetic, 1)
4317 CREATE_BINEXPR_PARSER(T_ANDAND, BINEXPR_LOGICAL_AND,  semantic_logical_op, 1)
4318 CREATE_BINEXPR_PARSER(T_PIPEPIPE, BINEXPR_LOGICAL_OR, semantic_logical_op, 1)
4319 CREATE_BINEXPR_PARSER(T_LESSLESS, BINEXPR_SHIFTLEFT,
4320                       semantic_shift_op, 1)
4321 CREATE_BINEXPR_PARSER(T_GREATERGREATER, BINEXPR_SHIFTRIGHT,
4322                       semantic_shift_op, 1)
4323 CREATE_BINEXPR_PARSER(T_PLUSEQUAL, BINEXPR_ADD_ASSIGN,
4324                       semantic_arithmetic_addsubb_assign, 0)
4325 CREATE_BINEXPR_PARSER(T_MINUSEQUAL, BINEXPR_SUB_ASSIGN,
4326                       semantic_arithmetic_addsubb_assign, 0)
4327 CREATE_BINEXPR_PARSER(T_ASTERISKEQUAL, BINEXPR_MUL_ASSIGN,
4328                       semantic_arithmetic_assign, 0)
4329 CREATE_BINEXPR_PARSER(T_SLASHEQUAL, BINEXPR_DIV_ASSIGN,
4330                       semantic_arithmetic_assign, 0)
4331 CREATE_BINEXPR_PARSER(T_PERCENTEQUAL, BINEXPR_MOD_ASSIGN,
4332                       semantic_arithmetic_assign, 0)
4333 CREATE_BINEXPR_PARSER(T_LESSLESSEQUAL, BINEXPR_SHIFTLEFT_ASSIGN,
4334                       semantic_arithmetic_assign, 0)
4335 CREATE_BINEXPR_PARSER(T_GREATERGREATEREQUAL, BINEXPR_SHIFTRIGHT_ASSIGN,
4336                       semantic_arithmetic_assign, 0)
4337 CREATE_BINEXPR_PARSER(T_ANDEQUAL, BINEXPR_BITWISE_AND_ASSIGN,
4338                       semantic_arithmetic_assign, 0)
4339 CREATE_BINEXPR_PARSER(T_PIPEEQUAL, BINEXPR_BITWISE_OR_ASSIGN,
4340                       semantic_arithmetic_assign, 0)
4341 CREATE_BINEXPR_PARSER(T_CARETEQUAL, BINEXPR_BITWISE_XOR_ASSIGN,
4342                       semantic_arithmetic_assign, 0)
4343
4344 static expression_t *parse_sub_expression(unsigned precedence)
4345 {
4346         if(token.type < 0) {
4347                 return expected_expression_error();
4348         }
4349
4350         expression_parser_function_t *parser
4351                 = &expression_parsers[token.type];
4352         source_position_t             source_position = token.source_position;
4353         expression_t                 *left;
4354
4355         if(parser->parser != NULL) {
4356                 left = parser->parser(parser->precedence);
4357         } else {
4358                 left = parse_primary_expression();
4359         }
4360         assert(left != NULL);
4361         left->base.source_position = source_position;
4362
4363         while(true) {
4364                 if(token.type < 0) {
4365                         return expected_expression_error();
4366                 }
4367
4368                 parser = &expression_parsers[token.type];
4369                 if(parser->infix_parser == NULL)
4370                         break;
4371                 if(parser->infix_precedence < precedence)
4372                         break;
4373
4374                 left = parser->infix_parser(parser->infix_precedence, left);
4375
4376                 assert(left != NULL);
4377                 assert(left->type != EXPR_UNKNOWN);
4378                 left->base.source_position = source_position;
4379         }
4380
4381         return left;
4382 }
4383
4384 static expression_t *parse_expression(void)
4385 {
4386         return parse_sub_expression(1);
4387 }
4388
4389
4390
4391 static void register_expression_parser(parse_expression_function parser,
4392                                        int token_type, unsigned precedence)
4393 {
4394         expression_parser_function_t *entry = &expression_parsers[token_type];
4395
4396         if(entry->parser != NULL) {
4397                 fprintf(stderr, "for token ");
4398                 print_token_type(stderr, (token_type_t) token_type);
4399                 fprintf(stderr, "\n");
4400                 panic("trying to register multiple expression parsers for a token");
4401         }
4402         entry->parser     = parser;
4403         entry->precedence = precedence;
4404 }
4405
4406 static void register_expression_infix_parser(
4407                 parse_expression_infix_function parser, int token_type,
4408                 unsigned precedence)
4409 {
4410         expression_parser_function_t *entry = &expression_parsers[token_type];
4411
4412         if(entry->infix_parser != NULL) {
4413                 fprintf(stderr, "for token ");
4414                 print_token_type(stderr, (token_type_t) token_type);
4415                 fprintf(stderr, "\n");
4416                 panic("trying to register multiple infix expression parsers for a "
4417                       "token");
4418         }
4419         entry->infix_parser     = parser;
4420         entry->infix_precedence = precedence;
4421 }
4422
4423 static void init_expression_parsers(void)
4424 {
4425         memset(&expression_parsers, 0, sizeof(expression_parsers));
4426
4427         register_expression_infix_parser(parse_BINEXPR_MUL,         '*',        16);
4428         register_expression_infix_parser(parse_BINEXPR_DIV,         '/',        16);
4429         register_expression_infix_parser(parse_BINEXPR_MOD,         '%',        16);
4430         register_expression_infix_parser(parse_BINEXPR_SHIFTLEFT,   T_LESSLESS, 16);
4431         register_expression_infix_parser(parse_BINEXPR_SHIFTRIGHT,
4432                                                               T_GREATERGREATER, 16);
4433         register_expression_infix_parser(parse_BINEXPR_ADD,         '+',        15);
4434         register_expression_infix_parser(parse_BINEXPR_SUB,         '-',        15);
4435         register_expression_infix_parser(parse_BINEXPR_LESS,        '<',        14);
4436         register_expression_infix_parser(parse_BINEXPR_GREATER,     '>',        14);
4437         register_expression_infix_parser(parse_BINEXPR_LESSEQUAL, T_LESSEQUAL,  14);
4438         register_expression_infix_parser(parse_BINEXPR_GREATEREQUAL,
4439                                                                 T_GREATEREQUAL, 14);
4440         register_expression_infix_parser(parse_BINEXPR_EQUAL,     T_EQUALEQUAL, 13);
4441         register_expression_infix_parser(parse_BINEXPR_NOTEQUAL,
4442                                                         T_EXCLAMATIONMARKEQUAL, 13);
4443         register_expression_infix_parser(parse_BINEXPR_BITWISE_AND, '&',        12);
4444         register_expression_infix_parser(parse_BINEXPR_BITWISE_XOR, '^',        11);
4445         register_expression_infix_parser(parse_BINEXPR_BITWISE_OR,  '|',        10);
4446         register_expression_infix_parser(parse_BINEXPR_LOGICAL_AND, T_ANDAND,    9);
4447         register_expression_infix_parser(parse_BINEXPR_LOGICAL_OR,  T_PIPEPIPE,  8);
4448         register_expression_infix_parser(parse_conditional_expression, '?',      7);
4449         register_expression_infix_parser(parse_BINEXPR_ASSIGN,      '=',         2);
4450         register_expression_infix_parser(parse_BINEXPR_ADD_ASSIGN, T_PLUSEQUAL,  2);
4451         register_expression_infix_parser(parse_BINEXPR_SUB_ASSIGN, T_MINUSEQUAL, 2);
4452         register_expression_infix_parser(parse_BINEXPR_MUL_ASSIGN,
4453                                                                 T_ASTERISKEQUAL, 2);
4454         register_expression_infix_parser(parse_BINEXPR_DIV_ASSIGN, T_SLASHEQUAL, 2);
4455         register_expression_infix_parser(parse_BINEXPR_MOD_ASSIGN,
4456                                                                  T_PERCENTEQUAL, 2);
4457         register_expression_infix_parser(parse_BINEXPR_SHIFTLEFT_ASSIGN,
4458                                                                 T_LESSLESSEQUAL, 2);
4459         register_expression_infix_parser(parse_BINEXPR_SHIFTRIGHT_ASSIGN,
4460                                                           T_GREATERGREATEREQUAL, 2);
4461         register_expression_infix_parser(parse_BINEXPR_BITWISE_AND_ASSIGN,
4462                                                                      T_ANDEQUAL, 2);
4463         register_expression_infix_parser(parse_BINEXPR_BITWISE_OR_ASSIGN,
4464                                                                     T_PIPEEQUAL, 2);
4465         register_expression_infix_parser(parse_BINEXPR_BITWISE_XOR_ASSIGN,
4466                                                                    T_CARETEQUAL, 2);
4467
4468         register_expression_infix_parser(parse_BINEXPR_COMMA,       ',',         1);
4469
4470         register_expression_infix_parser(parse_array_expression,        '[',    30);
4471         register_expression_infix_parser(parse_call_expression,         '(',    30);
4472         register_expression_infix_parser(parse_select_expression,       '.',    30);
4473         register_expression_infix_parser(parse_select_expression,
4474                                                                 T_MINUSGREATER, 30);
4475         register_expression_infix_parser(parse_UNEXPR_POSTFIX_INCREMENT,
4476                                          T_PLUSPLUS, 30);
4477         register_expression_infix_parser(parse_UNEXPR_POSTFIX_DECREMENT,
4478                                          T_MINUSMINUS, 30);
4479
4480         register_expression_parser(parse_UNEXPR_NEGATE,           '-',          25);
4481         register_expression_parser(parse_UNEXPR_PLUS,             '+',          25);
4482         register_expression_parser(parse_UNEXPR_NOT,              '!',          25);
4483         register_expression_parser(parse_UNEXPR_BITWISE_NEGATE,   '~',          25);
4484         register_expression_parser(parse_UNEXPR_DEREFERENCE,      '*',          25);
4485         register_expression_parser(parse_UNEXPR_TAKE_ADDRESS,     '&',          25);
4486         register_expression_parser(parse_UNEXPR_PREFIX_INCREMENT, T_PLUSPLUS,   25);
4487         register_expression_parser(parse_UNEXPR_PREFIX_DECREMENT, T_MINUSMINUS, 25);
4488         register_expression_parser(parse_sizeof,                  T_sizeof,     25);
4489         register_expression_parser(parse_extension,            T___extension__, 25);
4490         register_expression_parser(parse_builtin_classify_type,
4491                                                      T___builtin_classify_type, 25);
4492 }
4493
4494 static asm_constraint_t *parse_asm_constraints(void)
4495 {
4496         asm_constraint_t *result = NULL;
4497         asm_constraint_t *last   = NULL;
4498
4499         while(token.type == T_STRING_LITERAL || token.type == '[') {
4500                 asm_constraint_t *constraint = allocate_ast_zero(sizeof(constraint[0]));
4501                 memset(constraint, 0, sizeof(constraint[0]));
4502
4503                 if(token.type == '[') {
4504                         eat('[');
4505                         if(token.type != T_IDENTIFIER) {
4506                                 parse_error_expected("while parsing asm constraint",
4507                                                      T_IDENTIFIER, 0);
4508                                 return NULL;
4509                         }
4510                         constraint->symbol = token.v.symbol;
4511
4512                         expect(']');
4513                 }
4514
4515                 constraint->constraints = parse_string_literals();
4516                 expect('(');
4517                 constraint->expression = parse_expression();
4518                 expect(')');
4519
4520                 if(last != NULL) {
4521                         last->next = constraint;
4522                 } else {
4523                         result = constraint;
4524                 }
4525                 last = constraint;
4526
4527                 if(token.type != ',')
4528                         break;
4529                 eat(',');
4530         }
4531
4532         return result;
4533 }
4534
4535 static asm_clobber_t *parse_asm_clobbers(void)
4536 {
4537         asm_clobber_t *result = NULL;
4538         asm_clobber_t *last   = NULL;
4539
4540         while(token.type == T_STRING_LITERAL) {
4541                 asm_clobber_t *clobber = allocate_ast_zero(sizeof(clobber[0]));
4542                 clobber->clobber       = parse_string_literals();
4543
4544                 if(last != NULL) {
4545                         last->next = clobber;
4546                 } else {
4547                         result = clobber;
4548                 }
4549                 last = clobber;
4550
4551                 if(token.type != ',')
4552                         break;
4553                 eat(',');
4554         }
4555
4556         return result;
4557 }
4558
4559 static statement_t *parse_asm_statement(void)
4560 {
4561         eat(T_asm);
4562
4563         statement_t *statement          = allocate_statement_zero(STATEMENT_ASM);
4564         statement->base.source_position = token.source_position;
4565
4566         asm_statement_t *asm_statement = &statement->asms;
4567
4568         if(token.type == T_volatile) {
4569                 next_token();
4570                 asm_statement->is_volatile = true;
4571         }
4572
4573         expect('(');
4574         asm_statement->asm_text = parse_string_literals();
4575
4576         if(token.type != ':')
4577                 goto end_of_asm;
4578         eat(':');
4579
4580         asm_statement->inputs = parse_asm_constraints();
4581         if(token.type != ':')
4582                 goto end_of_asm;
4583         eat(':');
4584
4585         asm_statement->outputs = parse_asm_constraints();
4586         if(token.type != ':')
4587                 goto end_of_asm;
4588         eat(':');
4589
4590         asm_statement->clobbers = parse_asm_clobbers();
4591
4592 end_of_asm:
4593         expect(')');
4594         expect(';');
4595         return statement;
4596 }
4597
4598 static statement_t *parse_case_statement(void)
4599 {
4600         eat(T_case);
4601
4602         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
4603
4604         statement->base.source_position  = token.source_position;
4605         statement->case_label.expression = parse_expression();
4606
4607         expect(':');
4608         statement->case_label.label_statement = parse_statement();
4609
4610         return statement;
4611 }
4612
4613 static statement_t *parse_default_statement(void)
4614 {
4615         eat(T_default);
4616
4617         statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
4618
4619         statement->base.source_position = token.source_position;
4620
4621         expect(':');
4622         statement->label.label_statement = parse_statement();
4623
4624         return statement;
4625 }
4626
4627 static declaration_t *get_label(symbol_t *symbol)
4628 {
4629         declaration_t *candidate = get_declaration(symbol, NAMESPACE_LABEL);
4630         assert(current_function != NULL);
4631         /* if we found a label in the same function, then we already created the
4632          * declaration */
4633         if(candidate != NULL
4634                         && candidate->parent_context == &current_function->context) {
4635                 return candidate;
4636         }
4637
4638         /* otherwise we need to create a new one */
4639         declaration_t *declaration = allocate_ast_zero(sizeof(declaration[0]));
4640         declaration->namespc       = NAMESPACE_LABEL;
4641         declaration->symbol        = symbol;
4642
4643         label_push(declaration);
4644
4645         return declaration;
4646 }
4647
4648 static statement_t *parse_label_statement(void)
4649 {
4650         assert(token.type == T_IDENTIFIER);
4651         symbol_t *symbol = token.v.symbol;
4652         next_token();
4653
4654         declaration_t *label = get_label(symbol);
4655
4656         /* if source position is already set then the label is defined twice,
4657          * otherwise it was just mentioned in a goto so far */
4658         if(label->source_position.input_name != NULL) {
4659                 parser_print_error_prefix();
4660                 fprintf(stderr, "duplicate label '%s'\n", symbol->string);
4661                 parser_print_error_prefix_pos(label->source_position);
4662                 fprintf(stderr, "previous definition of '%s' was here\n",
4663                         symbol->string);
4664         } else {
4665                 label->source_position = token.source_position;
4666         }
4667
4668         label_statement_t *label_statement = allocate_ast_zero(sizeof(label[0]));
4669
4670         label_statement->statement.type            = STATEMENT_LABEL;
4671         label_statement->statement.source_position = token.source_position;
4672         label_statement->label                     = label;
4673
4674         expect(':');
4675
4676         if(token.type == '}') {
4677                 parse_error("label at end of compound statement");
4678                 return (statement_t*) label_statement;
4679         } else {
4680                 label_statement->label_statement = parse_statement();
4681         }
4682
4683         return (statement_t*) label_statement;
4684 }
4685
4686 static statement_t *parse_if(void)
4687 {
4688         eat(T_if);
4689
4690         if_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4691         statement->statement.type            = STATEMENT_IF;
4692         statement->statement.source_position = token.source_position;
4693
4694         expect('(');
4695         statement->condition = parse_expression();
4696         expect(')');
4697
4698         statement->true_statement = parse_statement();
4699         if(token.type == T_else) {
4700                 next_token();
4701                 statement->false_statement = parse_statement();
4702         }
4703
4704         return (statement_t*) statement;
4705 }
4706
4707 static statement_t *parse_switch(void)
4708 {
4709         eat(T_switch);
4710
4711         switch_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4712         statement->statement.type            = STATEMENT_SWITCH;
4713         statement->statement.source_position = token.source_position;
4714
4715         expect('(');
4716         statement->expression = parse_expression();
4717         expect(')');
4718         statement->body = parse_statement();
4719
4720         return (statement_t*) statement;
4721 }
4722
4723 static statement_t *parse_while(void)
4724 {
4725         eat(T_while);
4726
4727         while_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4728         statement->statement.type            = STATEMENT_WHILE;
4729         statement->statement.source_position = token.source_position;
4730
4731         expect('(');
4732         statement->condition = parse_expression();
4733         expect(')');
4734         statement->body = parse_statement();
4735
4736         return (statement_t*) statement;
4737 }
4738
4739 static statement_t *parse_do(void)
4740 {
4741         eat(T_do);
4742
4743         do_while_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4744         statement->statement.type            = STATEMENT_DO_WHILE;
4745         statement->statement.source_position = token.source_position;
4746
4747         statement->body = parse_statement();
4748         expect(T_while);
4749         expect('(');
4750         statement->condition = parse_expression();
4751         expect(')');
4752         expect(';');
4753
4754         return (statement_t*) statement;
4755 }
4756
4757 static statement_t *parse_for(void)
4758 {
4759         eat(T_for);
4760
4761         for_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4762         statement->statement.type            = STATEMENT_FOR;
4763         statement->statement.source_position = token.source_position;
4764
4765         expect('(');
4766
4767         int         top          = environment_top();
4768         context_t  *last_context = context;
4769         set_context(&statement->context);
4770
4771         if(token.type != ';') {
4772                 if(is_declaration_specifier(&token, false)) {
4773                         parse_declaration(record_declaration);
4774                 } else {
4775                         statement->initialisation = parse_expression();
4776                         expect(';');
4777                 }
4778         } else {
4779                 expect(';');
4780         }
4781
4782         if(token.type != ';') {
4783                 statement->condition = parse_expression();
4784         }
4785         expect(';');
4786         if(token.type != ')') {
4787                 statement->step = parse_expression();
4788         }
4789         expect(')');
4790         statement->body = parse_statement();
4791
4792         assert(context == &statement->context);
4793         set_context(last_context);
4794         environment_pop_to(top);
4795
4796         return (statement_t*) statement;
4797 }
4798
4799 static statement_t *parse_goto(void)
4800 {
4801         eat(T_goto);
4802
4803         if(token.type != T_IDENTIFIER) {
4804                 parse_error_expected("while parsing goto", T_IDENTIFIER, 0);
4805                 eat_statement();
4806                 return NULL;
4807         }
4808         symbol_t *symbol = token.v.symbol;
4809         next_token();
4810
4811         declaration_t *label = get_label(symbol);
4812
4813         goto_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4814
4815         statement->statement.type            = STATEMENT_GOTO;
4816         statement->statement.source_position = token.source_position;
4817
4818         statement->label = label;
4819
4820         expect(';');
4821
4822         return (statement_t*) statement;
4823 }
4824
4825 static statement_t *parse_continue(void)
4826 {
4827         eat(T_continue);
4828         expect(';');
4829
4830         statement_t *statement          = allocate_ast_zero(sizeof(statement[0]));
4831         statement->type                 = STATEMENT_CONTINUE;
4832         statement->base.source_position = token.source_position;
4833
4834         return statement;
4835 }
4836
4837 static statement_t *parse_break(void)
4838 {
4839         eat(T_break);
4840         expect(';');
4841
4842         statement_t *statement          = allocate_ast_zero(sizeof(statement[0]));
4843         statement->type                 = STATEMENT_BREAK;
4844         statement->base.source_position = token.source_position;
4845
4846         return statement;
4847 }
4848
4849 static statement_t *parse_return(void)
4850 {
4851         eat(T_return);
4852
4853         return_statement_t *statement = allocate_ast_zero(sizeof(statement[0]));
4854
4855         statement->statement.type            = STATEMENT_RETURN;
4856         statement->statement.source_position = token.source_position;
4857
4858         assert(is_type_function(current_function->type));
4859         function_type_t *function_type = &current_function->type->function;
4860         type_t          *return_type   = function_type->return_type;
4861
4862         expression_t *return_value = NULL;
4863         if(token.type != ';') {
4864                 return_value = parse_expression();
4865         }
4866         expect(';');
4867
4868         if(return_type == NULL)
4869                 return (statement_t*) statement;
4870
4871         return_type = skip_typeref(return_type);
4872
4873         if(return_value != NULL) {
4874                 type_t *return_value_type = skip_typeref(return_value->base.datatype);
4875
4876                 if(is_type_atomic(return_type, ATOMIC_TYPE_VOID)
4877                                 && !is_type_atomic(return_value_type, ATOMIC_TYPE_VOID)) {
4878                         parse_warning("'return' with a value, in function returning void");
4879                         return_value = NULL;
4880                 } else {
4881                         if(return_type != NULL) {
4882                                 semantic_assign(return_type, &return_value, "'return'");
4883                         }
4884                 }
4885         } else {
4886                 if(!is_type_atomic(return_type, ATOMIC_TYPE_VOID)) {
4887                         parse_warning("'return' without value, in function returning "
4888                                       "non-void");
4889                 }
4890         }
4891         statement->return_value = return_value;
4892
4893         return (statement_t*) statement;
4894 }
4895
4896 static statement_t *parse_declaration_statement(void)
4897 {
4898         statement_t *statement = allocate_statement_zero(STATEMENT_DECLARATION);
4899
4900         statement->base.source_position = token.source_position;
4901
4902         declaration_t *before = last_declaration;
4903         parse_declaration(record_declaration);
4904
4905         if(before == NULL) {
4906                 statement->declaration.declarations_begin = context->declarations;
4907         } else {
4908                 statement->declaration.declarations_begin = before->next;
4909         }
4910         statement->declaration.declarations_end = last_declaration;
4911
4912         return statement;
4913 }
4914
4915 static statement_t *parse_expression_statement(void)
4916 {
4917         statement_t *statement = allocate_statement_zero(STATEMENT_EXPRESSION);
4918
4919         statement->base.source_position  = token.source_position;
4920         statement->expression.expression = parse_expression();
4921
4922         expect(';');
4923
4924         return statement;
4925 }
4926
4927 static statement_t *parse_statement(void)
4928 {
4929         statement_t   *statement = NULL;
4930
4931         /* declaration or statement */
4932         switch(token.type) {
4933         case T_asm:
4934                 statement = parse_asm_statement();
4935                 break;
4936
4937         case T_case:
4938                 statement = parse_case_statement();
4939                 break;
4940
4941         case T_default:
4942                 statement = parse_default_statement();
4943                 break;
4944
4945         case '{':
4946                 statement = parse_compound_statement();
4947                 break;
4948
4949         case T_if:
4950                 statement = parse_if();
4951                 break;
4952
4953         case T_switch:
4954                 statement = parse_switch();
4955                 break;
4956
4957         case T_while:
4958                 statement = parse_while();
4959                 break;
4960
4961         case T_do:
4962                 statement = parse_do();
4963                 break;
4964
4965         case T_for:
4966                 statement = parse_for();
4967                 break;
4968
4969         case T_goto:
4970                 statement = parse_goto();
4971                 break;
4972
4973         case T_continue:
4974                 statement = parse_continue();
4975                 break;
4976
4977         case T_break:
4978                 statement = parse_break();
4979                 break;
4980
4981         case T_return:
4982                 statement = parse_return();
4983                 break;
4984
4985         case ';':
4986                 next_token();
4987                 statement = NULL;
4988                 break;
4989
4990         case T_IDENTIFIER:
4991                 if(look_ahead(1)->type == ':') {
4992                         statement = parse_label_statement();
4993                         break;
4994                 }
4995
4996                 if(is_typedef_symbol(token.v.symbol)) {
4997                         statement = parse_declaration_statement();
4998                         break;
4999                 }
5000
5001                 statement = parse_expression_statement();
5002                 break;
5003
5004         case T___extension__:
5005                 /* this can be a prefix to a declaration or an expression statement */
5006                 /* we simply eat it now and parse the rest with tail recursion */
5007                 do {
5008                         next_token();
5009                 } while(token.type == T___extension__);
5010                 statement = parse_statement();
5011                 break;
5012
5013         DECLARATION_START
5014                 statement = parse_declaration_statement();
5015                 break;
5016
5017         default:
5018                 statement = parse_expression_statement();
5019                 break;
5020         }
5021
5022         assert(statement == NULL
5023                         || statement->base.source_position.input_name != NULL);
5024
5025         return statement;
5026 }
5027
5028 static statement_t *parse_compound_statement(void)
5029 {
5030         compound_statement_t *compound_statement
5031                 = allocate_ast_zero(sizeof(compound_statement[0]));
5032         compound_statement->statement.type            = STATEMENT_COMPOUND;
5033         compound_statement->statement.source_position = token.source_position;
5034
5035         eat('{');
5036
5037         int        top          = environment_top();
5038         context_t *last_context = context;
5039         set_context(&compound_statement->context);
5040
5041         statement_t *last_statement = NULL;
5042
5043         while(token.type != '}' && token.type != T_EOF) {
5044                 statement_t *statement = parse_statement();
5045                 if(statement == NULL)
5046                         continue;
5047
5048                 if(last_statement != NULL) {
5049                         last_statement->base.next = statement;
5050                 } else {
5051                         compound_statement->statements = statement;
5052                 }
5053
5054                 while(statement->base.next != NULL)
5055                         statement = statement->base.next;
5056
5057                 last_statement = statement;
5058         }
5059
5060         if(token.type != '}') {
5061                 parser_print_error_prefix_pos(
5062                                 compound_statement->statement.source_position);
5063                 fprintf(stderr, "end of file while looking for closing '}'\n");
5064         }
5065         next_token();
5066
5067         assert(context == &compound_statement->context);
5068         set_context(last_context);
5069         environment_pop_to(top);
5070
5071         return (statement_t*) compound_statement;
5072 }
5073
5074 static void initialize_builtins(void)
5075 {
5076         type_wchar_t     = make_global_typedef("__WCHAR_TYPE__", type_int);
5077         type_wchar_t_ptr = make_pointer_type(type_wchar_t, TYPE_QUALIFIER_NONE);
5078         type_size_t      = make_global_typedef("__SIZE_TYPE__",
5079                         make_atomic_type(ATOMIC_TYPE_ULONG, TYPE_QUALIFIER_NONE));
5080         type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",
5081                         make_atomic_type(ATOMIC_TYPE_LONG, TYPE_QUALIFIER_NONE));
5082 }
5083
5084 static translation_unit_t *parse_translation_unit(void)
5085 {
5086         translation_unit_t *unit = allocate_ast_zero(sizeof(unit[0]));
5087
5088         assert(global_context == NULL);
5089         global_context = &unit->context;
5090
5091         assert(context == NULL);
5092         set_context(&unit->context);
5093
5094         initialize_builtins();
5095
5096         while(token.type != T_EOF) {
5097                 parse_external_declaration();
5098         }
5099
5100         assert(context == &unit->context);
5101         context          = NULL;
5102         last_declaration = NULL;
5103
5104         assert(global_context == &unit->context);
5105         global_context = NULL;
5106
5107         return unit;
5108 }
5109
5110 translation_unit_t *parse(void)
5111 {
5112         environment_stack = NEW_ARR_F(stack_entry_t, 0);
5113         label_stack       = NEW_ARR_F(stack_entry_t, 0);
5114         found_error       = false;
5115
5116         type_set_output(stderr);
5117         ast_set_output(stderr);
5118
5119         lookahead_bufpos = 0;
5120         for(int i = 0; i < MAX_LOOKAHEAD + 2; ++i) {
5121                 next_token();
5122         }
5123         translation_unit_t *unit = parse_translation_unit();
5124
5125         DEL_ARR_F(environment_stack);
5126         DEL_ARR_F(label_stack);
5127
5128         if(found_error)
5129                 return NULL;
5130
5131         return unit;
5132 }
5133
5134 void init_parser(void)
5135 {
5136         init_expression_parsers();
5137         obstack_init(&temp_obst);
5138
5139         type_int         = make_atomic_type(ATOMIC_TYPE_INT, TYPE_QUALIFIER_NONE);
5140         type_long_double = make_atomic_type(ATOMIC_TYPE_LONG_DOUBLE,
5141                                             TYPE_QUALIFIER_NONE);
5142         type_double      = make_atomic_type(ATOMIC_TYPE_DOUBLE,
5143                                             TYPE_QUALIFIER_NONE);
5144         type_float       = make_atomic_type(ATOMIC_TYPE_FLOAT, TYPE_QUALIFIER_NONE);
5145         type_char        = make_atomic_type(ATOMIC_TYPE_CHAR, TYPE_QUALIFIER_NONE);
5146         type_void        = make_atomic_type(ATOMIC_TYPE_VOID, TYPE_QUALIFIER_NONE);
5147         type_void_ptr    = make_pointer_type(type_void, TYPE_QUALIFIER_NONE);
5148         type_string      = make_pointer_type(type_char, TYPE_QUALIFIER_NONE);
5149
5150         symbol_t *const va_list_sym = symbol_table_insert("__builtin_va_list");
5151         type_valist = create_builtin_type(va_list_sym, type_void_ptr);
5152 }
5153
5154 void exit_parser(void)
5155 {
5156         obstack_free(&temp_obst, NULL);
5157 }