[llvm] 7142ec3 - [RISCV] When matching RORIW, make sure the same input is given to both shifts.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 2 09:14:00 PST 2020
Author: Craig Topper
Date: 2020-11-02T09:12:40-08:00
New Revision: 7142ec3aaf55f22e9de69fc15bba61cee9b694e0
URL: https://github.com/llvm/llvm-project/commit/7142ec3aaf55f22e9de69fc15bba61cee9b694e0
DIFF: https://github.com/llvm/llvm-project/commit/7142ec3aaf55f22e9de69fc15bba61cee9b694e0.diff
LOG: [RISCV] When matching RORIW, make sure the same input is given to both shifts.
The code is looking for (sext_inreg (or (shl X, C2), (shr (and Y, C3), C1))).
We need to ensure X and Y are the same.
Differential Revision: https://reviews.llvm.org/D90580
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
llvm/test/CodeGen/RISCV/rv64Zbbp.ll
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp b/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
index 6ce084a11431..2a4abf50b106 100644
--- a/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
@@ -427,8 +427,8 @@ bool RISCVDAGToDAGISel::SelectSROIW(SDValue N, SDValue &RS1, SDValue &Shamt) {
// Check that it is a RORIW (i32 Right Rotate Immediate on RV64).
// We first check that it is the right node tree:
//
-// (SIGN_EXTEND_INREG (OR (SHL (AsserSext RS1, i32), VC2),
-// (SRL (AND (AssertSext RS2, i32), VC3), VC1)))
+// (SIGN_EXTEND_INREG (OR (SHL RS1, VC2),
+// (SRL (AND RS1, VC3), VC1)))
//
// Then we check that the constant operands respect these constraints:
//
@@ -450,7 +450,8 @@ bool RISCVDAGToDAGISel::SelectRORIW(SDValue N, SDValue &RS1, SDValue &Shamt) {
SDValue Srl = Or.getOperand(1);
if (Srl.getOperand(0).getOpcode() == ISD::AND) {
SDValue And = Srl.getOperand(0);
- if (isa<ConstantSDNode>(Srl.getOperand(1)) &&
+ if (And.getOperand(0) == Shl.getOperand(0) &&
+ isa<ConstantSDNode>(Srl.getOperand(1)) &&
isa<ConstantSDNode>(Shl.getOperand(1)) &&
isa<ConstantSDNode>(And.getOperand(1))) {
uint32_t VC1 = Srl.getConstantOperandVal(1);
diff --git a/llvm/test/CodeGen/RISCV/rv64Zbbp.ll b/llvm/test/CodeGen/RISCV/rv64Zbbp.ll
index ac62069b5f9a..cd028c04b386 100644
--- a/llvm/test/CodeGen/RISCV/rv64Zbbp.ll
+++ b/llvm/test/CodeGen/RISCV/rv64Zbbp.ll
@@ -345,8 +345,7 @@ define signext i32 @rori_i32_fshr(i32 signext %a) nounwind {
; This test is similar to the type legalized version of the fshl/fshr tests, but
; instead of having the same input to both shifts it has
diff erent inputs. Make
-; sure we don't match it has a roriw.
-; FIXME: We're currently missing a check that the inputs are the same.
+; sure we don't match it as a roriw.
define signext i32 @not_rori_i32(i32 signext %x, i32 signext %y) nounwind {
; RV64I-LABEL: not_rori_i32:
; RV64I: # %bb.0:
@@ -358,17 +357,26 @@ define signext i32 @not_rori_i32(i32 signext %x, i32 signext %y) nounwind {
;
; RV64IB-LABEL: not_rori_i32:
; RV64IB: # %bb.0:
-; RV64IB-NEXT: roriw a0, a0, 1
+; RV64IB-NEXT: slli a0, a0, 31
+; RV64IB-NEXT: srliw a1, a1, 1
+; RV64IB-NEXT: or a0, a0, a1
+; RV64IB-NEXT: sext.w a0, a0
; RV64IB-NEXT: ret
;
; RV64IBB-LABEL: not_rori_i32:
; RV64IBB: # %bb.0:
-; RV64IBB-NEXT: roriw a0, a0, 1
+; RV64IBB-NEXT: slli a0, a0, 31
+; RV64IBB-NEXT: srliw a1, a1, 1
+; RV64IBB-NEXT: or a0, a0, a1
+; RV64IBB-NEXT: sext.w a0, a0
; RV64IBB-NEXT: ret
;
; RV64IBP-LABEL: not_rori_i32:
; RV64IBP: # %bb.0:
-; RV64IBP-NEXT: roriw a0, a0, 1
+; RV64IBP-NEXT: slli a0, a0, 31
+; RV64IBP-NEXT: srliw a1, a1, 1
+; RV64IBP-NEXT: or a0, a0, a1
+; RV64IBP-NEXT: sext.w a0, a0
; RV64IBP-NEXT: ret
%a = shl i32 %x, 31
%b = lshr i32 %y, 1
More information about the llvm-commits
mailing list