diff options
author | Dorit Nuzman <dorit@il.ibm.com> | 2005-06-10 14:52:01 +0000 |
---|---|---|
committer | Dorit Nuzman <dorit@gcc.gnu.org> | 2005-06-10 14:52:01 +0000 |
commit | bb7483290049647685d17557117e4285530266f3 (patch) | |
tree | 57c8ef6636055daf9e83a4e162b8bca978e69d33 /gcc/tree-vect-transform.c | |
parent | cdd5a1bebee6ddca1324d85535f6a1f82ba9cede (diff) | |
download | gcc-bb7483290049647685d17557117e4285530266f3.zip gcc-bb7483290049647685d17557117e4285530266f3.tar.gz gcc-bb7483290049647685d17557117e4285530266f3.tar.bz2 |
tree-vect-analyze.c (vect_analyze_data_ref_dependence): DRs whose dependence-distance modulo VF is 0 are recorded in the...
* tree-vect-analyze.c (vect_analyze_data_ref_dependence): DRs whose
dependence-distance modulo VF is 0 are recorded in the
SAME_ALIGN_REFs VEC in each DR.
(vect_enhance_data_refs_alignment): Avoid 80 column overflow. The
alignment information of DRs that are in the SAME_ALIGN_REFs VEC of the
DR we want to peel for, is set to 0.
* tree-vect-transform.c (vect_do_peeling_for_loop_bound): Fix printout.
* tree-vectorizer.c (destroy_loop_vec_info): Free the SAME_ALIGN_REFs
VEC.
* tree-vectorizer.h (dr_p): New type. Defined to use the VEC API.
(_stmt_vec_info): Added new field same_align_refs.
(STMT_VINFO_SAME_ALIGN_REFS): New macro.
From-SVN: r100817
Diffstat (limited to 'gcc/tree-vect-transform.c')
-rw-r--r-- | gcc/tree-vect-transform.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c index f5724db..116f01a 100644 --- a/gcc/tree-vect-transform.c +++ b/gcc/tree-vect-transform.c @@ -962,9 +962,9 @@ vectorizable_store (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt) { SSA_NAME_DEF_STMT (def) = *vec_stmt; - /* If this virtual def has a use outside the loop and a loop peel is performed - then the def may be renamed by the peel. Mark it for renaming so the - later use will also be renamed. */ + /* If this virtual def has a use outside the loop and a loop peel is + performed then the def may be renamed by the peel. Mark it for + renaming so the later use will also be renamed. */ mark_sym_for_renaming (SSA_NAME_VAR (def)); } @@ -1776,7 +1776,7 @@ vect_do_peeling_for_loop_bound (loop_vec_info loop_vinfo, tree *ratio, #endif if (vect_print_dump_info (REPORT_DETAILS, UNKNOWN_LOC)) - fprintf (vect_dump, "=== vect_transtorm_for_unknown_loop_bound ==="); + fprintf (vect_dump, "=== vect_do_peeling_for_loop_bound ==="); /* Generate the following variables on the preheader of original loop: |