Implement P1152R4: Deprecating some uses of volatile.
authorMarek Polacek <mpolacek@gcc.gnu.org>
Thu, 29 Aug 2019 03:11:50 +0000 (03:11 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Thu, 29 Aug 2019 03:11:50 +0000 (03:11 +0000)
PR c++/91361
* c-opts.c (c_common_post_options): Enable -Wvolatile by
default for C++2a, unless -Wno-deprecated.
* c.opt (Wvolatile): New warning.

* cp-gimplify.c (cp_fold): Set TREE_THIS_VOLATILE.
* decl.c (grokdeclarator): Warn about a volatile-qualified structured
binding and return type.
(grokparms): Warn about a volatile-qualified function parameter.
* expr.c (mark_use) <case MODIFY_EXPR>: Emit a -Wvolatile warning.
* typeck.c (cp_build_unary_op): Emit a -Wvolatile warning for pre and
post ++/-- on a volatile operand.
(genericize_compound_lvalue): Use a better location.  Don't lose
TREE_THIS_VOLATILE.
(cp_build_modify_expr): Emit a -Wvolatile warning for a compound
assignment whose LHS is volatile-qualified.  Build the assignment with
a more precise location.

* doc/invoke.texi: Document -Wvolatile.

* c-c++-common/Wbool-operation-1.c: Use -Wno-volatile in C++.
* c-c++-common/gomp/atomic-1.c: Likewise.
* c-c++-common/gomp/atomic-9.c: Likewise.
* c-c++-common/gomp/depend-iterator-1.c: Likewise.
* c-c++-common/gomp/loop-1.c: Adjust warning location for C++.
* c-c++-common/gomp/order-3.c: Likewise.
* c-c++-common/pr69733.c: Use -Wno-volatile in C++.
* c-c++-common/spec-barrier-2.c: Likewise.
* c-c++-common/tm/pr54893.c: Likewise.
* g++.dg/cpp0x/pr65327.C: Add dg-warning.
* g++.dg/cpp0x/rv-conv2.C: Likewise.
* g++.dg/cpp0x/rv1n.C: Likewise.
* g++.dg/cpp0x/rv1p.C: Likewise.
* g++.dg/cpp0x/rv2n.C: Likewise.
* g++.dg/cpp0x/rv2p.C: Likewise.
* g++.dg/cpp0x/rv3n.C: Likewise.
* g++.dg/cpp0x/rv3p.C: Likewise.
* g++.dg/cpp0x/rv4n.C: Likewise.
* g++.dg/cpp0x/rv4p.C: Likewise.
* g++.dg/cpp0x/rv5n.C: Likewise.
* g++.dg/cpp0x/rv5p.C: Likewise.
* g++.dg/cpp0x/rv6n.C: Likewise.
* g++.dg/cpp0x/rv6p.C: Likewise.
* g++.dg/cpp0x/rv7n.C: Likewise.
* g++.dg/cpp0x/rv7p.C: Likewise.
* g++.dg/cpp0x/rv8p.C: Likewise.
* g++.dg/cpp0x/trailing14.C: Use -Wno-volatile.
* g++.dg/cpp1y/new1.C: Add dg-warning.
* g++.dg/cpp2a/volatile1.C: New test.
* g++.dg/cpp2a/volatile2.C: New test.
* g++.dg/cpp2a/volatile3.C: New test.
* g++.dg/cpp2a/volatile4.C: New test.
* g++.dg/expr/bool3.C: Add dg-warning.
* g++.dg/expr/bool4.C: Likewise.
* g++.dg/expr/cond9.C: Likewise.
* g++.dg/ext/vector25.C: Likewise.
* g++.dg/gomp/depend-iterator-1.C: Use -Wno-volatile.
* g++.dg/inherit/covariant21.C: Add dg-warning.
* g++.dg/init/ref18.C: Likewise.
* g++.dg/ipa/pr63838.C: Likewise.
* g++.dg/overload/rvalue2.C: Likewise.
* g++.dg/parse/semicolon4.C: Likewise.
* g++.dg/warn/Wreturn-type-4.C: Likewise.
* g++.dg/warn/pr36069.C: Likewise.
* g++.old-deja/g++.mike/p9506.C: Likewise.
* g++.old-deja/g++.other/volatile1.C: Likewise.

From-SVN: r275022

57 files changed:
gcc/ChangeLog
gcc/c-family/ChangeLog
gcc/c-family/c-opts.c
gcc/c-family/c.opt
gcc/cp/ChangeLog
gcc/cp/cp-gimplify.c
gcc/cp/decl.c
gcc/cp/expr.c
gcc/cp/typeck.c
gcc/doc/invoke.texi
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/Wbool-operation-1.c
gcc/testsuite/c-c++-common/gomp/atomic-1.c
gcc/testsuite/c-c++-common/gomp/atomic-9.c
gcc/testsuite/c-c++-common/gomp/depend-iterator-1.c
gcc/testsuite/c-c++-common/gomp/loop-1.c
gcc/testsuite/c-c++-common/gomp/order-3.c
gcc/testsuite/c-c++-common/pr69733.c
gcc/testsuite/c-c++-common/spec-barrier-2.c
gcc/testsuite/c-c++-common/tm/pr54893.c
gcc/testsuite/g++.dg/cpp0x/pr65327.C
gcc/testsuite/g++.dg/cpp0x/rv-conv2.C
gcc/testsuite/g++.dg/cpp0x/rv1n.C
gcc/testsuite/g++.dg/cpp0x/rv1p.C
gcc/testsuite/g++.dg/cpp0x/rv2n.C
gcc/testsuite/g++.dg/cpp0x/rv2p.C
gcc/testsuite/g++.dg/cpp0x/rv3n.C
gcc/testsuite/g++.dg/cpp0x/rv3p.C
gcc/testsuite/g++.dg/cpp0x/rv4n.C
gcc/testsuite/g++.dg/cpp0x/rv4p.C
gcc/testsuite/g++.dg/cpp0x/rv5n.C
gcc/testsuite/g++.dg/cpp0x/rv5p.C
gcc/testsuite/g++.dg/cpp0x/rv6n.C
gcc/testsuite/g++.dg/cpp0x/rv6p.C
gcc/testsuite/g++.dg/cpp0x/rv7n.C
gcc/testsuite/g++.dg/cpp0x/rv7p.C
gcc/testsuite/g++.dg/cpp0x/rv8p.C
gcc/testsuite/g++.dg/cpp0x/trailing14.C
gcc/testsuite/g++.dg/cpp1y/new1.C
gcc/testsuite/g++.dg/cpp2a/volatile1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/volatile2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/volatile3.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/volatile4.C [new file with mode: 0644]
gcc/testsuite/g++.dg/expr/bool3.C
gcc/testsuite/g++.dg/expr/bool4.C
gcc/testsuite/g++.dg/expr/cond9.C
gcc/testsuite/g++.dg/ext/vector25.C
gcc/testsuite/g++.dg/gomp/depend-iterator-1.C
gcc/testsuite/g++.dg/inherit/covariant21.C
gcc/testsuite/g++.dg/init/ref18.C
gcc/testsuite/g++.dg/ipa/pr63838.C
gcc/testsuite/g++.dg/overload/rvalue2.C
gcc/testsuite/g++.dg/parse/semicolon4.C
gcc/testsuite/g++.dg/warn/Wreturn-type-4.C
gcc/testsuite/g++.dg/warn/pr36069.C
gcc/testsuite/g++.old-deja/g++.mike/p9506.C
gcc/testsuite/g++.old-deja/g++.other/volatile1.C

index 8b5ccd2f98d1f6b9f0df04537b6a2d90bcc0c4b8..c4a7b30ead89ad401afb993db52662e1aee07dba 100644 (file)
@@ -1,3 +1,9 @@
+2019-08-28  Marek Polacek  <polacek@redhat.com>
+
+       Implement P1152R4: Deprecating some uses of volatile.
+       PR c++/91361
+       * doc/invoke.texi: Document -Wvolatile.
+
 2019-08-28  Marek Polacek  <polacek@redhat.com>
 
        PR c++/91360 - Implement C++20 P1143R2: constinit.
index d0a19e3870dd1ccfbd1c50c5297fa903fb846571..8b4e75cb78eb1ef59155642025c6170846557ef5 100644 (file)
@@ -1,3 +1,11 @@
+2019-08-28  Marek Polacek  <polacek@redhat.com>
+
+       Implement P1152R4: Deprecating some uses of volatile.
+       PR c++/91361
+       * c-opts.c (c_common_post_options): Enable -Wvolatile by
+       default for C++2a, unless -Wno-deprecated.
+       * c.opt (Wvolatile): New warning.
+
 2019-08-28  Marek Polacek  <polacek@redhat.com>
 
        PR c++/91360 - Implement C++20 P1143R2: constinit.
index da783e4990c54120cb5097fbb0f1d8c77de28f27..fa8cd0ccb097e8e0b6eee5621b2f6df66c020974 100644 (file)
@@ -919,6 +919,10 @@ c_common_post_options (const char **pfilename)
   if (!global_options_set.x_warn_comma_subscript)
     warn_comma_subscript = (cxx_dialect >= cxx2a && warn_deprecated);
 
+  /* -Wvolatile is enabled by default in C++20.  */
+  if (!global_options_set.x_warn_volatile)
+    warn_volatile = (cxx_dialect >= cxx2a && warn_deprecated);
+
   /* Declone C++ 'structors if -Os.  */
   if (flag_declone_ctor_dtor == -1)
     flag_declone_ctor_dtor = optimize_size;
index 4c468d0f6c288a30c2616659a285f795dc2835cc..f8a1a1dbdad90dda1dc4fe401e90603f285b0f0b 100644 (file)
@@ -1228,6 +1228,10 @@ Wno-vla-larger-than
 C ObjC C++ LTO ObjC++ Alias(Wvla-larger-than=,18446744073709551615EiB,none) Warning
 -Wno-vla-larger-than Disable Wvla-larger-than= warning.  Equivalent to Wvla-larger-than=<SIZE_MAX> or larger.
 
+Wvolatile
+C++ ObjC++ Var(warn_volatile) Warning
+Warn about deprecated uses of volatile qualifier.
+
 Wvolatile-register-var
 C ObjC C++ ObjC++ Var(warn_volatile_register_var) Warning LangEnabledBy(C ObjC C++ ObjC++,Wall)
 Warn when a register variable is declared volatile.
index 2e7c26cd4476d062d6929fdd66849f2f8e87ed9d..818d32b29d336d622c621d5f14c192668ac2d9f5 100644 (file)
@@ -1,3 +1,20 @@
+2019-08-28  Marek Polacek  <polacek@redhat.com>
+
+       Implement P1152R4: Deprecating some uses of volatile.
+       PR c++/91361
+       * cp-gimplify.c (cp_fold): Set TREE_THIS_VOLATILE.
+       * decl.c (grokdeclarator): Warn about a volatile-qualified structured
+       binding and return type.
+       (grokparms): Warn about a volatile-qualified function parameter.
+       * expr.c (mark_use) <case MODIFY_EXPR>: Emit a -Wvolatile warning.
+       * typeck.c (cp_build_unary_op): Emit a -Wvolatile warning for pre and
+       post ++/-- on a volatile operand.
+       (genericize_compound_lvalue): Use a better location.  Don't lose
+       TREE_THIS_VOLATILE.
+       (cp_build_modify_expr): Emit a -Wvolatile warning for a compound
+       assignment whose LHS is volatile-qualified.  Build the assignment with
+       a more precise location.
+
 2019-08-28  Marek Polacek  <polacek@redhat.com>
 
        PR c++/91360 - Implement C++20 P1143R2: constinit.
index 065dcb7ba06ceb048ff872c1bbf852e893376ec2..49fa47ac3af80b54cd3d95897715a3b1aaf6cfa8 100644 (file)
@@ -2507,6 +2507,9 @@ cp_fold (tree x)
          else
            x = org_x;
        }
