Skip to content

Commit 7c9bbbf

Browse files
committed
[RISCV] Rename RISCVISD::SHFLI to RISCVISD::SHFL and don't require the second operand to be an immediate.
Prep work for adding intrinsics in the future. Left an assert that the input is constant in ReplaceNodeResults, as the intrinsic shouldn't go through that path.
1 parent b28ec3f commit 7c9bbbf

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

+10-8
Original file line numberDiff line numberDiff line change
@@ -4296,14 +4296,16 @@ void RISCVTargetLowering::ReplaceNodeResults(SDNode *N,
42964296
Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, NewRes));
42974297
break;
42984298
}
4299-
case RISCVISD::SHFLI: {
4299+
case RISCVISD::SHFL: {
43004300
// There is no SHFLIW instruction, but we can just promote the operation.
43014301
assert(N->getValueType(0) == MVT::i32 && Subtarget.is64Bit() &&
43024302
"Unexpected custom legalisation");
4303+
assert(isa<ConstantSDNode>(N->getOperand(1)) && "Expected constant");
43034304
SDValue NewOp0 =
43044305
DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, N->getOperand(0));
4305-
SDValue NewRes =
4306-
DAG.getNode(RISCVISD::SHFLI, DL, MVT::i64, NewOp0, N->getOperand(1));
4306+
SDValue NewOp1 =
4307+
DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, N->getOperand(1));
4308+
SDValue NewRes = DAG.getNode(RISCVISD::SHFL, DL, MVT::i64, NewOp0, NewOp1);
43074309
// ReplaceNodeResults requires we maintain the same type for the return
43084310
// value.
43094311
Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, NewRes));
@@ -4763,9 +4765,8 @@ static SDValue combineORToSHFL(SDValue Op, SelectionDAG &DAG,
47634765
return SDValue();
47644766

47654767
SDLoc DL(Op);
4766-
return DAG.getNode(
4767-
RISCVISD::SHFLI, DL, VT, Match1->Op,
4768-
DAG.getTargetConstant(Match1->ShAmt, DL, Subtarget.getXLenVT()));
4768+
return DAG.getNode(RISCVISD::SHFL, DL, VT, Match1->Op,
4769+
DAG.getConstant(Match1->ShAmt, DL, VT));
47694770
}
47704771

47714772
// Combine (GREVI (GREVI x, C2), C1) -> (GREVI x, C1^C2) when C1^C2 is
@@ -5367,12 +5368,13 @@ unsigned RISCVTargetLowering::ComputeNumSignBitsForTargetNode(
53675368
// more precise answer could be calculated for SRAW depending on known
53685369
// bits in the shift amount.
53695370
return 33;
5370-
case RISCVISD::SHFLI: {
5371+
case RISCVISD::SHFL: {
53715372
// There is no SHFLIW, but a i64 SHFLI with bit 4 of the control word
53725373
// cleared doesn't affect bit 31. The upper 32 bits will be shuffled, but
53735374
// will stay within the upper 32 bits. If there were more than 32 sign bits
53745375
// before there will be at least 33 sign bits after.
53755376
if (Op.getValueType() == MVT::i64 &&
5377+
isa<ConstantSDNode>(Op.getOperand(1)) &&
53765378
(Op.getConstantOperandVal(1) & 0x10) == 0) {
53775379
unsigned Tmp = DAG.ComputeNumSignBits(Op.getOperand(0), Depth + 1);
53785380
if (Tmp > 32)
@@ -7107,7 +7109,7 @@ const char *RISCVTargetLowering::getTargetNodeName(unsigned Opcode) const {
71077109
NODE_NAME_CASE(GREVIW)
71087110
NODE_NAME_CASE(GORCI)
71097111
NODE_NAME_CASE(GORCIW)
7110-
NODE_NAME_CASE(SHFLI)
7112+
NODE_NAME_CASE(SHFL)
71117113
NODE_NAME_CASE(VMV_V_X_VL)
71127114
NODE_NAME_CASE(VFMV_V_F_VL)
71137115
NODE_NAME_CASE(VMV_X_S)

llvm/lib/Target/RISCV/RISCVISelLowering.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ enum NodeType : unsigned {
9696
GREVIW,
9797
GORCI,
9898
GORCIW,
99-
SHFLI,
99+
SHFL,
100100
// Vector Extension
101101
// VMV_V_X_VL matches the semantics of vmv.v.x but includes an extra operand
102102
// for the VL value to be used for the operation.

llvm/lib/Target/RISCV/RISCVInstrInfoB.td

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def riscv_grevi : SDNode<"RISCVISD::GREVI", SDTIntBinOp>;
2929
def riscv_greviw : SDNode<"RISCVISD::GREVIW", SDT_RISCVIntBinOpW>;
3030
def riscv_gorci : SDNode<"RISCVISD::GORCI", SDTIntBinOp>;
3131
def riscv_gorciw : SDNode<"RISCVISD::GORCIW", SDT_RISCVIntBinOpW>;
32-
def riscv_shfli : SDNode<"RISCVISD::SHFLI", SDTIntBinOp>;
32+
def riscv_shfl : SDNode<"RISCVISD::SHFL", SDTIntBinOp>;
3333

3434
def UImmLog2XLenHalfAsmOperand : AsmOperandClass {
3535
let Name = "UImmLog2XLenHalf";
@@ -723,7 +723,8 @@ def : Pat<(riscv_gorci GPR:$rs1, 7), (ORCB GPR:$rs1)>;
723723
}
724724

725725
let Predicates = [HasStdExtZbp] in {
726-
def : Pat<(riscv_shfli GPR:$rs1, timm:$shamt), (SHFLI GPR:$rs1, timm:$shamt)>;
726+
def : Pat<(riscv_shfl GPR:$rs1, shfl_uimm:$shamt),
727+
(SHFLI GPR:$rs1, shfl_uimm:$shamt)>;
727728
def : Pat<(riscv_grevi GPR:$rs1, timm:$shamt), (GREVI GPR:$rs1, timm:$shamt)>;
728729
def : Pat<(riscv_gorci GPR:$rs1, timm:$shamt), (GORCI GPR:$rs1, timm:$shamt)>;
729730
} // Predicates = [HasStdExtZbp]

0 commit comments

Comments
 (0)