mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
3f021fa672
This patch marks the induction increment of the main induction variable of the vector loop as NUW when not folding the tail. If the tail is not folded, we know that End - Start >= Step (either statically or through the minimum iteration checks). We also know that both Start % Step == 0 and End % Step == 0. We exit the vector loop if %IV + %Step == %End. Hence we must exit the loop before %IV + %Step unsigned overflows and we can mark the induction increment as NUW. This should make SCEV return more precise bounds for the created vector loops, used by later optimizations, like late unrolling. At the moment quite a few tests still need to be updated, but before doing so I'd like to get initial feedback to make sure I am not missing anything. Note that this could probably be further improved by using information from the original IV. Attempt of modeling of the assumption in Alive2: https://alive2.llvm.org/ce/z/H_DL_g Part of a set of fixes required for PR50412. Reviewed By: mkazantsev Differential Revision: https://reviews.llvm.org/D103255
28 lines
1.2 KiB
LLVM
28 lines
1.2 KiB
LLVM
; RUN: opt -S -loop-vectorize -force-vector-width=4 %s | FileCheck %s
|
|
|
|
; CHECK-LABEL: @test_fshl
|
|
; CHECK-LABEL: vector.body:
|
|
; CHECK-NEXT: %index = phi i32 [ 0, %vector.ph ], [ %index.next, %vector.body ]
|
|
; CHECK-NEXT: %0 = add i32 %index, 0
|
|
; CHECK-NEXT: %1 = call <4 x i16> @llvm.fshl.v4i16(<4 x i16> undef, <4 x i16> undef, <4 x i16> <i16 15, i16 15, i16 15, i16 15>)
|
|
; CHECK-NEXT: %index.next = add nuw i32 %index, 4
|
|
; CHECK-NEXT: %2 = icmp eq i32 %index.next, %n.vec
|
|
; CHECK-NEXT: br i1 %2, label %middle.block, label %vector.body, !llvm.loop !0
|
|
;
|
|
define void @test_fshl(i32 %width) {
|
|
entry:
|
|
br label %for.body9.us.us
|
|
|
|
for.cond6.for.cond.cleanup8_crit_edge.us.us: ; preds = %for.body9.us.us
|
|
ret void
|
|
|
|
for.body9.us.us: ; preds = %for.body9.us.us, %entry
|
|
%x.020.us.us = phi i32 [ 0, %entry ], [ %inc.us.us, %for.body9.us.us ]
|
|
%conv4.i.us.us = tail call i16 @llvm.fshl.i16(i16 undef, i16 undef, i16 15)
|
|
%inc.us.us = add nuw i32 %x.020.us.us, 1
|
|
%exitcond50 = icmp eq i32 %inc.us.us, %width
|
|
br i1 %exitcond50, label %for.cond6.for.cond.cleanup8_crit_edge.us.us, label %for.body9.us.us
|
|
}
|
|
|
|
declare i16 @llvm.fshl.i16(i16, i16, i16)
|