+      if (code == MODIFY_EXPR && TREE_CODE (x) == MODIFY_EXPR)
+       TREE_THIS_VOLATILE (x) = TREE_THIS_VOLATILE (org_x);
+
       break;
 
     case VEC_COND_EXPR:
index c5cc22a8d6d646cf250c7e4becfd2a60f4af7ba9..2aef330455f8d2e3d4044ddb4f29417f869e3f23 100644 (file)
@@ -11233,6 +11233,10 @@ grokdeclarator (const cp_declarator *declarator,
       if (concept_p)
        error_at (declspecs->locations[ds_concept],
                  "structured binding declaration cannot be %qs", "concept");
+      /* [dcl.struct.bind] "A cv that includes volatile is deprecated."  */
+      if (type_quals & TYPE_QUAL_VOLATILE)
+       warning_at (declspecs->locations[ds_volatile], OPT_Wvolatile,
+                   "%<volatile%>-qualified structured binding is deprecated");
       switch (storage_class)
        {
        case sc_none:
@@ -11623,6 +11627,13 @@ grokdeclarator (const cp_declarator *declarator,
                if (SCALAR_TYPE_P (type) || VOID_TYPE_P (type))
                  warning_at (typespec_loc, OPT_Wignored_qualifiers, "type "
                              "qualifiers ignored on function return type");
+               /* [dcl.fct] "A volatile-qualified return type is
+                  deprecated."  */
+               if (type_quals & TYPE_QUAL_VOLATILE)
+                 warning_at (typespec_loc, OPT_Wvolatile,
+                             "%<volatile%>-qualified return type is "
+                             "deprecated");
+
                /* We now know that the TYPE_QUALS don't apply to the
                   decl, but to its return type.  */
                type_quals = TYPE_UNQUALIFIED;
@@ -13378,6 +13389,13 @@ grokparms (tree parmlist, tree *parms)
                cp_warn_deprecated_use (deptype);
            }
 
+         /* [dcl.fct] "A parameter with volatile-qualified type is
+            deprecated."  */
+         if (CP_TYPE_VOLATILE_P (type))
+           warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wvolatile,
+                       "%<volatile%>-qualified parameter is "
+                       "deprecated");
+
          /* Top-level qualifiers on the parameters are
             ignored for function types.  */
          type = cp_build_qualified_type (type, 0);
index 9160043ed114ce11b0d8f47767a8661e50e0217c..212a7f93c5a21125577669d6d8c52510ef0dd0fa 100644 (file)
@@ -207,6 +207,28 @@ mark_use (tree expr, bool rvalue_p, bool read_p,
       recurse_op[0] = true;
       break;
 
+    case MODIFY_EXPR:
+       {
+         tree lhs = TREE_OPERAND (expr, 0);
+         /* [expr.ass] "A simple assignment whose left operand is of
+            a volatile-qualified type is deprecated unless the assignment
+            is either a discarded-value expression or appears in an
+            unevaluated context."  */
+         if (read_p
+             && !cp_unevaluated_operand
+             && (TREE_THIS_VOLATILE (lhs)
+                 || CP_TYPE_VOLATILE_P (TREE_TYPE (lhs)))
+             && !TREE_THIS_VOLATILE (expr))
+           {
+             warning_at (location_of (expr), OPT_Wvolatile,
+                         "using value of simple assignment with %<volatile%>-"
+                         "qualified left operand is deprecated");
+             /* Make sure not to warn about this assignment again.  */
+             TREE_THIS_VOLATILE (expr) = true;
+           }
+         break;
+       }
+
     default:
       break;
     }
index c09bb309142d7b52970c5bfe525e3353b6ea4d3e..d4f2d98143b10c7aa23ec9aecb7b9f5d398f66ea 100644 (file)
@@ -6459,6 +6459,17 @@ cp_build_unary_op (enum tree_code code, tree xarg, bool noconvert,
                              complain))
          return error_mark_node;
 
