After https://github.com/llvm/llvm-project/pull/153643, there may be a BranchOnCond with constant condition in the entry block. Simplify those in removeBranchOnConst. This removes a number of redundant conditional branch from entry blocks. In some cases, it may also make the original scalar loop unreachable, because we know it will never execute. In that case, we need to remove the loop from LoopInfo, because all unreachable blocks may dominate each other, making LoopInfo invalid. In those cases, we can also completely remove the loop, for which I'll share a follow-up patch. Depends on https://github.com/llvm/llvm-project/pull/153643. PR: https://github.com/llvm/llvm-project/pull/154510
76 lines
3.5 KiB
LLVM
76 lines
3.5 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -S -passes=loop-vectorize -force-vector-interleave=2 | FileCheck %s
|
|
|
|
; Demonstrate a case where we unroll a loop, but don't vectorize it.
|
|
; The original loop runs stores in the latch block on iterations 0 to 1022,
|
|
; and exits when %indvars.iv = 1023. (That is, it actually runs the stores
|
|
; for an odd number of iterations.) If we unroll by two in the "vector.body"
|
|
; loop, we must exit to the epilogue on iteration with %indvars.iv = 1022 to
|
|
; avoid an out of bounds access.
|
|
|
|
define void @test(ptr %data) {
|
|
; CHECK-LABEL: @test(
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: br label [[VECTOR_PH:%.*]]
|
|
; CHECK: vector.ph:
|
|
; CHECK-NEXT: br label [[VECTOR_BODY:%.*]]
|
|
; CHECK: vector.body:
|
|
; CHECK-NEXT: [[INDEX:%.*]] = phi i64 [ 0, [[VECTOR_PH]] ], [ [[INDEX_NEXT:%.*]], [[VECTOR_BODY]] ]
|
|
; CHECK-NEXT: [[TMP1:%.*]] = add i64 [[INDEX]], 1
|
|
; CHECK-NEXT: [[TMP2:%.*]] = shl nuw nsw i64 [[INDEX]], 1
|
|
; CHECK-NEXT: [[TMP3:%.*]] = shl nuw nsw i64 [[TMP1]], 1
|
|
; CHECK-NEXT: [[TMP4:%.*]] = or disjoint i64 [[TMP2]], 1
|
|
; CHECK-NEXT: [[TMP5:%.*]] = or disjoint i64 [[TMP3]], 1
|
|
; CHECK-NEXT: [[TMP6:%.*]] = getelementptr inbounds double, ptr [[DATA:%.*]], i64 [[TMP4]]
|
|
; CHECK-NEXT: [[TMP7:%.*]] = getelementptr inbounds double, ptr [[DATA]], i64 [[TMP5]]
|
|
; CHECK-NEXT: [[TMP8:%.*]] = load double, ptr [[TMP6]], align 8
|
|
; CHECK-NEXT: [[TMP9:%.*]] = load double, ptr [[TMP7]], align 8
|
|
; CHECK-NEXT: [[TMP10:%.*]] = fneg double [[TMP8]]
|
|
; CHECK-NEXT: [[TMP11:%.*]] = fneg double [[TMP9]]
|
|
; CHECK-NEXT: store double [[TMP10]], ptr [[TMP6]], align 8
|
|
; CHECK-NEXT: store double [[TMP11]], ptr [[TMP7]], align 8
|
|
; CHECK-NEXT: [[INDEX_NEXT]] = add nuw i64 [[INDEX]], 2
|
|
; CHECK-NEXT: [[TMP12:%.*]] = icmp eq i64 [[INDEX_NEXT]], 1022
|
|
; CHECK-NEXT: br i1 [[TMP12]], label [[MIDDLE_BLOCK:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP0:![0-9]+]]
|
|
; CHECK: middle.block:
|
|
; CHECK-NEXT: br label [[SCALAR_PH:%.*]]
|
|
; CHECK: scalar.ph:
|
|
; CHECK-NEXT: br label [[FOR_BODY:%.*]]
|
|
; CHECK: for.body:
|
|
; CHECK-NEXT: [[INDVARS_IV:%.*]] = phi i64 [ 1022, [[SCALAR_PH]] ], [ [[INDVARS_IV_NEXT:%.*]], [[FOR_LATCH:%.*]] ]
|
|
; CHECK-NEXT: [[INDVARS_IV_NEXT]] = add nuw nsw i64 [[INDVARS_IV]], 1
|
|
; CHECK-NEXT: [[EXITCOND_NOT:%.*]] = icmp eq i64 [[INDVARS_IV_NEXT]], 1024
|
|
; CHECK-NEXT: br i1 [[EXITCOND_NOT]], label [[FOR_END:%.*]], label [[FOR_LATCH]]
|
|
; CHECK: for.latch:
|
|
; CHECK-NEXT: [[T15:%.*]] = shl nuw nsw i64 [[INDVARS_IV]], 1
|
|
; CHECK-NEXT: [[T16:%.*]] = or disjoint i64 [[T15]], 1
|
|
; CHECK-NEXT: [[ARRAYIDX:%.*]] = getelementptr inbounds double, ptr [[DATA]], i64 [[T16]]
|
|
; CHECK-NEXT: [[T17:%.*]] = load double, ptr [[ARRAYIDX]], align 8
|
|
; CHECK-NEXT: [[FNEG:%.*]] = fneg double [[T17]]
|
|
; CHECK-NEXT: store double [[FNEG]], ptr [[ARRAYIDX]], align 8
|
|
; CHECK-NEXT: br label [[FOR_BODY]], !llvm.loop [[LOOP3:![0-9]+]]
|
|
; CHECK: for.end:
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
entry:
|
|
br label %for.body
|
|
|
|
for.body:
|
|
%indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.latch ]
|
|
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
|
|
%exitcond.not = icmp eq i64 %indvars.iv.next, 1024
|
|
br i1 %exitcond.not, label %for.end, label %for.latch
|
|
|
|
for.latch:
|
|
%t15 = shl nuw nsw i64 %indvars.iv, 1
|
|
%t16 = or disjoint i64 %t15, 1
|
|
%arrayidx = getelementptr inbounds double, ptr %data, i64 %t16
|
|
%t17 = load double, ptr %arrayidx, align 8
|
|
%fneg = fneg double %t17
|
|
store double %fneg, ptr %arrayidx, align 8
|
|
br label %for.body
|
|
|
|
for.end:
|
|
ret void
|
|
}
|