- add -f[no-]short-wchar
[cparser] / parser.c
index b0031ea..baa943a 100644 (file)
--- a/parser.c
+++ b/parser.c
 #include "adt/error.h"
 #include "adt/array.h"
 
+/** if wchar_t is equal to unsigned short. */
+bool opt_short_wchar_t =
+#ifdef _WIN32
+       true;
+#else
+       false;
+#endif
+
 //#define PRINT_TOKENS
 #define MAX_LOOKAHEAD 2
 
@@ -48,16 +56,24 @@ typedef struct {
        unsigned short namespc;
 } stack_entry_t;
 
+typedef struct argument_list_t argument_list_t;
+struct argument_list_t {
+       long              argument;
+       argument_list_t  *next;
+};
+
 typedef struct gnu_attribute_t gnu_attribute_t;
 struct gnu_attribute_t {
-       gnu_attribute_kind_t kind;
+       gnu_attribute_kind_t kind;           /**< The kind of the GNU attribute. */
        gnu_attribute_t     *next;
-       bool                 invalid;
-       bool                 have_arguments;
+       bool                 invalid;        /**< Set if this attribute had argument errors, */
+       bool                 have_arguments; /**< True, if this attribute has arguments. */
        union {
                size_t              value;
                string_t            string;
                atomic_type_kind_t  akind;
+               long                argument;  /**< Single argument. */
+               argument_list_t    *arguments; /**< List of argument expressions. */
        } u;
 };
 
@@ -100,6 +116,7 @@ static declaration_t      *last_declaration  = NULL;
 static declaration_t      *current_function  = NULL;
 static switch_statement_t *current_switch    = NULL;
 static statement_t        *current_loop      = NULL;
+static statement_t        *current_parent    = NULL;
 static ms_try_statement_t *current_try       = NULL;
 static goto_statement_t   *goto_first        = NULL;
 static goto_statement_t   *goto_last         = NULL;
@@ -108,6 +125,11 @@ static label_statement_t  *label_last        = NULL;
 static translation_unit_t *unit              = NULL;
 static struct obstack      temp_obst;
 
+#define PUSH_PARENT(stmt)                          \
+       statement_t *const prev_parent = current_parent; \
+       current_parent = (stmt);
+#define POP_PARENT ((void)(current_parent = prev_parent))
+
 static source_position_t null_position = { NULL, 0 };
 
 /* symbols for Microsoft extended-decl-modifier */
@@ -157,7 +179,8 @@ static void semantic_comparison(binary_expression_t *expression);
        case T_extern:          \
        case T_static:          \
        case T_auto:            \
-       case T_register:
+       case T_register:        \
+       case T___thread:
 
 #define TYPE_QUALIFIERS     \
        case T_const:           \
@@ -312,7 +335,8 @@ static statement_t *allocate_statement_zero(statement_kind_t kind)
        size_t       size = get_statement_struct_size(kind);
        statement_t *res  = allocate_ast_zero(size);
 
-       res->base.kind = kind;
+       res->base.kind   = kind;
+       res->base.parent = current_parent;
        return res;
 }
 
@@ -491,19 +515,22 @@ static inline const token_t *look_ahead(int num)
 /**
  * Adds a token to the token anchor set (a multi-set).
  */
