-
Notifications
You must be signed in to change notification settings - Fork 13.6k
InstCombine: Fix a crash in PointerReplacer
when constructing a new PHI
#130256
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
4 commits
Select commit
Hold shift + click to select a range
2831949
InstCombine: Fix a crash in `PointerReplacer` when constructing a PHI
changpeng 7ef6ac0
InstCombine: Fix a crash in PointerReplacer when constructing a new PHI
changpeng 5d67890
InstCombine: Fix a crash in PointerReplacer when constructing a new PHI
changpeng 1c5e5ba
InstCombine: Fix a crash in PointerReplacer when constructing a new PHI
changpeng 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
42 changes: 42 additions & 0 deletions
42
llvm/test/Transforms/InstCombine/AMDGPU/phi-with-incoming-from-load.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,42 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 | ||
; RUN: opt -passes=instcombine -S -o - %s | FileCheck %s | ||
|
||
target triple = "amdgcn-amd-amdhsa" | ||
|
||
%double_double = type { double, double } | ||
|
||
declare void @llvm.memcpy.p0.p0.i64(ptr, ptr, i64, i1) | ||
|
||
define void @_test(ptr addrspace(4) byref(%double_double) align 8 %in) { | ||
; CHECK-LABEL: define void @_test( | ||
; CHECK-SAME: ptr addrspace(4) byref([[DOUBLE_DOUBLE:%.*]]) align 8 [[IN:%.*]]) { | ||
; CHECK-NEXT: [[ENTRY:.*]]: | ||
; CHECK-NEXT: [[ALPHA_UNION:%.*]] = addrspacecast ptr addrspace(4) [[IN]] to ptr | ||
; CHECK-NEXT: [[LOAD:%.*]] = load i8, ptr addrspace(5) null, align 1 | ||
; CHECK-NEXT: [[LOADEDV:%.*]] = trunc i8 [[LOAD]] to i1 | ||
; CHECK-NEXT: br i1 [[LOADEDV]], label %[[COND_END:.*]], label %[[COND_FALSE:.*]] | ||
; CHECK: [[COND_FALSE]]: | ||
; CHECK-NEXT: [[TMP0:%.*]] = load ptr, ptr addrspace(4) [[IN]], align 8 | ||
; CHECK-NEXT: br label %[[COND_END]] | ||
; CHECK: [[COND_END]]: | ||
; CHECK-NEXT: [[COND1:%.*]] = phi ptr [ [[TMP0]], %[[COND_FALSE]] ], [ [[ALPHA_UNION]], %[[ENTRY]] ] | ||
; CHECK-NEXT: call void @llvm.memcpy.p0.p0.i64(ptr noundef nonnull align 1 dereferenceable(16) poison, ptr noundef nonnull align 1 dereferenceable(16) [[COND1]], i64 16, i1 false) | ||
; CHECK-NEXT: ret void | ||
; | ||
entry: | ||
%coerce = alloca %double_double, align 8, addrspace(5) | ||
%alpha_union = addrspacecast ptr addrspace(5) %coerce to ptr | ||
call void @llvm.memcpy.p5.p4.i64(ptr addrspace(5) align 8 %coerce, ptr addrspace(4) align 8 %in, i64 16, i1 false) | ||
%load1 = load i8, ptr addrspace(5) null, align 1 | ||
%loadedv = trunc i8 %load1 to i1 | ||
br i1 %loadedv, label %cond.end, label %cond.false | ||
|
||
cond.false: | ||
%load2 = load ptr, ptr addrspace(5) %coerce, align 8 | ||
br label %cond.end | ||
|
||
cond.end: | ||
%cond = phi ptr [ %load2, %cond.false ], [ %alpha_union, %entry ] | ||
call void @llvm.memcpy.p0.p0.i64(ptr poison, ptr %cond, i64 16, i1 false) | ||
ret void | ||
} |
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 just not add it to the map? I'm not sure what the point of the identity mapping would be
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.
The whole logic is that, when replacing a PHI instruction, all its operands are expected to have already been replaced and can be found in the map. So getReplacement (Operand) should always return the replacement (never a NULL).
Type *NewTy = getReplacement(PHI->getIncomingValue(0))->getType();
However, when a load is replaced, all the uses of the load has already been actually replaced by the new load:
IC.replaceInstUsesWith(*LT, NewI);
We will never search the map with the original load (LT). And we expect to find the replacement for the new load.
So we have to add the newI into the map instead.