+       /* [depr.volatile.type] "Postfix ++ and -- expressions and
+          prefix ++ and -- expressions of volatile-qualified arithmetic
+          and pointer types are deprecated."  */
+       if (TREE_THIS_VOLATILE (arg) || CP_TYPE_VOLATILE_P (TREE_TYPE (arg)))
+         warning_at (location, OPT_Wvolatile,
+                     "%qs expression of %<volatile%>-qualified type is "
+                     "deprecated",
+                     ((code == PREINCREMENT_EXPR
+                       || code == POSTINCREMENT_EXPR)
+                      ? "++" : "--"));
+
        /* Forbid using -- or ++ in C++17 on `bool'.  */
        if (TREE_CODE (declared_type) == BOOLEAN_TYPE)
          {
@@ -8278,6 +8289,15 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
                         && MAYBE_CLASS_TYPE_P (TREE_TYPE (lhstype)))
                        || MAYBE_CLASS_TYPE_P (lhstype)));
 
+         /* An expression of the form E1 op= E2.  [expr.ass] says:
+            "Such expressions are deprecated if E1 has volatile-qualified
+            type."  We warn here rather than in cp_genericize_r because
+            for compound assignments we are supposed to warn even if the
+            assignment is a discarded-value expression.  */
+         if (TREE_THIS_VOLATILE (lhs) || CP_TYPE_VOLATILE_P (lhstype))
+           warning_at (loc, OPT_Wvolatile,
+                       "compound assignment with %<volatile%>-qualified left "
+                       "operand is deprecated");
          /* Preevaluate the RHS to make sure its evaluation is complete
             before the lvalue-to-rvalue conversion of the LHS:
 
@@ -8450,8 +8470,8 @@ cp_build_modify_expr (location_t loc, tree lhs, enum tree_code modifycode,
        goto ret;
     }
 
-  result = build2 (modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
-                  lhstype, lhs, newrhs);
+  result = build2_loc (loc, modifycode == NOP_EXPR ? MODIFY_EXPR : INIT_EXPR,
+                      lhstype, lhs, newrhs);
 
   TREE_SIDE_EFFECTS (result) = 1;
   if (!plain_assign)
index 1391a562c352f44f86715c52572963eab7759641..aa9886ee09f2772162b683db88e25f948c53c812 100644 (file)
@@ -243,7 +243,7 @@ in the following sections.
 -Wno-non-template-friend  -Wold-style-cast @gol
 -Woverloaded-virtual  -Wno-pmf-conversions @gol
 -Wno-class-conversion  -Wno-terminate @gol
--Wsign-promo  -Wvirtual-inheritance}
+-Wsign-promo  -Wvirtual-inheritance  -Wvolatile}
 
 @item Objective-C and Objective-C++ Language Options
 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
@@ -3516,6 +3516,19 @@ result in a call to @code{terminate}.
 Disable the warning about the case when a conversion function converts an
 object to the same type, to a base class of that type, or to void; such
 a conversion function will never be called.
+
+@item -Wvolatile @r{(C++ and Objective-C++ only)}
+@opindex Wvolatile
+@opindex Wno-volatile
+Warn about deprecated uses of the volatile qualifier.  This includes postfix
+and prefix @code{++} and @code{--} expressions of volatile-qualified types,
+using simple assignments where the left operand is a volatile-qualified
+non-class type for their value, compound assignments where the left operand
+is a volatile-qualified non-class type, volatile-qualified function return
+type, volatile-qualified parameter type, and structured bindings of a
+volatile-qualified type.  This usage was deprecated in C++20.
+
+Enabled by default with @option{-std=c++2a}.
 @end table
 
 @node Objective-C and Objective-C++ Dialect Options
index bd9fe70d084c4110b7f05b1860090732fba45a80..3a503ac8b3daf1cb589d9d26a92e9dd15a96c4df 100644 (file)
@@ -1,7 +1,58 @@
+2019-08-28  Marek Polacek  <polacek@redhat.com>
+
+       Implement P1152R4: Deprecating some uses of volatile.
+       PR c++/91361
+       * c-c++-common/Wbool-operation-1.c: Use -Wno-volatile in C++.
+       * c-c++-common/gomp/atomic-1.c: Likewise.
+       * c-c++-common/gomp/atomic-9.c: Likewise.
+       * c-c++-common/gomp/depend-iterator-1.c: Likewise.
+       * c-c++-common/gomp/loop-1.c: Adjust warning location for C++.
+       * c-c++-common/gomp/order-3.c: Likewise.
+       * c-c++-common/pr69733.c: Use -Wno-volatile in C++.
+       * c-c++-common/spec-barrier-2.c: Likewise.
+       * c-c++-common/tm/pr54893.c: Likewise.
+       * g++.dg/cpp0x/pr65327.C: Add dg-warning.
+       * g++.dg/cpp0x/rv-conv2.C: Likewise.
+       * g++.dg/cpp0x/rv1n.C: Likewise.
+       * g++.dg/cpp0x/rv1p.C: Likewise.
+       * g++.dg/cpp0x/rv2n.C: Likewise.
+       * g++.dg/cpp0x/rv2p.C: Likewise.
+       * g++.dg/cpp0x/rv3n.C: Likewise.
+       * g++.dg/cpp0x/rv3p.C: Likewise.
+       * g++.dg/cpp0x/rv4n.C: Likewise.
+       * g++.dg/cpp0x/rv4p.C: Likewise.
+       * g++.dg/cpp0x/rv5n.C: Likewise.
+       * g++.dg/cpp0x/rv5p.C: Likewise.
+       * g++.dg/cpp0x/rv6n.C: Likewise.
+       * g++.dg/cpp0x/rv6p.C: Likewise.
+       * g++.dg/cpp0x/rv7n.C: Likewise.
+       * g++.dg/cpp0x/rv7p.C: Likewise.
+       * g++.dg/cpp0x/rv8p.C: Likewise.
+       * g++.dg/cpp0x/trailing14.C: Use -Wno-volatile.
+       * g++.dg/cpp1y/new1.C: Add dg-warning.
+       * g++.dg/cpp2a/volatile1.C: New test.
+       * g++.dg/cpp2a/volatile2.C: New test.
+       * g++.dg/cpp2a/volatile3.C: New test.
+       * g++.dg/cpp2a/volatile4.C: New test.
+       * g++.dg/expr/bool3.C: Add dg-warning.
+       * g++.dg/expr/bool4.C: Likewise.
+       * g++.dg/expr/cond9.C: Likewise.
+       * g++.dg/ext/vector25.C: Likewise.
+       * g++.dg/gomp/depend-iterator-1.C: Use -Wno-volatile.
+       * g++.dg/inherit/covariant21.C: Add dg-warning.
+       * g++.dg/init/ref18.C: Likewise.
+       * g++.dg/ipa/pr63838.C: Likewise.
+       * g++.dg/overload/rvalue2.C: Likewise.
+       * g++.dg/parse/semicolon4.C: Likewise.
+       * g++.dg/warn/Wreturn-type-4.C: Likewise.
+       * g++.dg/warn/pr36069.C: Likewise.
+       * g++.old-deja/g++.mike/p9506.C: Likewise.
+       * g++.old-deja/g++.other/volatile1.C: Likewise.
+
 2019-08-28  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR fortran/91551
-       * gfortran.dg/allocated_3.f90
+       * gfortran.dg/allocated_3.f90
 
 2019-08-28  Marek Polacek  <polacek@redhat.com>
 
index 048918781553317393ae2f874b0f7d9e80cd869d..ce87705692af7ccd47f13d8384614898662792d6 100644 (file)
@@ -1,6 +1,7 @@
 /* PR c/77490 */
 /* { dg-do compile } */
 /* { dg-options "-Wall -Wno-psabi" } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 
 #ifndef __cplusplus
 # define bool _Bool
index 3e4bc569ba7fdb1db0fa101d110efe43238fe2db..1facf4586f5b1af10614710cfea205a232dada74 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-do compile } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 
 int x;
 volatile int y;
index c07da8fc712afcfbac8c9561663b1b74b807caee..35548395f369eaed7adab4e833d682d8fd51ea55 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-fopenmp -fdump-tree-ompexp" } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 /* { dg-require-effective-target cas_int } */
 
 volatile int *bar(void);
