public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Uros Bizjak <ubizjak@gmail.com>
To: "Martin Liška" <mliska@suse.cz>
Cc: "gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] i386: Enable UINTR and HRESET for -march that supports it
Date: Mon, 8 Mar 2021 14:15:55 +0100	[thread overview]
Message-ID: <CAFULd4Y+fOeDf0EpkPTOVo1FTQqRX_Fj=jnyuU51c3frMRyt-A@mail.gmail.com> (raw)
In-Reply-To: <ec0a2601-1517-592b-f561-05a4b9ae6a83@suse.cz>

On Mon, Mar 8, 2021 at 1:45 PM Martin Liška <mliska@suse.cz> wrote:
>
> Hello.
>
> The patch fixes missing features for -march targets that support
> PTA_UINTR and PTA_HRESET.
>
> Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
>
> Ready to be installed?
> Thanks,
> Martin
>
> gcc/ChangeLog:
>
>         PR target/99463
>         * config/i386/i386-options.c (ix86_option_override_internal):
>         Enable UINTR and HRESET for -march that supports it.
>
> gcc/testsuite/ChangeLog:
>
>         PR target/99463
>         * gcc.target/i386/pr99463-2.c: New test.
>         * gcc.target/i386/pr99463.c: New test.

OK, but looking at i386.h, similar handing for several other PTA_*
flags is missing.

Thanks,
Uros.

> ---
>   gcc/config/i386/i386-options.c            | 7 +++++++
>   gcc/testsuite/gcc.target/i386/pr99463-2.c | 5 +++++
>   gcc/testsuite/gcc.target/i386/pr99463.c   | 5 +++++
>   3 files changed, 17 insertions(+)
>   create mode 100644 gcc/testsuite/gcc.target/i386/pr99463-2.c
>   create mode 100644 gcc/testsuite/gcc.target/i386/pr99463.c
>
> diff --git a/gcc/config/i386/i386-options.c b/gcc/config/i386/i386-options.c
> index cdeabbfca4b..410fa0cc436 100644
> --- a/gcc/config/i386/i386-options.c
> +++ b/gcc/config/i386/i386-options.c
> @@ -2354,6 +2354,13 @@ ix86_option_override_internal (bool main_args_p,
>         if (((processor_alias_table[i].flags & PTA_PKU) != 0)
>             && !(opts->x_ix86_isa_flags_explicit & OPTION_MASK_ISA_PKU))
>           opts->x_ix86_isa_flags |= OPTION_MASK_ISA_PKU;
> +       if (((processor_alias_table[i].flags & PTA_UINTR) != 0)
> +           && !(opts->x_ix86_isa_flags2_explicit & OPTION_MASK_ISA2_UINTR))
> +         opts->x_ix86_isa_flags2 |= OPTION_MASK_ISA2_UINTR;
> +       if (((processor_alias_table[i].flags & PTA_HRESET) != 0)
> +           && !(opts->x_ix86_isa_flags2_explicit & OPTION_MASK_ISA2_HRESET))
> +         opts->x_ix86_isa_flags2 |= OPTION_MASK_ISA2_HRESET;
> +
>
>         /* Don't enable x87 instructions if only general registers are
>            allowed by target("general-regs-only") function attribute or
> diff --git a/gcc/testsuite/gcc.target/i386/pr99463-2.c b/gcc/testsuite/gcc.target/i386/pr99463-2.c
> new file mode 100644
> index 00000000000..017ca959510
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/i386/pr99463-2.c
> @@ -0,0 +1,5 @@
> +/* PR target/99463 */
> +/* { dg-do compile { target { ! ia32 } } } */
> +/* { dg-options "-O2 -march=sapphirerapids" } */
> +
> +#include "uintr-1.c"
> diff --git a/gcc/testsuite/gcc.target/i386/pr99463.c b/gcc/testsuite/gcc.target/i386/pr99463.c
> new file mode 100644
> index 00000000000..0b290924118
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/i386/pr99463.c
> @@ -0,0 +1,5 @@
> +/* PR target/99463 */
> +/* { dg-do compile } */
> +/* { dg-options "-O2 -march=alderlake" } */
> +
> +#include "hreset-1.c"
> --
> 2.30.1
>

  reply	other threads:[~2021-03-08 13:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-08 11:51 Martin Liška
2021-03-08 13:15 ` Uros Bizjak [this message]
2021-03-08 13:50   ` Martin Liška

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='CAFULd4Y+fOeDf0EpkPTOVo1FTQqRX_Fj=jnyuU51c3frMRyt-A@mail.gmail.com' \
    --to=ubizjak@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=mliska@suse.cz \
    /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).