[PATCH] D43109: LTO: Include live bit in ThinLTO cache key.
Peter Collingbourne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 8 22:00:54 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL324711: LTO: Include live bit in ThinLTO cache key. (authored by pcc, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D43109?vs=133552&id=133565#toc
Repository:
rL LLVM
https://reviews.llvm.org/D43109
Files:
llvm/trunk/lib/LTO/LTO.cpp
llvm/trunk/test/LTO/Resolution/X86/cache-prevailing.ll
Index: llvm/trunk/test/LTO/Resolution/X86/cache-prevailing.ll
===================================================================
--- llvm/trunk/test/LTO/Resolution/X86/cache-prevailing.ll
+++ llvm/trunk/test/LTO/Resolution/X86/cache-prevailing.ll
@@ -0,0 +1,18 @@
+; Tests whether the cache is sensitive to the prevailing bit.
+; RUN: rm -rf %t.cache
+; RUN: opt -module-hash -module-summary -o %t.bc %s
+; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache \
+; RUN: -r %t.bc,foo,p -r %t.bc,bar,px
+; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache \
+; RUN: -r %t.bc,foo, -r %t.bc,bar,px
+; RUN: ls %t.cache | count 2
+
+target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-pc-windows-msvc19.11.0"
+
+ at foo = linkonce_odr constant i32 1, comdat
+$foo = comdat any
+
+define i32* @bar() {
+ ret i32* @foo
+}
Index: llvm/trunk/lib/LTO/LTO.cpp
===================================================================
--- llvm/trunk/lib/LTO/LTO.cpp
+++ llvm/trunk/lib/LTO/LTO.cpp
@@ -177,6 +177,7 @@
auto AddUsedThings = [&](GlobalValueSummary *GS) {
if (!GS) return;
+ AddUnsigned(GS->isLive());
for (const ValueInfo &VI : GS->refs()) {
AddUnsigned(VI.isDSOLocal());
AddUsedCfiGlobal(VI.getGUID());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43109.133565.patch
Type: text/x-patch
Size: 1269 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180209/1e4f676b/attachment.bin>
More information about the llvm-commits
mailing list