Improve printing after an inner statement.
[cparser] / ast.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include "ast_t.h"
23 #include "symbol_t.h"
24 #include "type_t.h"
25 #include "parser.h"
26 #include "lang_features.h"
27 #include "entity_t.h"
28 #include "printer.h"
29 #include "types.h"
30
31 #include <assert.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <ctype.h>
35
36 #if defined(__INTEL_COMPILER)
37 #include <mathimf.h>
38 #elif defined(__CYGWIN__)
39 #include "win32/cygwin_math_ext.h"
40 #else
41 #include <math.h>
42 #endif
43
44 #include "adt/error.h"
45 #include "adt/util.h"
46
47 struct obstack ast_obstack;
48
49 static int indent;
50 static int case_indent;
51
52 bool print_implicit_casts = false;
53 bool print_parenthesis = false;
54
55 static void print_statement(const statement_t *statement);
56 static void print_expression_prec(const expression_t *expression, unsigned prec);
57
58 void change_indent(int delta)
59 {
60         indent += delta;
61         assert(indent >= 0);
62 }
63
64 void print_indent(void)
65 {
66         for (int i = 0; i < indent; ++i)
67                 print_string("\t");
68 }
69
70 static void print_stringrep(const string_t *string)
71 {
72         for (size_t i = 0; i < string->size; ++i) {
73                 print_char(string->begin[i]);
74         }
75 }
76
77 /**
78  * Returns 1 if a given precedence level has right-to-left
79  * associativity, else 0.
80  *
81  * @param precedence   the operator precedence
82  */
83 static int right_to_left(unsigned precedence)
84 {
85         switch (precedence) {
86         case PREC_ASSIGNMENT:
87         case PREC_CONDITIONAL:
88         case PREC_UNARY:
89                 return 1;
90
91         default:
92                 return 0;
93         }
94 }
95
96 /**
97  * Return the precedence of an expression given by its kind.
98  *
99  * @param kind   the expression kind
100  */
101 static unsigned get_expression_precedence(expression_kind_t kind)
102 {
103         static const unsigned prec[] = {
104                 [EXPR_REFERENCE]                         = PREC_PRIMARY,
105                 [EXPR_REFERENCE_ENUM_VALUE]              = PREC_PRIMARY,
106                 [EXPR_LITERAL_INTEGER]                   = PREC_PRIMARY,
107                 [EXPR_LITERAL_INTEGER_OCTAL]             = PREC_PRIMARY,
108                 [EXPR_LITERAL_INTEGER_HEXADECIMAL]       = PREC_PRIMARY,
109                 [EXPR_LITERAL_FLOATINGPOINT]             = PREC_PRIMARY,
110                 [EXPR_LITERAL_FLOATINGPOINT_HEXADECIMAL] = PREC_PRIMARY,
111                 [EXPR_LITERAL_CHARACTER]                 = PREC_PRIMARY,
112                 [EXPR_LITERAL_WIDE_CHARACTER]            = PREC_PRIMARY,
113                 [EXPR_LITERAL_MS_NOOP]                   = PREC_PRIMARY,
114                 [EXPR_STRING_LITERAL]                    = PREC_PRIMARY,
115                 [EXPR_WIDE_STRING_LITERAL]               = PREC_PRIMARY,
116                 [EXPR_COMPOUND_LITERAL]                  = PREC_UNARY,
117                 [EXPR_CALL]                              = PREC_POSTFIX,
118                 [EXPR_CONDITIONAL]                       = PREC_CONDITIONAL,
119                 [EXPR_SELECT]                            = PREC_POSTFIX,
120                 [EXPR_ARRAY_ACCESS]                      = PREC_POSTFIX,
121                 [EXPR_SIZEOF]                            = PREC_UNARY,
122                 [EXPR_CLASSIFY_TYPE]                     = PREC_UNARY,
123                 [EXPR_ALIGNOF]                           = PREC_UNARY,
124
125                 [EXPR_FUNCNAME]                          = PREC_PRIMARY,
126                 [EXPR_BUILTIN_CONSTANT_P]                = PREC_PRIMARY,
127                 [EXPR_BUILTIN_TYPES_COMPATIBLE_P]        = PREC_PRIMARY,
128                 [EXPR_OFFSETOF]                          = PREC_PRIMARY,
129                 [EXPR_VA_START]                          = PREC_PRIMARY,
130                 [EXPR_VA_ARG]                            = PREC_PRIMARY,
131                 [EXPR_VA_COPY]                           = PREC_PRIMARY,
132                 [EXPR_STATEMENT]                         = PREC_PRIMARY,
133                 [EXPR_LABEL_ADDRESS]                     = PREC_PRIMARY,
134
135                 [EXPR_UNARY_NEGATE]                      = PREC_UNARY,
136                 [EXPR_UNARY_PLUS]                        = PREC_UNARY,
137                 [EXPR_UNARY_BITWISE_NEGATE]              = PREC_UNARY,
138                 [EXPR_UNARY_NOT]                         = PREC_UNARY,
139                 [EXPR_UNARY_DEREFERENCE]                 = PREC_UNARY,
140                 [EXPR_UNARY_TAKE_ADDRESS]                = PREC_UNARY,
141                 [EXPR_UNARY_POSTFIX_INCREMENT]           = PREC_POSTFIX,
142                 [EXPR_UNARY_POSTFIX_DECREMENT]           = PREC_POSTFIX,
143                 [EXPR_UNARY_PREFIX_INCREMENT]            = PREC_UNARY,
144                 [EXPR_UNARY_PREFIX_DECREMENT]            = PREC_UNARY,
145                 [EXPR_UNARY_CAST]                        = PREC_UNARY,
146                 [EXPR_UNARY_ASSUME]                      = PREC_PRIMARY,
147                 [EXPR_UNARY_DELETE]                      = PREC_UNARY,
148                 [EXPR_UNARY_DELETE_ARRAY]                = PREC_UNARY,
149                 [EXPR_UNARY_THROW]                       = PREC_ASSIGNMENT,
150
151                 [EXPR_BINARY_ADD]                        = PREC_ADDITIVE,
152                 [EXPR_BINARY_SUB]                        = PREC_ADDITIVE,
153                 [EXPR_BINARY_MUL]                        = PREC_MULTIPLICATIVE,
154                 [EXPR_BINARY_DIV]                        = PREC_MULTIPLICATIVE,
155                 [EXPR_BINARY_MOD]                        = PREC_MULTIPLICATIVE,
156                 [EXPR_BINARY_EQUAL]                      = PREC_EQUALITY,
157                 [EXPR_BINARY_NOTEQUAL]                   = PREC_EQUALITY,
158                 [EXPR_BINARY_LESS]                       = PREC_RELATIONAL,
159                 [EXPR_BINARY_LESSEQUAL]                  = PREC_RELATIONAL,
160                 [EXPR_BINARY_GREATER]                    = PREC_RELATIONAL,
161                 [EXPR_BINARY_GREATEREQUAL]               = PREC_RELATIONAL,
162                 [EXPR_BINARY_BITWISE_AND]                = PREC_AND,
163                 [EXPR_BINARY_BITWISE_OR]                 = PREC_OR,
164                 [EXPR_BINARY_BITWISE_XOR]                = PREC_XOR,
165                 [EXPR_BINARY_LOGICAL_AND]                = PREC_LOGICAL_AND,
166                 [EXPR_BINARY_LOGICAL_OR]                 = PREC_LOGICAL_OR,
167                 [EXPR_BINARY_SHIFTLEFT]                  = PREC_SHIFT,
168                 [EXPR_BINARY_SHIFTRIGHT]                 = PREC_SHIFT,
169                 [EXPR_BINARY_ASSIGN]                     = PREC_ASSIGNMENT,
170                 [EXPR_BINARY_MUL_ASSIGN]                 = PREC_ASSIGNMENT,
171                 [EXPR_BINARY_DIV_ASSIGN]                 = PREC_ASSIGNMENT,
172                 [EXPR_BINARY_MOD_ASSIGN]                 = PREC_ASSIGNMENT,
173                 [EXPR_BINARY_ADD_ASSIGN]                 = PREC_ASSIGNMENT,
174                 [EXPR_BINARY_SUB_ASSIGN]                 = PREC_ASSIGNMENT,
175                 [EXPR_BINARY_SHIFTLEFT_ASSIGN]           = PREC_ASSIGNMENT,
176                 [EXPR_BINARY_SHIFTRIGHT_ASSIGN]          = PREC_ASSIGNMENT,
177                 [EXPR_BINARY_BITWISE_AND_ASSIGN]         = PREC_ASSIGNMENT,
178                 [EXPR_BINARY_BITWISE_XOR_ASSIGN]         = PREC_ASSIGNMENT,
179                 [EXPR_BINARY_BITWISE_OR_ASSIGN]          = PREC_ASSIGNMENT,
180                 [EXPR_BINARY_COMMA]                      = PREC_EXPRESSION,
181
182                 [EXPR_BINARY_ISGREATER]                  = PREC_PRIMARY,
183                 [EXPR_BINARY_ISGREATEREQUAL]             = PREC_PRIMARY,
184                 [EXPR_BINARY_ISLESS]                     = PREC_PRIMARY,
185                 [EXPR_BINARY_ISLESSEQUAL]                = PREC_PRIMARY,
186                 [EXPR_BINARY_ISLESSGREATER]              = PREC_PRIMARY,
187                 [EXPR_BINARY_ISUNORDERED]                = PREC_PRIMARY
188         };
189         assert((size_t)kind < lengthof(prec));
190         unsigned res = prec[kind];
191
192         assert(res != PREC_BOTTOM);
193         return res;
194 }
195
196 /**
197  * Print a quoted string constant.
198  *
199  * @param string  the string constant
200  * @param border  the border char
201  * @param skip    number of chars to skip at the end
202  */
203 static void print_quoted_string(const string_t *const string, char border,
204                                 int skip)
205 {
206         print_char(border);
207         const char *end = string->begin + string->size - skip;
208         for (const char *c = string->begin; c != end; ++c) {
209                 const char tc = *c;
210                 if (tc == border) {
211                         print_string("\\");
212                 }
213                 switch (tc) {
214                 case '\\': print_string("\\\\"); break;
215                 case '\a': print_string("\\a"); break;
216                 case '\b': print_string("\\b"); break;
217                 case '\f': print_string("\\f"); break;
218                 case '\n': print_string("\\n"); break;
219                 case '\r': print_string("\\r"); break;
220                 case '\t': print_string("\\t"); break;
221                 case '\v': print_string("\\v"); break;
222                 case '\?': print_string("\\?"); break;
223                 case 27:
224                         if (c_mode & _GNUC) {
225                                 print_string("\\e"); break;
226                         }
227                         /* FALLTHROUGH */
228                 default:
229                         if ((unsigned)tc < 0x80 && !isprint(tc)) {
230                                 print_format("\\%03o", (unsigned)tc);
231                         } else {
232                                 print_char(tc);
233                         }
234                         break;
235                 }
236         }
237         print_char(border);
238 }
239
240 static void print_string_literal(const string_literal_expression_t *literal)
241 {
242         if (literal->base.kind == EXPR_WIDE_STRING_LITERAL) {
243                 print_char('L');
244         }
245         print_quoted_string(&literal->value, '"', 1);
246 }
247
248 static void print_literal(const literal_expression_t *literal)
249 {
250         switch (literal->base.kind) {
251         case EXPR_LITERAL_MS_NOOP:
252                 print_string("__noop");
253                 return;
254         case EXPR_LITERAL_INTEGER_HEXADECIMAL:
255         case EXPR_LITERAL_FLOATINGPOINT_HEXADECIMAL:
256                 print_string("0x");
257                 /* FALLTHROUGH */
258         case EXPR_LITERAL_BOOLEAN:
259         case EXPR_LITERAL_INTEGER:
260         case EXPR_LITERAL_INTEGER_OCTAL:
261         case EXPR_LITERAL_FLOATINGPOINT:
262                 print_stringrep(&literal->value);
263                 if (literal->suffix.size > 0)
264                         print_stringrep(&literal->suffix);
265                 return;
266         case EXPR_LITERAL_WIDE_CHARACTER:
267                 print_char('L');
268                 /* FALLTHROUGH */
269         case EXPR_LITERAL_CHARACTER:
270                 print_quoted_string(&literal->value, '\'', 0);
271                 return;
272         default:
273                 break;
274         }
275         print_string("INVALID LITERAL KIND");
276 }
277
278 /**
279  * Prints a predefined symbol.
280  */
281 static void print_funcname(const funcname_expression_t *funcname)
282 {
283         const char *s = "";
284         switch (funcname->kind) {
285         case FUNCNAME_FUNCTION:        s = (c_mode & _C99) ? "__func__" : "__FUNCTION__"; break;
286         case FUNCNAME_PRETTY_FUNCTION: s = "__PRETTY_FUNCTION__"; break;
287         case FUNCNAME_FUNCSIG:         s = "__FUNCSIG__"; break;
288         case FUNCNAME_FUNCDNAME:       s = "__FUNCDNAME__"; break;
289         }
290         print_string(s);
291 }
292
293 static void print_compound_literal(
294                 const compound_literal_expression_t *expression)
295 {
296         print_string("(");
297         print_type(expression->type);
298         print_string(")");
299         print_initializer(expression->initializer);
300 }
301
302 static void print_assignment_expression(const expression_t *const expr)
303 {
304         print_expression_prec(expr, PREC_ASSIGNMENT);
305 }
306
307 /**
308  * Prints a call expression.
309  *
310  * @param call  the call expression
311  */
312 static void print_call_expression(const call_expression_t *call)
313 {
314         print_expression_prec(call->function, PREC_POSTFIX);
315         print_string("(");
316         call_argument_t *argument = call->arguments;
317         int              first    = 1;
318         while (argument != NULL) {
319                 if (!first) {
320                         print_string(", ");
321                 } else {
322                         first = 0;
323                 }
324                 print_assignment_expression(argument->expression);
325
326                 argument = argument->next;
327         }
328         print_string(")");
329 }
330
331 /**
332  * Prints a binary expression.
333  *
334  * @param binexpr   the binary expression
335  */
336 static void print_binary_expression(const binary_expression_t *binexpr)
337 {
338         unsigned prec = get_expression_precedence(binexpr->base.kind);
339         int      r2l  = right_to_left(prec);
340
341         print_expression_prec(binexpr->left, prec + r2l);
342         char const* op;
343         switch (binexpr->base.kind) {
344         case EXPR_BINARY_COMMA:              op = ", ";    break;
345         case EXPR_BINARY_ASSIGN:             op = " = ";   break;
346         case EXPR_BINARY_ADD:                op = " + ";   break;
347         case EXPR_BINARY_SUB:                op = " - ";   break;
348         case EXPR_BINARY_MUL:                op = " * ";   break;
349         case EXPR_BINARY_MOD:                op = " % ";   break;
350         case EXPR_BINARY_DIV:                op = " / ";   break;
351         case EXPR_BINARY_BITWISE_OR:         op = " | ";   break;
352         case EXPR_BINARY_BITWISE_AND:        op = " & ";   break;
353         case EXPR_BINARY_BITWISE_XOR:        op = " ^ ";   break;
354         case EXPR_BINARY_LOGICAL_OR:         op = " || ";  break;
355         case EXPR_BINARY_LOGICAL_AND:        op = " && ";  break;
356         case EXPR_BINARY_NOTEQUAL:           op = " != ";  break;
357         case EXPR_BINARY_EQUAL:              op = " == ";  break;
358         case EXPR_BINARY_LESS:               op = " < ";   break;
359         case EXPR_BINARY_LESSEQUAL:          op = " <= ";  break;
360         case EXPR_BINARY_GREATER:            op = " > ";   break;
361         case EXPR_BINARY_GREATEREQUAL:       op = " >= ";  break;
362         case EXPR_BINARY_SHIFTLEFT:          op = " << ";  break;
363         case EXPR_BINARY_SHIFTRIGHT:         op = " >> ";  break;
364
365         case EXPR_BINARY_ADD_ASSIGN:         op = " += ";  break;
366         case EXPR_BINARY_SUB_ASSIGN:         op = " -= ";  break;
367         case EXPR_BINARY_MUL_ASSIGN:         op = " *= ";  break;
368         case EXPR_BINARY_MOD_ASSIGN:         op = " %= ";  break;
369         case EXPR_BINARY_DIV_ASSIGN:         op = " /= ";  break;
370         case EXPR_BINARY_BITWISE_OR_ASSIGN:  op = " |= ";  break;
371         case EXPR_BINARY_BITWISE_AND_ASSIGN: op = " &= ";  break;
372         case EXPR_BINARY_BITWISE_XOR_ASSIGN: op = " ^= ";  break;
373         case EXPR_BINARY_SHIFTLEFT_ASSIGN:   op = " <<= "; break;
374         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:  op = " >>= "; break;
375         default: panic("invalid binexpression found");
376         }
377         print_string(op);
378         print_expression_prec(binexpr->right, prec + 1 - r2l);
379 }
380
381 /**
382  * Prints an unary expression.
383  *
384  * @param unexpr   the unary expression
385  */
386 static void print_unary_expression(const unary_expression_t *unexpr)
387 {
388         unsigned prec = get_expression_precedence(unexpr->base.kind);
389         switch (unexpr->base.kind) {
390         case EXPR_UNARY_NEGATE:           print_string("-"); break;
391         case EXPR_UNARY_PLUS:             print_string("+"); break;
392         case EXPR_UNARY_NOT:              print_string("!"); break;
393         case EXPR_UNARY_BITWISE_NEGATE:   print_string("~"); break;
394         case EXPR_UNARY_PREFIX_INCREMENT: print_string("++"); break;
395         case EXPR_UNARY_PREFIX_DECREMENT: print_string("--"); break;
396         case EXPR_UNARY_DEREFERENCE:      print_string("*"); break;
397         case EXPR_UNARY_TAKE_ADDRESS:     print_string("&"); break;
398         case EXPR_UNARY_DELETE:           print_string("delete "); break;
399         case EXPR_UNARY_DELETE_ARRAY:     print_string("delete [] "); break;
400
401         case EXPR_UNARY_POSTFIX_INCREMENT:
402                 print_expression_prec(unexpr->value, prec);
403                 print_string("++");
404                 return;
405         case EXPR_UNARY_POSTFIX_DECREMENT:
406                 print_expression_prec(unexpr->value, prec);
407                 print_string("--");
408                 return;
409         case EXPR_UNARY_CAST:
410                 print_string("(");
411                 print_type(unexpr->base.type);
412                 print_string(")");
413                 break;
414         case EXPR_UNARY_ASSUME:
415                 print_string("__assume(");
416                 print_assignment_expression(unexpr->value);
417                 print_string(")");
418                 return;
419
420         case EXPR_UNARY_THROW:
421                 if (unexpr->value == NULL) {
422                         print_string("throw");
423                         return;
424                 }
425                 print_string("throw ");
426                 break;
427
428         default:
429                 panic("invalid unary expression found");
430         }
431         print_expression_prec(unexpr->value, prec);
432 }
433
434 /**
435  * Prints a reference expression.
436  *
437  * @param ref   the reference expression
438  */
439 static void print_reference_expression(const reference_expression_t *ref)
440 {
441         print_string(ref->entity->base.symbol->string);
442 }
443
444 /**
445  * Prints a label address expression.
446  *
447  * @param ref   the reference expression
448  */
449 static void print_label_address_expression(const label_address_expression_t *le)
450 {
451         print_format("&&%s", le->label->base.symbol->string);
452 }
453
454 /**
455  * Prints an array expression.
456  *
457  * @param expression   the array expression
458  */
459 static void print_array_expression(const array_access_expression_t *expression)
460 {
461         if (!expression->flipped) {
462                 print_expression_prec(expression->array_ref, PREC_POSTFIX);
463                 print_string("[");
464                 print_expression(expression->index);
465                 print_string("]");
466         } else {
467                 print_expression_prec(expression->index, PREC_POSTFIX);
468                 print_string("[");
469                 print_expression(expression->array_ref);
470                 print_string("]");
471         }
472 }
473
474 /**
475  * Prints a typeproperty expression (sizeof or __alignof__).
476  *
477  * @param expression   the type property expression
478  */
479 static void print_typeprop_expression(const typeprop_expression_t *expression)
480 {
481         if (expression->base.kind == EXPR_SIZEOF) {
482                 print_string("sizeof");
483         } else {
484                 assert(expression->base.kind == EXPR_ALIGNOF);
485                 print_string("__alignof__");
486         }
487         if (expression->tp_expression != NULL) {
488                 /* PREC_TOP: always print the '()' here, sizeof x is right but unusual */
489                 print_expression_prec(expression->tp_expression, PREC_TOP);
490         } else {
491                 print_string("(");
492                 print_type(expression->type);
493                 print_string(")");
494         }
495 }
496
497 /**
498  * Prints a builtin constant expression.
499  *
500  * @param expression   the builtin constant expression
501  */
502 static void print_builtin_constant(const builtin_constant_expression_t *expression)
503 {
504         print_string("__builtin_constant_p(");
505         print_assignment_expression(expression->value);
506         print_string(")");
507 }
508
509 /**
510  * Prints a builtin types compatible expression.
511  *
512  * @param expression   the builtin types compatible expression
513  */
514 static void print_builtin_types_compatible(
515                 const builtin_types_compatible_expression_t *expression)
516 {
517         print_string("__builtin_types_compatible_p(");
518         print_type(expression->left);
519         print_string(", ");
520         print_type(expression->right);
521         print_string(")");
522 }
523
524 /**
525  * Prints a conditional expression.
526  *
527  * @param expression   the conditional expression
528  */
529 static void print_conditional(const conditional_expression_t *expression)
530 {
531         print_expression_prec(expression->condition, PREC_LOGICAL_OR);
532         if (expression->true_expression != NULL) {
533                 print_string(" ? ");
534                 print_expression_prec(expression->true_expression, PREC_EXPRESSION);
535                 print_string(" : ");
536         } else {
537                 print_string(" ?: ");
538         }
539         precedence_t prec = c_mode & _CXX ? PREC_ASSIGNMENT : PREC_CONDITIONAL;
540         print_expression_prec(expression->false_expression, prec);
541 }
542
543 /**
544  * Prints a va_start expression.
545  *
546  * @param expression   the va_start expression
547  */
548 static void print_va_start(const va_start_expression_t *const expression)
549 {
550         print_string("__builtin_va_start(");
551         print_assignment_expression(expression->ap);
552         print_string(", ");
553         print_string(expression->parameter->base.base.symbol->string);
554         print_string(")");
555 }
556
557 /**
558  * Prints a va_arg expression.
559  *
560  * @param expression   the va_arg expression
561  */
562 static void print_va_arg(const va_arg_expression_t *expression)
563 {
564         print_string("__builtin_va_arg(");
565         print_assignment_expression(expression->ap);
566         print_string(", ");
567         print_type(expression->base.type);
568         print_string(")");
569 }
570
571 /**
572  * Prints a va_copy expression.
573  *
574  * @param expression   the va_copy expression
575  */
576 static void print_va_copy(const va_copy_expression_t *expression)
577 {
578         print_string("__builtin_va_copy(");
579         print_assignment_expression(expression->dst);
580         print_string(", ");
581         print_assignment_expression(expression->src);
582         print_string(")");
583 }
584
585 /**
586  * Prints a select expression (. or ->).
587  *
588  * @param expression   the select expression
589  */
590 static void print_select(const select_expression_t *expression)
591 {
592         print_expression_prec(expression->compound, PREC_POSTFIX);
593         /* do not print anything for anonymous struct/union selects
594          * FIXME: if the anonymous select was a '->' this will print '.'
595          */
596         if (expression->compound_entry->base.symbol == NULL)
597                 return;
598
599         if (is_type_pointer(skip_typeref(expression->compound->base.type))) {
600                 print_string("->");
601         } else {
602                 print_string(".");
603         }
604         print_string(expression->compound_entry->base.symbol->string);
605 }
606
607 /**
608  * Prints a type classify expression.
609  *
610  * @param expr   the type classify expression
611  */
612 static void print_classify_type_expression(
613         const classify_type_expression_t *const expr)
614 {
615         print_string("__builtin_classify_type(");
616         print_assignment_expression(expr->type_expression);
617         print_string(")");
618 }
619
620 /**
621  * Prints a designator.
622  *
623  * @param designator  the designator
624  */
625 static void print_designator(const designator_t *designator)
626 {
627         for ( ; designator != NULL; designator = designator->next) {
628                 if (designator->symbol == NULL) {
629                         print_string("[");
630                         print_expression(designator->array_index);
631                         print_string("]");
632                 } else {
633                         print_string(".");
634                         print_string(designator->symbol->string);
635                 }
636         }
637 }
638
639 /**
640  * Prints an offsetof expression.
641  *
642  * @param expression   the offset expression
643  */
644 static void print_offsetof_expression(const offsetof_expression_t *expression)
645 {
646         print_string("__builtin_offsetof(");
647         print_type(expression->type);
648         print_string(",");
649         print_designator(expression->designator);
650         print_string(")");
651 }
652
653 /**
654  * Prints a statement expression.
655  *
656  * @param expression   the statement expression
657  */
658 static void print_statement_expression(const statement_expression_t *expression)
659 {
660         print_string("(");
661         print_statement(expression->statement);
662         print_string(")");
663 }
664
665 /**
666  * Prints an expression with parenthesis if needed.
667  *
668  * @param expression  the expression to print
669  * @param top_prec    the precedence of the user of this expression.
670  */
671 static void print_expression_prec(const expression_t *expression, unsigned top_prec)
672 {
673         if (expression->kind == EXPR_UNARY_CAST
674             && expression->base.implicit && !print_implicit_casts) {
675                 expression = expression->unary.value;
676         }
677
678         bool parenthesized =
679                 expression->base.parenthesized                 ||
680                 (print_parenthesis && top_prec != PREC_BOTTOM) ||
681                 top_prec > get_expression_precedence(expression->base.kind);
682
683         if (parenthesized)
684                 print_string("(");
685         switch (expression->kind) {
686         case EXPR_ERROR:
687                 print_string("$error$");
688                 break;
689         case EXPR_WIDE_STRING_LITERAL:
690         case EXPR_STRING_LITERAL:
691                 print_string_literal(&expression->string_literal);
692                 break;
693         EXPR_LITERAL_CASES
694                 print_literal(&expression->literal);
695                 break;
696         case EXPR_FUNCNAME:
697                 print_funcname(&expression->funcname);
698                 break;
699         case EXPR_COMPOUND_LITERAL:
700                 print_compound_literal(&expression->compound_literal);
701                 break;
702         case EXPR_CALL:
703                 print_call_expression(&expression->call);
704                 break;
705         EXPR_BINARY_CASES
706                 print_binary_expression(&expression->binary);
707                 break;
708         case EXPR_REFERENCE:
709         case EXPR_REFERENCE_ENUM_VALUE:
710                 print_reference_expression(&expression->reference);
711                 break;
712         case EXPR_ARRAY_ACCESS:
713                 print_array_expression(&expression->array_access);
714                 break;
715         case EXPR_LABEL_ADDRESS:
716                 print_label_address_expression(&expression->label_address);
717                 break;
718         EXPR_UNARY_CASES
719                 print_unary_expression(&expression->unary);
720                 break;
721         case EXPR_SIZEOF:
722         case EXPR_ALIGNOF:
723                 print_typeprop_expression(&expression->typeprop);
724                 break;
725         case EXPR_BUILTIN_CONSTANT_P:
726                 print_builtin_constant(&expression->builtin_constant);
727                 break;
728         case EXPR_BUILTIN_TYPES_COMPATIBLE_P:
729                 print_builtin_types_compatible(&expression->builtin_types_compatible);
730                 break;
731         case EXPR_CONDITIONAL:
732                 print_conditional(&expression->conditional);
733                 break;
734         case EXPR_VA_START:
735                 print_va_start(&expression->va_starte);
736                 break;
737         case EXPR_VA_ARG:
738                 print_va_arg(&expression->va_arge);
739                 break;
740         case EXPR_VA_COPY:
741                 print_va_copy(&expression->va_copye);
742                 break;
743         case EXPR_SELECT:
744                 print_select(&expression->select);
745                 break;
746         case EXPR_CLASSIFY_TYPE:
747                 print_classify_type_expression(&expression->classify_type);
748                 break;
749         case EXPR_OFFSETOF:
750                 print_offsetof_expression(&expression->offsetofe);
751                 break;
752         case EXPR_STATEMENT:
753                 print_statement_expression(&expression->statement);
754                 break;
755         }
756         if (parenthesized)
757                 print_string(")");
758 }
759
760 static void print_indented_statement(statement_t const *const stmt)
761 {
762         switch (stmt->kind) {
763         case STATEMENT_LABEL:
764                 break;
765
766         case STATEMENT_CASE_LABEL:
767                 for (int i = 0; i != case_indent; ++i)
768                         print_char('\t');
769                 break;
770
771         default:
772                 print_indent();
773                 break;
774         }
775         print_statement(stmt);
776 }
777
778 /**
779  * Print an compound statement.
780  *
781  * @param block  the compound statement
782  */
783 static void print_compound_statement(const compound_statement_t *block)
784 {
785         print_string("{\n");
786         ++indent;
787
788         statement_t *statement = block->statements;
789         while (statement != NULL) {
790                 print_indented_statement(statement);
791                 print_char('\n');
792
793                 statement = statement->base.next;
794         }
795         --indent;
796         print_indent();
797         print_char('}');
798 }
799
800 /**
801  * Print a return statement.
802  *
803  * @param statement  the return statement
804  */
805 static void print_return_statement(const return_statement_t *statement)
806 {
807         expression_t const *const val = statement->value;
808         if (val != NULL) {
809                 print_string("return ");
810                 print_expression(val);
811                 print_char(';');
812         } else {
813                 print_string("return;");
814         }
815 }
816
817 /**
818  * Print an expression statement.
819  *
820  * @param statement  the expression statement
821  */
822 static void print_expression_statement(const expression_statement_t *statement)
823 {
824         print_expression(statement->expression);
825         print_char(';');
826 }
827
828 /**
829  * Print a goto statement.
830  *
831  * @param statement  the goto statement
832  */
833 static void print_goto_statement(const goto_statement_t *statement)
834 {
835         print_string("goto ");
836         if (statement->expression != NULL) {
837                 print_string("*");
838                 print_expression(statement->expression);
839         } else {
840                 print_string(statement->label->base.symbol->string);
841         }
842         print_char(';');
843 }
844
845 /**
846  * Print a label statement.
847  *
848  * @param statement  the label statement
849  */
850 static void print_label_statement(const label_statement_t *statement)
851 {
852         print_format("%s:\n", statement->label->base.symbol->string);
853         print_indented_statement(statement->statement);
854 }
855
856 static void print_inner_statement(statement_t const *const stmt)
857 {
858         if (stmt->kind == STATEMENT_COMPOUND) {
859                 print_char(' ');
860                 print_compound_statement(&stmt->compound);
861         } else {
862                 print_char('\n');
863                 ++indent;
864                 print_indented_statement(stmt);
865                 --indent;
866         }
867 }
868
869 static void print_after_inner_statement(statement_t const *const stmt)
870 {
871         if (stmt->kind == STATEMENT_COMPOUND) {
872                 print_char(' ');
873         } else {
874                 print_char('\n');
875                 print_indent();
876         }
877 }
878
879 /**
880  * Print an if statement.
881  *
882  * @param statement  the if statement
883  */
884 static void print_if_statement(const if_statement_t *statement)
885 {
886         print_string("if (");
887         print_expression(statement->condition);
888         print_char(')');
889         print_inner_statement(statement->true_statement);
890
891         statement_t const *const f = statement->false_statement;
892         if (f) {
893                 print_after_inner_statement(statement->true_statement);
894                 print_string("else");
895                 if (f->kind == STATEMENT_IF) {
896                         print_char(' ');
897                         print_if_statement(&f->ifs);
898                 } else {
899                         print_inner_statement(f);
900                 }
901         }
902 }
903
904 /**
905  * Print a switch statement.
906  *
907  * @param statement  the switch statement
908  */
909 static void print_switch_statement(const switch_statement_t *statement)
910 {
911         int const old_case_indent = case_indent;
912         case_indent = indent;
913
914         print_string("switch (");
915         print_expression(statement->expression);
916         print_char(')');
917         print_inner_statement(statement->body);
918
919         case_indent = old_case_indent;
920 }
921
922 /**
923  * Print a case label (including the default label).
924  *
925  * @param statement  the case label statement
926  */
927 static void print_case_label(const case_label_statement_t *statement)
928 {
929         if (statement->expression == NULL) {
930                 print_string("default:\n");
931         } else {
932                 print_string("case ");
933                 print_expression(statement->expression);
934                 if (statement->end_range != NULL) {
935                         print_string(" ... ");
936                         print_expression(statement->end_range);
937                 }
938                 print_string(":\n");
939         }
940         print_indented_statement(statement->statement);
941 }
942
943 static void print_typedef(const entity_t *entity)
944 {
945         print_string("typedef ");
946         print_type_ext(entity->typedefe.type, entity->base.symbol, NULL);
947         print_string(";");
948 }
949
950 /**
951  * returns true if the entity is a compiler generated one and has no real
952  * correspondenc in the source file
953  */
954 static bool is_generated_entity(const entity_t *entity)
955 {
956         if (entity->kind == ENTITY_TYPEDEF)
957                 return entity->typedefe.builtin;
958
959         if (is_declaration(entity))
960                 return entity->declaration.implicit;
961
962         return false;
963 }
964
965 /**
966  * Print a declaration statement.
967  *
968  * @param statement   the statement
969  */
970 static void print_declaration_statement(
971                 const declaration_statement_t *statement)
972 {
973         bool first = true;
974         entity_t *entity = statement->declarations_begin;
975         if (entity == NULL) {
976                 print_string("/* empty declaration statement */");
977                 return;
978         }
979
980         entity_t *const end = statement->declarations_end->base.next;
981         for (; entity != end; entity = entity->base.next) {
982                 if (entity->kind == ENTITY_ENUM_VALUE)
983                         continue;
984                 if (is_generated_entity(entity))
985                         continue;
986
987                 if (!first) {
988                         print_char('\n');
989                         print_indent();
990                 } else {
991                         first = false;
992                 }
993
994                 print_entity(entity);
995         }
996 }
997
998 /**
999  * Print a while statement.
1000  *
1001  * @param statement   the statement
1002  */
1003 static void print_while_statement(const while_statement_t *statement)
1004 {
1005         print_string("while (");
1006         print_expression(statement->condition);
1007         print_char(')');
1008         print_inner_statement(statement->body);
1009 }
1010
1011 /**
1012  * Print a do-while statement.
1013  *
1014  * @param statement   the statement
1015  */
1016 static void print_do_while_statement(const do_while_statement_t *statement)
1017 {
1018         print_string("do");
1019         print_inner_statement(statement->body);
1020         print_after_inner_statement(statement->body);
1021         print_string("while (");
1022         print_expression(statement->condition);
1023         print_string(");");
1024 }
1025
1026 /**
1027  * Print a for statement.
1028  *
1029  * @param statement   the statement
1030  */
1031 static void print_for_statement(const for_statement_t *statement)
1032 {
1033         print_string("for (");
1034         if (statement->initialisation != NULL) {
1035                 print_expression(statement->initialisation);
1036                 print_string(";");
1037         } else {
1038                 entity_t const *entity = statement->scope.entities;
1039                 for (; entity != NULL; entity = entity->base.next) {
1040                         if (is_generated_entity(entity))
1041                                 continue;
1042                         /* FIXME display of multiple declarations is wrong */
1043                         print_declaration(entity);
1044                 }
1045         }
1046         if (statement->condition != NULL) {
1047                 print_string(" ");
1048                 print_expression(statement->condition);
1049         }
1050         print_string(";");
1051         if (statement->step != NULL) {
1052                 print_string(" ");
1053                 print_expression(statement->step);
1054         }
1055         print_char(')');
1056         print_inner_statement(statement->body);
1057 }
1058
1059 /**
1060  * Print assembler arguments.
1061  *
1062  * @param arguments   the arguments
1063  */
1064 static void print_asm_arguments(asm_argument_t *arguments)
1065 {
1066         asm_argument_t *argument = arguments;
1067         for (; argument != NULL; argument = argument->next) {
1068                 if (argument != arguments)
1069                         print_string(", ");
1070
1071                 if (argument->symbol) {
1072                         print_format("[%s] ", argument->symbol->string);
1073                 }
1074                 print_quoted_string(&argument->constraints, '"', 1);
1075                 print_string(" (");
1076                 print_expression(argument->expression);
1077                 print_string(")");
1078         }
1079 }
1080
1081 /**
1082  * Print assembler clobbers.
1083  *
1084  * @param clobbers   the clobbers
1085  */
1086 static void print_asm_clobbers(asm_clobber_t *clobbers)
1087 {
1088         asm_clobber_t *clobber = clobbers;
1089         for (; clobber != NULL; clobber = clobber->next) {
1090                 if (clobber != clobbers)
1091                         print_string(", ");
1092
1093                 print_quoted_string(&clobber->clobber, '"', 1);
1094         }
1095 }
1096
1097 /**
1098  * Print an assembler statement.
1099  *
1100  * @param statement   the statement
1101  */
1102 static void print_asm_statement(const asm_statement_t *statement)
1103 {
1104         print_string("asm ");
1105         if (statement->is_volatile) {
1106                 print_string("volatile ");
1107         }
1108         print_string("(");
1109         print_quoted_string(&statement->asm_text, '"', 1);
1110         if (statement->outputs  == NULL &&
1111             statement->inputs   == NULL &&
1112             statement->clobbers == NULL)
1113                 goto end_of_print_asm_statement;
1114
1115         print_string(" : ");
1116         print_asm_arguments(statement->outputs);
1117         if (statement->inputs == NULL && statement->clobbers == NULL)
1118                 goto end_of_print_asm_statement;
1119
1120         print_string(" : ");
1121         print_asm_arguments(statement->inputs);
1122         if (statement->clobbers == NULL)
1123                 goto end_of_print_asm_statement;
1124
1125         print_string(" : ");
1126         print_asm_clobbers(statement->clobbers);
1127
1128 end_of_print_asm_statement:
1129         print_string(");");
1130 }
1131
1132 /**
1133  * Print a microsoft __try statement.
1134  *
1135  * @param statement   the statement
1136  */
1137 static void print_ms_try_statement(const ms_try_statement_t *statement)
1138 {
1139         print_string("__try");
1140         print_inner_statement(statement->try_statement);
1141         print_after_inner_statement(statement->try_statement);
1142         if (statement->except_expression != NULL) {
1143                 print_string("__except(");
1144                 print_expression(statement->except_expression);
1145                 print_char(')');
1146         } else {
1147                 print_string("__finally");
1148         }
1149         print_inner_statement(statement->final_statement);
1150 }
1151
1152 /**
1153  * Print a microsoft __leave statement.
1154  *
1155  * @param statement   the statement
1156  */
1157 static void print_leave_statement(const leave_statement_t *statement)
1158 {
1159         (void)statement;
1160         print_string("__leave;");
1161 }
1162
1163 /**
1164  * Print a statement.
1165  *
1166  * @param statement   the statement
1167  */
1168 void print_statement(const statement_t *statement)
1169 {
1170         switch (statement->kind) {
1171         case STATEMENT_EMPTY:
1172                 print_char(';');
1173                 break;
1174         case STATEMENT_COMPOUND:
1175                 print_compound_statement(&statement->compound);
1176                 break;
1177         case STATEMENT_RETURN:
1178                 print_return_statement(&statement->returns);
1179                 break;
1180         case STATEMENT_EXPRESSION:
1181                 print_expression_statement(&statement->expression);
1182                 break;
1183         case STATEMENT_LABEL:
1184                 print_label_statement(&statement->label);
1185                 break;
1186         case STATEMENT_GOTO:
1187                 print_goto_statement(&statement->gotos);
1188                 break;
1189         case STATEMENT_CONTINUE:
1190                 print_string("continue;");
1191                 break;
1192         case STATEMENT_BREAK:
1193                 print_string("break;");
1194                 break;
1195         case STATEMENT_IF:
1196                 print_if_statement(&statement->ifs);
1197                 break;
1198         case STATEMENT_SWITCH:
1199                 print_switch_statement(&statement->switchs);
1200                 break;
1201         case STATEMENT_CASE_LABEL:
1202                 print_case_label(&statement->case_label);
1203                 break;
1204         case STATEMENT_DECLARATION:
1205                 print_declaration_statement(&statement->declaration);
1206                 break;
1207         case STATEMENT_WHILE:
1208                 print_while_statement(&statement->whiles);
1209                 break;
1210         case STATEMENT_DO_WHILE:
1211                 print_do_while_statement(&statement->do_while);
1212                 break;
1213         case STATEMENT_FOR:
1214                 print_for_statement(&statement->fors);
1215                 break;
1216         case STATEMENT_ASM:
1217                 print_asm_statement(&statement->asms);
1218                 break;
1219         case STATEMENT_MS_TRY:
1220                 print_ms_try_statement(&statement->ms_try);
1221                 break;
1222         case STATEMENT_LEAVE:
1223                 print_leave_statement(&statement->leave);
1224                 break;
1225         case STATEMENT_ERROR:
1226                 print_string("$error statement$");
1227                 break;
1228         }
1229 }
1230
1231 /**
1232  * Print a storage class.
1233  *
1234  * @param storage_class   the storage class
1235  */
1236 static void print_storage_class(storage_class_tag_t storage_class)
1237 {
1238         switch (storage_class) {
1239         case STORAGE_CLASS_NONE:     return;
1240         case STORAGE_CLASS_TYPEDEF:  print_string("typedef ");  return;
1241         case STORAGE_CLASS_EXTERN:   print_string("extern ");   return;
1242         case STORAGE_CLASS_STATIC:   print_string("static ");   return;
1243         case STORAGE_CLASS_AUTO:     print_string("auto ");     return;
1244         case STORAGE_CLASS_REGISTER: print_string("register "); return;
1245         }
1246         panic("invalid storage class");
1247 }
1248
1249 /**
1250  * Print an initializer.
1251  *
1252  * @param initializer  the initializer
1253  */
1254 void print_initializer(const initializer_t *initializer)
1255 {
1256         if (initializer == NULL) {
1257                 print_string("{}");
1258                 return;
1259         }
1260
1261         switch (initializer->kind) {
1262         case INITIALIZER_VALUE: {
1263                 const initializer_value_t *value = &initializer->value;
1264                 print_assignment_expression(value->value);
1265                 return;
1266         }
1267         case INITIALIZER_LIST: {
1268                 assert(initializer->kind == INITIALIZER_LIST);
1269                 print_string("{ ");
1270                 const initializer_list_t *list = &initializer->list;
1271
1272                 for (size_t i = 0 ; i < list->len; ++i) {
1273                         const initializer_t *sub_init = list->initializers[i];
1274                         print_initializer(list->initializers[i]);
1275                         if (i < list->len-1) {
1276                                 if (sub_init == NULL || sub_init->kind != INITIALIZER_DESIGNATOR)
1277                                         print_string(", ");
1278                         }
1279                 }
1280                 print_string(" }");
1281                 return;
1282         }
1283         case INITIALIZER_STRING:
1284                 print_quoted_string(&initializer->string.string, '"', 1);
1285                 return;
1286         case INITIALIZER_WIDE_STRING:
1287                 print_quoted_string(&initializer->string.string, '"', 1);
1288                 return;
1289         case INITIALIZER_DESIGNATOR:
1290                 print_designator(initializer->designator.designator);
1291                 print_string(" = ");
1292                 return;
1293         }
1294
1295         panic("invalid initializer kind found");
1296 }
1297
1298 #if 0
1299 /**
1300  * Print microsoft extended declaration modifiers.
1301  */
1302 static void print_ms_modifiers(const declaration_t *declaration)
1303 {
1304         if ((c_mode & _MS) == 0)
1305                 return;
1306
1307         decl_modifiers_t modifiers = declaration->modifiers;
1308
1309         bool        ds_shown = false;
1310         const char *next     = "(";
1311
1312         if (declaration->base.kind == ENTITY_VARIABLE) {
1313                 variable_t *variable = (variable_t*)declaration;
1314                 if (variable->alignment != 0
1315                                 || variable->get_property_sym != NULL
1316                                 || variable->put_property_sym != NULL) {
1317                         if (!ds_shown) {
1318                                 print_string("__declspec");
1319                                 ds_shown = true;
1320                         }
1321
1322                         if (variable->alignment != 0) {
1323                                 print_string(next); next = ", "; print_format("align(%u)", variable->alignment);
1324                         }
1325                         if (variable->get_property_sym != NULL
1326                                         || variable->put_property_sym != NULL) {
1327                                 char *comma = "";
1328                                 print_string(next); next = ", "; print_string("property(");
1329                                 if (variable->get_property_sym != NULL) {
1330                                         print_format("get=%s", variable->get_property_sym->string);
1331                                         comma = ", ";
1332                                 }
1333                                 if (variable->put_property_sym != NULL)
1334                                         print_format("%sput=%s", comma, variable->put_property_sym->string);
1335                                 print_string(")");
1336                         }
1337                 }
1338         }
1339
1340         /* DM_FORCEINLINE handled outside. */
1341         if ((modifiers & ~DM_FORCEINLINE) != 0) {
1342                 if (!ds_shown) {
1343                         print_string("__declspec");
1344                         ds_shown = true;
1345                 }
1346                 if (modifiers & DM_DLLIMPORT) {
1347                         print_string(next); next = ", "; print_string("dllimport");
1348                 }
1349                 if (modifiers & DM_DLLEXPORT) {
1350                         print_string(next); next = ", "; print_string("dllexport");
1351                 }
1352                 if (modifiers & DM_THREAD) {
1353                         print_string(next); next = ", "; print_string("thread");
1354                 }
1355                 if (modifiers & DM_NAKED) {
1356                         print_string(next); next = ", "; print_string("naked");
1357                 }
1358                 if (modifiers & DM_THREAD) {
1359                         print_string(next); next = ", "; print_string("thread");
1360                 }
1361                 if (modifiers & DM_SELECTANY) {
1362                         print_string(next); next = ", "; print_string("selectany");
1363                 }
1364                 if (modifiers & DM_NOTHROW) {
1365                         print_string(next); next = ", "; print_string("nothrow");
1366                 }
1367                 if (modifiers & DM_NORETURN) {
1368                         print_string(next); next = ", "; print_string("noreturn");
1369                 }
1370                 if (modifiers & DM_NOINLINE) {
1371                         print_string(next); next = ", "; print_string("noinline");
1372                 }
1373                 if (modifiers & DM_DEPRECATED) {
1374                         print_string(next); next = ", "; print_string("deprecated");
1375                         if (declaration->deprecated_string != NULL)
1376                                 print_format("(\"%s\")",
1377                                         declaration->deprecated_string);
1378                 }
1379                 if (modifiers & DM_RESTRICT) {
1380                         print_string(next); next = ", "; print_string("restrict");
1381                 }
1382                 if (modifiers & DM_NOALIAS) {
1383                         print_string(next); next = ", "; print_string("noalias");
1384                 }
1385         }
1386
1387         if (ds_shown)
1388                 print_string(") ");
1389 }
1390 #endif
1391
1392 static void print_scope(const scope_t *scope)
1393 {
1394         const entity_t *entity = scope->entities;
1395         for ( ; entity != NULL; entity = entity->base.next) {
1396                 print_indent();
1397                 print_entity(entity);
1398                 print_string("\n");
1399         }
1400 }
1401
1402 static void print_namespace(const namespace_t *namespace)
1403 {
1404         print_string("namespace ");
1405         if (namespace->base.symbol != NULL) {
1406                 print_string(namespace->base.symbol->string);
1407                 print_string(" ");
1408         }
1409
1410         print_string("{\n");
1411         ++indent;
1412
1413         print_scope(&namespace->members);
1414
1415         --indent;
1416         print_indent();
1417         print_string("}\n");
1418 }
1419
1420 /**
1421  * Print a variable or function declaration
1422  */
1423 void print_declaration(const entity_t *entity)
1424 {
1425         assert(is_declaration(entity));
1426         const declaration_t *declaration = &entity->declaration;
1427
1428         print_storage_class((storage_class_tag_t)declaration->declared_storage_class);
1429         if (entity->kind == ENTITY_FUNCTION) {
1430                 function_t *function = (function_t*)declaration;
1431                 if (function->is_inline) {
1432                         if (declaration->modifiers & DM_FORCEINLINE) {
1433                                 print_string("__forceinline ");
1434                         } else if (declaration->modifiers & DM_MICROSOFT_INLINE) {
1435                                 print_string("__inline ");
1436                         } else {
1437                                 print_string("inline ");
1438                         }
1439                 }
1440         }
1441         //print_ms_modifiers(declaration);
1442         switch (entity->kind) {
1443                 case ENTITY_FUNCTION:
1444                         print_type_ext(entity->declaration.type, entity->base.symbol,
1445                                         &entity->function.parameters);
1446
1447                         if (entity->function.statement != NULL) {
1448                                 print_string("\n");
1449                                 print_indented_statement(entity->function.statement);
1450                                 print_char('\n');
1451                                 return;
1452                         }
1453                         break;
1454
1455                 case ENTITY_VARIABLE:
1456                         if (entity->variable.thread_local)
1457                                 print_string("__thread ");
1458                         print_type_ext(declaration->type, declaration->base.symbol, NULL);
1459                         if (entity->variable.initializer != NULL) {
1460                                 print_string(" = ");
1461                                 print_initializer(entity->variable.initializer);
1462                         }
1463                         break;
1464
1465                 case ENTITY_COMPOUND_MEMBER:
1466                         print_type_ext(declaration->type, declaration->base.symbol, NULL);
1467                         if (entity->compound_member.bitfield) {
1468                                 print_format(" : %u", entity->compound_member.bit_size);
1469                         }
1470                         break;
1471
1472                 default:
1473                         print_type_ext(declaration->type, declaration->base.symbol, NULL);
1474                         break;
1475         }
1476         print_string(";");
1477 }
1478
1479 /**
1480  * Prints an expression.
1481  *
1482  * @param expression  the expression
1483  */
1484 void print_expression(const expression_t *expression)
1485 {
1486         print_expression_prec(expression, PREC_BOTTOM);
1487 }
1488
1489 /**
1490  * Print a declaration.
1491  *
1492  * @param declaration  the declaration
1493  */
1494 void print_entity(const entity_t *entity)
1495 {
1496         if (entity->base.namespc != NAMESPACE_NORMAL && entity->base.symbol == NULL)
1497                 return;
1498
1499         switch ((entity_kind_tag_t)entity->kind) {
1500         case ENTITY_VARIABLE:
1501         case ENTITY_PARAMETER:
1502         case ENTITY_COMPOUND_MEMBER:
1503         case ENTITY_FUNCTION:
1504                 print_declaration(entity);
1505                 return;
1506         case ENTITY_TYPEDEF:
1507                 print_typedef(entity);
1508                 return;
1509         case ENTITY_CLASS:
1510                 /* TODO */
1511                 print_string("class ");
1512                 print_string(entity->base.symbol->string);
1513                 print_string("; /* TODO */\n");
1514                 return;
1515         case ENTITY_STRUCT:
1516                 print_string("struct ");
1517                 goto print_compound;
1518         case ENTITY_UNION:
1519                 print_string("union ");
1520 print_compound:
1521                 print_string(entity->base.symbol->string);
1522                 if (entity->compound.complete) {
1523                         print_string(" ");
1524                         print_compound_definition(&entity->compound);
1525                 }
1526                 print_string(";");
1527                 return;
1528         case ENTITY_ENUM:
1529                 print_string("enum ");
1530                 print_string(entity->base.symbol->string);
1531                 print_string(" ");
1532                 print_enum_definition(&entity->enume);
1533                 print_string(";");
1534                 return;
1535         case ENTITY_NAMESPACE:
1536                 print_namespace(&entity->namespacee);
1537                 return;
1538         case ENTITY_LOCAL_LABEL:
1539                 print_string("__label__ ");
1540                 print_string(entity->base.symbol->string);
1541                 print_string(";");
1542                 return;
1543         case ENTITY_LABEL:
1544         case ENTITY_ENUM_VALUE:
1545                 panic("print_entity used on unexpected entity type");
1546         }
1547         panic("Invalid entity type encountered");
1548 }
1549
1550 /**
1551  * Print the AST of a translation unit.
1552  *
1553  * @param unit   the translation unit
1554  */
1555 void print_ast(const translation_unit_t *unit)
1556 {
1557         entity_t *entity = unit->scope.entities;
1558         for ( ; entity != NULL; entity = entity->base.next) {
1559                 if (entity->kind == ENTITY_ENUM_VALUE)
1560                         continue;
1561                 if (entity->base.namespc != NAMESPACE_NORMAL
1562                                 && entity->base.symbol == NULL)
1563                         continue;
1564                 if (is_generated_entity(entity))
1565                         continue;
1566
1567                 print_indent();
1568                 print_entity(entity);
1569                 print_string("\n");
1570         }
1571 }
1572
1573 expression_classification_t is_constant_initializer(const initializer_t *initializer)
1574 {
1575         switch (initializer->kind) {
1576         case INITIALIZER_STRING:
1577         case INITIALIZER_WIDE_STRING:
1578         case INITIALIZER_DESIGNATOR:
1579                 return EXPR_CLASS_CONSTANT;
1580
1581         case INITIALIZER_VALUE:
1582                 return is_linker_constant(initializer->value.value);
1583
1584         case INITIALIZER_LIST: {
1585                 expression_classification_t all = EXPR_CLASS_CONSTANT;
1586                 for (size_t i = 0; i < initializer->list.len; ++i) {
1587                         initializer_t *sub_initializer = initializer->list.initializers[i];
1588                         expression_classification_t const cur = is_constant_initializer(sub_initializer);
1589                         if (all > cur) {
1590                                 all = cur;
1591                         }
1592                 }
1593                 return all;
1594         }
1595         }
1596         panic("invalid initializer kind found");
1597 }
1598
1599 /**
1600  * Checks if an expression references an object with a constant/known location
1601  * to the linker. Example:
1602  *  - "x", "*&x" with x being a global variable. The value of x need not be
1603  *         constant but the address of x is.
1604  *  - "a.b.c" when a has a constant/known location to the linker
1605  */
1606 static expression_classification_t is_object_with_linker_constant_address(
1607         const expression_t *expression)
1608 {
1609         switch (expression->kind) {
1610         case EXPR_UNARY_DEREFERENCE:
1611                 return is_linker_constant(expression->unary.value);
1612
1613         case EXPR_SELECT: {
1614                 type_t *base_type = skip_typeref(expression->select.compound->base.type);
1615                 if (is_type_pointer(base_type)) {
1616                         /* it's a -> */
1617                         return is_linker_constant(expression->select.compound);
1618                 } else {
1619                         return is_object_with_linker_constant_address(expression->select.compound);
1620                 }
1621         }
1622
1623         case EXPR_ARRAY_ACCESS: {
1624                 expression_classification_t const ref = is_linker_constant(expression->array_access.array_ref);
1625                 expression_classification_t const idx = is_constant_expression(expression->array_access.index);
1626                 return ref < idx ? ref : idx;
1627         }
1628
1629         case EXPR_REFERENCE: {
1630                 entity_t *entity = expression->reference.entity;
1631                 if (!is_declaration(entity))
1632                         return EXPR_CLASS_VARIABLE;
1633
1634                 switch ((storage_class_tag_t)entity->declaration.storage_class) {
1635                 case STORAGE_CLASS_NONE:
1636                 case STORAGE_CLASS_EXTERN:
1637                 case STORAGE_CLASS_STATIC:
1638                         return
1639                                 entity->kind != ENTITY_VARIABLE ||
1640                                 !entity->variable.thread_local ? EXPR_CLASS_CONSTANT :
1641                                 EXPR_CLASS_VARIABLE;
1642
1643                 case STORAGE_CLASS_REGISTER:
1644                 case STORAGE_CLASS_TYPEDEF:
1645                 case STORAGE_CLASS_AUTO:
1646                         break;
1647                 }
1648                 return EXPR_CLASS_VARIABLE;
1649         }
1650
1651         case EXPR_ERROR:
1652                 return EXPR_CLASS_ERROR;
1653
1654         default:
1655                 return EXPR_CLASS_VARIABLE;
1656         }
1657 }
1658
1659 expression_classification_t is_linker_constant(const expression_t *expression)
1660 {
1661         switch (expression->kind) {
1662         case EXPR_STRING_LITERAL:
1663         case EXPR_WIDE_STRING_LITERAL:
1664         case EXPR_FUNCNAME:
1665         case EXPR_LABEL_ADDRESS:
1666                 return EXPR_CLASS_CONSTANT;
1667
1668         case EXPR_COMPOUND_LITERAL:
1669                 return is_constant_initializer(expression->compound_literal.initializer);
1670
1671         case EXPR_UNARY_TAKE_ADDRESS:
1672                 return is_object_with_linker_constant_address(expression->unary.value);
1673
1674         case EXPR_UNARY_DEREFERENCE: {
1675                 type_t *real_type
1676                         = revert_automatic_type_conversion(expression->unary.value);
1677                 /* dereferencing a function is a NOP */
1678                 if (is_type_function(real_type)) {
1679                         return is_linker_constant(expression->unary.value);
1680                 }
1681                 /* FALLTHROUGH */
1682         }
1683
1684         case EXPR_UNARY_CAST: {
1685                 type_t *dest = skip_typeref(expression->base.type);
1686                 if (!is_type_pointer(dest) && (
1687                                 dest->kind != TYPE_ATOMIC                                               ||
1688                                 !(get_atomic_type_flags(dest->atomic.akind) & ATOMIC_TYPE_FLAG_INTEGER) ||
1689                                 get_atomic_type_size(dest->atomic.akind) < get_type_size(type_void_ptr)
1690                     ))
1691                         return is_constant_expression(expression);
1692
1693                 return is_linker_constant(expression->unary.value);
1694         }
1695
1696         case EXPR_BINARY_ADD:
1697         case EXPR_BINARY_SUB: {
1698                 expression_t *const left  = expression->binary.left;
1699                 expression_t *const right = expression->binary.right;
1700                 type_t       *const ltype = skip_typeref(left->base.type);
1701                 type_t       *const rtype = skip_typeref(right->base.type);
1702
1703                 if (is_type_pointer(ltype)) {
1704                         expression_classification_t const l = is_linker_constant(left);
1705                         expression_classification_t const r = is_constant_expression(right);
1706                         return l < r ? l : r;
1707                 } else if (is_type_pointer(rtype)) {
1708                         expression_classification_t const l = is_constant_expression(left);
1709                         expression_classification_t const r = is_linker_constant(right);
1710                         return l < r ? l : r;
1711                 } else if (!is_type_valid(ltype) || !is_type_valid(rtype)) {
1712                         return EXPR_CLASS_ERROR;
1713                 } else {
1714                         return is_constant_expression(expression);
1715                 }
1716         }
1717
1718         case EXPR_REFERENCE: {
1719                 entity_t *entity = expression->reference.entity;
1720                 if (!is_declaration(entity))
1721                         return EXPR_CLASS_VARIABLE;
1722
1723                 type_t *type = skip_typeref(entity->declaration.type);
1724                 if (is_type_function(type))
1725                         return EXPR_CLASS_CONSTANT;
1726                 if (is_type_array(type)) {
1727                         return is_object_with_linker_constant_address(expression);
1728                 }
1729                 /* Prevent stray errors */
1730                 if (!is_type_valid(type))
1731                         return EXPR_CLASS_ERROR;
1732                 return EXPR_CLASS_VARIABLE;
1733         }
1734
1735         case EXPR_ARRAY_ACCESS: {
1736                 type_t *const type =
1737                         skip_typeref(revert_automatic_type_conversion(expression));
1738                 if (!is_type_array(type))
1739                         return EXPR_CLASS_VARIABLE;
1740                 return is_linker_constant(expression->array_access.array_ref);
1741         }
1742
1743         case EXPR_CONDITIONAL: {
1744                 expression_t *const c = expression->conditional.condition;
1745                 expression_classification_t const cclass = is_constant_expression(c);
1746                 if (cclass != EXPR_CLASS_CONSTANT)
1747                         return cclass;
1748
1749                 if (fold_constant_to_bool(c)) {
1750                         expression_t const *const t = expression->conditional.true_expression;
1751                         return is_linker_constant(t != NULL ? t : c);
1752                 } else {
1753                         return is_linker_constant(expression->conditional.false_expression);
1754                 }
1755         }
1756
1757         case EXPR_SELECT: {
1758                 entity_t *entity = expression->select.compound_entry;
1759                 if (!is_declaration(entity))
1760                         return EXPR_CLASS_VARIABLE;
1761                 type_t *type = skip_typeref(entity->declaration.type);
1762                 if (is_type_array(type)) {
1763                         /* arrays automatically convert to their address */
1764                         expression_t *compound  = expression->select.compound;
1765                         type_t       *base_type = skip_typeref(compound->base.type);
1766                         if (is_type_pointer(base_type)) {
1767                                 /* it's a -> */
1768                                 return is_linker_constant(compound);
1769                         } else {
1770                                 return is_object_with_linker_constant_address(compound);
1771                         }
1772                 }
1773                 return EXPR_CLASS_VARIABLE;
1774         }
1775
1776         default:
1777                 return is_constant_expression(expression);
1778         }
1779 }
1780
1781 /**
1782  * Check if the given expression is a call to a builtin function
1783  * returning a constant result.
1784  */
1785 static expression_classification_t is_builtin_const_call(const expression_t *expression)
1786 {
1787         expression_t *function = expression->call.function;
1788         if (function->kind != EXPR_REFERENCE)
1789                 return EXPR_CLASS_VARIABLE;
1790         reference_expression_t *ref = &function->reference;
1791         if (ref->entity->kind != ENTITY_FUNCTION)
1792                 return EXPR_CLASS_VARIABLE;
1793
1794         switch (ref->entity->function.btk) {
1795         case BUILTIN_INF:
1796         case BUILTIN_NAN:
1797                 return EXPR_CLASS_CONSTANT;
1798         default:
1799                 return EXPR_CLASS_VARIABLE;
1800         }
1801
1802 }
1803
1804 static expression_classification_t is_constant_pointer(const expression_t *expression)
1805 {
1806         expression_classification_t const expr_class = is_constant_expression(expression);
1807         if (expr_class != EXPR_CLASS_VARIABLE)
1808                 return expr_class;
1809
1810         switch (expression->kind) {
1811         case EXPR_UNARY_CAST:
1812                 return is_constant_pointer(expression->unary.value);
1813         default:
1814                 return EXPR_CLASS_VARIABLE;
1815         }
1816 }
1817
1818 static expression_classification_t is_object_with_constant_address(const expression_t *expression)
1819 {
1820         switch (expression->kind) {
1821         case EXPR_SELECT: {
1822                 expression_t *compound      = expression->select.compound;
1823                 type_t       *compound_type = compound->base.type;
1824                 compound_type = skip_typeref(compound_type);
1825                 if (is_type_pointer(compound_type)) {
1826                         return is_constant_pointer(compound);
1827                 } else {
1828                         return is_object_with_constant_address(compound);
1829                 }
1830         }
1831
1832         case EXPR_ARRAY_ACCESS: {
1833                 array_access_expression_t const* const array_access =
1834                         &expression->array_access;
1835                 expression_classification_t const idx_class = is_constant_expression(array_access->index);
1836                 if (idx_class != EXPR_CLASS_CONSTANT)
1837                         return idx_class;
1838                 expression_classification_t const ref_addr = is_object_with_constant_address(array_access->array_ref);
1839                 expression_classification_t const ref_ptr  = is_constant_pointer(array_access->array_ref);
1840                 return ref_addr > ref_ptr ? ref_addr : ref_ptr;
1841         }
1842
1843         case EXPR_UNARY_DEREFERENCE:
1844                 return is_constant_pointer(expression->unary.value);
1845
1846         case EXPR_ERROR:
1847                 return EXPR_CLASS_ERROR;
1848
1849         default:
1850                 return EXPR_CLASS_VARIABLE;
1851         }
1852 }
1853
1854 expression_classification_t is_constant_expression(const expression_t *expression)
1855 {
1856         switch (expression->kind) {
1857         EXPR_LITERAL_CASES
1858         case EXPR_CLASSIFY_TYPE:
1859         case EXPR_OFFSETOF:
1860         case EXPR_ALIGNOF:
1861         case EXPR_BUILTIN_CONSTANT_P:
1862         case EXPR_BUILTIN_TYPES_COMPATIBLE_P:
1863         case EXPR_REFERENCE_ENUM_VALUE:
1864                 return EXPR_CLASS_CONSTANT;
1865
1866         case EXPR_SIZEOF: {
1867                 type_t *const type = skip_typeref(expression->typeprop.type);
1868                 return
1869                         !is_type_array(type) || !type->array.is_vla ? EXPR_CLASS_CONSTANT :
1870                         EXPR_CLASS_VARIABLE;
1871         }
1872
1873         case EXPR_STRING_LITERAL:
1874         case EXPR_WIDE_STRING_LITERAL:
1875         case EXPR_FUNCNAME:
1876         case EXPR_LABEL_ADDRESS:
1877         case EXPR_SELECT:
1878         case EXPR_VA_START:
1879         case EXPR_VA_ARG:
1880         case EXPR_VA_COPY:
1881         case EXPR_STATEMENT:
1882         case EXPR_UNARY_POSTFIX_INCREMENT:
1883         case EXPR_UNARY_POSTFIX_DECREMENT:
1884         case EXPR_UNARY_PREFIX_INCREMENT:
1885         case EXPR_UNARY_PREFIX_DECREMENT:
1886         case EXPR_UNARY_ASSUME: /* has VOID type */
1887         case EXPR_UNARY_DEREFERENCE:
1888         case EXPR_UNARY_DELETE:
1889         case EXPR_UNARY_DELETE_ARRAY:
1890         case EXPR_UNARY_THROW:
1891         case EXPR_BINARY_ASSIGN:
1892         case EXPR_BINARY_MUL_ASSIGN:
1893         case EXPR_BINARY_DIV_ASSIGN:
1894         case EXPR_BINARY_MOD_ASSIGN:
1895         case EXPR_BINARY_ADD_ASSIGN:
1896         case EXPR_BINARY_SUB_ASSIGN:
1897         case EXPR_BINARY_SHIFTLEFT_ASSIGN:
1898         case EXPR_BINARY_SHIFTRIGHT_ASSIGN:
1899         case EXPR_BINARY_BITWISE_AND_ASSIGN:
1900         case EXPR_BINARY_BITWISE_XOR_ASSIGN:
1901         case EXPR_BINARY_BITWISE_OR_ASSIGN:
1902         case EXPR_BINARY_COMMA:
1903         case EXPR_ARRAY_ACCESS:
1904                 return EXPR_CLASS_VARIABLE;
1905
1906         case EXPR_REFERENCE: {
1907                 type_t *const type = skip_typeref(expression->base.type);
1908                 return is_type_valid(type) ? EXPR_CLASS_VARIABLE : EXPR_CLASS_ERROR;
1909         }
1910
1911         case EXPR_UNARY_TAKE_ADDRESS:
1912                 return is_object_with_constant_address(expression->unary.value);
1913
1914         case EXPR_CALL:
1915                 return is_builtin_const_call(expression);
1916
1917         case EXPR_UNARY_NEGATE:
1918         case EXPR_UNARY_PLUS:
1919         case EXPR_UNARY_BITWISE_NEGATE:
1920         case EXPR_UNARY_NOT:
1921                 return is_constant_expression(expression->unary.value);
1922
1923         case EXPR_UNARY_CAST: {
1924                 type_t *const type = skip_typeref(expression->base.type);
1925                 if (is_type_scalar(type))
1926                         return is_constant_expression(expression->unary.value);
1927                 if (!is_type_valid(type))
1928                         return EXPR_CLASS_ERROR;
1929                 return EXPR_CLASS_VARIABLE;
1930         }
1931
1932         case EXPR_BINARY_ADD:
1933         case EXPR_BINARY_SUB:
1934         case EXPR_BINARY_MUL:
1935         case EXPR_BINARY_DIV:
1936         case EXPR_BINARY_MOD:
1937         case EXPR_BINARY_EQUAL:
1938         case EXPR_BINARY_NOTEQUAL:
1939         case EXPR_BINARY_LESS:
1940         case EXPR_BINARY_LESSEQUAL:
1941         case EXPR_BINARY_GREATER:
1942         case EXPR_BINARY_GREATEREQUAL:
1943         case EXPR_BINARY_BITWISE_AND:
1944         case EXPR_BINARY_BITWISE_OR:
1945         case EXPR_BINARY_BITWISE_XOR:
1946         case EXPR_BINARY_SHIFTLEFT:
1947         case EXPR_BINARY_SHIFTRIGHT:
1948         case EXPR_BINARY_ISGREATER:
1949         case EXPR_BINARY_ISGREATEREQUAL:
1950         case EXPR_BINARY_ISLESS:
1951         case EXPR_BINARY_ISLESSEQUAL:
1952         case EXPR_BINARY_ISLESSGREATER:
1953         case EXPR_BINARY_ISUNORDERED: {
1954                 expression_classification_t const l = is_constant_expression(expression->binary.left);
1955                 expression_classification_t const r = is_constant_expression(expression->binary.right);
1956                 return l < r ? l : r;
1957         }
1958
1959         case EXPR_BINARY_LOGICAL_AND: {
1960                 expression_t const         *const left   = expression->binary.left;
1961                 expression_classification_t const lclass = is_constant_expression(left);
1962                 if (lclass != EXPR_CLASS_CONSTANT)
1963                         return lclass;
1964                 if (!fold_constant_to_bool(left))
1965                         return EXPR_CLASS_CONSTANT;
1966                 return is_constant_expression(expression->binary.right);
1967         }
1968
1969         case EXPR_BINARY_LOGICAL_OR: {
1970                 expression_t const         *const left   = expression->binary.left;
1971                 expression_classification_t const lclass = is_constant_expression(left);
1972                 if (lclass != EXPR_CLASS_CONSTANT)
1973                         return lclass;
1974                 if (fold_constant_to_bool(left))
1975                         return EXPR_CLASS_CONSTANT;
1976                 return is_constant_expression(expression->binary.right);
1977         }
1978
1979         case EXPR_COMPOUND_LITERAL:
1980                 return is_constant_initializer(expression->compound_literal.initializer);
1981
1982         case EXPR_CONDITIONAL: {
1983                 expression_t               *const condition = expression->conditional.condition;
1984                 expression_classification_t const cclass    = is_constant_expression(condition);
1985                 if (cclass != EXPR_CLASS_CONSTANT)
1986                         return cclass;
1987
1988                 if (fold_constant_to_bool(condition)) {
1989                         expression_t const *const t = expression->conditional.true_expression;
1990                         return t == NULL ? EXPR_CLASS_CONSTANT : is_constant_expression(t);
1991                 } else {
1992                         return is_constant_expression(expression->conditional.false_expression);
1993                 }
1994         }
1995
1996         case EXPR_ERROR:
1997                 return EXPR_CLASS_ERROR;
1998         }
1999         panic("invalid expression found (is constant expression)");
2000 }
2001
2002 void init_ast(void)
2003 {
2004         obstack_init(&ast_obstack);
2005 }
2006
2007 void exit_ast(void)
2008 {
2009         obstack_free(&ast_obstack, NULL);
2010 }