-static void add_anchor_token(int token_type) {
+static void add_anchor_token(int token_type)
+{
        assert(0 <= token_type && token_type < T_LAST_TOKEN);
        ++token_anchor_set[token_type];
 }
 
-static int save_and_reset_anchor_state(int token_type) {
+static int save_and_reset_anchor_state(int token_type)
+{
        assert(0 <= token_type && token_type < T_LAST_TOKEN);
        int count = token_anchor_set[token_type];
        token_anchor_set[token_type] = 0;
        return count;
 }
 
-static void restore_anchor_state(int token_type, int count) {
+static void restore_anchor_state(int token_type, int count)
+{
        assert(0 <= token_type && token_type < T_LAST_TOKEN);
        token_anchor_set[token_type] = count;
 }
@@ -511,12 +538,14 @@ static void restore_anchor_state(int token_type, int count) {
 /**
  * Remove a token from the token anchor set (a multi-set).
  */
-static void rem_anchor_token(int token_type) {
+static void rem_anchor_token(int token_type)
+{
        assert(0 <= token_type && token_type < T_LAST_TOKEN);
        --token_anchor_set[token_type];
 }
 
-static bool at_anchor(void) {
+static bool at_anchor(void)
+{
        if (token.type < 0)
                return false;
        return token_anchor_set[token.type];
@@ -525,11 +554,8 @@ static bool at_anchor(void) {
 /**
  * Eat tokens until a matching token is found.
  */
-static void eat_until_matching_token(int type) {
-       unsigned parenthesis_count = 0;
-       unsigned brace_count = 0;
-       unsigned bracket_count = 0;
-
+static void eat_until_matching_token(int type)
+{
        int end_token;
        switch (type) {
                case '(': end_token = ')';  break;
@@ -538,26 +564,40 @@ static void eat_until_matching_token(int type) {
                default:  end_token = type; break;
        }
 
-       while(token.type != end_token ||
-             (parenthesis_count > 0 || brace_count > 0 || bracket_count > 0)) {
-
-               switch(token.type) {
+       unsigned parenthesis_count = 0;
+       unsigned brace_count       = 0;
+       unsigned bracket_count     = 0;
+       while (token.type        != end_token ||
+              parenthesis_count != 0         ||
+              brace_count       != 0         ||
+              bracket_count     != 0) {
+               switch (token.type) {
                case T_EOF: return;
                case '(': ++parenthesis_count; break;
                case '{': ++brace_count;       break;
                case '[': ++bracket_count;     break;
+
                case ')':
                        if (parenthesis_count > 0)
                                --parenthesis_count;
-                       break;
+                       goto check_stop;
+
                case '}':
                        if (brace_count > 0)
                                --brace_count;
-                       break;
+                       goto check_stop;
+
                case ']':
                        if (bracket_count > 0)
                                --bracket_count;
+check_stop:
+                       if (token.type        == end_token &&
+                           parenthesis_count == 0         &&
+                           brace_count       == 0         &&
+                           bracket_count     == 0)
+                               return;
                        break;
+
                default:
                        break;
                }
@@ -568,10 +608,11 @@ static void eat_until_matching_token(int type) {
 /**
  * Eat input tokens until an anchor is found.
  */
-static void eat_until_anchor(void) {
+static void eat_until_anchor(void)
+{
        if (token.type == T_EOF)
                return;
-       while(token_anchor_set[token.type] == 0) {
+       while (token_anchor_set[token.type] == 0) {
                if (token.type == '(' || token.type == '{' || token.type == '[')
                        eat_until_matching_token(token.type);
                if (token.type == T_EOF)
@@ -580,7 +621,8 @@ static void eat_until_anchor(void) {
        }
 }
 
-static void eat_block(void) {
+static void eat_block(void)
+{
        eat_until_matching_token('{');
        if (token.type == '}')
                next_token();
@@ -589,13 +631,14 @@ static void eat_block(void) {
 /**
  * eat all token until a ';' is reached or a stop token is found.
  */
-static void eat_statement(void) {
+static void eat_statement(void)
+{
        eat_until_matching_token(';');
        if (token.type == ';')
                next_token();
 }
 
-#define eat(token_type)  do { assert(token.type == token_type); next_token(); } while(0)
+#define eat(token_type)  do { assert(token.type == token_type); next_token(); } while (0)
 
 /**
  * Report a parse error because an expected token was not found.
@@ -651,7 +694,7 @@ static void type_error_incompatible(const char *msg,
         goto end_error;                               \
     }                                                 \
     next_token();                                     \
-       } while(0)
+       } while (0)
 
 static void set_scope(scope_t *new_scope)
 {
@@ -727,6 +770,11 @@ static void environment_push(declaration_t *declaration)
        stack_push(&environment_stack, declaration);
 }
 
+/**
+ * Push a declaration of the label stack.
+ *
+ * @param declaration  the declaration
+ */
 static void label_push(declaration_t *declaration)
 {
        declaration->parent_scope = &current_function->scope;
@@ -788,13 +836,19 @@ static void environment_pop_to(size_t new_top)
        stack_pop_to(&environment_stack, new_top);
 }
 
+/**
+ * Pop all entries on the label stack until the new_top
+ * is reached.
+ *
+ * @param new_top  the new stack top
+ */
 static void label_pop_to(size_t new_top)
 {
        stack_pop_to(&label_stack, new_top);
 }
 
 
-static int get_rank(const type_t *type)
+static atomic_type_kind_t get_rank(const type_t *type)
 {
        assert(!is_typeref(type));
        /* The C-standard allows promoting enums to int or unsigned int (see ยง 7.2.2
@@ -913,9 +967,9 @@ static void report_assign_error(assign_error_t error, type_t *orig_type_left,
                /* the left type has all qualifiers from the right type */
                unsigned missing_qualifiers
                        = points_to_right->base.qualifiers & ~points_to_left->base.qualifiers;
-               errorf(source_position,
-                      "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointed-to type",
-                      orig_type_left, context, orig_type_right, missing_qualifiers);
+               warningf(source_position,
+                        "destination type '%T' in %s from type '%T' lacks qualifiers '%Q' in pointed-to type",
+                        orig_type_left, context, orig_type_right, missing_qualifiers);
                return;
        }
 
@@ -1057,7 +1111,7 @@ static string_t parse_string_literals(void)
        return result;
 }
 
-static const char *gnu_attribute_names[GNU_AK_LAST] = {
+static const char *const gnu_attribute_names[GNU_AK_LAST] = {
        [GNU_AK_CONST]                  = "const",
        [GNU_AK_VOLATILE]               = "volatile",
        [GNU_AK_CDECL]                  = "cdecl",
@@ -1071,7 +1125,7 @@ static const char *gnu_attribute_names[GNU_AK_LAST] = {
        [GNU_AK_ALWAYS_INLINE]          = "always_inline",
        [GNU_AK_MALLOC]                 = "malloc",
        [GNU_AK_WEAK]                   = "weak",
-       [GNU_AK_CONSTRUCTOR]            = "constructor",
+       [GNU_AK_CONSTRUCTOR]            = "constructor",
        [GNU_AK_DESTRUCTOR]             = "destructor",
        [GNU_AK_NOTHROW]                = "nothrow",
        [GNU_AK_TRANSPARENT_UNION]      = "transparent_union",
@@ -1085,15 +1139,15 @@ static const char *gnu_attribute_names[GNU_AK_LAST] = {
        [GNU_AK_NO_INSTRUMENT_FUNCTION] = "no_instrument_function",
        [GNU_AK_WARN_UNUSED_RESULT]     = "warn_unused_result",
        [GNU_AK_LONGCALL]               = "longcall",
-       [GNU_AK_SHORTCALL]              = "shortcall",
+       [GNU_AK_SHORTCALL]              = "shortcall",
        [GNU_AK_LONG_CALL]              = "long_call",
-       [GNU_AK_SHORT_CALL]             = "short_call",
+       [GNU_AK_SHORT_CALL]             = "short_call",
        [GNU_AK_FUNCTION_VECTOR]        = "function_vector",
-       [GNU_AK_INTERRUPT]                              = "interrupt",
-       [GNU_AK_INTERRUPT_HANDLER]      = "interrupt_handler",
-       [GNU_AK_NMI_HANDLER]            = "nmi_handler",
-       [GNU_AK_NESTING]                = "nesting",
-       [GNU_AK_NEAR]                   = "near",
+       [GNU_AK_INTERRUPT]              = "interrupt",
+       [GNU_AK_INTERRUPT_HANDLER]      = "interrupt_handler",
+       [GNU_AK_NMI_HANDLER]            = "nmi_handler",
+       [GNU_AK_NESTING]                = "nesting",
+       [GNU_AK_NEAR]                   = "near",
        [GNU_AK_FAR]                    = "far",
        [GNU_AK_SIGNAL]                 = "signal",
        [GNU_AK_EIGTHBIT_DATA]          = "eightbit_data",
@@ -1128,7 +1182,8 @@ static const char *gnu_attribute_names[GNU_AK_LAST] = {
 /**
  * compare two string, ignoring double underscores on the second.
  */
-static int strcmp_underscore(const char *s1, const char *s2) {
+static int strcmp_underscore(const char *s1, const char *s2)
+{
        if (s2[0] == '_' && s2[1] == '_') {
                size_t len2 = strlen(s2);
                size_t len1 = strlen(s1);
@@ -1143,7 +1198,8 @@ static int strcmp_underscore(const char *s1, const char *s2) {
 /**
  * Allocate a new gnu temporal attribute.
  */
-static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind) {
+static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind)
+{
        gnu_attribute_t *attribute = obstack_alloc(&temp_obst, sizeof(*attribute));
        attribute->kind            = kind;
        attribute->next            = NULL;
@@ -1156,13 +1212,14 @@ static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind) {
 /**
  * parse one constant expression argument.
  */
-static void parse_gnu_attribute_const_arg(gnu_attribute_t *attribute) {
+static void parse_gnu_attribute_const_arg(gnu_attribute_t *attribute)
+{
        expression_t *expression;
        add_anchor_token(')');
        expression = parse_constant_expression();
        rem_anchor_token(')');
        expect(')');
-       (void)expression;
+       attribute->u.argument = fold_constant(expression);
        return;
 end_error:
        attribute->invalid = true;
@@ -1171,12 +1228,20 @@ end_error:
 /**
  * parse a list of constant expressions arguments.
  */
-static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute) {
-       expression_t *expression;
+static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute)
+{
+       argument_list_t **list = &attribute->u.arguments;
+       argument_list_t  *entry;
+       expression_t     *expression;
        add_anchor_token(')');
        add_anchor_token(',');
-       while(true){
+       while (true) {
                expression = parse_constant_expression();
+               entry = obstack_alloc(&temp_obst, sizeof(entry));
+               entry->argument = fold_constant(expression);
+               entry->next     = NULL;
+               *list = entry;
+               list = &entry->next;
                if (token.type != ',')
                        break;
                next_token();
@@ -1184,7 +1249,6 @@ static void parse_gnu_attribute_const_arg_list(gnu_attribute_t *attribute) {
        rem_anchor_token(',');
        rem_anchor_token(')');
        expect(')');
-       (void)expression;
        return;
 end_error:
        attribute->invalid = true;
@@ -1213,8 +1277,9 @@ end_error:
 /**
  * parse one tls model.
  */
-static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute) {
-       static const char *tls_models[] = {
+static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute)
+{
+       static const char *const tls_models[] = {
                "global-dynamic",
                "local-dynamic",
                "initial-exec",
@@ -1237,8 +1302,9 @@ static void parse_gnu_attribute_tls_model_arg(gnu_attribute_t *attribute) {
 /**
  * parse one tls model.
  */
-static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute) {
-       static const char *visibilities[] = {
+static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute)
+{
+       static const char *const visibilities[] = {
                "default",
                "protected",
                "hidden",
@@ -1261,8 +1327,9 @@ static void parse_gnu_attribute_visibility_arg(gnu_attribute_t *attribute) {
 /**
  * parse one (code) model.
  */
-static void parse_gnu_attribute_model_arg(gnu_attribute_t *attribute) {
-       static const char *visibilities[] = {
+static void parse_gnu_attribute_model_arg(gnu_attribute_t *attribute)
+{
+       static const char *const visibilities[] = {
                "small",
                "medium",
                "large"
@@ -1323,8 +1390,9 @@ end_error:
 /**
  * parse one interrupt argument.
  */
-static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute) {
-       static const char *interrupts[] = {
+static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute)
+{
+       static const char *const interrupts[] = {
                "IRQ",
                "FIQ",
                "SWI",
@@ -1348,8 +1416,9 @@ static void parse_gnu_attribute_interrupt_arg(gnu_attribute_t *attribute) {
 /**
  * parse ( identifier, const expression, const expression )
  */
-static void parse_gnu_attribute_format_args(gnu_attribute_t *attribute) {
-       static const char *format_names[] = {
+static void parse_gnu_attribute_format_args(gnu_attribute_t *attribute)
+{
+       static const char *const format_names[] = {
                "printf",
                "scanf",
                "strftime",
@@ -1492,12 +1561,12 @@ static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
        if (token.type != ')') {
                /* find the end of the list */
                if (last != NULL) {
-                       while(last->next != NULL)
+                       while (last->next != NULL)
                                last = last->next;
                }
 
                /* non-empty attribute list */
-               while(true) {
+               while (true) {
                        const char *name;
                        if (token.type == T_const) {
                                name = "const";
@@ -1547,7 +1616,6 @@ static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
                                switch(kind) {
                                case GNU_AK_CONST:
                                case GNU_AK_VOLATILE:
-                               case GNU_AK_DEPRECATED:
                                case GNU_AK_NAKED:
                                case GNU_AK_MALLOC:
                                case GNU_AK_WEAK:
@@ -1555,7 +1623,6 @@ static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
                                case GNU_AK_NOCOMMON:
                                case GNU_AK_SHARED:
                                case GNU_AK_NOTSHARED:
-                               case GNU_AK_UNUSED:
                                case GNU_AK_NO_INSTRUMENT_FUNCTION:
                                case GNU_AK_WARN_UNUSED_RESULT:
                                case GNU_AK_LONGCALL:
@@ -1584,6 +1651,7 @@ static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
                                case GNU_AK_CDECL:             modifiers |= DM_CDECL;             goto no_arg;
                                case GNU_AK_FASTCALL:          modifiers |= DM_FASTCALL;          goto no_arg;
                                case GNU_AK_STDCALL:           modifiers |= DM_STDCALL;           goto no_arg;
+                               case GNU_AK_UNUSED:            modifiers |= DM_UNUSED;            goto no_arg;
                                case GNU_AK_USED:              modifiers |= DM_USED;              goto no_arg;
                                case GNU_AK_PURE:              modifiers |= DM_PURE;              goto no_arg;
                                case GNU_AK_ALWAYS_INLINE:     modifiers |= DM_FORCEINLINE;       goto no_arg;
@@ -1596,6 +1664,7 @@ static decl_modifiers_t parse_gnu_attribute(gnu_attribute_t **attributes)
                                case GNU_AK_TRANSPARENT_UNION: modifiers |= DM_TRANSPARENT_UNION; goto no_arg;
                                case GNU_AK_CONSTRUCTOR:       modifiers |= DM_CONSTRUCTOR;       goto no_arg;
                                case GNU_AK_DESTRUCTOR:        modifiers |= DM_DESTRUCTOR;        goto no_arg;
+                               case GNU_AK_DEPRECATED:        modifiers |= DM_DEPRECATED;        goto no_arg;
 
                                case GNU_AK_ALIGNED:
                                        /* __align__ may be used without an argument */
@@ -1718,7 +1787,7 @@ static decl_modifiers_t parse_attributes(gnu_attribute_t **attributes)
 {
        decl_modifiers_t modifiers = 0;
 
-       while(true) {
+       while (true) {
                switch(token.type) {
                case T___attribute__:
                        modifiers |= parse_gnu_attribute(attributes);
@@ -1760,7 +1829,7 @@ static designator_t *parse_designation(void)
        designator_t *result = NULL;
        designator_t *last   = NULL;
 
-       while(true) {
+       while (true) {
                designator_t *designator;
                switch(token.type) {
                case '[':
@@ -1924,7 +1993,7 @@ static initializer_t *parse_scalar_initializer(type_t *type,
        }
 
        bool additional_warning_displayed = false;
-       while(braces > 0) {
+       while (braces > 0) {
                if (token.type == ',') {
                        next_token();
                }
@@ -1983,7 +2052,7 @@ static __attribute__((unused)) void debug_print_type_path(
                        }
                        fprintf(stderr, ".%s", entry->v.compound_entry->symbol->string);
                } else if (is_type_array(type)) {
-                       fprintf(stderr, "[%zd]", entry->v.index);
+                       fprintf(stderr, "[%zu]", entry->v.index);
                } else {
                        fprintf(stderr, "-INVALID-");
                }
@@ -2073,7 +2142,7 @@ static void ascend_to(type_path_t *path, size_t top_path_level)
 {
        size_t len = ARR_LEN(path->path);
 
-       while(len > top_path_level) {
+       while (len > top_path_level) {
                ascend_from_subtype(path);
                len = ARR_LEN(path->path);
        }
@@ -2216,8 +2285,9 @@ static void advance_current_object(type_path_t *path, size_t top_path_level)
 /**
  * skip until token is found.
  */
-static void skip_until(int type) {
-       while(token.type != type) {
+static void skip_until(int type)
+{
+       while (token.type != type) {
                if (token.type == T_EOF)
                        return;
                next_token();
@@ -2232,7 +2302,7 @@ static void skip_initializers(void)
        if (token.type == '{')
                next_token();
 
-       while(token.type != '}') {
+       while (token.type != '}') {
                if (token.type == T_EOF)
                        return;
                if (token.type == '{') {
@@ -2280,11 +2350,20 @@ static initializer_t *parse_sub_initializer(type_path_t *path,
 
        initializer_t **initializers = NEW_ARR_F(initializer_t*, 0);
 
-       while(true) {
+       while (true) {
                designator_t *designator = NULL;
                if (token.type == '.' || token.type == '[') {
                        designator = parse_designation();
+                       goto finish_designator;
+               } else if (token.type == T_IDENTIFIER && look_ahead(1)->type == ':') {
+                       /* GNU-style designator ("identifier: value") */
+                       designator = allocate_ast_zero(sizeof(designator[0]));
+                       designator->source_position = token.source_position;
+                       designator->symbol          = token.v.symbol;
+                       eat(T_IDENTIFIER);
+                       eat(':');
 
+finish_designator:
                        /* reset path to toplevel, evaluate designator from there */
                        ascend_to(path, top_path_level);
                        if (!walk_designator(path, designator, false)) {
@@ -2365,7 +2444,7 @@ static initializer_t *parse_sub_initializer(type_path_t *path,
                        }
 
                        /* descend into subtypes until expression matches type */
-                       while(true) {
+                       while (true) {
                                orig_type = path->top_type;
                                type      = skip_typeref(orig_type);
 
@@ -2646,7 +2725,7 @@ static void parse_enum_entries(type_t *const enum_type)
                if (token.type != ',')
                        break;
                next_token();
-       } while(token.type != '}');
+       } while (token.type != '}');
        rem_anchor_token('}');
 
        expect('}');
@@ -2730,11 +2809,11 @@ static type_t *parse_typeof(void)
 restart:
        switch(token.type) {
        case T___extension__:
-               /* this can be a prefix to a typename or an expression */
-               /* we simply eat it now. */
+               /* This can be a prefix to a typename or an expression.  We simply eat
+                * it now. */
                do {
                        next_token();
-               } while(token.type == T___extension__);
+               } while (token.type == T___extension__);
                goto restart;
 
        case T_IDENTIFIER:
@@ -2820,7 +2899,8 @@ static type_t *get_typedef_type(symbol_t *symbol)
 /**
  * check for the allowed MS alignment values.
  */
-static bool check_elignment_value(long long intvalue) {
+static bool check_alignment_value(long long intvalue)
+{
        if (intvalue < 1 || intvalue > 8192) {
                errorf(HERE, "illegal alignment value");
                return false;
@@ -2837,13 +2917,13 @@ static bool check_elignment_value(long long intvalue) {
 #define DET_MOD(name, tag) do { \
        if (*modifiers & tag) warningf(HERE, #name " used more than once"); \
        *modifiers |= tag; \
-} while(0)
+} while (0)
 
 static void parse_microsoft_extended_decl_modifier(declaration_specifiers_t *specifiers)
 {
        decl_modifiers_t *modifiers = &specifiers->modifiers;
 
-       while(true) {
+       while (true) {
                if (token.type == T_restrict) {
                        next_token();
                        DET_MOD(restrict, DM_RESTRICT);
@@ -2856,7 +2936,7 @@ static void parse_microsoft_extended_decl_modifier(declaration_specifiers_t *spe
                        expect('(');
                        if (token.type != T_INTEGER)
                                goto end_error;
-                       if (check_elignment_value(token.v.intvalue)) {
+                       if (check_alignment_value(token.v.intvalue)) {
                                if (specifiers->alignment != 0)
                                        warningf(HERE, "align used more than once");
                                specifiers->alignment = (unsigned char)token.v.intvalue;
@@ -2981,11 +3061,12 @@ static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
        type_qualifiers_t  qualifiers      = TYPE_QUALIFIER_NONE;
        type_modifiers_t   modifiers       = TYPE_MODIFIER_NONE;
        unsigned           type_specifiers = 0;
-       int                newtype         = 0;
+       bool               newtype         = false;
+       bool               saw_error       = false;
 
        specifiers->source_position = token.source_position;
 
-       while(true) {
+       while (true) {
                specifiers->modifiers
                        |= parse_attributes(&specifiers->gnu_attributes);
                if (specifiers->modifiers & DM_TRANSPARENT_UNION)
@@ -3044,7 +3125,7 @@ static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
                case token:                                                     \
                        qualifiers |= qualifier;                                    \
                        next_token();                                               \
-                       break;
+                       break
 
                MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
                MATCH_TYPE_QUALIFIER(T_restrict, TYPE_QUALIFIER_RESTRICT);
@@ -3069,28 +3150,29 @@ static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
                        } else {                                                    \
                                type_specifiers |= specifier;                           \
                        }                                                           \
-                       break;
-
-               MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void")
-               MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char")
-               MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short")
-               MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int")
-               MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float")
-               MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double")
-               MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed")
-               MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned")
-               MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool")
-               MATCH_SPECIFIER(T__int8,      SPECIFIER_INT8,      "_int8")
-               MATCH_SPECIFIER(T__int16,     SPECIFIER_INT16,     "_int16")
-               MATCH_SPECIFIER(T__int32,     SPECIFIER_INT32,     "_int32")
-               MATCH_SPECIFIER(T__int64,     SPECIFIER_INT64,     "_int64")
-               MATCH_SPECIFIER(T__int128,    SPECIFIER_INT128,    "_int128")
-               MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex")
-               MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary")
+                       break
+
+               MATCH_SPECIFIER(T_void,       SPECIFIER_VOID,      "void");
+               MATCH_SPECIFIER(T_char,       SPECIFIER_CHAR,      "char");
+               MATCH_SPECIFIER(T_short,      SPECIFIER_SHORT,     "short");
+               MATCH_SPECIFIER(T_int,        SPECIFIER_INT,       "int");
+               MATCH_SPECIFIER(T_float,      SPECIFIER_FLOAT,     "float");
+               MATCH_SPECIFIER(T_double,     SPECIFIER_DOUBLE,    "double");
+               MATCH_SPECIFIER(T_signed,     SPECIFIER_SIGNED,    "signed");
+               MATCH_SPECIFIER(T_unsigned,   SPECIFIER_UNSIGNED,  "unsigned");
+               MATCH_SPECIFIER(T__Bool,      SPECIFIER_BOOL,      "_Bool");
+               MATCH_SPECIFIER(T__int8,      SPECIFIER_INT8,      "_int8");
+               MATCH_SPECIFIER(T__int16,     SPECIFIER_INT16,     "_int16");
+               MATCH_SPECIFIER(T__int32,     SPECIFIER_INT32,     "_int32");
+               MATCH_SPECIFIER(T__int64,     SPECIFIER_INT64,     "_int64");
+               MATCH_SPECIFIER(T__int128,    SPECIFIER_INT128,    "_int128");
+               MATCH_SPECIFIER(T__Complex,   SPECIFIER_COMPLEX,   "_Complex");
+               MATCH_SPECIFIER(T__Imaginary, SPECIFIER_IMAGINARY, "_Imaginary");
 
                case T__forceinline:
                        /* only in microsoft mode */
                        specifiers->modifiers |= DM_FORCEINLINE;
+                       /* FALLTHROUGH */
 
                case T_inline:
                        next_token();
@@ -3134,13 +3216,50 @@ static void parse_declaration_specifiers(declaration_specifiers_t *specifiers)
 
                case T_IDENTIFIER: {
                        /* only parse identifier if we haven't found a type yet */
-                       if (type != NULL || type_specifiers != 0)
-                               goto finish_specifiers;
+                       if (type != NULL || type_specifiers != 0) {
+                               /* Be somewhat resilient to typos like 'unsigned lng* f()' in a
+                                * declaration, so it doesn't generate errors about expecting '(' or
+                                * '{' later on. */
+                               switch (look_ahead(1)->type) {
+                                       STORAGE_CLASSES
+                                       TYPE_SPECIFIERS
+                                       case T_const:
+                                       case T_restrict:
+                                       case T_volatile:
+                                       case T_inline:
+                                       case T__forceinline: /* ^ DECLARATION_START except for __attribute__ */
+                                       case T_IDENTIFIER:
+                                       case '*':
+                                               errorf(HERE, "discarding stray %K in declaration specifer", &token);
+                                               next_token();
+                                               continue;
+
+                                       default:
+                                               goto finish_specifiers;
+                               }
+                       }
 
-                       type_t *typedef_type = get_typedef_type(token.v.symbol);
+                       type_t *const typedef_type = get_typedef_type(token.v.symbol);
+                       if (typedef_type == NULL) {
+                               /* Be somewhat resilient to typos like 'vodi f()' at the beginning of a
+                                * declaration, so it doesn't generate 'implicit int' followed by more
+                                * errors later on. */
+                               token_type_t const la1_type = (token_type_t)look_ahead(1)->type;
+                               switch (la1_type) {
+                                       DECLARATION_START
+                                       case T_IDENTIFIER:
+                                       case '*':
+                                               errorf(HERE, "%K does not name a type", &token);
+                                               next_token();
+                                               saw_error = true;
+                                               if (la1_type == '*')
+                                                       goto finish_specifiers;
+                                               continue;
 
-                       if (typedef_type == NULL)
-                               goto finish_specifiers;
+                                       default:
+                                               goto finish_specifiers;
+                               }
+                       }
 
                        next_token();
                        type = typedef_type;
@@ -3201,17 +3320,24 @@ finish_specifiers:
                case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_INT:
                        atomic_type = ATOMIC_TYPE_ULONG;
                        break;
+
                case SPECIFIER_LONG | SPECIFIER_LONG_LONG:
                case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
                case SPECIFIER_LONG | SPECIFIER_LONG_LONG | SPECIFIER_INT:
                case SPECIFIER_SIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
                        | SPECIFIER_INT:
                        atomic_type = ATOMIC_TYPE_LONGLONG;
-                       break;
+                       goto warn_about_long_long;
+
                case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG:
                case SPECIFIER_UNSIGNED | SPECIFIER_LONG | SPECIFIER_LONG_LONG
                        | SPECIFIER_INT:
                        atomic_type = ATOMIC_TYPE_ULONGLONG;
+warn_about_long_long:
+                       if (warning.long_long) {
+                               warningf(&specifiers->source_position,
+                                        "ISO C90 does not support 'long long'");
+                       }
                        break;
 
                case SPECIFIER_UNSIGNED | SPECIFIER_INT8:
@@ -3286,7 +3412,12 @@ finish_specifiers:
                default:
                        /* invalid specifier combination, give an error message */
                        if (type_specifiers == 0) {
-                               if (! strict_mode) {
+                               if (saw_error) {
+                                       specifiers->type = type_error_type;
+                                       return;
+                               }
+
+                               if (!strict_mode) {
                                        if (warning.implicit_int) {
                                                warningf(HERE, "no type specifiers in declaration, using 'int'");
                                        }
@@ -3297,7 +3428,7 @@ finish_specifiers:
                                }
                        } else if ((type_specifiers & SPECIFIER_SIGNED) &&
                                  (type_specifiers & SPECIFIER_UNSIGNED)) {
-                               errorf(HERE, "signed and unsigned specifiers gives");
+                               errorf(HERE, "signed and unsigned specifiers given");
                        } else if (type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
                                errorf(HERE, "only integer types can be signed or unsigned");
                        } else {
@@ -3318,11 +3449,9 @@ finish_specifiers:
                        type               = allocate_type_zero(TYPE_ATOMIC, &builtin_source_position);
                        type->atomic.akind = atomic_type;
                }
-               newtype = 1;
-       } else {
-               if (type_specifiers != 0) {
-                       errorf(HERE, "multiple datatypes in declaration");
-               }
+               newtype = true;
+       } else if (type_specifiers != 0) {
+               errorf(HERE, "multiple datatypes in declaration");
        }
 
        /* FIXME: check type qualifiers here */
@@ -3344,7 +3473,7 @@ static type_qualifiers_t parse_type_qualifiers(void)
 {
        type_qualifiers_t qualifiers = TYPE_QUALIFIER_NONE;
 
-       while(true) {
+       while (true) {
                switch(token.type) {
                /* type qualifiers */
                MATCH_TYPE_QUALIFIER(T_const,    TYPE_QUALIFIER_CONST);
@@ -3385,7 +3514,7 @@ static declaration_t *parse_identifier_list(void)
                        break;
                }
                next_token();
-       } while(token.type == T_IDENTIFIER);
+       } while (token.type == T_IDENTIFIER);
 
        return declarations;
 }
@@ -3395,12 +3524,21 @@ static type_t *automatic_type_conversion(type_t *orig_type);
 static void semantic_parameter(declaration_t *declaration)
 {
        /* TODO: improve error messages */
+       source_position_t const* const pos = &declaration->source_position;
+
+       switch (declaration->declared_storage_class) {
+               case STORAGE_CLASS_TYPEDEF:
+                       errorf(pos, "typedef not allowed in parameter list");
+                       break;
 
-       if (declaration->declared_storage_class == STORAGE_CLASS_TYPEDEF) {
-               errorf(HERE, "typedef not allowed in parameter list");
-       } else if (declaration->declared_storage_class != STORAGE_CLASS_NONE
-                       && declaration->declared_storage_class != STORAGE_CLASS_REGISTER) {
-               errorf(HERE, "parameter may only have none or register storage class");
+               /* Allowed storage classes */
+               case STORAGE_CLASS_NONE:
+               case STORAGE_CLASS_REGISTER:
+                       break;
+
+               default:
+                       errorf(pos, "parameter may only have none or register storage class");
+                       break;
        }
 
        type_t *const orig_type = declaration->type;
@@ -3413,7 +3551,7 @@ static void semantic_parameter(declaration_t *declaration)
        declaration->type = type;
 
        if (is_type_incomplete(skip_typeref(type))) {
-               errorf(HERE, "incomplete type '%T' not allowed for parameter '%Y'",
+               errorf(pos, "incomplete type '%T' not allowed for parameter '%Y'",
                       orig_type, declaration->symbol);
        }
 }
@@ -3457,7 +3595,7 @@ static declaration_t *parse_parameters(function_type_t *type)
        function_parameter_t *parameter;
        function_parameter_t *last_parameter = NULL;
 
-       while(true) {
+       while (true) {
                switch(token.type) {
                case T_DOTDOTDOT:
                        next_token();
@@ -3626,7 +3764,7 @@ static construct_type_t *parse_function_declarator(declaration_t *declaration)
                                else if (second == NULL) second = "stdcall";
                        }
                        if (declaration->modifiers & DM_FASTCALL) {
-                               if (first == NULL)       first = "faslcall";
+                               if (first == NULL)       first = "fastcall";
                                else if (second == NULL) second = "fastcall";
                        }
                        if (declaration->modifiers & DM_THISCALL) {
@@ -3696,7 +3834,7 @@ static construct_type_t *parse_inner_declarator(declaration_t *declaration,
        decl_modifiers_t modifiers = parse_attributes(&attributes);
 
        /* pointers */
-       while(token.type == '*') {
+       while (token.type == '*') {
                construct_type_t *type = parse_pointer_declarator();
 
                if (last == NULL) {
@@ -3711,6 +3849,9 @@ static construct_type_t *parse_inner_declarator(declaration_t *declaration,
                modifiers |= parse_attributes(&attributes);
        }
 
+       if (declaration != NULL)
+               declaration->modifiers |= modifiers;
+
        construct_type_t *inner_types = NULL;
 
        switch(token.type) {
@@ -3727,6 +3868,8 @@ static construct_type_t *parse_inner_declarator(declaration_t *declaration,
                next_token();
                add_anchor_token(')');
                inner_types = parse_inner_declarator(declaration, may_be_abstract);
+               /* All later declarators only modify the return type, not declaration */
+               declaration = NULL;
                rem_anchor_token(')');
                expect(')');
                break;
@@ -3916,9 +4059,9 @@ static declaration_t *parse_declarator(
                const declaration_specifiers_t *specifiers, bool may_be_abstract)
 {
        declaration_t *const declaration    = allocate_declaration_zero();
+       declaration->source_position        = specifiers->source_position;
        declaration->declared_storage_class = specifiers->declared_storage_class;
        declaration->modifiers              = specifiers->modifiers;
-       declaration->deprecated             = specifiers->deprecated;
        declaration->deprecated_string      = specifiers->deprecated_string;
        declaration->get_property_sym       = specifiers->get_property_sym;
        declaration->put_property_sym       = specifiers->put_property_sym;
@@ -4017,11 +4160,11 @@ static void check_type_of_main(const declaration_t *const decl, const function_t
                                                 "third argument of 'main' should be 'char**', but is '%T'", third_type);
                                }
                                parm = parm->next;
-                               if (parm != NULL) {
-                                       warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
-                               }
+                               if (parm != NULL)
+                                       goto warn_arg_count;
                        }
                } else {
+warn_arg_count:
                        warningf(&decl->source_position, "'main' takes only zero, two or three arguments");
                }
        }
@@ -4037,12 +4180,12 @@ static bool is_sym_main(const symbol_t *const sym)
 
 static declaration_t *internal_record_declaration(
        declaration_t *const declaration,
-       const bool is_function_definition)
+       const bool is_definition)
 {
        const symbol_t *const symbol  = declaration->symbol;
        const namespace_t     namespc = (namespace_t)declaration->namespc;
 
-       assert(declaration->symbol != NULL);
+       assert(symbol != NULL);
        declaration_t *previous_declaration = get_declaration(symbol, namespc);
 
        type_t *const orig_type = declaration->type;
@@ -4056,10 +4199,17 @@ static declaration_t *internal_record_declaration(
                         orig_type, declaration->symbol);
        }
 
-       if (is_function_definition && warning.main && is_sym_main(symbol)) {
+       if (warning.main && is_type_function(type) && is_sym_main(symbol)) {
                check_type_of_main(declaration, &type->function);
        }
 
+       if (warning.nested_externs                             &&
+           declaration->storage_class == STORAGE_CLASS_EXTERN &&
+           scope                      != global_scope) {
+               warningf(&declaration->source_position,
+                        "nested extern declaration of '%#T'", declaration->type, symbol);
+       }
+
        assert(declaration != previous_declaration);
        if (previous_declaration != NULL
                        && previous_declaration->parent_scope == scope) {
@@ -4083,6 +4233,16 @@ static declaration_t *internal_record_declaration(
                                return previous_declaration;
                        }
 
+                       if (warning.redundant_decls                                     &&
+                           is_definition                                               &&
+                           previous_declaration->storage_class == STORAGE_CLASS_STATIC &&
+                           !(previous_declaration->modifiers & DM_USED)                &&
+                           !previous_declaration->used) {
+                               warningf(&previous_declaration->source_position,
+                                        "unnecessary static forward declaration for '%#T'",
+                                        previous_declaration->type, symbol);
+                       }
+
                        unsigned new_storage_class = declaration->storage_class;
 
                        if (is_type_incomplete(prev_type)) {
@@ -4105,10 +4265,10 @@ static declaration_t *internal_record_declaration(
                                        /* FALLTHROUGH */
 
                                case STORAGE_CLASS_EXTERN:
-                                       if (is_function_definition) {
+                                       if (is_definition) {
                                                if (warning.missing_prototypes &&
-                                                       prev_type->function.unspecified_parameters &&
-                                                       !is_sym_main(symbol)) {
+                                                   prev_type->function.unspecified_parameters &&
+                                                   !is_sym_main(symbol)) {
                                                        warningf(&declaration->source_position,
                                                                         "no previous prototype for '%#T'",
                                                                         orig_type, symbol);
@@ -4126,40 +4286,42 @@ static declaration_t *internal_record_declaration(
                        if (old_storage_class == STORAGE_CLASS_EXTERN &&
                                        new_storage_class == STORAGE_CLASS_EXTERN) {
 warn_redundant_declaration:
-                               if (warning.redundant_decls && strcmp(previous_declaration->source_position.input_name, "<builtin>") != 0) {
+                               if (!is_definition          &&
+                                   warning.redundant_decls &&
+                                   strcmp(previous_declaration->source_position.input_name, "<builtin>") != 0) {
                                        warningf(&declaration->source_position,
-                                                        "redundant declaration for '%Y' (declared %P)",
-                                                        symbol, &previous_declaration->source_position);
+                                                "redundant declaration for '%Y' (declared %P)",
+                                                symbol, &previous_declaration->source_position);
                                }
                        } else if (current_function == NULL) {
                                if (old_storage_class != STORAGE_CLASS_STATIC &&
-                                               new_storage_class == STORAGE_CLASS_STATIC) {
+                                   new_storage_class == STORAGE_CLASS_STATIC) {
                                        errorf(&declaration->source_position,
-                                                  "static declaration of '%Y' follows non-static declaration (declared %P)",
-                                                  symbol, &previous_declaration->source_position);
-                               } else if (old_storage_class != STORAGE_CLASS_EXTERN
-                                               && !is_function_definition) {
-                                       goto warn_redundant_declaration;
+                                              "static declaration of '%Y' follows non-static declaration (declared %P)",
+                                              symbol, &previous_declaration->source_position);
                                } else if (old_storage_class == STORAGE_CLASS_EXTERN) {
                                        previous_declaration->storage_class          = STORAGE_CLASS_NONE;
                                        previous_declaration->declared_storage_class = STORAGE_CLASS_NONE;
+                               } else {
+                                       goto warn_redundant_declaration;
                                }
                        } else if (old_storage_class == new_storage_class) {
                                errorf(&declaration->source_position,
-                                          "redeclaration of '%Y' (declared %P)",
-                                          symbol, &previous_declaration->source_position);
+                                      "redeclaration of '%Y' (declared %P)",
+                                      symbol, &previous_declaration->source_position);
                        } else {
                                errorf(&declaration->source_position,
-                                          "redeclaration of '%Y' with different linkage (declared %P)",
-                                          symbol, &previous_declaration->source_position);
+                                      "redeclaration of '%Y' with different linkage (declared %P)",
+                                      symbol, &previous_declaration->source_position);
                        }
                }
 
-               if (declaration->is_inline)
-                       previous_declaration->is_inline = true;
+               previous_declaration->modifiers |= declaration->modifiers;
+               previous_declaration->is_inline |= declaration->is_inline;
                return previous_declaration;
-       } else if (is_function_definition) {
-               if (declaration->storage_class != STORAGE_CLASS_STATIC) {
+       } else if (is_type_function(type)) {
+               if (is_definition &&
+                   declaration->storage_class != STORAGE_CLASS_STATIC) {
                        if (warning.missing_prototypes && !is_sym_main(symbol)) {
                                warningf(&declaration->source_position,
                                         "no previous prototype for '%#T'", orig_type, symbol);
@@ -4169,14 +4331,15 @@ warn_redundant_declaration:
                                         symbol);
                        }
                }
-       } else if (warning.missing_declarations &&
-           scope == global_scope &&
-           !is_type_function(type) && (
-             declaration->storage_class == STORAGE_CLASS_NONE ||
-             declaration->storage_class == STORAGE_CLASS_THREAD
-           )) {
-               warningf(&declaration->source_position,
-                        "no previous declaration for '%#T'", orig_type, symbol);
+       } else {
+               if (warning.missing_declarations &&
+                   scope == global_scope && (
+                     declaration->storage_class == STORAGE_CLASS_NONE ||
+                     declaration->storage_class == STORAGE_CLASS_THREAD
+                   )) {
+                       warningf(&declaration->source_position,
+                                "no previous declaration for '%#T'", orig_type, symbol);
+               }
        }
 
        assert(declaration->parent_scope == NULL);
@@ -4193,7 +4356,7 @@ static declaration_t *record_declaration(declaration_t *declaration)
        return internal_record_declaration(declaration, false);
 }
 
-static declaration_t *record_function_definition(declaration_t *declaration)
+static declaration_t *record_definition(declaration_t *declaration)
 {
        return internal_record_declaration(declaration, true);
 }
@@ -4497,7 +4660,8 @@ static bool first_err = true;
  * When called with first_err set, prints the name of the current function,
  * else does noting.
  */
-static void print_in_function(void) {
+static void print_in_function(void)
+{
        if (first_err) {
                first_err = false;
                diagnosticf("%s: In function '%Y':\n",
@@ -4550,6 +4714,10 @@ static void check_declarations(void)
        if (warning.unused_parameter) {
                const scope_t *scope = &current_function->scope;
 
+               if (is_sym_main(current_function->symbol)) {
+                       /* do not issue unused warnings for main */
+                       return;
+               }
                const declaration_t *parameter = scope->declarations;
                for (; parameter != NULL; parameter = parameter->next) {
                        if (! parameter->used) {
@@ -4563,145 +4731,595 @@ static void check_declarations(void)
        }
 }
 
-static void parse_external_declaration(void)
+static int determine_truth(expression_t const* const cond)
 {
-       /* function-definitions and declarations both start with declaration
-        * specifiers */
-       declaration_specifiers_t specifiers;
-       memset(&specifiers, 0, sizeof(specifiers));
+       return
+               !is_constant_expression(cond) ? 0 :
+               fold_constant(cond) != 0      ? 1 :
+               -1;
+}
 
-       add_anchor_token(';');
-       parse_declaration_specifiers(&specifiers);
-       rem_anchor_token(';');
+static bool noreturn_candidate;
 
-       /* must be a declaration */
-       if (token.type == ';') {
-               parse_anonymous_declaration_rest(&specifiers, append_declaration);
+static void check_reachable(statement_t *const stmt)
+{
+       if (stmt->base.reachable)
                return;
-       }
+       if (stmt->kind != STATEMENT_DO_WHILE)
+               stmt->base.reachable = true;
+
+       statement_t *last = stmt;
+       statement_t *next;
+       switch (stmt->kind) {
+               case STATEMENT_INVALID:
+               case STATEMENT_EMPTY:
+               case STATEMENT_DECLARATION:
+               case STATEMENT_ASM:
+                       next = stmt->base.next;
+                       break;
 
-       add_anchor_token(',');
-       add_anchor_token('=');
-       rem_anchor_token(';');
+               case STATEMENT_COMPOUND:
+                       next = stmt->compound.statements;
+                       break;
 
-       /* declarator is common to both function-definitions and declarations */
-       declaration_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
+               case STATEMENT_RETURN:
+                       noreturn_candidate = false;
+                       return;
 
-       rem_anchor_token(',');
-       rem_anchor_token('=');
-       rem_anchor_token(';');
+               case STATEMENT_IF: {
+                       if_statement_t const* const ifs = &stmt->ifs;
+                       int            const        val = determine_truth(ifs->condition);
 
-       /* must be a declaration */
-       if (token.type == ',' || token.type == '=' || token.type == ';') {
-               parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
-               return;
-       }
+                       if (val >= 0)
+                               check_reachable(ifs->true_statement);
 
-       /* must be a function definition */
-       parse_kr_declaration_list(ndeclaration);
+                       if (val > 0)
+                               return;
 
-       if (token.type != '{') {
-               parse_error_expected("while parsing function definition", '{', NULL);
-               eat_until_matching_token(';');
-               return;
-       }
+                       if (ifs->false_statement != NULL) {
+                               check_reachable(ifs->false_statement);
+                               return;
+                       }
 
-       type_t *type = ndeclaration->type;
+                       next = stmt->base.next;
+                       break;
+               }
 
-       /* note that we don't skip typerefs: the standard doesn't allow them here
-        * (so we can't use is_type_function here) */
-       if (type->kind != TYPE_FUNCTION) {
-               if (is_type_valid(type)) {
-                       errorf(HERE, "declarator '%#T' has a body but is not a function type",
-                              type, ndeclaration->symbol);
+               case STATEMENT_SWITCH: {
+                       switch_statement_t const *const switchs = &stmt->switchs;
+                       expression_t       const *const expr    = switchs->expression;
+
+                       if (is_constant_expression(expr)) {
+                               long                    const val      = fold_constant(expr);
+                               case_label_statement_t *      defaults = NULL;
+                               for (case_label_statement_t *i = switchs->first_case; i != NULL; i = i->next) {
+                                       if (i->expression == NULL) {
+                                               defaults = i;
+                                               continue;
+                                       }
+
+                                       if (i->first_case <= val && val <= i->last_case) {
+                                               check_reachable((statement_t*)i);
+                                               return;
+                                       }
+                               }
+
+                               if (defaults != NULL) {
+                                       check_reachable((statement_t*)defaults);
+                                       return;
+                               }
+                       } else {
+                               bool has_default = false;
+                               for (case_label_statement_t *i = switchs->first_case; i != NULL; i = i->next) {
+                                       if (i->expression == NULL)
+                                               has_default = true;
+
+                                       check_reachable((statement_t*)i);
+                               }
+
+                               if (has_default)
+                                       return;
+                       }
+
+                       next = stmt->base.next;
+                       break;
                }
-               eat_block();
-               return;
-       }
 
-       /* ยง 6.7.5.3 (14) a function definition with () means no
-        * parameters (and not unspecified parameters) */
-       if (type->function.unspecified_parameters
-                       && type->function.parameters == NULL
-                       && !type->function.kr_style_parameters) {
-               type_t *duplicate = duplicate_type(type);
-               duplicate->function.unspecified_parameters = false;
+               case STATEMENT_EXPRESSION: {
+                       /* Check for noreturn function call */
+                       expression_t const *const expr = stmt->expression.expression;
+                       if (expr->kind == EXPR_CALL) {
+                               expression_t const *const func = expr->call.function;
+                               if (func->kind == EXPR_REFERENCE) {
+                                       declaration_t const *const decl = func->reference.declaration;
+                                       if (decl != NULL && decl->modifiers & DM_NORETURN) {
+                                               return;
+                                       }
+                               }
+                       }
 
-               type = typehash_insert(duplicate);
-               if (type != duplicate) {
-                       obstack_free(type_obst, duplicate);
+                       next = stmt->base.next;
+                       break;
                }
-               ndeclaration->type = type;
-       }
 
-       declaration_t *const declaration = record_function_definition(ndeclaration);
-       if (ndeclaration != declaration) {
-               declaration->scope = ndeclaration->scope;
-       }
-       type = skip_typeref(declaration->type);
+               case STATEMENT_CONTINUE: {
+                       statement_t *parent = stmt;
+                       for (;;) {
+                               parent = parent->base.parent;
+                               if (parent == NULL) /* continue not within loop */
+                                       return;
 
-       /* push function parameters and switch scope */
-       int       top        = environment_top();
-       scope_t  *last_scope = scope;
-       set_scope(&declaration->scope);
+                               next = parent;
+                               switch (parent->kind) {
+                                       case STATEMENT_WHILE:    goto continue_while;
+                                       case STATEMENT_DO_WHILE: goto continue_do_while;
+                                       case STATEMENT_FOR:      goto continue_for;
 
-       declaration_t *parameter = declaration->scope.declarations;
-       for( ; parameter != NULL; parameter = parameter->next) {
-               if (parameter->parent_scope == &ndeclaration->scope) {
-                       parameter->parent_scope = scope;
+                                       default: break;
+                               }
+                       }
                }
-               assert(parameter->parent_scope == NULL
-                               || parameter->parent_scope == scope);
-               parameter->parent_scope = scope;
-               if (parameter->symbol == NULL) {
-                       errorf(&ndeclaration->source_position, "parameter name omitted");
-                       continue;
+
+               case STATEMENT_BREAK: {
+                       statement_t *parent = stmt;
+                       for (;;) {
+                               parent = parent->base.parent;
+                               if (parent == NULL) /* break not within loop/switch */
+                                       return;
+
+                               switch (parent->kind) {
+                                       case STATEMENT_SWITCH:
+                                       case STATEMENT_WHILE:
+                                       case STATEMENT_DO_WHILE:
+                                       case STATEMENT_FOR:
+                                               last = parent;
+                                               next = parent->base.next;
+                                               goto found_break_parent;
+
+                                       default: break;
+                               }
+                       }
+found_break_parent:
+                       break;
                }
-               environment_push(parameter);
-       }
 
-       if (declaration->init.statement != NULL) {
-               parser_error_multiple_definition(declaration, HERE);
-               eat_block();
-       } else {
-               /* parse function body */
-               int            label_stack_top      = label_top();
-               declaration_t *old_current_function = current_function;
-               current_function                    = declaration;
+               case STATEMENT_GOTO:
+                       next = stmt->gotos.label->init.statement;
+                       if (next == NULL) /* missing label */
+                               return;
+                       break;
 
-               declaration->init.statement = parse_compound_statement(false);
-               first_err = true;
-               check_labels();
-               check_declarations();
+               case STATEMENT_LABEL:
+                       next = stmt->label.statement;
+                       break;
 
-               assert(current_function == declaration);
-               current_function = old_current_function;
-               label_pop_to(label_stack_top);
-       }
+               case STATEMENT_CASE_LABEL:
+                       next = stmt->case_label.statement;
+                       break;
 
-       assert(scope == &declaration->scope);
-       set_scope(last_scope);
-       environment_pop_to(top);
-}
+               case STATEMENT_WHILE: {
+                       while_statement_t const *const whiles = &stmt->whiles;
+                       int                      const val    = determine_truth(whiles->condition);
 
-static type_t *make_bitfield_type(type_t *base_type, expression_t *size,
-                                  source_position_t *source_position)
-{
-       type_t *type = allocate_type_zero(TYPE_BITFIELD, source_position);
+                       if (val >= 0)
+                               check_reachable(whiles->body);
 
-       type->bitfield.base_type = base_type;
-       type->bitfield.size      = size;
+                       if (val > 0)
+                               return;
 
-       return type;
-}
+                       next = stmt->base.next;
+                       break;
+               }
 
-static declaration_t *find_compound_entry(declaration_t *compound_declaration,
-                                          symbol_t *symbol)
-{
-       declaration_t *iter = compound_declaration->scope.declarations;
-       for( ; iter != NULL; iter = iter->next) {
-               if (iter->namespc != NAMESPACE_NORMAL)
-                       continue;
+               case STATEMENT_DO_WHILE:
+                       next = stmt->do_while.body;
+                       break;
+
+               case STATEMENT_FOR: {
+                       for_statement_t *const fors = &stmt->fors;
+
+                       if (fors->condition_reachable)
+                               return;
+                       fors->condition_reachable = true;
+
+                       expression_t const *const cond = fors->condition;
+                       int          const        val  =
+                               cond == NULL ? 1 : determine_truth(cond);
+
+                       if (val >= 0)
+                               check_reachable(fors->body);
+
+                       if (val > 0)
+                               return;
+
+                       next = stmt->base.next;
+                       break;
+               }
+
+               case STATEMENT_MS_TRY:
+               case STATEMENT_LEAVE:
+                       panic("unimplemented");
+       }
+
+       while (next == NULL) {
+               next = last->base.parent;
+               if (next == NULL) {
+                       noreturn_candidate = false;
+
+                       type_t *const type = current_function->type;
+                       assert(is_type_function(type));
+                       type_t *const ret  = skip_typeref(type->function.return_type);
+                       if (warning.return_type                    &&
+                           !is_type_atomic(ret, ATOMIC_TYPE_VOID) &&
+                           is_type_valid(ret)                     &&
+                           !is_sym_main(current_function->symbol)) {
+                               warningf(&stmt->base.source_position,
+                                        "control reaches end of non-void function");
+                       }
+                       return;
+               }
+
+               switch (next->kind) {
+                       case STATEMENT_INVALID:
+                       case STATEMENT_EMPTY:
+                       case STATEMENT_DECLARATION:
+                       case STATEMENT_EXPRESSION:
+                       case STATEMENT_ASM:
+                       case STATEMENT_RETURN:
+                       case STATEMENT_CONTINUE:
+                       case STATEMENT_BREAK:
+                       case STATEMENT_GOTO:
+                       case STATEMENT_LEAVE:
+                               panic("invalid control flow in function");
+
+                       case STATEMENT_COMPOUND:
+                       case STATEMENT_IF:
+                       case STATEMENT_SWITCH:
+                       case STATEMENT_LABEL:
+                       case STATEMENT_CASE_LABEL:
+                               last = next;
+                               next = next->base.next;
+                               break;
+
+                       case STATEMENT_WHILE: {
+continue_while:
+                               if (next->base.reachable)
+                                       return;
+                               next->base.reachable = true;
+
+                               while_statement_t const *const whiles = &next->whiles;
+                               int                      const val    = determine_truth(whiles->condition);
+
+                               if (val >= 0)
+                                       check_reachable(whiles->body);
+
+                               if (val > 0)
+                                       return;
+
+                               last = next;
+                               next = next->base.next;
+                               break;
+                       }
+
+                       case STATEMENT_DO_WHILE: {
+continue_do_while:
+                               if (next->base.reachable)
+                                       return;
+                               next->base.reachable = true;
+
+                               do_while_statement_t const *const dw  = &next->do_while;
+                               int                  const        val = determine_truth(dw->condition);
+
+                               if (val >= 0)
+                                       check_reachable(dw->body);
+
+                               if (val > 0)
+                                       return;
+
+                               last = next;
+                               next = next->base.next;
+                               break;
+                       }
+
+                       case STATEMENT_FOR: {
+continue_for:;
+                               for_statement_t *const fors = &next->fors;
+
+                               fors->step_reachable = true;
+
+                               if (fors->condition_reachable)
+                                       return;
+                               fors->condition_reachable = true;
+
+                               expression_t const *const cond = fors->condition;
+                               int          const        val  =
+                                       cond == NULL ? 1 : determine_truth(cond);
+
+                               if (val >= 0)
+                                       check_reachable(fors->body);
+
+                               if (val > 0)
+                                       return;
+
+                               last = next;
+                               next = next->base.next;
+                               break;
+                       }
+
+                       case STATEMENT_MS_TRY:
+                               panic("unimplemented");
+               }
+       }
+
+       if (next == NULL) {
+               next = stmt->base.parent;
+               if (next == NULL) {
+                       warningf(&stmt->base.source_position,
+                                "control reaches end of non-void function");
+               }
+       }
+
+       check_reachable(next);
+}
+
+static void check_unreachable(statement_t const* const stmt)
+{
+       if (!stmt->base.reachable            &&
+           stmt->kind != STATEMENT_COMPOUND &&
+           stmt->kind != STATEMENT_DO_WHILE &&
+           stmt->kind != STATEMENT_FOR) {
+               warningf(&stmt->base.source_position, "statement is unreachable");
+       }
+
+       switch (stmt->kind) {
+               case STATEMENT_INVALID:
+               case STATEMENT_EMPTY:
+               case STATEMENT_RETURN:
+               case STATEMENT_DECLARATION:
+               case STATEMENT_EXPRESSION:
+               case STATEMENT_CONTINUE:
+               case STATEMENT_BREAK:
+               case STATEMENT_GOTO:
+               case STATEMENT_ASM:
+               case STATEMENT_LEAVE:
+                       break;
+
+               case STATEMENT_COMPOUND:
+                       if (stmt->compound.statements)
+                               check_unreachable(stmt->compound.statements);
+                       break;
+
+               case STATEMENT_IF:
+                       check_unreachable(stmt->ifs.true_statement);
+                       if (stmt->ifs.false_statement != NULL)
+                               check_unreachable(stmt->ifs.false_statement);
+                       break;
+
+               case STATEMENT_SWITCH:
+                       check_unreachable(stmt->switchs.body);
+                       break;
+
+               case STATEMENT_LABEL:
+                       check_unreachable(stmt->label.statement);
+                       break;
+
+               case STATEMENT_CASE_LABEL:
+                       check_unreachable(stmt->case_label.statement);
+                       break;
+
+               case STATEMENT_WHILE:
+                       check_unreachable(stmt->whiles.body);
+                       break;
+
+               case STATEMENT_DO_WHILE:
+                       check_unreachable(stmt->do_while.body);
+                       if (!stmt->base.reachable) {
+                               expression_t const *const cond = stmt->do_while.condition;
+                               if (determine_truth(cond) >= 0) {
+                                       warningf(&cond->base.source_position,
+                                                "condition of do-while-loop is unreachable");
+                               }
+                       }
+                       break;
+
+               case STATEMENT_FOR: {
+                       for_statement_t const* const fors = &stmt->fors;
+
+                       // if init and step are unreachable, cond is unreachable, too
+                       if (!stmt->base.reachable && !fors->step_reachable) {
+                               warningf(&stmt->base.source_position, "statement is unreachable");
+                       } else {
+                               if (!stmt->base.reachable && fors->initialisation != NULL) {
+                                       warningf(&fors->initialisation->base.source_position,
+                                                "initialisation of for-statement is unreachable");
+                               }
+
+                               if (!fors->condition_reachable && fors->condition != NULL) {
+                                       warningf(&fors->condition->base.source_position,
+                                                "condition of for-statement is unreachable");
+                               }
+
+                               if (!fors->step_reachable && fors->step != NULL) {
+                                       warningf(&fors->step->base.source_position,
+                                                "step of for-statement is unreachable");
+                               }
+                       }
+
+                       check_unreachable(stmt->fors.body);
+                       break;
+               }
+
+               case STATEMENT_MS_TRY:
+                       panic("unimplemented");
+       }
+
+       if (stmt->base.next)
+               check_unreachable(stmt->base.next);
+}
+
+static void parse_external_declaration(void)
+{
+       /* function-definitions and declarations both start with declaration
+        * specifiers */
+       declaration_specifiers_t specifiers;
+       memset(&specifiers, 0, sizeof(specifiers));
+
+       add_anchor_token(';');
+       parse_declaration_specifiers(&specifiers);
+       rem_anchor_token(';');
+
+       /* must be a declaration */
+       if (token.type == ';') {
+               parse_anonymous_declaration_rest(&specifiers, append_declaration);
+               return;
+       }
+
+       add_anchor_token(',');
+       add_anchor_token('=');
+       rem_anchor_token(';');
+
+       /* declarator is common to both function-definitions and declarations */
+       declaration_t *ndeclaration = parse_declarator(&specifiers, /*may_be_abstract=*/false);
+
+       rem_anchor_token(',');
+       rem_anchor_token('=');
+       rem_anchor_token(';');
+
+       /* must be a declaration */
+       switch (token.type) {
+               case ',':
+               case ';':
+                       parse_declaration_rest(ndeclaration, &specifiers, record_declaration);
+                       return;
+
+               case '=':
+                       parse_declaration_rest(ndeclaration, &specifiers, record_definition);
+                       return;
+       }
+
+       /* must be a function definition */
+       parse_kr_declaration_list(ndeclaration);
+
+       if (token.type != '{') {
+               parse_error_expected("while parsing function definition", '{', NULL);
+               eat_until_matching_token(';');
+               return;
+       }
+
+       type_t *type = ndeclaration->type;
+
+       /* note that we don't skip typerefs: the standard doesn't allow them here
+        * (so we can't use is_type_function here) */
+       if (type->kind != TYPE_FUNCTION) {
+               if (is_type_valid(type)) {
+                       errorf(HERE, "declarator '%#T' has a body but is not a function type",
+                              type, ndeclaration->symbol);
+               }
+               eat_block();
+               return;
+       }
+
+       /* ยง 6.7.5.3 (14) a function definition with () means no
+        * parameters (and not unspecified parameters) */
+       if (type->function.unspecified_parameters
+                       && type->function.parameters == NULL
+                       && !type->function.kr_style_parameters) {
+               type_t *duplicate = duplicate_type(type);
+               duplicate->function.unspecified_parameters = false;
+
+               type = typehash_insert(duplicate);
+               if (type != duplicate) {
+                       obstack_free(type_obst, duplicate);
+               }
+               ndeclaration->type = type;
+       }
+
+       declaration_t *const declaration = record_definition(ndeclaration);
+       if (ndeclaration != declaration) {
+               declaration->scope = ndeclaration->scope;
+       }
+       type = skip_typeref(declaration->type);
+
+       /* push function parameters and switch scope */
+       int       top        = environment_top();
+       scope_t  *last_scope = scope;
+       set_scope(&declaration->scope);
+
+       declaration_t *parameter = declaration->scope.declarations;
+       for( ; parameter != NULL; parameter = parameter->next) {
+               if (parameter->parent_scope == &ndeclaration->scope) {
+                       parameter->parent_scope = scope;
+               }
+               assert(parameter->parent_scope == NULL
+                               || parameter->parent_scope == scope);
+               parameter->parent_scope = scope;
+               if (parameter->symbol == NULL) {
+                       errorf(&parameter->source_position, "parameter name omitted");
+                       continue;
+               }
+               environment_push(parameter);
+       }
+
+       if (declaration->init.statement != NULL) {
+               parser_error_multiple_definition(declaration, HERE);
+               eat_block();
+       } else {
+               /* parse function body */
+               int            label_stack_top      = label_top();
+               declaration_t *old_current_function = current_function;
+               current_function                    = declaration;
+               current_parent                      = NULL;
+
+               statement_t *const body = parse_compound_statement(false);
+               declaration->init.statement = body;
+               first_err = true;
+               check_labels();
+               check_declarations();
+               if (warning.return_type      ||
+                   warning.unreachable_code ||
+                   (warning.missing_noreturn && !(declaration->modifiers & DM_NORETURN))) {
+                       noreturn_candidate = true;
+                       check_reachable(body);
+                       if (warning.unreachable_code)
+                               check_unreachable(body);
+                       if (warning.missing_noreturn &&
+                           noreturn_candidate       &&
+                           !(declaration->modifiers & DM_NORETURN)) {
+                               warningf(&body->base.source_position,
+                                        "function '%#T' is candidate for attribute 'noreturn'",
+                                        type, declaration->symbol);
+                       }
+               }
+
+               assert(current_parent   == NULL);
+               assert(current_function == declaration);
+               current_function = old_current_function;
+               label_pop_to(label_stack_top);
+       }
+
+       assert(scope == &declaration->scope);
+       set_scope(last_scope);
+       environment_pop_to(top);
+}
+
+static type_t *make_bitfield_type(type_t *base_type, expression_t *size,
+                                  source_position_t *source_position)
+{
+       type_t *type = allocate_type_zero(TYPE_BITFIELD, source_position);
+
+       type->bitfield.base_type = base_type;
+       type->bitfield.size      = size;
+
+       return type;
+}
+
+static declaration_t *find_compound_entry(declaration_t *compound_declaration,
+                                          symbol_t *symbol)
+{
+       declaration_t *iter = compound_declaration->scope.declarations;
+       for( ; iter != NULL; iter = iter->next) {
+               if (iter->namespc != NAMESPACE_NORMAL)
+                       continue;
 
                if (iter->symbol == NULL) {
                        type_t *type = skip_typeref(iter->type);
@@ -4906,7 +5524,7 @@ static expression_t *parse_string_const(void)
                        /* note: that we use type_char_ptr here, which is already the
                         * automatic converted type. revert_automatic_type_conversion
                         * will construct the array type */
-                       cnst->base.type    = type_char_ptr;
+                       cnst->base.type    = warning.write_strings ? type_const_char_ptr : type_char_ptr;
                        cnst->string.value = res;
                        return cnst;
                }
@@ -4929,7 +5547,7 @@ static expression_t *parse_string_const(void)
 
                        default: {
                                expression_t *const cnst = allocate_expression_zero(EXPR_WIDE_STRING_LITERAL);
-                               cnst->base.type         = type_wchar_t_ptr;
+                               cnst->base.type         = warning.write_strings ? type_const_wchar_t_ptr : type_wchar_t_ptr;
                                cnst->wide_string.value = wres;
                                return cnst;
                        }
@@ -5251,18 +5869,20 @@ static expression_t *parse_reference(void)
        declaration->used = true;
 
        /* check for deprecated functions */
-       if (declaration->deprecated != 0) {
-               const char *prefix = "";
-               if (is_type_function(declaration->type))
-                       prefix = "function ";
+       if (warning.deprecated_declarations &&
+           declaration->modifiers & DM_DEPRECATED) {
+               char const *const prefix = is_type_function(declaration->type) ?
+                       "function" : "variable";
 
                if (declaration->deprecated_string != NULL) {
                        warningf(&source_position,
-                               "%s'%Y' was declared 'deprecated(\"%s\")'", prefix, declaration->symbol,
+                               "%s '%Y' is deprecated (declared %P): \"%s\"", prefix,
+                               declaration->symbol, &declaration->source_position,
                                declaration->deprecated_string);
                } else {
                        warningf(&source_position,
-                               "%s'%Y' was declared 'deprecated'", prefix, declaration->symbol);
+                               "%s '%Y' is deprecated (declared %P)", prefix,
+                               declaration->symbol, &declaration->source_position);
                }
        }
 
@@ -5360,9 +5980,9 @@ end_error:
 }
 
 /**
- * Parse a braced expression.
+ * Parse a parenthesized expression.
  */
-static expression_t *parse_brace_expression(void)
+static expression_t *parse_parenthesized_expression(void)
 {
        eat('(');
        add_anchor_token(')');
@@ -5751,7 +6371,8 @@ end_error:
 /**
  * Parses a MS assume() expression.
  */
-static expression_t *parse_assume(void) {
+static expression_t *parse_assume(void)
+{
        eat(T__assume);
 
        expression_t *expression
@@ -5772,7 +6393,8 @@ end_error:
 /**
  * Parse a microsoft __noop expression.
  */
-static expression_t *parse_noop_expression(void) {
+static expression_t *parse_noop_expression(void)
+{
        source_position_t source_position = *HERE;
        eat(T___noop);
 
@@ -5846,7 +6468,7 @@ static expression_t *parse_primary_expression(void)
                case T___builtin_prefetch:       return parse_builtin_prefetch();
                case T__assume:                  return parse_assume();
 
-               case '(':                        return parse_brace_expression();
+               case '(':                        return parse_parenthesized_expression();
                case T___noop:                   return parse_noop_expression();
        }
 
@@ -5857,7 +6479,8 @@ static expression_t *parse_primary_expression(void)
 /**
  * Check if the expression has the character type and issue a warning then.
  */
-static void check_for_char_index_type(const expression_t *expression) {
+static void check_for_char_index_type(const expression_t *expression)
+{
        type_t       *const type      = expression->base.type;
        const type_t *const base_type = skip_typeref(type);
 
@@ -6221,13 +6844,14 @@ static bool same_compound_type(const type_t *type1, const type_t *type2)
 static expression_t *parse_conditional_expression(unsigned precedence,
                                                   expression_t *expression)
 {
-       eat('?');
-       add_anchor_token(':');
-
        expression_t *result = allocate_expression_zero(EXPR_CONDITIONAL);
 
        conditional_expression_t *conditional = &result->conditional;
-       conditional->condition = expression;
+       conditional->base.source_position = *HERE;
+       conditional->condition            = expression;
+
+       eat('?');
+       add_anchor_token(':');
 
        /* 6.5.15.2 */
        type_t *const condition_type_orig = expression->base.type;
@@ -6253,7 +6877,7 @@ static expression_t *parse_conditional_expression(unsigned precedence,
                is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
                if (!is_type_atomic(true_type, ATOMIC_TYPE_VOID)
                    || !is_type_atomic(false_type, ATOMIC_TYPE_VOID)) {
-                       warningf(&expression->base.source_position,
+                       warningf(&conditional->base.source_position,
                                        "ISO C forbids conditional expression with only one void side");
                }
                result_type = type_void;
@@ -6299,7 +6923,7 @@ static expression_t *parse_conditional_expression(unsigned precedence,
                                                    get_unqualified_type(to2))) {
                                to = to1;
                        } else {
-                               warningf(&expression->base.source_position,
+                               warningf(&conditional->base.source_position,
                                        "pointer types '%T' and '%T' in conditional expression are incompatible",
                                        true_type, false_type);
                                to = type_void;
@@ -6314,7 +6938,7 @@ static expression_t *parse_conditional_expression(unsigned precedence,
 
                        result_type = make_pointer_type(type, TYPE_QUALIFIER_NONE);
                } else if (is_type_integer(other_type)) {
-                       warningf(&expression->base.source_position,
+                       warningf(&conditional->base.source_position,
                                        "pointer/integer type mismatch in conditional expression ('%T' and '%T')", true_type, false_type);
                        result_type = pointer_type;
                } else {
@@ -6327,7 +6951,7 @@ static expression_t *parse_conditional_expression(unsigned precedence,
 
                if (is_type_valid(true_type) && is_type_valid(false_type)) {
                        type_error_incompatible("while parsing conditional",
-                                               &expression->base.source_position, true_type,
+                                               &conditional->base.source_position, true_type,
                                                false_type);
                }
                result_type = type_error_type;
@@ -6378,24 +7002,37 @@ end_error:
        return create_invalid_expression();
 }
 
-static void check_pointer_arithmetic(const source_position_t *source_position,
+static bool check_pointer_arithmetic(const source_position_t *source_position,
                                      type_t *pointer_type,
                                      type_t *orig_pointer_type)
 {
        type_t *points_to = pointer_type->pointer.points_to;
        points_to = skip_typeref(points_to);
 
-       if (is_type_incomplete(points_to) &&
-                       (! (c_mode & _GNUC)
-                        || !is_type_atomic(points_to, ATOMIC_TYPE_VOID))) {
-               errorf(source_position,
-                          "arithmetic with pointer to incomplete type '%T' not allowed",
-                          orig_pointer_type);
+       if (is_type_incomplete(points_to)) {
+               if (!(c_mode & _GNUC) || !is_type_atomic(points_to, ATOMIC_TYPE_VOID)) {
+                       errorf(source_position,
+                              "arithmetic with pointer to incomplete type '%T' not allowed",
+                              orig_pointer_type);
+                       return false;
+               } else if (warning.pointer_arith) {
+                       warningf(source_position,
+                                "pointer of type '%T' used in arithmetic",
+                                orig_pointer_type);
+               }
        } else if (is_type_function(points_to)) {
-               errorf(source_position,
-                          "arithmetic with pointer to function type '%T' not allowed",
-                          orig_pointer_type);
+               if (!(c_mode && _GNUC)) {
+                       errorf(source_position,
+                              "arithmetic with pointer to function type '%T' not allowed",
+                              orig_pointer_type);
+                       return false;
+               } else if (warning.pointer_arith) {
+                       warningf(source_position,
+                                "pointer to a function '%T' used in arithmetic",
+                                orig_pointer_type);
+               }
        }
+       return true;
 }
 
 static void semantic_incdec(unary_expression_t *expression)
@@ -6403,11 +7040,15 @@ static void semantic_incdec(unary_expression_t *expression)
        type_t *const orig_type = expression->value->base.type;
        type_t *const type      = skip_typeref(orig_type);
        if (is_type_pointer(type)) {
-               check_pointer_arithmetic(&expression->base.source_position,
-                                        type, orig_type);
+               if (!check_pointer_arithmetic(&expression->base.source_position,
+                                             type, orig_type)) {
+                       return;
+               }
        } else if (!is_type_real(type) && is_type_valid(type)) {
                /* TODO: improve error message */
-               errorf(HERE, "operation needs an arithmetic or pointer type");
+               errorf(&expression->base.source_position,
+                      "operation needs an arithmetic or pointer type");
+               return;
        }
        expression->base.type = orig_type;
 }
@@ -6419,7 +7060,8 @@ static void semantic_unexpr_arithmetic(unary_expression_t *expression)
        if (!is_type_arithmetic(type)) {
                if (is_type_valid(type)) {
                        /* TODO: improve error message */
-                       errorf(HERE, "operation needs an arithmetic type");
+                       errorf(&expression->base.source_position,
+                              "operation needs an arithmetic type");
                }
                return;
        }
@@ -6427,18 +7069,16 @@ static void semantic_unexpr_arithmetic(unary_expression_t *expression)
        expression->base.type = orig_type;
 }
 
-static void semantic_unexpr_scalar(unary_expression_t *expression)
+static void semantic_not(unary_expression_t *expression)
 {
        type_t *const orig_type = expression->value->base.type;
        type_t *const type      = skip_typeref(orig_type);
-       if (!is_type_scalar(type)) {
-               if (is_type_valid(type)) {
-                       errorf(HERE, "operand of ! must be of scalar type");
-               }
-               return;
+       if (!is_type_scalar(type) && is_type_valid(type)) {
+               errorf(&expression->base.source_position,
+                      "operand of ! must be of scalar type");
        }
 
-       expression->base.type = orig_type;
+       expression->base.type = type_int;
 }
 
 static void semantic_unexpr_integer(unary_expression_t *expression)
@@ -6447,7 +7087,8 @@ static void semantic_unexpr_integer(unary_expression_t *expression)
        type_t *const type      = skip_typeref(orig_type);
        if (!is_type_integer(type)) {
                if (is_type_valid(type)) {
-                       errorf(HERE, "operand of ~ must be of integer type");
+                       errorf(&expression->base.source_position,
+                              "operand of ~ must be of integer type");
                }
                return;
        }
@@ -6461,7 +7102,8 @@ static void semantic_dereference(unary_expression_t *expression)
        type_t *const type      = skip_typeref(orig_type);
        if (!is_type_pointer(type)) {
                if (is_type_valid(type)) {
-                       errorf(HERE, "Unary '*' needs pointer or arrray type, but type '%T' given", orig_type);
+                       errorf(&expression->base.source_position,
+                              "Unary '*' needs pointer or arrray type, but type '%T' given", orig_type);
                }
                return;
        }
@@ -6510,11 +7152,10 @@ static void semantic_take_addr(unary_expression_t *expression)
 #define CREATE_UNARY_EXPRESSION_PARSER(token_type, unexpression_type, sfunc)   \
 static expression_t *parse_##unexpression_type(unsigned precedence)            \
 {                                                                              \
-       eat(token_type);                                                           \
-                                                                                  \
        expression_t *unary_expression                                             \
                = allocate_expression_zero(unexpression_type);                         \
        unary_expression->base.source_position = *HERE;                            \
+       eat(token_type);                                                           \
        unary_expression->unary.value = parse_sub_expression(precedence);          \
                                                                                   \
        sfunc(&unary_expression->unary);                                           \
@@ -6527,7 +7168,7 @@ CREATE_UNARY_EXPRESSION_PARSER('-', EXPR_UNARY_NEGATE,
 CREATE_UNARY_EXPRESSION_PARSER('+', EXPR_UNARY_PLUS,
                                semantic_unexpr_arithmetic)
 CREATE_UNARY_EXPRESSION_PARSER('!', EXPR_UNARY_NOT,
-                               semantic_unexpr_scalar)
+                               semantic_not)
 CREATE_UNARY_EXPRESSION_PARSER('*', EXPR_UNARY_DEREFERENCE,
                                semantic_dereference)
 CREATE_UNARY_EXPRESSION_PARSER('&', EXPR_UNARY_TAKE_ADDRESS,
@@ -6545,11 +7186,12 @@ static expression_t *parse_##unexpression_type(unsigned precedence,           \
                                                expression_t *left)            \
 {                                                                             \
        (void) precedence;                                                        \
-       eat(token_type);                                                          \
                                                                               \
        expression_t *unary_expression                                            \
                = allocate_expression_zero(unexpression_type);                        \
-       unary_expression->unary.value = left;                                     \
+       unary_expression->base.source_position = *HERE;                           \
+       eat(token_type);                                                          \
+       unary_expression->unary.value          = left;                            \
                                                                                  \
        sfunc(&unary_expression->unary);                                          \
                                                                               \
@@ -6576,28 +7218,48 @@ static type_t *semantic_arithmetic(type_t *type_left, type_t *type_right)
                return type_float;
        }
 
-       type_right = promote_integer(type_right);
        type_left  = promote_integer(type_left);
+       type_right = promote_integer(type_right);
 
        if (type_left == type_right)
                return type_left;
 
-       bool signed_left  = is_type_signed(type_left);
-       bool signed_right = is_type_signed(type_right);
-       int  rank_left    = get_rank(type_left);
-       int  rank_right   = get_rank(type_right);
-       if (rank_left < rank_right) {
-               if (signed_left == signed_right || !signed_right) {
-                       return type_right;
-               } else {
-                       return type_left;
-               }
+       bool const signed_left  = is_type_signed(type_left);
+       bool const signed_right = is_type_signed(type_right);
+       atomic_type_kind_t const rank_left  = get_rank(type_left);
+       atomic_type_kind_t const rank_right = get_rank(type_right);
+
+       if (signed_left == signed_right)
+               return rank_left >= rank_right ? type_left : type_right;
+
+       atomic_type_kind_t  s_rank;
+       atomic_type_kind_t  u_rank;
+       type_t             *s_type;
+       type_t             *u_type;
+       if (signed_left) {
+               s_rank = rank_left;
+               s_type = type_left;
+               u_rank = rank_right;
+               u_type = type_right;
        } else {
-               if (signed_left == signed_right || !signed_left) {
-                       return type_left;
-               } else {
-                       return type_right;
-               }
+               s_rank = rank_right;
+               s_type = type_right;
+               u_rank = rank_left;
+               u_type = type_left;
+       }
+
+       if (u_rank >= s_rank)
+               return u_type;
+
+       if (get_atomic_type_size(s_rank) > get_atomic_type_size(u_rank))
+               return s_type;
+
+       switch (s_rank) {
+               case ATOMIC_TYPE_INT:      return type_int;
+               case ATOMIC_TYPE_LONG:     return type_long;
+               case ATOMIC_TYPE_LONGLONG: return type_long_long;
+
+               default: panic("invalid atomic type");
        }
 }
 
@@ -6616,7 +7278,8 @@ static void semantic_binexpr_arithmetic(binary_expression_t *expression)
        if (!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
                /* TODO: improve error message */
                if (is_type_valid(type_left) && is_type_valid(type_right)) {
-                       errorf(HERE, "operation needs arithmetic types");
+                       errorf(&expression->base.source_position,
+                              "operation needs arithmetic types");
                }
                return;
        }
@@ -6639,7 +7302,8 @@ static void semantic_shift_op(binary_expression_t *expression)
        if (!is_type_integer(type_left) || !is_type_integer(type_right)) {
                /* TODO: improve error message */
                if (is_type_valid(type_left) && is_type_valid(type_right)) {
-                       errorf(HERE, "operation needs integer types");
+                       errorf(&expression->base.source_position,
+                              "operands of shift operation must have integer types");
                }
                return;
        }
@@ -6685,12 +7349,13 @@ static void semantic_add(binary_expression_t *expression)
 
 static void semantic_sub(binary_expression_t *expression)
 {
-       expression_t *const left            = expression->left;
-       expression_t *const right           = expression->right;
-       type_t       *const orig_type_left  = left->base.type;
-       type_t       *const orig_type_right = right->base.type;
-       type_t       *const type_left       = skip_typeref(orig_type_left);
-       type_t       *const type_right      = skip_typeref(orig_type_right);
+       expression_t            *const left            = expression->left;
+       expression_t            *const right           = expression->right;
+       type_t                  *const orig_type_left  = left->base.type;
+       type_t                  *const orig_type_right = right->base.type;
+       type_t                  *const type_left       = skip_typeref(orig_type_left);
+       type_t                  *const type_right      = skip_typeref(orig_type_right);
+       source_position_t const *const pos             = &expression->base.source_position;
 
        /* ยง 5.6.5 */
        if (is_type_arithmetic(type_left) && is_type_arithmetic(type_right)) {
@@ -6707,22 +7372,20 @@ static void semantic_sub(binary_expression_t *expression)
                type_t *const unqual_left  = get_unqualified_type(skip_typeref(type_left->pointer.points_to));
                type_t *const unqual_right = get_unqualified_type(skip_typeref(type_right->pointer.points_to));
                if (!types_compatible(unqual_left, unqual_right)) {
-                       errorf(&expression->base.source_position,
+                       errorf(pos,
                               "subtracting pointers to incompatible types '%T' and '%T'",
                               orig_type_left, orig_type_right);
                } else if (!is_type_object(unqual_left)) {
                        if (is_type_atomic(unqual_left, ATOMIC_TYPE_VOID)) {
-                               warningf(&expression->base.source_position,
-                                        "subtracting pointers to void");
+                               warningf(pos, "subtracting pointers to void");
                        } else {
-                               errorf(&expression->base.source_position,
-                                      "subtracting pointers to non-object types '%T'",
+                               errorf(pos, "subtracting pointers to non-object types '%T'",
                                       orig_type_left);
                        }
                }
                expression->base.type = type_ptrdiff_t;
        } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
-               errorf(HERE, "invalid operands of types '%T' and '%T' to binary '-'",
+               errorf(pos, "invalid operands of types '%T' and '%T' to binary '-'",
                       orig_type_left, orig_type_right);
        }
 }
@@ -6883,7 +7546,8 @@ static void semantic_arithmetic_assign(binary_expression_t *expression)
        if (!is_type_arithmetic(type_left) || !is_type_arithmetic(type_right)) {
                /* TODO: improve error message */
                if (is_type_valid(type_left) && is_type_valid(type_right)) {
-                       errorf(HERE, "operation needs arithmetic types");
+                       errorf(&expression->base.source_position,
+                              "operation needs arithmetic types");
                }
                return;
        }
@@ -6922,7 +7586,9 @@ static void semantic_arithmetic_addsubb_assign(binary_expression_t *expression)
                                         type_left, orig_type_left);
                expression->base.type = type_left;
        } else if (is_type_valid(type_left) && is_type_valid(type_right)) {
-               errorf(HERE, "incompatible types '%T' and '%T' in assignment", orig_type_left, orig_type_right);
+               errorf(&expression->base.source_position,
+                      "incompatible types '%T' and '%T' in assignment",
+                      orig_type_left, orig_type_right);
        }
 }
 
@@ -6941,7 +7607,8 @@ static void semantic_logical_op(binary_expression_t *expression)
        if (!is_type_scalar(type_left) || !is_type_scalar(type_right)) {
                /* TODO: improve error message */
                if (is_type_valid(type_left) && is_type_valid(type_right)) {
-                       errorf(HERE, "operation needs scalar types");
+                       errorf(&expression->base.source_position,
+                              "operation needs scalar types");
                }
                return;
        }
@@ -7118,14 +7785,13 @@ static void semantic_comma(binary_expression_t *expression)
 static expression_t *parse_##binexpression_type(unsigned precedence,      \
                                                 expression_t *left)       \
 {                                                                         \
+       expression_t *binexpr = allocate_expression_zero(binexpression_type); \
+       binexpr->base.source_position = *HERE;                                \
+       binexpr->binary.left          = left;                                 \
        eat(token_type);                                                      \
-       source_position_t pos = *HERE;                                        \
                                                                           \
        expression_t *right = parse_sub_expression(precedence + lr);          \
                                                                           \
-       expression_t *binexpr = allocate_expression_zero(binexpression_type); \
-       binexpr->base.source_position = pos;                                  \
-       binexpr->binary.left  = left;                                         \
        binexpr->binary.right = right;                                        \
        sfunc(&binexpr->binary);                                              \
                                                                           \
@@ -7373,12 +8039,60 @@ static asm_argument_t *parse_asm_arguments(bool is_out)
 
                argument->constraints = parse_string_literals();
                expect('(');
+               add_anchor_token(')');
                expression_t *expression = parse_expression();
-               argument->expression     = expression;
-               if (is_out && !is_lvalue(expression)) {
-                       errorf(&expression->base.source_position,
-                              "asm output argument is not an lvalue");
+               rem_anchor_token(')');
+               if (is_out) {
+                       /* Ugly GCC stuff: Allow lvalue casts.  Skip casts, when they do not
+                        * change size or type representation (e.g. int -> long is ok, but
+                        * int -> float is not) */
+                       if (expression->kind == EXPR_UNARY_CAST) {
+                               type_t      *const type = expression->base.type;
+                               type_kind_t  const kind = type->kind;
+                               if (kind == TYPE_ATOMIC || kind == TYPE_POINTER) {
+                                       unsigned flags;
+                                       unsigned size;
+                                       if (kind == TYPE_ATOMIC) {
+                                               atomic_type_kind_t const akind = type->atomic.akind;
+                                               flags = get_atomic_type_flags(akind) & ~ATOMIC_TYPE_FLAG_SIGNED;
+                                               size  = get_atomic_type_size(akind);
+                                       } else {
+                                               flags = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC;
+                                               size  = get_atomic_type_size(get_intptr_kind());
+                                       }
+
+                                       do {
+                                               expression_t *const value      = expression->unary.value;
+                                               type_t       *const value_type = value->base.type;
+                                               type_kind_t   const value_kind = value_type->kind;
+
+                                               unsigned value_flags;
+                                               unsigned value_size;
+                                               if (value_kind == TYPE_ATOMIC) {
+                                                       atomic_type_kind_t const value_akind = value_type->atomic.akind;
+                                                       value_flags = get_atomic_type_flags(value_akind) & ~ATOMIC_TYPE_FLAG_SIGNED;
+                                                       value_size  = get_atomic_type_size(value_akind);
+                                               } else if (value_kind == TYPE_POINTER) {
+                                                       value_flags = ATOMIC_TYPE_FLAG_INTEGER | ATOMIC_TYPE_FLAG_ARITHMETIC;
+                                                       value_size  = get_atomic_type_size(get_intptr_kind());
+                                               } else {
+                                                       break;
+                                               }
+
+                                               if (value_flags != flags || value_size != size)
+                                                       break;
+
+                                               expression = value;
+                                       } while (expression->kind == EXPR_UNARY_CAST);
+                               }
+                       }
+
+                       if (!is_lvalue(expression)) {
+                               errorf(&expression->base.source_position,
+                                      "asm output argument is not an lvalue");
+                       }
                }
+               argument->expression = expression;
                expect(')');
 
                set_address_taken(expression, true);
@@ -7476,6 +8190,13 @@ end_of_asm:
        rem_anchor_token(')');
        expect(')');
        expect(';');
+
+       if (asm_statement->outputs == NULL) {
+               /* GCC: An 'asm' instruction without any output operands will be treated
+                * identically to a volatile 'asm' instruction. */
+               asm_statement->is_volatile = true;
+       }
+
        return statement;
 end_error:
        return create_invalid_statement();
@@ -7488,59 +8209,83 @@ static statement_t *parse_case_statement(void)
 {
        eat(T_case);
 
-       statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
+       statement_t       *const statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
+       source_position_t *const pos       = &statement->base.source_position;
 
-       statement->base.source_position  = token.source_position;
+       *pos                             = token.source_position;
        statement->case_label.expression = parse_expression();
+       if (! is_constant_expression(statement->case_label.expression)) {
+               errorf(pos, "case label does not reduce to an integer constant");
+               statement->case_label.is_bad = true;
+       } else {
+               long const val = fold_constant(statement->case_label.expression);
+               statement->case_label.first_case = val;
+               statement->case_label.last_case  = val;
+       }
 
        if (c_mode & _GNUC) {
                if (token.type == T_DOTDOTDOT) {
                        next_token();
                        statement->case_label.end_range = parse_expression();
+                       if (! is_constant_expression(statement->case_label.end_range)) {
+                               errorf(pos, "case range does not reduce to an integer constant");
+                               statement->case_label.is_bad = true;
+                       } else {
+                               long const val = fold_constant(statement->case_label.end_range);
+                               statement->case_label.last_case = val;
+
+                               if (val < statement->case_label.first_case) {
+                                       statement->case_label.is_empty = true;
+                                       warningf(pos, "empty range specified");
+                               }
+                       }
                }
        }
 
+       PUSH_PARENT(statement);
+
        expect(':');
 
-       if (! is_constant_expression(statement->case_label.expression)) {
-               errorf(&statement->base.source_position,
-                      "case label does not reduce to an integer constant");
-       } else {
-               /* TODO: check if the case label is already known */
-               if (current_switch != NULL) {
-                       /* link all cases into the switch statement */
-                       if (current_switch->last_case == NULL) {
-                               current_switch->first_case =
-                               current_switch->last_case  = &statement->case_label;
-                       } else {
-                               current_switch->last_case->next = &statement->case_label;
+       if (current_switch != NULL) {
+               if (! statement->case_label.is_bad) {
+                       /* Check for duplicate case values */
+                       case_label_statement_t *c = &statement->case_label;
+                       for (case_label_statement_t *l = current_switch->first_case; l != NULL; l = l->next) {
+                               if (l->is_bad || l->is_empty)
+                                       continue;
+
+                               if (c->last_case < l->first_case || c->first_case > l->last_case)
+                                       continue;
+
+                               errorf(pos, "duplicate case value (previously used %P)",
+                                      &l->base.source_position);
+                               break;
                        }
+               }
+               /* link all cases into the switch statement */
+               if (current_switch->last_case == NULL) {
+                       current_switch->first_case      = &statement->case_label;
                } else {
-                       errorf(&statement->base.source_position,
-                              "case label not within a switch statement");
+                       current_switch->last_case->next = &statement->case_label;
                }
+               current_switch->last_case = &statement->case_label;
+       } else {
+               errorf(pos, "case label not within a switch statement");
        }
-       statement->case_label.statement = parse_statement();
 
+       statement_t *const inner_stmt = parse_statement();
+       statement->case_label.statement = inner_stmt;
+       if (inner_stmt->kind == STATEMENT_DECLARATION) {
+               errorf(&inner_stmt->base.source_position, "declaration after case label");
+       }
+
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
-/**
- * Finds an existing default label of a switch statement.
- */
-static case_label_statement_t *
-find_default_label(const switch_statement_t *statement)
-{
-       case_label_statement_t *label = statement->first_case;
-       for ( ; label != NULL; label = label->next) {
-               if (label->expression == NULL)
-                       return label;
-       }
-       return NULL;
-}
-
 /**
  * Parse a default statement.
  */
@@ -7549,37 +8294,49 @@ static statement_t *parse_default_statement(void)
        eat(T_default);
 
        statement_t *statement = allocate_statement_zero(STATEMENT_CASE_LABEL);
-
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        expect(':');
        if (current_switch != NULL) {
-               const case_label_statement_t *def_label = find_default_label(current_switch);
+               const case_label_statement_t *def_label = current_switch->default_label;
                if (def_label != NULL) {
                        errorf(HERE, "multiple default labels in one switch (previous declared %P)",
                               &def_label->base.source_position);
                } else {
+                       current_switch->default_label = &statement->case_label;
+
                        /* link all cases into the switch statement */
                        if (current_switch->last_case == NULL) {
-                               current_switch->first_case =
-                                       current_switch->last_case  = &statement->case_label;
+                               current_switch->first_case      = &statement->case_label;
                        } else {
                                current_switch->last_case->next = &statement->case_label;
                        }
+                       current_switch->last_case = &statement->case_label;
                }
        } else {
                errorf(&statement->base.source_position,
                        "'default' label not within a switch statement");
        }
-       statement->case_label.statement = parse_statement();
 
+       statement_t *const inner_stmt = parse_statement();
+       statement->case_label.statement = inner_stmt;
+       if (inner_stmt->kind == STATEMENT_DECLARATION) {
+               errorf(&inner_stmt->base.source_position, "declaration after default label");
+       }
+
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
 /**
  * Return the declaration for a given label symbol or create a new one.
+ *
+ * @param symbol  the symbol of the label
  */
 static declaration_t *get_label(symbol_t *symbol)
 {
@@ -7613,6 +8370,12 @@ static statement_t *parse_label_statement(void)
 
        declaration_t *label = get_label(symbol);
 
+       statement_t *const statement = allocate_statement_zero(STATEMENT_LABEL);
+       statement->base.source_position = token.source_position;
+       statement->label.label          = label;
+
+       PUSH_PARENT(statement);
+
        /* if source position is already set then the label is defined twice,
         * otherwise it was just mentioned in a goto so far */
        if (label->source_position.input_name != NULL) {
@@ -7620,13 +8383,9 @@ static statement_t *parse_label_statement(void)
                       symbol, &label->source_position);
        } else {
                label->source_position = token.source_position;
+               label->init.statement  = statement;
        }
 
-       statement_t *statement = allocate_statement_zero(STATEMENT_LABEL);
-
-       statement->base.source_position = token.source_position;
-       statement->label.label          = label;
-
        eat(':');
 
        if (token.type == '}') {
@@ -7638,16 +8397,17 @@ static statement_t *parse_label_statement(void)
                        errorf(HERE, "label at end of compound statement");
                        statement->label.statement = create_invalid_statement();
                }
-               return statement;
+       } else if (token.type == ';') {
+               /* Eat an empty statement here, to avoid the warning about an empty
+                * statement after a label.  label:; is commonly used to have a label
+                * before a closing brace. */
+               statement->label.statement = create_empty_statement();
+               next_token();
        } else {
-               if (token.type == ';') {
-                       /* eat an empty statement here, to avoid the warning about an empty
-                        * after a label.  label:; is commonly used to have a label before
-                        * a }. */
-                       statement->label.statement = create_empty_statement();
-                       next_token();
-               } else {
-                       statement->label.statement = parse_statement();
+               statement_t *const inner_stmt = parse_statement();
+               statement->label.statement = inner_stmt;
+               if (inner_stmt->kind == STATEMENT_DECLARATION) {
+                       errorf(&inner_stmt->base.source_position, "declaration after label");
                }
        }
 
@@ -7659,6 +8419,7 @@ static statement_t *parse_label_statement(void)
        }
        label_last = &statement->label;
 
+       POP_PARENT;
        return statement;
 }
 
@@ -7672,6 +8433,8 @@ static statement_t *parse_if(void)
        statement_t *statement          = allocate_statement_zero(STATEMENT_IF);
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        expect('(');
        add_anchor_token(')');
        statement->ifs.condition = parse_expression();
@@ -7687,11 +8450,53 @@ static statement_t *parse_if(void)
                statement->ifs.false_statement = parse_statement();
        }
 
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
+/**
+ * Check that all enums are handled in a switch.
+ *
+ * @param statement  the switch statement to check
+ */
+static void check_enum_cases(const switch_statement_t *statement) {
+       const type_t *type = skip_typeref(statement->expression->base.type);
+       if (! is_type_enum(type))
+               return;
+       const enum_type_t *enumt = &type->enumt;
+
+       /* if we have a default, no warnings */
+       if (statement->default_label != NULL)
+               return;
+
+       /* FIXME: calculation of value should be done while parsing */
+       const declaration_t *declaration;
+       long last_value = -1;
+       for (declaration = enumt->declaration->next;
+            declaration != NULL && declaration->storage_class == STORAGE_CLASS_ENUM_ENTRY;
+                declaration = declaration->next) {
+               const expression_t *expression = declaration->init.enum_value;
+               long                value      = expression != NULL ? fold_constant(expression) : last_value + 1;
+               bool                found      = false;
+               for (const case_label_statement_t *l = statement->first_case; l != NULL; l = l->next) {
+                       if (l->expression == NULL)
+                               continue;
+                       if (l->first_case <= value && value <= l->last_case) {
+                               found = true;
+                               break;
+                       }
+               }
+               if (! found) {
+                       warningf(&statement->base.source_position,
+                               "enumeration value '%Y' not handled in switch", declaration->symbol);
+               }
+               last_value = value;
+       }
+}
+
 /**
  * Parse a switch statement.
  */
@@ -7702,7 +8507,10 @@ static statement_t *parse_switch(void)
        statement_t *statement          = allocate_statement_zero(STATEMENT_SWITCH);
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        expect('(');
+       add_anchor_token(')');
        expression_t *const expr = parse_expression();
        type_t       *      type = skip_typeref(expr->base.type);
        if (is_type_integer(type)) {
@@ -7714,6 +8522,7 @@ static statement_t *parse_switch(void)
        }
        statement->switchs.expression = create_implicit_cast(expr, type);
        expect(')');
+       rem_anchor_token(')');
 
        switch_statement_t *rem = current_switch;
        current_switch          = &statement->switchs;
@@ -7721,12 +8530,16 @@ static statement_t *parse_switch(void)
        current_switch          = rem;
 
        if (warning.switch_default &&
-          find_default_label(&statement->switchs) == NULL) {
+           statement->switchs.default_label == NULL) {
                warningf(&statement->base.source_position, "switch has no default case");
        }
+       if (warning.switch_enum)
+               check_enum_cases(&statement->switchs);
 
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
@@ -7751,6 +8564,8 @@ static statement_t *parse_while(void)
        statement_t *statement          = allocate_statement_zero(STATEMENT_WHILE);
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        expect('(');
        add_anchor_token(')');
        statement->whiles.condition = parse_expression();
@@ -7759,8 +8574,10 @@ static statement_t *parse_while(void)
 
        statement->whiles.body = parse_loop_body(statement);
 
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
@@ -7772,9 +8589,10 @@ static statement_t *parse_do(void)
        eat(T_do);
 
        statement_t *statement = allocate_statement_zero(STATEMENT_DO_WHILE);
-
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement)
+
        add_anchor_token(T_while);
        statement->do_while.body = parse_loop_body(statement);
        rem_anchor_token(T_while);
@@ -7787,8 +8605,10 @@ static statement_t *parse_do(void)
        expect(')');
        expect(';');
 
+       POP_PARENT;
        return statement;
 end_error:
+       POP_PARENT;
        return create_invalid_statement();
 }
 
@@ -7802,6 +8622,8 @@ static statement_t *parse_for(void)
        statement_t *statement          = allocate_statement_zero(STATEMENT_FOR);
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        int      top        = environment_top();
        scope_t *last_scope = scope;
        set_scope(&statement->fors.scope);
@@ -7849,9 +8671,11 @@ static statement_t *parse_for(void)
        set_scope(last_scope);
        environment_pop_to(top);
 
+       POP_PARENT;
        return statement;
 
 end_error:
+       POP_PARENT;
        rem_anchor_token(')');
        assert(scope == &statement->fors.scope);
        set_scope(last_scope);
@@ -7969,7 +8793,8 @@ end_error:
 /**
  * Check if a given declaration represents a local variable.
  */
-static bool is_local_var_declaration(const declaration_t *declaration) {
+static bool is_local_var_declaration(const declaration_t *declaration)
+{
        switch ((storage_class_tag_t) declaration->storage_class) {
        case STORAGE_CLASS_AUTO:
        case STORAGE_CLASS_REGISTER: {
@@ -7988,7 +8813,8 @@ static bool is_local_var_declaration(const declaration_t *declaration) {
 /**
  * Check if a given declaration represents a variable.
  */
-static bool is_var_declaration(const declaration_t *declaration) {
+static bool is_var_declaration(const declaration_t *declaration)
+{
        if (declaration->storage_class == STORAGE_CLASS_TYPEDEF)
                return false;
 
@@ -8123,7 +8949,8 @@ end_error:
  * Parse a microsoft __try { } __finally { } or
  * __try{ } __except() { }
  */
-static statement_t *parse_ms_try_statment(void) {
+static statement_t *parse_ms_try_statment(void)
+{
        statement_t *statement = allocate_statement_zero(STATEMENT_MS_TRY);
 
        statement->base.source_position  = token.source_position;
@@ -8163,6 +8990,16 @@ end_error:
        return create_invalid_statement();
 }
 
+static statement_t *parse_empty_statement(void)
+{
+       if (warning.empty_statement) {
+               warningf(HERE, "statement is empty");
+       }
+       statement_t *const statement = create_empty_statement();
+       eat(';');
+       return statement;
+}
+
 /**
  * Parse a statement.
  * There's also parse_statement() which additionally checks for
@@ -8174,91 +9011,23 @@ static statement_t *intern_parse_statement(void)
 
        /* declaration or statement */
        add_anchor_token(';');
-       switch(token.type) {
-       case T_asm:
-               statement = parse_asm_statement();
-               break;
-
-       case T_case:
-               statement = parse_case_statement();
-               break;
-
-       case T_default:
-               statement = parse_default_statement();
-               break;
-
-       case '{':
-               statement = parse_compound_statement(false);
-               break;
-
-       case T_if:
-               statement = parse_if ();
-               break;
-
-       case T_switch:
-               statement = parse_switch();
-               break;
-
-       case T_while:
-               statement = parse_while();
-               break;
-
-       case T_do:
-               statement = parse_do();
-               break;
-
-       case T_for:
-               statement = parse_for();
-               break;
-
-       case T_goto:
-               statement = parse_goto();
-               break;
-
-       case T_continue:
-               statement = parse_continue();
-               break;
-
-       case T_break:
-               statement = parse_break();
-               break;
-
-       case T___leave:
-               statement = parse_leave();
-               break;
-
-       case T_return:
-               statement = parse_return();
-               break;
-
-       case ';':
-               if (warning.empty_statement) {
-                       warningf(HERE, "statement is empty");
-               }
-               statement = create_empty_statement();
-               next_token();
-               break;
-
+       switch (token.type) {
        case T_IDENTIFIER:
                if (look_ahead(1)->type == ':') {
                        statement = parse_label_statement();
-                       break;
-               }
-
-               if (is_typedef_symbol(token.v.symbol)) {
+               } else if (is_typedef_symbol(token.v.symbol)) {
                        statement = parse_declaration_statement();
-                       break;
+               } else {
+                       statement = parse_expression_statement();
                }
-
-               statement = parse_expression_statement();
                break;
 
        case T___extension__:
-               /* this can be a prefix to a declaration or an expression statement */
-               /* we simply eat it now and parse the rest with tail recursion */
+               /* This can be a prefix to a declaration or an expression statement.
+                * We simply eat it now and parse the rest with tail recursion. */
                do {
                        next_token();
-               } while(token.type == T___extension__);
+               } while (token.type == T___extension__);
                statement = parse_statement();
                break;
 
@@ -8266,13 +9035,23 @@ static statement_t *intern_parse_statement(void)
                statement = parse_declaration_statement();
                break;
 
-       case T___try:
-               statement = parse_ms_try_statment();
-               break;
-
-       default:
-               statement = parse_expression_statement();
-               break;
+       case ';':        statement = parse_empty_statement();         break;
+       case '{':        statement = parse_compound_statement(false); break;
+       case T___leave:  statement = parse_leave();                   break;
+       case T___try:    statement = parse_ms_try_statment();         break;
+       case T_asm:      statement = parse_asm_statement();           break;
+       case T_break:    statement = parse_break();                   break;
+       case T_case:     statement = parse_case_statement();          break;
+       case T_continue: statement = parse_continue();                break;
+       case T_default:  statement = parse_default_statement();       break;
+       case T_do:       statement = parse_do();                      break;
+       case T_for:      statement = parse_for();                     break;
+       case T_goto:     statement = parse_goto();                    break;
+       case T_if:       statement = parse_if ();                     break;
+       case T_return:   statement = parse_return();                  break;
+       case T_switch:   statement = parse_switch();                  break;
+       case T_while:    statement = parse_while();                   break;
+       default:         statement = parse_expression_statement();    break;
        }
        rem_anchor_token(';');
 
@@ -8309,9 +9088,10 @@ static statement_t *parse_statement(void)
 static statement_t *parse_compound_statement(bool inside_expression_statement)
 {
        statement_t *statement = allocate_statement_zero(STATEMENT_COMPOUND);
-
        statement->base.source_position = token.source_position;
 
+       PUSH_PARENT(statement);
+
        eat('{');
        add_anchor_token('}');
 
@@ -8319,9 +9099,9 @@ static statement_t *parse_compound_statement(bool inside_expression_statement)
        scope_t *last_scope = scope;
        set_scope(&statement->compound.scope);
 
-       statement_t *last_statement = NULL;
-
-       while(token.type != '}' && token.type != T_EOF) {
+       statement_t **anchor            = &statement->compound.statements;
+       bool          only_decls_so_far = true;
+       while (token.type != '}' && token.type != T_EOF) {
                statement_t *sub_statement = intern_parse_statement();
                if (is_invalid_statement(sub_statement)) {
                        /* an error occurred. if we are at an anchor, return */
@@ -8330,16 +9110,21 @@ static statement_t *parse_compound_statement(bool inside_expression_statement)
                        continue;
                }
 
-               if (last_statement != NULL) {
-                       last_statement->base.next = sub_statement;
-               } else {
-                       statement->compound.statements = sub_statement;
+               if (warning.declaration_after_statement) {
+                       if (sub_statement->kind != STATEMENT_DECLARATION) {
+                               only_decls_so_far = false;
+                       } else if (!only_decls_so_far) {
+                               warningf(&sub_statement->base.source_position,
+                                        "ISO C90 forbids mixed declarations and code");
+                       }
                }
 
-               while(sub_statement->base.next != NULL)
+               *anchor = sub_statement;
+
+               while (sub_statement->base.next != NULL)
                        sub_statement = sub_statement->base.next;
 
-               last_statement = sub_statement;
+               anchor = &sub_statement->base.next;
        }
 
        if (token.type == '}') {
@@ -8374,6 +9159,7 @@ end_error:
        set_scope(last_scope);
        environment_pop_to(top);
 
+       POP_PARENT;
        return statement;
 }
 
@@ -8388,13 +9174,20 @@ static void initialize_builtin_types(void)
        type_ptrdiff_t   = make_global_typedef("__PTRDIFF_TYPE__",  type_long);
        type_uintmax_t   = make_global_typedef("__uintmax_t__",     type_unsigned_long_long);
        type_uptrdiff_t  = make_global_typedef("__UPTRDIFF_TYPE__", type_unsigned_long);
-       type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    type_int);
+       type_wchar_t     = make_global_typedef("__WCHAR_TYPE__",    opt_short_wchar_t ? type_unsigned_short : type_int);
        type_wint_t      = make_global_typedef("__WINT_TYPE__",     type_int);
 
        type_intmax_t_ptr  = make_pointer_type(type_intmax_t,  TYPE_QUALIFIER_NONE);
        type_ptrdiff_t_ptr = make_pointer_type(type_ptrdiff_t, TYPE_QUALIFIER_NONE);
        type_ssize_t_ptr   = make_pointer_type(type_ssize_t,   TYPE_QUALIFIER_NONE);
        type_wchar_t_ptr   = make_pointer_type(type_wchar_t,   TYPE_QUALIFIER_NONE);
+
+       /* const version of wchar_t */
+       type_const_wchar_t = allocate_type_zero(TYPE_TYPEDEF, &builtin_source_position);
+       type_const_wchar_t->typedeft.declaration  = type_wchar_t->typedeft.declaration;
+       type_const_wchar_t->base.qualifiers      |= TYPE_QUALIFIER_CONST;
+
+       type_const_wchar_t_ptr = make_pointer_type(type_const_wchar_t, TYPE_QUALIFIER_NONE);
 }
 
 /**
@@ -8406,8 +9199,9 @@ static void check_unused_globals(void)
                return;
 
        for (const declaration_t *decl = global_scope->declarations; decl != NULL; decl = decl->next) {
-               if (decl->used                ||
-                   decl->modifiers & DM_USED ||
+               if (decl->used                  ||
+                   decl->modifiers & DM_UNUSED ||
+                   decl->modifiers & DM_USED   ||
                    decl->storage_class != STORAGE_CLASS_STATIC)
                        continue;
 
@@ -8452,22 +9246,32 @@ end_error:;
  */
 static void parse_translation_unit(void)
 {
-       while(token.type != T_EOF) {
-               switch (token.type) {
-                       case ';':
-                               /* TODO error in strict mode */
-                               warningf(HERE, "stray ';' outside of function");
-                               next_token();
-                               break;
+       for (;;) switch (token.type) {
+               DECLARATION_START
+               case T_IDENTIFIER:
+               case T___extension__:
+                       parse_external_declaration();
+                       break;
 
-                       case T_asm:
-                               parse_global_asm();
-                               break;
+               case T_asm:
+                       parse_global_asm();
+                       break;
 
-                       default:
-                               parse_external_declaration();
-                               break;
-               }
+               case T_EOF:
+                       return;
+
+               case ';':
+                       /* TODO error in strict mode */
+                       warningf(HERE, "stray ';' outside of function");
+                       next_token();
+                       break;
+
+               default:
+                       errorf(HERE, "stray %K outside of function", &token);
+                       if (token.type == '(' || token.type == '{' || token.type == '[')
+                               eat_until_matching_token(token.type);
+                       next_token();
+                       break;
        }
 }