diff options
author | Bin Cheng <bin.cheng@arm.com> | 2016-07-13 15:06:40 +0000 |
---|---|---|
committer | Bin Cheng <amker@gcc.gnu.org> | 2016-07-13 15:06:40 +0000 |
commit | 6fa3d4b4a75e63276f5460a59395e1d3a634c477 (patch) | |
tree | da48e610f52224f60624eb2d668dad26e54d3861 /gcc/tree-vect-loop.c | |
parent | 65f18bc635b2d6e9db318d3430f618f4219d8c13 (diff) | |
download | gcc-6fa3d4b4a75e63276f5460a59395e1d3a634c477.zip gcc-6fa3d4b4a75e63276f5460a59395e1d3a634c477.tar.gz gcc-6fa3d4b4a75e63276f5460a59395e1d3a634c477.tar.bz2 |
tree-vect-data-refs.c (vect_no_alias_p): New function.
* tree-vect-data-refs.c (vect_no_alias_p): New function.
(vect_prune_runtime_alias_test_list): Call vect_no_alias_p to
resolve alias checks which are known at compilation time.
Truncate vector LOOP_VINFO_MAY_ALIAS_DDRS(loop_vinfo) if all
alias checks are resolved. Move dump info for too many runtime
alias checks to here...
* tree-vect-loop.c (vect_analyze_loop_2): ...From here.
gcc/testsuite
* gcc.dg/vect/vect-35-big-array.c: Refine comment and test.
* gcc.dg/vect/vect-35.c: Ditto.
* gcc.dg/vect/vect-alias-check-2.c: New test.
From-SVN: r238301
Diffstat (limited to 'gcc/tree-vect-loop.c')
-rw-r--r-- | gcc/tree-vect-loop.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index 97acf3c..11863af 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -1961,15 +1961,7 @@ start_over: since we use grouping information gathered by interleaving analysis. */ ok = vect_prune_runtime_alias_test_list (loop_vinfo); if (!ok) - { - if (dump_enabled_p ()) - dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location, - "number of versioning for alias " - "run-time tests exceeds %d " - "(--param vect-max-version-for-alias-checks)\n", - PARAM_VALUE (PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS)); - return false; - } + return false; /* This pass will decide on using loop versioning and/or loop peeling in order to enhance the alignment of data references in the loop. */ |