]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
analyzer: use ultimate alias target at calls (PR 93288)
authorDavid Malcolm <dmalcolm@redhat.com>
Thu, 6 Feb 2020 02:29:04 +0000 (21:29 -0500)
committerDavid Malcolm <dmalcolm@redhat.com>
Wed, 12 Feb 2020 02:06:43 +0000 (21:06 -0500)
PR analyzer/93288 reports an ICE in a C++ testcase when calling a
constructor.

The issue is that when building the supergraph, we encounter the
cgraph edge to "__ct_comp ", the DECL_COMPLETE_CONSTRUCTOR_P, and
this node's DECL_STRUCT_FUNCTION has a NULL CFG, which the analyzer
reads through, leading to the ICE.

This patch reworks function and fndecl lookup at calls throughout the
analyzer so that it looks for the ultimate_alias_target of the callee.
In the case above, this means using the "__ct_base " for the ctor,
which has a CFG, fixing the ICE.

Getting this right allows for some simple C++ cases involving ctors to
work, so the patch also adds some test coverage for that.

gcc/analyzer/ChangeLog:
PR analyzer/93288
* analysis-plan.cc (analysis_plan::use_summary_p): Look through
the ultimate_alias_target when getting the called function.
* engine.cc (exploded_node::on_stmt): Rename second "ctxt" to
"sm_ctxt".  Use the region_model's get_fndecl_for_call rather than
gimple_call_fndecl.
* region-model.cc (region_model::get_fndecl_for_call): Use
ultimate_alias_target on fndecl.
* supergraph.cc (get_ultimate_function_for_cgraph_edge): New
function.
(supergraph_call_edge): Use it when rejecting edges without
functions.
(supergraph::supergraph): Use it to get the function for the
cgraph_edge when building interprocedural superedges.
(callgraph_superedge::get_callee_function):  Use it.
* supergraph.h (supergraph::get_num_snodes): Make param const.
(supergraph::function_to_num_snodes_t): Make first type param
const.

gcc/testsuite/ChangeLog:
PR analyzer/93288
* g++.dg/analyzer/malloc.C: Add test coverage for a double-free
called in a constructor.
* g++.dg/analyzer/pr93288.C: New test.

gcc/analyzer/ChangeLog
gcc/analyzer/analysis-plan.cc
gcc/analyzer/engine.cc
gcc/analyzer/region-model.cc
gcc/analyzer/supergraph.cc
gcc/analyzer/supergraph.h
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/analyzer/malloc.C
gcc/testsuite/g++.dg/analyzer/pr93288.C [new file with mode: 0644]

index 0313e437f34c161e188506d15cf5e1082e0e3c47..eda1052e4ff3d3c9eb324d2be1d5862cce99eb43 100644 (file)
@@ -1,3 +1,24 @@
+2020-02-11  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/93288
+       * analysis-plan.cc (analysis_plan::use_summary_p): Look through
+       the ultimate_alias_target when getting the called function.
+       * engine.cc (exploded_node::on_stmt): Rename second "ctxt" to
+       "sm_ctxt".  Use the region_model's get_fndecl_for_call rather than
+       gimple_call_fndecl.
+       * region-model.cc (region_model::get_fndecl_for_call): Use
+       ultimate_alias_target on fndecl.
+       * supergraph.cc (get_ultimate_function_for_cgraph_edge): New
+       function.
+       (supergraph_call_edge): Use it when rejecting edges without
+       functions.
+       (supergraph::supergraph): Use it to get the function for the
+       cgraph_edge when building interprocedural superedges.
+       (callgraph_superedge::get_callee_function):  Use it.
+       * supergraph.h (supergraph::get_num_snodes): Make param const.
+       (supergraph::function_to_num_snodes_t): Make first type param
+       const.
+
 2020-02-11  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/93374
index 8ad2fa2ebb4b8e72496ca4571903e1adf1019812..3c8b10b331434ae5c13b78310129add49af409af 100644 (file)
@@ -120,7 +120,11 @@ analysis_plan::use_summary_p (const cgraph_edge *edge) const
 
   /* Require the callee to be sufficiently complex to be worth
      summarizing.  */
