[llvm] d63f117 - [RISCV] Support RISCVISD::SELECT_CC in ComputeNumSignBitsForTargetNode.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 13 18:07:37 PDT 2021
Author: Craig Topper
Date: 2021-08-13T18:00:09-07:00
New Revision: d63f117210d1e189857e49320c15f486e453696a
URL: https://github.com/llvm/llvm-project/commit/d63f117210d1e189857e49320c15f486e453696a
DIFF: https://github.com/llvm/llvm-project/commit/d63f117210d1e189857e49320c15f486e453696a.diff
LOG: [RISCV] Support RISCVISD::SELECT_CC in ComputeNumSignBitsForTargetNode.
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 0c92a1f54d4d6..8da71a1695a0e 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -6723,6 +6723,12 @@ unsigned RISCVTargetLowering::ComputeNumSignBitsForTargetNode(
switch (Op.getOpcode()) {
default:
break;
+ case RISCVISD::SELECT_CC: {
+ unsigned Tmp = DAG.ComputeNumSignBits(Op.getOperand(3), DemandedElts, Depth + 1);
+ if (Tmp == 1) return 1; // Early out.
+ unsigned Tmp2 = DAG.ComputeNumSignBits(Op.getOperand(4), DemandedElts, Depth + 1);
+ return std::min(Tmp, Tmp2);
+ }
case RISCVISD::SLLW:
case RISCVISD::SRAW:
case RISCVISD::SRLW:
diff --git a/llvm/test/CodeGen/RISCV/select-cc.ll b/llvm/test/CodeGen/RISCV/select-cc.ll
index edc3bf0261f7a..bffba3aaa81bf 100644
--- a/llvm/test/CodeGen/RISCV/select-cc.ll
+++ b/llvm/test/CodeGen/RISCV/select-cc.ll
@@ -4,7 +4,7 @@
; RUN: llc -mtriple=riscv32 -mattr=+experimental-zbt -disable-block-placement -verify-machineinstrs < %s \
; RUN: | FileCheck -check-prefix=RV32IBT %s
-define i32 @foo(i32 %a, i32 *%b) nounwind {
+define signext i32 @foo(i32 signext %a, i32 *%b) nounwind {
; RV32I-LABEL: foo:
; RV32I: # %bb.0:
; RV32I-NEXT: lw a2, 0(a1)
@@ -159,3 +159,58 @@ define i32 @foo(i32 %a, i32 *%b) nounwind {
ret i32 %val24
}
+
+; Test that we can ComputeNumSignBits across basic blocks when the live out is
+; RISCVISD::SELECT_CC. There should be no slli+srai or sext.h in the output.
+define signext i16 @numsignbits(i16 signext %0, i16 signext %1, i16 signext %2, i16 signext %3) nounwind {
+; RV32I-LABEL: numsignbits:
+; RV32I: # %bb.0:
+; RV32I-NEXT: addi sp, sp, -16
+; RV32I-NEXT: sw ra, 12(sp) # 4-byte Folded Spill
+; RV32I-NEXT: sw s0, 8(sp) # 4-byte Folded Spill
+; RV32I-NEXT: mv s0, a3
+; RV32I-NEXT: beqz a0, .LBB1_2
+; RV32I-NEXT: # %bb.1:
+; RV32I-NEXT: mv s0, a2
+; RV32I-NEXT: .LBB1_2:
+; RV32I-NEXT: beqz a1, .LBB1_4
+; RV32I-NEXT: # %bb.3:
+; RV32I-NEXT: mv a0, s0
+; RV32I-NEXT: call bar at plt
+; RV32I-NEXT: .LBB1_4:
+; RV32I-NEXT: mv a0, s0
+; RV32I-NEXT: lw s0, 8(sp) # 4-byte Folded Reload
+; RV32I-NEXT: lw ra, 12(sp) # 4-byte Folded Reload
+; RV32I-NEXT: addi sp, sp, 16
+; RV32I-NEXT: ret
+;
+; RV32IBT-LABEL: numsignbits:
+; RV32IBT: # %bb.0:
+; RV32IBT-NEXT: addi sp, sp, -16
+; RV32IBT-NEXT: sw ra, 12(sp) # 4-byte Folded Spill
+; RV32IBT-NEXT: sw s0, 8(sp) # 4-byte Folded Spill
+; RV32IBT-NEXT: cmov s0, a0, a2, a3
+; RV32IBT-NEXT: beqz a1, .LBB1_2
+; RV32IBT-NEXT: # %bb.1:
+; RV32IBT-NEXT: mv a0, s0
+; RV32IBT-NEXT: call bar at plt
+; RV32IBT-NEXT: .LBB1_2:
+; RV32IBT-NEXT: mv a0, s0
+; RV32IBT-NEXT: lw s0, 8(sp) # 4-byte Folded Reload
+; RV32IBT-NEXT: lw ra, 12(sp) # 4-byte Folded Reload
+; RV32IBT-NEXT: addi sp, sp, 16
+; RV32IBT-NEXT: ret
+ %5 = icmp eq i16 %0, 0
+ %6 = select i1 %5, i16 %3, i16 %2
+ %7 = icmp eq i16 %1, 0
+ br i1 %7, label %9, label %8
+
+8: ; preds = %4
+ tail call void @bar(i16 signext %6)
+ br label %9
+
+9: ; preds = %8, %4
+ ret i16 %6
+}
+
+declare void @bar(i16 signext)
More information about the llvm-commits
mailing list