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.
Fix thinlto cache key computation for cfi-icall.
Summary: Fixed PR33966. CFI code generation for users (not just callers) of a function depends on whether this function has a jumptable entry or not. This information needs to be encoded in of thinlto cache key. We filter the jumptable list against functions that are actually referenced in the current module. Subscribers: mehdi_amini, inglorion, eraman, hiraditya Differential Revision: https://reviews.llvm.org/D36346 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310536 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
119 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" | ||
target triple = "x86_64-unknown-linux-gnu" | ||
|
||
define void @f() !type !0 { | ||
entry: | ||
ret void | ||
} | ||
|
||
!0 = !{i64 0, !"_ZTSFvvE"} |
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,55 @@ | ||
; Test that the list of CFI jumptable entries is part of ThinLTO cache key. | ||
|
||
; Linking Inputs/cache-icall.ll results in f() being added to CFI jumptable; otherwise it is not. | ||
; This affects code generated for any users of f(). Make sure that we don't pull a stale object | ||
; file for %t.o from the cache. | ||
|
||
; RUN: opt -module-hash -module-summary -thinlto-bc %s -o %t.bc | ||
; RUN: opt -module-hash -module-summary -thinlto-bc %p/Inputs/cache-icall.ll -o %t2.bc | ||
|
||
; RUN: rm -Rf %t.cache && mkdir %t.cache | ||
|
||
; RUN: llvm-lto2 run -o %t-no.o %t.bc -cache-dir %t.cache \ | ||
; RUN: -r=%t.bc,_start,px \ | ||
; RUN: -r=%t.bc,f, | ||
|
||
; RUN: llvm-readelf -symbols %t-no.o.* | FileCheck %s --check-prefix=SYMBOLS-NO | ||
|
||
; RUN: llvm-lto2 run -o %t-yes.o %t.bc %t2.bc -cache-dir %t.cache \ | ||
; RUN: -r=%t.bc,_start,px \ | ||
; RUN: -r=%t.bc,f, \ | ||
; RUN: -r=%t2.bc,f,p | ||
|
||
; RUN: llvm-readelf -symbols %t-yes.o.* | FileCheck %s --check-prefix=SYMBOLS-YES | ||
|
||
; SYMBOLS-NO-DAG: {{FUNC .* f.cfi_jt$}} | ||
; SYMBOLS-NO-DAG: {{NOTYPE .* UND f.cfi_jt$}} | ||
|
||
; SYMBOLS-YES-NOT: f.cfi_jt | ||
; SYMBOLS-YES-DAG: {{FUNC .* f.cfi$}} | ||
; SYMBOLS-YES-DAG: {{NOTYPE .* UND f.cfi$}} | ||
|
||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" | ||
target triple = "x86_64-unknown-linux-gnu" | ||
|
||
define i8* @_start(void ()* %p) !type !0 { | ||
entry: | ||
%0 = bitcast void ()* %p to i8* | ||
%1 = tail call i1 @llvm.type.test(i8* %0, metadata !"_ZTSFvvE") | ||
br i1 %1, label %cont, label %trap | ||
|
||
trap: ; preds = %entry | ||
tail call void @llvm.trap() | ||
unreachable | ||
|
||
cont: ; preds = %entry | ||
tail call void %p() | ||
ret i8* bitcast (void ()* @f to i8*) | ||
} | ||
|
||
declare i1 @llvm.type.test(i8*, metadata) | ||
declare void @llvm.trap() | ||
declare !type !1 void @f() | ||
|
||
!0 = !{i64 0, !"_ZTSFPvPFvvEE"} | ||
!1 = !{i64 0, !"_ZTSFvvE"} |