]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Don't emit -Wxor-used-as-pow on macro expansions [PR107002]
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 28 Mar 2023 18:34:49 +0000 (14:34 -0400)
committerDavid Malcolm <dmalcolm@redhat.com>
Tue, 28 Mar 2023 18:34:49 +0000 (14:34 -0400)
PR c/107002 reports an assertion failure from deep inside the
diagnostic_shows_locus when attempting to print fix-it hints relating
to -Wxor-used-as-pow.  The case involves macro expansions with
-ftrack-macro-expansion=0.

It doesn't seem to make much sense to emit this warning for macro
expansions, so this patch updates the warning not to (which seems
to also be clang's behavior).  The patch also adds some bulletproofing
to diagnostic-show-locus.cc to be more robust against such invalid
fix-it hints.

Doing so fixes the ICE.

gcc/c-family/ChangeLog:
PR c/107002
* c-common.h (check_for_xor_used_as_pow): Add "rhs_loc" param.
* c-warn.cc (check_for_xor_used_as_pow): Add "rhs_loc" param.
Reject cases where involving macro expansions.

gcc/c/ChangeLog:
PR c/107002
* c-typeck.cc (parser_build_binary_op): Update for new param of
check_for_xor_used_as_pow.

gcc/cp/ChangeLog:
PR c/107002
* parser.cc (cp_parser_binary_expression): Update for new param of
check_for_xor_used_as_pow.

gcc/ChangeLog:
PR c/107002
* diagnostic-show-locus.cc (column_range::column_range): Factor
out assertion conditional into...
(column_range::valid_p): ...this new function.
(line_corrections::add_hint): Don't attempt to consolidate hints
if it would lead to invalid column_range instances.

gcc/testsuite/ChangeLog:
PR c/107002
* c-c++-common/Wxor-used-as-pow-1.c: Add macro test.
* c-c++-common/Wxor-used-as-pow-pr107002-0.c: New test.
* c-c++-common/Wxor-used-as-pow-pr107002-1.c: New test.
* c-c++-common/Wxor-used-as-pow-pr107002-2.c: New test.

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
gcc/c-family/c-common.h
gcc/c-family/c-warn.cc
gcc/c/c-typeck.cc
gcc/cp/parser.cc
gcc/diagnostic-show-locus.cc
gcc/testsuite/c-c++-common/Wxor-used-as-pow-1.c
gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-0.c [new file with mode: 0644]
gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-1.c [new file with mode: 0644]
gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-2.c [new file with mode: 0644]

index e128e3e7379dda3f95011d4fa382312209963eb1..f96350b64af0ca59d1a125534a5b909e761c213c 100644 (file)
@@ -1524,7 +1524,7 @@ extern void warn_for_multistatement_macros (location_t, location_t,
 
 extern void check_for_xor_used_as_pow (location_t lhs_loc, tree lhs_val,
                                       location_t operator_loc,
-                                      tree rhs_val);
+                                      location_t rhs_loc, tree rhs_val);
 
 /* In c-attribs.cc.  */
 extern bool attribute_takes_identifier_p (const_tree);
index ccbede95ea4269f92bbfaf0d84e99cfb17585588..9ac43a1af6ef5f9bc9c5bc2368a16a72588bed2c 100644 (file)
@@ -3835,14 +3835,15 @@ do_warn_array_compare (location_t location, tree_code code, tree op0, tree op1)
     }
 }
 
-/* Given LHS_VAL ^ RHS_VAL, where LHS_LOC is the location of the LHS and
-   OPERATOR_LOC is the location of the ^, complain with -Wxor-used-as-pow
-   if it looks like the user meant exponentiation rather than xor.  */
+/* Given LHS_VAL ^ RHS_VAL, where LHS_LOC is the location of the LHS,
+   OPERATOR_LOC is the location of the ^, and RHS_LOC the location of the
+   RHS, complain with -Wxor-used-as-pow if it looks like the user meant
+   exponentiation rather than xor.  */
 
 void
 check_for_xor_used_as_pow (location_t lhs_loc, tree lhs_val,
                           location_t operator_loc,
-                          tree rhs_val)
+                          location_t rhs_loc, tree rhs_val)
 {
   /* Only complain if both args are non-negative integer constants that fit
      in uhwi.  */
@@ -3859,6 +3860,20 @@ check_for_xor_used_as_pow (location_t lhs_loc, tree lhs_val,
   binary_op_rich_location loc (operator_loc,
                               lhs_val, rhs_val, false);
 
+  /* Reject cases where we don't have 3 distinct locations.
+     This can happen e.g. due to macro expansion with
+     -ftrack-macro-expansion=0 */
+  if (!(lhs_loc != operator_loc
+       && lhs_loc != rhs_loc
+       && operator_loc != rhs_loc))
+    return;
+
+  /* Reject cases in which any of the locations came from a macro.  */
+  if (from_macro_expansion_at (lhs_loc)
+      || from_macro_expansion_at (operator_loc)
+      || from_macro_expansion_at (rhs_loc))
+    return;
+
   /* If we issue fix-it hints with the warning then we will also issue a
      note suggesting how to suppress the warning with a different change.
      These proposed changes are incompatible.  */
index 45bacc06c474f75144386c387cbd59d70fbaf37d..7079d4ee145cf7c6b80c64c765973cb24c8a027d 100644 (file)
@@ -4083,7 +4083,7 @@ parser_build_binary_op (location_t location, enum tree_code code,
       && arg2.m_decimal)
     check_for_xor_used_as_pow (arg1.get_location (), arg1.value,
                               location,
-                              arg2.value);
+                              arg2.get_location (), arg2.value);
 
   return result;
 }
