@@ -4296,14 +4296,16 @@ void RISCVTargetLowering::ReplaceNodeResults(SDNode *N,
4296
4296
Results.push_back (DAG.getNode (ISD::TRUNCATE, DL, MVT::i32, NewRes));
4297
4297
break ;
4298
4298
}
4299
- case RISCVISD::SHFLI : {
4299
+ case RISCVISD::SHFL : {
4300
4300
// There is no SHFLIW instruction, but we can just promote the operation.
4301
4301
assert (N->getValueType (0 ) == MVT::i32 && Subtarget.is64Bit () &&
4302
4302
" Unexpected custom legalisation" );
4303
+ assert (isa<ConstantSDNode>(N->getOperand (1 )) && " Expected constant" );
4303
4304
SDValue NewOp0 =
4304
4305
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);
4307
4309
// ReplaceNodeResults requires we maintain the same type for the return
4308
4310
// value.
4309
4311
Results.push_back (DAG.getNode (ISD::TRUNCATE, DL, MVT::i32, NewRes));
@@ -4763,9 +4765,8 @@ static SDValue combineORToSHFL(SDValue Op, SelectionDAG &DAG,
4763
4765
return SDValue ();
4764
4766
4765
4767
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));
4769
4770
}
4770
4771
4771
4772
// Combine (GREVI (GREVI x, C2), C1) -> (GREVI x, C1^C2) when C1^C2 is
@@ -5367,12 +5368,13 @@ unsigned RISCVTargetLowering::ComputeNumSignBitsForTargetNode(
5367
5368
// more precise answer could be calculated for SRAW depending on known
5368
5369
// bits in the shift amount.
5369
5370
return 33 ;
5370
- case RISCVISD::SHFLI : {
5371
+ case RISCVISD::SHFL : {
5371
5372
// There is no SHFLIW, but a i64 SHFLI with bit 4 of the control word
5372
5373
// cleared doesn't affect bit 31. The upper 32 bits will be shuffled, but
5373
5374
// will stay within the upper 32 bits. If there were more than 32 sign bits
5374
5375
// before there will be at least 33 sign bits after.
5375
5376
if (Op.getValueType () == MVT::i64 &&
5377
+ isa<ConstantSDNode>(Op.getOperand (1 )) &&
5376
5378
(Op.getConstantOperandVal (1 ) & 0x10 ) == 0 ) {
5377
5379
unsigned Tmp = DAG.ComputeNumSignBits (Op.getOperand (0 ), Depth + 1 );
5378
5380
if (Tmp > 32 )
@@ -7107,7 +7109,7 @@ const char *RISCVTargetLowering::getTargetNodeName(unsigned Opcode) const {
7107
7109
NODE_NAME_CASE (GREVIW)
7108
7110
NODE_NAME_CASE (GORCI)
7109
7111
NODE_NAME_CASE (GORCIW)
7110
- NODE_NAME_CASE (SHFLI )
7112
+ NODE_NAME_CASE (SHFL )
7111
7113
NODE_NAME_CASE (VMV_V_X_VL)
7112
7114
NODE_NAME_CASE (VFMV_V_F_VL)
7113
7115
NODE_NAME_CASE (VMV_X_S)
0 commit comments