2019-10-10 Jan Hubicka <hubicka@ucw.cz>
+ * ipa-reference.c: Do not include splay-tree.h
+ (reference_vars_to_consider): Turn to hash map.
+ (get_static_name, ipa_init, analyze_function, propagate,
+ stream_out_bitmap, ipa_reference_write_optimization_summary,
+ ipa_reference_write_optimization_summary): Update.
+
+2019-10-10 Jan Hubicka <hubicka@ucw.cz>
+
* ipa-reference.c (propagate): Fix releasing of IPA summaries.
2019-10-10 Iain Sandoe <iain@sandoe.co.uk>
#include "cgraph.h"
#include "data-streamer.h"
#include "calls.h"
-#include "splay-tree.h"
#include "ipa-utils.h"
#include "ipa-reference.h"
#include "symbol-summary.h"
typedef struct ipa_reference_vars_info_d *ipa_reference_vars_info_t;
-/* This splay tree contains all of the static variables that are
+/* This map contains all of the static variables that are
being considered by the compilation level alias analysis. */
-static splay_tree reference_vars_to_consider;
+typedef hash_map<int_hash <unsigned int, -1U>, tree>
+ reference_vars_to_consider_t;
+static reference_vars_to_consider_t *reference_vars_to_consider;
/* Set of all interesting module statics. A bit is set for every module
static we are considering. This is added to the local info when asm
static const char *
get_static_name (int index)
{
- splay_tree_node stn =
- splay_tree_lookup (reference_vars_to_consider, index);
- return fndecl_name ((tree)(stn->value));
+ return fndecl_name (*reference_vars_to_consider->get (index));
}
/* Dump a set of static vars to FILE. */
ipa_init_p = true;
if (dump_file)
- reference_vars_to_consider = splay_tree_new (splay_tree_compare_ints, 0, 0);
+ reference_vars_to_consider = new reference_vars_to_consider_t(251);
bitmap_obstack_initialize (&local_info_obstack);
bitmap_obstack_initialize (&optimization_summary_obstack);
&& bitmap_set_bit (all_module_statics, ipa_reference_var_uid (var)))
{
if (dump_file)
- splay_tree_insert (reference_vars_to_consider,
- ipa_reference_var_uid (var),
- (splay_tree_value)var);
+ reference_vars_to_consider->put (ipa_reference_var_uid (var),
+ var);
}
switch (ref->use)
{
}
if (dump_file)
- splay_tree_delete (reference_vars_to_consider);
+ delete reference_vars_to_consider;
reference_vars_to_consider = NULL;
return remove_p ? TODO_remove_functions : 0;
}
return;
EXECUTE_IF_AND_IN_BITMAP (bits, ltrans_statics, 0, index, bi)
{
- tree decl = (tree)splay_tree_lookup (reference_vars_to_consider,
- index)->value;
+ tree decl = *reference_vars_to_consider->get (index);
lto_output_var_decl_index (ob->decl_state, ob->main_stream, decl);
}
}
auto_bitmap ltrans_statics;
int i;
- reference_vars_to_consider = splay_tree_new (splay_tree_compare_ints, 0, 0);
+ reference_vars_to_consider = new reference_vars_to_consider_t (251);
/* See what variables we are interested in. */
for (i = 0; i < lto_symtab_encoder_size (encoder); i++)
{
tree decl = vnode->decl;
bitmap_set_bit (ltrans_statics, ipa_reference_var_uid (decl));
- splay_tree_insert (reference_vars_to_consider,
- ipa_reference_var_uid (decl),
- (splay_tree_value)decl);
+ reference_vars_to_consider->put
+ (ipa_reference_var_uid (decl), decl);
ltrans_statics_bitcount ++;
}
}
}
}
lto_destroy_simple_output_block (ob);
- splay_tree_delete (reference_vars_to_consider);
+ delete reference_vars_to_consider;
}
/* Deserialize the ipa info for lto. */