index c54972be85ae60735a7ccf652f20fea8c6235de1..e8efc32f2c26051ce874d88dd7264e0bf58d9dce 100644 (file)
@@ -10289,6 +10289,7 @@ cp_parser_binary_expression (cp_parser* parser, bool cast_p,
          (current.lhs.get_location (),
           tree_strip_any_location_wrapper (current.lhs),
           current.loc,
+          rhs.get_location (),
           tree_strip_any_location_wrapper (rhs));
 
       overload = NULL;
index 301102779b98c52296118570439acc075aabe163..0514815b51f9271ac1b68b1142d501aa1ea40479 100644 (file)
@@ -2232,8 +2232,7 @@ class column_range
 public:
   column_range (int start_, int finish_) : start (start_), finish (finish_)
   {
-    /* We must have either a range, or an insertion.  */
-    gcc_assert (start <= finish || finish == start - 1);
+    gcc_assert (valid_p (start, finish));
   }
 
   bool operator== (const column_range &other) const
@@ -2241,6 +2240,12 @@ public:
     return start == other.start && finish == other.finish;
   }
 
+  static bool valid_p (int start, int finish)
+  {
+    /* We must have either a range, or an insertion.  */
+    return (start <= finish || finish == start - 1);
+  }
+
   int start;
   int finish;
 };
@@ -2470,7 +2475,9 @@ line_corrections::add_hint (const fixit_hint *hint)
       gcc_assert (printed_columns.start
                  >= last_correction->m_printed_columns.start);
 
-      if (printed_columns.start <= last_correction->m_printed_columns.finish)
+      if (printed_columns.start <= last_correction->m_printed_columns.finish
+         && column_range::valid_p (last_correction->m_affected_bytes.finish + 1,
+                                   affected_bytes.start - 1))
        {
          /* We have two hints for which the printed forms of the hints
             would touch or overlap, so we need to consolidate them to avoid
index 962902c3a054d25051aa7b063bfadef4cb8488a0..33c418c24790cef6c66c5ce35166f8baefef2be0 100644 (file)
@@ -55,3 +55,7 @@ int h10_3 = 0xa ^ 3;
 /* Don't complain if the RHS isn't literal decimal.  */
 int t2_x16 = 2^0x10;
 int h10_x3 = 10 ^ 0x3;
+
+/* Don't complain about uses in macros.  */
+#define AMT (10^2)
+int amt = AMT;
diff --git a/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-0.c b/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-0.c
new file mode 100644 (file)
index 0000000..37a1e30
--- /dev/null
@@ -0,0 +1,9 @@
+/* Regression test for ICE seen in -Wxor-used-as-pow with
+   -ftrack-macro-expansion=0 in source-printing (fix-it-hints,
+   specifically).  */
+
+/* { dg-options "-ftrack-macro-expansion=0 -fdiagnostics-show-caret" } */
+
+#define test(lower, higher, a, b, c, d)                                        \
+  char test##line[ (a higher b lower c higher d) == 0 ? -1 : 1];
+test (|, ^, 1, 2, 2, 1)
diff --git a/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-1.c b/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-1.c
new file mode 100644 (file)
index 0000000..10e2a0d
--- /dev/null
@@ -0,0 +1,5 @@
+/* { dg-options "-ftrack-macro-expansion=1 -fdiagnostics-show-caret" } */
+
+#define test(lower, higher, a, b, c, d)                                        \
+  char test##line[ (a higher b lower c higher d) == 0 ? -1 : 1];
+test (|, ^, 1, 2, 2, 1)
diff --git a/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-2.c b/gcc/testsuite/c-c++-common/Wxor-used-as-pow-pr107002-2.c
new file mode 100644 (file)
index 0000000..8e9a4bf
--- /dev/null
@@ -0,0 +1,5 @@
+/* { dg-options "-ftrack-macro-expansion=2 -fdiagnostics-show-caret" } */
+
+#define test(lower, higher, a, b, c, d)                                        \
+  char test##line[ (a higher b lower c higher d) == 0 ? -1 : 1];
+test (|, ^, 1, 2, 2, 1)