forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WholeProgramDevirt: Add any unsuccessful llvm.type.checked.load devir…
…tualizations to the list of llvm.type.test users. Any unsuccessful llvm.type.checked.load devirtualizations will be translated into uses of llvm.type.test, so we need to add the resulting llvm.type.test intrinsics to the function summaries so that the LowerTypeTests pass will export them. Differential Revision: https://reviews.llvm.org/D29808 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296939 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
4 changed files
with
146 additions
and
12 deletions.
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
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
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,20 @@ | ||
--- | ||
GlobalValueMap: | ||
42: | ||
- TypeTestAssumeVCalls: | ||
- GUID: 14276520915468743435 # typeid1 | ||
Offset: 0 | ||
TypeCheckedLoadVCalls: | ||
- GUID: 15427464259790519041 # typeid2 | ||
Offset: 0 | ||
TypeTestAssumeConstVCalls: | ||
- VFunc: | ||
GUID: 3515965990081467659 # typeid3 | ||
Offset: 0 | ||
Args: [12, 24] | ||
TypeCheckedLoadConstVCalls: | ||
- VFunc: | ||
GUID: 17525413373118030901 # typeid4 | ||
Offset: 0 | ||
Args: [24, 12] | ||
... |
30 changes: 30 additions & 0 deletions
30
test/Transforms/WholeProgramDevirt/export-unsuccessful-checked.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,30 @@ | ||
; RUN: opt -wholeprogramdevirt -wholeprogramdevirt-summary-action=export -wholeprogramdevirt-read-summary=%S/Inputs/export.yaml -wholeprogramdevirt-write-summary=%t -o /dev/null %s | ||
; RUN: FileCheck %s < %t | ||
|
||
; CHECK: - TypeTests: | ||
; CHECK-NEXT: - 15427464259790519041 | ||
; CHECK-NEXT: - 17525413373118030901 | ||
; CHECK-NEXT: TypeTestAssumeVCalls: | ||
|
||
@vt1a = constant void (i8*)* @vf1a, !type !0 | ||
@vt1b = constant void (i8*)* @vf1b, !type !0 | ||
@vt2a = constant void (i8*)* @vf2a, !type !1 | ||
@vt2b = constant void (i8*)* @vf2b, !type !1 | ||
@vt3a = constant void (i8*)* @vf3a, !type !2 | ||
@vt3b = constant void (i8*)* @vf3b, !type !2 | ||
@vt4a = constant void (i8*)* @vf4a, !type !3 | ||
@vt4b = constant void (i8*)* @vf4b, !type !3 | ||
|
||
declare void @vf1a(i8*) | ||
declare void @vf1b(i8*) | ||
declare void @vf2a(i8*) | ||
declare void @vf2b(i8*) | ||
declare void @vf3a(i8*) | ||
declare void @vf3b(i8*) | ||
declare void @vf4a(i8*) | ||
declare void @vf4b(i8*) | ||
|
||
!0 = !{i32 0, !"typeid1"} | ||
!1 = !{i32 0, !"typeid2"} | ||
!2 = !{i32 0, !"typeid3"} | ||
!3 = !{i32 0, !"typeid4"} |