From 39f572fe99a72f4cf9dda1092c5569d26dcf8410 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sun, 25 Nov 2012 19:35:00 +0100 Subject: [PATCH] constant flag, -finitialized-nonconstants to turn initialized globals into mutable variables --- ast.c | 1 + ast.h | 1 + opts.def | 1 + parser.c | 12 ++++++++++-- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ast.c b/ast.c index a01f915..9aca0e9 100644 --- a/ast.c +++ b/ast.c @@ -331,6 +331,7 @@ ast_value* ast_value_new(lex_ctx ctx, const char *name, int t) self->name = name ? util_strdup(name) : NULL; self->expression.vtype = t; self->expression.next = NULL; + self->constant = false; self->hasvalue = false; self->uses = 0; memset(&self->constval, 0, sizeof(self->constval)); diff --git a/ast.h b/ast.h index c4f6dc7..4b88955 100644 --- a/ast.h +++ b/ast.h @@ -155,6 +155,7 @@ struct ast_value_s ast_value *next; */ + bool constant; bool hasvalue; union { double vfloat; diff --git a/opts.def b/opts.def index 6fe31e5..c083c2b 100644 --- a/opts.def +++ b/opts.def @@ -36,6 +36,7 @@ GMQCC_DEFINE_FLAG(SHORT_LOGIC) GMQCC_DEFINE_FLAG(PERL_LOGIC) GMQCC_DEFINE_FLAG(TRANSLATABLE_STRINGS) + GMQCC_DEFINE_FLAG(INITIALIZED_NONCONSTANTS) #endif /* warning flags */ diff --git a/parser.c b/parser.c index 7c6ec8a..3bc4884 100644 --- a/parser.c +++ b/parser.c @@ -211,6 +211,7 @@ static ast_value* parser_const_float(parser_t *parser, double d) return parser->imm_float[i]; } out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_FLOAT); + out->constant = true; out->hasvalue = true; out->constval.vfloat = d; vec_push(parser->imm_float, out); @@ -256,6 +257,7 @@ static ast_value* parser_const_string(parser_t *parser, const char *str, bool do out = ast_value_new(parser_ctx(parser), name, TYPE_STRING); } else out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_STRING); + out->constant = true; out->hasvalue = true; out->constval.vstring = parser_strdup(str); vec_push(parser->imm_string, out); @@ -271,6 +273,7 @@ static ast_value* parser_const_vector(parser_t *parser, vector v) return parser->imm_vector[i]; } out = ast_value_new(parser_ctx(parser), "#IMMEDIATE", TYPE_VECTOR); + out->constant = true; out->hasvalue = true; out->constval.vvec = v; vec_push(parser->imm_vector, out); @@ -517,7 +520,7 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy) (exprs[0]->expression.vtype != exprs[1]->expression.vtype || \ exprs[0]->expression.vtype != T) #define CanConstFold1(A) \ - (ast_istype((A), ast_value) && ((ast_value*)(A))->hasvalue) + (ast_istype((A), ast_value) && ((ast_value*)(A))->hasvalue && ((ast_value*)(A))->constant) #define CanConstFold(A, B) \ (CanConstFold1(A) && CanConstFold1(B)) #define ConstV(i) (asvalue[(i)]->constval.vvec) @@ -2085,7 +2088,7 @@ static bool parse_switch(parser_t *parser, ast_block *block, ast_expression **ou if (!OPTS_FLAG(RELAXED_SWITCH)) { opval = (ast_value*)operand; - if (!ast_istype(operand, ast_value) || !opval->hasvalue) { + if (!ast_istype(operand, ast_value) || !opval->constant) { parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch"); ast_unref(operand); return false; @@ -3470,6 +3473,9 @@ static bool parse_variable(parser_t *parser, ast_block *localblock, bool nofield } } + if (is_const) + var->constant = true; + /* Part 1: * check for validity: (end_sys_..., multiple-definitions, prototypes, ...) * Also: if there was a prototype, `var` will be deleted and set to `proto` which @@ -3822,6 +3828,8 @@ skipvar: parseerror(parser, "cannot initialize a global constant variable with a non-constant expression"); else { + if (opts_standard != COMPILER_GMQCC && !OPTS_FLAG(INITIALIZED_NONCONSTANTS)) + var->constant = true; var->hasvalue = true; if (cval->expression.vtype == TYPE_STRING) var->constval.vstring = parser_strdup(cval->constval.vstring); -- 2.39.2