-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[InstCombine] KnownBits::isNonNegative should recognize b - a
after a <= b
#145105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e6612fe
Add test case.
rkirsling d80031d
Address issue.
rkirsling 905381c
rebuild linux
rkirsling 823ede1
Add negative tests.
rkirsling b4e8603
Move logic into computeKnownBits.
rkirsling 6233654
Merge branch 'main' into is-known-non-negative
rkirsling 68cb10e
Address feedback
rkirsling 1ecadd1
Address nikic's feedback.
rkirsling 90d0f80
rebuild linux
rkirsling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
llvm/test/Transforms/InstCombine/sub-after-sle-is-non-negative.ll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 | ||
rkirsling marked this conversation as resolved.
Show resolved
Hide resolved
|
||
; RUN: opt < %s -passes=instcombine -S | FileCheck %s | ||
declare void @subroutine(i16) | ||
|
||
define void @test_as_arg(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define void @test_as_arg( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp sgt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_END:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nsw i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = zext nneg i8 [[SUB]] to i16 | ||
; CHECK-NEXT: call void @subroutine(i16 [[CONV]]) | ||
; CHECK-NEXT: br label %[[COND_END]] | ||
; CHECK: [[COND_END]]: | ||
; CHECK-NEXT: ret void | ||
; | ||
%cmp = icmp sgt i8 %a, %b | ||
br i1 %cmp, label %cond.end, label %cond.false | ||
|
||
cond.false: | ||
%sub = sub nsw i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
call void @subroutine(i16 %conv) | ||
br label %cond.end | ||
|
||
cond.end: | ||
ret void | ||
} | ||
|
||
define i16 @test_as_retval(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define i16 @test_as_retval( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp sgt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_TRUE:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_TRUE]]: | ||
; CHECK-NEXT: ret i16 0 | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nsw i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = zext nneg i8 [[SUB]] to i16 | ||
; CHECK-NEXT: ret i16 [[CONV]] | ||
; | ||
%cmp = icmp sgt i8 %a, %b | ||
br i1 %cmp, label %cond.true, label %cond.false | ||
|
||
cond.true: | ||
ret i16 0 | ||
|
||
cond.false: | ||
%sub = sub nsw i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
ret i16 %conv | ||
} | ||
|
||
define void @test_as_arg_wrong_icmp(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define void @test_as_arg_wrong_icmp( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp slt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_END:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nsw i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = sext i8 [[SUB]] to i16 | ||
; CHECK-NEXT: call void @subroutine(i16 [[CONV]]) | ||
; CHECK-NEXT: br label %[[COND_END]] | ||
; CHECK: [[COND_END]]: | ||
; CHECK-NEXT: ret void | ||
; | ||
%cmp = icmp slt i8 %a, %b | ||
br i1 %cmp, label %cond.end, label %cond.false | ||
|
||
cond.false: | ||
%sub = sub nsw i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
call void @subroutine(i16 %conv) | ||
br label %cond.end | ||
|
||
cond.end: | ||
ret void | ||
} | ||
|
||
define void @test_as_arg_missing_nsw(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define void @test_as_arg_missing_nsw( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp sgt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_END:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = sext i8 [[SUB]] to i16 | ||
; CHECK-NEXT: call void @subroutine(i16 [[CONV]]) | ||
; CHECK-NEXT: br label %[[COND_END]] | ||
; CHECK: [[COND_END]]: | ||
; CHECK-NEXT: ret void | ||
; | ||
%cmp = icmp sgt i8 %a, %b | ||
br i1 %cmp, label %cond.end, label %cond.false | ||
|
||
cond.false: | ||
%sub = sub i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
call void @subroutine(i16 %conv) | ||
br label %cond.end | ||
|
||
cond.end: | ||
ret void | ||
} | ||
|
||
define i16 @test_as_retval_wrong_icmp(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define i16 @test_as_retval_wrong_icmp( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp slt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_TRUE:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_TRUE]]: | ||
; CHECK-NEXT: ret i16 0 | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nsw i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = sext i8 [[SUB]] to i16 | ||
; CHECK-NEXT: ret i16 [[CONV]] | ||
; | ||
%cmp = icmp slt i8 %a, %b | ||
br i1 %cmp, label %cond.true, label %cond.false | ||
|
||
cond.true: | ||
ret i16 0 | ||
|
||
cond.false: | ||
%sub = sub nsw i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
ret i16 %conv | ||
} | ||
|
||
define i16 @test_as_retval_missing_nsw(i8 %a, i8 %b) { | ||
; CHECK-LABEL: define i16 @test_as_retval_missing_nsw( | ||
; CHECK-SAME: i8 [[A:%.*]], i8 [[B:%.*]]) { | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp sgt i8 [[A]], [[B]] | ||
; CHECK-NEXT: br i1 [[CMP]], label %[[COND_TRUE:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_TRUE]]: | ||
; CHECK-NEXT: ret i16 0 | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[SUB:%.*]] = sub i8 [[B]], [[A]] | ||
; CHECK-NEXT: [[CONV:%.*]] = sext i8 [[SUB]] to i16 | ||
; CHECK-NEXT: ret i16 [[CONV]] | ||
; | ||
%cmp = icmp sgt i8 %a, %b | ||
br i1 %cmp, label %cond.true, label %cond.false | ||
|
||
cond.true: | ||
ret i16 0 | ||
|
||
cond.false: | ||
%sub = sub i8 %b, %a | ||
%conv = sext i8 %sub to i16 | ||
ret i16 %conv | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please add a negative test with missing nsw flag?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!