public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Uros Bizjak <ubizjak@gmail.com>
To: "H.J. Lu" <hjl.tools@gmail.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: PING^1 [PATCH] i386: Disallow sibcall when calling ifunc functions with PIC register
Date: Mon, 20 Jun 2022 16:51:07 +0200	[thread overview]
Message-ID: <CAFULd4b54BKqJua6CRiT0cSadOAsBaLHvg2hHCtoqo0LGXVpsg@mail.gmail.com> (raw)
In-Reply-To: <CAMe9rOrCE+VFfM0jV0qT0Ma43T4QOQEo+M3BUrFR2R6rFY8zYQ@mail.gmail.com>

On Mon, Jun 20, 2022 at 4:03 PM H.J. Lu <hjl.tools@gmail.com> wrote:
>
> On Tue, Jun 14, 2022 at 12:25 PM H.J. Lu <hjl.tools@gmail.com> wrote:
> >
> > Disallow siball when calling ifunc functions with PIC register so that
> > PIC register can be restored.
> >
> > gcc/
> >
> >         PR target/105960
> >         * config/i386/i386.cc (ix86_function_ok_for_sibcall): Return
> >         false if PIC register is used when calling ifunc functions.
> >
> > gcc/testsuite/
> >
> >         PR target/105960
> >         * gcc.target/i386/pr105960.c: New test.

LGTM.

Thanks,
Uros.

> > ---
> >  gcc/config/i386/i386.cc                  |  9 +++++++++
> >  gcc/testsuite/gcc.target/i386/pr105960.c | 19 +++++++++++++++++++
> >  2 files changed, 28 insertions(+)
> >  create mode 100644 gcc/testsuite/gcc.target/i386/pr105960.c
> >
> > diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc
> > index 3d189e124e4..1ca7836e11e 100644
> > --- a/gcc/config/i386/i386.cc
> > +++ b/gcc/config/i386/i386.cc
> > @@ -1015,6 +1015,15 @@ ix86_function_ok_for_sibcall (tree decl, tree exp)
> >         }
> >      }
> >
> > +  if (decl && ix86_use_pseudo_pic_reg ())
> > +    {
> > +      /* When PIC register is used, it must be restored after ifunc
> > +        function returns.  */
> > +       cgraph_node *node = cgraph_node::get (decl);
> > +       if (node && node->ifunc_resolver)
> > +        return false;
> > +    }
> > +
> >    /* Otherwise okay.  That also includes certain types of indirect calls.  */
> >    return true;
> >  }
> > diff --git a/gcc/testsuite/gcc.target/i386/pr105960.c b/gcc/testsuite/gcc.target/i386/pr105960.c
> > new file mode 100644
> > index 00000000000..db137a1642d
> > --- /dev/null
> > +++ b/gcc/testsuite/gcc.target/i386/pr105960.c
> > @@ -0,0 +1,19 @@
> > +/* { dg-do compile } */
> > +/* { dg-require-ifunc "" } */
> > +/* { dg-options "-O2 -fpic" } */
> > +
> > +__attribute__((target_clones("default","fma")))
> > +static inline double
> > +expfull_ref(double x)
> > +{
> > +  return __builtin_pow(x, 0.1234);
> > +}
> > +
> > +double
> > +exp_ref(double x)
> > +{
> > +  return expfull_ref(x);
> > +}
> > +
> > +/* { dg-final { scan-assembler "jmp\[ \t\]*expfull_ref@PLT" { target { ! ia32 } } } } */
> > +/* { dg-final { scan-assembler "call\[ \t\]*expfull_ref@PLT" { target ia32 } } } */
> > --
> > 2.36.1
> >
>
> PING.
>
> --
> H.J.

  reply	other threads:[~2022-06-20 14:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-14 19:25 H.J. Lu
2022-06-20 14:02 ` PING^1 " H.J. Lu
2022-06-20 14:51   ` Uros Bizjak [this message]
2022-06-21 14:45     ` H.J. Lu
2022-06-21 14:53       ` 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=CAFULd4b54BKqJua6CRiT0cSadOAsBaLHvg2hHCtoqo0LGXVpsg@mail.gmail.com \
    --to=ubizjak@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).