ipa-prop uses symbol_summary class.
* lto-partition.c: Include of symbol-summary.h is added. * lto-symtab.c: Likewise. * lto.c: Likewise. * auto-profile.c: Include of symbol-summary.h is added. * cgraph.c: Likewise. * cgraphbuild.c: Likewise. * cgraphclones.c: Likewise. * cgraphunit.c: Likewise. * ipa-cp.c: Likewise. * ipa-devirt.c: Likewise. * ipa-icf.c: Likewise. * ipa-inline-analysis.c (evaluate_properties_for_edge): New ipa_node_params_sum data structure is used. (inline_node_duplication_hook): Likewise. (estimate_function_body_sizes): Likewise. (remap_edge_change_prob): Likewise. (inline_merge_summary): Likewise. * ipa-inline-transform.c: Include of symbol-summary.h is added. * ipa-inline.c (early_inliner): New ipa_node_params_sum data structure is used. * ipa-polymorphic-call.c: Include of symbol-summary.h is added. * ipa-profile.c: Include of symbol-summary.h is added. * ipa-prop.c (ipa_propagate_indirect_call_infos): New ipa_node_params_sum data structure is used. (ipa_node_params::~ipa_node_params): New function. (ipa_free_all_node_params): Destruction is simplified. (ipa_node_removal_hook): Removed. (ipa_add_new_function): Renamed from ipa_node_duplication_hook. (ipa_node_params_t::duplicate): New function. (ipa_register_cgraph_hooks): Few hooks are removed. (ipa_unregister_cgraph_hooks): Likewise. (ipa_prop_write_jump_functions): New ipa_node_params_sum is used. * ipa-prop.h (struct ipa_node_params): Destructor introduced for the structure. (ipa_check_create_node_params): Vector for ipa_node_params is replaced with function_summary. * ipa-split.c: Include of symbol-summary.h is added. * ipa-utils.c: Include of symbol-summary.h is added. * ipa.c: Include of symbol-summary.h is added. * omp-low.c: Include of symbol-summary.h is added. * tree-inline.c: Include of symbol-summary.h is added. * tree-sra.c: Include of symbol-summary.h is added. * tree-ssa-pre.c: Include of symbol-summary.h is added. From-SVN: r219005
This commit is contained in:
parent
4008290f65
commit
dd912cb89c
27 changed files with 136 additions and 85 deletions
|
@ -1,3 +1,46 @@
|
|||
2014-12-22 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* auto-profile.c: Include of symbol-summary.h is added.
|
||||
* cgraph.c: Likewise.
|
||||
* cgraphbuild.c: Likewise.
|
||||
* cgraphclones.c: Likewise.
|
||||
* cgraphunit.c: Likewise.
|
||||
* ipa-cp.c: Likewise.
|
||||
* ipa-devirt.c: Likewise.
|
||||
* ipa-icf.c: Likewise.
|
||||
* ipa-inline-analysis.c (evaluate_properties_for_edge): New
|
||||
ipa_node_params_sum data structure is used.
|
||||
(inline_node_duplication_hook): Likewise.
|
||||
(estimate_function_body_sizes): Likewise.
|
||||
(remap_edge_change_prob): Likewise.
|
||||
(inline_merge_summary): Likewise.
|
||||
* ipa-inline-transform.c: Include of symbol-summary.h is added.
|
||||
* ipa-inline.c (early_inliner): New ipa_node_params_sum data structure
|
||||
is used.
|
||||
* ipa-polymorphic-call.c: Include of symbol-summary.h is added.
|
||||
* ipa-profile.c: Include of symbol-summary.h is added.
|
||||
* ipa-prop.c (ipa_propagate_indirect_call_infos): New ipa_node_params_sum
|
||||
data structure is used.
|
||||
(ipa_node_params::~ipa_node_params): New function.
|
||||
(ipa_free_all_node_params): Destruction is simplified.
|
||||
(ipa_node_removal_hook): Removed.
|
||||
(ipa_add_new_function): Renamed from ipa_node_duplication_hook.
|
||||
(ipa_node_params_t::duplicate): New function.
|
||||
(ipa_register_cgraph_hooks): Few hooks are removed.
|
||||
(ipa_unregister_cgraph_hooks): Likewise.
|
||||
(ipa_prop_write_jump_functions): New ipa_node_params_sum is used.
|
||||
* ipa-prop.h (struct ipa_node_params): Destructor introduced for
|
||||
the structure.
|
||||
(ipa_check_create_node_params): Vector for ipa_node_params is replaced
|
||||
with function_summary.
|
||||
* ipa-split.c: Include of symbol-summary.h is added.
|
||||
* ipa-utils.c: Include of symbol-summary.h is added.
|
||||
* ipa.c: Include of symbol-summary.h is added.
|
||||
* omp-low.c: Include of symbol-summary.h is added.
|
||||
* tree-inline.c: Include of symbol-summary.h is added.
|
||||
* tree-sra.c: Include of symbol-summary.h is added.
|
||||
* tree-ssa-pre.c: Include of symbol-summary.h is added.
|
||||
|
||||
2014-12-22 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* cgraph.h (symbol_table::allocate_cgraph_symbol): Summary UID
|
||||
|
|
|
@ -67,6 +67,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "coverage.h"
|
||||
#include "params.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "tree-inline.h"
|
||||
|
|
|
@ -72,6 +72,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-utils.h"
|
||||
#include "lto-streamer.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "cfgloop.h"
|
||||
|
|
|
@ -52,6 +52,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-utils.h"
|
||||
#include "except.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
|
||||
|
|
|
@ -103,6 +103,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "tree-iterator.h"
|
||||
#include "tree-dump.h"
|
||||
|
|
|
@ -203,6 +203,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "tree-iterator.h"
|
||||
#include "tree-pass.h"
|
||||
|
|
|
@ -123,6 +123,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "bitmap.h"
|
||||
#include "tree-pass.h"
|
||||
|
|
|
@ -139,6 +139,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "gimple-expr.h"
|
||||
#include "gimple.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "diagnostic.h"
|
||||
|
|
|
@ -87,6 +87,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "cfgloop.h"
|
||||
|
|
|
@ -110,6 +110,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "lto-streamer.h"
|
||||
#include "data-streamer.h"
|
||||
|
@ -920,7 +921,7 @@ evaluate_properties_for_edge (struct cgraph_edge *e, bool inline_p,
|
|||
if (known_contexts_ptr)
|
||||
known_contexts_ptr->create (0);
|
||||
|
||||
if (ipa_node_params_vector.exists ()
|
||||
if (ipa_node_params_sum
|
||||
&& !e->call_stmt_cannot_inline_p
|
||||
&& ((clause_ptr && info->conds) || known_vals_ptr || known_contexts_ptr))
|
||||
{
|
||||
|
@ -1142,7 +1143,7 @@ inline_node_duplication_hook (struct cgraph_node *src,
|
|||
|
||||
/* When there are any replacements in the function body, see if we can figure
|
||||
out that something was optimized out. */
|
||||
if (ipa_node_params_vector.exists () && dst->clone.tree_map)
|
||||
if (ipa_node_params_sum && dst->clone.tree_map)
|
||||
{
|
||||
vec<size_time_entry, va_gc> *entry = info->entry;
|
||||
/* Use SRC parm info since it may not be copied yet. */
|
||||
|
@ -2487,7 +2488,7 @@ estimate_function_body_sizes (struct cgraph_node *node, bool early)
|
|||
calculate_dominance_info (CDI_DOMINATORS);
|
||||
loop_optimizer_init (LOOPS_NORMAL | LOOPS_HAVE_RECORDED_EXITS);
|
||||
|
||||
if (ipa_node_params_vector.exists ())
|
||||
if (ipa_node_params_sum)
|
||||
{
|
||||
parms_info = IPA_NODE_REF (node);
|
||||
nonconstant_names.safe_grow_cleared
|
||||
|
@ -2637,7 +2638,7 @@ estimate_function_body_sizes (struct cgraph_node *node, bool early)
|
|||
nonconstant_names[SSA_NAME_VERSION (gimple_call_lhs (stmt))]
|
||||
= false_p;
|
||||
}
|
||||
if (ipa_node_params_vector.exists ())
|
||||
if (ipa_node_params_sum)
|
||||
{
|
||||
int count = gimple_call_num_args (stmt);
|
||||
int i;
|
||||
|
@ -3384,7 +3385,7 @@ static void
|
|||
remap_edge_change_prob (struct cgraph_edge *inlined_edge,
|
||||
struct cgraph_edge *edge)
|
||||
{
|
||||
if (ipa_node_params_vector.exists ())
|
||||
if (ipa_node_params_sum)
|
||||
{
|
||||
int i;
|
||||
struct ipa_edge_args *args = IPA_EDGE_REF (edge);
|
||||
|
@ -3540,7 +3541,7 @@ inline_merge_summary (struct cgraph_edge *edge)
|
|||
else
|
||||
toplev_predicate = true_predicate ();
|
||||
|
||||
if (ipa_node_params_vector.exists () && callee_info->conds)
|
||||
if (ipa_node_params_sum && callee_info->conds)
|
||||
{
|
||||
struct ipa_edge_args *args = IPA_EDGE_REF (edge);
|
||||
int count = ipa_get_cs_argument_count (args);
|
||||
|
|
|
@ -51,6 +51,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "tree-inline.h"
|
||||
|
|
|
@ -128,6 +128,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "except.h"
|
||||
#include "target.h"
|
||||
|
@ -2394,7 +2395,7 @@ early_inliner (function *fun)
|
|||
it. This may confuse ourself when early inliner decide to inline call to
|
||||
function clone, because function clones don't have parameter list in
|
||||
ipa-prop matching their signature. */
|
||||
if (ipa_node_params_vector.exists ())
|
||||
if (ipa_node_params_sum)
|
||||
return 0;
|
||||
|
||||
#ifdef ENABLE_CHECKING
|
||||
|
|
|
@ -52,6 +52,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "gimple-expr.h"
|
||||
#include "gimple.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "diagnostic.h"
|
||||
|
|
|
@ -82,6 +82,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "tree-inline.h"
|
||||
#include "lto-streamer.h"
|
||||
#include "data-streamer.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
|
||||
|
|
103
gcc/ipa-prop.c
103
gcc/ipa-prop.c
|
@ -54,6 +54,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "bitmap.h"
|
||||
#include "gimple-ssa.h"
|
||||
|
@ -131,8 +132,8 @@ struct func_body_info
|
|||
unsigned int aa_walked;
|
||||
};
|
||||
|
||||
/* Vector where the parameter infos are actually stored. */
|
||||
vec<ipa_node_params> ipa_node_params_vector;
|
||||
/* Function summary where the parameter infos are actually stored. */
|
||||
ipa_node_params_t *ipa_node_params_sum = NULL;
|
||||
/* Vector of IPA-CP transformation data for each clone. */
|
||||
vec<ipcp_transformation_summary, va_gc> *ipcp_transformations;
|
||||
/* Vector where the parameter infos are actually stored. */
|
||||
|
@ -140,9 +141,7 @@ vec<ipa_edge_args, va_gc> *ipa_edge_args_vector;
|
|||
|
||||
/* Holders of ipa cgraph hooks: */
|
||||
static struct cgraph_edge_hook_list *edge_removal_hook_holder;
|
||||
static struct cgraph_node_hook_list *node_removal_hook_holder;
|
||||
static struct cgraph_2edge_hook_list *edge_duplication_hook_holder;
|
||||
static struct cgraph_2node_hook_list *node_duplication_hook_holder;
|
||||
static struct cgraph_node_hook_list *function_insertion_hook_holder;
|
||||
|
||||
/* Description of a reference to an IPA constant. */
|
||||
|
@ -3300,7 +3299,7 @@ ipa_propagate_indirect_call_infos (struct cgraph_edge *cs,
|
|||
bool changed;
|
||||
/* Do nothing if the preparation phase has not been carried out yet
|
||||
(i.e. during early inlining). */
|
||||
if (!ipa_node_params_vector.exists ())
|
||||
if (!ipa_node_params_sum)
|
||||
return false;
|
||||
gcc_assert (ipa_edge_args_vector);
|
||||
|
||||
|
@ -3340,16 +3339,21 @@ ipa_free_all_edge_args (void)
|
|||
/* Frees all dynamically allocated structures that the param info points
|
||||
to. */
|
||||
|
||||
void
|
||||
ipa_free_node_params_substructures (struct ipa_node_params *info)
|
||||
ipa_node_params::~ipa_node_params ()
|
||||
{
|
||||
info->descriptors.release ();
|
||||
free (info->lattices);
|
||||
descriptors.release ();
|
||||
free (lattices);
|
||||
/* Lattice values and their sources are deallocated with their alocation
|
||||
pool. */
|
||||
info->known_csts.release ();
|
||||
info->known_contexts.release ();
|
||||
memset (info, 0, sizeof (*info));
|
||||
known_contexts.release ();
|
||||
|
||||
lattices = NULL;
|
||||
ipcp_orig_node = NULL;
|
||||
analysis_done = 0;
|
||||
node_enqueued = 0;
|
||||
do_clone_for_all_contexts = 0;
|
||||
is_all_contexts_clone = 0;
|
||||
node_dead = 0;
|
||||
}
|
||||
|
||||
/* Free all ipa_node_params structures. */
|
||||
|
@ -3357,13 +3361,8 @@ ipa_free_node_params_substructures (struct ipa_node_params *info)
|
|||
void
|
||||
ipa_free_all_node_params (void)
|
||||
{
|
||||
int i;
|
||||
struct ipa_node_params *info;
|
||||
|
||||
FOR_EACH_VEC_ELT (ipa_node_params_vector, i, info)
|
||||
ipa_free_node_params_substructures (info);
|
||||
|
||||
ipa_node_params_vector.release ();
|
||||
delete ipa_node_params_sum;
|
||||
ipa_node_params_sum = NULL;
|
||||
}
|
||||
|
||||
/* Grow ipcp_transformations if necessary. */
|
||||
|
@ -3416,26 +3415,11 @@ ipa_edge_removal_hook (struct cgraph_edge *cs, void *data ATTRIBUTE_UNUSED)
|
|||
ipa_free_edge_args_substructures (IPA_EDGE_REF (cs));
|
||||
}
|
||||
|
||||
/* Hook that is called by cgraph.c when a node is removed. */
|
||||
|
||||
static void
|
||||
ipa_node_removal_hook (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* During IPA-CP updating we can be called on not-yet analyze clones. */
|
||||
if (ipa_node_params_vector.length () > (unsigned)node->uid)
|
||||
ipa_free_node_params_substructures (IPA_NODE_REF (node));
|
||||
if (vec_safe_length (ipcp_transformations) > (unsigned)node->uid)
|
||||
{
|
||||
(*ipcp_transformations)[(unsigned)node->uid].agg_values = NULL;
|
||||
(*ipcp_transformations)[(unsigned)node->uid].alignments = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/* Hook that is called by cgraph.c when an edge is duplicated. */
|
||||
|
||||
static void
|
||||
ipa_edge_duplication_hook (struct cgraph_edge *src, struct cgraph_edge *dst,
|
||||
__attribute__((unused)) void *data)
|
||||
void *)
|
||||
{
|
||||
struct ipa_edge_args *old_args, *new_args;
|
||||
unsigned int i;
|
||||
|
@ -3535,18 +3519,23 @@ ipa_edge_duplication_hook (struct cgraph_edge *src, struct cgraph_edge *dst,
|
|||
}
|
||||
}
|
||||
|
||||
/* Hook that is called by cgraph.c when a node is duplicated. */
|
||||
/* Analyze newly added function into callgraph. */
|
||||
|
||||
static void
|
||||
ipa_node_duplication_hook (struct cgraph_node *src, struct cgraph_node *dst,
|
||||
ATTRIBUTE_UNUSED void *data)
|
||||
ipa_add_new_function (cgraph_node *node, void *data ATTRIBUTE_UNUSED)
|
||||
{
|
||||
struct ipa_node_params *old_info, *new_info;
|
||||
struct ipa_agg_replacement_value *old_av, *new_av;
|
||||
if (node->has_gimple_body_p ())
|
||||
ipa_analyze_node (node);
|
||||
}
|
||||
|
||||
ipa_check_create_node_params ();
|
||||
old_info = IPA_NODE_REF (src);
|
||||
new_info = IPA_NODE_REF (dst);
|
||||
/* Hook that is called by summary when a node is duplicated. */
|
||||
|
||||
void
|
||||
ipa_node_params_t::duplicate(cgraph_node *src, cgraph_node *dst,
|
||||
ipa_node_params *old_info,
|
||||
ipa_node_params *new_info)
|
||||
{
|
||||
ipa_agg_replacement_value *old_av, *new_av;
|
||||
|
||||
new_info->descriptors = old_info->descriptors.copy ();
|
||||
new_info->lattices = NULL;
|
||||
|
@ -3587,35 +3576,20 @@ ipa_node_duplication_hook (struct cgraph_node *src, struct cgraph_node *dst,
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/* Analyze newly added function into callgraph. */
|
||||
|
||||
static void
|
||||
ipa_add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
|
||||
{
|
||||
if (node->has_gimple_body_p ())
|
||||
ipa_analyze_node (node);
|
||||
}
|
||||
|
||||
/* Register our cgraph hooks if they are not already there. */
|
||||
|
||||
void
|
||||
ipa_register_cgraph_hooks (void)
|
||||
{
|
||||
ipa_check_create_node_params ();
|
||||
|
||||
if (!edge_removal_hook_holder)
|
||||
edge_removal_hook_holder =
|
||||
symtab->add_edge_removal_hook (&ipa_edge_removal_hook, NULL);
|
||||
if (!node_removal_hook_holder)
|
||||
node_removal_hook_holder =
|
||||
symtab->add_cgraph_removal_hook (&ipa_node_removal_hook, NULL);
|
||||
if (!edge_duplication_hook_holder)
|
||||
edge_duplication_hook_holder =
|
||||
symtab->add_edge_duplication_hook (&ipa_edge_duplication_hook, NULL);
|
||||
if (!node_duplication_hook_holder)
|
||||
node_duplication_hook_holder =
|
||||
symtab->add_cgraph_duplication_hook (&ipa_node_duplication_hook, NULL);
|
||||
if (!function_insertion_hook_holder)
|
||||
function_insertion_hook_holder =
|
||||
function_insertion_hook_holder =
|
||||
symtab->add_cgraph_insertion_hook (&ipa_add_new_function, NULL);
|
||||
}
|
||||
|
||||
|
@ -3626,12 +3600,8 @@ ipa_unregister_cgraph_hooks (void)
|
|||
{
|
||||
symtab->remove_edge_removal_hook (edge_removal_hook_holder);
|
||||
edge_removal_hook_holder = NULL;
|
||||
symtab->remove_cgraph_removal_hook (node_removal_hook_holder);
|
||||
node_removal_hook_holder = NULL;
|
||||
symtab->remove_edge_duplication_hook (edge_duplication_hook_holder);
|
||||
edge_duplication_hook_holder = NULL;
|
||||
symtab->remove_cgraph_duplication_hook (node_duplication_hook_holder);
|
||||
node_duplication_hook_holder = NULL;
|
||||
symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
|
||||
function_insertion_hook_holder = NULL;
|
||||
}
|
||||
|
@ -4801,8 +4771,7 @@ ipa_prop_write_jump_functions (void)
|
|||
lto_symtab_encoder_iterator lsei;
|
||||
lto_symtab_encoder_t encoder;
|
||||
|
||||
|
||||
if (!ipa_node_params_vector.exists ())
|
||||
if (!ipa_node_params_sum)
|
||||
return;
|
||||
|
||||
ob = create_output_block (LTO_section_jump_functions);
|
||||
|
|
|
@ -20,7 +20,6 @@ along with GCC; see the file COPYING3. If not see
|
|||
#ifndef IPA_PROP_H
|
||||
#define IPA_PROP_H
|
||||
|
||||
|
||||
/* The following definitions and interfaces are used by
|
||||
interprocedural analyses or parameters. */
|
||||
|
||||
|
@ -301,6 +300,8 @@ struct ipa_param_descriptor
|
|||
|
||||
struct ipa_node_params
|
||||
{
|
||||
~ipa_node_params ();
|
||||
|
||||
/* Information about individual formal parameters that are gathered when
|
||||
summaries are generated. */
|
||||
vec<ipa_param_descriptor> descriptors;
|
||||
|
@ -470,10 +471,22 @@ ipa_get_ith_polymorhic_call_context (struct ipa_edge_args *args, int i)
|
|||
return &(*args->polymorphic_call_contexts)[i];
|
||||
}
|
||||
|
||||
/* Types of vectors holding the infos. */
|
||||
/* Callgraph summary for ipa_node_params. */
|
||||
class ipa_node_params_t: public function_summary <ipa_node_params *>
|
||||
{
|
||||
public:
|
||||
ipa_node_params_t (symbol_table *table):
|
||||
function_summary<ipa_node_params *> (table) { }
|
||||
|
||||
/* Vector where the parameter infos are actually stored. */
|
||||
extern vec<ipa_node_params> ipa_node_params_vector;
|
||||
/* Hook that is called by summary when a node is duplicated. */
|
||||
virtual void duplicate (cgraph_node *node,
|
||||
cgraph_node *node2,
|
||||
ipa_node_params *data,
|
||||
ipa_node_params *data2);
|
||||
};
|
||||
|
||||
/* Function summary where the parameter infos are actually stored. */
|
||||
extern ipa_node_params_t *ipa_node_params_sum;
|
||||
/* Vector of IPA-CP transformation data for each clone. */
|
||||
extern GTY(()) vec<ipcp_transformation_summary, va_gc> *ipcp_transformations;
|
||||
/* Vector where the parameter infos are actually stored. */
|
||||
|
@ -481,7 +494,7 @@ extern GTY(()) vec<ipa_edge_args, va_gc> *ipa_edge_args_vector;
|
|||
|
||||
/* Return the associated parameter/argument info corresponding to the given
|
||||
node/edge. */
|
||||
#define IPA_NODE_REF(NODE) (&ipa_node_params_vector[(NODE)->uid])
|
||||
#define IPA_NODE_REF(NODE) (ipa_node_params_sum->get (NODE))
|
||||
#define IPA_EDGE_REF(EDGE) (&(*ipa_edge_args_vector)[(EDGE)->uid])
|
||||
/* This macro checks validity of index returned by
|
||||
ipa_get_param_decl_index function. */
|
||||
|
@ -491,11 +504,11 @@ extern GTY(()) vec<ipa_edge_args, va_gc> *ipa_edge_args_vector;
|
|||
void ipa_create_all_node_params (void);
|
||||
void ipa_create_all_edge_args (void);
|
||||
void ipa_free_edge_args_substructures (struct ipa_edge_args *);
|
||||
void ipa_free_node_params_substructures (struct ipa_node_params *);
|
||||
void ipa_free_all_node_params (void);
|
||||
void ipa_free_all_edge_args (void);
|
||||
void ipa_free_all_structures_after_ipa_cp (void);
|
||||
void ipa_free_all_structures_after_iinln (void);
|
||||
|
||||
void ipa_register_cgraph_hooks (void);
|
||||
int count_formal_params (tree fndecl);
|
||||
|
||||
|
@ -505,11 +518,8 @@ int count_formal_params (tree fndecl);
|
|||
static inline void
|
||||
ipa_check_create_node_params (void)
|
||||
{
|
||||
if (!ipa_node_params_vector.exists ())
|
||||
ipa_node_params_vector.create (symtab->cgraph_max_uid);
|
||||
|
||||
if (ipa_node_params_vector.length () <= (unsigned) symtab->cgraph_max_uid)
|
||||
ipa_node_params_vector.safe_grow_cleared (symtab->cgraph_max_uid + 1);
|
||||
if (!ipa_node_params_sum)
|
||||
ipa_node_params_sum = new ipa_node_params_t (symtab);
|
||||
}
|
||||
|
||||
/* This function ensures the array of edge arguments infos is big enough to
|
||||
|
|
|
@ -109,6 +109,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "gimple-ssa.h"
|
||||
#include "tree-cfg.h"
|
||||
|
|
|
@ -55,6 +55,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "langhooks.h"
|
||||
#include "lto-streamer.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
|
||||
|
|
|
@ -46,6 +46,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "tree-iterator.h"
|
||||
#include "ipa-utils.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "tree-inline.h"
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2014-12-22 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* lto-partition.c: Include of symbol-summary.h is added.
|
||||
* lto-symtab.c: Likewise.
|
||||
* lto.c: Likewise.
|
||||
|
||||
2014-12-11 Jan Hubicka <hubicka@ucw.cz>
|
||||
|
||||
PR ipa/61324
|
||||
|
|
|
@ -45,6 +45,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "timevar.h"
|
||||
#include "params.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "ipa-utils.h"
|
||||
|
|
|
@ -45,6 +45,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "lto-streamer.h"
|
||||
#include "ipa-utils.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "ipa-inline.h"
|
||||
#include "builtins.h"
|
||||
|
|
|
@ -47,6 +47,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "bitmap.h"
|
||||
#include "inchash.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "common.h"
|
||||
#include "debug.h"
|
||||
|
|
|
@ -83,6 +83,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "tree-cfgcleanup.h"
|
||||
#include "pretty-print.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "tree-nested.h"
|
||||
#include "tree-eh.h"
|
||||
|
|
|
@ -74,6 +74,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "alloc-pool.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "value-prof.h"
|
||||
#include "tree-pass.h"
|
||||
|
|
|
@ -115,6 +115,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "plugin-api.h"
|
||||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "statistics.h"
|
||||
#include "params.h"
|
||||
|
|
|
@ -77,6 +77,7 @@ along with GCC; see the file COPYING3. If not see
|
|||
#include "plugin-api.h"
|
||||
#include "ipa-ref.h"
|
||||
#include "cgraph.h"
|
||||
#include "symbol-summary.h"
|
||||
#include "ipa-prop.h"
|
||||
#include "tree-ssa-propagate.h"
|
||||
#include "ipa-utils.h"
|
||||
|
|
Loading…
Add table
Reference in a new issue