This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: cprop fix for PR78626


On Thu, Dec 08, 2016 at 01:21:04PM +0100, Bernd Schmidt wrote:
> This is another case where an optimization turns a trap_if 
> unconditional. We have to defer changing the CFG, since the rest of 
> cprop seems to blow up when we modify things while scanning.
> 
> Bootstrapped and tested on x86_64-linux, and reportedly fixes the 
> problem on ppc, ok?

This fixes PR78626, but not yet PR78727.

> @@ -1825,11 +1828,26 @@ one_cprop_pass (void)
>  		       insn into a NOTE, or deleted the insn.  */
>  		if (! NOTE_P (insn) && ! insn->deleted ())
>  		  mark_oprs_set (insn);
> +
> +		if (first_uncond_trap == NULL
> +		    && GET_CODE (PATTERN (insn)) == TRAP_IF
> +		    && XEXP (PATTERN (insn), 0) == const1_rtx)
> +		  first_uncond_trap = insn;
>  	      }
> +	  if (first_uncond_trap != NULL && first_uncond_trap != BB_END (bb))
> +	    uncond_traps.safe_push (first_uncond_trap);
>  	}

The problem for PR78727 is that we also need to do this for insns that
already are the last insn in the block:

> +      while (!uncond_traps.is_empty ())
> +	{
> +	  rtx_insn *insn = uncond_traps.pop ();
> +	  basic_block to_split = BLOCK_FOR_INSN (insn);
> +	  remove_edge (split_block (to_split, insn));
> +	  emit_barrier_after_bb (to_split);
> +	}

We need that barrier, and we also need the successor edges removed
(which split_block+remove_edge does).

(PR78727 works fine with just that BB_END test deleted).


Segher


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]