Do not allow to inline ifunc resolvers (PR ipa/81128).
authorMartin Liska <mliska@suse.cz>
Wed, 28 Jun 2017 12:47:24 +0000 (14:47 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Wed, 28 Jun 2017 12:47:24 +0000 (12:47 +0000)
2017-06-28  Martin Liska  <mliska@suse.cz>

PR ipa/81128
* ipa-visibility.c (non_local_p): Handle visibility.
2017-06-28  Martin Liska  <mliska@suse.cz>

PR ipa/81128
* c-attribs.c (handle_alias_ifunc_attribute): Append ifunc alias
to a function declaration.
2017-06-28  Martin Liska  <mliska@suse.cz>

PR ipa/81128
* gcc.target/i386/pr81128.c: New test.

From-SVN: r249735

gcc/ChangeLog
gcc/c-family/ChangeLog
gcc/c-family/c-attribs.c
gcc/ipa-visibility.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr81128.c [new file with mode: 0644]

index 87a978bf81582ba0bfd2154b255415722253c2fb..5fc16ca8afd68e6fd91d997899417af68ac296a4 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-28  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/81128
+       * ipa-visibility.c (non_local_p): Handle visibility.
+
 2017-06-28  Martin Liska  <mliska@suse.cz>
 
        PR driver/79659
index dec28bbf251fbb458520c842c61166f0de2ba19c..74009cf8dfc78eab248aff31afc590c77ff411db 100644 (file)
@@ -1,3 +1,9 @@
+2017-06-28  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/81128
+       * c-attribs.c (handle_alias_ifunc_attribute): Append ifunc alias
+       to a function declaration.
+
 2017-06-28  Martin Liska  <mliska@suse.cz>
 
        PR driver/79659
index 2b6845f2cbd3afdf95b6b3dddc4f1bb8931873a8..626ffa1cde7283c83ff1d083e13a905ea1e0b51d 100644 (file)
@@ -1846,9 +1846,14 @@ handle_alias_ifunc_attribute (bool is_alias, tree *node, tree name, tree args,
        TREE_STATIC (decl) = 1;
 
       if (!is_alias)
-       /* ifuncs are also aliases, so set that attribute too.  */
-       DECL_ATTRIBUTES (decl)
-         = tree_cons (get_identifier ("alias"), args, DECL_ATTRIBUTES (decl));
+       {
+         /* ifuncs are also aliases, so set that attribute too.  */
+         DECL_ATTRIBUTES (decl)
+           = tree_cons (get_identifier ("alias"), args,
+                        DECL_ATTRIBUTES (decl));
+         DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("ifunc"),
+                                             NULL, DECL_ATTRIBUTES (decl));
+       }
     }
   else
     {
index d5a3ae56c46ee02b1a2109fe14732ec5cdc147b8..da4a22e7329cb95ac2ff4aa9a572dc48d9e7fea8 100644 (file)
@@ -97,7 +97,8 @@ non_local_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
           && !DECL_EXTERNAL (node->decl)
           && !node->externally_visible
           && !node->used_from_other_partition
-          && !node->in_other_partition);
+          && !node->in_other_partition
+          && node->get_availability () >= AVAIL_AVAILABLE);
 }
 
 /* Return true when function can be marked local.  */
index 9433ee709c6f804a3c8ca8c5282bdf743fc9ca22..ed6f8a6b7f995b2ffa0cc085aef6c2972a0b7a8a 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-28  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/81128
+       * gcc.target/i386/pr81128.c: New test.
+
 2017-06-28  Martin Liska  <mliska@suse.cz>
 
        PR driver/79659
diff --git a/gcc/testsuite/gcc.target/i386/pr81128.c b/gcc/testsuite/gcc.target/i386/pr81128.c
new file mode 100644 (file)
index 0000000..90a567a
--- /dev/null
@@ -0,0 +1,65 @@
+/* PR ipa/81128 */
+/* { dg-do run } */
+/* { dg-options "-O3" } */
+/* { dg-require-ifunc "" } */
+
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <time.h>
+
+int resolver_fn = 0;
+int resolved_fn = 0;
+
+static inline void
+do_it_right_at_runtime_A ()
+{
+  resolved_fn++;
+}
+
+static inline void
+do_it_right_at_runtime_B ()
+{
+  resolved_fn++;
+}
+
+static inline void do_it_right_at_runtime (void);
+
+void do_it_right_at_runtime (void)
+  __attribute__ ((ifunc ("resolve_do_it_right_at_runtime")));
+
+static void (*resolve_do_it_right_at_runtime (void)) (void)
+{
+  srand (time (NULL));
+  int r = rand ();
+  resolver_fn++;
+
+  /* Use intermediate variable to get a warning for non-matching
+   * prototype. */
+  typeof(do_it_right_at_runtime) *func;
+  if (r & 1)
+    func = do_it_right_at_runtime_A;
+  else
+    func = do_it_right_at_runtime_B;
+
+  return (void *) func;
+}
+
+int
+main (void)
+{
+  const unsigned int ITERS = 10;
+
+  for (int i = ITERS; i > 0; i--)
+    {
+      do_it_right_at_runtime ();
+    }
+
+  if (resolver_fn != 1)
+    __builtin_abort ();
+
+  if (resolved_fn != 10)
+    __builtin_abort ();
+
+  return 0;
+}