[llvm] 5115182 - [RISCV] Teach normaliseSetCC to canonicalize X > -1 to X >= 0 and X < 1 to 0 >= X.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 12 11:50:18 PST 2021
Author: Craig Topper
Date: 2021-03-12T11:50:10-08:00
New Revision: 51151828acad6b1e5b0719285ce7172506877fd1
URL: https://github.com/llvm/llvm-project/commit/51151828acad6b1e5b0719285ce7172506877fd1
DIFF: https://github.com/llvm/llvm-project/commit/51151828acad6b1e5b0719285ce7172506877fd1.diff
LOG: [RISCV] Teach normaliseSetCC to canonicalize X > -1 to X >= 0 and X < 1 to 0 >= X.
This allows the use of BGE with X0 instead of puting -1/1 in a
register.
Reviewed By: jrtc27
Differential Revision: https://reviews.llvm.org/D98542
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
llvm/test/CodeGen/RISCV/select-cc.ll
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 34b63b058f6e..c567464c37cf 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -820,9 +820,25 @@ bool RISCVTargetLowering::hasBitPreservingFPLogic(EVT VT) const {
}
// Changes the condition code and swaps operands if necessary, so the SetCC
-// operation matches one of the comparisons supported directly in the RISC-V
-// ISA.
-static void normaliseSetCC(SDValue &LHS, SDValue &RHS, ISD::CondCode &CC) {
+// operation matches one of the comparisons supported directly by branches
+// in the RISC-V ISA. May adjust compares to favor compare with 0 over compare
+// with 1/-1.
+static void translateSetCCForBranch(const SDLoc &DL, SDValue &LHS, SDValue &RHS,
+ ISD::CondCode &CC, SelectionDAG &DAG) {
+ // Convert X > -1 to X >= 0.
+ if (CC == ISD::SETGT && isAllOnesConstant(RHS)) {
+ RHS = DAG.getConstant(0, DL, RHS.getValueType());
+ CC = ISD::SETGE;
+ return;
+ }
+ // Convert X < 1 to 0 >= X.
+ if (CC == ISD::SETLT && isOneConstant(RHS)) {
+ RHS = LHS;
+ LHS = DAG.getConstant(0, DL, RHS.getValueType());
+ CC = ISD::SETGE;
+ return;
+ }
+
switch (CC) {
default:
break;
@@ -838,7 +854,7 @@ static void normaliseSetCC(SDValue &LHS, SDValue &RHS, ISD::CondCode &CC) {
// Return the RISC-V branch opcode that matches the given DAG integer
// condition code. The CondCode must be one of those supported by the RISC-V
-// ISA (see normaliseSetCC).
+// ISA (see translateSetCCForBranch).
static unsigned getBranchOpcodeForIntCondCode(ISD::CondCode CC) {
switch (CC) {
default:
@@ -1869,7 +1885,7 @@ SDValue RISCVTargetLowering::lowerSELECT(SDValue Op, SelectionDAG &DAG) const {
auto CC = cast<CondCodeSDNode>(CondV.getOperand(2));
ISD::CondCode CCVal = CC->get();
- normaliseSetCC(LHS, RHS, CCVal);
+ translateSetCCForBranch(DL, LHS, RHS, CCVal, DAG);
SDValue TargetCC = DAG.getConstant(CCVal, DL, XLenVT);
SDValue Ops[] = {LHS, RHS, TargetCC, TrueV, FalseV};
@@ -4156,11 +4172,11 @@ SDValue RISCVTargetLowering::PerformDAGCombine(SDNode *N,
if (Invert)
CCVal = ISD::getSetCCInverse(CCVal, LHS.getValueType());
+ SDLoc DL(N);
RHS = LHS.getOperand(1);
LHS = LHS.getOperand(0);
- normaliseSetCC(LHS, RHS, CCVal);
+ translateSetCCForBranch(DL, LHS, RHS, CCVal, DAG);
- SDLoc DL(N);
SDValue TargetCC = DAG.getConstant(CCVal, DL, Subtarget.getXLenVT());
return DAG.getNode(
RISCVISD::SELECT_CC, DL, N->getValueType(0),
diff --git a/llvm/test/CodeGen/RISCV/select-cc.ll b/llvm/test/CodeGen/RISCV/select-cc.ll
index 2b9443c153a6..edc3bf0261f7 100644
--- a/llvm/test/CodeGen/RISCV/select-cc.ll
+++ b/llvm/test/CodeGen/RISCV/select-cc.ll
@@ -58,14 +58,12 @@ define i32 @foo(i32 %a, i32 *%b) nounwind {
; RV32I-NEXT: mv a0, a2
; RV32I-NEXT: .LBB0_20:
; RV32I-NEXT: lw a2, 0(a1)
-; RV32I-NEXT: addi a3, zero, 1
-; RV32I-NEXT: blt a2, a3, .LBB0_22
+; RV32I-NEXT: blez a2, .LBB0_22
; RV32I-NEXT: # %bb.21:
; RV32I-NEXT: mv a0, a2
; RV32I-NEXT: .LBB0_22:
; RV32I-NEXT: lw a1, 0(a1)
-; RV32I-NEXT: addi a3, zero, -1
-; RV32I-NEXT: blt a3, a2, .LBB0_24
+; RV32I-NEXT: bgez a2, .LBB0_24
; RV32I-NEXT: # %bb.23:
; RV32I-NEXT: mv a0, a1
; RV32I-NEXT: .LBB0_24:
More information about the llvm-commits
mailing list