Index: llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp =================================================================== --- llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp +++ llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp @@ -28,6 +28,7 @@ #include "llvm/Support/Casting.h" #include "llvm/Support/MachineValueType.h" #include "llvm/Target/TargetMachine.h" +#include "llvm/Transforms/Utils/LoopUtils.h" #include #include #include @@ -1319,7 +1320,27 @@ int ICmpCount = 0; int Stride = 0; - LLVM_DEBUG(dbgs() << "tail-predication: checking allowed instructions\n"); + LLVM_DEBUG(dbgs() << "Tail-predication: checking allowed instructions\n"); + + // If there are live-out values, it is probably a reduction, which needs a + // final reduction step after the loop. MVE has a VADDV instruction to reduce + // integer vectors, but doesn't have an equivalent one for float vectors. A + // live-out value that is not recognised as reduction will result in the + // tail-predicated loop to be reverted to a non-predicated loop and this is + // very expensive, i.e. it has a significant performance impact. So, in this + // case it's better not to tail-predicate the loop, which is what we check + // here. + SmallVector< Instruction *, 8 > LiveOuts; + LiveOuts = llvm::findDefsUsedOutsideOfLoop(L); + for (auto *I : LiveOuts) { + if (!I->getType()->isIntegerTy()) { + LLVM_DEBUG(dbgs() << "Don't tail-predicate loop with non-integer " + "live-out value\n"); + return false; + } + } + + // Next, check that all instructions can be tail-predicated. SmallVector LoadStores; for (BasicBlock *BB : L->blocks()) { for (Instruction &I : BB->instructionsWithoutDebug()) { Index: llvm/test/Transforms/LoopVectorize/ARM/tail-loop-folding.ll =================================================================== --- llvm/test/Transforms/LoopVectorize/ARM/tail-loop-folding.ll +++ llvm/test/Transforms/LoopVectorize/ARM/tail-loop-folding.ll @@ -162,6 +162,93 @@ br i1 %exitcond, label %for.cond.cleanup.loopexit, label %for.body, !llvm.loop !14 } +; Don't tail-fold float reductions. +; +define dso_local void @f32_reduction(float* nocapture readonly %Input, i32 %N, float* nocapture %Output) local_unnamed_addr #0 { +; CHECK-LABEL: f32_reduction( +; CHECK: vector.body: +; CHECK-NOT: @llvm.masked.load +; CHECK-NOT: @llvm.masked.store +; CHECK: br i1 %{{.*}}, label {{.*}}, label %vector.body +entry: + %cmp6 = icmp eq i32 %N, 0 + br i1 %cmp6, label %while.end, label %while.body.preheader + +while.body.preheader: ; preds = %entry + br label %while.body + +while.body: ; preds = %while.body.preheader, %while.body + %blkCnt.09 = phi i32 [ %dec, %while.body ], [ %N, %while.body.preheader ] + %sum.08 = phi float [ %add, %while.body ], [ 0.000000e+00, %while.body.preheader ] + %Input.addr.07 = phi float* [ %incdec.ptr, %while.body ], [ %Input, %while.body.preheader ] + %incdec.ptr = getelementptr inbounds float, float* %Input.addr.07, i32 1 + %0 = load float, float* %Input.addr.07, align 4 + %add = fadd fast float %0, %sum.08 + %dec = add i32 %blkCnt.09, -1 + %cmp = icmp eq i32 %dec, 0 + br i1 %cmp, label %while.end.loopexit, label %while.body + +while.end.loopexit: ; preds = %while.body + %add.lcssa = phi float [ %add, %while.body ] + br label %while.end + +while.end: ; preds = %while.end.loopexit, %entry + %sum.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add.lcssa, %while.end.loopexit ] + %conv = uitofp i32 %N to float + %div = fdiv fast float %sum.0.lcssa, %conv + store float %div, float* %Output, align 4 + ret void +} + +; Don't tail-fold float reductions. +; +define dso_local void @mixed_f32_i32_reduction(float* nocapture readonly %fInput, i32* nocapture readonly %iInput, i32 %N, float* nocapture %fOutput, i32* nocapture %iOutput) local_unnamed_addr #0 { +; CHECK-LABEL: f32_reduction( +; CHECK: vector.body: +; CHECK-NOT: @llvm.masked.load +; CHECK-NOT: @llvm.masked.store +; CHECK: br i1 %{{.*}}, label {{.*}}, label %vector.body +entry: + %cmp15 = icmp eq i32 %N, 0 + br i1 %cmp15, label %while.end, label %while.body.preheader + +while.body.preheader: + br label %while.body + +while.body: + %blkCnt.020 = phi i32 [ %dec, %while.body ], [ %N, %while.body.preheader ] + %isum.019 = phi i32 [ %add2, %while.body ], [ 0, %while.body.preheader ] + %fsum.018 = phi float [ %add, %while.body ], [ 0.000000e+00, %while.body.preheader ] + %fInput.addr.017 = phi float* [ %incdec.ptr, %while.body ], [ %fInput, %while.body.preheader ] + %iInput.addr.016 = phi i32* [ %incdec.ptr1, %while.body ], [ %iInput, %while.body.preheader ] + %incdec.ptr = getelementptr inbounds float, float* %fInput.addr.017, i32 1 + %incdec.ptr1 = getelementptr inbounds i32, i32* %iInput.addr.016, i32 1 + %0 = load i32, i32* %iInput.addr.016, align 4 + %add2 = add nsw i32 %0, %isum.019 + %1 = load float, float* %fInput.addr.017, align 4 + %add = fadd fast float %1, %fsum.018 + %dec = add i32 %blkCnt.020, -1 + %cmp = icmp eq i32 %dec, 0 + br i1 %cmp, label %while.end.loopexit, label %while.body + +while.end.loopexit: + %add.lcssa = phi float [ %add, %while.body ] + %add2.lcssa = phi i32 [ %add2, %while.body ] + %phitmp = sitofp i32 %add2.lcssa to float + br label %while.end + +while.end: + %fsum.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add.lcssa, %while.end.loopexit ] + %isum.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %phitmp, %while.end.loopexit ] + %conv = uitofp i32 %N to float + %div = fdiv fast float %fsum.0.lcssa, %conv + store float %div, float* %fOutput, align 4 + %div5 = fdiv fast float %isum.0.lcssa, %conv + %conv6 = fptosi float %div5 to i32 + store i32 %conv6, i32* %iOutput, align 4 + ret void +} + ; CHECK: !0 = distinct !{!0, !1} ; CHECK-NEXT: !1 = !{!"llvm.loop.isvectorized", i32 1} ; CHECK-NEXT: !2 = distinct !{!2, !3, !1}