blob: 2bd3af6e92d8839c5eef6ea05cf00f56171eef37 [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,
68 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +000069 // Compute the unique hash for this entry.
70 // This is based on the current compiler version, the module itself, the
71 // export list, the hash for every single module in the import list, the
72 // list of ResolvedODR for the module, and the list of preserved symbols.
73 SHA1 Hasher;
74
75 // Start with the compiler revision
76 Hasher.update(LLVM_VERSION_STRING);
Peter Collingbourne942fa562017-04-13 01:26:12 +000077#ifdef LLVM_REVISION
Mehdi Aminiadc0e262016-08-23 21:30:12 +000078 Hasher.update(LLVM_REVISION);
79#endif
80
Peter Collingbournef4257522016-12-08 05:28:30 +000081 // Include the parts of the LTO configuration that affect code generation.
82 auto AddString = [&](StringRef Str) {
83 Hasher.update(Str);
84 Hasher.update(ArrayRef<uint8_t>{0});
85 };
86 auto AddUnsigned = [&](unsigned I) {
87 uint8_t Data[4];
88 Data[0] = I;
89 Data[1] = I >> 8;
90 Data[2] = I >> 16;
91 Data[3] = I >> 24;
92 Hasher.update(ArrayRef<uint8_t>{Data, 4});
93 };
Peter Collingbourne54a52b72017-03-03 20:25:30 +000094 auto AddUint64 = [&](uint64_t I) {
95 uint8_t Data[8];
96 Data[0] = I;
97 Data[1] = I >> 8;
98 Data[2] = I >> 16;
99 Data[3] = I >> 24;
100 Data[4] = I >> 32;
101 Data[5] = I >> 40;
102 Data[6] = I >> 48;
103 Data[7] = I >> 56;
104 Hasher.update(ArrayRef<uint8_t>{Data, 8});
105 };
Peter Collingbournef4257522016-12-08 05:28:30 +0000106 AddString(Conf.CPU);
107 // FIXME: Hash more of Options. For now all clients initialize Options from
108 // command-line flags (which is unsupported in production), but may set
109 // RelaxELFRelocations. The clang driver can also pass FunctionSections,
110 // DataSections and DebuggerTuning via command line flags.
111 AddUnsigned(Conf.Options.RelaxELFRelocations);
112 AddUnsigned(Conf.Options.FunctionSections);
113 AddUnsigned(Conf.Options.DataSections);
114 AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
115 for (auto &A : Conf.MAttrs)
116 AddString(A);
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000117 if (Conf.RelocModel)
118 AddUnsigned(*Conf.RelocModel);
119 else
120 AddUnsigned(-1);
Peter Collingbournef4257522016-12-08 05:28:30 +0000121 AddUnsigned(Conf.CodeModel);
122 AddUnsigned(Conf.CGOptLevel);
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000123 AddUnsigned(Conf.CGFileType);
Peter Collingbournef4257522016-12-08 05:28:30 +0000124 AddUnsigned(Conf.OptLevel);
Tim Shen4e912aa2017-06-01 23:13:44 +0000125 AddUnsigned(Conf.UseNewPM);
Peter Collingbournef4257522016-12-08 05:28:30 +0000126 AddString(Conf.OptPipeline);
127 AddString(Conf.AAPipeline);
128 AddString(Conf.OverrideTriple);
129 AddString(Conf.DefaultTriple);
130
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000131 // Include the hash for the current module
132 auto ModHash = Index.getModuleHash(ModuleID);
133 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
134 for (auto F : ExportList)
135 // The export list can impact the internalization, be conservative here
136 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
137
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000138 // Include the hash for every module we import functions from. The set of
139 // imported symbols for each module may affect code generation and is
140 // sensitive to link order, so include that as well.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000141 for (auto &Entry : ImportList) {
142 auto ModHash = Index.getModuleHash(Entry.first());
143 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000144
145 AddUint64(Entry.second.size());
146 for (auto &Fn : Entry.second)
147 AddUint64(Fn.first);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000148 }
149
150 // Include the hash for the resolved ODR.
151 for (auto &Entry : ResolvedODR) {
152 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
153 sizeof(GlobalValue::GUID)));
154 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
155 sizeof(GlobalValue::LinkageTypes)));
156 }
157
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000158 std::set<GlobalValue::GUID> UsedTypeIds;
159
160 auto AddUsedTypeIds = [&](GlobalValueSummary *GS) {
161 auto *FS = dyn_cast_or_null<FunctionSummary>(GS);
162 if (!FS)
163 return;
164 for (auto &TT : FS->type_tests())
165 UsedTypeIds.insert(TT);
166 for (auto &TT : FS->type_test_assume_vcalls())
167 UsedTypeIds.insert(TT.GUID);
168 for (auto &TT : FS->type_checked_load_vcalls())
169 UsedTypeIds.insert(TT.GUID);
170 for (auto &TT : FS->type_test_assume_const_vcalls())
171 UsedTypeIds.insert(TT.VFunc.GUID);
172 for (auto &TT : FS->type_checked_load_const_vcalls())
173 UsedTypeIds.insert(TT.VFunc.GUID);
174 };
175
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000176 // Include the hash for the linkage type to reflect internalization and weak
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000177 // resolution, and collect any used type identifier resolutions.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000178 for (auto &GS : DefinedGlobals) {
179 GlobalValue::LinkageTypes Linkage = GS.second->linkage();
180 Hasher.update(
181 ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000182 AddUsedTypeIds(GS.second);
183 }
184
185 // Imported functions may introduce new uses of type identifier resolutions,
186 // so we need to collect their used resolutions as well.
187 for (auto &ImpM : ImportList)
188 for (auto &ImpF : ImpM.second)
189 AddUsedTypeIds(Index.findSummaryInModule(ImpF.first, ImpM.first()));
190
191 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
192 AddString(TId);
193
194 AddUnsigned(S.TTRes.TheKind);
195 AddUnsigned(S.TTRes.SizeM1BitWidth);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000196
197 AddUint64(S.WPDRes.size());
198 for (auto &WPD : S.WPDRes) {
199 AddUnsigned(WPD.first);
200 AddUnsigned(WPD.second.TheKind);
201 AddString(WPD.second.SingleImplName);
202
203 AddUint64(WPD.second.ResByArg.size());
204 for (auto &ByArg : WPD.second.ResByArg) {
205 AddUint64(ByArg.first.size());
206 for (uint64_t Arg : ByArg.first)
207 AddUint64(Arg);
208 AddUnsigned(ByArg.second.TheKind);
209 AddUint64(ByArg.second.Info);
210 }
211 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000212 };
213
214 // Include the hash for all type identifiers used by this module.
215 for (GlobalValue::GUID TId : UsedTypeIds) {
216 auto SummariesI = TypeIdSummariesByGuid.find(TId);
217 if (SummariesI != TypeIdSummariesByGuid.end())
218 for (auto *Summary : SummariesI->second)
219 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000220 }
221
Dehao Chen27978002016-12-16 16:48:46 +0000222 if (!Conf.SampleProfile.empty()) {
223 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
224 if (FileOrErr)
225 Hasher.update(FileOrErr.get()->getBuffer());
226 }
227
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000228 Key = toHex(Hasher.result());
229}
230
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000231static void thinLTOResolveWeakForLinkerGUID(
232 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
233 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000234 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000235 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000236 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000237 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000238 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000239 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
240 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
241 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000242 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000243 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000244 // This is both a compile-time optimization and a correctness
245 // transformation. This is necessary for correctness when we have exported
246 // a reference - we need to convert the linkonce to weak to
247 // ensure a copy is kept to satisfy the exported reference.
248 // FIXME: We may want to split the compile time and correctness
249 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000250 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000251 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
252 S->setLinkage(GlobalValue::getWeakLinkage(
253 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000254 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000255 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000256 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000257 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000258 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
259 if (S->linkage() != OriginalLinkage)
260 recordNewLinkage(S->modulePath(), GUID, S->linkage());
261 }
262}
263
264// Resolve Weak and LinkOnce values in the \p Index.
265//
266// We'd like to drop these functions if they are no longer referenced in the
267// current module. However there is a chance that another module is still
268// referencing them because of the import. We make sure we always emit at least
269// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000270void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000271 ModuleSummaryIndex &Index,
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 // We won't optimize the globals that are referenced by an alias for now
277 // Ideally we should turn the alias into a global and duplicate the definition
278 // when needed.
279 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
280 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000281 for (auto &S : I.second.SummaryList)
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000282 if (auto AS = dyn_cast<AliasSummary>(S.get()))
283 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
284
285 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000286 thinLTOResolveWeakForLinkerGUID(I.second.SummaryList, I.first,
287 GlobalInvolvedWithAlias, isPrevailing,
288 recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000289}
290
291static void thinLTOInternalizeAndPromoteGUID(
292 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000293 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000294 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000295 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000296 if (GlobalValue::isLocalLinkage(S->linkage()))
297 S->setLinkage(GlobalValue::ExternalLinkage);
298 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
299 S->setLinkage(GlobalValue::InternalLinkage);
300 }
301}
302
303// Update the linkages in the given \p Index to mark exported values
304// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000305void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000306 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000307 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000308 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000309 thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000310}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000311
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000312// Requires a destructor for std::vector<InputModule>.
313InputFile::~InputFile() = default;
314
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000315Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
316 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000317
Peter Collingbournead903692016-12-13 19:43:49 +0000318 ErrorOr<MemoryBufferRef> BCOrErr =
319 IRObjectFile::findBitcodeInMemBuffer(Object);
320 if (!BCOrErr)
321 return errorCodeToError(BCOrErr.getError());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000322
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000323 Expected<std::vector<BitcodeModule>> BMsOrErr =
324 getBitcodeModuleList(*BCOrErr);
325 if (!BMsOrErr)
326 return BMsOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000327
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000328 if (BMsOrErr->empty())
329 return make_error<StringError>("Bitcode file does not contain any modules",
330 inconvertibleErrorCode());
Peter Collingbournead903692016-12-13 19:43:49 +0000331
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000332 File->Mods = *BMsOrErr;
333
334 LLVMContext Ctx;
335 std::vector<Module *> Mods;
336 std::vector<std::unique_ptr<Module>> OwnedMods;
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000337 for (auto BM : *BMsOrErr) {
338 Expected<std::unique_ptr<Module>> MOrErr =
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000339 BM.getLazyModule(Ctx, /*ShouldLazyLoadMetadata*/ true,
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000340 /*IsImporting*/ false);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000341 if (!MOrErr)
342 return MOrErr.takeError();
343
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000344 if ((*MOrErr)->getDataLayoutStr().empty())
345 return make_error<StringError>("input module has no datalayout",
346 inconvertibleErrorCode());
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000347
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000348 Mods.push_back(MOrErr->get());
349 OwnedMods.push_back(std::move(*MOrErr));
350 }
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000351
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000352 SmallVector<char, 0> Symtab;
353 if (Error E = irsymtab::build(Mods, Symtab, File->Strtab))
354 return std::move(E);
355
356 irsymtab::Reader R({Symtab.data(), Symtab.size()},
357 {File->Strtab.data(), File->Strtab.size()});
Peter Collingbourne8446f1f2017-04-14 02:55:06 +0000358 File->TargetTriple = R.getTargetTriple();
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000359 File->SourceFileName = R.getSourceFileName();
360 File->COFFLinkerOpts = R.getCOFFLinkerOpts();
361 File->ComdatTable = R.getComdatTable();
362
363 for (unsigned I = 0; I != Mods.size(); ++I) {
364 size_t Begin = File->Symbols.size();
365 for (const irsymtab::Reader::SymbolRef &Sym : R.module_symbols(I))
366 // Skip symbols that are irrelevant to LTO. Note that this condition needs
367 // to match the one in Skip() in LTO::addRegularLTO().
368 if (Sym.isGlobal() && !Sym.isFormatSpecific())
369 File->Symbols.push_back(Sym);
370 File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
Rafael Espindola79121102016-10-25 12:02:03 +0000371 }
372
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000373 return std::move(File);
374}
375
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000376StringRef InputFile::getName() const {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000377 return Mods[0].getModuleIdentifier();
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000378}
379
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000380LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
381 Config &Conf)
382 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Mehdi Aminie7494532016-08-23 18:39:12 +0000383 Ctx(Conf) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000384
385LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
386 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000387 this->Backend =
388 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000389}
390
391LTO::LTO(Config Conf, ThinBackend Backend,
392 unsigned ParallelCodeGenParallelismLevel)
393 : Conf(std::move(Conf)),
394 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000395 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000396
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000397// Requires a destructor for MapVector<BitcodeModule>.
398LTO::~LTO() = default;
399
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000400// Add the given symbol to the GlobalResolutions map, and resolve its partition.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000401void LTO::addSymbolToGlobalRes(const InputFile::Symbol &Sym,
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000402 SymbolResolution Res, unsigned Partition) {
Peter Collingbournef10698b2017-03-31 02:44:50 +0000403 auto &GlobalRes = GlobalResolutions[Sym.getName()];
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000404 GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
405 if (Res.Prevailing)
406 GlobalRes.IRName = Sym.getIRName();
407
Teresa Johnson6c475a72017-01-05 21:34:18 +0000408 // Set the partition to external if we know it is used elsewhere, e.g.
409 // it is visible to a regular object, is referenced from llvm.compiler_used,
410 // or was already recorded as being referenced from a different partition.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000411 if (Res.VisibleToRegularObj || Sym.isUsed() ||
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000412 (GlobalRes.Partition != GlobalResolution::Unknown &&
Teresa Johnson6c475a72017-01-05 21:34:18 +0000413 GlobalRes.Partition != Partition)) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000414 GlobalRes.Partition = GlobalResolution::External;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000415 } else
416 // First recorded reference, save the current partition.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000417 GlobalRes.Partition = Partition;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000418
419 // Flag as visible outside of ThinLTO if visible from a regular object or
420 // if this is a reference in the regular LTO partition.
421 GlobalRes.VisibleOutsideThinLTO |=
Peter Collingbournefa58f752017-04-26 17:53:39 +0000422 (Res.VisibleToRegularObj || Sym.isUsed() ||
423 Partition == GlobalResolution::RegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000424}
425
Rafael Espindola7775c332016-08-26 20:19:35 +0000426static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
427 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000428 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000429 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000430 auto ResI = Res.begin();
431 for (const InputFile::Symbol &Sym : Input->symbols()) {
432 assert(ResI != Res.end());
433 SymbolResolution Res = *ResI++;
434
Rafael Espindola7775c332016-08-26 20:19:35 +0000435 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000436 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000437 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000438 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000439 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000440 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000441 OS << 'x';
442 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000443 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000444 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000445 assert(ResI == Res.end());
446}
447
448Error LTO::add(std::unique_ptr<InputFile> Input,
449 ArrayRef<SymbolResolution> Res) {
450 assert(!CalledGetMaxTasks);
451
452 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000453 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000454
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000455 const SymbolResolution *ResI = Res.begin();
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000456 for (unsigned I = 0; I != Input->Mods.size(); ++I)
457 if (Error Err = addModule(*Input, I, ResI, Res.end()))
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000458 return Err;
459
460 assert(ResI == Res.end());
461 return Error::success();
462}
463
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000464Error LTO::addModule(InputFile &Input, unsigned ModI,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000465 const SymbolResolution *&ResI,
466 const SymbolResolution *ResE) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000467 Expected<bool> HasThinLTOSummary = Input.Mods[ModI].hasSummary();
Peter Collingbournecd513a42016-11-11 19:50:24 +0000468 if (!HasThinLTOSummary)
469 return HasThinLTOSummary.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000470
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000471 auto ModSyms = Input.module_symbols(ModI);
Peter Collingbournecd513a42016-11-11 19:50:24 +0000472 if (*HasThinLTOSummary)
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000473 return addThinLTO(Input.Mods[ModI], ModSyms, ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000474 else
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000475 return addRegularLTO(Input.Mods[ModI], ModSyms, ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000476}
477
478// Add a regular LTO object to the link.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000479Error LTO::addRegularLTO(BitcodeModule BM,
480 ArrayRef<InputFile::Symbol> Syms,
481 const SymbolResolution *&ResI,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000482 const SymbolResolution *ResE) {
Mehdi Aminie7494532016-08-23 18:39:12 +0000483 if (!RegularLTO.CombinedModule) {
484 RegularLTO.CombinedModule =
485 llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
486 RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
487 }
Peter Collingbournead903692016-12-13 19:43:49 +0000488 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000489 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
490 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000491 if (!MOrErr)
492 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000493
Peter Collingbournead903692016-12-13 19:43:49 +0000494 Module &M = **MOrErr;
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000495 if (Error Err = M.materializeMetadata())
496 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000497 UpgradeDebugInfo(M);
498
Peter Collingbournead903692016-12-13 19:43:49 +0000499 ModuleSymbolTable SymTab;
500 SymTab.addModule(&M);
501
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000502 std::vector<GlobalValue *> Keep;
503
504 for (GlobalVariable &GV : M.globals())
505 if (GV.hasAppendingLinkage())
506 Keep.push_back(&GV);
507
Peter Collingbourne46136262017-02-02 05:22:42 +0000508 DenseSet<GlobalObject *> AliasedGlobals;
509 for (auto &GA : M.aliases())
510 if (GlobalObject *GO = GA.getBaseObject())
511 AliasedGlobals.insert(GO);
512
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000513 // In this function we need IR GlobalValues matching the symbols in Syms
514 // (which is not backed by a module), so we need to enumerate them in the same
515 // order. The symbol enumeration order of a ModuleSymbolTable intentionally
516 // matches the order of an irsymtab, but when we read the irsymtab in
517 // InputFile::create we omit some symbols that are irrelevant to LTO. The
518 // Skip() function skips the same symbols from the module as InputFile does
519 // from the symbol table.
520 auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
521 auto Skip = [&]() {
522 while (MsymI != MsymE) {
523 auto Flags = SymTab.getSymbolFlags(*MsymI);
524 if ((Flags & object::BasicSymbolRef::SF_Global) &&
525 !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
526 return;
527 ++MsymI;
528 }
529 };
530 Skip();
531
532 for (const InputFile::Symbol &Sym : Syms) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000533 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000534 SymbolResolution Res = *ResI++;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000535 addSymbolToGlobalRes(Sym, Res, 0);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000536
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000537 assert(MsymI != MsymE);
538 ModuleSymbolTable::Symbol Msym = *MsymI++;
539 Skip();
540
541 if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000542 if (Res.Prevailing) {
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000543 if (Sym.isUndefined())
Peter Collingbournec387e702017-02-02 05:12:15 +0000544 continue;
545 Keep.push_back(GV);
Davide Italianod4db1162017-05-26 21:56:14 +0000546 GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage();
547 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
548 GV->setLinkage(GlobalValue::getWeakLinkage(
549 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Peter Collingbourne46136262017-02-02 05:22:42 +0000550 } else if (isa<GlobalObject>(GV) &&
551 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
552 GV->hasAvailableExternallyLinkage()) &&
553 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
554 // Either of the above three types of linkage indicates that the
555 // chosen prevailing symbol will have the same semantics as this copy of
556 // the symbol, so we can link it with available_externally linkage. We
557 // only need to do this if the symbol is undefined.
Peter Collingbournec387e702017-02-02 05:12:15 +0000558 GlobalValue *CombinedGV =
559 RegularLTO.CombinedModule->getNamedValue(GV->getName());
Peter Collingbourne46136262017-02-02 05:22:42 +0000560 if (!CombinedGV || CombinedGV->isDeclaration()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000561 Keep.push_back(GV);
Peter Collingbourne46136262017-02-02 05:22:42 +0000562 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
563 cast<GlobalObject>(GV)->setComdat(nullptr);
564 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000565 }
566 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000567 // Common resolution: collect the maximum size/alignment over all commons.
568 // We also record if we see an instance of a common as prevailing, so that
569 // if none is prevailing we can ignore it later.
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000570 if (Sym.isCommon()) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000571 // FIXME: We should figure out what to do about commons defined by asm.
572 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000573 auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000574 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
575 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000576 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000577 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000578
579 // FIXME: use proposed local attribute for FinalDefinitionInLinkageUnit.
580 }
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000581 assert(MsymI == MsymE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000582
Peter Collingbournead903692016-12-13 19:43:49 +0000583 return RegularLTO.Mover->move(std::move(*MOrErr), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000584 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000585 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000586}
587
588// Add a ThinLTO object to the link.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000589Error LTO::addThinLTO(BitcodeModule BM,
590 ArrayRef<InputFile::Symbol> Syms,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000591 const SymbolResolution *&ResI,
592 const SymbolResolution *ResE) {
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000593 if (Error Err =
594 BM.readSummary(ThinLTO.CombinedIndex, ThinLTO.ModuleMap.size()))
595 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000596
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000597 for (const InputFile::Symbol &Sym : Syms) {
598 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000599 SymbolResolution Res = *ResI++;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000600 addSymbolToGlobalRes(Sym, Res, ThinLTO.ModuleMap.size() + 1);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000601
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000602 if (Res.Prevailing) {
603 if (!Sym.getIRName().empty()) {
604 auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
605 Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
606 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
607 }
608 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000609 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000610
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000611 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
612 return make_error<StringError>(
613 "Expected at most one ThinLTO module per bitcode file",
614 inconvertibleErrorCode());
615
Mehdi Amini41af4302016-11-11 04:28:40 +0000616 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000617}
618
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000619unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000620 CalledGetMaxTasks = true;
621 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
622}
623
Peter Collingbourne80186a52016-09-23 21:33:43 +0000624Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000625 // Save the status of having a regularLTO combined module, as
626 // this is needed for generating the ThinLTO Task ID, and
627 // the CombinedModule will be moved at the end of runRegularLTO.
628 bool HasRegularLTO = RegularLTO.CombinedModule != nullptr;
Mehdi Aminie7494532016-08-23 18:39:12 +0000629 // Invoke regular LTO if there was a regular LTO module to start with.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000630 if (HasRegularLTO)
Peter Collingbourne80186a52016-09-23 21:33:43 +0000631 if (auto E = runRegularLTO(AddStream))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000632 return E;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000633 return runThinLTO(AddStream, Cache, HasRegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000634}
635
Peter Collingbourne80186a52016-09-23 21:33:43 +0000636Error LTO::runRegularLTO(AddStreamFn AddStream) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000637 // Make sure commons have the right size/alignment: we kept the largest from
638 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000639 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000640 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000641 if (!I.second.Prevailing)
642 // Don't do anything if no instance of this common was prevailing.
643 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000644 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000645 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000646 // Don't create a new global if the type is already correct, just make
647 // sure the alignment is correct.
648 OldGV->setAlignment(I.second.Align);
649 continue;
650 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000651 ArrayType *Ty =
652 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000653 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
654 GlobalValue::CommonLinkage,
655 ConstantAggregateZero::get(Ty), "");
656 GV->setAlignment(I.second.Align);
657 if (OldGV) {
658 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
659 GV->takeName(OldGV);
660 OldGV->eraseFromParent();
661 } else {
662 GV->setName(I.first);
663 }
664 }
665
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000666 if (Conf.PreOptModuleHook &&
667 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000668 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000669
Mehdi Aminid310b472016-08-22 06:25:41 +0000670 if (!Conf.CodeGenOnly) {
671 for (const auto &R : GlobalResolutions) {
672 if (R.second.IRName.empty())
673 continue;
674 if (R.second.Partition != 0 &&
675 R.second.Partition != GlobalResolution::External)
676 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000677
Mehdi Aminid310b472016-08-22 06:25:41 +0000678 GlobalValue *GV =
679 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
680 // Ignore symbols defined in other partitions.
681 if (!GV || GV->hasLocalLinkage())
682 continue;
683 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
684 : GlobalValue::UnnamedAddr::None);
685 if (R.second.Partition == 0)
686 GV->setLinkage(GlobalValue::InternalLinkage);
687 }
688
689 if (Conf.PostInternalizeModuleHook &&
690 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000691 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000692 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000693 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000694 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000695}
696
697/// This class defines the interface to the ThinLTO backend.
698class lto::ThinBackendProc {
699protected:
700 Config &Conf;
701 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000702 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000703
704public:
705 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000706 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000707 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000708 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
709
710 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000711 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000712 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000713 const FunctionImporter::ImportMapTy &ImportList,
714 const FunctionImporter::ExportSetTy &ExportList,
715 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000716 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000717 virtual Error wait() = 0;
718};
719
Benjamin Kramerffd37152016-11-19 20:44:26 +0000720namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000721class InProcessThinBackend : public ThinBackendProc {
722 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000723 AddStreamFn AddStream;
724 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000725 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000726
727 Optional<Error> Err;
728 std::mutex ErrMu;
729
730public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000731 InProcessThinBackend(
732 Config &Conf, ModuleSummaryIndex &CombinedIndex,
733 unsigned ThinLTOParallelismLevel,
734 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000735 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000736 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
737 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000738 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
739 // Create a mapping from type identifier GUIDs to type identifier summaries.
740 // This allows backends to use the type identifier GUIDs stored in the
741 // function summaries to determine which type identifier summaries affect
742 // each function without needing to compute GUIDs in each backend.
743 for (auto &TId : CombinedIndex.typeIds())
744 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
745 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000746
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000747 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000748 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000749 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000750 const FunctionImporter::ImportMapTy &ImportList,
751 const FunctionImporter::ExportSetTy &ExportList,
752 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
753 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000754 MapVector<StringRef, BitcodeModule> &ModuleMap,
755 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000756 auto RunThinBackend = [&](AddStreamFn AddStream) {
757 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000758 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000759 if (!MOrErr)
760 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000761
Peter Collingbourne80186a52016-09-23 21:33:43 +0000762 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
763 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000764 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000765
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000766 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000767
768 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
769 all_of(CombinedIndex.getModuleHash(ModuleID),
770 [](uint32_t V) { return V == 0; }))
771 // Cache disabled or no entry for this module in the combined index or
772 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000773 return RunThinBackend(AddStream);
774
775 SmallString<40> Key;
776 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000777 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000778 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000779 if (AddStreamFn CacheAddStream = Cache(Task, Key))
780 return RunThinBackend(CacheAddStream);
781
Mehdi Amini41af4302016-11-11 04:28:40 +0000782 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000783 }
784
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000785 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000786 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000787 const FunctionImporter::ImportMapTy &ImportList,
788 const FunctionImporter::ExportSetTy &ExportList,
789 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000790 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
791 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000792 assert(ModuleToDefinedGVSummaries.count(ModulePath));
793 const GVSummaryMapTy &DefinedGlobals =
794 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000795 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000796 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000797 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000798 const FunctionImporter::ExportSetTy &ExportList,
799 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
800 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000801 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000802 MapVector<StringRef, BitcodeModule> &ModuleMap,
803 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000804 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000805 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
806 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000807 if (E) {
808 std::unique_lock<std::mutex> L(ErrMu);
809 if (Err)
810 Err = joinErrors(std::move(*Err), std::move(E));
811 else
812 Err = std::move(E);
813 }
814 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000815 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
816 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
817 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000818 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000819 }
820
821 Error wait() override {
822 BackendThreadPool.wait();
823 if (Err)
824 return std::move(*Err);
825 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000826 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000827 }
828};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000829} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000830
831ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
832 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000833 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000834 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000835 return llvm::make_unique<InProcessThinBackend>(
836 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000837 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000838 };
839}
840
Teresa Johnson3f212b82016-09-21 19:12:05 +0000841// Given the original \p Path to an output file, replace any path
842// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
843// resulting directory if it does not yet exist.
844std::string lto::getThinLTOOutputFile(const std::string &Path,
845 const std::string &OldPrefix,
846 const std::string &NewPrefix) {
847 if (OldPrefix.empty() && NewPrefix.empty())
848 return Path;
849 SmallString<128> NewPath(Path);
850 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
851 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
852 if (!ParentPath.empty()) {
853 // Make sure the new directory exists, creating it if necessary.
854 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
855 llvm::errs() << "warning: could not create directory '" << ParentPath
856 << "': " << EC.message() << '\n';
857 }
858 return NewPath.str();
859}
860
Benjamin Kramerffd37152016-11-19 20:44:26 +0000861namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000862class WriteIndexesThinBackend : public ThinBackendProc {
863 std::string OldPrefix, NewPrefix;
864 bool ShouldEmitImportsFiles;
865
866 std::string LinkedObjectsFileName;
867 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
868
869public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000870 WriteIndexesThinBackend(
871 Config &Conf, ModuleSummaryIndex &CombinedIndex,
872 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
873 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
874 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +0000875 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000876 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
877 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
878 LinkedObjectsFileName(LinkedObjectsFileName) {}
879
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000880 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000881 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000882 const FunctionImporter::ImportMapTy &ImportList,
883 const FunctionImporter::ExportSetTy &ExportList,
884 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000885 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
886 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000887 std::string NewModulePath =
888 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
889
890 std::error_code EC;
891 if (!LinkedObjectsFileName.empty()) {
892 if (!LinkedObjectsFile) {
893 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
894 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
895 if (EC)
896 return errorCodeToError(EC);
897 }
898 *LinkedObjectsFile << NewModulePath << '\n';
899 }
900
901 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
902 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000903 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000904
905 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
906 sys::fs::OpenFlags::F_None);
907 if (EC)
908 return errorCodeToError(EC);
909 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
910
911 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000912 return errorCodeToError(
913 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +0000914 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000915 }
916
Mehdi Amini41af4302016-11-11 04:28:40 +0000917 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000918};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000919} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000920
921ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
922 std::string NewPrefix,
923 bool ShouldEmitImportsFiles,
924 std::string LinkedObjectsFile) {
925 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000926 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000927 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000928 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +0000929 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
930 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000931 };
932}
933
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +0000934static bool IsLiveByGUID(const ModuleSummaryIndex &Index,
935 GlobalValue::GUID GUID) {
936 auto VI = Index.getValueInfo(GUID);
937 if (!VI)
938 return false;
939 for (auto &I : VI.getSummaryList())
940 if (Index.isGlobalValueLive(I.get()))
941 return true;
942 return false;
943}
944
Peter Collingbourne80186a52016-09-23 21:33:43 +0000945Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
946 bool HasRegularLTO) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000947 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +0000948 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000949
950 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +0000951 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000952
953 // Collect for each module the list of function it defines (GUID ->
954 // Summary).
955 StringMap<std::map<GlobalValue::GUID, GlobalValueSummary *>>
956 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
957 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
958 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +0000959 // Create entries for any modules that didn't have any GV summaries
960 // (either they didn't have any GVs to start with, or we suppressed
961 // generation of the summaries because they e.g. had inline assembly
962 // uses that couldn't be promoted/renamed on export). This is so
963 // InProcessThinBackend::start can still launch a backend thread, which
964 // is passed the map of summaries for the module, without any special
965 // handling for this case.
966 for (auto &Mod : ThinLTO.ModuleMap)
967 if (!ModuleToDefinedGVSummaries.count(Mod.first))
968 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000969
970 StringMap<FunctionImporter::ImportMapTy> ImportLists(
971 ThinLTO.ModuleMap.size());
972 StringMap<FunctionImporter::ExportSetTy> ExportLists(
973 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000974 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000975
Teresa Johnson002af9b2016-10-31 22:12:21 +0000976 if (Conf.OptLevel > 0) {
Mehdi Aminif39ce992017-01-20 23:34:12 +0000977 // Compute "dead" symbols, we don't want to import/export these!
978 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
979 for (auto &Res : GlobalResolutions) {
980 if (Res.second.VisibleOutsideThinLTO &&
981 // IRName will be defined if we have seen the prevailing copy of
982 // this value. If not, no need to preserve any ThinLTO copies.
983 !Res.second.IRName.empty())
Bob Haarmand6aea712017-03-31 21:56:30 +0000984 GUIDPreservedSymbols.insert(GlobalValue::getGUID(
Peter Collingbourne6f0ecca2017-05-16 00:39:01 +0000985 GlobalValue::dropLLVMManglingEscape(Res.second.IRName)));
Mehdi Aminif39ce992017-01-20 23:34:12 +0000986 }
987
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +0000988 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
Mehdi Aminif39ce992017-01-20 23:34:12 +0000989
Teresa Johnson002af9b2016-10-31 22:12:21 +0000990 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +0000991 ImportLists, ExportLists);
Teresa Johnson002af9b2016-10-31 22:12:21 +0000992
993 std::set<GlobalValue::GUID> ExportedGUIDs;
994 for (auto &Res : GlobalResolutions) {
Teresa Johnson6c475a72017-01-05 21:34:18 +0000995 // First check if the symbol was flagged as having external references.
996 if (Res.second.Partition != GlobalResolution::External)
997 continue;
998 // IRName will be defined if we have seen the prevailing copy of
999 // this value. If not, no need to mark as exported from a ThinLTO
1000 // partition (and we can't get the GUID).
1001 if (Res.second.IRName.empty())
1002 continue;
Bob Haarmand6aea712017-03-31 21:56:30 +00001003 auto GUID = GlobalValue::getGUID(
Peter Collingbourne6f0ecca2017-05-16 00:39:01 +00001004 GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
Teresa Johnson6c475a72017-01-05 21:34:18 +00001005 // Mark exported unless index-based analysis determined it to be dead.
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +00001006 if (IsLiveByGUID(ThinLTO.CombinedIndex, GUID))
Bob Haarmand6aea712017-03-31 21:56:30 +00001007 ExportedGUIDs.insert(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001008 }
1009
Mehdi Amini1380edf2017-02-03 07:41:43 +00001010 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
Teresa Johnson002af9b2016-10-31 22:12:21 +00001011 const auto &ExportList = ExportLists.find(ModuleIdentifier);
Mehdi Amini1380edf2017-02-03 07:41:43 +00001012 return (ExportList != ExportLists.end() &&
1013 ExportList->second.count(GUID)) ||
1014 ExportedGUIDs.count(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001015 };
1016 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001017 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001018
Peter Collingbournef87197a2017-05-25 23:40:11 +00001019 auto isPrevailing = [&](GlobalValue::GUID GUID,
1020 const GlobalValueSummary *S) {
1021 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1022 };
1023 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1024 GlobalValue::GUID GUID,
1025 GlobalValue::LinkageTypes NewLinkage) {
1026 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1027 };
1028 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1029 recordNewLinkage);
1030
Peter Collingbourne80186a52016-09-23 21:33:43 +00001031 std::unique_ptr<ThinBackendProc> BackendProc =
1032 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1033 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001034
Davide Italiano63098952017-01-04 20:37:57 +00001035 // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1036 // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1037 // are reserved for parallel code generation partitions.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +00001038 unsigned Task =
1039 HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001040 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001041 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001042 ExportLists[Mod.first],
1043 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001044 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001045 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001046 }
1047
1048 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001049}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001050
1051Expected<std::unique_ptr<tool_output_file>>
1052lto::setupOptimizationRemarks(LLVMContext &Context,
1053 StringRef LTORemarksFilename,
1054 bool LTOPassRemarksWithHotness, int Count) {
1055 if (LTORemarksFilename.empty())
1056 return nullptr;
1057
1058 std::string Filename = LTORemarksFilename;
1059 if (Count != -1)
1060 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1061
1062 std::error_code EC;
1063 auto DiagnosticFile =
1064 llvm::make_unique<tool_output_file>(Filename, EC, sys::fs::F_None);
1065 if (EC)
1066 return errorCodeToError(EC);
1067 Context.setDiagnosticsOutputFile(
1068 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1069 if (LTOPassRemarksWithHotness)
1070 Context.setDiagnosticHotnessRequested(true);
1071 DiagnosticFile->keep();
1072 return std::move(DiagnosticFile);
1073}