-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
[EarlyCSE] De-Duplicate callsites with differing attrs #110929
Closed
Closed
Changes from all commits
Commits
Show all changes
2 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 |
---|---|---|
|
@@ -362,7 +362,7 @@ static bool isEqualImpl(SimpleValue LHS, SimpleValue RHS) { | |
|
||
if (LHSI->getOpcode() != RHSI->getOpcode()) | ||
return false; | ||
if (LHSI->isIdenticalToWhenDefined(RHSI)) { | ||
if (LHSI->isIdenticalToWhenDefined(RHSI, /*IntersectAttrs=*/true)) { | ||
// Convergent calls implicitly depend on the set of threads that is | ||
// currently executing, so conservatively return false if they are in | ||
// different basic blocks. | ||
|
@@ -551,7 +551,7 @@ bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) { | |
if (LHSI->isConvergent() && LHSI->getParent() != RHSI->getParent()) | ||
return false; | ||
|
||
return LHSI->isIdenticalTo(RHSI); | ||
return LHSI->isIdenticalToWhenDefined(RHSI, /*IntersectAttrs=*/true); | ||
} | ||
|
||
//===----------------------------------------------------------------------===// | ||
|
@@ -1307,6 +1307,23 @@ static void combineIRFlags(Instruction &From, Value *To) { | |
(I->hasPoisonGeneratingFlags() && !programUndefinedIfPoison(I))) | ||
I->andIRFlags(&From); | ||
} | ||
if (isa<CallBase>(&From) && isa<CallBase>(To)) { | ||
// NB: Intersection of attrs between InVal.first and Inst is overly | ||
// conservative. Since we only CSE readonly functions that have the same | ||
// memory state, we can preserve (or possibly in some cases combine) | ||
// more attributes. Likewise this implies when checking equality of | ||
// callsite for CSEing, we can probably ignore more attributes. | ||
// Generally poison generating attributes need to be handled with more | ||
// care as they can create *new* UB if preserved/combined and violated. | ||
// Attributes that imply immediate UB on the otherhand would have been | ||
// violated either way. | ||
bool Success = | ||
cast<CallBase>(To)->tryIntersectAttributes(cast<CallBase>(&From)); | ||
assert(Success && "Failed to intersect attributes in callsites that " | ||
"passed identical check"); | ||
// For NDEBUG Compile. | ||
(void)Success; | ||
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. I'd use 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. I tend to prefer the |
||
} | ||
} | ||
|
||
bool EarlyCSE::overridingStores(const ParseMemoryInst &Earlier, | ||
|
@@ -1632,6 +1649,7 @@ bool EarlyCSE::processNode(DomTreeNode *Node) { | |
LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n"); | ||
continue; | ||
} | ||
combineIRFlags(Inst, InVal.first); | ||
if (!Inst.use_empty()) | ||
Inst.replaceAllUsesWith(InVal.first); | ||
salvageKnowledge(&Inst, &AC); | ||
|
256 changes: 256 additions & 0 deletions
256
llvm/test/Transforms/EarlyCSE/replace-calls-def-attrs.ll
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,256 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --check-attributes --check-globals all --version 5 | ||
; RUN: opt -S -passes=early-cse < %s | FileCheck %s | ||
|
||
declare i8 @baz(i8, i8) | ||
declare i8 @baz_side_effects(i8, i8) | ||
declare i8 @buz(i8, i8) | ||
|
||
declare ptr @baz.ptr(i8, i8) | ||
declare i8 @buz.ptr(ptr, ptr) | ||
|
||
declare float @baz.fp(float, float) | ||
declare i8 @buz.fp(float, float) | ||
define i8 @same_parent_combine_diff_attrs(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0:[0-9]+]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C1]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone | ||
%c0 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_needs_intersect(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_needs_intersect( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call ptr @baz.ptr(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.ptr(ptr [[C1]], ptr [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call nonnull ptr @baz.ptr(i8 noundef %x, i8 noundef %y) readnone | ||
%c0 = call ptr @baz.ptr(i8 %x, i8 noundef %y) readnone | ||
%r = call i8 @buz.ptr(ptr %c0, ptr %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_fmf(float %x, float %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_fmf( | ||
; CHECK-SAME: float [[X:%.*]], float [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call nnan float @baz.fp(float [[X]], float noundef [[Y]]) #[[ATTR1:[0-9]+]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.fp(float [[C1]], float [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call nnan nsz float @baz.fp(float noundef %x, float noundef %y) readonly | ||
%c0 = call nnan float @baz.fp(float %x, float noundef %y) readonly | ||
%r = call i8 @buz.fp(float %c0, float %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_fmf2(float %x, float %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_fmf2( | ||
; CHECK-SAME: float [[X:%.*]], float [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call nnan float @baz.fp(float [[X]], float noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.fp(float [[C1]], float [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call nnan float @baz.fp(float noundef %x, float noundef %y) readnone | ||
%c0 = call nnan nsz float @baz.fp(float %x, float noundef %y) readnone | ||
%r = call i8 @buz.fp(float %c0, float %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_needs_intersect2(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_needs_intersect2( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call ptr @baz.ptr(i8 [[X]], i8 noundef [[Y]]) #[[ATTR1]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.ptr(ptr [[C1]], ptr [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call nonnull ptr @baz.ptr(i8 noundef %x, i8 noundef %y) readonly | ||
%c0 = call ptr @baz.ptr(i8 %x, i8 noundef %y) readonly | ||
%r = call i8 @buz.ptr(ptr %c0, ptr %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_really_needs_intersect(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_really_needs_intersect( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call ptr @baz.ptr(i8 [[X]], i8 noundef [[Y]]) #[[ATTR1]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.ptr(ptr [[C1]], ptr noundef [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call nonnull ptr @baz.ptr(i8 noundef %x, i8 noundef %y) readonly | ||
%c0 = call ptr @baz.ptr(i8 %x, i8 noundef %y) readonly | ||
%r = call i8 @buz.ptr(ptr %c0, ptr noundef %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_fail_side_effects(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_fail_side_effects( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call i8 @baz(i8 noundef %x, i8 noundef %y) | ||
%c0 = call i8 @baz(i8 %x, i8 noundef %y) | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_quasi_side_effects2(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_quasi_side_effects2( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone | ||
%c0 = call i8 @baz(i8 %x, i8 noundef %y) | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @diff_parent_combine_diff_attrs(i1 %c, i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @diff_parent_combine_diff_attrs( | ||
; CHECK-SAME: i1 [[C:%.*]], i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: br i1 [[C]], label %[[T:.*]], label %[[F:.*]] | ||
; CHECK: [[T]]: | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR1]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; CHECK: [[F]]: | ||
; CHECK-NEXT: [[R2:%.*]] = add i8 [[C1]], 4 | ||
; CHECK-NEXT: ret i8 [[R2]] | ||
; | ||
%c1 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
br i1 %c, label %T, label %F | ||
T: | ||
%c0 = call i8 @baz(i8 noundef %x, i8 noundef %y) readonly | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
F: | ||
%r2 = add i8 %c1, 4 | ||
ret i8 %r2 | ||
} | ||
|
||
define i8 @diff_parent_combine_diff_attrs_preserves_return_attrs(i1 %c, i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @diff_parent_combine_diff_attrs_preserves_return_attrs( | ||
; CHECK-SAME: i1 [[C:%.*]], i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call nonnull ptr @baz.ptr(i8 [[X]], i8 noundef [[Y]]) #[[ATTR1]] | ||
; CHECK-NEXT: br i1 [[C]], label %[[T:.*]], label %[[F:.*]] | ||
; CHECK: [[T]]: | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz.ptr(ptr [[C1]], ptr noundef [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; CHECK: [[F]]: | ||
; CHECK-NEXT: ret i8 9 | ||
; | ||
%c1 = call nonnull ptr @baz.ptr(i8 %x, i8 noundef %y) readonly | ||
br i1 %c, label %T, label %F | ||
T: | ||
%c0 = call nonnull ptr @baz.ptr(i8 noundef %x, i8 noundef %y) readonly | ||
%r = call i8 @buz.ptr(ptr %c0, ptr noundef %c1) | ||
ret i8 %r | ||
F: | ||
ret i8 9 | ||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_todo(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_todo( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR2:[0-9]+]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
%c0 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone alwaysinline | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @same_parent_combine_diff_attrs_fail(i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @same_parent_combine_diff_attrs_fail( | ||
; CHECK-SAME: i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR3:[0-9]+]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; | ||
%c1 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
%c0 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone strictfp | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
|
||
} | ||
|
||
define i8 @diff_parent_combine_diff_attrs_todo(i1 %c, i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @diff_parent_combine_diff_attrs_todo( | ||
; CHECK-SAME: i1 [[C:%.*]], i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: br i1 [[C]], label %[[T:.*]], label %[[F:.*]] | ||
; CHECK: [[T]]: | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR4:[0-9]+]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; CHECK: [[F]]: | ||
; CHECK-NEXT: [[R2:%.*]] = add i8 [[C1]], 4 | ||
; CHECK-NEXT: ret i8 [[R2]] | ||
; | ||
%c1 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
br i1 %c, label %T, label %F | ||
T: | ||
%c0 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone optnone noinline | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
F: | ||
%r2 = add i8 %c1, 4 | ||
ret i8 %r2 | ||
} | ||
|
||
define i8 @diff_parent_combine_diff_attrs_fail(i1 %c, i8 %x, i8 %y) { | ||
; CHECK-LABEL: define i8 @diff_parent_combine_diff_attrs_fail( | ||
; CHECK-SAME: i1 [[C:%.*]], i8 [[X:%.*]], i8 [[Y:%.*]]) { | ||
; CHECK-NEXT: [[C1:%.*]] = call i8 @baz(i8 [[X]], i8 noundef [[Y]]) #[[ATTR0]] | ||
; CHECK-NEXT: br i1 [[C]], label %[[T:.*]], label %[[F:.*]] | ||
; CHECK: [[T]]: | ||
; CHECK-NEXT: [[C0:%.*]] = call i8 @baz(i8 noundef [[X]], i8 noundef [[Y]]) #[[ATTR3]] | ||
; CHECK-NEXT: [[R:%.*]] = call i8 @buz(i8 [[C0]], i8 [[C1]]) | ||
; CHECK-NEXT: ret i8 [[R]] | ||
; CHECK: [[F]]: | ||
; CHECK-NEXT: [[R2:%.*]] = add i8 [[C1]], 4 | ||
; CHECK-NEXT: ret i8 [[R2]] | ||
; | ||
%c1 = call i8 @baz(i8 %x, i8 noundef %y) readnone | ||
br i1 %c, label %T, label %F | ||
T: | ||
%c0 = call i8 @baz(i8 noundef %x, i8 noundef %y) readnone strictfp | ||
%r = call i8 @buz(i8 %c0, i8 %c1) | ||
ret i8 %r | ||
F: | ||
%r2 = add i8 %c1, 4 | ||
ret i8 %r2 | ||
} | ||
|
||
;. | ||
; CHECK: attributes #[[ATTR0]] = { memory(none) } | ||
; CHECK: attributes #[[ATTR1]] = { memory(read) } | ||
; CHECK: attributes #[[ATTR2]] = { alwaysinline memory(none) } | ||
; CHECK: attributes #[[ATTR3]] = { strictfp memory(none) } | ||
; CHECK: attributes #[[ATTR4]] = { noinline optnone memory(none) } | ||
;. |
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.
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.
Ill change before pushing.