aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree-vect-loop.cc30
1 files changed, 20 insertions, 10 deletions
diff --git a/gcc/tree-vect-loop.cc b/gcc/tree-vect-loop.cc
index e6d2414..e91549a 100644
--- a/gcc/tree-vect-loop.cc
+++ b/gcc/tree-vect-loop.cc
@@ -3143,17 +3143,15 @@ start_over:
" epilogue loop.\n");
}
- /* Check the costings of the loop make vectorizing worthwhile. */
- res = vect_analyze_loop_costing (loop_vinfo, suggested_unroll_factor);
- if (res < 0)
- {
- ok = opt_result::failure_at (vect_location,
- "Loop costings may not be worthwhile.\n");
- goto again;
- }
- if (!res)
+ /* If the epilogue needs peeling for gaps but the main loop doesn't give
+ up on the epilogue. */
+ if (LOOP_VINFO_EPILOGUE_P (loop_vinfo)
+ && LOOP_VINFO_PEELING_FOR_GAPS (loop_vinfo)
+ && (LOOP_VINFO_PEELING_FOR_GAPS (orig_loop_vinfo)
+ != LOOP_VINFO_PEELING_FOR_GAPS (loop_vinfo)))
return opt_result::failure_at (vect_location,
- "Loop costings not worthwhile.\n");
+ "Epilogue loop requires peeling for gaps "
+ "but main loop does not.\n");
/* If an epilogue loop is required make sure we can create one. */
if (LOOP_VINFO_PEELING_FOR_GAPS (loop_vinfo)
@@ -3174,6 +3172,18 @@ start_over:
}
}
+ /* Check the costings of the loop make vectorizing worthwhile. */
+ res = vect_analyze_loop_costing (loop_vinfo, suggested_unroll_factor);
+ if (res < 0)
+ {
+ ok = opt_result::failure_at (vect_location,
+ "Loop costings may not be worthwhile.\n");
+ goto again;
+ }
+ if (!res)
+ return opt_result::failure_at (vect_location,
+ "Loop costings not worthwhile.\n");
+
/* During peeling, we need to check if number of loop iterations is
enough for both peeled prolog loop and vector loop. This check
can be merged along with threshold check of loop versioning, so