]> gcc.gnu.org Git - gcc.git/commitdiff
re PR c/69835 (-Wnonnull diagnoses parameter comparisons with NULL even when those...
authorJakub Jelinek <jakub@redhat.com>
Tue, 16 Feb 2016 20:46:17 +0000 (21:46 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 16 Feb 2016 20:46:17 +0000 (21:46 +0100)
PR c/69835
* common.opt (Wnonnull-compare): New warning.
* doc/invoke.texi (-Wnonnull): Remove text about comparison
of arguments against NULL.
(-Wnonnull-compare): Document.
* Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
* tree-pass.h (make_pass_warn_nonnull_compare): Declare.
* passes.def (pass_warn_nonnull_compare): Add.
* gimple-ssa-nonnull-compare.c: New file.
c-family/
* c.opt (Wnonnull-compare): Enable for -Wall.
c/
* c-typeck.c (build_binary_op): Revert 2015-09-09 change.
cp/
* typeck.c (cp_build_binary_op): Revert 2015-09-09 change.
testsuite/
* c-c++-common/nonnull-1.c: Use -Wnonnull-compare instead of
-Wnonnull in dg-options.
* c-c++-common/nonnull-2.c: New test.

From-SVN: r233472

16 files changed:
gcc/ChangeLog
gcc/Makefile.in
gcc/c-family/ChangeLog
gcc/c-family/c.opt
gcc/c/ChangeLog
gcc/c/c-typeck.c
gcc/common.opt
gcc/cp/ChangeLog
gcc/cp/typeck.c
gcc/doc/invoke.texi
gcc/gimple-ssa-nonnull-compare.c [new file with mode: 0644]
gcc/passes.def
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/nonnull-1.c
gcc/testsuite/c-c++-common/nonnull-2.c [new file with mode: 0644]
gcc/tree-pass.h

index 06892260ae53e8768eddabf5de4b558996b0ceda..29302b03d746cecd1c34eec59bd5e192ccf46b38 100644 (file)
@@ -1,3 +1,15 @@
+2016-02-16  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/69835
+       * common.opt (Wnonnull-compare): New warning.
+       * doc/invoke.texi (-Wnonnull): Remove text about comparison
+       of arguments against NULL.
+       (-Wnonnull-compare): Document.
+       * Makefile.in (OBJS): Add gimple-ssa-nonnull-compare.o.
+       * tree-pass.h (make_pass_warn_nonnull_compare): Declare.
+       * passes.def (pass_warn_nonnull_compare): Add.
+       * gimple-ssa-nonnull-compare.c: New file.
+
 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
 
        * config/aarch64/aarch64.c (cortexa57_tunings): Remove
index 6c1583078b648fcf9f9f9da78c9fbe871e1bbbfd..3d6f0e6b1e9df0798ebbcba47b7a1b8389011910 100644 (file)
@@ -1278,6 +1278,7 @@ OBJS = \
        gimple-pretty-print.o \
        gimple-ssa-backprop.o \
        gimple-ssa-isolate-paths.o \
+       gimple-ssa-nonnull-compare.o \
        gimple-ssa-split-paths.o \
        gimple-ssa-strength-reduction.o \
        gimple-streamer-in.o \
index 3e5a68b4533ea2f624558dbd62dd88b24c1a77e6..aca8cc2e7385834a77aba9a4ade4f43a922bb4b9 100644 (file)
@@ -1,3 +1,8 @@
+2016-02-16  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/69835
+       * c.opt (Wnonnull-compare): Enable for -Wall.
+
 2016-02-15  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/69797
index b4ec3b8c0564c9c99f3acc5d6256366a9e5674c5..638e9c24f819e2ee4099a232f95f1416401ede44 100644 (file)
@@ -677,6 +677,10 @@ Wnonnull
 C ObjC C++ ObjC++ LangEnabledBy(C ObjC C++ ObjC++,Wall)
 ;
 
+Wnonnull-compare
+C ObjC C++ ObjC++ LangEnabledBy(C ObjC C++ ObjC++,Wall)
+;
+
 Wnormalized
 C ObjC C++ ObjC++ Warning Alias(Wnormalized=,nfc,none)
 ;
index b51957ee87e3df652d4787db09af61a1ad8a2afe..ae00338ec27ab446d46277a2bb6bdb4723059aa6 100644 (file)
@@ -1,3 +1,8 @@
+2016-02-16  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/69835
+       * c-typeck.c (build_binary_op): Revert 2015-09-09 change.
+
 2016-02-16  James Norris  <jnorris@codesourcery.com>
 
        PR c/64748
index 1122a88417bd46ae195bc580a732285fabeaf51b..6aa0f03dabe83c07c614d8c1ebe60fa4af1e8d7e 100644 (file)
@@ -11086,11 +11086,6 @@ build_binary_op (location_t location, enum tree_code code,
        short_compare = 1;
       else if (code0 == POINTER_TYPE && null_pointer_constant_p (orig_op1))
        {
-         if (warn_nonnull
-             && TREE_CODE (op0) == PARM_DECL && nonnull_arg_p (op0))
-           warning_at (location, OPT_Wnonnull,
-                       "nonnull argument %qD compared to NULL", op0);
-
          if (TREE_CODE (op0) == ADDR_EXPR
              && decl_with_nonnull_addr_p (TREE_OPERAND (op0, 0)))
            {
@@ -11111,11 +11106,6 @@ build_binary_op (location_t location, enum tree_code code,
        }
       else if (code1 == POINTER_TYPE && null_pointer_constant_p (orig_op0))
        {
-         if (warn_nonnull
-             && TREE_CODE (op1) == PARM_DECL && nonnull_arg_p (op1))
-           warning_at (location, OPT_Wnonnull,
-                       "nonnull argument %qD compared to NULL", op1);
-
          if (TREE_CODE (op1) == ADDR_EXPR
              && decl_with_nonnull_addr_p (TREE_OPERAND (op1, 0)))
            {
index 520fa9c9dd57701d4707a4bd746f0d384164a9eb..3c3669ad271de723d8d7143a94d8fa110f1238a4 100644 (file)
@@ -616,6 +616,10 @@ Wlarger-than=
 Common RejectNegative Joined UInteger Warning
 -Wlarger-than=<number> Warn if an object is larger than <number> bytes.
 
+Wnonnull-compare
+Var(warn_nonnull_compare) Warning
+Warn if comparing pointer parameter with nonnull attribute with NULL.
+
 Wnull-dereference
 Common Var(warn_null_dereference) Warning
 Warn if dereferencing a NULL pointer may lead to erroneous or undefined behavior.
index 90c76ffcd4efeb52f2775828d059edb004ba5b82..d12cb73e2da18f66f8c730366bd37a8a85304ea8 100644 (file)
@@ -1,3 +1,8 @@
+2016-02-16  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/69835
+       * typeck.c (cp_build_binary_op): Revert 2015-09-09 change.
+
 2016-02-16  Jason Merrill  <jason@redhat.com>
 
        PR c++/69657
index acedab80d5c7c3163c18871bac9ba8d279c11972..5e62220b68f5385258fd0187c199622650d205f1 100644 (file)
@@ -4514,11 +4514,6 @@ cp_build_binary_op (location_t location,
               || (code0 == POINTER_TYPE
                   && TYPE_PTR_P (type1) && integer_zerop (op1)))
        {
-         if (warn_nonnull
-             && TREE_CODE (op0) == PARM_DECL && nonnull_arg_p (op0))
-           warning_at (location, OPT_Wnonnull,
-                       "nonnull argument %qD compared to NULL", op0);
-
          if (TYPE_PTR_P (type1))
            result_type = composite_pointer_type (type0, type1, op0, op1,
                                                  CPO_COMPARISON, complain);
@@ -4558,11 +4553,6 @@ cp_build_binary_op (location_t location,
               || (code1 == POINTER_TYPE
                   && TYPE_PTR_P (type0) && integer_zerop (op0)))
        {
-         if (warn_nonnull
-             && TREE_CODE (op1) == PARM_DECL && nonnull_arg_p (op1))
-           warning_at (location, OPT_Wnonnull,
-                       "nonnull argument %qD compared to NULL", op1);
-
          if (TYPE_PTR_P (type0))
            result_type = composite_pointer_type (type0, type1, op0, op1,
                                                  CPO_COMPARISON, complain);
index 85f222117affdf6abcb251bea6f662ac70c3ba31..2bd793d13b3f31e1a77d453ca23474ec214199af 100644 (file)
@@ -276,7 +276,8 @@ Objective-C and Objective-C++ Dialects}.
 -Wmain -Wmaybe-uninitialized -Wmemset-transposed-args @gol
 -Wmisleading-indentation -Wmissing-braces @gol
 -Wmissing-field-initializers -Wmissing-include-dirs @gol
--Wno-multichar  -Wnonnull  -Wnormalized=@r{[}none@r{|}id@r{|}nfc@r{|}nfkc@r{]} @gol
+-Wno-multichar -Wnonnull -Wnonnull-compare @gol
+-Wnormalized=@r{[}none@r{|}id@r{|}nfc@r{|}nfkc@r{]} @gol
 -Wnull-dereference -Wodr  -Wno-overflow  -Wopenmp-simd  @gol
 -Woverride-init-side-effects -Woverlength-strings @gol
 -Wpacked  -Wpacked-bitfield-compat  -Wpadded @gol
@@ -3537,6 +3538,7 @@ Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
 -Wmissing-braces @r{(only for C/ObjC)} @gol
 -Wnarrowing @r{(only for C++)}  @gol
 -Wnonnull  @gol
+-Wnonnull-compare  @gol
 -Wopenmp-simd @gol
 -Wparentheses  @gol
 -Wpointer-sign  @gol
@@ -3795,12 +3797,18 @@ formats that may yield only a two-digit year.
 Warn about passing a null pointer for arguments marked as
 requiring a non-null value by the @code{nonnull} function attribute.
 
-Also warns when comparing an argument marked with the @code{nonnull}
-function attribute against null inside the function.
-
 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
 can be disabled with the @option{-Wno-nonnull} option.
 
+@item -Wnonnull-compare
+@opindex Wnonnull-compare
+@opindex Wno-nonnull-compare
+Warn when comparing an argument marked with the @code{nonnull}
+function attribute against null inside the function.
+
+@option{-Wnonnull-compare} is included in @option{-Wall}.  It
+can be disabled with the @option{-Wno-nonnull-compare} option.
+
 @item -Wnull-dereference
 @opindex Wnull-dereference
 @opindex Wno-null-dereference
diff --git a/gcc/gimple-ssa-nonnull-compare.c b/gcc/gimple-ssa-nonnull-compare.c
new file mode 100644 (file)
index 0000000..910188b
--- /dev/null
@@ -0,0 +1,151 @@
+/* -Wnonnull-compare warning support.
+   Copyright (C) 2016 Free Software Foundation, Inc.
+   Contributed by Jakub Jelinek <jakub@redhat.com>
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 3, or (at your option)
+any later version.
+
+GCC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING3.  If not see
+<http://www.gnu.org/licenses/>.  */
+
+#include "config.h"
+#include "system.h"
+#include "coretypes.h"
+#include "backend.h"
+#include "tree.h"
+#include "gimple.h"
+#include "tree-pass.h"
+#include "ssa.h"
+#include "diagnostic-core.h"
+#include "tree-dfa.h"
+
+/* Warn about comparison of nonnull_arg_p argument initial values
+   with NULL.  */
+
+static void
+do_warn_nonnull_compare (function *fun, tree arg)
+{
+  if (!POINTER_TYPE_P (TREE_TYPE (arg))
+      && TREE_CODE (TREE_TYPE (arg)) != OFFSET_TYPE)
+    return;
+
+  if (!nonnull_arg_p (arg))
+    return;
+
+  tree d = ssa_default_def (fun, arg);
+  if (d == NULL_TREE)
+    return;
+
+  use_operand_p use_p;
+  imm_use_iterator iter;
+
+  FOR_EACH_IMM_USE_FAST (use_p, iter, d)
+    {
+      gimple *stmt = USE_STMT (use_p);
+      tree op = NULL_TREE;
+      location_t loc = gimple_location (stmt);
+      if (gimple_code (stmt) == GIMPLE_COND)
+       switch (gimple_cond_code (stmt))
+         {
+         case EQ_EXPR:
+         case NE_EXPR:
+           if (gimple_cond_lhs (stmt) == d)
+             op = gimple_cond_rhs (stmt);
+           break;
+         default:
+           break;
+         }
+      else if (is_gimple_assign (stmt))
+       switch (gimple_assign_rhs_code (stmt))
+         {
+         case EQ_EXPR:
+         case NE_EXPR:
+           if (gimple_assign_rhs1 (stmt) == d)
+             op = gimple_assign_rhs2 (stmt);
+           break;
+         case COND_EXPR:
+           switch (TREE_CODE (gimple_assign_rhs1 (stmt)))
+             {
+             case EQ_EXPR:
+             case NE_EXPR:
+               op = gimple_assign_rhs1 (stmt);
+               if (TREE_OPERAND (op, 0) != d)
+                 {
+                   op = NULL_TREE;
+                   break;
+                 }
+               loc = EXPR_LOC_OR_LOC (op, loc);
+               op = TREE_OPERAND (op, 1);
+               break;
+             default:
+               break;
+             }
+           break;
+         default:
+           break;
+         }
+      if (op
+         && (POINTER_TYPE_P (TREE_TYPE (arg))
+             ? integer_zerop (op) : integer_minus_onep (op)))
+       warning_at (loc, OPT_Wnonnull_compare,
+                   "nonnull argument %qD compared to NULL", arg);
+    }
+}
+
+namespace {
+
+const pass_data pass_data_warn_nonnull_compare =
+{
+  GIMPLE_PASS, /* type */
+  "*nonnullcmp", /* name */
+  OPTGROUP_NONE, /* optinfo_flags */
+  TV_NONE, /* tv_id */
+  PROP_ssa, /* properties_required */
+  0, /* properties_provided */
+  0, /* properties_destroyed */
+  0, /* todo_flags_start */
+  0, /* todo_flags_finish */
+};
+
+class pass_warn_nonnull_compare : public gimple_opt_pass
+{
+public:
+  pass_warn_nonnull_compare (gcc::context *ctxt)
+    : gimple_opt_pass (pass_data_warn_nonnull_compare, ctxt)
+  {}
+
+  /* opt_pass methods: */
+  virtual bool gate (function *) { return warn_nonnull_compare; }
+
+  virtual unsigned int execute (function *);
+
+}; // class pass_warn_nonnull_compare
+
+unsigned int
+pass_warn_nonnull_compare::execute (function *fun)
+{
+  if (fun->static_chain_decl)
+    do_warn_nonnull_compare (fun, fun->static_chain_decl);
+
+  for (tree arg = DECL_ARGUMENTS (cfun->decl); arg; arg = DECL_CHAIN (arg))
+    do_warn_nonnull_compare (fun, arg);
+  return 0;
+}
+
+} // anon namespace
+
+gimple_opt_pass *
+make_pass_warn_nonnull_compare (gcc::context *ctxt)
+{
+  return new pass_warn_nonnull_compare (ctxt);
+}
index d103df13dcdfc905f04ed00135805aa793a62627..7aed144454291df39a5ffe5a809e20ec6fbfb5b3 100644 (file)
@@ -56,6 +56,7 @@ along with GCC; see the file COPYING3.  If not see
       NEXT_PASS (pass_fixup_cfg);
       NEXT_PASS (pass_init_datastructures);
       NEXT_PASS (pass_build_ssa);
+      NEXT_PASS (pass_warn_nonnull_compare);
       NEXT_PASS (pass_ubsan);
       NEXT_PASS (pass_early_warn_uninitialized);
       NEXT_PASS (pass_nothrow);
index cf1da01f8bab7046ba8140aaafc87a1db2ed9217..df0b67cd447b15c051219b220044085e2d19563d 100644 (file)
@@ -1,3 +1,10 @@
+2016-02-16  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/69835
+       * c-c++-common/nonnull-1.c: Use -Wnonnull-compare instead of
+       -Wnonnull in dg-options.
+       * c-c++-common/nonnull-2.c: New test.
+
 2016-02-16  James Greenhalgh  <james.greenhalgh@arm.com>
            Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
 
index b5c3d7f8866a9f7264f9876b329c7b0ed75c431b..fb2814c44981cfbccc74fb926f61aabb6b92f8e9 100644 (file)
@@ -1,7 +1,7 @@
 /* Test for the bad usage of "nonnull" function attribute parms.  */
 /*  */
 /* { dg-do compile } */
-/* { dg-options "-Wnonnull" } */
+/* { dg-options "-Wnonnull-compare" } */
 
 #include <stddef.h>
 #include <stdlib.h>
diff --git a/gcc/testsuite/c-c++-common/nonnull-2.c b/gcc/testsuite/c-c++-common/nonnull-2.c
new file mode 100644 (file)
index 0000000..ebd17a2
--- /dev/null
@@ -0,0 +1,26 @@
+/* Test for the bad usage of "nonnull" function attribute parms.  */
+/* { dg-do compile } */
+/* { dg-options "-Wnonnull-compare" } */
+
+void bar (char **);
+
+__attribute__((nonnull (1, 3))) int
+foo (char *cp1, char *cp2, char *cp3, char *cp4)
+{
+  if (cp1 == (char *) 0) /* { dg-warning "nonnull argument" "cp1 compared to NULL" } */
+    return 1;
+
+  cp1 = cp2;
+  if (cp1 == (char *) 0) /* { dg-bogus "nonnull argument" } */
+    return 2;
+
+  if (!cp4)       /* { dg-bogus "nonnull argument" } */
+    return 3;
+
+  char **p = &cp3;
+  bar (p);
+  if (cp3 == (char *) 0) /* { dg-bogus "nonnull argument" } */
+    return 4;
+
+  return 5;
+}
index b942a01f445840fdd7b35b57d313abe94a4e7cb8..5f5055d3a6c1f944557a84deceda2da79eab3308 100644 (file)
@@ -472,6 +472,7 @@ extern gimple_opt_pass *make_pass_oacc_kernels (gcc::context *ctxt);
 extern simple_ipa_opt_pass *make_pass_ipa_oacc (gcc::context *ctxt);
 extern simple_ipa_opt_pass *make_pass_ipa_oacc_kernels (gcc::context *ctxt);
 extern gimple_opt_pass *make_pass_gen_hsail (gcc::context *ctxt);
+extern gimple_opt_pass *make_pass_warn_nonnull_compare (gcc::context *ctxt);
 
 /* IPA Passes */
 extern simple_ipa_opt_pass *make_pass_ipa_lower_emutls (gcc::context *ctxt);
This page took 0.146799 seconds and 5 git commands to generate.