diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-13 22:01:59 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-13 22:01:59 +0000 |
commit | 93f713da385a66bc9e611805152d69d7250e47cd (patch) | |
tree | 2a7c206f5ca8bf502c60fb2e517ccdc7c268a4bb /gcc/ipa-prop.h | |
parent | 0762de0b1cb533e82765c7ec1cdc6d3e21f4b540 (diff) | |
download | gcc-93f713da385a66bc9e611805152d69d7250e47cd.tar.gz |
2011-05-13 Martin Jambor <mjambor@suse.cz>
* ipa-prop.c (ipa_cst_from_jfunc): New function.
* ipa-prop.h (ipa_cst_from_jfunc): Declare.
* ipa-inline-analysis.c (evaluate_conditions_for_edge): Use it.
(evaluate_conditions_for_ipcp_clone): Removed.
(estimate_ipcp_clone_size_and_time): Accept vector of known constants.
* ipa-cp.c (ipcp_estimate_growth): Build vector of known constants.
* ipa-inline.h (estimate_ipcp_clone_size_and_time): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@173739 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-prop.h')
-rw-r--r-- | gcc/ipa-prop.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h index d5f1bc6de28..89a17f4b9d0 100644 --- a/gcc/ipa-prop.h +++ b/gcc/ipa-prop.h @@ -521,8 +521,12 @@ void ipa_prop_write_jump_functions (cgraph_node_set set); void ipa_prop_read_jump_functions (void); void ipa_update_after_lto_read (void); int ipa_get_param_decl_index (struct ipa_node_params *, tree); -void ipa_lattice_from_jfunc (struct ipa_node_params *info, struct ipcp_lattice *lat, +void ipa_lattice_from_jfunc (struct ipa_node_params *info, + struct ipcp_lattice *lat, struct ipa_jump_func *jfunc); +tree ipa_cst_from_jfunc (struct ipa_node_params *info, + struct ipa_jump_func *jfunc); + /* From tree-sra.c: */ tree build_ref_for_offset (location_t, tree, HOST_WIDE_INT, tree, |