PR middle-end/81824 - Warn for missing attributes with function aliases
authorMartin Sebor <msebor@redhat.com>
Tue, 13 Nov 2018 19:57:51 +0000 (19:57 +0000)
committerMartin Sebor <msebor@gcc.gnu.org>
Tue, 13 Nov 2018 19:57:51 +0000 (12:57 -0700)
gcc/c-family/ChangeLog:

* c-attribs.c (handle_copy_attribute): Exclude inlining attributes.
(handle_tls_model_attribute): Improve diagnostics.

gcc/testsuite/ChangeLog:

* gcc.dg/attr-copy-5.c: New test.
* gcc.dg/tls/diag-6.c: Adjust expected diagnostics.

From-SVN: r266084

gcc/c-family/ChangeLog
gcc/c-family/c-attribs.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/attr-copy-5.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/tls/diag-6.c

index 165f9b7efcc4f170be3c06202dd35b96fdd716eb..26a2b4e794dac884d019c209c1da1b45f6a5e22e 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-13  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/81824
+       * c-attribs.c (handle_copy_attribute): Exclude inlining attributes.
+       (handle_tls_model_attribute): Improve diagnostics.
+
 2018-11-12  Jason Merrill  <jason@redhat.com>
 
        * c-cppbuiltin.c (c_cpp_builtins): Define
index 5e3b127b1448951a1d2c28495b0bf1352c51c86d..1657df7f9df41f0f2fcbcc3479bd9172256c3ec5 100644 (file)
@@ -2239,14 +2239,17 @@ handle_copy_attribute (tree *node, tree name, tree args,
       /* Copy decl attributes from REF to DECL.  */
       for (tree at = attrs; at; at = TREE_CHAIN (at))
        {
-         /* Avoid copying attributes that affect a symbol linkage or
-            visibility since those in all likelihood only apply to
-            the target.
+         /* Avoid copying attributes that affect a symbol linkage,
+            inlining, or visibility since those in all likelihood
+            only apply to the target.
             FIXME: make it possible to specify which attributes to
             copy or not to copy in the copy attribute itself.  */
          tree atname = get_attribute_name (at);
          if (is_attribute_p ("alias", atname)
+             || is_attribute_p ("always_inline", atname)
+             || is_attribute_p ("gnu_inline", atname)
              || is_attribute_p ("ifunc", atname)
+             || is_attribute_p ("noinline", atname)
              || is_attribute_p ("visibility", atname)
              || is_attribute_p ("weak", atname)
              || is_attribute_p ("weakref", atname))
@@ -2458,9 +2461,18 @@ handle_tls_model_attribute (tree *node, tree name, tree args,
   tree decl = *node;
   enum tls_model kind;
 
-  if (!VAR_P (decl) || !DECL_THREAD_LOCAL_P (decl))
+  if (!VAR_P (decl))
     {
-      warning (OPT_Wattributes, "%qE attribute ignored", name);
+      warning (OPT_Wattributes, "%qE attribute ignored because %qD "
+              "is not a variable",
+              name, decl);
+      return NULL_TREE;
+    }
+
+  if (!DECL_THREAD_LOCAL_P (decl))
+    {
+      warning (OPT_Wattributes, "%qE attribute ignored because %qD does "
+              "not have thread storage duration", name, decl);
       return NULL_TREE;
     }
 
@@ -2468,7 +2480,7 @@ handle_tls_model_attribute (tree *node, tree name, tree args,
   id = TREE_VALUE (args);
   if (TREE_CODE (id) != STRING_CST)
     {
-      error ("tls_model argument not a string");
+      error ("%qE argument not a string", name);
       return NULL_TREE;
     }
 
@@ -2481,7 +2493,9 @@ handle_tls_model_attribute (tree *node, tree name, tree args,
   else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
     kind = TLS_MODEL_GLOBAL_DYNAMIC;
   else
-    error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
+    error ("%qE argument must be one of %qs, %qs, %qs, or %qs",
+          name,
+          "local-exec", "initial-exec", "local-dynamic", "global-dynamic");
 
   set_decl_tls_model (decl, kind);
   return NULL_TREE;
index f9a2ee4d6819a51c4b2ab429b536342b33123c16..919c4787c1d9def05e175292dc46e692fadf9dda 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-13  Martin Sebor  <msebor@redhat.com>
+
+       PR middle-end/81824
+       * gcc.dg/attr-copy-5.c: New test.
+       * gcc.dg/tls/diag-6.c: Adjust expected diagnostics.
+
 2018-11-13  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/86991
diff --git a/gcc/testsuite/gcc.dg/attr-copy-5.c b/gcc/testsuite/gcc.dg/attr-copy-5.c
new file mode 100644 (file)
index 0000000..b085cf9
--- /dev/null
@@ -0,0 +1,57 @@
+/* PR middle-end/81824 - Warn for missing attributes with function aliases
+   Verify that attributes always_inline, gnu_inline, and noinline aren't
+   copied.  Also verify that copying attribute tls_model to a non-thread
+   variable triggers a warning.
+   { dg-do compile }
+   { dg-options "-Wall" }
+   { dg-require-effective-target tls } */
+
+#define ATTR(...)   __attribute__ ((__VA_ARGS__))
+
+ATTR (always_inline, gnu_inline, noreturn) inline int
+finline_noret (void)
+{
+  __builtin_abort ();
+  /* Expect no -Wreturn-type.  */
+}
+
+int call_finline_noret (void)
+{
+  finline_noret ();
+  /* Expect no -Wreturn-type.  */
+}
+
+
+ATTR (copy (finline_noret)) int
+fnoret (void);
+
+int call_fnoret (void)
+{
+  fnoret ();
+  /* Expect no -Wreturn-type.  */
+}
+
+
+/* Verify that attribute always_inline on an alias target doesn't
+   get copied and interfere with attribute noinline on the alias
+   (trigger a warning due to a conflict).  */
+
+ATTR (always_inline) static inline int
+finline (void) { return 0; }
+
+ATTR (alias ("finline"), noinline) int
+fnoinline (void);
+
+ATTR (copy (finline)) int
+fnoinline (void);
+
+
+ATTR (tls_model ("global-dynamic")) __thread int
+  tls_target;
+
+ATTR (alias ("tls_target"), copy (tls_target)) extern __thread int
+  thread_alias;
+
+
+ATTR (alias ("tls_target"), copy (tls_target)) extern int
+  alias;            /* { dg-warning ".tls_model. attribute ignored because .alias. does not have thread storage duration" } */
index 71b0b95244ed9518c953b52394ca1ccacb306011..171bf21f5ebb09aff75ff48d4819dc540475c43b 100644 (file)
@@ -4,5 +4,5 @@
 int v __attribute__((tls_model("initial-exec"))); /* { dg-warning "attribute ignored" } */
 typedef int X __attribute__((tls_model("initial-exec"))); /* { dg-warning "attribute ignored" } */
 void f(int x __attribute__((tls_model("initial-exec")))); /* { dg-warning "attribute ignored" } */
-__thread int a __attribute__((tls_model(1))); /* { dg-error "tls_model argument not a string" } */
-__thread int b __attribute__((tls_model("unknown"))); /* { dg-error "tls_model argument must be one of" } */
+__thread int a __attribute__((tls_model(1))); /* { dg-error ".tls_model. argument not a string" } */
+__thread int b __attribute__((tls_model("unknown"))); /* { dg-error ".tls_model. argument must be one of" } */