fixed some warnings
[libfirm] / ir / ir / iropt.c
index 99cc8f6..7d25747 100644 (file)
@@ -1912,7 +1912,8 @@ static ir_node *transform_node_Add(ir_node *n) {
                return n;
 
        if (mode_is_num(mode)) {
-               if (a == b && mode_is_int(mode)) {
+               /* the following code leads to endless recursion when Mul are replaced by a simple instruction chain */
+               if (!get_opt_arch_dep_running() && a == b && mode_is_int(mode)) {
                        ir_node *block = get_irn_n(n, -1);
 
                        n = new_rd_Mul(
@@ -1923,7 +1924,9 @@ static ir_node *transform_node_Add(ir_node *n) {
                                new_r_Const_long(current_ir_graph, block, mode, 2),
                                mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_A);
-               } else if (get_irn_op(a) == op_Minus) {
+                       return n;
+               }
+               if (is_Minus(a)) {
                        n = new_rd_Sub(
                                        get_irn_dbg_info(n),
                                        current_ir_graph,
@@ -1932,7 +1935,9 @@ static ir_node *transform_node_Add(ir_node *n) {
                                        get_Minus_op(a),
                                        mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
-               } else if (get_irn_op(b) == op_Minus) {
+                       return n;
+               }
+               if (is_Minus(b)) {
                        n = new_rd_Sub(
                                        get_irn_dbg_info(n),
                                        current_ir_graph,
@@ -1941,77 +1946,85 @@ static ir_node *transform_node_Add(ir_node *n) {
                                        get_Minus_op(b),
                                        mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_A_MINUS_B);
+                       return n;
                }
-               /* do NOT execute this code if reassociation is enabled, it does the inverse! */
-               else if (!get_opt_reassociation() && get_irn_op(a) == op_Mul) {
-                       ir_node *ma = get_Mul_left(a);
-                       ir_node *mb = get_Mul_right(a);
-
-                       if (b == ma) {
-                               ir_node *blk = get_irn_n(n, -1);
-                               n = new_rd_Mul(
-                                               get_irn_dbg_info(n), current_ir_graph, blk,
-                                               ma,
-                                               new_rd_Add(
-                                                       get_irn_dbg_info(n), current_ir_graph, blk,
-                                                       mb,
-                                                       new_r_Const_long(current_ir_graph, blk, mode, 1),
-                                                       mode),
-                                               mode);
-                               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
-                       } else if (b == mb) {
-                               ir_node *blk = get_irn_n(n, -1);
-                               n = new_rd_Mul(
-                                               get_irn_dbg_info(n), current_ir_graph, blk,
-                                               mb,
-                                               new_rd_Add(
+               if (! get_opt_reassociation()) {
+                       /* do NOT execute this code if reassociation is enabled, it does the inverse! */
+                       if (is_Mul(a)) {
+                               ir_node *ma = get_Mul_left(a);
+                               ir_node *mb = get_Mul_right(a);
+
+                               if (b == ma) {
+                                       ir_node *blk = get_irn_n(n, -1);
+                                       n = new_rd_Mul(
                                                        get_irn_dbg_info(n), current_ir_graph, blk,
                                                        ma,
-                                                       new_r_Const_long(current_ir_graph, blk, mode, 1),
-                                                       mode),
-                                               mode);
-                               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
-                       }
-               }
-               /* do NOT execute this code if reassociation is enabled, it does the inverse! */
-               else if (!get_opt_reassociation() && get_irn_op(b) == op_Mul) {
-                       ir_node *ma = get_Mul_left(b);
-                       ir_node *mb = get_Mul_right(b);
-
-                       if (a == ma) {
-                               ir_node *blk = get_irn_n(n, -1);
-                               n = new_rd_Mul(
-                                               get_irn_dbg_info(n), current_ir_graph, blk,
-                                               ma,
-                                               new_rd_Add(
+                                                       new_rd_Add(
+                                                               get_irn_dbg_info(n), current_ir_graph, blk,
+                                                               mb,
+                                                               new_r_Const_long(current_ir_graph, blk, mode, 1),
+                                                               mode),
+                                                       mode);
+                                       DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
+                                       return n;
+                               } else if (b == mb) {
+                                       ir_node *blk = get_irn_n(n, -1);
+                                       n = new_rd_Mul(
                                                        get_irn_dbg_info(n), current_ir_graph, blk,
                                                        mb,
-                                                       new_r_Const_long(current_ir_graph, blk, mode, 1),
-                                                       mode),
-                                               mode);
-                               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
-                       } else if (a == mb) {
-                               ir_node *blk = get_irn_n(n, -1);
-                               n = new_rd_Mul(
-                                               get_irn_dbg_info(n), current_ir_graph, blk,
-                                               mb,
-                                               new_rd_Add(
+                                                       new_rd_Add(
+                                                               get_irn_dbg_info(n), current_ir_graph, blk,
+                                                               ma,
+                                                               new_r_Const_long(current_ir_graph, blk, mode, 1),
+                                                               mode),
+                                                       mode);
+                                       DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
+                                       return n;
+                               }
+                       }
+                       if (is_Mul(b)) {
+                               ir_node *ma = get_Mul_left(b);
+                               ir_node *mb = get_Mul_right(b);
+
+                               if (a == ma) {
+                                       ir_node *blk = get_irn_n(n, -1);
+                                       n = new_rd_Mul(
                                                        get_irn_dbg_info(n), current_ir_graph, blk,
                                                        ma,
-                                                       new_r_Const_long(current_ir_graph, blk, mode, 1),
-                                                       mode),
-                                               mode);
-                               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
+                                                       new_rd_Add(
+                                                               get_irn_dbg_info(n), current_ir_graph, blk,
+                                                               mb,
+                                                               new_r_Const_long(current_ir_graph, blk, mode, 1),
+                                                               mode),
+                                                       mode);
+                                       DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
+                                       return n;
+                               }
+                               if (a == mb) {
+                                       ir_node *blk = get_irn_n(n, -1);
+                                       n = new_rd_Mul(
+                                                       get_irn_dbg_info(n), current_ir_graph, blk,
+                                                       mb,
+                                                       new_rd_Add(
+                                                               get_irn_dbg_info(n), current_ir_graph, blk,
+                                                               ma,
+                                                               new_r_Const_long(current_ir_graph, blk, mode, 1),
+                                                               mode),
+                                                       mode);
+                                       DBG_OPT_ALGSIM0(oldn, n, FS_OPT_ADD_MUL_A_X_A);
+                                       return n;
+                               }
                        }
                }
                /* Here we rely on constants be on the RIGHT side */
-               else if (get_mode_arithmetic(mode) == irma_twos_complement &&
+               if (get_mode_arithmetic(mode) == irma_twos_complement &&
                         is_Not(a) && classify_Const(b) == CNST_ONE) {
                        /* ~x + 1 = -x */
                        ir_node *op = get_Not_op(a);
                        ir_node *blk = get_irn_n(n, -1);
                        n = new_rd_Minus(get_irn_dbg_info(n), current_ir_graph, blk, op, mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_NOT_PLUS_1);
+                       return n;
                }
        }
        return n;
@@ -2025,6 +2038,7 @@ static ir_node *transform_node_Add(ir_node *n) {
  *   Sub(Sub(x, y), b) -> Sub(x, Add(y,b))
  *   Sub(Add(a, x), x) -> a
  *   Sub(x, Add(x, a)) -> -a
+ *   Sub(x, Const)     -> Add(x, -Const)
  */
 static ir_node *transform_node_Sub(ir_node *n) {
        ir_mode *mode;
@@ -2045,6 +2059,33 @@ restart:
        if (mode_is_float(mode) && (get_irg_fp_model(current_ir_graph) & fp_strict_algebraic))
                return n;
 
+       /* Sub(a, Const) -> Add(a, -Const) */
+       if (is_Const(b) && get_irn_mode(b) != mode_P) {
+               tarval *tv = get_Const_tarval(b);
+
+               tv = tarval_neg(tv);
+               if(tv != tarval_bad) {
+                       ir_node  *cnst  = new_Const(get_irn_mode(b), tv);
+                       ir_node  *block = get_nodes_block(n);
+                       dbg_info *dbgi  = get_irn_dbg_info(n);
+                       ir_graph *irg   = get_irn_irg(n);
+                       ir_node  *add   = new_rd_Add(dbgi, irg, block, a, cnst, mode);
+
+                       return add;
+               }
+       }
+
+       /* Beware of Sub(P, P) which cannot be optimized into a simple Minus ... */
+       if (mode_is_num(mode) && mode == get_irn_mode(a) && (classify_Const(a) == CNST_NULL)) {
+               n = new_rd_Minus(
+                               get_irn_dbg_info(n),
+                               current_ir_graph,
+                               get_irn_n(n, -1),
+                               b,
+                               mode);
+               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
+               return n;
+       }
        if (is_Add(a)) {
                if (mode_wrap_around(mode)) {
                        ir_node *left  = get_Add_left(a);
@@ -2058,6 +2099,7 @@ restart:
                                }
                                n = right;
                                DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
+                               return n;
                        } else if (right == b) {
                                if (mode != get_irn_mode(left)) {
                                        /* This Sub is an effective Cast */
@@ -2065,9 +2107,11 @@ restart:
                                }
                                n = left;
                                DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
+                               return n;
                        }
                }
-       } else if (is_Add(b)) {
+       }
+       if (is_Add(b)) {
                if (mode_wrap_around(mode)) {
                        ir_node *left  = get_Add_left(b);
                        ir_node *right = get_Add_right(b);
@@ -2082,6 +2126,7 @@ restart:
                                        n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
                                }
                                DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
+                               return n;
                        } else if (right == a) {
                                ir_mode *l_mode = get_irn_mode(left);
 
@@ -2091,9 +2136,11 @@ restart:
                                        n = new_r_Conv(get_irn_irg(n), get_irn_n(n, -1), n, mode);
                                }
                                DBG_OPT_ALGSIM1(oldn, a, b, n, FS_OPT_ADD_SUB);
+                               return n;
                        }
                }
-       } else if (mode_is_int(mode) && is_Conv(a) && is_Conv(b)) {
+       }
+       if (mode_is_int(mode) && is_Conv(a) && is_Conv(b)) {
                ir_mode *mode = get_irn_mode(a);
 
                if (mode == get_irn_mode(b)) {
@@ -2115,18 +2162,8 @@ restart:
                        }
                }
        }
-       /* Beware of Sub(P, P) which cannot be optimized into a simple Minus ... */
-       else if (mode_is_num(mode) && mode == get_irn_mode(a) && (classify_Const(a) == CNST_NULL)) {
-               n = new_rd_Minus(
-                               get_irn_dbg_info(n),
-                               current_ir_graph,
-                               get_irn_n(n, -1),
-                               b,
-                               mode);
-               DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_0_A);
-       }
        /* do NOT execute this code if reassociation is enabled, it does the inverse! */
-       else if (get_opt_reassociation() && get_irn_op(a) == op_Mul) {
+       if (get_opt_reassociation() && get_irn_op(a) == op_Mul) {
                ir_node *ma = get_Mul_left(a);
                ir_node *mb = get_Mul_right(a);
 
@@ -2144,6 +2181,7 @@ restart:
                                                mode),
                                        mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
+                       return n;
                } else if (mb == b) {
                        ir_node *blk = get_irn_n(n, -1);
                        n = new_rd_Mul(
@@ -2158,8 +2196,10 @@ restart:
                                                mode),
                                        mode);
                        DBG_OPT_ALGSIM0(oldn, n, FS_OPT_SUB_MUL_A_X_A);
+                       return n;
                }
-       } else if (get_irn_op(a) == op_Sub) {
+       }
+       if (is_Sub(a)) {
                ir_node *x   = get_Sub_left(a);
                ir_node *y   = get_Sub_right(a);
                ir_node *blk = get_irn_n(n, -1);
@@ -2189,6 +2229,7 @@ restart:
                set_Sub_left(n, x);
                set_Sub_right(n, add);
                DBG_OPT_ALGSIM0(n, n, FS_OPT_SUB_SUB_X_Y_Z);
+               return n;
        }
        return n;
 }  /* transform_node_Sub */
@@ -2551,6 +2592,7 @@ typedef ir_node* (*recursive_transform) (ir_node *n);
 /**
  * makes use of distributive laws for and, or, eor
  *     and(a OP c, b OP c) -> and(a, b) OP c
+ * note, might return a different op than n
  */
 static ir_node *transform_bitwise_distributive(ir_node *n,
                                                recursive_transform trans_func)
@@ -2661,6 +2703,23 @@ static ir_node *transform_node_And(ir_node *n) {
 
        HANDLE_BINOP_PHI(tarval_and, a,b,c);
 
+       /* we can evaluate 2 Projs of the same Cmp */
+       if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
+               ir_node *pred_a = get_Proj_pred(a);
+               ir_node *pred_b = get_Proj_pred(b);
+               if(pred_a == pred_b) {
+                       dbg_info *dbgi  = get_irn_dbg_info(n);
+                       ir_node  *block = get_nodes_block(pred_a);
+                       pn_Cmp pn_a     = get_Proj_proj(a);
+                       pn_Cmp pn_b     = get_Proj_proj(b);
+                       /* yes, we can simply calculate with pncs */
+                       pn_Cmp new_pnc  = pn_a & pn_b;
+
+                       return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
+                                          new_pnc);
+               }
+       }
+
        n = transform_bitwise_distributive(n, transform_node_And);
 
        return n;