index 4fb01c174ec29fb7abb82b78c94f89a63db14e00..6fa60215f4349438ef74aefaf31988b67a98e301 100644 (file)
@@ -1,3 +1,5 @@
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
+
 int arr[64], arr2[64];
 struct S { int a[4]; } k;
 short arr4[4];
index d2f943aea5468abfcbf367ef2851d601e39c39b8..4fb995c02a770ef6674891dbf59dc13f47f5f30e 100644 (file)
@@ -100,8 +100,8 @@ f4 (int *a)
   #pragma omp loop order(concurrent) bind(parallel)
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c } } */
     }
   #pragma omp loop order(concurrent) bind(parallel)
   for (i = 0; i < 64; i++)
@@ -172,8 +172,8 @@ f5 (int *a)
   #pragma omp loop
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c } } */
     }
   #pragma omp loop
   for (i = 0; i < 64; i++)
@@ -245,8 +245,8 @@ f6 (int *a)
   #pragma omp loop
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a 'loop' region" "" { target c } } */
     }
   #pragma omp loop
   for (i = 0; i < 64; i++)
index 2d51bf37749acbb18964c6d6f54969259982fa46..e33386dd5ccd10fdd3bfb77322ff1f23c624f2bf 100644 (file)
@@ -50,8 +50,8 @@ f1 (int *a)
   #pragma omp simd order(concurrent)
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c } } */
     }
   #pragma omp simd order(concurrent)
   for (i = 0; i < 64; i++)
@@ -112,8 +112,8 @@ f2 (int *a)
   #pragma omp for simd order(concurrent)
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c } } */
     }
   #pragma omp for simd order(concurrent)
   for (i = 0; i < 64; i++)
@@ -174,8 +174,8 @@ f3 (int *a)
   #pragma omp for order(concurrent)
   for (i = 0; i < 64; i++)
     {
-      #pragma omp atomic read
-      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" } */
+      #pragma omp atomic read          /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c++ } } */
+      a[i] = v;                                /* { dg-error "OpenMP constructs other than 'parallel', 'loop' or 'simd' may not be nested inside a region with the 'order\\(concurrent\\)' clause" "" { target c } } */
     }
   #pragma omp for order(concurrent)
   for (i = 0; i < 64; i++)
index 57ec1eccb9f5b6c61ae7bfeb775b79c9bded3ef6..ab70f49009c3832e729db929f0b47a73f68612cc 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-W -fdiagnostics-show-caret" } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 
 typedef const double cd;
 double val;
@@ -21,4 +22,3 @@ cd val2() {return val;} /* { dg-warning "qualifiers ignored" } */
  cd val2() {return val;}
  ^~
 { dg-end-multiline-output "" } */
-
index b09567e62a9eea1ce36fff3c749a90be595e89d8..a27ec54f0d3822f503103f2b475c6978b70aac76 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-do run } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 
 /* Even on targets that don't need the optional failval parameter,
    side-effects on the operand should still be calculated.  */
