Fix ipa-modref selftest and destructor
authorJan Hubicka <jh@suse.cz>
Tue, 22 Sep 2020 20:16:00 +0000 (22:16 +0200)
committerJan Hubicka <jh@suse.cz>
Tue, 22 Sep 2020 20:16:00 +0000 (22:16 +0200)
* ipa-modref-tree.c: Add namespace selftest.
(modref_tree_c_tests): Rename to ...
(ipa_modref_tree_c_tests): ... this.
* ipa-modref.c (pass_modref): Remove destructor.
(ipa_modref_c_finalize): New function.
* ipa-modref.h (ipa_modref_c_finalize): Declare.
* selftest-run-tests.c (selftest::run_tests): Call
ipa_modref_c_finalize.
* selftest.h (ipa_modref_tree_c_tests): Declare.
* toplev.c: Include ipa-modref-tree.h and ipa-modref.h
(toplev::finalize): Call ipa_modref_c_finalize.

gcc/ipa-modref-tree.c
gcc/ipa-modref.c
gcc/ipa-modref.h
gcc/selftest-run-tests.c
gcc/selftest.h
gcc/toplev.c

index e37dee67fa3b0a19f96a2d295e03bb0b6cc0920c..a84508a2268e4af2b1849ad507772ad8ad1446cd 100644 (file)
@@ -28,6 +28,7 @@ along with GCC; see the file COPYING3.  If not see
 
 #if CHECKING_P
 
+namespace selftest {
 
 static void
 test_insert_search_collapse ()
@@ -156,12 +157,14 @@ test_merge ()
 
 
 void
-modref_tree_c_tests ()
+ipa_modref_tree_c_tests ()
 {
   test_insert_search_collapse ();
   test_merge ();
 }
 
+} // namespace selftest
+
 #endif
 
 void
index 0411f660df747503a3946fea4686b6a396d02fdf..d195354e927a277c2874516485dc46e9ebb77d4c 100644 (file)
@@ -767,12 +767,6 @@ class pass_modref : public gimple_opt_pass
     pass_modref (gcc::context *ctxt)
        : gimple_opt_pass (pass_data_modref, ctxt) {}
 
-    ~pass_modref ()
-      {
-       ggc_delete (summaries);
-       summaries = NULL;
-      }
-
     /* opt_pass methods: */
     opt_pass *clone ()
     {
@@ -1373,4 +1367,14 @@ unsigned int pass_ipa_modref::execute (function *)
   return 0;
 }
 
+/* Summaries must stay alive until end of compilation.  */
+
+void
+ipa_modref_c_finalize ()
+{
+  if (summaries)
+    ggc_delete (summaries);
+  summaries = NULL;
+}
+
 #include "gt-ipa-modref.h"
index 6f979200cc2c2195872f0a2d6ec41b50e27e2e80..6cccdfe7af3d092d185e80a4d42fba02b336027a 100644 (file)
@@ -44,5 +44,6 @@ struct GTY(()) modref_summary
 };
 
 modref_summary *get_modref_function_summary (cgraph_node *func);
+void ipa_modref_c_finalize ();
 
 #endif
index f0a81d43fd62a88d503c7f271db1b33cb0b77d67..7a89b2df5bd004da3a54d012b76c546fada3986e 100644 (file)
@@ -90,6 +90,7 @@ selftest::run_tests ()
   read_rtl_function_c_tests ();
   digraph_cc_tests ();
   tristate_cc_tests ();
+  ipa_modref_tree_c_tests ();
 
   /* Higher-level tests, or for components that other selftests don't
      rely on.  */
index 5cffa13aeddfedfd83cc64e3662f35dc7d38b3ee..6c6c7f286750ddb2f5692565e43179c52b94f8f5 100644 (file)
@@ -268,6 +268,7 @@ extern void vec_perm_indices_c_tests ();
 extern void wide_int_cc_tests ();
 extern void opt_proposer_c_tests ();
 extern void dbgcnt_c_tests ();
+extern void ipa_modref_tree_c_tests ();
 
 extern int num_passes;
 
index cdd4b5b4f92177ff45e32c5037338df2a5d9e34e..a4cb8bb262ed485d2deae234d9416c59596ad279 100644 (file)
@@ -84,6 +84,8 @@ along with GCC; see the file COPYING3.  If not see
 #include "dump-context.h"
 #include "print-tree.h"
 #include "optinfo-emit-json.h"
+#include "ipa-modref-tree.h"
+#include "ipa-modref.h"
 
 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
 #include "dbxout.h"
@@ -2497,6 +2499,7 @@ toplev::finalize (void)
   /* Needs to be called before cgraph_c_finalize since it uses symtab.  */
   ipa_reference_c_finalize ();
   ipa_fnsummary_c_finalize ();
+  ipa_modref_c_finalize ();
 
   cgraph_c_finalize ();
   cgraphunit_c_finalize ();