blob: d6b50f551d9ce4c6aa9e1b7c4874b6b0a6a9f9ca [file] [log] [blame]
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001//===-LTO.cpp - LLVM Link Time Optimizer ----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements functions and classes used to support LTO.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/LTO/LTO.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000015#include "llvm/Analysis/TargetLibraryInfo.h"
16#include "llvm/Analysis/TargetTransformInfo.h"
Teresa Johnsonad176792016-11-11 05:34:58 +000017#include "llvm/Bitcode/BitcodeReader.h"
18#include "llvm/Bitcode/BitcodeWriter.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000019#include "llvm/CodeGen/Analysis.h"
20#include "llvm/IR/AutoUpgrade.h"
21#include "llvm/IR/DiagnosticPrinter.h"
22#include "llvm/IR/LegacyPassManager.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000023#include "llvm/IR/Mangler.h"
24#include "llvm/IR/Metadata.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000025#include "llvm/LTO/LTOBackend.h"
26#include "llvm/Linker/IRMover.h"
Peter Collingbourne192d8522017-03-28 23:35:34 +000027#include "llvm/Object/IRObjectFile.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000028#include "llvm/Support/Error.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000029#include "llvm/Support/ManagedStatic.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000030#include "llvm/Support/MemoryBuffer.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000031#include "llvm/Support/Path.h"
Mehdi Aminiadc0e262016-08-23 21:30:12 +000032#include "llvm/Support/SHA1.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000033#include "llvm/Support/SourceMgr.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000034#include "llvm/Support/TargetRegistry.h"
35#include "llvm/Support/ThreadPool.h"
Teresa Johnsonec544c52016-10-19 17:35:01 +000036#include "llvm/Support/Threading.h"
Peter Collingbourne942fa562017-04-13 01:26:12 +000037#include "llvm/Support/VCSRevision.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000038#include "llvm/Support/raw_ostream.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000039#include "llvm/Target/TargetMachine.h"
40#include "llvm/Target/TargetOptions.h"
41#include "llvm/Transforms/IPO.h"
42#include "llvm/Transforms/IPO/PassManagerBuilder.h"
43#include "llvm/Transforms/Utils/SplitModule.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000044
Teresa Johnson9ba95f92016-08-11 14:58:12 +000045#include <set>
46
47using namespace llvm;
48using namespace lto;
49using namespace object;
Teresa Johnsondf6edc52016-05-23 22:54:06 +000050
Mehdi Aminiadc0e262016-08-23 21:30:12 +000051#define DEBUG_TYPE "lto"
52
Peter Collingbourne780a4dd2017-03-10 21:35:17 +000053// The values are (type identifier, summary) pairs.
54typedef DenseMap<
55 GlobalValue::GUID,
56 TinyPtrVector<const std::pair<const std::string, TypeIdSummary> *>>
57 TypeIdSummariesByGuidTy;
58
Mehdi Aminiadc0e262016-08-23 21:30:12 +000059// Returns a unique hash for the Module considering the current list of
60// export/import and other global analysis results.
61// The hash is produced in \p Key.
62static void computeCacheKey(
Peter Collingbournef4257522016-12-08 05:28:30 +000063 SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index,
64 StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +000065 const FunctionImporter::ExportSetTy &ExportList,
66 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +000067 const GVSummaryMapTy &DefinedGlobals,
Evgeniy Stepanov3427d172017-08-09 23:24:07 +000068 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid,
69 const std::set<GlobalValue::GUID> &CfiFunctionDefs,
70 const std::set<GlobalValue::GUID> &CfiFunctionDecls) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +000071 // Compute the unique hash for this entry.
72 // This is based on the current compiler version, the module itself, the
73 // export list, the hash for every single module in the import list, the
74 // list of ResolvedODR for the module, and the list of preserved symbols.
75 SHA1 Hasher;
76
77 // Start with the compiler revision
78 Hasher.update(LLVM_VERSION_STRING);
Peter Collingbourne942fa562017-04-13 01:26:12 +000079#ifdef LLVM_REVISION
Mehdi Aminiadc0e262016-08-23 21:30:12 +000080 Hasher.update(LLVM_REVISION);
81#endif
82
Peter Collingbournef4257522016-12-08 05:28:30 +000083 // Include the parts of the LTO configuration that affect code generation.
84 auto AddString = [&](StringRef Str) {
85 Hasher.update(Str);
86 Hasher.update(ArrayRef<uint8_t>{0});
87 };
88 auto AddUnsigned = [&](unsigned I) {
89 uint8_t Data[4];
90 Data[0] = I;
91 Data[1] = I >> 8;
92 Data[2] = I >> 16;
93 Data[3] = I >> 24;
94 Hasher.update(ArrayRef<uint8_t>{Data, 4});
95 };
Peter Collingbourne54a52b72017-03-03 20:25:30 +000096 auto AddUint64 = [&](uint64_t I) {
97 uint8_t Data[8];
98 Data[0] = I;
99 Data[1] = I >> 8;
100 Data[2] = I >> 16;
101 Data[3] = I >> 24;
102 Data[4] = I >> 32;
103 Data[5] = I >> 40;
104 Data[6] = I >> 48;
105 Data[7] = I >> 56;
106 Hasher.update(ArrayRef<uint8_t>{Data, 8});
107 };
Peter Collingbournef4257522016-12-08 05:28:30 +0000108 AddString(Conf.CPU);
109 // FIXME: Hash more of Options. For now all clients initialize Options from
110 // command-line flags (which is unsupported in production), but may set
111 // RelaxELFRelocations. The clang driver can also pass FunctionSections,
112 // DataSections and DebuggerTuning via command line flags.
113 AddUnsigned(Conf.Options.RelaxELFRelocations);
114 AddUnsigned(Conf.Options.FunctionSections);
115 AddUnsigned(Conf.Options.DataSections);
116 AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
117 for (auto &A : Conf.MAttrs)
118 AddString(A);
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000119 if (Conf.RelocModel)
120 AddUnsigned(*Conf.RelocModel);
121 else
122 AddUnsigned(-1);
Rafael Espindola79e238a2017-08-03 02:16:21 +0000123 if (Conf.CodeModel)
124 AddUnsigned(*Conf.CodeModel);
125 else
126 AddUnsigned(-1);
Peter Collingbournef4257522016-12-08 05:28:30 +0000127 AddUnsigned(Conf.CGOptLevel);
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000128 AddUnsigned(Conf.CGFileType);
Peter Collingbournef4257522016-12-08 05:28:30 +0000129 AddUnsigned(Conf.OptLevel);
Tim Shen4e912aa2017-06-01 23:13:44 +0000130 AddUnsigned(Conf.UseNewPM);
Peter Collingbournef4257522016-12-08 05:28:30 +0000131 AddString(Conf.OptPipeline);
132 AddString(Conf.AAPipeline);
133 AddString(Conf.OverrideTriple);
134 AddString(Conf.DefaultTriple);
135
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000136 // Include the hash for the current module
137 auto ModHash = Index.getModuleHash(ModuleID);
138 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
139 for (auto F : ExportList)
140 // The export list can impact the internalization, be conservative here
141 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
142
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000143 // Include the hash for every module we import functions from. The set of
144 // imported symbols for each module may affect code generation and is
145 // sensitive to link order, so include that as well.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000146 for (auto &Entry : ImportList) {
147 auto ModHash = Index.getModuleHash(Entry.first());
148 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000149
150 AddUint64(Entry.second.size());
151 for (auto &Fn : Entry.second)
152 AddUint64(Fn.first);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000153 }
154
155 // Include the hash for the resolved ODR.
156 for (auto &Entry : ResolvedODR) {
157 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
158 sizeof(GlobalValue::GUID)));
159 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
160 sizeof(GlobalValue::LinkageTypes)));
161 }
162
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000163 // Members of CfiFunctionDefs and CfiFunctionDecls that are referenced or
164 // defined in this module.
165 std::set<GlobalValue::GUID> UsedCfiDefs;
166 std::set<GlobalValue::GUID> UsedCfiDecls;
167
168 // Typeids used in this module.
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000169 std::set<GlobalValue::GUID> UsedTypeIds;
170
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000171 auto AddUsedCfiGlobal = [&](GlobalValue::GUID ValueGUID) {
172 if (CfiFunctionDefs.count(ValueGUID))
173 UsedCfiDefs.insert(ValueGUID);
174 if (CfiFunctionDecls.count(ValueGUID))
175 UsedCfiDecls.insert(ValueGUID);
176 };
177
178 auto AddUsedThings = [&](GlobalValueSummary *GS) {
179 if (!GS) return;
180 for (const ValueInfo &VI : GS->refs())
181 AddUsedCfiGlobal(VI.getGUID());
182 if (auto *FS = dyn_cast<FunctionSummary>(GS)) {
183 for (auto &TT : FS->type_tests())
184 UsedTypeIds.insert(TT);
185 for (auto &TT : FS->type_test_assume_vcalls())
186 UsedTypeIds.insert(TT.GUID);
187 for (auto &TT : FS->type_checked_load_vcalls())
188 UsedTypeIds.insert(TT.GUID);
189 for (auto &TT : FS->type_test_assume_const_vcalls())
190 UsedTypeIds.insert(TT.VFunc.GUID);
191 for (auto &TT : FS->type_checked_load_const_vcalls())
192 UsedTypeIds.insert(TT.VFunc.GUID);
193 for (auto &ET : FS->calls())
194 AddUsedCfiGlobal(ET.first.getGUID());
195 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000196 };
197
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000198 // Include the hash for the linkage type to reflect internalization and weak
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000199 // resolution, and collect any used type identifier resolutions.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000200 for (auto &GS : DefinedGlobals) {
201 GlobalValue::LinkageTypes Linkage = GS.second->linkage();
202 Hasher.update(
203 ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000204 AddUsedCfiGlobal(GS.first);
205 AddUsedThings(GS.second);
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000206 }
207
208 // Imported functions may introduce new uses of type identifier resolutions,
209 // so we need to collect their used resolutions as well.
210 for (auto &ImpM : ImportList)
211 for (auto &ImpF : ImpM.second)
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000212 AddUsedThings(Index.findSummaryInModule(ImpF.first, ImpM.first()));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000213
214 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
215 AddString(TId);
216
217 AddUnsigned(S.TTRes.TheKind);
218 AddUnsigned(S.TTRes.SizeM1BitWidth);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000219
Peter Collingbourneb9b60252017-09-11 22:49:10 +0000220 AddUint64(S.TTRes.AlignLog2);
221 AddUint64(S.TTRes.SizeM1);
222 AddUint64(S.TTRes.BitMask);
223 AddUint64(S.TTRes.InlineBits);
224
Peter Collingbourne711284b2017-03-10 21:37:10 +0000225 AddUint64(S.WPDRes.size());
226 for (auto &WPD : S.WPDRes) {
227 AddUnsigned(WPD.first);
228 AddUnsigned(WPD.second.TheKind);
229 AddString(WPD.second.SingleImplName);
230
231 AddUint64(WPD.second.ResByArg.size());
232 for (auto &ByArg : WPD.second.ResByArg) {
233 AddUint64(ByArg.first.size());
234 for (uint64_t Arg : ByArg.first)
235 AddUint64(Arg);
236 AddUnsigned(ByArg.second.TheKind);
237 AddUint64(ByArg.second.Info);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +0000238 AddUnsigned(ByArg.second.Byte);
239 AddUnsigned(ByArg.second.Bit);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000240 }
241 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000242 };
243
244 // Include the hash for all type identifiers used by this module.
245 for (GlobalValue::GUID TId : UsedTypeIds) {
246 auto SummariesI = TypeIdSummariesByGuid.find(TId);
247 if (SummariesI != TypeIdSummariesByGuid.end())
248 for (auto *Summary : SummariesI->second)
249 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000250 }
251
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000252 AddUnsigned(UsedCfiDefs.size());
253 for (auto &V : UsedCfiDefs)
254 AddUint64(V);
255
256 AddUnsigned(UsedCfiDecls.size());
257 for (auto &V : UsedCfiDecls)
258 AddUint64(V);
259
Dehao Chen27978002016-12-16 16:48:46 +0000260 if (!Conf.SampleProfile.empty()) {
261 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
262 if (FileOrErr)
263 Hasher.update(FileOrErr.get()->getBuffer());
264 }
265
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000266 Key = toHex(Hasher.result());
267}
268
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000269static void thinLTOResolveWeakForLinkerGUID(
270 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
271 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000272 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000273 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000274 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000275 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000276 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000277 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
278 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
279 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000280 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000281 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000282 // This is both a compile-time optimization and a correctness
283 // transformation. This is necessary for correctness when we have exported
284 // a reference - we need to convert the linkonce to weak to
285 // ensure a copy is kept to satisfy the exported reference.
286 // FIXME: We may want to split the compile time and correctness
287 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000288 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000289 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
290 S->setLinkage(GlobalValue::getWeakLinkage(
291 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000292 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000293 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000294 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000295 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000296 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
297 if (S->linkage() != OriginalLinkage)
298 recordNewLinkage(S->modulePath(), GUID, S->linkage());
299 }
300}
301
302// Resolve Weak and LinkOnce values in the \p Index.
303//
304// We'd like to drop these functions if they are no longer referenced in the
305// current module. However there is a chance that another module is still
306// referencing them because of the import. We make sure we always emit at least
307// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000308void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000309 ModuleSummaryIndex &Index,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000310 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000311 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000312 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000313 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000314 // We won't optimize the globals that are referenced by an alias for now
315 // Ideally we should turn the alias into a global and duplicate the definition
316 // when needed.
317 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
318 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000319 for (auto &S : I.second.SummaryList)
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000320 if (auto AS = dyn_cast<AliasSummary>(S.get()))
321 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
322
323 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000324 thinLTOResolveWeakForLinkerGUID(I.second.SummaryList, I.first,
325 GlobalInvolvedWithAlias, isPrevailing,
326 recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000327}
328
329static void thinLTOInternalizeAndPromoteGUID(
330 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000331 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000332 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000333 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000334 if (GlobalValue::isLocalLinkage(S->linkage()))
335 S->setLinkage(GlobalValue::ExternalLinkage);
336 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
337 S->setLinkage(GlobalValue::InternalLinkage);
338 }
339}
340
341// Update the linkages in the given \p Index to mark exported values
342// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000343void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000344 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000345 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000346 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000347 thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000348}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000349
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000350// Requires a destructor for std::vector<InputModule>.
351InputFile::~InputFile() = default;
352
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000353Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
354 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000355
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000356 Expected<IRSymtabFile> FOrErr = readIRSymtab(Object);
357 if (!FOrErr)
358 return FOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000359
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000360 File->TargetTriple = FOrErr->TheReader.getTargetTriple();
361 File->SourceFileName = FOrErr->TheReader.getSourceFileName();
362 File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts();
363 File->ComdatTable = FOrErr->TheReader.getComdatTable();
Peter Collingbournead903692016-12-13 19:43:49 +0000364
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000365 for (unsigned I = 0; I != FOrErr->Mods.size(); ++I) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000366 size_t Begin = File->Symbols.size();
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000367 for (const irsymtab::Reader::SymbolRef &Sym :
368 FOrErr->TheReader.module_symbols(I))
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000369 // Skip symbols that are irrelevant to LTO. Note that this condition needs
370 // to match the one in Skip() in LTO::addRegularLTO().
371 if (Sym.isGlobal() && !Sym.isFormatSpecific())
372 File->Symbols.push_back(Sym);
373 File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
Rafael Espindola79121102016-10-25 12:02:03 +0000374 }
375
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000376 File->Mods = FOrErr->Mods;
377 File->Strtab = std::move(FOrErr->Strtab);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000378 return std::move(File);
379}
380
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000381StringRef InputFile::getName() const {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000382 return Mods[0].getModuleIdentifier();
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000383}
384
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000385LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
386 Config &Conf)
387 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Mehdi Aminie7494532016-08-23 18:39:12 +0000388 Ctx(Conf) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000389
390LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
391 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000392 this->Backend =
393 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000394}
395
396LTO::LTO(Config Conf, ThinBackend Backend,
397 unsigned ParallelCodeGenParallelismLevel)
398 : Conf(std::move(Conf)),
399 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000400 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000401
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000402// Requires a destructor for MapVector<BitcodeModule>.
403LTO::~LTO() = default;
404
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000405// Add the symbols in the given module to the GlobalResolutions map, and resolve
406// their partitions.
407void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
408 ArrayRef<SymbolResolution> Res,
409 unsigned Partition, bool InSummary) {
410 auto *ResI = Res.begin();
411 auto *ResE = Res.end();
Peter Collingbourne7e85b262017-06-15 17:41:32 +0000412 (void)ResE;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000413 for (const InputFile::Symbol &Sym : Syms) {
414 assert(ResI != ResE);
415 SymbolResolution Res = *ResI++;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000416
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000417 auto &GlobalRes = GlobalResolutions[Sym.getName()];
418 GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
Eugene Leviant746f1522017-12-15 09:18:21 +0000419 if (Res.Prevailing) {
420 assert((GlobalRes.IRName.empty() || !Sym.getIRName().empty()) &&
421 "Overriding existing resolution with undefined asm symbol");
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000422 GlobalRes.IRName = Sym.getIRName();
Eugene Leviant746f1522017-12-15 09:18:21 +0000423 }
Teresa Johnson6c475a72017-01-05 21:34:18 +0000424
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000425 // Set the partition to external if we know it is re-defined by the linker
426 // with -defsym or -wrap options, used elsewhere, e.g. it is visible to a
427 // regular object, is referenced from llvm.compiler_used, or was already
428 // recorded as being referenced from a different partition.
429 if (Res.LinkerRedefined || Res.VisibleToRegularObj || Sym.isUsed() ||
430 (GlobalRes.Partition != GlobalResolution::Unknown &&
431 GlobalRes.Partition != Partition)) {
432 GlobalRes.Partition = GlobalResolution::External;
433 } else
434 // First recorded reference, save the current partition.
435 GlobalRes.Partition = Partition;
436
437 // Flag as visible outside of summary if visible from a regular object or
438 // from a module that does not have a summary.
439 GlobalRes.VisibleOutsideSummary |=
440 (Res.VisibleToRegularObj || Sym.isUsed() || !InSummary);
441 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000442}
443
Rafael Espindola7775c332016-08-26 20:19:35 +0000444static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
445 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000446 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000447 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000448 auto ResI = Res.begin();
449 for (const InputFile::Symbol &Sym : Input->symbols()) {
450 assert(ResI != Res.end());
451 SymbolResolution Res = *ResI++;
452
Rafael Espindola7775c332016-08-26 20:19:35 +0000453 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000454 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000455 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000456 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000457 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000458 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000459 OS << 'x';
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000460 if (Res.LinkerRedefined)
461 OS << 'r';
Rafael Espindola7775c332016-08-26 20:19:35 +0000462 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000463 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000464 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000465 assert(ResI == Res.end());
466}
467
468Error LTO::add(std::unique_ptr<InputFile> Input,
469 ArrayRef<SymbolResolution> Res) {
470 assert(!CalledGetMaxTasks);
471
472 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000473 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000474
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000475 const SymbolResolution *ResI = Res.begin();
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000476 for (unsigned I = 0; I != Input->Mods.size(); ++I)
477 if (Error Err = addModule(*Input, I, ResI, Res.end()))
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000478 return Err;
479
480 assert(ResI == Res.end());
481 return Error::success();
482}
483
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000484Error LTO::addModule(InputFile &Input, unsigned ModI,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000485 const SymbolResolution *&ResI,
486 const SymbolResolution *ResE) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000487 Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo();
488 if (!LTOInfo)
489 return LTOInfo.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000490
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000491 BitcodeModule BM = Input.Mods[ModI];
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000492 auto ModSyms = Input.module_symbols(ModI);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000493 addModuleToGlobalRes(ModSyms, {ResI, ResE},
494 LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0,
495 LTOInfo->HasSummary);
496
497 if (LTOInfo->IsThinLTO)
498 return addThinLTO(BM, ModSyms, ResI, ResE);
499
500 Expected<RegularLTOState::AddedModule> ModOrErr =
501 addRegularLTO(BM, ModSyms, ResI, ResE);
502 if (!ModOrErr)
503 return ModOrErr.takeError();
504
505 if (!LTOInfo->HasSummary)
506 return linkRegularLTO(std::move(*ModOrErr), /*LivenessFromIndex=*/false);
507
508 // Regular LTO module summaries are added to a dummy module that represents
509 // the combined regular LTO module.
510 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
511 return Err;
512 RegularLTO.ModsWithSummaries.push_back(std::move(*ModOrErr));
513 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000514}
515
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000516// Checks whether the given global value is in a non-prevailing comdat
517// (comdat containing values the linker indicated were not prevailing,
518// which we then dropped to available_externally), and if so, removes
519// it from the comdat. This is called for all global values to ensure the
520// comdat is empty rather than leaving an incomplete comdat. It is needed for
521// regular LTO modules, in case we are in a mixed-LTO mode (both regular
522// and thin LTO modules) compilation. Since the regular LTO module will be
523// linked first in the final native link, we want to make sure the linker
524// doesn't select any of these incomplete comdats that would be left
525// in the regular LTO module without this cleanup.
526static void
527handleNonPrevailingComdat(GlobalValue &GV,
528 std::set<const Comdat *> &NonPrevailingComdats) {
529 Comdat *C = GV.getComdat();
530 if (!C)
531 return;
532
533 if (!NonPrevailingComdats.count(C))
534 return;
535
536 // Additionally need to drop externally visible global values from the comdat
537 // to available_externally, so that there aren't multiply defined linker
538 // errors.
539 if (!GV.hasLocalLinkage())
540 GV.setLinkage(GlobalValue::AvailableExternallyLinkage);
541
542 if (auto GO = dyn_cast<GlobalObject>(&GV))
543 GO->setComdat(nullptr);
544}
545
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000546// Add a regular LTO object to the link.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000547// The resulting module needs to be linked into the combined LTO module with
548// linkRegularLTO.
549Expected<LTO::RegularLTOState::AddedModule>
550LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
551 const SymbolResolution *&ResI,
552 const SymbolResolution *ResE) {
553 RegularLTOState::AddedModule Mod;
Peter Collingbournead903692016-12-13 19:43:49 +0000554 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000555 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
556 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000557 if (!MOrErr)
558 return MOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000559 Module &M = **MOrErr;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000560 Mod.M = std::move(*MOrErr);
561
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000562 if (Error Err = M.materializeMetadata())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000563 return std::move(Err);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000564 UpgradeDebugInfo(M);
565
Peter Collingbournead903692016-12-13 19:43:49 +0000566 ModuleSymbolTable SymTab;
567 SymTab.addModule(&M);
568
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000569 for (GlobalVariable &GV : M.globals())
570 if (GV.hasAppendingLinkage())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000571 Mod.Keep.push_back(&GV);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000572
Peter Collingbourne46136262017-02-02 05:22:42 +0000573 DenseSet<GlobalObject *> AliasedGlobals;
574 for (auto &GA : M.aliases())
575 if (GlobalObject *GO = GA.getBaseObject())
576 AliasedGlobals.insert(GO);
577
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000578 // In this function we need IR GlobalValues matching the symbols in Syms
579 // (which is not backed by a module), so we need to enumerate them in the same
580 // order. The symbol enumeration order of a ModuleSymbolTable intentionally
581 // matches the order of an irsymtab, but when we read the irsymtab in
582 // InputFile::create we omit some symbols that are irrelevant to LTO. The
583 // Skip() function skips the same symbols from the module as InputFile does
584 // from the symbol table.
585 auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
586 auto Skip = [&]() {
587 while (MsymI != MsymE) {
588 auto Flags = SymTab.getSymbolFlags(*MsymI);
589 if ((Flags & object::BasicSymbolRef::SF_Global) &&
590 !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
591 return;
592 ++MsymI;
593 }
594 };
595 Skip();
596
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000597 std::set<const Comdat *> NonPrevailingComdats;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000598 for (const InputFile::Symbol &Sym : Syms) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000599 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000600 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000601
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000602 assert(MsymI != MsymE);
603 ModuleSymbolTable::Symbol Msym = *MsymI++;
604 Skip();
605
606 if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000607 if (Res.Prevailing) {
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000608 if (Sym.isUndefined())
Peter Collingbournec387e702017-02-02 05:12:15 +0000609 continue;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000610 Mod.Keep.push_back(GV);
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000611 // For symbols re-defined with linker -wrap and -defsym options,
612 // set the linkage to weak to inhibit IPO. The linkage will be
613 // restored by the linker.
614 if (Res.LinkerRedefined)
615 GV->setLinkage(GlobalValue::WeakAnyLinkage);
616
Davide Italianod4db1162017-05-26 21:56:14 +0000617 GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage();
618 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
619 GV->setLinkage(GlobalValue::getWeakLinkage(
620 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Peter Collingbourne46136262017-02-02 05:22:42 +0000621 } else if (isa<GlobalObject>(GV) &&
622 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
623 GV->hasAvailableExternallyLinkage()) &&
624 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000625 // Any of the above three types of linkage indicates that the
Peter Collingbourne46136262017-02-02 05:22:42 +0000626 // chosen prevailing symbol will have the same semantics as this copy of
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000627 // the symbol, so we may be able to link it with available_externally
628 // linkage. We will decide later whether to do that when we link this
629 // module (in linkRegularLTO), based on whether it is undefined.
630 Mod.Keep.push_back(GV);
631 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000632 if (GV->hasComdat())
633 NonPrevailingComdats.insert(GV->getComdat());
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000634 cast<GlobalObject>(GV)->setComdat(nullptr);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000635 }
Sean Fertile4595a912017-11-04 17:04:39 +0000636
637 // Set the 'local' flag based on the linker resolution for this symbol.
638 GV->setDSOLocal(Res.FinalDefinitionInLinkageUnit);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000639 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000640 // Common resolution: collect the maximum size/alignment over all commons.
641 // We also record if we see an instance of a common as prevailing, so that
642 // if none is prevailing we can ignore it later.
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000643 if (Sym.isCommon()) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000644 // FIXME: We should figure out what to do about commons defined by asm.
645 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000646 auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000647 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
648 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000649 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000650 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000651
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000652 }
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000653 if (!M.getComdatSymbolTable().empty())
654 for (GlobalValue &GV : M.global_values())
655 handleNonPrevailingComdat(GV, NonPrevailingComdats);
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000656 assert(MsymI == MsymE);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000657 return std::move(Mod);
658}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000659
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000660Error LTO::linkRegularLTO(RegularLTOState::AddedModule Mod,
661 bool LivenessFromIndex) {
662 if (!RegularLTO.CombinedModule) {
663 RegularLTO.CombinedModule =
664 llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
665 RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
666 }
667
668 std::vector<GlobalValue *> Keep;
669 for (GlobalValue *GV : Mod.Keep) {
670 if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID()))
671 continue;
672
673 if (!GV->hasAvailableExternallyLinkage()) {
674 Keep.push_back(GV);
675 continue;
676 }
677
678 // Only link available_externally definitions if we don't already have a
679 // definition.
680 GlobalValue *CombinedGV =
681 RegularLTO.CombinedModule->getNamedValue(GV->getName());
682 if (CombinedGV && !CombinedGV->isDeclaration())
683 continue;
684
685 Keep.push_back(GV);
686 }
687
688 return RegularLTO.Mover->move(std::move(Mod.M), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000689 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000690 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000691}
692
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000693// Add a ThinLTO module to the link.
694Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000695 const SymbolResolution *&ResI,
696 const SymbolResolution *ResE) {
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000697 if (Error Err =
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000698 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
699 ThinLTO.ModuleMap.size()))
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000700 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000701
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000702 for (const InputFile::Symbol &Sym : Syms) {
703 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000704 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000705
Sean Fertile4595a912017-11-04 17:04:39 +0000706 if (!Sym.getIRName().empty()) {
707 auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
708 Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
709 if (Res.Prevailing) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000710 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
Davide Italiano6a5fbe52017-07-06 19:58:26 +0000711
712 // For linker redefined symbols (via --wrap or --defsym) we want to
713 // switch the linkage to `weak` to prevent IPOs from happening.
714 // Find the summary in the module for this very GV and record the new
715 // linkage so that we can switch it when we import the GV.
716 if (Res.LinkerRedefined)
717 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
718 GUID, BM.getModuleIdentifier()))
719 S->setLinkage(GlobalValue::WeakAnyLinkage);
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000720 }
Sean Fertile4595a912017-11-04 17:04:39 +0000721
722 // If the linker resolved the symbol to a local definition then mark it
723 // as local in the summary for the module we are adding.
724 if (Res.FinalDefinitionInLinkageUnit) {
725 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
726 GUID, BM.getModuleIdentifier())) {
727 S->setDSOLocal(true);
728 }
729 }
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000730 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000731 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000732
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000733 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
734 return make_error<StringError>(
735 "Expected at most one ThinLTO module per bitcode file",
736 inconvertibleErrorCode());
737
Mehdi Amini41af4302016-11-11 04:28:40 +0000738 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000739}
740
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000741unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000742 CalledGetMaxTasks = true;
743 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
744}
745
Peter Collingbourne80186a52016-09-23 21:33:43 +0000746Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000747 // Compute "dead" symbols, we don't want to import/export these!
748 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
749 for (auto &Res : GlobalResolutions) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000750 if (Res.second.VisibleOutsideSummary &&
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000751 // IRName will be defined if we have seen the prevailing copy of
752 // this value. If not, no need to preserve any ThinLTO copies.
753 !Res.second.IRName.empty())
754 GUIDPreservedSymbols.insert(GlobalValue::getGUID(
755 GlobalValue::dropLLVMManglingEscape(Res.second.IRName)));
756 }
757
758 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
759
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000760 // Save the status of having a regularLTO combined module, as
761 // this is needed for generating the ThinLTO Task ID, and
762 // the CombinedModule will be moved at the end of runRegularLTO.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000763 bool HasRegularLTO = RegularLTO.CombinedModule != nullptr ||
764 !RegularLTO.ModsWithSummaries.empty();
Mehdi Aminie7494532016-08-23 18:39:12 +0000765 // Invoke regular LTO if there was a regular LTO module to start with.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000766 if (HasRegularLTO)
Peter Collingbourne80186a52016-09-23 21:33:43 +0000767 if (auto E = runRegularLTO(AddStream))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000768 return E;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000769 return runThinLTO(AddStream, Cache, HasRegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000770}
771
Peter Collingbourne80186a52016-09-23 21:33:43 +0000772Error LTO::runRegularLTO(AddStreamFn AddStream) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000773 for (auto &M : RegularLTO.ModsWithSummaries)
774 if (Error Err = linkRegularLTO(std::move(M),
775 /*LivenessFromIndex=*/true))
776 return Err;
777
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000778 // Make sure commons have the right size/alignment: we kept the largest from
779 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000780 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000781 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000782 if (!I.second.Prevailing)
783 // Don't do anything if no instance of this common was prevailing.
784 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000785 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000786 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000787 // Don't create a new global if the type is already correct, just make
788 // sure the alignment is correct.
789 OldGV->setAlignment(I.second.Align);
790 continue;
791 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000792 ArrayType *Ty =
793 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000794 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
795 GlobalValue::CommonLinkage,
796 ConstantAggregateZero::get(Ty), "");
797 GV->setAlignment(I.second.Align);
798 if (OldGV) {
799 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
800 GV->takeName(OldGV);
801 OldGV->eraseFromParent();
802 } else {
803 GV->setName(I.first);
804 }
805 }
806
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000807 if (Conf.PreOptModuleHook &&
808 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000809 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000810
Mehdi Aminid310b472016-08-22 06:25:41 +0000811 if (!Conf.CodeGenOnly) {
812 for (const auto &R : GlobalResolutions) {
813 if (R.second.IRName.empty())
814 continue;
815 if (R.second.Partition != 0 &&
816 R.second.Partition != GlobalResolution::External)
817 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000818
Mehdi Aminid310b472016-08-22 06:25:41 +0000819 GlobalValue *GV =
820 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
821 // Ignore symbols defined in other partitions.
822 if (!GV || GV->hasLocalLinkage())
823 continue;
824 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
825 : GlobalValue::UnnamedAddr::None);
826 if (R.second.Partition == 0)
827 GV->setLinkage(GlobalValue::InternalLinkage);
828 }
829
830 if (Conf.PostInternalizeModuleHook &&
831 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000832 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000833 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000834 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000835 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000836}
837
838/// This class defines the interface to the ThinLTO backend.
839class lto::ThinBackendProc {
840protected:
841 Config &Conf;
842 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000843 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000844
845public:
846 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000847 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000848 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000849 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
850
851 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000852 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000853 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000854 const FunctionImporter::ImportMapTy &ImportList,
855 const FunctionImporter::ExportSetTy &ExportList,
856 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000857 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000858 virtual Error wait() = 0;
859};
860
Benjamin Kramerffd37152016-11-19 20:44:26 +0000861namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000862class InProcessThinBackend : public ThinBackendProc {
863 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000864 AddStreamFn AddStream;
865 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000866 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000867 std::set<GlobalValue::GUID> CfiFunctionDefs;
868 std::set<GlobalValue::GUID> CfiFunctionDecls;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000869
870 Optional<Error> Err;
871 std::mutex ErrMu;
872
873public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000874 InProcessThinBackend(
875 Config &Conf, ModuleSummaryIndex &CombinedIndex,
876 unsigned ThinLTOParallelismLevel,
877 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000878 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000879 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
880 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000881 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
882 // Create a mapping from type identifier GUIDs to type identifier summaries.
883 // This allows backends to use the type identifier GUIDs stored in the
884 // function summaries to determine which type identifier summaries affect
885 // each function without needing to compute GUIDs in each backend.
886 for (auto &TId : CombinedIndex.typeIds())
887 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000888 for (auto &Name : CombinedIndex.cfiFunctionDefs())
889 CfiFunctionDefs.insert(
890 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
891 for (auto &Name : CombinedIndex.cfiFunctionDecls())
892 CfiFunctionDecls.insert(
893 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000894 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000895
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000896 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000897 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000898 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000899 const FunctionImporter::ImportMapTy &ImportList,
900 const FunctionImporter::ExportSetTy &ExportList,
901 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
902 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000903 MapVector<StringRef, BitcodeModule> &ModuleMap,
904 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000905 auto RunThinBackend = [&](AddStreamFn AddStream) {
906 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000907 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000908 if (!MOrErr)
909 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000910
Peter Collingbourne80186a52016-09-23 21:33:43 +0000911 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
912 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000913 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000914
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000915 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000916
917 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
918 all_of(CombinedIndex.getModuleHash(ModuleID),
919 [](uint32_t V) { return V == 0; }))
920 // Cache disabled or no entry for this module in the combined index or
921 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000922 return RunThinBackend(AddStream);
923
924 SmallString<40> Key;
925 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000926 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000927 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid,
928 CfiFunctionDefs, CfiFunctionDecls);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000929 if (AddStreamFn CacheAddStream = Cache(Task, Key))
930 return RunThinBackend(CacheAddStream);
931
Mehdi Amini41af4302016-11-11 04:28:40 +0000932 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000933 }
934
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000935 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000936 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000937 const FunctionImporter::ImportMapTy &ImportList,
938 const FunctionImporter::ExportSetTy &ExportList,
939 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000940 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
941 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000942 assert(ModuleToDefinedGVSummaries.count(ModulePath));
943 const GVSummaryMapTy &DefinedGlobals =
944 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000945 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000946 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000947 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000948 const FunctionImporter::ExportSetTy &ExportList,
949 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
950 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000951 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000952 MapVector<StringRef, BitcodeModule> &ModuleMap,
953 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000954 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000955 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
956 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000957 if (E) {
958 std::unique_lock<std::mutex> L(ErrMu);
959 if (Err)
960 Err = joinErrors(std::move(*Err), std::move(E));
961 else
962 Err = std::move(E);
963 }
964 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000965 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
966 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
967 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000968 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000969 }
970
971 Error wait() override {
972 BackendThreadPool.wait();
973 if (Err)
974 return std::move(*Err);
975 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000976 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000977 }
978};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000979} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000980
981ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
982 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000983 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000984 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000985 return llvm::make_unique<InProcessThinBackend>(
986 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000987 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000988 };
989}
990
Teresa Johnson3f212b82016-09-21 19:12:05 +0000991// Given the original \p Path to an output file, replace any path
992// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
993// resulting directory if it does not yet exist.
994std::string lto::getThinLTOOutputFile(const std::string &Path,
995 const std::string &OldPrefix,
996 const std::string &NewPrefix) {
997 if (OldPrefix.empty() && NewPrefix.empty())
998 return Path;
999 SmallString<128> NewPath(Path);
1000 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
1001 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
1002 if (!ParentPath.empty()) {
1003 // Make sure the new directory exists, creating it if necessary.
1004 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
1005 llvm::errs() << "warning: could not create directory '" << ParentPath
1006 << "': " << EC.message() << '\n';
1007 }
1008 return NewPath.str();
1009}
1010
Benjamin Kramerffd37152016-11-19 20:44:26 +00001011namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001012class WriteIndexesThinBackend : public ThinBackendProc {
1013 std::string OldPrefix, NewPrefix;
1014 bool ShouldEmitImportsFiles;
1015
1016 std::string LinkedObjectsFileName;
1017 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
1018
1019public:
Mehdi Amini767e1452016-09-06 03:23:45 +00001020 WriteIndexesThinBackend(
1021 Config &Conf, ModuleSummaryIndex &CombinedIndex,
1022 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1023 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
1024 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +00001025 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001026 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
1027 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
1028 LinkedObjectsFileName(LinkedObjectsFileName) {}
1029
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001030 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +00001031 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001032 const FunctionImporter::ImportMapTy &ImportList,
1033 const FunctionImporter::ExportSetTy &ExportList,
1034 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +00001035 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
1036 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001037 std::string NewModulePath =
1038 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
1039
1040 std::error_code EC;
1041 if (!LinkedObjectsFileName.empty()) {
1042 if (!LinkedObjectsFile) {
1043 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
1044 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
1045 if (EC)
1046 return errorCodeToError(EC);
1047 }
1048 *LinkedObjectsFile << NewModulePath << '\n';
1049 }
1050
1051 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
1052 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001053 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001054
1055 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
1056 sys::fs::OpenFlags::F_None);
1057 if (EC)
1058 return errorCodeToError(EC);
1059 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
1060
1061 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001062 return errorCodeToError(
1063 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +00001064 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001065 }
1066
Mehdi Amini41af4302016-11-11 04:28:40 +00001067 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001068};
Benjamin Kramerffd37152016-11-19 20:44:26 +00001069} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001070
1071ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
1072 std::string NewPrefix,
1073 bool ShouldEmitImportsFiles,
1074 std::string LinkedObjectsFile) {
1075 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +00001076 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +00001077 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001078 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +00001079 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
1080 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001081 };
1082}
1083
Peter Collingbourne80186a52016-09-23 21:33:43 +00001084Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
1085 bool HasRegularLTO) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001086 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +00001087 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001088
1089 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +00001090 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001091
1092 // Collect for each module the list of function it defines (GUID ->
1093 // Summary).
Dehao Chen5d96ee42017-07-10 20:12:54 +00001094 StringMap<GVSummaryMapTy>
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001095 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
1096 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
1097 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +00001098 // Create entries for any modules that didn't have any GV summaries
1099 // (either they didn't have any GVs to start with, or we suppressed
1100 // generation of the summaries because they e.g. had inline assembly
1101 // uses that couldn't be promoted/renamed on export). This is so
1102 // InProcessThinBackend::start can still launch a backend thread, which
1103 // is passed the map of summaries for the module, without any special
1104 // handling for this case.
1105 for (auto &Mod : ThinLTO.ModuleMap)
1106 if (!ModuleToDefinedGVSummaries.count(Mod.first))
1107 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001108
1109 StringMap<FunctionImporter::ImportMapTy> ImportLists(
1110 ThinLTO.ModuleMap.size());
1111 StringMap<FunctionImporter::ExportSetTy> ExportLists(
1112 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001113 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001114
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001115 if (Conf.OptLevel > 0)
Teresa Johnson002af9b2016-10-31 22:12:21 +00001116 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +00001117 ImportLists, ExportLists);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001118
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001119 // Figure out which symbols need to be internalized. This also needs to happen
1120 // at -O0 because summary-based DCE is implemented using internalization, and
1121 // we must apply DCE consistently with the full LTO module in order to avoid
1122 // undefined references during the final link.
1123 std::set<GlobalValue::GUID> ExportedGUIDs;
1124 for (auto &Res : GlobalResolutions) {
1125 // First check if the symbol was flagged as having external references.
1126 if (Res.second.Partition != GlobalResolution::External)
1127 continue;
1128 // IRName will be defined if we have seen the prevailing copy of
1129 // this value. If not, no need to mark as exported from a ThinLTO
1130 // partition (and we can't get the GUID).
1131 if (Res.second.IRName.empty())
1132 continue;
1133 auto GUID = GlobalValue::getGUID(
1134 GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
1135 // Mark exported unless index-based analysis determined it to be dead.
1136 if (ThinLTO.CombinedIndex.isGUIDLive(GUID))
1137 ExportedGUIDs.insert(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001138 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001139
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001140 // Any functions referenced by the jump table in the regular LTO object must
1141 // be exported.
1142 for (auto &Def : ThinLTO.CombinedIndex.cfiFunctionDefs())
1143 ExportedGUIDs.insert(
1144 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Def)));
1145
1146 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
1147 const auto &ExportList = ExportLists.find(ModuleIdentifier);
1148 return (ExportList != ExportLists.end() &&
1149 ExportList->second.count(GUID)) ||
1150 ExportedGUIDs.count(GUID);
1151 };
1152 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1153
Peter Collingbournef87197a2017-05-25 23:40:11 +00001154 auto isPrevailing = [&](GlobalValue::GUID GUID,
1155 const GlobalValueSummary *S) {
1156 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1157 };
1158 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1159 GlobalValue::GUID GUID,
1160 GlobalValue::LinkageTypes NewLinkage) {
1161 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1162 };
1163 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1164 recordNewLinkage);
1165
Peter Collingbourne80186a52016-09-23 21:33:43 +00001166 std::unique_ptr<ThinBackendProc> BackendProc =
1167 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1168 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001169
Davide Italiano63098952017-01-04 20:37:57 +00001170 // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1171 // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1172 // are reserved for parallel code generation partitions.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +00001173 unsigned Task =
1174 HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001175 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001176 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001177 ExportLists[Mod.first],
1178 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001179 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001180 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001181 }
1182
1183 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001184}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001185
Reid Kleckner3fc649c2017-09-23 01:03:17 +00001186Expected<std::unique_ptr<ToolOutputFile>>
Davide Italiano690ed9d2017-02-10 23:49:38 +00001187lto::setupOptimizationRemarks(LLVMContext &Context,
1188 StringRef LTORemarksFilename,
1189 bool LTOPassRemarksWithHotness, int Count) {
1190 if (LTORemarksFilename.empty())
1191 return nullptr;
1192
1193 std::string Filename = LTORemarksFilename;
1194 if (Count != -1)
1195 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1196
1197 std::error_code EC;
1198 auto DiagnosticFile =
Reid Kleckner3fc649c2017-09-23 01:03:17 +00001199 llvm::make_unique<ToolOutputFile>(Filename, EC, sys::fs::F_None);
Davide Italiano690ed9d2017-02-10 23:49:38 +00001200 if (EC)
1201 return errorCodeToError(EC);
1202 Context.setDiagnosticsOutputFile(
1203 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1204 if (LTOPassRemarksWithHotness)
Brian Gesiak44e5f6c2017-06-30 18:13:59 +00001205 Context.setDiagnosticsHotnessRequested(true);
Davide Italiano690ed9d2017-02-10 23:49:38 +00001206 DiagnosticFile->keep();
1207 return std::move(DiagnosticFile);
1208}