@@ -2677,6 +2736,23 @@ static ir_node *transform_node_Eor(ir_node *n) {
 
        HANDLE_BINOP_PHI(tarval_eor, a,b,c);
 
+       /* we can evaluate 2 Projs of the same Cmp */
+       if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
+               ir_node *pred_a = get_Proj_pred(a);
+               ir_node *pred_b = get_Proj_pred(b);
+               if(pred_a == pred_b) {
+                       dbg_info *dbgi  = get_irn_dbg_info(n);
+                       ir_node  *block = get_nodes_block(pred_a);
+                       pn_Cmp pn_a     = get_Proj_proj(a);
+                       pn_Cmp pn_b     = get_Proj_proj(b);
+                       /* yes, we can simply calculate with pncs */
+                       pn_Cmp new_pnc  = pn_a ^ pn_b;
+
+                       return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
+                                          new_pnc);
+               }
+       }
+
        if (a == b) {
                /* a ^ a = 0 */
                n = new_rd_Const(get_irn_dbg_info(n), current_ir_graph, get_irn_n(n, -1),
@@ -2967,225 +3043,290 @@ static ir_node *transform_node_Proj_Cond(ir_node *proj) {
  * Normalizes and optimizes Cmp nodes.
  */
 static ir_node *transform_node_Proj_Cmp(ir_node *proj) {
-       if (get_opt_reassociation()) {
-               ir_node *n     = get_Proj_pred(proj);
-               ir_node *left  = get_Cmp_left(n);
-               ir_node *right = get_Cmp_right(n);
-               ir_node *c     = NULL;
-               tarval *tv     = NULL;
-               int changed    = 0;
-               ir_mode *mode  = NULL;
-               long proj_nr   = get_Proj_proj(proj);
+       ir_node *n     = get_Proj_pred(proj);
+       ir_node *left  = get_Cmp_left(n);
+       ir_node *right = get_Cmp_right(n);
+       ir_node *c     = NULL;
+       tarval *tv     = NULL;
+       int changed    = 0;
+       ir_mode *mode  = NULL;
+       long proj_nr   = get_Proj_proj(proj);
+
+       /* we can evaluate this direct */
+       switch(proj_nr) {
+       case pn_Cmp_False:
+               return new_Const(mode_b, get_tarval_b_false());
+       case pn_Cmp_True:
+               return new_Const(mode_b, get_tarval_b_true());
+       case pn_Cmp_Leg:
+               if(!mode_is_float(get_irn_mode(left)))
+                       return new_Const(mode_b, get_tarval_b_true());
+               break;
+       default:
+               break;
+       }
 
-               /*
-                * First step: normalize the compare op
-                * by placing the constant on the right site
-                * or moving the lower address node to the left.
-                * We ignore the case that both are constants
-                * this case should be optimized away.
-                */
-               if (get_irn_op(right) == op_Const) {
-                       c = right;
-               } else if (get_irn_op(left) == op_Const) {
-                       c     = left;
-                       left  = right;
-                       right = c;
-
-                       proj_nr = get_inversed_pnc(proj_nr);
-                       changed |= 1;
-               } else if (get_irn_idx(left) > get_irn_idx(right)) {
-                       ir_node *t = left;
-
-                       left  = right;
-                       right = t;
-
-                       proj_nr = get_inversed_pnc(proj_nr);
-                       changed |= 1;
+       /* Remove unnecessary conversions */
+       /* TODO handle constants */
+       if (is_Conv(left) && is_Conv(right)) {
+               ir_mode* mode        = get_irn_mode(left);
+               ir_node* op_left     = get_Conv_op(left);
+               ir_node* op_right    = get_Conv_op(right);
+               ir_mode* mode_left   = get_irn_mode(op_left);
+               ir_mode* mode_right  = get_irn_mode(op_right);
+
+               if (smaller_mode(mode_left, mode) && smaller_mode(mode_right, mode)) {
+                       ir_graph* irg   = current_ir_graph;
+                       ir_node*  block = get_nodes_block(n);
+                       ir_node*  new_left;
+                       ir_node*  new_right;
+
+                       if (mode_left == mode_right) {
+                               new_left  = op_left;
+                               new_right = op_right;
+                       } else if (smaller_mode(mode_left, mode_right)) {
+                               new_left  = new_r_Conv(irg, block, op_left, mode_right);
+                               new_right = op_right;
+                       } else if (smaller_mode(mode_right, mode_left)) {
+                               new_left  = op_left;
+                               new_right = new_r_Conv(irg, block, op_right, mode_left);
+                       } else {
+                               goto no_remove_conv;
+                       }
+                       left  = new_left;
+                       right = new_right;
+                       set_Cmp_left( n, left);
+                       set_Cmp_right(n, right);
+no_remove_conv:;
                }
+       }
 
-               /*
-                * Second step: Try to reduce the magnitude
-                * of a constant. This may help to generate better code
-                * later and may help to normalize more compares.
-                * Of course this is only possible for integer values.
-                */
-               if (c) {
-                       mode = get_irn_mode(c);
-                       tv = get_Const_tarval(c);
+       if (get_irn_mode(left) == mode_b) {
+               ir_graph* irg   = current_ir_graph;
+               ir_node*  block = get_nodes_block(n);
 
-                       if (tv != tarval_bad) {
-                               /* the following optimization is possible on modes without Overflow
-                                * on Unary Minus or on == and !=:
-                                * -a CMP c  ==>  a swap(CMP) -c
-                                *
-                                * Beware: for two-complement Overflow may occur, so only == and != can
-                                * be optimized, see this:
-                                * -MININT < 0 =/=> MININT > 0 !!!
-                                */
-                               if (get_opt_constant_folding() && get_irn_op(left) == op_Minus &&
-                                   (!mode_overflow_on_unary_Minus(mode) ||
-                                   (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
-                                       left = get_Minus_op(left);
-                                       tv = tarval_neg(tv);
+               switch (proj_nr) {
+                       case pn_Cmp_Le: return new_r_Or( irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
+                       case pn_Cmp_Lt: return new_r_And(irg, block, new_r_Not(irg, block, left, mode_b), right, mode_b);
+                       case pn_Cmp_Ge: return new_r_Or( irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
+                       case pn_Cmp_Gt: return new_r_And(irg, block, left, new_r_Not(irg, block, right, mode_b), mode_b);
+                       case pn_Cmp_Lg: return new_r_Eor(irg, block, left, right, mode_b);
+                       case pn_Cmp_Eq: return new_r_Not(irg, block, new_r_Eor(irg, block, left, right, mode_b), mode_b);
+               }
+       }
+
+       if (!get_opt_reassociation())
+               return proj;
+
+       /*
+        * First step: normalize the compare op
+        * by placing the constant on the right site
+        * or moving the lower address node to the left.
+        * We ignore the case that both are constants
+        * this case should be optimized away.
+        */
+       if (get_irn_op(right) == op_Const) {
+               c = right;
+       } else if (get_irn_op(left) == op_Const) {
+               c     = left;
+               left  = right;
+               right = c;
+
+               proj_nr = get_inversed_pnc(proj_nr);
+               changed |= 1;
+       } else if (get_irn_idx(left) > get_irn_idx(right)) {
+               ir_node *t = left;
+
+               left  = right;
+               right = t;
+
+               proj_nr = get_inversed_pnc(proj_nr);
+               changed |= 1;
+       }
+
+       /*
+        * Second step: Try to reduce the magnitude
+        * of a constant. This may help to generate better code
+        * later and may help to normalize more compares.
+        * Of course this is only possible for integer values.
+        */
+       if (c) {
+               mode = get_irn_mode(c);
+               tv = get_Const_tarval(c);
+
+               if (tv != tarval_bad) {
+                       /* the following optimization is possible on modes without Overflow
+                        * on Unary Minus or on == and !=:
+                        * -a CMP c  ==>  a swap(CMP) -c
+                        *
+                        * Beware: for two-complement Overflow may occur, so only == and != can
+                        * be optimized, see this:
+                        * -MININT < 0 =/=> MININT > 0 !!!
+                        */
+                       if (get_opt_constant_folding() && get_irn_op(left) == op_Minus &&
+                               (!mode_overflow_on_unary_Minus(mode) ||
+                               (mode_is_int(mode) && (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg)))) {
+                               left = get_Minus_op(left);
+                               tv = tarval_neg(tv);
+
+                               if (tv != tarval_bad) {
+                                       proj_nr = get_inversed_pnc(proj_nr);
+                                       changed |= 2;
+                               }
+                       }
+
+                       /* for integer modes, we have more */
+                       if (mode_is_int(mode)) {
+                               /* Ne includes Unordered which is not possible on integers.
+                                * However, frontends often use this wrong, so fix it here */
+                               if (proj_nr & pn_Cmp_Uo) {
+                                       proj_nr &= ~pn_Cmp_Uo;
+                                       set_Proj_proj(proj, proj_nr);
+                               }
+
+                               /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
+                               if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
+                                       tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
+                                       tv = tarval_sub(tv, get_mode_one(mode));
 
                                        if (tv != tarval_bad) {
-                                               proj_nr = get_inversed_pnc(proj_nr);
+                                               proj_nr ^= pn_Cmp_Eq;
                                                changed |= 2;
                                        }
                                }
+                               /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
+                               else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
+                                       tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
+                                       tv = tarval_add(tv, get_mode_one(mode));
 
-                               /* for integer modes, we have more */
-                               if (mode_is_int(mode)) {
-                                       /* Ne includes Unordered which is not possible on integers.
-                                        * However, frontends often use this wrong, so fix it here */
-                                       if (proj_nr & pn_Cmp_Uo) {
-                                               proj_nr &= ~pn_Cmp_Uo;
-                                               set_Proj_proj(proj, proj_nr);
+                                       if (tv != tarval_bad) {
+                                               proj_nr ^= pn_Cmp_Eq;
+                                               changed |= 2;
                                        }
+                               }
 
-                                       /* c > 0 : a < c  ==>  a <= (c-1)    a >= c  ==>  a > (c-1) */
-                                       if ((proj_nr == pn_Cmp_Lt || proj_nr == pn_Cmp_Ge) &&
-                                               tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Gt) {
-                                               tv = tarval_sub(tv, get_mode_one(mode));
+                               /* the following reassociations work only for == and != */
+                               if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
 
-                                               if (tv != tarval_bad) {
-                                                       proj_nr ^= pn_Cmp_Eq;
-                                                       changed |= 2;
-                                               }
-                                       }
-                                       /* c < 0 : a > c  ==>  a >= (c+1)    a <= c  ==>  a < (c+1) */
-                                       else if ((proj_nr == pn_Cmp_Gt || proj_nr == pn_Cmp_Le) &&
-                                               tarval_cmp(tv, get_mode_null(mode)) == pn_Cmp_Lt) {
-                                               tv = tarval_add(tv, get_mode_one(mode));
+                                       /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
+                                       if (classify_tarval(tv) == TV_CLASSIFY_NULL && get_irn_op(left) == op_Sub) {
+                                               right = get_Sub_right(left);
+                                               left  = get_Sub_left(left);
 
+                                               tv = value_of(right);
                                                if (tv != tarval_bad) {
-                                                       proj_nr ^= pn_Cmp_Eq;
-                                                       changed |= 2;
+                                                       changed = 1;
                                                }
                                        }
 
-                                       /* the following reassociations work only for == and != */
-                                       if (proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) {
-
-                                               /* a-b == 0  ==>  a == b,  a-b != 0  ==>  a != b */
-                                               if (classify_tarval(tv) == TV_CLASSIFY_NULL && get_irn_op(left) == op_Sub) {
-                                                       right = get_Sub_right(left);
-                                                       left  = get_Sub_left(left);
-
-                                                       tv = value_of(right);
-                                                       if (tv != tarval_bad) {
-                                                               changed = 1;
-                                                       }
-                                               }
+                                       if (tv != tarval_bad) {
+                                               ir_op *op = get_irn_op(left);
 
-                                               if (tv != tarval_bad) {
-                                                       ir_op *op = get_irn_op(left);
+                                               /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
+                                               if (op == op_Sub) {
+                                                       ir_node *c1 = get_Sub_right(left);
+                                                       tarval *tv2 = value_of(c1);
 
-                                                       /* a-c1 == c2  ==>  a == c2+c1,  a-c1 != c2  ==>  a != c2+c1 */
-                                                       if (op == op_Sub) {
-                                                               ir_node *c1 = get_Sub_right(left);
-                                                               tarval *tv2 = value_of(c1);
+                                                       if (tv2 != tarval_bad) {
+                                                               tv2 = tarval_add(tv, value_of(c1));
 
                                                                if (tv2 != tarval_bad) {
-                                                                       tv2 = tarval_add(tv, value_of(c1));
-
-                                                                       if (tv2 != tarval_bad) {
-                                                                               left    = get_Sub_left(left);
-                                                                               tv      = tv2;
-                                                                               changed |= 2;
-                                                                       }
+                                                                       left    = get_Sub_left(left);
+                                                                       tv      = tv2;
+                                                                       changed |= 2;
                                                                }
                                                        }
-                                                       /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
-                                                       else if (op == op_Add) {
-                                                               ir_node *a_l = get_Add_left(left);
-                                                               ir_node *a_r = get_Add_right(left);
-                                                               ir_node *a;
-                                                               tarval *tv2;
-
-                                                               if (get_irn_op(a_l) == op_Const) {
-                                                                       a = a_r;
-                                                                       tv2 = value_of(a_l);
-                                                               } else {
-                                                                       a = a_l;
-                                                                       tv2 = value_of(a_r);
-                                                               }
-
-                                                               if (tv2 != tarval_bad) {
-                                                                       tv2 = tarval_sub(tv, tv2);
-
-                                                                       if (tv2 != tarval_bad) {
-                                                                               left    = a;
-                                                                               tv      = tv2;
-                                                                               changed |= 2;
-                                                                       }
-                                                               }
+                                               }
+                                               /* a+c1 == c2  ==>  a == c2-c1,  a+c1 != c2  ==>  a != c2-c1 */
+                                               else if (op == op_Add) {
+                                                       ir_node *a_l = get_Add_left(left);
+                                                       ir_node *a_r = get_Add_right(left);
+                                                       ir_node *a;
+                                                       tarval *tv2;
+
+                                                       if (get_irn_op(a_l) == op_Const) {
+                                                               a = a_r;
+                                                               tv2 = value_of(a_l);
+                                                       } else {
+                                                               a = a_l;
+                                                               tv2 = value_of(a_r);
                                                        }
-                                                       /* -a == c ==> a == -c, -a != c ==> a != -c */
-                                                       else if (op == op_Minus) {
-                                                               tarval *tv2 = tarval_sub(get_mode_null(mode), tv);
+
+                                                       if (tv2 != tarval_bad) {
+                                                               tv2 = tarval_sub(tv, tv2);
 
                                                                if (tv2 != tarval_bad) {
-                                                                       left    = get_Minus_op(left);
+                                                                       left    = a;
                                                                        tv      = tv2;
                                                                        changed |= 2;
                                                                }
                                                        }
                                                }
-                                       } /* == or != */
-                                       /* the following reassociations work only for <= */
-                                       else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
-                                               if (tv != tarval_bad) {
-                                                       ir_op *op = get_irn_op(left);
+                                               /* -a == c ==> a == -c, -a != c ==> a != -c */
+                                               else if (op == op_Minus) {
+                                                       tarval *tv2 = tarval_sub(get_mode_null(mode), tv);
 
-                                                       /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
-                                                       if (op == op_Abs) {
+                                                       if (tv2 != tarval_bad) {
+                                                               left    = get_Minus_op(left);
+                                                               tv      = tv2;
+                                                               changed |= 2;
                                                        }
                                                }
                                        }
-                               } /* mode_is_int */
+                               } /* == or != */
+                               /* the following reassociations work only for <= */
+                               else if (proj_nr == pn_Cmp_Le || proj_nr == pn_Cmp_Lt) {
+                                       if (tv != tarval_bad) {
+                                               ir_op *op = get_irn_op(left);
 
-                               /*
-                                * optimization for AND:
-                                * Optimize:
-                                *   And(x, C) == C  ==>  And(x, C) != 0
-                                *   And(x, C) != C  ==>  And(X, C) == 0
-                                *
-                                * if C is a single Bit constant.
-                                */
-                               if ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) &&
-                                   (get_irn_op(left) == op_And)) {
-                                       if (tarval_is_single_bit(tv)) {
-                                               /* check for Constant's match. We have check hare the tarvals,
-                                                  because our const might be changed */
-                                               ir_node *la = get_And_left(left);
-                                               ir_node *ra = get_And_right(left);
-                                               if ((is_Const(la) && get_Const_tarval(la) == tv) ||
-                                                   (is_Const(ra) && get_Const_tarval(ra) == tv)) {
-                                                               /* fine: do the transformation */
-                                                               tv = get_mode_null(get_tarval_mode(tv));
-                                                               proj_nr ^= pn_Cmp_Leg;
-                                                               changed |= 2;
+                                               /* c >= 0 : Abs(a) <= c  ==>  (unsigned)(a + c) <= 2*c */
+                                               if (op == op_Abs) {
                                                }
                                        }
                                }
-                       } /* tarval != bad */
-               }
+                       } /* mode_is_int */
 
-               if (changed) {
-                       ir_node *block = get_irn_n(n, -1); /* Beware of get_nodes_Block() */
+                       /*
+                        * optimization for AND:
+                        * Optimize:
+                        *   And(x, C) == C  ==>  And(x, C) != 0
+                        *   And(x, C) != C  ==>  And(X, C) == 0
+                        *
+                        * if C is a single Bit constant.
+                        */
+                       if ((proj_nr == pn_Cmp_Eq || proj_nr == pn_Cmp_Lg) &&
+                               (get_irn_op(left) == op_And)) {
+                               if (tarval_is_single_bit(tv)) {
+                                       /* check for Constant's match. We have check hare the tarvals,
+                                          because our const might be changed */
+                                       ir_node *la = get_And_left(left);
+                                       ir_node *ra = get_And_right(left);
+                                       if ((is_Const(la) && get_Const_tarval(la) == tv) ||
+                                               (is_Const(ra) && get_Const_tarval(ra) == tv)) {
+                                                       /* fine: do the transformation */
+                                                       tv = get_mode_null(get_tarval_mode(tv));
+                                                       proj_nr ^= pn_Cmp_Leg;
+                                                       changed |= 2;
+                                       }
+                               }
+                       }
+               } /* tarval != bad */
+       }
 
-                       if (changed & 2)      /* need a new Const */
-                               right = new_Const(mode, tv);
+       if (changed) {
+               ir_node *block = get_irn_n(n, -1); /* Beware of get_nodes_Block() */
 
-                       /* create a new compare */
-                       n = new_rd_Cmp(get_irn_dbg_info(n), current_ir_graph, block,
-                               left, right);
+               if (changed & 2)      /* need a new Const */
+                       right = new_Const(mode, tv);
 
-                       set_Proj_pred(proj, n);
-                       set_Proj_proj(proj, proj_nr);
-               }
+               /* create a new compare */
+               n = new_rd_Cmp(get_irn_dbg_info(n), current_ir_graph, block,
+                       left, right);
+
+               set_Proj_pred(proj, n);
+               set_Proj_proj(proj, proj_nr);
        }
+
        return proj;
 }  /* transform_node_Proj_Cmp */
 
@@ -3498,6 +3639,23 @@ static ir_node *transform_node_Or(ir_node *n) {
        ir_node *a = get_Or_left(n);
        ir_node *b = get_Or_right(n);
 
+       /* we can evaluate 2 Projs of the same Cmp */
+       if(get_irn_mode(n) == mode_b && is_Proj(a) && is_Proj(b)) {
+               ir_node *pred_a = get_Proj_pred(a);
+               ir_node *pred_b = get_Proj_pred(b);
+               if(pred_a == pred_b) {
+                       dbg_info *dbgi  = get_irn_dbg_info(n);
+                       ir_node  *block = get_nodes_block(pred_a);
+                       pn_Cmp pn_a     = get_Proj_proj(a);
+                       pn_Cmp pn_b     = get_Proj_proj(b);
+                       /* yes, we can simply calculate with pncs */
+                       pn_Cmp new_pnc  = pn_a | pn_b;
+
+                       return new_rd_Proj(dbgi, current_ir_graph, block, pred_a, mode_b,
+                                          new_pnc);
+               }
+       }
+
        HANDLE_BINOP_PHI(tarval_or, a,b,c);
 
        n = transform_node_Or_bf_store(n);
@@ -4369,6 +4527,8 @@ ir_node *optimize_node(ir_node *n) {
        if (get_opt_constant_folding()) {
                /* neither constants nor Tuple values can be evaluated */
                if (iro != iro_Const && (get_irn_mode(n) != mode_T)) {
+                       unsigned fp_model = get_irg_fp_model(current_ir_graph);
+                       int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
                        /* try to evaluate */
                        tv = computed_value(n);
                        if (tv != tarval_bad) {
@@ -4406,8 +4566,10 @@ ir_node *optimize_node(ir_node *n) {
                                if (old_tp && get_type_mode(old_tp) == get_tarval_mode (tv))
                                        set_Const_type(nw, old_tp);
                                DBG_OPT_CSTEVAL(oldn, nw);
+                               tarval_enable_fp_ops(old_fp_mode);
                                return nw;
                        }
+                       tarval_enable_fp_ops(old_fp_mode);
                }
        }
 
@@ -4476,6 +4638,8 @@ ir_node *optimize_in_place_2(ir_node *n) {
        if (get_opt_constant_folding()) {
                /* neither constants nor Tuple values can be evaluated */
                if (iro != iro_Const && get_irn_mode(n) != mode_T) {
+                       unsigned fp_model = get_irg_fp_model(current_ir_graph);
+                       int old_fp_mode = tarval_enable_fp_ops((fp_model & fp_strict_algebraic) == 0);
                        /* try to evaluate */
                        tv = computed_value(n);
                        if (tv != tarval_bad) {
@@ -4495,8 +4659,10 @@ ir_node *optimize_in_place_2(ir_node *n) {
                                        set_Const_type(n, old_tp);
 
                                DBG_OPT_CSTEVAL(oldn, n);
+                               tarval_enable_fp_ops(old_fp_mode);
                                return n;
                        }
+                       tarval_enable_fp_ops(old_fp_mode);
                }
        }