-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[GVNSink] Fix incorrect codegen with respect to GEPs #85333 #88440
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
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
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,101 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4 | ||
; RUN: opt -passes=gvn-sink -S %s | FileCheck %s | ||
|
||
target datalayout = "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64" | ||
|
||
%"struct.std::pair" = type <{ i32, %struct.substruct, [2 x i8] }> | ||
%struct.substruct = type { i8, i8 } | ||
%"struct.std::random_access_iterator_tag" = type { i8 } | ||
|
||
; Check that gep is not sunk as they are of different types. | ||
define void @bar(ptr noundef nonnull align 4 dereferenceable(4) %__i, i32 noundef %__n) { | ||
; CHECK-LABEL: define void @bar( | ||
; CHECK-SAME: ptr noundef nonnull align 4 dereferenceable(4) [[__I:%.*]], i32 noundef [[__N:%.*]]) { | ||
; CHECK-NEXT: entry: | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32 [[__N]], 1 | ||
; CHECK-NEXT: br i1 [[CMP]], label [[IF_THEN:%.*]], label [[IF_ELSE:%.*]] | ||
; CHECK: if.then: | ||
; CHECK-NEXT: [[TMP0:%.*]] = load ptr, ptr [[__I]], align 4 | ||
; CHECK-NEXT: [[INCDEC_PTR4:%.*]] = getelementptr inbounds i8, ptr [[TMP0]], i32 -8 | ||
; CHECK-NEXT: br label [[IF_END6:%.*]] | ||
; CHECK: if.else: | ||
; CHECK-NEXT: [[TMP1:%.*]] = load ptr, ptr [[__I]], align 4 | ||
; CHECK-NEXT: [[ADD_PTR:%.*]] = getelementptr inbounds %"struct.std::pair", ptr [[TMP1]], i32 [[__N]] | ||
; CHECK-NEXT: br label [[IF_END6]] | ||
; CHECK: if.end6: | ||
; CHECK-NEXT: [[INCDEC_PTR_SINK:%.*]] = phi ptr [ [[INCDEC_PTR4]], [[IF_THEN]] ], [ [[ADD_PTR]], [[IF_ELSE]] ] | ||
; CHECK-NEXT: store ptr [[INCDEC_PTR_SINK]], ptr [[__I]], align 4 | ||
; CHECK-NEXT: ret void | ||
; | ||
entry: | ||
%cmp = icmp eq i32 %__n, 1 | ||
br i1 %cmp, label %if.then, label %if.else | ||
|
||
if.then: | ||
%3 = load ptr, ptr %__i, align 4 | ||
%incdec.ptr4 = getelementptr inbounds i8, ptr %3, i32 -8 | ||
br label %if.end6 | ||
|
||
if.else: | ||
%4 = load ptr, ptr %__i, align 4 | ||
%add.ptr = getelementptr inbounds %"struct.std::pair", ptr %4, i32 %__n | ||
br label %if.end6 | ||
|
||
if.end6: | ||
%incdec.ptr.sink = phi ptr [ %incdec.ptr4, %if.then ], [ %add.ptr, %if.else ] | ||
store ptr %incdec.ptr.sink, ptr %__i, align 4 | ||
ret void | ||
} | ||
|
||
; Check that load,gep, and store are all sunk as they are safe to do. | ||
define void @foo(ptr noundef nonnull align 4 dereferenceable(4) %__i, i32 noundef %__n) { | ||
; CHECK-LABEL: define void @foo( | ||
; CHECK-SAME: ptr noundef nonnull align 4 dereferenceable(4) [[__I:%.*]], i32 noundef [[__N:%.*]]) { | ||
; CHECK-NEXT: entry: | ||
; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32 [[__N]], 1 | ||
; CHECK-NEXT: br i1 [[CMP]], label [[IF_THEN:%.*]], label [[IF_ELSE:%.*]] | ||
; CHECK: if.then: | ||
; CHECK-NEXT: br label [[IF_END6:%.*]] | ||
; CHECK: if.else: | ||
; CHECK-NEXT: [[CMP2:%.*]] = icmp eq i32 [[__N]], -1 | ||
; CHECK-NEXT: br i1 [[CMP2]], label [[IF_THEN3:%.*]], label [[IF_ELSE5:%.*]] | ||
; CHECK: if.then3: | ||
; CHECK-NEXT: br label [[IF_END6]] | ||
; CHECK: if.else5: | ||
; CHECK-NEXT: br label [[IF_END6]] | ||
; CHECK: if.end6: | ||
; CHECK-NEXT: [[DOTSINK1:%.*]] = phi i32 [ 8, [[IF_THEN]] ], [ -8, [[IF_THEN3]] ], [ -4, [[IF_ELSE5]] ] | ||
; CHECK-NEXT: [[TMP0:%.*]] = load ptr, ptr [[__I]], align 4 | ||
; CHECK-NEXT: [[INCDEC_PTR:%.*]] = getelementptr inbounds i8, ptr [[TMP0]], i32 [[DOTSINK1]] | ||
; CHECK-NEXT: store ptr [[INCDEC_PTR]], ptr [[__I]], align 4 | ||
; CHECK-NEXT: ret void | ||
; | ||
entry: | ||
%cmp = icmp eq i32 %__n, 1 | ||
br i1 %cmp, label %if.then, label %if.else | ||
|
||
if.then: | ||
%1 = load ptr, ptr %__i, align 4 | ||
%incdec.ptr = getelementptr inbounds i8, ptr %1, i32 8 | ||
store ptr %incdec.ptr, ptr %__i, align 4 | ||
br label %if.end6 | ||
|
||
if.else: | ||
%cmp2 = icmp eq i32 %__n, -1 | ||
br i1 %cmp2, label %if.then3, label %if.else5 | ||
|
||
if.then3: | ||
%3 = load ptr, ptr %__i, align 4 | ||
%incdec.ptr4 = getelementptr inbounds i8, ptr %3, i32 -8 | ||
store ptr %incdec.ptr4, ptr %__i, align 4 | ||
br label %if.end6 | ||
|
||
if.else5: | ||
%4 = load ptr, ptr %__i, align 4 | ||
%add.ptr = getelementptr inbounds i8, ptr %4, i32 -4 | ||
store ptr %add.ptr, ptr %__i, align 4 | ||
br label %if.end6 | ||
|
||
if.end6: | ||
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
As a warning: GVNSink is non-deterministic, which makes it easy for tests written in one environment to fail on some buildbots. I don't know whether it will affect this specific test. This non-determinism (and the fact that it prevents us from writing tests) has been blocking various fixes in this incredibly broken pass.
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.
@nikic I filed #77852 a while back when we ran into this, but are there other known issues of non-determinism that you can point me to? This sounds like something worth fixing, since we've found GVNHoist/GVNSink save a decent amount of size for embedded targets, and it would be ideal if we could stabilize it enough to enable in the
-Oz
pipeline by default.