ipa: Fix CFG fix-up in IPA-CP transform phase (PR 103441)

I forgot that IPA passes before ipa-inline must not return
TODO_cleanup_cfg from their transformation function because ordinary
CFG cleanup does not remove call graph edges associated with removed
call statements but must use
delete_unreachable_blocks_update_callgraph instead.  This patch fixes
that error.

gcc/ChangeLog:

2021-11-26  Martin Jambor  <mjambor@suse.cz>

	PR ipa/103441
	* ipa-prop.c (ipcp_transform_function): Call
	delete_unreachable_blocks_update_callgraph instead of returning
	TODO_cleanup_cfg.
This commit is contained in:
Martin Jambor 2021-11-27 01:00:56 +01:00
parent 52b769437a
commit 9e2e47391b
No known key found for this signature in database
GPG key ID: BF63C1BC3FA43540

View file

@ -6001,7 +6001,6 @@ ipcp_transform_function (struct cgraph_node *node)
struct ipa_func_body_info fbi;
struct ipa_agg_replacement_value *aggval;
int param_count;
bool something_changed = false;
gcc_checking_assert (cfun);
gcc_checking_assert (current_function_decl);
@ -6022,14 +6021,16 @@ ipcp_transform_function (struct cgraph_node *node)
ipa_populate_param_decls (node, *descriptors);
std::pair<bool, bool> rr
= adjust_agg_replacement_values (node, aggval, *descriptors);
int retval = rr.second ? TODO_cleanup_cfg : 0;
bool cfg_changed = rr.second;
if (!rr.first)
{
vec_free (descriptors);
if (dump_file)
fprintf (dump_file, " All affected aggregate parameters were either "
"removed or converted into scalars, phase done.\n");
return retval;
if (cfg_changed)
delete_unreachable_blocks_update_callgraph (node, false);
return 0;
}
if (dump_file)
ipa_dump_agg_replacement_values (dump_file, aggval);
@ -6041,11 +6042,12 @@ ipcp_transform_function (struct cgraph_node *node)
fbi.param_count = param_count;
fbi.aa_walk_budget = opt_for_fn (node->decl, param_ipa_max_aa_steps);
bool modified_mem_access = false;
calculate_dominance_info (CDI_DOMINATORS);
ipcp_modif_dom_walker walker (&fbi, descriptors, aggval, &something_changed);
ipcp_modif_dom_walker walker (&fbi, descriptors, aggval, &modified_mem_access);
walker.walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
free_dominance_info (CDI_DOMINATORS);
bool cfg_changed = walker.cleanup_eh ();
cfg_changed |= walker.cleanup_eh ();
int i;
struct ipa_bb_info *bi;
@ -6059,14 +6061,10 @@ ipcp_transform_function (struct cgraph_node *node)
s->m_vr = NULL;
vec_free (descriptors);
if (!something_changed)
return retval;
if (cfg_changed)
delete_unreachable_blocks_update_callgraph (node, false);
return retval | TODO_update_ssa_only_virtuals;
return modified_mem_access ? TODO_update_ssa_only_virtuals : 0;
}