From 5f2b7e3d57af89e32db489664ed5b6363294ce8b Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 31 Jul 2013 17:05:43 +0000 Subject: [PATCH] fixed vector ops constant folding. --- fold.c | 23 ++++++++++++++++++----- parser.c | 17 +++-------------- 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/fold.c b/fold.c index 6a8cec2..5352b78 100644 --- a/fold.c +++ b/fold.c @@ -323,7 +323,7 @@ static GMQCC_INLINE ast_expression *fold_op_mul_vec(fold_t *fold, vec3_t vec, as out = (ast_expression*)ast_member_new(fold_ctx(fold), (ast_expression*)sel, set[0]-'x', NULL); out->node.keep = false; ((ast_member*)out)->rvalue = true; - if (!x != -1) + if (x != -1) return (ast_expression*)ast_binary_new(fold_ctx(fold), INSTR_MUL_F, fold_constgen_float(fold, x), out); } return NULL; @@ -416,8 +416,21 @@ static GMQCC_INLINE ast_expression *fold_op_div(fold_t *fold, ast_value *a, ast_ } else if (isvector(a)) { if (fold_can_2(a, b)) return fold_constgen_vector(fold, vec3_mulvf(fold_immvalue_vector(a), 1.0f / fold_immvalue_float(b))); - else if (fold_can_1(b)) - return fold_constgen_float (fold, 1.0f / fold_immvalue_float(b)); + else { + return (ast_expression*)ast_binary_new( + fold_ctx(fold), + INSTR_MUL_VF, + (ast_expression*)a, + (fold_can_1(b)) + ? (ast_expression*)fold_constgen_float(fold, 1.0f / fold_immvalue_float(b)) + : (ast_expression*)ast_binary_new( + fold_ctx(fold), + INSTR_DIV_F, + (ast_expression*)fold->imm_float[1], + (ast_expression*)b + ) + ); + } } return NULL; } @@ -478,8 +491,8 @@ static GMQCC_INLINE ast_expression *fold_op_andor(fold_t *fold, ast_value *a, as fold, ((or) ? (fold_immediate_true(fold, a) || fold_immediate_true(fold, b)) : (fold_immediate_true(fold, a) && fold_immediate_true(fold, b))) - ? 1.0f - : 0.0f + ? 1 + : 0 ); } } diff --git a/parser.c b/parser.c index fc2ef35..1661390 100644 --- a/parser.c +++ b/parser.c @@ -587,6 +587,7 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy) } } break; + case opid1('/'): if (exprs[1]->vtype != TYPE_FLOAT) { ast_type_to_string(exprs[0], ty1, sizeof(ty1)); @@ -595,21 +596,9 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy) return false; } if (!(out = fold_op(parser->fold, op, exprs))) { - if (exprs[0]->vtype == TYPE_FLOAT) + if (exprs[0]->vtype == TYPE_FLOAT) out = (ast_expression*)ast_binary_new(ctx, INSTR_DIV_F, exprs[0], exprs[1]); - else if (exprs[0]->vtype == TYPE_VECTOR) { - out = (ast_expression*)ast_binary_new ( - ctx, - INSTR_MUL_VF, - exprs[0], - (ast_expression*)ast_binary_new( - ctx, - INSTR_DIV_F, - (ast_expression*)parser->fold->imm_float[1], - exprs[1] - ) - ); - } else { + else { ast_type_to_string(exprs[0], ty1, sizeof(ty1)); ast_type_to_string(exprs[1], ty2, sizeof(ty2)); compile_error(ctx, "invalid types used in expression: cannot divide types %s and %s", ty1, ty2); -- 2.39.2