Commit 6ac5a246 by Jan Hubicka Committed by Jan Hubicka

tree-flow-inline.h (var_ann): External variable annotations are unshared too.

	* tree-flow-inline.h (var_ann): External variable annotations are
	unshared too.
	(tree_common_ann): Handle correctly unshared variables annotations.
	* tree-dfa.c (create_var_ann): External variable annotations are
	unshared too.

From-SVN: r120164
parent 007948df
2006-12-23 Jan Hubicka <jh@suse.cz>
* tree-flow-inline.h (var_ann): External variable annotations are
unshared too.
(tree_common_ann): Handle correctly unshared variables annotations.
* tree-dfa.c (create_var_ann): External variable annotations are
unshared too.
2006-12-22 Kazu Hirata <kazu@codesourcery.com> 2006-12-22 Kazu Hirata <kazu@codesourcery.com>
* basic-block.h: Remove the prototype for * basic-block.h: Remove the prototype for
......
...@@ -130,7 +130,7 @@ create_var_ann (tree t) ...@@ -130,7 +130,7 @@ create_var_ann (tree t)
gcc_assert (DECL_P (t)); gcc_assert (DECL_P (t));
gcc_assert (!t->base.ann || t->base.ann->common.type == VAR_ANN); gcc_assert (!t->base.ann || t->base.ann->common.type == VAR_ANN);
if (TREE_STATIC (t)) if (!MTAG_P (t) && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
{ {
sann = GGC_CNEW (struct static_var_ann_d); sann = GGC_CNEW (struct static_var_ann_d);
ann = &sann->ann; ann = &sann->ann;
...@@ -140,7 +140,7 @@ create_var_ann (tree t) ...@@ -140,7 +140,7 @@ create_var_ann (tree t)
ann->common.type = VAR_ANN; ann->common.type = VAR_ANN;
if (TREE_STATIC (t)) if (!MTAG_P (t) && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
{ {
void **slot; void **slot;
sann->uid = DECL_UID (t); sann->uid = DECL_UID (t);
...@@ -696,7 +696,7 @@ set_default_def (tree var, tree def) ...@@ -696,7 +696,7 @@ set_default_def (tree var, tree def)
htab_remove_elt (DEFAULT_DEFS (cfun), *loc); htab_remove_elt (DEFAULT_DEFS (cfun), *loc);
return; return;
} }
gcc_assert (TREE_CODE (def) == SSA_NAME); gcc_assert (!def || TREE_CODE (def) == SSA_NAME);
loc = htab_find_slot_with_hash (DEFAULT_DEFS (cfun), &in, loc = htab_find_slot_with_hash (DEFAULT_DEFS (cfun), &in,
DECL_UID (var), INSERT); DECL_UID (var), INSERT);
......
...@@ -203,7 +203,7 @@ var_ann (tree t) ...@@ -203,7 +203,7 @@ var_ann (tree t)
gcc_assert (t); gcc_assert (t);
gcc_assert (DECL_P (t)); gcc_assert (DECL_P (t));
gcc_assert (TREE_CODE (t) != FUNCTION_DECL); gcc_assert (TREE_CODE (t) != FUNCTION_DECL);
if (TREE_STATIC (t)) if (!MTAG_P (t) && (TREE_STATIC (t) || DECL_EXTERNAL (t)))
{ {
struct static_var_ann_d *sann struct static_var_ann_d *sann
= ((struct static_var_ann_d *) = ((struct static_var_ann_d *)
...@@ -952,6 +952,9 @@ clear_call_clobbered (tree var) ...@@ -952,6 +952,9 @@ clear_call_clobbered (tree var)
static inline tree_ann_common_t static inline tree_ann_common_t
tree_common_ann (tree t) tree_common_ann (tree t)
{ {
/* Watch out static variables with unshared annotations. */
if (DECL_P (t) && TREE_CODE (t) == VAR_DECL)
return &var_ann (t)->common;
return &t->base.ann->common; return &t->base.ann->common;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment