sparc: remove unnecessary convs before stores
[libfirm] / ir / be / ia32 / ia32_intrinsics.c
index 6a1d215..050c663 100644 (file)
@@ -67,15 +67,15 @@ void ia32_handle_intrinsics(void)
 /**
  * Reroute edges from the pn_Call_T_result proj of a call.
  *
- * @param proj   the pn_Call_T_result Proj
- * @param l_res  the lower 32 bit result
- * @param h_res  the upper 32 bit result or NULL
+ * @param resproj  the pn_Call_T_result Proj
+ * @param l_res    the lower 32 bit result
+ * @param h_res    the upper 32 bit result or NULL
  */
-static void reroute_result(ir_node *proj, ir_node *l_res, ir_node *h_res)
+static void reroute_result(ir_node *resproj, ir_node *l_res, ir_node *h_res)
 {
        const ir_edge_t *edge, *next;
 
-       foreach_out_edge_safe(proj, edge, next) {
+       foreach_out_edge_safe(resproj, edge, next) {
                ir_node *proj = get_edge_src_irn(edge);
                long    pn    = get_Proj_proj(proj);
 
@@ -154,7 +154,6 @@ static void resolve_call(ir_node *call, ir_node *l_res, ir_node *h_res, ir_graph
                        res = new_r_Tuple(block, 2, in);
                }
 
-               turn_into_tuple(call, pn_Call_max);
                /*
                 * Beware:
                 * We do not check here if this call really has exception and regular Proj's.
@@ -167,6 +166,7 @@ static void resolve_call(ir_node *call, ir_node *l_res, ir_node *h_res, ir_graph
                jmp = new_r_Jmp(block);
                set_opt_cse(old_cse);
 
+               turn_into_tuple(call, pn_Call_max+1);
                set_Tuple_pred(call, pn_Call_M,         nomem);
                set_Tuple_pred(call, pn_Call_X_regular, jmp);
                set_Tuple_pred(call, pn_Call_X_except,  new_r_Bad(irg, mode_X));
@@ -242,275 +242,6 @@ static int map_Sub(ir_node *call, void *ctx)
        return 1;
 }
 
-/**
- * Map a Shl (a_l, a_h, count)
- */
-static int map_Shl(ir_node *call, void *ctx)
-{
-       ir_graph *irg     = current_ir_graph;
-       dbg_info *dbg     = get_irn_dbg_info(call);
-       ir_node  *block   = get_nodes_block(call);
-       ir_node  **params = get_Call_param_arr(call);
-       ir_type  *method  = get_Call_type(call);
-       ir_node  *a_l     = params[BINOP_Left_Low];
-       ir_node  *a_h     = params[BINOP_Left_High];
-       ir_node  *cnt     = params[BINOP_Right_Low];
-       ir_mode  *l_mode  = get_type_mode(get_method_res_type(method, 0));
-       ir_mode  *h_mode  = get_type_mode(get_method_res_type(method, 1));
-       ir_mode  *c_mode;
-       ir_node  *l_res, *h_res, *irn, *cond, *upper, *n_block, *l1, *l2, *h1, *h2, *in[2];
-       (void) ctx;
-
-       if (is_Const(cnt)) {
-               /* the shift count is a const, create better code */
-               ir_tarval *tv = get_Const_tarval(cnt);
-
-               if (tarval_cmp(tv, new_tarval_from_long(32, l_mode))
-                               & (ir_relation_greater_equal)) {
-                       /* simplest case: shift only the lower bits. Note that there is no
-                          need to reduce the constant here, this is done by the hardware.  */
-                       ir_node *conv = new_rd_Conv(dbg, block, a_l, h_mode);
-                       h_res = new_rd_Shl(dbg, block, conv, cnt, h_mode);
-                       l_res = new_rd_Const(dbg, irg, get_mode_null(l_mode));
-
-               } else {
-                       /* h_res = SHLD a_h, a_l, cnt */
-                       h_res = new_bd_ia32_l_ShlD(dbg, block, a_h, a_l, cnt, h_mode);
-
-                       /* l_res = SHL a_l, cnt */
-                       l_res = new_bd_ia32_l_ShlDep(dbg, block, a_l, cnt, h_res, l_mode);
-               }
-
-               resolve_call(call, l_res, h_res, irg, block);
-               return 1;
-       }
-
-       part_block(call);
-       upper = get_nodes_block(call);
-
-       /* h_res = SHLD a_h, a_l, cnt */
-       h1 = new_bd_ia32_l_ShlD(dbg, upper, a_h, a_l, cnt, h_mode);
-
-       /* l_res = SHL a_l, cnt */
-       l1 = new_bd_ia32_l_ShlDep(dbg, upper, a_l, cnt, h1, l_mode);
-
-       c_mode = get_irn_mode(cnt);
-       irn    = new_r_Const_long(irg, c_mode, 32);
-       irn    = new_rd_And(dbg, upper, cnt, irn, c_mode);
-       irn    = new_rd_Cmp(dbg, upper, irn, new_r_Const(irg, get_mode_null(c_mode)), ir_relation_equal);
-       cond   = new_rd_Cond(dbg, upper, irn);
-
-       in[0]  = new_r_Proj(cond, mode_X, pn_Cond_true);
-       in[1]  = new_r_Proj(cond, mode_X, pn_Cond_false);
-
-       /* the block for cnt >= 32 */
-       n_block = new_rd_Block(dbg, irg, 1, &in[1]);
-       h2      = new_rd_Conv(dbg, n_block, l1, h_mode);
-       l2      = new_r_Const(irg, get_mode_null(l_mode));
-       in[1]   = new_r_Jmp(n_block);
-
-       set_irn_in(block, 2, in);
-
-       in[0] = l1;
-       in[1] = l2;
-       l_res = new_r_Phi(block, 2, in, l_mode);
-       set_Block_phis(block, l_res);
-
-       in[0] = h1;
-       in[1] = h2;
-       h_res = new_r_Phi(block, 2, in, h_mode);
-       set_Phi_next(l_res, h_res);
-       set_Phi_next(h_res, NULL);
-
-       /* move it down */
-       set_nodes_block(call, block);
-       for (irn = (ir_node*)get_irn_link(call); irn != NULL;
-            irn = (ir_node*)get_irn_link(irn)) {
-               set_nodes_block(irn, block);
-       }
-
-       resolve_call(call, l_res, h_res, irg, block);
-       return 1;
-}
-
-/**
- * Map a Shr (a_l, a_h, count)
- */
-static int map_Shr(ir_node *call, void *ctx)
-{
-       ir_graph *irg     = current_ir_graph;
-       dbg_info *dbg     = get_irn_dbg_info(call);
-       ir_node  *block   = get_nodes_block(call);
-       ir_node  **params = get_Call_param_arr(call);
-       ir_type  *method  = get_Call_type(call);
-       ir_node  *a_l     = params[BINOP_Left_Low];
-       ir_node  *a_h     = params[BINOP_Left_High];
-       ir_node  *cnt     = params[BINOP_Right_Low];
-       ir_mode  *l_mode  = get_type_mode(get_method_res_type(method, 0));
-       ir_mode  *h_mode  = get_type_mode(get_method_res_type(method, 1));
-       ir_mode  *c_mode;
-       ir_node  *l_res, *h_res, *irn, *cond, *upper, *n_block, *l1, *l2, *h1, *h2, *in[2];
-       (void) ctx;
-
-       if (is_Const(cnt)) {
-               /* the shift count is a const, create better code */
-               ir_tarval *tv = get_Const_tarval(cnt);
-
-               if (tarval_cmp(tv, new_tarval_from_long(32, l_mode)) & (ir_relation_greater_equal)) {
-                       /* simplest case: shift only the higher bits. Note that there is no
-                          need to reduce the constant here, this is done by the hardware.  */
-                       ir_node *conv = new_rd_Conv(dbg, block, a_h, l_mode);
-                       h_res = new_rd_Const(dbg, irg, get_mode_null(h_mode));
-                       l_res = new_rd_Shr(dbg, block, conv, cnt, l_mode);
-               } else {
-                       /* l_res = SHRD a_h:a_l, cnt */
-                       l_res = new_bd_ia32_l_ShrD(dbg, block, a_l, a_h, cnt, l_mode);
-
-                       /* h_res = SHR a_h, cnt */
-                       h_res = new_bd_ia32_l_ShrDep(dbg, block, a_h, cnt, l_res, h_mode);
-               }
-               resolve_call(call, l_res, h_res, irg, block);
-               return 1;
-       }
-
-       part_block(call);
-       upper = get_nodes_block(call);
-
-       /* l_res = SHRD a_h:a_l, cnt */
-       l1 = new_bd_ia32_l_ShrD(dbg, upper, a_l, a_h, cnt, l_mode);
-
-       /* h_res = SHR a_h, cnt */
-       h1 = new_bd_ia32_l_ShrDep(dbg, upper, a_h, cnt, l1, h_mode);
-
-       c_mode = get_irn_mode(cnt);
-       irn    = new_r_Const_long(irg, c_mode, 32);
-       irn    = new_rd_And(dbg, upper, cnt, irn, c_mode);
-       irn    = new_rd_Cmp(dbg, upper, irn, new_r_Const(irg, get_mode_null(c_mode)), ir_relation_equal);
-       cond   = new_rd_Cond(dbg, upper, irn);
-
-       in[0]  = new_r_Proj(cond, mode_X, pn_Cond_true);
-       in[1]  = new_r_Proj(cond, mode_X, pn_Cond_false);
-
-       /* the block for cnt >= 32 */
-       n_block = new_rd_Block(dbg, irg, 1, &in[1]);
-       l2      = new_rd_Conv(dbg, n_block, h1, l_mode);
-       h2      = new_r_Const(irg, get_mode_null(h_mode));
-       in[1]   = new_r_Jmp(n_block);
-
-       set_irn_in(block, 2, in);
-
-       in[0] = l1;
-       in[1] = l2;
-       l_res = new_r_Phi(block, 2, in, l_mode);
-       set_Block_phis(block, l_res);
-
-       in[0] = h1;
-       in[1] = h2;
-       h_res = new_r_Phi(block, 2, in, h_mode);
-       set_Phi_next(l_res, h_res);
-       set_Phi_next(h_res, NULL);
-
-       /* move it down */
-       set_nodes_block(call, block);
-       for (irn = (ir_node*)get_irn_link(call); irn != NULL;
-            irn = (ir_node*)get_irn_link(irn)) {
-               set_nodes_block(irn, block);
-       }
-
-       resolve_call(call, l_res, h_res, irg, block);
-       return 1;
-}
-
-/**
- * Map a Shrs (a_l, a_h, count)
- */
-static int map_Shrs(ir_node *call, void *ctx)
-{
-       ir_graph *irg     = current_ir_graph;
-       dbg_info *dbg     = get_irn_dbg_info(call);
-       ir_node  *block   = get_nodes_block(call);
-       ir_node  **params = get_Call_param_arr(call);
-       ir_type  *method  = get_Call_type(call);
-       ir_node  *a_l     = params[BINOP_Left_Low];
-       ir_node  *a_h     = params[BINOP_Left_High];
-       ir_node  *cnt     = params[BINOP_Right_Low];
-       ir_mode  *l_mode  = get_type_mode(get_method_res_type(method, 0));
-       ir_mode  *h_mode  = get_type_mode(get_method_res_type(method, 1));
-       ir_mode  *c_mode;
-       ir_node  *l_res, *h_res, *irn, *cond, *upper, *n_block, *l1, *l2, *h1, *h2, *in[2];
-       (void) ctx;
-
-       if (is_Const(cnt)) {
-               /* the shift count is a const, create better code */
-               ir_tarval *tv = get_Const_tarval(cnt);
-
-               if (tarval_cmp(tv, new_tarval_from_long(32, l_mode)) & (ir_relation_greater_equal)) {
-                       /* simplest case: shift only the higher bits. Note that there is no
-                          need to reduce the constant here, this is done by the hardware.  */
-                       ir_node *conv    = new_rd_Conv(dbg, block, a_h, l_mode);
-                       ir_mode *c_mode  = get_irn_mode(cnt);
-
-                       h_res = new_rd_Shrs(dbg, block, a_h, new_r_Const_long(irg, c_mode, 31), h_mode);
-                       l_res = new_rd_Shrs(dbg, block, conv, cnt, l_mode);
-               } else {
-                       /* l_res = SHRD a_h:a_l, cnt */
-                       l_res = new_bd_ia32_l_ShrD(dbg, block, a_l, a_h, cnt, l_mode);
-
-                       /* h_res = SAR a_h, cnt */
-                       h_res = new_bd_ia32_l_SarDep(dbg, block, a_h, cnt, l_res, h_mode);
-               }
-               resolve_call(call, l_res, h_res, irg, block);
-               return 1;
-       }
-
-       part_block(call);
-       upper = get_nodes_block(call);
-
-       /* l_res = SHRD a_h:a_l, cnt */
-       l1 = new_bd_ia32_l_ShrD(dbg, upper, a_l, a_h, cnt, l_mode);
-
-       /* h_res = SAR a_h, cnt */
-       h1 = new_bd_ia32_l_SarDep(dbg, upper, a_h, cnt, l1, h_mode);
-
-       c_mode = get_irn_mode(cnt);
-       irn    = new_r_Const_long(irg, c_mode, 32);
-       irn    = new_rd_And(dbg, upper, cnt, irn, c_mode);
-       irn    = new_rd_Cmp(dbg, upper, irn, new_r_Const(irg, get_mode_null(c_mode)), ir_relation_equal);
-       cond   = new_rd_Cond(dbg, upper, irn);
-
-       in[0]  = new_r_Proj(cond, mode_X, pn_Cond_true);
-       in[1]  = new_r_Proj(cond, mode_X, pn_Cond_false);
-
-       /* the block for cnt >= 32 */
-       n_block = new_rd_Block(dbg, irg, 1, &in[1]);
-       l2      = new_rd_Conv(dbg, n_block, h1, l_mode);
-       h2      = new_rd_Shrs(dbg, n_block, a_h, new_r_Const_long(irg, c_mode, 31), h_mode);
-       in[1]   = new_r_Jmp(n_block);
-
-       set_irn_in(block, 2, in);
-
-       in[0] = l1;
-       in[1] = l2;
-       l_res = new_r_Phi(block, 2, in, l_mode);
-       set_Block_phis(block, l_res);
-
-       in[0] = h1;
-       in[1] = h2;
-       h_res = new_r_Phi(block, 2, in, h_mode);
-       set_Phi_next(l_res, h_res);
-       set_Phi_next(h_res, NULL);
-
-       /* move it down */
-       set_nodes_block(call, block);
-       for (irn = (ir_node*)get_irn_link(call); irn != NULL;
-            irn = (ir_node*)get_irn_link(irn)) {
-               set_nodes_block(irn, block);
-       }
-
-       resolve_call(call, l_res, h_res, irg, block);
-       return 1;
-}
-
 /**
  * Checks where node high is a sign extension of low.
  */
@@ -693,7 +424,7 @@ static ir_entity *create_compiler_lib_entity(const char *name, ir_type *type)
                id = id_mangle3("__", id, "");
        }
        entity = new_entity(glob, id, type);
-       set_entity_visibility(entity, ir_visibility_local);
+       set_entity_visibility(entity, ir_visibility_external);
        set_entity_ld_ident(entity, id);
        return entity;
 }
@@ -804,7 +535,7 @@ static int map_Conv(ir_node *call, void *ctx)
                        h_res = new_r_Proj(float_to_ll, h_res_mode,
                                                           pn_ia32_l_FloattoLL_res_high);
                } else {
-                       /* convert from float to signed 64bit */
+                       /* Convert from float to unsigned 64bit. */
                        ir_mode   *flt_mode = get_irn_mode(a_f);
                        ir_tarval *flt_tv   = new_tarval_from_str("9223372036854775808", 19, flt_mode);
                        ir_node   *flt_corr = new_r_Const(irg, flt_tv);
@@ -904,18 +635,6 @@ ir_entity *ia32_create_intrinsic_fkt(ir_type *method, const ir_op *op,
                ent    = &i_ents[iro_Sub];
                mapper = map_Sub;
                break;
-       case iro_Shl:
-               ent    = &i_ents[iro_Shl];
-               mapper = map_Shl;
-               break;
-       case iro_Shr:
-               ent    = &i_ents[iro_Shr];
-               mapper = map_Shr;
-               break;
-       case iro_Shrs:
-               ent    = &i_ents[iro_Shrs];
-               mapper = map_Shrs;
-               break;
        case iro_Mul:
                ent    = &i_ents[iro_Mul];
                mapper = map_Mul;