public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Biener <richard.guenther@gmail.com>
To: "H.J. Lu" <hjl.tools@gmail.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] x86: Reject target("no-general-regs-only")
Date: Thu, 27 Aug 2020 10:46:51 +0200	[thread overview]
Message-ID: <CAFiYyc3JTdJu4BAFvSKyzdgso8suBVhiA+DoafuG+5R9-efuog@mail.gmail.com> (raw)
In-Reply-To: <20200826193948.2418618-1-hjl.tools@gmail.com>

On Wed, Aug 26, 2020 at 9:40 PM H.J. Lu via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> Reject target("no-general-regs-only") pragma and attribute.

mgeneral-regs-only
Target Report RejectNegative Mask(GENERAL_REGS_ONLY) Var(ix86_target_flags) Save
Generate code which uses only the general registers.

it has already RejectNegative - why's that not honored?  Is this a general
issue?

Richard.

> gcc/
>
>         PR target/96802
>         * config/i386/i386-options.c (ix86_valid_target_attribute_inner_p):
>         Reject target("no-general-regs-only").
>
> gcc/testsuite/
>
>         PR target/96802
>         * gcc.target/i386/pr96802-1.c: New test.
>         * gcc.target/i386/pr96802-2.c: Likewise.
> ---
>  gcc/config/i386/i386-options.c            |  7 +++++++
>  gcc/testsuite/gcc.target/i386/pr96802-1.c | 12 ++++++++++++
>  gcc/testsuite/gcc.target/i386/pr96802-2.c | 16 ++++++++++++++++
>  3 files changed, 35 insertions(+)
>  create mode 100644 gcc/testsuite/gcc.target/i386/pr96802-1.c
>  create mode 100644 gcc/testsuite/gcc.target/i386/pr96802-2.c
>
> diff --git a/gcc/config/i386/i386-options.c b/gcc/config/i386/i386-options.c
> index e0fc68c27bf..b93c338346f 100644
> --- a/gcc/config/i386/i386-options.c
> +++ b/gcc/config/i386/i386-options.c
> @@ -1189,6 +1189,13 @@ ix86_valid_target_attribute_inner_p (tree fndecl, tree args, char *p_strings[],
>         {
>           if (mask == OPTION_MASK_GENERAL_REGS_ONLY)
>             {
> +             if (!opt_set_p)
> +               {
> +                 error_at (loc, "pragma or attribute %<target(\"%s\")%>  "
> +                           "does not allow a negated form", p);
> +                 return false;
> +               }
> +
>               if (type != ix86_opt_ix86_yes)
>                 gcc_unreachable ();
>
> diff --git a/gcc/testsuite/gcc.target/i386/pr96802-1.c b/gcc/testsuite/gcc.target/i386/pr96802-1.c
> new file mode 100644
> index 00000000000..e6ceb95d238
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/i386/pr96802-1.c
> @@ -0,0 +1,12 @@
> +/* { dg-do compile } */
> +
> +/* Reject the negated form of non-negatable attributes.  */
> +
> +__attribute__ ((target ("no-general-regs-only")))
> +int
> +foo (int a)
> +{
> +  return a + 1;
> +}
> +
> +/* { dg-error "does not allow a negated form" "" { target *-*-* } 0 } */
> diff --git a/gcc/testsuite/gcc.target/i386/pr96802-2.c b/gcc/testsuite/gcc.target/i386/pr96802-2.c
> new file mode 100644
> index 00000000000..515f5673777
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/i386/pr96802-2.c
> @@ -0,0 +1,16 @@
> +/* { dg-do compile } */
> +
> +/* Reject the negated form of non-negatable pragma target.  */
> +
> +#pragma GCC push_options
> +#pragma GCC target("no-general-regs-only")
> +
> +int
> +foo (int a)
> +{
> +  return a + 1;
> +}
> +
> +#pragma GCC pop_options
> +
> +/* { dg-error "does not allow a negated form" "" { target *-*-* } 0 } */
> --
> 2.26.2
>

  reply	other threads:[~2020-08-27  8:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-26 19:39 H.J. Lu
2020-08-27  8:46 ` Richard Biener [this message]
2020-08-27 10:36   ` H.J. Lu
2020-08-26 19:54 Uros Bizjak

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=CAFiYyc3JTdJu4BAFvSKyzdgso8suBVhiA+DoafuG+5R9-efuog@mail.gmail.com \
    --to=richard.guenther@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hjl.tools@gmail.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).