From: Dale Weiler Date: Fri, 30 Jan 2015 05:40:59 +0000 (-0500) Subject: Don't allocate globals for constants that aren't read X-Git-Tag: xonotic-v0.8.1 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=refs%2Ftags%2Fxonotic-v0.8.1;hp=ff37abb0c7c60481e1264914fa5e02e9986c5cd9 Don't allocate globals for constants that aren't read --- diff --git a/ir.c b/ir.c index 5a6229f..8d52898 100644 --- a/ir.c +++ b/ir.c @@ -3772,6 +3772,8 @@ static bool ir_builder_gen_global(ir_builder *self, ir_value *global, bool isloc { ir_value_code_setaddr(global, vec_size(self->code->globals)); if (global->hasvalue) { + if (global->cvq == CV_CONST && !vec_size(global->reads)) + return true; iptr = (int32_t*)&global->constval.ivec[0]; vec_push(self->code->globals, *iptr); } else { @@ -3787,7 +3789,10 @@ static bool ir_builder_gen_global(ir_builder *self, ir_value *global, bool isloc { ir_value_code_setaddr(global, vec_size(self->code->globals)); if (global->hasvalue) { - uint32_t load = code_genstring(self->code, global->constval.vstring); + uint32_t load; + if (global->cvq == CV_CONST && !vec_size(global->reads)) + return true; + load = code_genstring(self->code, global->constval.vstring); vec_push(self->code->globals, load); } else { vec_push(self->code->globals, 0);