index 3766078d31e09d06a96638b00c3cd68292b0d42b..266cbe9c6524c76cf81ae5c7f1fbcf4d13a12ff1 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile } */
 /* { dg-options "-fgnu-tm -fdump-ipa-tmipa" } */
+/* { dg-additional-options "-Wno-volatile" { target c++ } } */
 
 /* Test that volatiles are allowed inside relaxed transactions.  */
 
index 5176b3c32040cc6740d14263ff9396edb44abf6a..6e888ebff2ce0fef44de5dbc0decfef2582d6b60 100644 (file)
@@ -11,7 +11,7 @@ foo ()
   static constexpr volatile int k = 5;
 }
 
-constexpr volatile int
+constexpr volatile int // { dg-warning "deprecated" "" { target c++2a } }
 bar ()
 {
   return i;
index 9b9b154995b5fe3ac7fce46f854b7d3061ea1891..2f2a1fa702a512cec5443f55b77f4bc77454d4b3 100644 (file)
@@ -1,16 +1,16 @@
 // PR c++/89705
 // { dg-do compile { target c++11 } }
 
-struct W { operator const volatile int(); };
+struct W { operator const volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
 const int& rci = W();
 
 struct X { operator const int(); };
 int&& rri = X();
 
-struct Y { operator volatile int(); };
+struct Y { operator volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
 int&& rri2 = Y();
 
-struct Z { operator const volatile int(); };
+struct Z { operator const volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
 volatile int&& rri3 = Z();
 
 enum E { A };
index f5e75681758285a7c99af69dd86171dae3a212be..a762fc858625271a98df67890471c75917c05949 100644 (file)
@@ -26,8 +26,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 1 at a time
 
index a9097276d5a008ff1d0ed572f016c0b69ba1e769..e2a983a77086d1e3415e8125b900c8db7fbe6708 100644 (file)
@@ -26,8 +26,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 1 at a time
 
index 65eda80fba090569f943a0f2c8a2c785abee8dc5..2871ccf9ab3b2204a3f37fa431922317df6a1432 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 2 at a time
 
index 25a42ba2af8b43885455d84c255a3dc8f3f3bec7..bab0dce3d977d30137289e043f5f921131a46a81 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 2 at a time
 
index 4549438f8efc7f353c86b9791133db76b3aa1a14..35cdba9585811d7e8650bc455b15e46cbb2778c1 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 3 at a time
 
index 2d7d78df6be1857a8f6da1a031aa4a2b3d786a69..b25aa26c9b0d1fdbfddd6a2443f3aead83f806a4 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 3 at a time
 
index 29deb3fc81b30f4bf5f3568c6b4cbc92410655f8..6941a13de6c002ccebfbaab2adde4fc6c31033f3 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 4 at a time
 
index 0e4903bc2910c5594f65b550a00a86b650703f89..cd0d631d780ee97372cf3c54f6e88117d0dbdb87 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 4 at a time
 
index f11d07a39218b77cd8a58c0c6c4b1fdbbad6da7f..086aa460c68a83d24b5ece9fc2983325b87500ca 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 5 at a time
 
index 63441a3f0da041e01d2da963490fa2080b1e0c46..34c1017f5786a50efd6c0cd2fc2592e138e1ad5f 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 5 at a time
 
index 0ebbe33e1d1bf530f56b7a106ae31687e048d179..b21d22a5b87058c4fdbd10c321a9ca7eaa4632d5 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 6 at a time
 
index 26714f0c9aacc364409f4db7b187a29457b6799e..fee692bb08f3564e8eebed179e039a9ffdb94b4d 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 6 at a time
 
index d9e371b8adb8d21619800bd39ce872d145eae5cf..5bc313cc07fad8655a6792f32992130ec52ea2c1 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 7 at a time
 
index 60a35835c7d2563442dc85e5891068fd26424be4..b0b8f96549832081a7e1d7ed02080987d9259e4b 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 7 at a time
 
index e12da4b8d794a051076bcfbf8f2397e071ce69e1..287fb93b432dd8e64152321b94925d104e650240 100644 (file)
@@ -25,8 +25,8 @@ struct A
 
                A    source();
 const          A  c_source();
-      volatile A  v_source();
-const volatile A cv_source();
+      volatile A  v_source(); // { dg-warning "deprecated" "" { target c++2a } }
+const volatile A cv_source(); // { dg-warning "deprecated" "" { target c++2a } }
 
 // 8 at a time
 
index 2544d0bab5e93ef96a3bdda3fffcb3e3fc8bee75..4ebb37406ad9abd24b2a634e0f2582412f0e4f69 100644 (file)
@@ -1,6 +1,6 @@
 // PR c++/65775
 // { dg-do compile { target c++11 } }
-// { dg-options "-Wignored-qualifiers" }
+// { dg-options "-Wignored-qualifiers -Wno-volatile" }
 
 using Qi = int const volatile;
 Qi q1();           // { dg-warning "1: type qualifiers ignored" }
index 5e4f1bf6b0ba40db1a927fb2e154e314319f1643..b9ad64dfcc0db938158006f3a9f9699d7b1c3010 100644 (file)
@@ -65,7 +65,7 @@ void
 test_unused() {
   volatile double d = 0.0;
   double *p = new double ();
-  d += 1.0;
+  d += 1.0; // { dg-warning "deprecated" "" { target c++2a } }
   delete p;
 }
 
diff --git a/gcc/testsuite/g++.dg/cpp2a/volatile1.C b/gcc/testsuite/g++.dg/cpp2a/volatile1.C
new file mode 100644 (file)
index 0000000..e47591b
--- /dev/null
@@ -0,0 +1,141 @@
+// PR c++/91361 - P1152R4: Deprecating some uses of volatile.
+// { dg-do compile { target c++17 } }
+
+#define ACCESS_ONCE(x) (*(volatile __typeof(x) *)&(x))
+
+struct S {
+  volatile int a : 4;
+  int b : 2;
+};
+
+struct T {
+  int a : 4;
+  int b : 2;
+};
+
+union U {
+  char c;
+  int i;
+};
+
+struct W {
+  W();
+  W(volatile W&);
+  W& operator=(volatile W&) volatile;
+};
+
+volatile int // { dg-warning ".volatile.-qualified return type is deprecated" "" { target c++2a } }
+fn (volatile int i) // { dg-warning ".volatile.-qualified parameter is deprecated" "" { target c++2a } }
+{
+  volatile int v = 10;
+  int *volatile p = nullptr;
+
+  // Pre/post ++/--.
+  v++; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  ++v; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  v--; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  --v; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  p++; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  ++p; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  p--; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  --p; // { dg-warning "expression of .volatile.-qualified type is deprecated" "" { target c++2a } }
+  return v + i + *p;
+}
+
+void
+fn2 ()
+{
+  volatile int vi = 42;
+  int i = 24;
+
+  // Discarded-value expression ([expr.context]).
+  // The lvalue-to-rvalue conversion is applied here:
+  vi;
+  // ...but not here.  Otherwise we'd write to VI and then immediately read it.
+  vi = 42;
+  vi = i;
+  vi = i = 42;
+  i = vi = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  &(vi = i); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  (vi = 42, 45);
+  (i = vi = 42, 10); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  i = vi; // LHS not volatile.
+  i = (vi = i, 42);
+  static_cast<void>(vi = i);
+  static_cast<void>(i = vi = 42); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  (void)(vi = i);
+  (void)(i = vi = 42); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+
+  // Unevaluated operand.
+  decltype(vi = 42) x = vi;
+  decltype(i = vi = 42) x3 = i;
+
+  // Compound assignments.
+  vi += i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi -= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi %= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi ^= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi |= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi /= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi = vi += 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  vi += vi = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  i *= vi;
+  decltype(vi -= 42) x2 = vi; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+
+  // Structured bindings.
+  int a[] = { 10, 5 };
+  const auto & [cxr, cyr] = a;
+  const volatile auto & [cvxr, cvyr] = a; // { dg-warning ".volatile.-qualified structured binding is deprecated" "" { target c++2a } }
+  volatile auto & [vxr, vyr] = a; // { dg-warning ".volatile.-qualified structured binding is deprecated" "" { target c++2a } }
+}
+
+void
+fn3 ()
+{
+  volatile int i, j, k = 0;
+  i = j = k; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+
+  ACCESS_ONCE(j);
+
+  S s;
+  s.b = 1;
+
+  volatile U u;
+  u.c = 42;
+  i = u.c = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  u.c += 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+
+  volatile T t;
+  t.a = 3;
+  j = t.a = 3; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  t.a += 3; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+
+  volatile int *src = &i;
+  *src; // No assignment, don't warn.
+}
+
+void
+fn4 ()
+{
+  volatile W vw;
+  W w;
+  // Assignment to objects of a class is defined by the copy/move assignment
+  // operator.
+  vw = w;
+  w = vw;
+}
+
+template<typename T>
+void raccoon ()
+{
+  volatile T t, u;
+  t = 42;
+  u = t = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+  t &= 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" "" { target c++2a } }
+}
+
+void
+fn5 ()
+{
+  raccoon<int>();
+}
diff --git a/gcc/testsuite/g++.dg/cpp2a/volatile2.C b/gcc/testsuite/g++.dg/cpp2a/volatile2.C
new file mode 100644 (file)
index 0000000..1a7889a
--- /dev/null
@@ -0,0 +1,142 @@
+// PR c++/91361 - P1152R4: Deprecating some uses of volatile.
+// { dg-do compile { target c++2a } }
+// { dg-options "-Wno-volatile" }
+
+#define ACCESS_ONCE(x) (*(volatile __typeof(x) *)&(x))
+
+struct S {
+  volatile int a : 4;
+  int b : 2;
+};
+
+struct T {
+  int a : 4;
+  int b : 2;
+};
+
+union U {
+  char c;
+  int i;
+};
+
+struct W {
+  W();
+  W(volatile W&);
+  W& operator=(volatile W&) volatile;
+};
+
+volatile int
+fn (volatile int i)
+{
+  volatile int v = 10;
+  int *volatile p = nullptr;
+
+  // Pre/post ++/--.
+  v++;
+  ++v;
+  v--;
+  --v;
+  p++;
+  ++p;
+  p--;
+  --p;
+  return v + i + *p;
+}
+
+void
+fn2 ()
+{
+  volatile int vi = 42;
+  int i = 24;
+
+  // Discarded-value expression ([expr.context]).
+  // The lvalue-to-rvalue conversion is applied here:
+  vi;
+  // ...but not here.  Otherwise we'd write to VI and then immediately read it.
+  vi = 42;
+  vi = i;
+  vi = i = 42;
+  i = vi = 42;
+  &(vi = i);
+  (vi = 42, 45);
+  (i = vi = 42, 10);
+  i = vi; // LHS not volatile.
+  i = (vi = i, 42);
+  static_cast<void>(vi = i);
+  static_cast<void>(i = vi = 42);
+  (void)(vi = i);
+  (void)(i = vi = 42);
+
+  // Unevaluated operand.
+  decltype(vi = 42) x = vi;
+  decltype(i = vi = 42) x3 = i;
+
+  // Compound assignments.
+  vi += i;
+  vi -= i;
+  vi %= i;
+  vi ^= i;
+  vi |= i;
+  vi /= i;
+  vi = vi += 42;
+  vi += vi = 42;
+  i *= vi;
+  decltype(vi -= 42) x2 = vi;
+
+  // Structured bindings.
+  int a[] = { 10, 5 };
+  const auto & [cxr, cyr] = a;
+  const volatile auto & [cvxr, cvyr] = a;
+  volatile auto & [vxr, vyr] = a;
+}
+
+void
+fn3 ()
+{
+  volatile int i, j, k = 0;
+  i = j = k;
+
+  ACCESS_ONCE(j);
+
+  S s;
+  s.b = 1;
+
+  volatile U u;
+  u.c = 42;
+  i = u.c = 42;
+  u.c += 42;
+
+  volatile T t;
+  t.a = 3;
+  j = t.a = 3;
+  t.a += 3;
+
+  volatile int *src = &i;
+  *src; // No assignment, don't warn.
+}
+
+void
+fn4 ()
+{
+  volatile W vw;
+  W w;
+  // Assignment to objects of a class is defined by the copy/move assignment
+  // operator.
+  vw = w;
+  w = vw;
+}
+
+template<typename T>
+void raccoon ()
+{
+  volatile T t, u;
+  t = 42;
+  u = t = 42;
+  t &= 42;
+}
+
+void
+fn5 ()
+{
+  raccoon<int>();
+}
diff --git a/gcc/testsuite/g++.dg/cpp2a/volatile3.C b/gcc/testsuite/g++.dg/cpp2a/volatile3.C
new file mode 100644 (file)
index 0000000..f10a297
--- /dev/null
@@ -0,0 +1,142 @@
+// PR c++/91361 - P1152R4: Deprecating some uses of volatile.
+// { dg-do compile { target c++17 } }
+// { dg-options "-Wvolatile" }
+
+#define ACCESS_ONCE(x) (*(volatile __typeof(x) *)&(x))
+
+struct S {
+  volatile int a : 4;
+  int b : 2;
+};
+
+struct T {
+  int a : 4;
+  int b : 2;
+};
+
+union U {
+  char c;
+  int i;
+};
+
+struct W {
+  W();
+  W(volatile W&);
+  W& operator=(volatile W&) volatile;
+};
+
+volatile int // { dg-warning ".volatile.-qualified return type is deprecated" }
+fn (volatile int i) // { dg-warning ".volatile.-qualified parameter is deprecated" }
+{
+  volatile int v = 10;
+  int *volatile p = nullptr;
+
+  // Pre/post ++/--.
+  v++; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  ++v; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  v--; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  --v; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  p++; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  ++p; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  p--; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  --p; // { dg-warning "expression of .volatile.-qualified type is deprecated" }
+  return v + i + *p;
+}
+
+void
+fn2 ()
+{
+  volatile int vi = 42;
+  int i = 24;
+
+  // Discarded-value expression ([expr.context]).
+  // The lvalue-to-rvalue conversion is applied here:
+  vi;
+  // ...but not here.  Otherwise we'd write to VI and then immediately read it.
+  vi = 42;
+  vi = i;
+  vi = i = 42;
+  i = vi = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  &(vi = i); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  (vi = 42, 45);
+  (i = vi = 42, 10); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  i = vi; // LHS not volatile.
+  i = (vi = i, 42);
+  static_cast<void>(vi = i);
+  static_cast<void>(i = vi = 42); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  (void)(vi = i);
+  (void)(i = vi = 42); // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+
+  // Unevaluated operand.
+  decltype(vi = 42) x = vi;
+  decltype(i = vi = 42) x3 = i;
+
+  // Compound assignments.
+  vi += i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi -= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi %= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi ^= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi |= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi /= i; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi = vi += 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  vi += vi = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  i *= vi;
+  decltype(vi -= 42) x2 = vi; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+
+  // Structured bindings.
+  int a[] = { 10, 5 };
+  const auto & [cxr, cyr] = a;
+  const volatile auto & [cvxr, cvyr] = a; // { dg-warning ".volatile.-qualified structured binding is deprecated" }
+  volatile auto & [vxr, vyr] = a; // { dg-warning ".volatile.-qualified structured binding is deprecated" }
+}
+
+void
+fn3 ()
+{
+  volatile int i, j, k = 0;
+  i = j = k; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+
+  ACCESS_ONCE(j);
+
+  S s;
+  s.b = 1;
+
+  volatile U u;
+  u.c = 42;
+  i = u.c = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  u.c += 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+
+  volatile T t;
+  t.a = 3;
+  j = t.a = 3; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  t.a += 3; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+
+  volatile int *src = &i;
+  *src; // No assignment, don't warn.
+}
+
+void
+fn4 ()
+{
+  volatile W vw;
+  W w;
+  // Assignment to objects of a class is defined by the copy/move assignment
+  // operator.
+  vw = w;
+  w = vw;
+}
+
+template<typename T>
+void raccoon ()
+{
+  volatile T t, u;
+  t = 42;
+  u = t = 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+  t &= 42; // { dg-warning "assignment with .volatile.-qualified left operand is deprecated" }
+}
+
+void
+fn5 ()
+{
+  raccoon<int>();
+}
diff --git a/gcc/testsuite/g++.dg/cpp2a/volatile4.C b/gcc/testsuite/g++.dg/cpp2a/volatile4.C
new file mode 100644 (file)
index 0000000..2148cde
--- /dev/null
@@ -0,0 +1,142 @@
+// PR c++/91361 - P1152R4: Deprecating some uses of volatile.
+// { dg-do compile { target c++2a } }
+// { dg-options "-Wno-deprecated" }
+
+#define ACCESS_ONCE(x) (*(volatile __typeof(x) *)&(x))
+
+struct S {
+  volatile int a : 4;
+  int b : 2;
+};
+
+struct T {
+  int a : 4;
+  int b : 2;
+};
+
+union U {
+  char c;
+  int i;
+};
+
+struct W {
+  W();
+  W(volatile W&);
+  W& operator=(volatile W&) volatile;
+};
+
+volatile int
+fn (volatile int i)
+{
+  volatile int v = 10;
+  int *volatile p = nullptr;
+
+  // Pre/post ++/--.
+  v++;
+  ++v;
+  v--;
+  --v;
+  p++;
+  ++p;
+  p--;
+  --p;
+  return v + i + *p;
+}
+
+void
+fn2 ()
+{
+  volatile int vi = 42;
+  int i = 24;
+
+  // Discarded-value expression ([expr.context]).
+  // The lvalue-to-rvalue conversion is applied here:
+  vi;
+  // ...but not here.  Otherwise we'd write to VI and then immediately read it.
+  vi = 42;
+  vi = i;
+  vi = i = 42;
+  i = vi = 42;
+  &(vi = i);
+  (vi = 42, 45);
+  (i = vi = 42, 10);
+  i = vi; // LHS not volatile.
+  i = (vi = i, 42);
+  static_cast<void>(vi = i);
+  static_cast<void>(i = vi = 42);
+  (void)(vi = i);
+  (void)(i = vi = 42);
+
+  // Unevaluated operand.
+  decltype(vi = 42) x = vi;
+  decltype(i = vi = 42) x3 = i;
+
+  // Compound assignments.
+  vi += i;
+  vi -= i;
+  vi %= i;
+  vi ^= i;
+  vi |= i;
+  vi /= i;
+  vi = vi += 42;
+  vi += vi = 42;
+  i *= vi;
+  decltype(vi -= 42) x2 = vi;
+
+  // Structured bindings.
+  int a[] = { 10, 5 };
+  const auto & [cxr, cyr] = a;
+  const volatile auto & [cvxr, cvyr] = a;
+  volatile auto & [vxr, vyr] = a;
+}
+
+void
+fn3 ()
+{
+  volatile int i, j, k = 0;
+  i = j = k;
+
+  ACCESS_ONCE(j);
+
+  S s;
+  s.b = 1;
+
+  volatile U u;
+  u.c = 42;
+  i = u.c = 42;
+  u.c += 42;
+
+  volatile T t;
+  t.a = 3;
+  j = t.a = 3;
+  t.a += 3;
+
+  volatile int *src = &i;
+  *src; // No assignment, don't warn.
+}
+
+void
+fn4 ()
+{
+  volatile W vw;
+  W w;
+  // Assignment to objects of a class is defined by the copy/move assignment
+  // operator.
+  vw = w;
+  w = vw;
+}
+
+template<typename T>
+void raccoon ()
+{
+  volatile T t, u;
+  t = 42;
+  u = t = 42;
+  t &= 42;
+}
+
+void
+fn5 ()
+{
+  raccoon<int>();
+}
index 373c202b800f37555daa723bb8d4f51dfc8848b8..f27399cfc8a9e6af15d1cd5b778d23ab18d4f1d2 100644 (file)
@@ -13,8 +13,10 @@ int main()
 
   b++; // { dg-warning "deprecated" "" { target { ! c++17 } } }
   // { dg-error "forbidden" "" { target c++17 } .-1 }
+  // { dg-warning ".volatile.-qualified type is deprecated" "" { target c++2a } .-2 }
   b++; // { dg-warning "deprecated" "" { target { ! c++17 } } }
   // { dg-error "forbidden" "" { target c++17 } .-1 }
+  // { dg-warning ".volatile.-qualified type is deprecated" "" { target c++2a } .-2 }
   i = b;
   if (i != 1)
     abort ();
index dce51ec332e5217d1d6efb807e1a234ed91beca1..5891bc311bd24f1106f81f3d3cb723987d8672e5 100644 (file)
@@ -8,6 +8,6 @@ int main()
 {
   my_bool b = false;
   b--; // { dg-error "" }
+  // { dg-warning ".volatile.-qualified type is deprecated" "" { target c++2a } .-1 }
   return 0;
 }
-
index b344c1f683a1e3c6fda6794f4c51f5243e4f64f7..f7e092e1445bedc2add9627b83ccba2be79901c1 100644 (file)
@@ -4,7 +4,7 @@ struct A { // { dg-message "A" }
   A(int);
 };
 
-void foo(volatile A a) { 
+void foo(volatile A a) {  // { dg-warning "deprecated" "" { target c++2a } }
   1 ? a : 0; // { dg-error "qualifiers|lvalue|no match" }
   1 ? 0 : a; // { dg-error "qualifiers|lvalue|no match" }
 } 
index 6c1f5d098782e8686c90a3899b3b14308412e263..339865d694295079151994389b46a13c21215e1b 100644 (file)
@@ -2,5 +2,5 @@ volatile int i __attribute__((vector_size(8)));
 
 void foo()
 {
-  i += i;
+  i += i; // { dg-warning "deprecated" "" { target c++2a } }
 }
index 6f4aa97ee44620531fd310f3eb1ba8eaeec4d38d..d12670c5159498f10320db443d30043390f18777 100644 (file)
@@ -1,3 +1,5 @@
+// { dg-additional-options "-Wno-volatile" }
+
 int arr[64], arr2[64];
 struct S { int a[4]; } k;
 short arr4[4];
index 42cdf8700811ebb966ec90f90602b0381119ab67..769cb14ecbcc0a6c774585b63806ee56bc566d52 100644 (file)
@@ -6,12 +6,12 @@ struct C : A, B {};
 
 struct X
 {
-  virtual B* foo(volatile int);
+  virtual B* foo(volatile int); // { dg-warning "deprecated" "" { target c++2a } }
 };
 
 struct Y : X
 {
-  virtual C* foo(volatile int);
+  virtual C* foo(volatile int); // { dg-warning "deprecated" "" { target c++2a } }
 };
 
-C* Y::foo(volatile int) { return 0; }
+C* Y::foo(volatile int) { return 0; } // { dg-warning "deprecated" "" { target c++2a } }
index e704077c26bc93c6bdd7e575775a8095fca2007e..81ac76a40d312e2432b91375398afa9b75f913f5 100644 (file)
@@ -1,6 +1,6 @@
 // PR c++/49395
 
-volatile int foo();
+volatile int foo(); // { dg-warning "deprecated" "" { target c++2a } }
 struct A { volatile int i; };
 typedef volatile int vi;
 
index d23b31337482259e2aaa840ebbe4f2eaeab88371..5b6b11d70e5abf825c446e601d313576e7ed35c8 100644 (file)
@@ -7,12 +7,12 @@
 __attribute__((noinline, noclone)) static void bar (int);
 volatile int v;
 void (*fn) ();
-struct S { S () { v++; } ~S () { v++; } };
+struct S { S () { v++; } ~S () { v++; } }; // { dg-warning "deprecated" "" { target c++2a } }
 
 __attribute__((noinline, noclone)) static void
 foo (int x)
 {
-  v++;
+  v++; // { dg-warning "deprecated" "" { target c++2a } }
   if (x == 5)
     bar (x);
 }
@@ -20,7 +20,7 @@ foo (int x)
 __attribute__((noinline, noclone)) static void
 bar (int x)
 {
-  v++;
+  v++; // { dg-warning "deprecated" "" { target c++2a } }
   if (x == 6)
     foo (x);
   else if (x == 5)
index 8a2290dc293572977fce4cc63355a7a9103f6e2c..a829fb5e8ccd0891c02bbb6183cdbe5ea1b7d407 100644 (file)
@@ -7,5 +7,5 @@ template <class T> void f(const T&);
 int main()
 {
   volatile int i = 0;
-  f(i++);
+  f(i++); // { dg-warning "deprecated" "" { target c++2a } }
 }
index 5135ec14b1f80a97401ee17c8f31ed468a0df5c2..bdd1c8451871a19e46255cce4ca3ae6691687b48 100644 (file)
@@ -25,7 +25,7 @@ struct E1
 } const;                       // { dg-error "'const' can only be specified for objects and functions" }
 
 void foo (
-struct E2
+struct E2                      // { dg-warning "deprecated" "" { target c++2a } }
 {                              // { dg-error "types may not be defined in parameter types" }
   int i;
 } volatile);
index 4f02678e7f9081822bab7cda7edf2030fb77c45b..24a6b41cbd8cb122b8cc0957e5736e3e74c8f6dc 100644 (file)
@@ -3,6 +3,7 @@
 /* { dg-options "-Wignored-qualifiers" } */
 
 volatile void bar(); /* { dg-warning "type qualifiers ignored" } */
+// { dg-warning ".volatile.-qualified return type is deprecated" "" { target c++2a } .-1 }
 
 struct A
 {
index efb35c25716ad21ece8d4597eda5b5dcad5bc6ec..7b166351a4b5c2c814af5914baa0909c0aec75c1 100644 (file)
@@ -6,11 +6,13 @@ struct foo {
   bool a;
   volatile bool b,c;  
   foo() { a = b = c = false; } // { dg-bogus "parentheses" }
+  // { dg-warning "deprecated" "" { target c++2a } .-1 }
 };
 
 int main() {
   bool a;
   volatile bool b,c;
   a = b = c = false; // { dg-bogus "parentheses" }
+  // { dg-warning "deprecated" "" { target c++2a } .-1 }
   foo A;
 }
index db16e3738e2cbe704db3ffed1e0594bdb94ccaac..97594640f9686577485f87ec6fc299d307df0693 100644 (file)
@@ -3,5 +3,5 @@
 
 char * volatile p;
 void foo() {
-  --p = 0;
+  --p = 0; // { dg-warning "deprecated" "" { target c++2a } }
 }
index 7d818fbe9e130a5277d306df0b86bf4ee2f50bf8..a93ef58aa9ff55f1eb9c378a2499c589a32adcc3 100644 (file)
@@ -5,7 +5,7 @@
 class f_class                 // { dg-message "note" "candidates" }
 { };
 
-volatile f_class
+volatile f_class             // { dg-warning "deprecated" "" { target c++2a } }
 ret_v_f_class()
 {
   f_class t;