summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-18 20:31:28 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-18 20:31:28 +0000
commitb0b70f22400f5ffb2748a3524bf812001c6d7bb2 (patch)
tree8706195a9d7fb08a7c0d067ba68332832e65eaa1 /gcc
parent56753e9de9650a172a06e1174847f987227402f5 (diff)
downloadgcc-b0b70f22400f5ffb2748a3524bf812001c6d7bb2.tar.gz
* tree-flow.h (struct var_ann_d): Rename field is_alias_tag to
is_aliased. Update all users. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111249 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-dfa.c4
-rw-r--r--gcc/tree-flow.h7
-rw-r--r--gcc/tree-ssa-alias.c8
-rw-r--r--gcc/tree-ssa-operands.c15
-rw-r--r--gcc/tree-ssa.c4
6 files changed, 25 insertions, 19 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d2d83e5940f..f2ccbca6139 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-18 Diego Novillo <dnovillo@redhat.com>
+
+ * tree-flow.h (struct var_ann_d): Rename field is_alias_tag to
+ is_aliased.
+ Update all users.
+
2006-02-18 Jakub Jelinek <jakub@redhat.com>
PR middle-end/26334
diff --git a/gcc/tree-dfa.c b/gcc/tree-dfa.c
index 8339a942831..a21b99284e4 100644
--- a/gcc/tree-dfa.c
+++ b/gcc/tree-dfa.c
@@ -350,8 +350,8 @@ dump_variable (FILE *file, tree var)
print_generic_expr (file, ann->type_mem_tag, dump_flags);
}
- if (ann && ann->is_alias_tag)
- fprintf (file, ", is an alias tag");
+ if (ann && ann->is_aliased)
+ fprintf (file, ", is aliased");
if (TREE_ADDRESSABLE (var))
fprintf (file, ", is addressable");
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 864835b28c9..32b8c9f6da6 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -164,10 +164,8 @@ struct var_ann_d GTY(())
/* Used when building root_var structures in tree_ssa_live.[ch]. */
unsigned root_var_processed : 1;
- /* Nonzero if this variable is an alias tag that represents references to
- other variables (i.e., this variable appears in the MAY_ALIASES array
- of other variables). */
- unsigned is_alias_tag : 1;
+ /* Nonzero if this variable is in the alias set of another variable. */
+ unsigned is_aliased : 1;
/* Nonzero if this variable was used after SSA optimizations were
applied. We set this when translating out of SSA form. */
@@ -206,7 +204,6 @@ struct var_ann_d GTY(())
current version of this variable (an SSA_NAME). */
tree current_def;
-
/* If this variable is a structure, this fields holds a list of
symbols representing each of the fields of the structure. */
subvar_t subvars;
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c
index b262fd0f0fd..bb2c3ce5c9e 100644
--- a/gcc/tree-ssa-alias.c
+++ b/gcc/tree-ssa-alias.c
@@ -766,7 +766,7 @@ init_alias_info (void)
{
var_ann_t ann = var_ann (var);
- ann->is_alias_tag = 0;
+ ann->is_aliased = 0;
ann->may_aliases = NULL;
NUM_REFERENCES_CLEAR (ann);
@@ -1209,7 +1209,7 @@ group_aliases_into (tree tag, bitmap tag_aliases, struct alias_info *ai)
var_ann_t ann = var_ann (var);
/* Make TAG the unique alias of VAR. */
- ann->is_alias_tag = 0;
+ ann->is_aliased = 0;
ann->may_aliases = NULL;
/* Note that VAR and TAG may be the same if the function has no
@@ -1849,7 +1849,7 @@ add_may_alias (tree var, tree alias)
return;
VEC_safe_push (tree, gc, v_ann->may_aliases, alias);
- a_ann->is_alias_tag = 1;
+ a_ann->is_aliased = 1;
}
@@ -2454,7 +2454,7 @@ is_aliased_with (tree tag, tree sym)
VEC(tree,gc) *aliases;
tree al;
- if (var_ann (sym)->is_alias_tag)
+ if (var_ann (sym)->is_aliased)
{
aliases = var_ann (tag)->may_aliases;
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c
index 01ca06bddc2..748ff5d62f6 100644
--- a/gcc/tree-ssa-operands.c
+++ b/gcc/tree-ssa-operands.c
@@ -1740,6 +1740,7 @@ access_can_touch_variable (tree ref, tree alias, HOST_WIDE_INT offset,
return true;
}
+
/* Add VAR to the virtual operands array. FLAGS is as in
get_expr_operands. FULL_REF is a tree that contains the entire
pointer dereference expression, if available, or NULL otherwise.
@@ -1780,7 +1781,6 @@ add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
if ((flags & opf_non_specific) && unmodifiable_var_p (var))
flags &= ~(opf_is_def | opf_kill_def);
-
/* The variable is not a GIMPLE register. Add it (or its aliases) to
virtual operands, unless the caller has specifically requested
not to add virtual operands (used when adding operands inside an
@@ -1845,7 +1845,8 @@ add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
It is also necessary to add bare defs on clobbers for
TMT's, so that bare TMT uses caused by pruning all the
aliases will link up properly with calls. */
- if (v_ann->is_alias_tag || none_added
+ if (v_ann->is_aliased
+ || none_added
|| (TREE_CODE (var) == TYPE_MEMORY_TAG && for_clobber))
append_v_may_def (var);
}
@@ -1862,13 +1863,14 @@ add_virtual_operand (tree var, stmt_ann_t s_ann, int flags,
/* Similarly, append a virtual uses for VAR itself, when
it is an alias tag. */
- if (v_ann->is_alias_tag || none_added)
+ if (v_ann->is_aliased || none_added)
append_vuse (var);
}
}
}
-/* Add *VAR_P to the appropriate operand array for INFO. FLAGS is as in
+
+/* Add *VAR_P to the appropriate operand array for S_ANN. FLAGS is as in
get_expr_operands. If *VAR_P is a GIMPLE register, it will be added to
the statement's real operands, otherwise it is added to virtual
operands. */
@@ -1884,8 +1886,9 @@ add_stmt_operand (tree *var_p, stmt_ann_t s_ann, int flags)
gcc_assert (SSA_VAR_P (var));
is_real_op = is_gimple_reg (var);
- /* If this is a real operand, the operand is either ssa name or decl.
- Virtual operands may only be decls. */
+
+ /* If this is a real operand, the operand is either an SSA name or a
+ decl. Virtual operands may only be decls. */
gcc_assert (is_real_op || DECL_P (var));
sym = (TREE_CODE (var) == SSA_NAME ? SSA_NAME_VAR (var) : var);
diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c
index f6924b3e634..02e8f1ed4ab 100644
--- a/gcc/tree-ssa.c
+++ b/gcc/tree-ssa.c
@@ -406,10 +406,10 @@ verify_flow_insensitive_alias_info (void)
ann = var_ann (var);
if (!MTAG_P (var)
- && ann->is_alias_tag
+ && ann->is_aliased
&& !bitmap_bit_p (visited, DECL_UID (var)))
{
- error ("addressable variable that is an alias tag but is not in any alias set");
+ error ("addressable variable that is aliased but is not in any alias set");
goto err;
}
}