public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@redhat.com>
To: Jason Merrill <jason@redhat.com>
Cc: gcc-patches List <gcc-patches@gcc.gnu.org>
Subject: Re: [C++ PATCH] Fix ICE with inline asm and MODIFY_EXPR/preinc/predec in output operand (PR c++/84961)
Date: Wed, 21 Mar 2018 10:34:00 -0000	[thread overview]
Message-ID: <20180321102606.GI8577@tucnak> (raw)
In-Reply-To: <CADzB+2=NTxq8r5E4eK2G2Dng+Mb1a0AWzfhaCakNv+UfrSJpFg@mail.gmail.com>

On Tue, Mar 20, 2018 at 05:58:43PM -0400, Jason Merrill wrote:
> On Tue, Mar 20, 2018 at 5:04 PM, Jakub Jelinek <jakub@redhat.com> wrote:
> > --- gcc/cp/semantics.c.jj       2018-03-20 11:58:17.069356145 +0100
> > +++ gcc/cp/semantics.c  2018-03-20 21:56:43.745292245 +0100
> > @@ -1512,6 +1512,26 @@ finish_asm_stmt (int volatile_p, tree st
> >                       && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
> >             cxx_readonly_error (operand, lv_asm);
> >
> > +         tree *op = &operand;
> > +         while (TREE_CODE (*op) == COMPOUND_EXPR)
> > +           op = &TREE_OPERAND (*op, 1);
> > +         switch (TREE_CODE (*op))
> > +           {
> > +           case PREINCREMENT_EXPR:
> > +           case PREDECREMENT_EXPR:
> > +           case MODIFY_EXPR:
> > +             if (TREE_SIDE_EFFECTS (TREE_OPERAND (*op, 0)))
> > +               *op = build2 (TREE_CODE (*op), TREE_TYPE (*op),
> > +                             cp_stabilize_reference (TREE_OPERAND (*op, 0)),
> > +                             TREE_OPERAND (*op, 1));
> > +             *op = build2 (COMPOUND_EXPR, TREE_TYPE (*op), *op,
> > +                           TREE_OPERAND (*op, 0));
> > +             op = &TREE_OPERAND (*op, 1);
> > +             break;
> > +           default:
> > +             break;
> > +           }
> 
> Hmm, it would be nice to share this with the similar patterns in
> unary_complex_lvalue and cp_build_modify_expr.

You mean just outline the
      if (TREE_SIDE_EFFECTS (TREE_OPERAND (lhs, 0)))
        lhs = build2 (TREE_CODE (lhs), TREE_TYPE (lhs),
                      cp_stabilize_reference (TREE_OPERAND (lhs, 0)),
                      TREE_OPERAND (lhs, 1));
      lhs = build2 (COMPOUND_EXPR, lhstype, lhs, TREE_OPERAND (lhs, 0));
into lhs = some_function (lhs); and use that in finish_asm_stmt,
unary_complex_lvalue and cp_build_modify_expr in these spots?
I really have no idea how to commonize anything else, e.g. the COMPOUND_EXPR
handling is substantially different between the 3 functions.

Any suggestion for the some_function name if you want that?

> Does COND_EXPR work without adjustment?

It seems to be:
int a, b;

void
foo (bool x)
{
  asm volatile ("" : "=r" (x ? a : b));
}

void
bar (bool x)
{
  asm volatile ("" : : "m" (x ? a : b));
}

I guess it should be added as another testcase.

	Jakub

  reply	other threads:[~2018-03-21 10:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-20 21:06 Jakub Jelinek
2018-03-20 22:01 ` Jason Merrill
2018-03-21 10:34   ` Jakub Jelinek [this message]
2018-03-21 17:03     ` Jason Merrill
2018-03-21 20:40       ` [C++ PATCH] Fix ICE with inline asm and MODIFY_EXPR/preinc/predec in output operand (PR c++/84961, take 2) Jakub Jelinek
2018-03-21 17:52         ` Jason Merrill

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=20180321102606.GI8577@tucnak \
    --to=jakub@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jason@redhat.com \
    /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).