aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorKeith Besaw <kbesaw@us.ibm.com>2005-05-29 13:14:42 +0000
committerDorit Nuzman <dorit@gcc.gnu.org>2005-05-29 13:14:42 +0000
commit9cf5a7e38d9098ce4961b091f70c40e8eb287e65 (patch)
treee9e4e7917523b632ed676b411c41a27546c3875b /gcc/tree-flow.h
parent6778b96ce1fa7ca57bb6d95fb40e769abd02734b (diff)
downloadgcc-9cf5a7e38d9098ce4961b091f70c40e8eb287e65.zip
gcc-9cf5a7e38d9098ce4961b091f70c40e8eb287e65.tar.gz
gcc-9cf5a7e38d9098ce4961b091f70c40e8eb287e65.tar.bz2
tree-ssa-alias.c (new_type_alias): New procedure to create a type memory tag for a pointer with a may-alias set...
2005-05-29 Keith Besaw <kbesaw@us.ibm.com> * tree-ssa-alias.c (new_type_alias): New procedure to create a type memory tag for a pointer with a may-alias set determined from a variable declaration. * tree-flow.h: export declaration of new_type_alias * tree-optimize.c (init_tree_optimization_passes): document that pass_may_alias cannot be called after pass_vectorize. * tree-vect-transform (vect_create_data_ref_ptr): Call new_type_alias when an type memory tag isn't available for a reference. (vectorizable_store): Use copy_virtual_operands to update virtual defs in place (so that loop_version can be called). Call mark_for_renaming for the virtual defs in case peeling is done and virtual uses outside the loop need to be updated. From-SVN: r100322
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r--gcc/tree-flow.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 0bbfb77..fda3e57 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -570,6 +570,7 @@ extern void debug_points_to_info_for (tree);
extern bool may_be_aliased (tree);
extern struct ptr_info_def *get_ptr_info (tree);
extern void add_type_alias (tree, tree);
+extern void new_type_alias (tree, tree);
extern void count_uses_and_derefs (tree, tree, unsigned *, unsigned *, bool *);
static inline subvar_t get_subvars_for_var (tree);
static inline bool ref_contains_array_ref (tree);