Make canonical_va_list_type more strict
authorTom de Vries <tom@codesourcery.com>
Sat, 10 Sep 2016 14:38:56 +0000 (14:38 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Sat, 10 Sep 2016 14:38:56 +0000 (14:38 +0000)
2016-09-10  Tom de Vries  <tom@codesourcery.com>

PR C/71602
* builtins.c (std_canonical_va_list_type): Strictly return non-null for
va_list type only.
* config/i386/i386.c (ix86_canonical_va_list_type): Same.
* gimplify.c (gimplify_va_arg_expr): Handle &va_list.

* c-common.c (build_va_arg): Handle more strict
targetm.canonical_va_list_type.  Replace first argument type error with
assert.

* c-c++-common/va-arg-va-list-type.c: New test.

From-SVN: r240072

gcc/ChangeLog
gcc/builtins.c
gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/config/i386/i386.c
gcc/gimplify.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/va-arg-va-list-type.c [new file with mode: 0644]

index 221933341658987680739f2f9c0ed0747c4497e4..3a0057ef2b57174467059e842c632fcb802089da 100644 (file)
@@ -1,3 +1,11 @@
+2016-09-10  Tom de Vries  <tom@codesourcery.com>
+
+       PR C/71602
+       * builtins.c (std_canonical_va_list_type): Strictly return non-null for
+       va_list type only.
+       * config/i386/i386.c (ix86_canonical_va_list_type): Same.
+       * gimplify.c (gimplify_va_arg_expr): Handle &va_list.
+
 2016-09-09  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR rtl-optimization/77289
index 4a2a398744b8b006f6dac5dd179f307fcad3e0ef..e779c71ba4076d566626aba0b3f4f73996f76525 100644 (file)
@@ -4087,10 +4087,6 @@ std_canonical_va_list_type (tree type)
 {
   tree wtype, htype;
 
-  if (INDIRECT_REF_P (type))
-    type = TREE_TYPE (type);
-  else if (POINTER_TYPE_P (type) && POINTER_TYPE_P (TREE_TYPE (type)))
-    type = TREE_TYPE (type);
   wtype = va_list_type_node;
   htype = type;
   /* Treat structure va_list types.  */
index 9a78b7aaac85ccc7119afd8cf2b11f5080fcbb11..635e981f4a5320fd64d9cd9acd04791dd0354193 100644 (file)
@@ -1,3 +1,10 @@
+2016-09-10  Tom de Vries  <tom@codesourcery.com>
+
+       PR C/71602
+       * c-common.c (build_va_arg): Handle more strict
+       targetm.canonical_va_list_type.  Replace first argument type error with
+       assert.
+
 2016-09-09  Martin Sebor  <msebor@redhat.com>
 
        PR c/77520
index 9a66cfeb297a58661319b862460ae52ead12421f..16f6548259632edaf0ee725ad56d8c27df978567 100644 (file)
@@ -5864,20 +5864,11 @@ build_va_arg (location_t loc, tree expr, tree type)
     {
       /* Case 1: Not an array type.  */
 
-      /* Take the address, to get '&ap'.  */
+      /* Take the address, to get '&ap'.  Note that &ap is not a va_list
+        type.  */
       mark_addressable (expr);
       expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (expr)), expr);
 
-      /* Verify that &ap is still recognized as having va_list type.  */
-      tree canon_expr_type
-       = targetm.canonical_va_list_type (TREE_TYPE (expr));
-      if (canon_expr_type == NULL_TREE)
-       {
-         error_at (loc,
-                   "first argument to %<va_arg%> not of type %<va_list%>");
-         return error_mark_node;
-       }
-
       return build_va_arg_1 (loc, type, expr);
     }
 
@@ -5944,12 +5935,7 @@ build_va_arg (location_t loc, tree expr, tree type)
       /* Verify that &ap is still recognized as having va_list type.  */
       tree canon_expr_type
        = targetm.canonical_va_list_type (TREE_TYPE (expr));
-      if (canon_expr_type == NULL_TREE)
-       {
-         error_at (loc,
-                   "first argument to %<va_arg%> not of type %<va_list%>");
-         return error_mark_node;
-       }
+      gcc_assert (canon_expr_type != NULL_TREE);
     }
   else
     {
index 1190dabd388f5ad75210f2186fafc72ffd052e72..051fddb253a786ddb39a76865391ac8ab7f60378 100644 (file)
@@ -48562,14 +48562,6 @@ ix86_fn_abi_va_list (tree fndecl)
 static tree
 ix86_canonical_va_list_type (tree type)
 {
-  /* Resolve references and pointers to va_list type.  */
-  if (TREE_CODE (type) == MEM_REF)
-    type = TREE_TYPE (type);
-  else if (POINTER_TYPE_P (type) && POINTER_TYPE_P (TREE_TYPE(type)))
-    type = TREE_TYPE (type);
-  else if (POINTER_TYPE_P (type) && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE)
-    type = TREE_TYPE (type);
-
   if (TARGET_64BIT)
     {
       if (lookup_attribute ("ms_abi va_list", TYPE_ATTRIBUTES (type)))
index 2f0dd88ebd67848f2859376c3f94707f034a92bc..e378ed0d1cbb0e6ef6cd20476d48c801f3254cad 100644 (file)
@@ -11990,6 +11990,11 @@ gimplify_va_arg_expr (tree *expr_p, gimple_seq *pre_p,
   if (have_va_type == error_mark_node)
     return GS_ERROR;
   have_va_type = targetm.canonical_va_list_type (have_va_type);
+  if (have_va_type == NULL_TREE
+      && TREE_CODE (valist) == ADDR_EXPR)
+    /* Handle 'Case 1: Not an array type' from c-common.c/build_va_arg.  */
+    have_va_type
+      = targetm.canonical_va_list_type (TREE_TYPE (TREE_TYPE (valist)));
   gcc_assert (have_va_type != NULL_TREE);
 
   /* Generate a diagnostic for requesting data of a type that cannot
index 3d9e0b2a6da2cd7b0c3a738e2e6c2129ca8a840f..ee50f3d287e4a256230ff04d77ea9f7fc9893343 100644 (file)
@@ -1,3 +1,8 @@
+2016-09-10  Tom de Vries  <tom@codesourcery.com>
+
+       PR C/71602
+       * c-c++-common/va-arg-va-list-type.c: New test.
+
 2016-09-09  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR rtl-optimization/77289
diff --git a/gcc/testsuite/c-c++-common/va-arg-va-list-type.c b/gcc/testsuite/c-c++-common/va-arg-va-list-type.c
new file mode 100644 (file)
index 0000000..cdd97cf
--- /dev/null
@@ -0,0 +1,9 @@
+/* { dg-do compile } */
+
+__builtin_va_list *pap;
+
+void
+fn1 (void)
+{
+  __builtin_va_arg (pap, double); /* { dg-error "first argument to 'va_arg' not of type 'va_list'" } */
+}