X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Fconvopt.c;h=4ac59bebddf2e78cd80bc31d7236d544a620b456;hb=5f5f3eeb1c1bf24ed1afbd03a249557c1a6e7d9a;hp=11631c42bee170e653611e7de97e4722666ee27f;hpb=4b3b89d08873a30a8b08fe8507d1796257495e42;p=libfirm diff --git a/ir/opt/convopt.c b/ir/opt/convopt.c index 11631c42b..4ac59bebd 100644 --- a/ir/opt/convopt.c +++ b/ir/opt/convopt.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -54,14 +54,26 @@ DEBUG_ONLY(static firm_dbg_module_t *dbg); +static INLINE int imin(int a, int b) { return a < b ? a : b; } + static int is_optimizable_node(const ir_node *node) { - return - is_Add(node) || - is_Sub(node) || - is_Mul(node) || - is_Phi(node); + switch (get_irn_opcode(node)) { + case iro_Add: + case iro_And: + case iro_Eor: + case iro_Minus: + case iro_Mul: + case iro_Not: + case iro_Or: + case iro_Phi: + case iro_Shl: + case iro_Sub: + return 1; + + default: return 0; + } } static tarval* conv_const_tv(const ir_node* cnst, ir_mode* dest_mode) @@ -69,6 +81,15 @@ static tarval* conv_const_tv(const ir_node* cnst, ir_mode* dest_mode) return tarval_convert_to(get_Const_tarval(cnst), dest_mode); } +static +int is_downconv(ir_mode *src_mode, ir_mode *dest_mode) +{ + return + mode_is_int(src_mode) && + mode_is_int(dest_mode) && + get_mode_size_bits(dest_mode) < get_mode_size_bits(src_mode); +} + static int get_conv_costs(const ir_node *node, ir_mode *dest_mode) { @@ -90,19 +111,39 @@ int get_conv_costs(const ir_node *node, ir_mode *dest_mode) return 1; } - if (is_Conv(node)) { + if (is_Conv(node) && is_downconv(get_irn_mode(node), dest_mode)) { return get_conv_costs(get_Conv_op(node), dest_mode) - 1; } +#if 0 // TODO + /* Take the minimum of the conversion costs for Phi predecessors as only one + * branch is actually executed at a time */ + if (is_Phi(node)) { + size_t i; + size_t arity = get_Phi_n_preds(node); + int costs; + + costs = get_conv_costs(get_Phi_pred(node, 0), dest_mode); + for (i = 1; i < arity; ++i) { + ir_node *pred = get_Phi_pred(node, i); + int c = get_conv_costs(pred, dest_mode); + if (c < costs) costs = c; + } + + return costs; + } +#endif + if (!is_optimizable_node(node)) { return 1; } costs = 0; - arity = get_irn_arity(node); + // The shift count does not participate in the conv optimisation + arity = is_Shl(node) ? 1 : get_irn_arity(node); for (i = 0; i < arity; ++i) { ir_node *pred = get_irn_n(node, i); - costs += get_conv_costs(pred, dest_mode); + costs += imin(get_conv_costs(pred, dest_mode), 1); } return costs; @@ -138,7 +179,7 @@ ir_node *conv_transform(ir_node *node, ir_mode *dest_mode) return place_conv(node, dest_mode); } - if (is_Conv(node)) { + if (is_Conv(node) && is_downconv(get_irn_mode(node), dest_mode)) { return conv_transform(get_Conv_op(node), dest_mode); } @@ -146,28 +187,24 @@ ir_node *conv_transform(ir_node *node, ir_mode *dest_mode) return place_conv(node, dest_mode); } - arity = get_irn_arity(node); + // The shift count does not participate in the conv optimisation + arity = is_Shl(node) ? 1 : get_irn_arity(node); for (i = 0; i < arity; i++) { ir_node *pred = get_irn_n(node, i); - ir_node *transformed = conv_transform(pred, dest_mode); + ir_node *transformed; + if (get_conv_costs(pred, dest_mode) > 0) { + transformed = place_conv(pred, dest_mode); + } else { + transformed = conv_transform(pred, dest_mode); + } set_irn_n(node, i, transformed); } set_irn_mode(node, dest_mode); return node; } -static -int is_downconv(ir_mode *src_mode, ir_mode *dest_mode) -{ - return - mode_is_int(src_mode) && - mode_is_int(dest_mode) && - get_mode_size_bits(dest_mode) < get_mode_size_bits(src_mode); -} - -/* TODO, backends (at least ia23) can't handle it at the moment, - and it's probably not more efficient on most - archs */ +/* TODO, backends (at least ia32) can't handle it at the moment, + and it's probably not more efficient on most archs */ #if 0 static void try_optimize_cmp(ir_node *node) @@ -190,6 +227,7 @@ void conv_opt_walker(ir_node *node, void *data) ir_mode *pred_mode; ir_mode *mode; int costs; + (void) data; #if 0 if(is_Cmp(node)) { @@ -211,11 +249,13 @@ void conv_opt_walker(ir_node *node, void *data) /* - 1 for the initial conv */ costs = get_conv_costs(pred, mode) - 1; DB((dbg, LEVEL_2, "Costs for %+F -> %+F: %d\n", node, pred, costs)); - if (costs >= 0) return; + if (costs > 0) return; transformed = conv_transform(pred, mode); - exchange(node, transformed); - changed = 1; + if (node != transformed) { + exchange(node, transformed); + changed = 1; + } } void conv_opt(ir_graph *irg)