From: David Malcolm Date: Fri, 22 Aug 2014 21:41:07 +0000 (+0000) Subject: sel-sched-ir.c: Use rtx_insn X-Git-Tag: releases/gcc-5.1.0~5204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ee1fbb1a8c76c8ed32482360255b967421580ae;p=thirdparty%2Fgcc.git sel-sched-ir.c: Use rtx_insn gcc/ 2014-08-22 David Malcolm * sel-sched-ir.c (vinsn_copy): Strengthen local "copy" from rtx to rtx_insn *. (speculate_expr): Likewise for locals "orig_insn_rtx", "spec_insn_rtx". (eq_transformed_insns): Likewise for locals "i1", "i2". (check_for_new_jump): Likewise for return type and local "end". (find_new_jump): Likewise for return type and local "jump". (sel_split_edge): Likewise for local "jump". (sel_create_recovery_block): Likewise. (sel_redirect_edge_and_branch_force): Likewise. (sel_redirect_edge_and_branch): Likewise. From-SVN: r214380 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7b0886e310d4..4e28a80ee555 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,17 @@ +2014-08-22 David Malcolm + + * sel-sched-ir.c (vinsn_copy): Strengthen local "copy" from rtx to + rtx_insn *. + (speculate_expr): Likewise for locals "orig_insn_rtx", + "spec_insn_rtx". + (eq_transformed_insns): Likewise for locals "i1", "i2". + (check_for_new_jump): Likewise for return type and local "end". + (find_new_jump): Likewise for return type and local "jump". + (sel_split_edge): Likewise for local "jump". + (sel_create_recovery_block): Likewise. + (sel_redirect_edge_and_branch_force): Likewise. + (sel_redirect_edge_and_branch): Likewise. + 2014-08-22 David Malcolm * sel-sched.c (substitute_reg_in_expr): Strengthen local diff --git a/gcc/sel-sched-ir.c b/gcc/sel-sched-ir.c index c381c9cdee64..59fe8ebbdf4b 100644 --- a/gcc/sel-sched-ir.c +++ b/gcc/sel-sched-ir.c @@ -1246,7 +1246,7 @@ vinsn_create (insn_t insn, bool force_unique_p) vinsn_t vinsn_copy (vinsn_t vi, bool reattach_p) { - rtx copy; + rtx_insn *copy; bool unique = VINSN_UNIQUE_P (vi); vinsn_t new_vi; @@ -1962,7 +1962,7 @@ int speculate_expr (expr_t expr, ds_t ds) { int res; - rtx orig_insn_rtx; + rtx_insn *orig_insn_rtx; rtx spec_pat; ds_t target_ds, current_ds; @@ -1983,7 +1983,8 @@ speculate_expr (expr_t expr, ds_t ds) case 1: { - rtx spec_insn_rtx = create_insn_rtx_from_pattern (spec_pat, NULL_RTX); + rtx_insn *spec_insn_rtx = + create_insn_rtx_from_pattern (spec_pat, NULL_RTX); vinsn_t spec_vinsn = create_vinsn_from_insn_rtx (spec_insn_rtx, false); change_vinsn_in_expr (expr, spec_vinsn); @@ -2825,8 +2826,10 @@ hash_transformed_insns (const void *p) static int eq_transformed_insns (const void *p, const void *q) { - rtx i1 = VINSN_INSN_RTX (((const struct transformed_insns *) p)->vinsn_old); - rtx i2 = VINSN_INSN_RTX (((const struct transformed_insns *) q)->vinsn_old); + rtx_insn *i1 = + VINSN_INSN_RTX (((const struct transformed_insns *) p)->vinsn_old); + rtx_insn *i2 = + VINSN_INSN_RTX (((const struct transformed_insns *) q)->vinsn_old); if (INSN_UID (i1) == INSN_UID (i2)) return 1; @@ -5434,10 +5437,10 @@ sel_split_block (basic_block bb, rtx after) /* If BB ends with a jump insn whose ID is bigger then PREV_MAX_UID, return it. Otherwise returns NULL. */ -static rtx +static rtx_insn * check_for_new_jump (basic_block bb, int prev_max_uid) { - rtx end; + rtx_insn *end; end = sel_bb_end (bb); if (end && INSN_UID (end) >= prev_max_uid) @@ -5447,10 +5450,10 @@ check_for_new_jump (basic_block bb, int prev_max_uid) /* Look for a new jump either in FROM_BB block or in newly created JUMP_BB block. New means having UID at least equal to PREV_MAX_UID. */ -static rtx +static rtx_insn * find_new_jump (basic_block from, basic_block jump_bb, int prev_max_uid) { - rtx jump; + rtx_insn *jump; /* Return immediately if no new insns were emitted. */ if (get_max_uid () == prev_max_uid) @@ -5473,7 +5476,7 @@ sel_split_edge (edge e) { basic_block new_bb, src, other_bb = NULL; int prev_max_uid; - rtx jump; + rtx_insn *jump; src = e->src; prev_max_uid = get_max_uid (); @@ -5536,7 +5539,7 @@ sel_create_recovery_block (insn_t orig_insn) { basic_block first_bb, second_bb, recovery_block; basic_block before_recovery = NULL; - rtx jump; + rtx_insn *jump; first_bb = BLOCK_FOR_INSN (orig_insn); if (sel_bb_end_p (orig_insn)) @@ -5587,7 +5590,7 @@ sel_redirect_edge_and_branch_force (edge e, basic_block to) { basic_block jump_bb, src, orig_dest = e->dest; int prev_max_uid; - rtx jump; + rtx_insn *jump; int old_seqno = -1; /* This function is now used only for bookkeeping code creation, where @@ -5631,7 +5634,7 @@ sel_redirect_edge_and_branch (edge e, basic_block to) bool latch_edge_p; basic_block src, orig_dest = e->dest; int prev_max_uid; - rtx jump; + rtx_insn *jump; edge redirected; bool recompute_toporder_p = false; bool maybe_unreachable = single_pred_p (orig_dest);