-  if ((int)m_sg.get_num_snodes (callee->get_fun ())
+  const function *fun
+    = const_cast <cgraph_node *> (callee)->ultimate_alias_target ()->get_fun ();
+  /* TODO(stage1): can ultimate_alias_target be made const?  */
+
+  if ((int)m_sg.get_num_snodes (fun)
       < param_analyzer_min_snodes_for_call_summary)
     return false;
 
index 4d329e2b6af59be05d04d69152a5aaf24a60bd51..7860da0572a1b320ca3bf5e648057757b33494b4 100644 (file)
@@ -1044,19 +1044,19 @@ exploded_node::on_stmt (exploded_graph &eg,
       const sm_state_map *old_smap
        = old_state.m_checker_states[sm_idx];
       sm_state_map *new_smap = state->m_checker_states[sm_idx];
-      impl_sm_context ctxt (eg, sm_idx, sm, this, &old_state, state,
-                           change,
-                           old_smap, new_smap);
+      impl_sm_context sm_ctxt (eg, sm_idx, sm, this, &old_state, state,
+                              change,
+                              old_smap, new_smap);
       /* Allow the state_machine to handle the stmt.  */
-      if (sm.on_stmt (&ctxt, snode, stmt))
+      if (sm.on_stmt (&sm_ctxt, snode, stmt))
        unknown_side_effects = false;
       else
        {
          /* For those stmts that were not handled by the state machine.  */
          if (const gcall *call = dyn_cast <const gcall *> (stmt))
            {
-             tree callee_fndecl = gimple_call_fndecl (call);
-             // TODO: maybe we can be smarter about handling function pointers?
+             tree callee_fndecl
+               = state->m_region_model->get_fndecl_for_call (call, &ctxt);
 
              if (!fndecl_has_gimple_body_p (callee_fndecl))
                new_smap->purge_for_unknown_fncall (eg, sm, call, callee_fndecl,
index b9d52f64270c2cfcaffa6f7335827869299fd283..ae810f5eb4b64d59b668e7194435520ea4295441 100644 (file)
@@ -6676,7 +6676,10 @@ region_model::get_fndecl_for_call (const gcall *call,
       if (code)
        {
          tree fn_decl = code->get_tree_for_child_region (fn_rid);
-         return fn_decl;
+         const cgraph_node *ultimate_node
+           = cgraph_node::get (fn_decl)->ultimate_alias_target ();
+         if (ultimate_node)
+           return ultimate_node->decl;
        }
     }
 
index b20daa081d2430a9e3ba6de439398581164b9fcc..fb4dbdfd8b9994d19ae830bd076d3d4394fcfc33 100644 (file)
@@ -56,6 +56,18 @@ along with GCC; see the file COPYING3.  If not see
 
 namespace ana {
 
+/* Get the function of the ultimate alias target being called at EDGE,
+   if any.  */
+
+static function *
+get_ultimate_function_for_cgraph_edge (cgraph_edge *edge)
+{
+  cgraph_node *ultimate_node = edge->callee->ultimate_alias_target ();
+  if (!ultimate_node)
+    return NULL;
+  return ultimate_node->get_fun ();
+}
+
 /* Get the cgraph_edge, but only if there's an underlying function body.  */
 
 cgraph_edge *
@@ -69,7 +81,7 @@ supergraph_call_edge (function *fun, gimple *stmt)
     return NULL;
   if (!edge->callee)
     return NULL; /* e.g. for a function pointer.  */
-  if (!edge->callee->get_fun ())
+  if (!get_ultimate_function_for_cgraph_edge (edge))
     return NULL;
   return edge;
 }
@@ -178,8 +190,10 @@ supergraph::supergraph (logger *logger)
        {
          cgraph_edge *edge = (*iter).first;
          supernode *caller_prev_supernode = (*iter).second;
-         basic_block callee_cfg_block
-           = ENTRY_BLOCK_PTR_FOR_FN (edge->callee->get_fun ());
+         function* callee_fn = get_ultimate_function_for_cgraph_edge (edge);
+         if (!callee_fn || !callee_fn->cfg)
+           continue;
+         basic_block callee_cfg_block = ENTRY_BLOCK_PTR_FOR_FN (callee_fn);
          supernode *callee_supernode
            = *m_bb_to_initial_node.get (callee_cfg_block);
          call_superedge *sedge
@@ -199,8 +213,10 @@ supergraph::supergraph (logger *logger)
        {
          cgraph_edge *edge = (*iter).first;
          supernode *caller_next_supernode = (*iter).second;
-         basic_block callee_cfg_block
-           = EXIT_BLOCK_PTR_FOR_FN (edge->callee->get_fun ());
+         function* callee_fn = get_ultimate_function_for_cgraph_edge (edge);
+         if (!callee_fn || !callee_fn->cfg)
+           continue;
+         basic_block callee_cfg_block = EXIT_BLOCK_PTR_FOR_FN (callee_fn);
          supernode *callee_supernode
            = *m_bb_to_initial_node.get (callee_cfg_block);
          return_superedge *sedge
@@ -840,7 +856,7 @@ callgraph_superedge::dump_label_to_pp (pretty_printer *pp,
 function *
 callgraph_superedge::get_callee_function () const
 {
-  return m_cedge->callee->get_fun ();
+  return get_ultimate_function_for_cgraph_edge (m_cedge);
 }
 
 /* Get the calling function at this interprocedural call/return edge.  */
index 0eac0b8bfc9b3614ecfb6bb28391846e1dd7f672..2c94f0544ce24748d53520ec0c833033f50ba170 100644 (file)
@@ -156,7 +156,7 @@ public:
     return m_nodes[idx];
   }
 
-  unsigned get_num_snodes (function *fun) const
+  unsigned get_num_snodes (const function *fun) const
   {
     function_to_num_snodes_t &map
       = const_cast <function_to_num_snodes_t &>(m_function_to_num_snodes);
@@ -201,7 +201,7 @@ private:
   typedef ordered_hash_map<gimple *, supernode *> stmt_to_node_t;
   stmt_to_node_t m_stmt_to_node_t;
 
-  typedef hash_map<function *, unsigned> function_to_num_snodes_t;
+  typedef hash_map<const function *, unsigned> function_to_num_snodes_t;
   function_to_num_snodes_t m_function_to_num_snodes;
 };
 
index c077000d3047ba8c7eeca72046d753519516adcd..e7e630bdb7417d87487ab437a128ecd635077c11 100644 (file)
@@ -1,3 +1,10 @@
+2020-02-11  David Malcolm  <dmalcolm@redhat.com>
+
+       PR analyzer/93288
+       * g++.dg/analyzer/malloc.C: Add test coverage for a double-free
+       called in a constructor.
+       * g++.dg/analyzer/pr93288.C: New test.
+
 2020-02-11  David Malcolm  <dmalcolm@redhat.com>
 
        PR analyzer/93212
index 0637295e1f2009f4a122e76e03432fe1e1525c8e..76baab982229c5697c6d98b7aaa8640a268327ee 100644 (file)
@@ -7,3 +7,19 @@ void test_1 (void *ptr)
   free (ptr);
   free (ptr); /* { dg-warning "double-'free' of 'ptr'" } */
 }
+
+/* Test of double-free in ctor.  */
+
+struct s2
+{
+  s2 (void *v)
+  {
+    free (v); // { dg-warning "double-'free' of 'v'" }
+  }
+};
+
+void test_2 (void *ptr)
+{
+  free (ptr); // { dg-message "first 'free' here" }
+  s2 a (ptr); // { dg-message "passing freed pointer 'ptr' in call to 's2::s2' from 'test_2'" }
+}
diff --git a/gcc/testsuite/g++.dg/analyzer/pr93288.C b/gcc/testsuite/g++.dg/analyzer/pr93288.C
new file mode 100644 (file)
index 0000000..1798fed
--- /dev/null
@@ -0,0 +1,8 @@
+// { dg-do compile }
+
+struct a {
+  a();
+};
+class foo {
+  a b;
+} c;