[llvm] [ConstraintElim] Teach checkAndReplaceCondition about samesign (PR #128168)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 01:30:38 PST 2025
================
@@ -303,3 +303,43 @@ define i1 @ugt_assumed_positive_values(i8 %a, i8 %b) {
ret i1 %result
}
+
+define i1 @samesign_flipped_signedness_1(i8 %a, i8 %b) {
+; CHECK-LABEL: @samesign_flipped_signedness_1(
+; CHECK-NEXT: [[CMP_UGT:%.*]] = icmp ugt i8 [[A:%.*]], [[B:%.*]]
+; CHECK-NEXT: br i1 [[CMP_UGT]], label [[GREATER:%.*]], label [[EXIT:%.*]]
+; CHECK: greater:
+; CHECK-NEXT: ret i1 true
+; CHECK: exit:
+; CHECK-NEXT: ret i1 false
+;
+ %cmp_ugt = icmp ugt i8 %a, %b
+ br i1 %cmp_ugt, label %greater, label %exit
+
+greater:
+ %cmp_sgt = icmp samesign sgt i8 %a, %b
+ ret i1 %cmp_sgt
+
+exit:
+ ret i1 false
+}
+
+define i1 @samesign_flipped_signedness_2(i32 %a) {
+; CHECK-LABEL: @samesign_flipped_signedness_2(
+; CHECK-NEXT: [[CMP_ULT:%.*]] = icmp samesign ult i32 [[A:%.*]], 65
+; CHECK-NEXT: br i1 [[CMP_ULT]], label [[FOR_COND_PREHEADER:%.*]], label [[IF_ELSE:%.*]]
+; CHECK: for.cond.preheader:
+; CHECK-NEXT: ret i1 false
+; CHECK: if.else:
+; CHECK-NEXT: ret i1 true
+;
+ %cmp_ult = icmp samesign ult i32 %a, 65
+ br i1 %cmp_ult, label %for.cond.preheader, label %if.else
+
+for.cond.preheader:
+ ret i1 false
+
+if.else:
+ %cmp_ugt = icmp samesign ugt i32 %a, -65
+ ret i1 %cmp_ugt
----------------
artagnon wrote:
Sorry, my bad! There are already tests for this. If you could just write one test with %a and %b and another with %a and a constant, that would be good.
https://github.com/llvm/llvm-project/pull/128168
More information about the llvm-commits
mailing list