public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Guenther <richard.guenther@gmail.com>
To: Jakub Jelinek <jakub@redhat.com>
Cc: gcc-patches@gcc.gnu.org, Martin Jambor <mjambor@suse.cz>,
	richard.sandiford@linaro.org
Subject: Re: [4.6] Fix type of SRAed enum accesses
Date: Wed, 19 Oct 2011 08:43:00 -0000	[thread overview]
Message-ID: <CAFiYyc37qY2=S18pZsN-4M_ya3P=YZc+EBv74mmBRdatQ4o++A@mail.gmail.com> (raw)
In-Reply-To: <20111018122129.GP2210@tyan-ft48-01.lab.bos.redhat.com>

On Tue, Oct 18, 2011 at 2:21 PM, Jakub Jelinek <jakub@redhat.com> wrote:
> On Tue, Sep 27, 2011 at 03:26:03PM +0100, Richard Sandiford wrote:
>> This patch fixes a miscompilation of stage1 c-parser.o in an ARM bootstrap.
>> When an access to an enum field was SRAed, a component ref used the type
>> of the integer temporary variable instead of the type of the enum.
>> It therefore didn't alias other accesses to the same structure,
>> and was scheduled after a copy-load.
>>
>> Tested on x86_64-linux-gnu, and by verifying that c-parser.o is correctly
>> compiled for ARM after the patch.  Martin says he's going to test on ia64
>> too (thanks) -- I'll add 50326 to the changelog if that goes OK.
>>
>> OK to install if there are no regressions on ia64?
>
> As mentioned in bugzilla, the patch that caused this regression has been
> committed to 4.6 branch as well.
>
> Here is a backport of that patch to 4.6 branch, bootstrapped/regtested on
> x86_64-linux and i686-linux and Matthias AFAIK bootstrapped it on ia64-linux
> (where it previously failed to bootstrap because of this), regtest pending.
>
> Ok for 4.6?

Ok.

Richard.

> 2011-10-18  Jakub Jelinek  <jakub@redhat.com>
>
>        PR target/50350
>        Backport from mainline
>        2011-09-27  Richard Sandiford  <rdsandiford@googlemail.com>
>
>        PR middle-end/50386
>        PR middle-end/50326
>        * tree-sra.c (build_ref_for_model): Use the type of the field as
>        the type of the COMPONENT_REF.
>
> --- gcc/tree-sra.c.jj   2011-09-30 17:19:10.000000000 +0200
> +++ gcc/tree-sra.c      2011-10-18 08:01:28.682647833 +0200
> @@ -1448,12 +1448,12 @@ build_ref_for_model (location_t loc, tre
>  {
>   if (TREE_CODE (model->expr) == COMPONENT_REF)
>     {
> -      tree t, exp_type;
> -      offset -= int_bit_position (TREE_OPERAND (model->expr, 1));
> +      tree t, exp_type, fld = TREE_OPERAND (model->expr, 1);
> +      offset -= int_bit_position (fld);
>       exp_type = TREE_TYPE (TREE_OPERAND (model->expr, 0));
>       t = build_ref_for_offset (loc, base, offset, exp_type, gsi, insert_after);
> -      return fold_build3_loc (loc, COMPONENT_REF, model->type, t,
> -                             TREE_OPERAND (model->expr, 1), NULL_TREE);
> +      return fold_build3_loc (loc, COMPONENT_REF, TREE_TYPE (fld), t, fld,
> +                             NULL_TREE);
>     }
>   else
>     return build_ref_for_offset (loc, base, offset, model->type,
>
>        Jakub
>

      reply	other threads:[~2011-10-19  8:26 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-27 15:36 Richard Sandiford
2011-09-27 16:17 ` Richard Guenther
2011-09-27 16:44 ` Martin Jambor
2011-10-18 12:30 ` [4.6] " Jakub Jelinek
2011-10-19  8:43   ` Richard Guenther [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAFiYyc37qY2=S18pZsN-4M_ya3P=YZc+EBv74mmBRdatQ4o++A@mail.gmail.com' \
    --to=richard.guenther@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=mjambor@suse.cz \
    --cc=richard.sandiford@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).