Skip to content

Commit 5a80dc4

Browse files
committed
[VP][SelectionDAG] Add a target-configurable EVL operand type
This patch adds a way for the target to configure the type it uses for the explicit vector length operands of VP SDNodes. The type must be a legal integer type (there is still no target-independent legalization of this operand) and must currently be at least as big as i32, the type used by the IR intrinsics. An implicit zero-extension takes place on targets which choose a larger type. All VP nodes should be created with this type used for the EVL operand. This allows 64-bit RISC-V to avoid custom legalization of all VP nodes, keeping them in their target-independent form for that bit longer. Reviewed By: simoll Differential Revision: https://reviews.llvm.org/D103027
1 parent 9091ecd commit 5a80dc4

File tree

4 files changed

+28
-20
lines changed

4 files changed

+28
-20
lines changed

llvm/include/llvm/CodeGen/TargetLowering.h

+6
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,12 @@ class TargetLoweringBase {
393393
return getPointerTy(DL);
394394
}
395395

396+
/// Returns the type to be used for the EVL/AVL operand of VP nodes:
397+
/// ISD::VP_ADD, ISD::VP_SUB, etc. It must be a legal scalar integer type,
398+
/// and must be at least as large as i32. The EVL is implicitly zero-extended
399+
/// to any larger type.
400+
virtual MVT getVPExplicitVectorLengthTy() const { return MVT::i32; }
401+
396402
/// This callback is used to inspect load/store instructions and add
397403
/// target-specific MachineMemOperand flags to them. The default
398404
/// implementation does nothing.

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

+14-3
Original file line numberDiff line numberDiff line change
@@ -7296,19 +7296,30 @@ static unsigned getISDForVPIntrinsic(const VPIntrinsic &VPIntrin) {
72967296

72977297
void SelectionDAGBuilder::visitVectorPredicationIntrinsic(
72987298
const VPIntrinsic &VPIntrin) {
7299+
SDLoc DL = getCurSDLoc();
72997300
unsigned Opcode = getISDForVPIntrinsic(VPIntrin);
73007301

73017302
SmallVector<EVT, 4> ValueVTs;
73027303
const TargetLowering &TLI = DAG.getTargetLoweringInfo();
73037304
ComputeValueVTs(TLI, DAG.getDataLayout(), VPIntrin.getType(), ValueVTs);
73047305
SDVTList VTs = DAG.getVTList(ValueVTs);
73057306

7307+
auto EVLParamPos =
7308+
VPIntrinsic::GetVectorLengthParamPos(VPIntrin.getIntrinsicID());
7309+
7310+
MVT EVLParamVT = TLI.getVPExplicitVectorLengthTy();
7311+
assert(EVLParamVT.isScalarInteger() && EVLParamVT.bitsGE(MVT::i32) &&
7312+
"Unexpected target EVL type");
7313+
73067314
// Request operands.
73077315
SmallVector<SDValue, 7> OpValues;
7308-
for (int i = 0; i < (int)VPIntrin.getNumArgOperands(); ++i)
7309-
OpValues.push_back(getValue(VPIntrin.getArgOperand(i)));
7316+
for (int I = 0; I < (int)VPIntrin.getNumArgOperands(); ++I) {
7317+
auto Op = getValue(VPIntrin.getArgOperand(I));
7318+
if (I == EVLParamPos)
7319+
Op = DAG.getNode(ISD::ZERO_EXTEND, DL, EVLParamVT, Op);
7320+
OpValues.push_back(Op);
7321+
}
73107322

7311-
SDLoc DL = getCurSDLoc();
73127323
SDValue Result = DAG.getNode(Opcode, DL, VTs, OpValues);
73137324
setValue(&VPIntrin, Result);
73147325
}

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

+6-17
Original file line numberDiff line numberDiff line change
@@ -506,12 +506,8 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
506506
setOperationAction(ISD::VECREDUCE_UMAX, VT, Custom);
507507
setOperationAction(ISD::VECREDUCE_UMIN, VT, Custom);
508508

509-
for (unsigned VPOpc : IntegerVPOps) {
509+
for (unsigned VPOpc : IntegerVPOps)
510510
setOperationAction(VPOpc, VT, Custom);
511-
// RV64 must custom-legalize the i32 EVL parameter.
512-
if (Subtarget.is64Bit())
513-
setOperationAction(VPOpc, MVT::i32, Custom);
514-
}
515511

516512
setOperationAction(ISD::MLOAD, VT, Custom);
517513
setOperationAction(ISD::MSTORE, VT, Custom);
@@ -722,12 +718,8 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
722718
setOperationAction(ISD::VECREDUCE_UMAX, VT, Custom);
723719
setOperationAction(ISD::VECREDUCE_UMIN, VT, Custom);
724720

725-
for (unsigned VPOpc : IntegerVPOps) {
721+
for (unsigned VPOpc : IntegerVPOps)
726722
setOperationAction(VPOpc, VT, Custom);
727-
// RV64 must custom-legalize the i32 EVL parameter.
728-
if (Subtarget.is64Bit())
729-
setOperationAction(VPOpc, MVT::i32, Custom);
730-
}
731723
}
732724

733725
for (MVT VT : MVT::fp_fixedlen_vector_valuetypes()) {
@@ -835,6 +827,10 @@ EVT RISCVTargetLowering::getSetCCResultType(const DataLayout &DL,
835827
return VT.changeVectorElementTypeToInteger();
836828
}
837829

830+
MVT RISCVTargetLowering::getVPExplicitVectorLengthTy() const {
831+
return Subtarget.getXLenVT();
832+
}
833+
838834
bool RISCVTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
839835
const CallInst &I,
840836
MachineFunction &MF,
@@ -4282,17 +4278,10 @@ SDValue RISCVTargetLowering::lowerVPOp(SDValue Op, SelectionDAG &DAG,
42824278
unsigned RISCVISDOpc) const {
42834279
SDLoc DL(Op);
42844280
MVT VT = Op.getSimpleValueType();
4285-
Optional<unsigned> EVLIdx = ISD::getVPExplicitVectorLengthIdx(Op.getOpcode());
4286-
42874281
SmallVector<SDValue, 4> Ops;
4288-
MVT XLenVT = Subtarget.getXLenVT();
42894282

42904283
for (const auto &OpIdx : enumerate(Op->ops())) {
42914284
SDValue V = OpIdx.value();
4292-
if ((unsigned)OpIdx.index() == EVLIdx) {
4293-
Ops.push_back(DAG.getZExtOrTrunc(V, DL, XLenVT));
4294-
continue;
4295-
}
42964285
assert(!isa<VTSDNode>(V) && "Unexpected VTSDNode node!");
42974286
// Pass through operands which aren't fixed-length vectors.
42984287
if (!V.getValueType().isFixedLengthVector()) {

llvm/lib/Target/RISCV/RISCVISelLowering.h

+2
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,8 @@ class RISCVTargetLowering : public TargetLowering {
561561

562562
bool useRVVForFixedLengthVectorVT(MVT VT) const;
563563

564+
MVT getVPExplicitVectorLengthTy() const override;
565+
564566
/// RVV code generation for fixed length vectors does not lower all
565567
/// BUILD_VECTORs. This makes BUILD_VECTOR legalisation a source of stores to
566568
/// merge. However, merging them creates a BUILD_VECTOR that is just as

0 commit comments

Comments
 (0)