Revert "[RISCV] Special case sign extended scalars when type legalizing nxvXi64 ...
authorCraig Topper <craig.topper@sifive.com>
Mon, 21 Mar 2022 21:55:39 +0000 (14:55 -0700)
committerCraig Topper <craig.topper@sifive.com>
Mon, 21 Mar 2022 21:58:11 +0000 (14:58 -0700)
This reverts commit 8c4937b33fe9090546f6dc834e174177075b5084.

Committed by mistake.

llvm/lib/Target/RISCV/RISCVISelLowering.cpp
llvm/test/CodeGen/RISCV/rvv/vadd.ll

index 2ce5405..d793b7f 100644 (file)
@@ -4623,9 +4623,11 @@ static SDValue lowerVectorIntrinsicScalars(SDValue Op, SelectionDAG &DAG,
 
   // If this is a sign-extended 32-bit constant, we can truncate it and rely
   // on the instruction to sign-extend since SEW>XLEN.
-  if (DAG.ComputeNumSignBits(ScalarOp) > 32) {
-    ScalarOp = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, ScalarOp);
-    return DAG.getNode(Op->getOpcode(), DL, Op->getVTList(), Operands);
+  if (auto *CVal = dyn_cast<ConstantSDNode>(ScalarOp)) {
+    if (isInt<32>(CVal->getSExtValue())) {
+      ScalarOp = DAG.getConstant(CVal->getSExtValue(), DL, MVT::i32);
+      return DAG.getNode(Op->getOpcode(), DL, Op->getVTList(), Operands);
+    }
   }
 
   switch (IntNo) {
index c6328f4..ac5dde5 100644 (file)
@@ -1881,49 +1881,6 @@ entry:
   ret <vscale x 1 x i64> %a
 }
 
-define <vscale x 1 x i64> @intrinsic_vadd_vx_sext_nxv1i64_nxv1i64_i64(<vscale x 1 x i64> %0, i32 %1, iXLen %2) nounwind {
-; RV32-LABEL: intrinsic_vadd_vx_sext_nxv1i64_nxv1i64_i64:
-; RV32:       # %bb.0: # %entry
-; RV32-NEXT:    vsetvli zero, a1, e64, m1, ta, mu
-; RV32-NEXT:    vadd.vx v8, v8, a0
-; RV32-NEXT:    ret
-;
-; RV64-LABEL: intrinsic_vadd_vx_sext_nxv1i64_nxv1i64_i64:
-; RV64:       # %bb.0: # %entry
-; RV64-NEXT:    sext.w a0, a0
-; RV64-NEXT:    vsetvli zero, a1, e64, m1, ta, mu
-; RV64-NEXT:    vadd.vx v8, v8, a0
-; RV64-NEXT:    ret
-entry:
-  %ext = sext i32 %1 to i64
-  %a = call <vscale x 1 x i64> @llvm.riscv.vadd.nxv1i64.i64(
-    <vscale x 1 x i64> undef,
-    <vscale x 1 x i64> %0,
-    i64 %ext,
-    iXLen %2)
-
-  ret <vscale x 1 x i64> %a
-}
-
-define <vscale x 1 x i64> @intrinsic_vadd_vx_sextload_nxv1i64_nxv1i64_i64(<vscale x 1 x i64> %0, i32* %1, iXLen %2) nounwind {
-; CHECK-LABEL: intrinsic_vadd_vx_sextload_nxv1i64_nxv1i64_i64:
-; CHECK:       # %bb.0: # %entry
-; CHECK-NEXT:    lw a0, 0(a0)
-; CHECK-NEXT:    vsetvli zero, a1, e64, m1, ta, mu
-; CHECK-NEXT:    vadd.vx v8, v8, a0
-; CHECK-NEXT:    ret
-entry:
-  %load = load i32, i32* %1
-  %ext = sext i32 %load to i64
-  %a = call <vscale x 1 x i64> @llvm.riscv.vadd.nxv1i64.i64(
-    <vscale x 1 x i64> undef,
-    <vscale x 1 x i64> %0,
-    i64 %ext,
-    iXLen %2)
-
-  ret <vscale x 1 x i64> %a
-}
-
 declare <vscale x 1 x i64> @llvm.riscv.vadd.mask.nxv1i64.i64(
   <vscale x 1 x i64>,
   <vscale x 1 x i64>,