[RISCV] Widen i1 AnyOf reductions (#134898)
With EVL tail folding an AnyOf reduction will end up emitting an i1 vp.merge. Unfortunately due to RVV not containing any tail undisturbed mask instructions, an i1 vp.merge will get expanded to a lengthy sequence: ```asm vsetvli a1, zero, e64, m1, ta, ma vid.v v10 vmsltu.vx v10, v10, a0 vmand.mm v9, v9, v10 vmandn.mm v8, v8, v9 vmand.mm v9, v0, v9 vmor.mm v0, v9, v8 ``` This addresses this by matching this specific AnyOf pattern in RISCVCodegenPrepare and widening it from i1 to i8, which will end up producing a single masked i8 vor.vi inside the loop: ```llvm loop: %phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ] %cmp = icmp ... %rec = call <vscale x 4 x i1> @llvm.vp.merge(%cmp, true, %phi, %evl) ``` ```llvm loop: %phi = phi <vscale x 4 x i8> [ zeroinitializer, %entry ], [ %rec, %loop ] %cmp = icmp ... %rec = call <vscale x 4 x i8> @llvm.vp.merge(%cmp, true, %phi, %evl) %trunc = trunc <vscale x 4 x i8> %rec to <vscale x 4 x i1> ``` I ended up adding this in RISCVCodegenPrepare instead of the LoopVectorizer itself since it would have required adding a target hook. It may also be possible to generalize this to other i1 vp.merges in future. Normally the trunc will be sunk outside of the loop. But it also doesn't check to see if all the non-phi users of the vp.merge are outside of the loop: If there are in-loop users this still seems to be profitable, see the test diff in `@widen_anyof_rdx_use_in_loop` Fixes #132180
This commit is contained in:
parent
c785ef82ab
commit
185ba025da
@ -25,6 +25,7 @@
|
|||||||
#include "llvm/IR/PatternMatch.h"
|
#include "llvm/IR/PatternMatch.h"
|
||||||
#include "llvm/InitializePasses.h"
|
#include "llvm/InitializePasses.h"
|
||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
|
#include "llvm/Transforms/Utils/Local.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
@ -58,6 +59,7 @@ public:
|
|||||||
bool visitAnd(BinaryOperator &BO);
|
bool visitAnd(BinaryOperator &BO);
|
||||||
bool visitIntrinsicInst(IntrinsicInst &I);
|
bool visitIntrinsicInst(IntrinsicInst &I);
|
||||||
bool expandVPStrideLoad(IntrinsicInst &I);
|
bool expandVPStrideLoad(IntrinsicInst &I);
|
||||||
|
bool widenVPMerge(IntrinsicInst &I);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end anonymous namespace
|
} // end anonymous namespace
|
||||||
@ -103,6 +105,76 @@ bool RISCVCodeGenPrepare::visitAnd(BinaryOperator &BO) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// With EVL tail folding, an AnyOf reduction will generate an i1 vp.merge like
|
||||||
|
// follows:
|
||||||
|
//
|
||||||
|
// loop:
|
||||||
|
// %phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
// %cmp = icmp ...
|
||||||
|
// %rec = call <vscale x 4 x i1> @llvm.vp.merge(%cmp, i1 true, %phi, %evl)
|
||||||
|
// ...
|
||||||
|
// middle:
|
||||||
|
// %res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
//
|
||||||
|
// However RVV doesn't have any tail undisturbed mask instructions and so we
|
||||||
|
// need a convoluted sequence of mask instructions to lower the i1 vp.merge: see
|
||||||
|
// llvm/test/CodeGen/RISCV/rvv/vpmerge-sdnode.ll.
|
||||||
|
//
|
||||||
|
// To avoid that this widens the i1 vp.merge to an i8 vp.merge, which will
|
||||||
|
// generate a single vmerge.vim:
|
||||||
|
//
|
||||||
|
// loop:
|
||||||
|
// %phi = phi <vscale x 4 x i8> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
// %cmp = icmp ...
|
||||||
|
// %rec = call <vscale x 4 x i8> @llvm.vp.merge(%cmp, i8 true, %phi, %evl)
|
||||||
|
// %trunc = trunc <vscale x 4 x i8> %rec to <vscale x 4 x i1>
|
||||||
|
// ...
|
||||||
|
// middle:
|
||||||
|
// %res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
//
|
||||||
|
// The trunc will normally be sunk outside of the loop, but even if there are
|
||||||
|
// users inside the loop it is still profitable.
|
||||||
|
bool RISCVCodeGenPrepare::widenVPMerge(IntrinsicInst &II) {
|
||||||
|
if (!II.getType()->getScalarType()->isIntegerTy(1))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
Value *Mask, *True, *PhiV, *EVL;
|
||||||
|
using namespace PatternMatch;
|
||||||
|
if (!match(&II,
|
||||||
|
m_Intrinsic<Intrinsic::vp_merge>(m_Value(Mask), m_Value(True),
|
||||||
|
m_Value(PhiV), m_Value(EVL))))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
auto *Phi = dyn_cast<PHINode>(PhiV);
|
||||||
|
if (!Phi || !Phi->hasOneUse() || Phi->getNumIncomingValues() != 2 ||
|
||||||
|
!match(Phi->getIncomingValue(0), m_Zero()) ||
|
||||||
|
Phi->getIncomingValue(1) != &II)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
Type *WideTy =
|
||||||
|
VectorType::get(IntegerType::getInt8Ty(II.getContext()),
|
||||||
|
cast<VectorType>(II.getType())->getElementCount());
|
||||||
|
|
||||||
|
IRBuilder<> Builder(Phi);
|
||||||
|
PHINode *WidePhi = Builder.CreatePHI(WideTy, 2);
|
||||||
|
WidePhi->addIncoming(ConstantAggregateZero::get(WideTy),
|
||||||
|
Phi->getIncomingBlock(0));
|
||||||
|
Builder.SetInsertPoint(&II);
|
||||||
|
Value *WideTrue = Builder.CreateZExt(True, WideTy);
|
||||||
|
Value *WideMerge = Builder.CreateIntrinsic(Intrinsic::vp_merge, {WideTy},
|
||||||
|
{Mask, WideTrue, WidePhi, EVL});
|
||||||
|
WidePhi->addIncoming(WideMerge, Phi->getIncomingBlock(1));
|
||||||
|
Value *Trunc = Builder.CreateTrunc(WideMerge, II.getType());
|
||||||
|
|
||||||
|
II.replaceAllUsesWith(Trunc);
|
||||||
|
|
||||||
|
// Break the cycle and delete the old chain.
|
||||||
|
Phi->setIncomingValue(1, Phi->getIncomingValue(0));
|
||||||
|
llvm::RecursivelyDeleteTriviallyDeadInstructions(&II);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// LLVM vector reduction intrinsics return a scalar result, but on RISC-V vector
|
// LLVM vector reduction intrinsics return a scalar result, but on RISC-V vector
|
||||||
// reduction instructions write the result in the first element of a vector
|
// reduction instructions write the result in the first element of a vector
|
||||||
// register. So when a reduction in a loop uses a scalar phi, we end up with
|
// register. So when a reduction in a loop uses a scalar phi, we end up with
|
||||||
@ -138,6 +210,9 @@ bool RISCVCodeGenPrepare::visitIntrinsicInst(IntrinsicInst &I) {
|
|||||||
if (expandVPStrideLoad(I))
|
if (expandVPStrideLoad(I))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (widenVPMerge(I))
|
||||||
|
return true;
|
||||||
|
|
||||||
if (I.getIntrinsicID() != Intrinsic::vector_reduce_fadd &&
|
if (I.getIntrinsicID() != Intrinsic::vector_reduce_fadd &&
|
||||||
!isa<VPReductionIntrinsic>(&I))
|
!isa<VPReductionIntrinsic>(&I))
|
||||||
return false;
|
return false;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||||
; RUN: llc < %s -mtriple=riscv64 | FileCheck %s
|
; RUN: llc < %s -mtriple=riscv64 -mattr=+v | FileCheck %s
|
||||||
|
|
||||||
|
|
||||||
; Make sure we don't emit a pair of shift for the zext in the preheader. We
|
; Make sure we don't emit a pair of shift for the zext in the preheader. We
|
||||||
@ -127,3 +127,101 @@ for.body: ; preds = %for.body, %for.body
|
|||||||
%niter.ncmp.1 = icmp eq i64 %niter.next.1, %unroll_iter
|
%niter.ncmp.1 = icmp eq i64 %niter.next.1, %unroll_iter
|
||||||
br i1 %niter.ncmp.1, label %for.cond.cleanup.loopexit.unr-lcssa, label %for.body
|
br i1 %niter.ncmp.1, label %for.cond.cleanup.loopexit.unr-lcssa, label %for.body
|
||||||
}
|
}
|
||||||
|
|
||||||
|
define i1 @widen_anyof_rdx(ptr %p, i64 %n) {
|
||||||
|
; CHECK-LABEL: widen_anyof_rdx:
|
||||||
|
; CHECK: # %bb.0: # %entry
|
||||||
|
; CHECK-NEXT: li a2, 0
|
||||||
|
; CHECK-NEXT: vsetvli a3, zero, e8, mf2, ta, ma
|
||||||
|
; CHECK-NEXT: vmv.v.i v8, 0
|
||||||
|
; CHECK-NEXT: .LBB2_1: # %loop
|
||||||
|
; CHECK-NEXT: # =>This Inner Loop Header: Depth=1
|
||||||
|
; CHECK-NEXT: sub a3, a1, a2
|
||||||
|
; CHECK-NEXT: slli a4, a2, 2
|
||||||
|
; CHECK-NEXT: vsetvli a3, a3, e32, m2, ta, ma
|
||||||
|
; CHECK-NEXT: add a4, a0, a4
|
||||||
|
; CHECK-NEXT: vle32.v v10, (a4)
|
||||||
|
; CHECK-NEXT: vmsne.vi v0, v10, 0
|
||||||
|
; CHECK-NEXT: add a2, a2, a3
|
||||||
|
; CHECK-NEXT: vsetvli zero, zero, e8, mf2, tu, ma
|
||||||
|
; CHECK-NEXT: vmerge.vim v8, v8, 1, v0
|
||||||
|
; CHECK-NEXT: blt a2, a1, .LBB2_1
|
||||||
|
; CHECK-NEXT: # %bb.2: # %exit
|
||||||
|
; CHECK-NEXT: vsetvli a0, zero, e8, mf2, ta, ma
|
||||||
|
; CHECK-NEXT: vand.vi v8, v8, 1
|
||||||
|
; CHECK-NEXT: vmsne.vi v8, v8, 0
|
||||||
|
; CHECK-NEXT: vcpop.m a0, v8
|
||||||
|
; CHECK-NEXT: snez a0, a0
|
||||||
|
; CHECK-NEXT: ret
|
||||||
|
entry:
|
||||||
|
br label %loop
|
||||||
|
loop:
|
||||||
|
%iv = phi i64 [ 0, %entry ], [ %iv.next, %loop ]
|
||||||
|
%phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
%avl = sub i64 %n, %iv
|
||||||
|
%evl = call i32 @llvm.experimental.get.vector.length(i64 %avl, i32 4, i1 true)
|
||||||
|
|
||||||
|
%gep = getelementptr i32, ptr %p, i64 %iv
|
||||||
|
%x = call <vscale x 4 x i32> @llvm.vp.load(ptr %gep, <vscale x 4 x i1> splat (i1 true), i32 %evl)
|
||||||
|
%cmp = icmp ne <vscale x 4 x i32> %x, zeroinitializer
|
||||||
|
%rec = call <vscale x 4 x i1> @llvm.vp.merge(<vscale x 4 x i1> %cmp, <vscale x 4 x i1> splat (i1 true), <vscale x 4 x i1> %phi, i32 %evl)
|
||||||
|
|
||||||
|
%evl.zext = zext i32 %evl to i64
|
||||||
|
%iv.next = add i64 %iv, %evl.zext
|
||||||
|
%done = icmp sge i64 %iv.next, %n
|
||||||
|
br i1 %done, label %exit, label %loop
|
||||||
|
exit:
|
||||||
|
%res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
ret i1 %res
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
define i1 @widen_anyof_rdx_use_in_loop(ptr %p, i64 %n) {
|
||||||
|
; CHECK-LABEL: widen_anyof_rdx_use_in_loop:
|
||||||
|
; CHECK: # %bb.0: # %entry
|
||||||
|
; CHECK-NEXT: li a2, 0
|
||||||
|
; CHECK-NEXT: vsetvli a3, zero, e8, mf2, ta, ma
|
||||||
|
; CHECK-NEXT: vmv.v.i v8, 0
|
||||||
|
; CHECK-NEXT: .LBB3_1: # %loop
|
||||||
|
; CHECK-NEXT: # =>This Inner Loop Header: Depth=1
|
||||||
|
; CHECK-NEXT: sub a3, a1, a2
|
||||||
|
; CHECK-NEXT: slli a4, a2, 2
|
||||||
|
; CHECK-NEXT: vsetvli a3, a3, e32, m2, ta, ma
|
||||||
|
; CHECK-NEXT: add a4, a0, a4
|
||||||
|
; CHECK-NEXT: vle32.v v10, (a4)
|
||||||
|
; CHECK-NEXT: vmsne.vi v0, v10, 0
|
||||||
|
; CHECK-NEXT: vsetvli zero, zero, e8, mf2, tu, ma
|
||||||
|
; CHECK-NEXT: vmerge.vim v8, v8, 1, v0
|
||||||
|
; CHECK-NEXT: vsetvli a5, zero, e8, mf2, ta, ma
|
||||||
|
; CHECK-NEXT: vand.vi v9, v8, 1
|
||||||
|
; CHECK-NEXT: vmsne.vi v9, v9, 0
|
||||||
|
; CHECK-NEXT: add a2, a2, a3
|
||||||
|
; CHECK-NEXT: vsm.v v9, (a4)
|
||||||
|
; CHECK-NEXT: blt a2, a1, .LBB3_1
|
||||||
|
; CHECK-NEXT: # %bb.2: # %exit
|
||||||
|
; CHECK-NEXT: vcpop.m a0, v9
|
||||||
|
; CHECK-NEXT: snez a0, a0
|
||||||
|
; CHECK-NEXT: ret
|
||||||
|
entry:
|
||||||
|
br label %loop
|
||||||
|
loop:
|
||||||
|
%iv = phi i64 [ 0, %entry ], [ %iv.next, %loop ]
|
||||||
|
%phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
%avl = sub i64 %n, %iv
|
||||||
|
%evl = call i32 @llvm.experimental.get.vector.length(i64 %avl, i32 4, i1 true)
|
||||||
|
|
||||||
|
%gep = getelementptr i32, ptr %p, i64 %iv
|
||||||
|
%x = call <vscale x 4 x i32> @llvm.vp.load(ptr %gep, <vscale x 4 x i1> splat (i1 true), i32 %evl)
|
||||||
|
%cmp = icmp ne <vscale x 4 x i32> %x, zeroinitializer
|
||||||
|
%rec = call <vscale x 4 x i1> @llvm.vp.merge(<vscale x 4 x i1> %cmp, <vscale x 4 x i1> splat (i1 true), <vscale x 4 x i1> %phi, i32 %evl)
|
||||||
|
|
||||||
|
store <vscale x 4 x i1> %rec, ptr %gep
|
||||||
|
|
||||||
|
%evl.zext = zext i32 %evl to i64
|
||||||
|
%iv.next = add i64 %iv, %evl.zext
|
||||||
|
%done = icmp sge i64 %iv.next, %n
|
||||||
|
br i1 %done, label %exit, label %loop
|
||||||
|
exit:
|
||||||
|
%res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
ret i1 %res
|
||||||
|
}
|
||||||
|
@ -103,3 +103,95 @@ define i64 @bug(i32 %x) {
|
|||||||
%b = and i64 %a, 4294967295
|
%b = and i64 %a, 4294967295
|
||||||
ret i64 %b
|
ret i64 %b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
define i1 @widen_anyof_rdx(ptr %p, i64 %n) {
|
||||||
|
; CHECK-LABEL: @widen_anyof_rdx(
|
||||||
|
; CHECK-NEXT: entry:
|
||||||
|
; CHECK-NEXT: br label [[LOOP:%.*]]
|
||||||
|
; CHECK: loop:
|
||||||
|
; CHECK-NEXT: [[IV:%.*]] = phi i64 [ 0, [[ENTRY:%.*]] ], [ [[IV_NEXT:%.*]], [[LOOP]] ]
|
||||||
|
; CHECK-NEXT: [[TMP0:%.*]] = phi <vscale x 4 x i8> [ zeroinitializer, [[ENTRY]] ], [ [[TMP1:%.*]], [[LOOP]] ]
|
||||||
|
; CHECK-NEXT: [[AVL:%.*]] = sub i64 [[N:%.*]], [[IV]]
|
||||||
|
; CHECK-NEXT: [[EVL:%.*]] = call i32 @llvm.experimental.get.vector.length.i64(i64 [[AVL]], i32 4, i1 true)
|
||||||
|
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i32, ptr [[P:%.*]], i64 [[IV]]
|
||||||
|
; CHECK-NEXT: [[X:%.*]] = call <vscale x 4 x i32> @llvm.vp.load.nxv4i32.p0(ptr [[GEP]], <vscale x 4 x i1> splat (i1 true), i32 [[EVL]])
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ne <vscale x 4 x i32> [[X]], zeroinitializer
|
||||||
|
; CHECK-NEXT: [[TMP1]] = call <vscale x 4 x i8> @llvm.vp.merge.nxv4i8(<vscale x 4 x i1> [[CMP]], <vscale x 4 x i8> splat (i8 1), <vscale x 4 x i8> [[TMP0]], i32 [[EVL]])
|
||||||
|
; CHECK-NEXT: [[TMP4:%.*]] = trunc <vscale x 4 x i8> [[TMP1]] to <vscale x 4 x i1>
|
||||||
|
; CHECK-NEXT: [[EVL_ZEXT:%.*]] = zext i32 [[EVL]] to i64
|
||||||
|
; CHECK-NEXT: [[IV_NEXT]] = add i64 [[IV]], [[EVL_ZEXT]]
|
||||||
|
; CHECK-NEXT: [[DONE:%.*]] = icmp sge i64 [[IV_NEXT]], [[N]]
|
||||||
|
; CHECK-NEXT: br i1 [[DONE]], label [[EXIT:%.*]], label [[LOOP]]
|
||||||
|
; CHECK: exit:
|
||||||
|
; CHECK-NEXT: [[RES:%.*]] = call i1 @llvm.vector.reduce.or.nxv4i1(<vscale x 4 x i1> [[TMP4]])
|
||||||
|
; CHECK-NEXT: ret i1 [[RES]]
|
||||||
|
;
|
||||||
|
entry:
|
||||||
|
br label %loop
|
||||||
|
loop:
|
||||||
|
%iv = phi i64 [ 0, %entry ], [ %iv.next, %loop ]
|
||||||
|
%phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
%avl = sub i64 %n, %iv
|
||||||
|
%evl = call i32 @llvm.experimental.get.vector.length(i64 %avl, i32 4, i1 true)
|
||||||
|
|
||||||
|
%gep = getelementptr i32, ptr %p, i64 %iv
|
||||||
|
%x = call <vscale x 4 x i32> @llvm.vp.load(ptr %gep, <vscale x 4 x i1> splat (i1 true), i32 %evl)
|
||||||
|
%cmp = icmp ne <vscale x 4 x i32> %x, zeroinitializer
|
||||||
|
%rec = call <vscale x 4 x i1> @llvm.vp.merge(<vscale x 4 x i1> %cmp, <vscale x 4 x i1> splat (i1 true), <vscale x 4 x i1> %phi, i32 %evl)
|
||||||
|
|
||||||
|
%evl.zext = zext i32 %evl to i64
|
||||||
|
%iv.next = add i64 %iv, %evl.zext
|
||||||
|
%done = icmp sge i64 %iv.next, %n
|
||||||
|
br i1 %done, label %exit, label %loop
|
||||||
|
exit:
|
||||||
|
%res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
ret i1 %res
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
define i1 @widen_anyof_rdx_use_in_loop(ptr %p, i64 %n) {
|
||||||
|
; CHECK-LABEL: @widen_anyof_rdx_use_in_loop(
|
||||||
|
; CHECK-NEXT: entry:
|
||||||
|
; CHECK-NEXT: br label [[LOOP:%.*]]
|
||||||
|
; CHECK: loop:
|
||||||
|
; CHECK-NEXT: [[IV:%.*]] = phi i64 [ 0, [[ENTRY:%.*]] ], [ [[IV_NEXT:%.*]], [[LOOP]] ]
|
||||||
|
; CHECK-NEXT: [[TMP0:%.*]] = phi <vscale x 4 x i8> [ zeroinitializer, [[ENTRY]] ], [ [[TMP1:%.*]], [[LOOP]] ]
|
||||||
|
; CHECK-NEXT: [[AVL:%.*]] = sub i64 [[N:%.*]], [[IV]]
|
||||||
|
; CHECK-NEXT: [[EVL:%.*]] = call i32 @llvm.experimental.get.vector.length.i64(i64 [[AVL]], i32 4, i1 true)
|
||||||
|
; CHECK-NEXT: [[GEP:%.*]] = getelementptr i32, ptr [[P:%.*]], i64 [[IV]]
|
||||||
|
; CHECK-NEXT: [[X:%.*]] = call <vscale x 4 x i32> @llvm.vp.load.nxv4i32.p0(ptr [[GEP]], <vscale x 4 x i1> splat (i1 true), i32 [[EVL]])
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ne <vscale x 4 x i32> [[X]], zeroinitializer
|
||||||
|
; CHECK-NEXT: [[TMP1]] = call <vscale x 4 x i8> @llvm.vp.merge.nxv4i8(<vscale x 4 x i1> [[CMP]], <vscale x 4 x i8> splat (i8 1), <vscale x 4 x i8> [[TMP0]], i32 [[EVL]])
|
||||||
|
; CHECK-NEXT: [[REC:%.*]] = trunc <vscale x 4 x i8> [[TMP1]] to <vscale x 4 x i1>
|
||||||
|
; CHECK-NEXT: store <vscale x 4 x i1> [[REC]], ptr [[GEP]], align 1
|
||||||
|
; CHECK-NEXT: [[EVL_ZEXT:%.*]] = zext i32 [[EVL]] to i64
|
||||||
|
; CHECK-NEXT: [[IV_NEXT]] = add i64 [[IV]], [[EVL_ZEXT]]
|
||||||
|
; CHECK-NEXT: [[DONE:%.*]] = icmp sge i64 [[IV_NEXT]], [[N]]
|
||||||
|
; CHECK-NEXT: br i1 [[DONE]], label [[EXIT:%.*]], label [[LOOP]]
|
||||||
|
; CHECK: exit:
|
||||||
|
; CHECK-NEXT: [[RES:%.*]] = call i1 @llvm.vector.reduce.or.nxv4i1(<vscale x 4 x i1> [[REC]])
|
||||||
|
; CHECK-NEXT: ret i1 [[RES]]
|
||||||
|
;
|
||||||
|
entry:
|
||||||
|
br label %loop
|
||||||
|
loop:
|
||||||
|
%iv = phi i64 [ 0, %entry ], [ %iv.next, %loop ]
|
||||||
|
%phi = phi <vscale x 4 x i1> [ zeroinitializer, %entry ], [ %rec, %loop ]
|
||||||
|
%avl = sub i64 %n, %iv
|
||||||
|
%evl = call i32 @llvm.experimental.get.vector.length(i64 %avl, i32 4, i1 true)
|
||||||
|
|
||||||
|
%gep = getelementptr i32, ptr %p, i64 %iv
|
||||||
|
%x = call <vscale x 4 x i32> @llvm.vp.load(ptr %gep, <vscale x 4 x i1> splat (i1 true), i32 %evl)
|
||||||
|
%cmp = icmp ne <vscale x 4 x i32> %x, zeroinitializer
|
||||||
|
%rec = call <vscale x 4 x i1> @llvm.vp.merge(<vscale x 4 x i1> %cmp, <vscale x 4 x i1> splat (i1 true), <vscale x 4 x i1> %phi, i32 %evl)
|
||||||
|
|
||||||
|
store <vscale x 4 x i1> %rec, ptr %gep
|
||||||
|
|
||||||
|
%evl.zext = zext i32 %evl to i64
|
||||||
|
%iv.next = add i64 %iv, %evl.zext
|
||||||
|
%done = icmp sge i64 %iv.next, %n
|
||||||
|
br i1 %done, label %exit, label %loop
|
||||||
|
exit:
|
||||||
|
%res = call i1 @llvm.vector.reduce.or(<vscale x 4 x i1> %rec)
|
||||||
|
ret i1 %res
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user