-
Notifications
You must be signed in to change notification settings - Fork 12.5k
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
[InstSimpify] Simplifying (xor (sub C_Mask, X), C_Mask)
-> X
#122552
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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 | ||||
---|---|---|---|---|---|---|
|
@@ -871,6 +871,14 @@ static Value *simplifySubInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, | |||||
if (Value *V = simplifyByDomEq(Instruction::Sub, Op0, Op1, Q, MaxRecurse)) | ||||||
return V; | ||||||
|
||||||
// (sub nuw C_Mask, (xor X, C_Mask)) -> X | ||||||
if (IsNUW) { | ||||||
Value *X; | ||||||
if (match(Op1, m_Xor(m_Value(X), m_Specific(Op0))) && | ||||||
match(Op0, m_CheckedInt([](const APInt &C) { return C.isMask(); }))) | ||||||
return X; | ||||||
} | ||||||
|
||||||
return nullptr; | ||||||
} | ||||||
|
||||||
|
@@ -2540,6 +2548,14 @@ static Value *simplifyXorInst(Value *Op0, Value *Op1, const SimplifyQuery &Q, | |||||
if (Value *V = simplifyByDomEq(Instruction::Xor, Op0, Op1, Q, MaxRecurse)) | ||||||
return V; | ||||||
|
||||||
// (xor (sub nuw C_Mask, X), C_Mask) -> X | ||||||
{ | ||||||
Value *X; | ||||||
if (match(Op0, m_NUWSub(m_Specific(Op1), m_Value(X))) && | ||||||
match(Op1, m_CheckedInt([](const APInt &C) { return C.isMask(); }))) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
return X; | ||||||
} | ||||||
|
||||||
return nullptr; | ||||||
} | ||||||
|
||||||
|
This file contains 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,118 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: opt < %s -passes=instsimplify -S | FileCheck %s | ||
|
||
define i8 @xor_w_sub_fail_missing_nuw(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @xor_w_sub_fail_missing_nuw( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[XOR:%.*]] = xor i8 [[X]], 15 | ||
; CHECK-NEXT: [[R:%.*]] = sub nsw i8 15, [[XOR]] | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%xor = xor i8 %x, 15 | ||
%r = sub nsw i8 15, %xor | ||
ret i8 %r | ||
} | ||
|
||
define i8 @xor_w_sub_fail_diff_values(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @xor_w_sub_fail_diff_values( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[XOR:%.*]] = xor i8 [[X]], 15 | ||
; CHECK-NEXT: [[R:%.*]] = sub nuw nsw i8 31, [[XOR]] | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%xor = xor i8 %x, 15 | ||
%r = sub nsw nuw i8 31, %xor | ||
ret i8 %r | ||
} | ||
|
||
define i8 @xor_w_sub_fail_diff_values2(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @xor_w_sub_fail_diff_values2( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[XOR:%.*]] = xor i8 [[X]], 31 | ||
; CHECK-NEXT: [[R:%.*]] = sub nuw nsw i8 15, [[XOR]] | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%xor = xor i8 %x, 31 | ||
%r = sub nsw nuw i8 15, %xor | ||
ret i8 %r | ||
} | ||
|
||
define i8 @xor_w_sub_fail_not_mask(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @xor_w_sub_fail_not_mask( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[XOR:%.*]] = xor i8 [[X]], 30 | ||
; CHECK-NEXT: [[R:%.*]] = sub nuw nsw i8 30, [[XOR]] | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%xor = xor i8 %x, 30 | ||
%r = sub nsw nuw i8 30, %xor | ||
ret i8 %r | ||
} | ||
|
||
define i8 @xor_w_sub_okay(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @xor_w_sub_okay( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: ret i8 [[X]] | ||
; | ||
%xor = xor i8 %x, 31 | ||
%r = sub nsw nuw i8 31, %xor | ||
ret i8 %r | ||
} | ||
|
||
define i8 @sub_w_xor_fail_missing_nuw(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @sub_w_xor_fail_missing_nuw( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nsw i8 15, [[X]] | ||
; CHECK-NEXT: [[R:%.*]] = xor i8 [[SUB]], 15 | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%sub = sub nsw i8 15, %x | ||
%r = xor i8 %sub, 15 | ||
ret i8 %r | ||
} | ||
|
||
define i8 @sub_w_xor_fail_diff_values(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @sub_w_xor_fail_diff_values( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nuw nsw i8 15, [[X]] | ||
; CHECK-NEXT: [[R:%.*]] = xor i8 [[SUB]], 31 | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%sub = sub nsw nuw i8 15, %x | ||
%r = xor i8 %sub, 31 | ||
ret i8 %r | ||
} | ||
|
||
define i8 @sub_w_sub_fail_diff_values2(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @sub_w_sub_fail_diff_values2( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nuw nsw i8 31, [[X]] | ||
; CHECK-NEXT: [[R:%.*]] = xor i8 [[SUB]], 15 | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%sub = sub nsw nuw i8 31, %x | ||
%r = xor i8 %sub, 15 | ||
ret i8 %r | ||
} | ||
|
||
define i8 @sub_w_sub_fail_not_mask(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @sub_w_sub_fail_not_mask( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: [[SUB:%.*]] = sub nuw nsw i8 30, [[X]] | ||
; CHECK-NEXT: [[R:%.*]] = xor i8 [[SUB]], 30 | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%sub = sub nsw nuw i8 30, %x | ||
%r = xor i8 %sub, 30 | ||
ret i8 %r | ||
} | ||
|
||
define i8 @sub_w_sub_okay(i8 range(i8 0, 16) %x) { | ||
; CHECK-LABEL: define i8 @sub_w_sub_okay( | ||
; CHECK-SAME: i8 range(i8 0, 16) [[X:%.*]]) { | ||
; CHECK-NEXT: ret i8 [[X]] | ||
; | ||
%sub = sub nsw nuw i8 31, %x | ||
%r = xor i8 %sub, 31 | ||
ret i8 %r | ||
} |
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.