[llvm] e2a855d - [InstCombine] Fix SimplifyDemandedBits recursion cutoff for Arguments

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 1 02:44:26 PDT 2024


Author: Nikita Popov
Date: 2024-10-01T11:44:13+02:00
New Revision: e2a855def523cf3731b971ad383d2942cd425944

URL: https://github.com/llvm/llvm-project/commit/e2a855def523cf3731b971ad383d2942cd425944
DIFF: https://github.com/llvm/llvm-project/commit/e2a855def523cf3731b971ad383d2942cd425944.diff

LOG: [InstCombine] Fix SimplifyDemandedBits recursion cutoff for Arguments

There was a discrepancy between how SimplifyDemandedBits and
computeKnownBits handled the Argument case. computeKnownBits()
would use information from range attributes even once the
recursion limit has been reached.

Fixes https://github.com/llvm/llvm-project/issues/110631.

Added: 
    llvm/test/Transforms/InstCombine/instcombine-verify-known-bits.ll

Modified: 
    llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp b/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
index dd31bfa7e65f50..0ad178594be03e 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
@@ -104,15 +104,15 @@ bool InstCombinerImpl::SimplifyDemandedBits(Instruction *I, unsigned OpNo,
     return true;
   }
 
-  if (Depth == MaxAnalysisRecursionDepth)
-    return false;
-
   Instruction *VInst = dyn_cast<Instruction>(V);
   if (!VInst) {
     llvm::computeKnownBits(V, Known, Depth, Q);
     return false;
   }
 
+  if (Depth == MaxAnalysisRecursionDepth)
+    return false;
+
   Value *NewVal;
   if (VInst->hasOneUse()) {
     // If the instruction has one use, we can directly simplify it.

diff  --git a/llvm/test/Transforms/InstCombine/instcombine-verify-known-bits.ll b/llvm/test/Transforms/InstCombine/instcombine-verify-known-bits.ll
new file mode 100644
index 00000000000000..a4a2ef1c4a8744
--- /dev/null
+++ b/llvm/test/Transforms/InstCombine/instcombine-verify-known-bits.ll
@@ -0,0 +1,25 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
+; RUN: opt -S -passes=instcombine -instcombine-verify-known-bits < %s | FileCheck %s
+
+define i16 @pr110631(i32 range(i32 0, 256) %arg, i64 %arg1) {
+; CHECK-LABEL: define i16 @pr110631(
+; CHECK-SAME: i32 range(i32 0, 256) [[ARG:%.*]], i64 [[ARG1:%.*]]) {
+; CHECK-NEXT:  [[BB:.*:]]
+; CHECK-NEXT:    [[I:%.*]] = xor i32 [[ARG]], 48991
+; CHECK-NEXT:    [[TMP0:%.*]] = trunc i64 [[ARG1]] to i32
+; CHECK-NEXT:    [[I4:%.*]] = and i32 [[I]], [[TMP0]]
+; CHECK-NEXT:    [[TMP1:%.*]] = trunc nuw i32 [[I4]] to i16
+; CHECK-NEXT:    [[I8:%.*]] = xor i16 [[TMP1]], 1
+; CHECK-NEXT:    ret i16 [[I8]]
+;
+bb:
+  %i = xor i32 %arg, 48991
+  %i2 = zext i32 %i to i64
+  %i3 = and i64 %arg1, %i2
+  %i4 = trunc i64 %i3 to i32
+  %i5 = trunc i32 %i4 to i16
+  %i6 = sext i16 %i5 to i32
+  %i7 = xor i32 %i6, 1
+  %i8 = trunc i32 %i7 to i16
+  ret i16 %i8
+}


        


More information about the llvm-commits mailing list