aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/gcc/cgraph.h
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2010-01-18 13:38:25 -0800
committerJing Yu <jingyu@google.com>2010-01-18 13:38:25 -0800
commit30f553f6a7597e8084704b84876dea2af493d6fe (patch)
tree569579768afd83d884f5f1118272fea213afdb36 /gcc-4.4.0/gcc/cgraph.h
parent727407e24af9df776e77f6a5762a62869198bc09 (diff)
downloadtoolchain_gcc-30f553f6a7597e8084704b84876dea2af493d6fe.tar.gz
toolchain_gcc-30f553f6a7597e8084704b84876dea2af493d6fe.tar.bz2
toolchain_gcc-30f553f6a7597e8084704b84876dea2af493d6fe.zip
Bring gcc-4.4.0 to up-to-date.
Diffstat (limited to 'gcc-4.4.0/gcc/cgraph.h')
-rw-r--r--gcc-4.4.0/gcc/cgraph.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc-4.4.0/gcc/cgraph.h b/gcc-4.4.0/gcc/cgraph.h
index f3445284c..3e251f69c 100644
--- a/gcc-4.4.0/gcc/cgraph.h
+++ b/gcc-4.4.0/gcc/cgraph.h
@@ -508,10 +508,26 @@ varpool_next_static_initializer (struct varpool_node *node)
(node) = varpool_next_static_initializer (node))
/* In ipa-inline.c */
+
+/* Contains list of user-specified files containing inlining decisions
+ for particular inlining passes. */
+
+struct inline_plan_file
+{
+ char *pass_name;
+ char *filename;
+ struct inline_plan_file *next;
+};
+extern struct inline_plan_file *inline_plan_files;
+
void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool);
bool cgraph_default_inline_p (struct cgraph_node *, const char **);
unsigned int compute_inline_parameters (struct cgraph_node *);
+void compute_hot_components (void);
+void free_hot_components (void);
+void dump_hot_components (FILE *);
+void verify_hot_components (void);
/* Create a new static variable of type TYPE. */
tree add_new_static_var (tree type);