[llvm] e6c3d94 - [InstCombine] Add test for foldSelectICmpAndBinOp with range attribute. (NFC)

Andreas Jonson via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 11:11:17 PDT 2025


Author: Andreas Jonson
Date: 2025-03-18T19:10:00+01:00
New Revision: e6c3d94915f55cf01b0a29266f0ea9881b4676f7

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

LOG: [InstCombine] Add test for foldSelectICmpAndBinOp with range attribute. (NFC)

Added: 
    

Modified: 
    llvm/test/Transforms/InstCombine/select-with-bitwise-ops.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/InstCombine/select-with-bitwise-ops.ll b/llvm/test/Transforms/InstCombine/select-with-bitwise-ops.ll
index ca2e23c1d082e..a424247b676e4 100644
--- a/llvm/test/Transforms/InstCombine/select-with-bitwise-ops.ll
+++ b/llvm/test/Transforms/InstCombine/select-with-bitwise-ops.ll
@@ -1829,3 +1829,42 @@ define i8 @neg_select_trunc_or_2(i8 %x, i8 %y) {
   %select = select i1 %trunc, i8 %y, i8 %or
   ret i8 %select
 }
+
+define i8 @select_icmp_bittest_range(i8 range(i8 0, 64) %a, i8 %y) {
+; CHECK-LABEL: @select_icmp_bittest_range(
+; CHECK-NEXT:    [[CMP:%.*]] = icmp samesign ult i8 [[A:%.*]], 32
+; CHECK-NEXT:    [[OR:%.*]] = or i8 [[Y:%.*]], 2
+; CHECK-NEXT:    [[RES:%.*]] = select i1 [[CMP]], i8 [[Y]], i8 [[OR]]
+; CHECK-NEXT:    ret i8 [[RES]]
+;
+  %cmp = icmp ult i8 %a, 32
+  %or = or i8 %y, 2
+  %res = select i1 %cmp, i8 %y, i8 %or
+  ret i8 %res
+}
+
+define i8 @neg_select_icmp_bittest_range(i8 range(i8 0, 65) %a, i8 %y) {
+; CHECK-LABEL: @neg_select_icmp_bittest_range(
+; CHECK-NEXT:    [[CMP:%.*]] = icmp samesign ult i8 [[A:%.*]], 32
+; CHECK-NEXT:    [[OR:%.*]] = or i8 [[Y:%.*]], 2
+; CHECK-NEXT:    [[RES:%.*]] = select i1 [[CMP]], i8 [[Y]], i8 [[OR]]
+; CHECK-NEXT:    ret i8 [[RES]]
+;
+  %cmp = icmp ult i8 %a, 32
+  %or = or i8 %y, 2
+  %res = select i1 %cmp, i8 %y, i8 %or
+  ret i8 %res
+}
+
+define i8 @neg_select_icmp_bittest_range_2(i8 range(i8 0, 64) %a, i8 %y) {
+; CHECK-LABEL: @neg_select_icmp_bittest_range_2(
+; CHECK-NEXT:    [[CMP:%.*]] = icmp samesign ult i8 [[A:%.*]], 16
+; CHECK-NEXT:    [[OR:%.*]] = or i8 [[Y:%.*]], 2
+; CHECK-NEXT:    [[RES:%.*]] = select i1 [[CMP]], i8 [[Y]], i8 [[OR]]
+; CHECK-NEXT:    ret i8 [[RES]]
+;
+  %cmp = icmp ult i8 %a, 16
+  %or = or i8 %y, 2
+  %res = select i1 %cmp, i8 %y, i8 %or
+  ret i8 %res
+}


        


More information about the llvm-commits mailing list