aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/gcc/cgraph.h
diff options
context:
space:
mode:
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);