[PATCH, rtl-optimization]: Fix PR60851, ICE: in extract_constrain_insn_cached, at recog.c

Jakub Jelinek jakub@redhat.com
Thu Mar 19 07:44:00 GMT 2015


On Wed, Mar 18, 2015 at 08:00:33PM +0100, Uros Bizjak wrote:
> 2015-03-18  Uros Bizjak  <ubizjak@gmail.com>
> 
>     PR rtl-optimization/60851
>     * recog.c (constrain_operands): Accept a pseudo register before reload
>     for LRA enabled targets.
> 
> --- recog.c	(revision 221493)
> +++ recog.c	(working copy)
> @@ -2775,6 +2775,10 @@ constrain_operands (int strict, alternative_mask a
>  			       /* Before reload, accept what reload can turn
>  				  into mem.  */
>  			       || (strict < 0 && CONSTANT_P (op))
> +			       /* Before reload, accept a pseudo,
> +				  since LRA can turn it into mem.  */
> +			       || (targetm.lra_p () && strict < 0 && REG_P (op)
> +				   && REGNO (op) >= FIRST_PSEUDO_REGISTER)
>  			       /* During reload, accept a pseudo  */
>  			       || (reload_in_progress && REG_P (op)
>  				   && REGNO (op) >= FIRST_PSEUDO_REGISTER)))

This looks reasonable to me, but please give Vlad an extra day to comment on
it.

As the two adjacent conditions are mostly the same, perhaps it might be
better written as
			       || ((/* Before reload, accept a pseudo, since
				       LRA can turn it into a mem.
				    (targetm.lra_p () && strict < 0)
				    /* During reload, accept a pseudo.  */
				    || reload_in_progress)
				   && REG_P (op)
				   && REGNO (op) >= FIRST_PSEUDO_REGISTER)))

or put REG_P && REGNO checks first and only then test when.

For 4.9 backport, please wait a few days after it goes into the trunk.

	Jakub



More information about the Gcc-patches mailing list