aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2011-06-10 20:53:35 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2011-06-10 18:53:35 +0000
commit418173945d315abc08d2980ed53521fb1892d94b (patch)
treea121323546d2f13093042d7f2888dd97b72586fc /gcc/ipa.c
parentfb37c1de6967ec40db33ac86b8196fc187c38afb (diff)
downloadgcc-418173945d315abc08d2980ed53521fb1892d94b.zip
gcc-418173945d315abc08d2980ed53521fb1892d94b.tar.gz
gcc-418173945d315abc08d2980ed53521fb1892d94b.tar.bz2
ipa.c (cgraph_non_local_node_p_1): Break out from ...;
* ipa.c (cgraph_non_local_node_p_1): Break out from ...; (cgraph_local_node_p): ... here; handle aliases. (has_addr_references_p): Break out from ...; (cgraph_remove_unreachable_nodes) ... here. From-SVN: r174925
Diffstat (limited to 'gcc/ipa.c')
-rw-r--r--gcc/ipa.c49
1 files changed, 33 insertions, 16 deletions
diff --git a/gcc/ipa.c b/gcc/ipa.c
index f40c0aa..7822cfd 100644
--- a/gcc/ipa.c
+++ b/gcc/ipa.c
@@ -113,17 +113,43 @@ process_references (struct ipa_ref_list *list,
}
}
+
+/* Return true when NODE can not be local. Worker for cgraph_local_node_p. */
+
+static bool
+cgraph_non_local_node_p_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
+{
+ return !(cgraph_only_called_directly_or_aliased_p (node)
+ && node->analyzed
+ && !DECL_EXTERNAL (node->decl)
+ && !node->local.externally_visible
+ && !node->reachable_from_other_partition
+ && !node->in_other_partition);
+}
+
/* Return true when function can be marked local. */
static bool
cgraph_local_node_p (struct cgraph_node *node)
{
- return (cgraph_only_called_directly_p (node)
- && node->analyzed
- && !DECL_EXTERNAL (node->decl)
- && !node->local.externally_visible
- && !node->reachable_from_other_partition
- && !node->in_other_partition);
+ return !cgraph_for_node_and_aliases (cgraph_function_or_thunk_node (node, NULL),
+ cgraph_non_local_node_p_1, NULL, true);
+
+}
+
+/* Return true when NODE has ADDR reference. */
+
+static bool
+has_addr_references_p (struct cgraph_node *node,
+ void *data ATTRIBUTE_UNUSED)
+{
+ int i;
+ struct ipa_ref *ref;
+
+ for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref); i++)
+ if (ref->use == IPA_REF_ADDR)
+ return true;
+ return false;
}
/* Perform reachability analysis and reclaim all unreachable nodes.
@@ -417,16 +443,7 @@ cgraph_remove_unreachable_nodes (bool before_inlining_p, FILE *file)
if (node->address_taken
&& !node->reachable_from_other_partition)
{
- int i;
- struct ipa_ref *ref;
- bool found = false;
- for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref)
- && !found; i++)
- {
- gcc_assert (ref->use == IPA_REF_ADDR);
- found = true;
- }
- if (!found)
+ if (!cgraph_for_node_and_aliases (node, has_addr_references_p, NULL, true))
{
if (file)
fprintf (file, " %s", cgraph_node_name (node));