[llvm] goldsteinn/trunc nuw nsw icmp fold (PR #87935)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 7 12:11:32 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-transforms
Author: None (goldsteinn)
<details>
<summary>Changes</summary>
- **[InstCombine] Add tests for folding `(icmp pred (trunc nuw/nsw X), C)`; NFC**
- **[InstCombine] Fold `(icmp pred (trunc nuw/nsw X), C)` -> `(icmp pred X, (zext/sext C))`**
---
Full diff: https://github.com/llvm/llvm-project/pull/87935.diff
2 Files Affected:
- (modified) llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp (+16)
- (modified) llvm/test/Transforms/InstCombine/icmp-trunc.ll (+144)
``````````diff
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
index db302d7e526844..6a3f5ba7b0c1e7 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
@@ -5705,6 +5705,22 @@ Instruction *InstCombinerImpl::foldICmpWithTrunc(ICmpInst &ICmp) {
ICmpInst::Predicate Pred = ICmp.getPredicate();
Value *Op0 = ICmp.getOperand(0), *Op1 = ICmp.getOperand(1);
+ // Match (icmp pred (trunc nuw/nsw X), C)
+ // Which we can convert to (icmp pred X, (sext/zext C))
+ // TODO: Maybe this makes sense as a general canonicalization?
+ if (match(Op1, m_ImmConstant())) {
+ if (auto *TI = dyn_cast<TruncInst>(Op0)) {
+ Value *ExtOp0 = TI->getOperand(0);
+ Value *ExtOp1 = nullptr;
+ if (!ICmp.isSigned() && TI->hasNoUnsignedWrap())
+ ExtOp1 = Builder.CreateZExt(Op1, ExtOp0->getType());
+ else if (!ICmp.isUnsigned() && TI->hasNoSignedWrap())
+ ExtOp1 = Builder.CreateSExt(Op1, ExtOp0->getType());
+ if (ExtOp1)
+ return new ICmpInst(Pred, ExtOp0, ExtOp1);
+ }
+ }
+
// Try to canonicalize trunc + compare-to-constant into a mask + cmp.
// The trunc masks high bits while the compare may effectively mask low bits.
Value *X;
diff --git a/llvm/test/Transforms/InstCombine/icmp-trunc.ll b/llvm/test/Transforms/InstCombine/icmp-trunc.ll
index b2de9dddb21947..13f83ac5db7798 100644
--- a/llvm/test/Transforms/InstCombine/icmp-trunc.ll
+++ b/llvm/test/Transforms/InstCombine/icmp-trunc.ll
@@ -555,3 +555,147 @@ define i1 @shl1_trunc_sgt4(i32 %a) {
%r = icmp sgt i16 %t, 4
ret i1 %r
}
+
+define i1 @eq_nuw(i32 %x) {
+; DL64-LABEL: @eq_nuw(
+; DL64-NEXT: [[TMP1:%.*]] = and i32 [[X:%.*]], 255
+; DL64-NEXT: [[R:%.*]] = icmp eq i32 [[TMP1]], 123
+; DL64-NEXT: ret i1 [[R]]
+;
+; DL8-LABEL: @eq_nuw(
+; DL8-NEXT: [[R:%.*]] = icmp eq i32 [[X:%.*]], 123
+; DL8-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i32 %x to i8
+ %r = icmp eq i8 %t, 123
+ ret i1 %r
+}
+
+define i1 @ult_nuw(i32 %x) {
+; CHECK-LABEL: @ult_nuw(
+; CHECK-NEXT: [[R:%.*]] = icmp ult i32 [[X:%.*]], 45
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i32 %x to i8
+ %r = icmp ult i8 %t, 45
+ ret i1 %r
+}
+
+define i1 @ule_nuw(i32 %x) {
+; CHECK-LABEL: @ule_nuw(
+; CHECK-NEXT: [[T:%.*]] = trunc nuw i32 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp ult i32 [[X]], 46
+; CHECK-NEXT: call void @use(i8 [[T]])
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i32 %x to i8
+ %r = icmp ule i8 %t, 45
+ call void @use(i8 %t)
+ ret i1 %r
+}
+
+define i1 @ugt_nuw(i32 %x) {
+; CHECK-LABEL: @ugt_nuw(
+; CHECK-NEXT: [[R:%.*]] = icmp ugt i32 [[X:%.*]], 12
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i32 %x to i8
+ %r = icmp ugt i8 %t, 12
+ ret i1 %r
+}
+
+define i1 @uge_nuw(i48 %x) {
+; CHECK-LABEL: @uge_nuw(
+; CHECK-NEXT: [[T:%.*]] = trunc nuw i48 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp ugt i48 [[X]], 98
+; CHECK-NEXT: call void @use(i8 [[T]])
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i48 %x to i8
+ %r = icmp uge i8 %t, 99
+ call void @use(i8 %t)
+ ret i1 %r
+}
+
+define i1 @sgt_nuw_fail(i32 %x) {
+; CHECK-LABEL: @sgt_nuw_fail(
+; CHECK-NEXT: [[T:%.*]] = trunc nuw i32 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp sgt i8 [[T]], 12
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nuw i32 %x to i8
+ %r = icmp sgt i8 %t, 12
+ ret i1 %r
+}
+
+define i1 @ne_nsw(i32 %x) {
+; DL64-LABEL: @ne_nsw(
+; DL64-NEXT: [[TMP1:%.*]] = and i32 [[X:%.*]], 255
+; DL64-NEXT: [[R:%.*]] = icmp ne i32 [[TMP1]], 123
+; DL64-NEXT: ret i1 [[R]]
+;
+; DL8-LABEL: @ne_nsw(
+; DL8-NEXT: [[R:%.*]] = icmp ne i32 [[X:%.*]], 123
+; DL8-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i32 %x to i8
+ %r = icmp ne i8 %t, 123
+ ret i1 %r
+}
+
+define i1 @slt_nsw(i32 %x) {
+; CHECK-LABEL: @slt_nsw(
+; CHECK-NEXT: [[R:%.*]] = icmp slt i32 [[X:%.*]], 45
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i32 %x to i8
+ %r = icmp slt i8 %t, 45
+ ret i1 %r
+}
+
+define i1 @sle_nsw(i32 %x) {
+; CHECK-LABEL: @sle_nsw(
+; CHECK-NEXT: [[T:%.*]] = trunc nsw i32 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp slt i32 [[X]], 46
+; CHECK-NEXT: call void @use(i8 [[T]])
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i32 %x to i8
+ %r = icmp sle i8 %t, 45
+ call void @use(i8 %t)
+ ret i1 %r
+}
+
+define i1 @sgt_nsw(i32 %x) {
+; CHECK-LABEL: @sgt_nsw(
+; CHECK-NEXT: [[R:%.*]] = icmp sgt i32 [[X:%.*]], 12
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i32 %x to i8
+ %r = icmp sgt i8 %t, 12
+ ret i1 %r
+}
+
+define i1 @sge_nsw(i48 %x) {
+; CHECK-LABEL: @sge_nsw(
+; CHECK-NEXT: [[T:%.*]] = trunc nsw i48 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp sgt i48 [[X]], 98
+; CHECK-NEXT: call void @use(i8 [[T]])
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i48 %x to i8
+ %r = icmp sge i8 %t, 99
+ call void @use(i8 %t)
+ ret i1 %r
+}
+
+define i1 @ule_nsw_fail(i32 %x) {
+; CHECK-LABEL: @ule_nsw_fail(
+; CHECK-NEXT: [[T:%.*]] = trunc nsw i32 [[X:%.*]] to i8
+; CHECK-NEXT: [[R:%.*]] = icmp ult i8 [[T]], 46
+; CHECK-NEXT: ret i1 [[R]]
+;
+ %t = trunc nsw i32 %x to i8
+ %r = icmp ule i8 %t, 45
+ ret i1 %r
+}
``````````
</details>
https://github.com/llvm/llvm-project/pull/87935
More information about the llvm-commits
mailing list