-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Fix: Distinguish CFI Metadata Checks in MergeFunctions Pass #65963
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,53 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2 | ||
;; Check the cases involving internal CFI instrumented functions where we do not expect functions to be merged. | ||
; RUN: opt -S -passes=mergefunc < %s | FileCheck %s | ||
|
||
; Function Attrs: nocallback nofree nosync nounwind readnone speculatable willreturn | ||
declare i1 @llvm.type.test(ptr, metadata) #6 | ||
|
||
define internal void @A__on_zero_sharedEv(ptr noundef nonnull align 8 dereferenceable(32) %this) { | ||
; CHECK-LABEL: define internal void @A__on_zero_sharedEv | ||
; CHECK-SAME: (ptr noundef nonnull align 8 dereferenceable(32) [[THIS:%.*]]) { | ||
; CHECK-NEXT: entry: | ||
; CHECK-NEXT: [[THIS_ADDR:%.*]] = alloca ptr, align 8 | ||
; CHECK-NEXT: store ptr [[THIS]], ptr [[THIS_ADDR]], align 8 | ||
; CHECK-NEXT: [[THIS1:%.*]] = load ptr, ptr [[THIS_ADDR]], align 8 | ||
; CHECK-NEXT: [[VTABLE:%.*]] = load ptr, ptr [[THIS1]], align 8 | ||
; CHECK-NEXT: [[TMP0:%.*]] = call i1 @llvm.type.test(ptr [[VTABLE]], metadata [[META0:![0-9]+]]), !nosanitize !1 | ||
; CHECK-NEXT: ret void | ||
; | ||
entry: | ||
%this.addr = alloca ptr, align 8 | ||
store ptr %this, ptr %this.addr, align 8 | ||
%this1 = load ptr, ptr %this.addr, align 8 | ||
%vtable = load ptr, ptr %this1, align 8 | ||
%0 = call i1 @llvm.type.test(ptr %vtable, metadata !11), !nosanitize !47 | ||
ret void | ||
} | ||
|
||
; Function Attrs: mustprogress noinline nounwind optnone uwtable | ||
define internal void @B__on_zero_sharedEv(ptr noundef nonnull align 8 dereferenceable(32) %this) { | ||
; CHECK-LABEL: define internal void @B__on_zero_sharedEv | ||
; CHECK-SAME: (ptr noundef nonnull align 8 dereferenceable(32) [[THIS:%.*]]) { | ||
; CHECK-NEXT: entry: | ||
; CHECK-NEXT: [[THIS_ADDR:%.*]] = alloca ptr, align 8 | ||
; CHECK-NEXT: store ptr [[THIS]], ptr [[THIS_ADDR]], align 8 | ||
; CHECK-NEXT: [[THIS1:%.*]] = load ptr, ptr [[THIS_ADDR]], align 8 | ||
; CHECK-NEXT: [[VTABLE:%.*]] = load ptr, ptr [[THIS1]], align 8 | ||
; CHECK-NEXT: [[TMP0:%.*]] = call i1 @llvm.type.test(ptr [[VTABLE]], metadata [[META2:![0-9]+]]), !nosanitize !1 | ||
; CHECK-NEXT: ret void | ||
; | ||
entry: | ||
%this.addr = alloca ptr, align 8 | ||
store ptr %this, ptr %this.addr, align 8 | ||
%this1 = load ptr, ptr %this.addr, align 8 | ||
%vtable = load ptr, ptr %this1, align 8 | ||
%0 = call i1 @llvm.type.test(ptr %vtable, metadata !22), !nosanitize !47 | ||
ret void | ||
} | ||
|
||
!10 = !{i64 16, !11} | ||
!11 = distinct !{} | ||
!21 = !{i64 16, !22} | ||
!22 = distinct !{} | ||
!47 = !{} |
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,28 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2 | ||
;; Make sure internal constrained FP intrinsics still merge properly | ||
; RUN: opt -passes=mergefunc -S < %s | FileCheck %s | ||
|
||
declare float @llvm.experimental.constrained.fadd.f32(float, float, metadata, metadata) | ||
|
||
define float @func1(float %a, float %b) { | ||
; CHECK-LABEL: define float @func1 | ||
; CHECK-SAME: (float [[A:%.*]], float [[B:%.*]]) { | ||
; CHECK-NEXT: [[RESULT:%.*]] = call float @llvm.experimental.constrained.fadd.f32(float [[A]], float [[B]], metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
; CHECK-NEXT: [[RESULT_2:%.*]] = call float @llvm.experimental.constrained.fadd.f32(float [[A]], float [[B]], metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
; CHECK-NEXT: ret float [[RESULT]] | ||
; | ||
%result = call float @llvm.experimental.constrained.fadd.f32(float %a, float %b, metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
%result_2 = call float @llvm.experimental.constrained.fadd.f32(float %a, float %b, metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
ret float %result | ||
} | ||
|
||
define float @func2(float %a, float %b) { | ||
; CHECK-LABEL: define float @func2 | ||
; CHECK-SAME: (float [[TMP0:%.*]], float [[TMP1:%.*]]) { | ||
; CHECK-NEXT: [[TMP3:%.*]] = tail call float @func1(float [[TMP0]], float [[TMP1]]) | ||
; CHECK-NEXT: ret float [[TMP3]] | ||
; | ||
%result = call float @llvm.experimental.constrained.fadd.f32(float %a, float %b, metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
%result_2 = call float @llvm.experimental.constrained.fadd.f32(float %a, float %b, metadata !"round.dynamic", metadata !"fpexcept.strict") | ||
ret float %result | ||
} | ||
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.