re PR tree-optimization/48195 (ICE: vector VEC(ipa_node_params_t,base) index domain...
authorMartin Jambor <mjambor@suse.cz>
Mon, 11 Apr 2011 14:25:55 +0000 (16:25 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Mon, 11 Apr 2011 14:25:55 +0000 (16:25 +0200)
2011-04-11  Martin Jambor  <mjambor@suse.cz>

PR tree-optimization/48195
* ipa-cp.c (ipcp_driver): Call ipa_check_create_node_params and
ipa_check_create_edge_args.
(ipcp_generate_summary): Do not call ipa_check_create_node_params and
ipa_check_create_edge_args.
* ipa-inline.c (inline_generate_summary): Do not call
ipa_check_create_node_params and ipa_check_create_edge_args.
* ipa-prop.c (ipa_analyze_node): Call ipa_check_create_node_params and
ipa_check_create_edge_args.

* testsuite/gcc.dg/ipa/pr48195.c: New test.

From-SVN: r172256

gcc/ChangeLog
gcc/ipa-cp.c
gcc/ipa-inline.c
gcc/ipa-prop.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/ipa/pr48195.c [new file with mode: 0644]

index 2ec51f2346c9be52e90743ae6629e30c3ed13efc..2ecd35cce59c9b0a79f714c19afbc6994b7a8d2e 100644 (file)
@@ -1,3 +1,15 @@
+2011-04-11  Martin Jambor  <mjambor@suse.cz>
+
+       PR tree-optimization/48195
+       * ipa-cp.c (ipcp_driver): Call ipa_check_create_node_params and
+       ipa_check_create_edge_args.
+       (ipcp_generate_summary): Do not call ipa_check_create_node_params and
+       ipa_check_create_edge_args.
+       * ipa-inline.c (inline_generate_summary): Do not call
+       ipa_check_create_node_params and ipa_check_create_edge_args.
+       * ipa-prop.c (ipa_analyze_node): Call ipa_check_create_node_params and
+       ipa_check_create_edge_args.
+
 2011-04-09  Anatoly Sokolov  <aesok@post.ru>
 
        * expr.c (expand_expr_real_1): Use add_to_hard_reg_set function
index 2b1e50dcb615d3314e8e121a6ccaa6670328e1bb..a2928dbee6c55ea72ba70911b19609b44e57f138 100644 (file)
@@ -1539,6 +1539,8 @@ ipcp_driver (void)
         ipa_print_all_params (dump_file);
       ipa_print_all_jump_functions (dump_file);
     }
+  ipa_check_create_node_params ();
+  ipa_check_create_edge_args ();
   /* 2. Do the interprocedural propagation.  */
   ipcp_iterate_stage ();
   /* 3. Insert the constants found to the functions.  */
@@ -1566,8 +1568,6 @@ ipcp_generate_summary (void)
 
   if (dump_file)
     fprintf (dump_file, "\nIPA constant propagation start:\n");
-  ipa_check_create_node_params ();
-  ipa_check_create_edge_args ();
   ipa_register_cgraph_hooks ();
 
   for (node = cgraph_nodes; node; node = node->next)
index c41c20bc9f1ead7e9dcc32f3346321ad109ea85c..38d55bc843b78e2c9a12729a9ddc876918d16d18 100644 (file)
@@ -2066,11 +2066,7 @@ inline_generate_summary (void)
       cgraph_add_function_insertion_hook (&add_new_function, NULL);
 
   if (flag_indirect_inlining)
-    {
-      ipa_register_cgraph_hooks ();
-      ipa_check_create_node_params ();
-      ipa_check_create_edge_args ();
-    }
+    ipa_register_cgraph_hooks ();
 
   for (node = cgraph_nodes; node; node = node->next)
     if (node->analyzed)
index edeffc2533c2955de21cf5cd8ce2f498c55ce42a..0587844e354a8f4756f08231cdf721c6da0f38b3 100644 (file)
@@ -1522,10 +1522,13 @@ ipa_analyze_params_uses (struct cgraph_node *node,
 void
 ipa_analyze_node (struct cgraph_node *node)
 {
-  struct ipa_node_params *info = IPA_NODE_REF (node);
+  struct ipa_node_params *info;
   struct param_analysis_info *parms_info;
   int i, param_count;
 
+  ipa_check_create_node_params ();
+  ipa_check_create_edge_args ();
+  info = IPA_NODE_REF (node);
   push_cfun (DECL_STRUCT_FUNCTION (node->decl));
   current_function_decl = node->decl;
   ipa_initialize_node_params (node);
index 3b4d574a62ee862d28d2e476a741dbc5bcf3e03e..cb7e7695f025969659e936b795aa5b684d522336 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-11  Martin Jambor  <mjambor@suse.cz>
+
+       PR tree-optimization/48195
+       * gcc.dg/ipa/pr48195.c: New test.
+
 2011-04-10  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/return3.adb: Remove unused switch.
diff --git a/gcc/testsuite/gcc.dg/ipa/pr48195.c b/gcc/testsuite/gcc.dg/ipa/pr48195.c
new file mode 100644 (file)
index 0000000..1cf7a7f
--- /dev/null
@@ -0,0 +1,24 @@
+/* { dg-do link } */
+/* { dg-options "-O2 -flto --param partial-inlining-entry-probability=101" } */
+
+extern void abort(void);
+
+int i;
+
+void __attribute__ ((constructor))
+c2 ()
+{
+  if (i)
+    abort ();
+}
+
+void __attribute__ ((destructor))
+d1 ()
+{
+  if (i)
+    abort ();
+}
+
+void main ()
+{
+}