+2019-04-18 Jan Hubicka <hubicka@ucw.cz>
+
+ PR ipa/85051
+ * ipa-inline.c (flatten_function): New parameter UPDATE.
+ (ipa_inline, early_inliner): Use it.
+
2019-04-18 Richard Sandiford <richard.sandiford@arm.com>
* fold-const.c (int_const_binop): Return early on failure.
at IPA inlining time. */
static void
-flatten_function (struct cgraph_node *node, bool early)
+flatten_function (struct cgraph_node *node, bool early, bool update)
{
struct cgraph_edge *e;
it in order to fully flatten the leaves. */
if (!e->inline_failed)
{
- flatten_function (callee, early);
+ flatten_function (callee, early, false);
continue;
}
inline_call (e, true, NULL, NULL, false);
if (e->callee != orig_callee)
orig_callee->aux = (void *) node;
- flatten_function (e->callee, early);
+ flatten_function (e->callee, early, false);
if (e->callee != orig_callee)
orig_callee->aux = NULL;
}
node->aux = NULL;
- if (!node->global.inlined_to)
- ipa_update_overall_fn_summary (node);
+ if (update)
+ ipa_update_overall_fn_summary (node->global.inlined_to
+ ? node->global.inlined_to : node);
}
/* Inline NODE to all callers. Worker for cgraph_for_node_and_aliases.
function. */
if (dump_file)
fprintf (dump_file, "Flattening %s\n", node->name ());
- flatten_function (node, false);
+ flatten_function (node, false, true);
}
if (j < nnodes - 2)
if (dump_enabled_p ())
dump_printf (MSG_OPTIMIZED_LOCATIONS,
"Flattening %C\n", node);
- flatten_function (node, true);
+ flatten_function (node, true, true);
inlined = true;
}
else