summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-02 00:14:44 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-02 00:14:44 +0000
commit79bb87b463d5706bb4e739c2db89923bb05c8d0e (patch)
tree4d97ef1059d4e3e31ef7dfafa8353a8924c2bf2f /gcc
parent1472d5965177f2c7eb7fedb80b5d47d4500b5975 (diff)
downloadgcc-79bb87b463d5706bb4e739c2db89923bb05c8d0e.tar.gz
* cgraphunit.c (cgraph_finalize_function): Set finalized.
(cgraph_finalize_function): Do not examine inlinablility. (cgraph_finalize_compilation_unit): Do it here. * cgraph.h (cgraph_local_info): Add finalized field. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68803 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/cgraph.h2
-rw-r--r--gcc/cgraphunit.c19
3 files changed, 19 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9142d5c4615..716fb7a4dda 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+Wed Jul 2 02:12:51 CEST 2003 Jan Hubicka <jh@suse.cz>
+
+ * cgraphunit.c (cgraph_finalize_function): Set finalized.
+ (cgraph_finalize_function): Do not examine inlinablility.
+ (cgraph_finalize_compilation_unit): Do it here.
+ * cgraph.h (cgraph_local_info): Add finalized field.
+
2003-07-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* ggc-common.c (gt_pch_save): Cast MAP_FAILED to void *.
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index 91f99bf2e71..bbf1c288618 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -35,6 +35,8 @@ struct cgraph_local_info GTY(())
/* Set when function can be inlined once (false only for functions calling
alloca, using varargs and so on). */
bool can_inline_once;
+ /* Set once it has been finalized so we consider it to be output. */
+ bool finalized;
};
/* Information about the function that needs to be computed globally
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index e7023a4014b..75eae991d95 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -54,6 +54,7 @@ cgraph_finalize_function (decl, body)
struct cgraph_node *node = cgraph_node (decl);
node->decl = decl;
+ node->local.finalized = true;
if (/* Externally visible functions must be output. The exception are
COMDAT functions that must be output only when they are needed.
@@ -74,15 +75,6 @@ cgraph_finalize_function (decl, body)
cgraph_mark_needed_node (node, 1);
}
- if (!node->needed && !DECL_COMDAT (node->decl))
- node->local.can_inline_once = tree_inlinable_function_p (decl, 1);
- else
- node->local.can_inline_once = 0;
- if (flag_inline_trees)
- node->local.inline_many = tree_inlinable_function_p (decl, 0);
- else
- node->local.inline_many = 0;
-
(*debug_hooks->deferred_inline_function) (decl);
}
@@ -173,6 +165,15 @@ cgraph_finalize_compilation_unit ()
if (lang_hooks.callgraph.lower_function)
(*lang_hooks.callgraph.lower_function) (decl);
+ if (!node->needed && !DECL_COMDAT (node->decl))
+ node->local.can_inline_once = tree_inlinable_function_p (decl, 1);
+ else
+ node->local.can_inline_once = 0;
+ if (flag_inline_trees)
+ node->local.inline_many = tree_inlinable_function_p (decl, 0);
+ else
+ node->local.inline_many = 0;
+
/* At the moment frontend automatically emits all nested functions. */
if (node->nested)
{