blob: de02de9d6145795eb02d74cf5ad62ef45282f3c7 [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"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000020#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000021#include "llvm/IR/AutoUpgrade.h"
22#include "llvm/IR/DiagnosticPrinter.h"
23#include "llvm/IR/LegacyPassManager.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000024#include "llvm/IR/Mangler.h"
25#include "llvm/IR/Metadata.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000026#include "llvm/LTO/LTOBackend.h"
27#include "llvm/Linker/IRMover.h"
28#include "llvm/Object/ModuleSummaryIndexObjectFile.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000029#include "llvm/Support/Error.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000030#include "llvm/Support/ManagedStatic.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000031#include "llvm/Support/MemoryBuffer.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000032#include "llvm/Support/Path.h"
Mehdi Aminiadc0e262016-08-23 21:30:12 +000033#include "llvm/Support/SHA1.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000034#include "llvm/Support/SourceMgr.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000035#include "llvm/Support/TargetRegistry.h"
36#include "llvm/Support/ThreadPool.h"
Teresa Johnsonec544c52016-10-19 17:35:01 +000037#include "llvm/Support/Threading.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);
77#ifdef HAVE_LLVM_REVISION
78 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);
117 AddUnsigned(Conf.RelocModel);
118 AddUnsigned(Conf.CodeModel);
119 AddUnsigned(Conf.CGOptLevel);
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000120 AddUnsigned(Conf.CGFileType);
Peter Collingbournef4257522016-12-08 05:28:30 +0000121 AddUnsigned(Conf.OptLevel);
122 AddString(Conf.OptPipeline);
123 AddString(Conf.AAPipeline);
124 AddString(Conf.OverrideTriple);
125 AddString(Conf.DefaultTriple);
126
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000127 // Include the hash for the current module
128 auto ModHash = Index.getModuleHash(ModuleID);
129 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
130 for (auto F : ExportList)
131 // The export list can impact the internalization, be conservative here
132 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
133
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000134 // Include the hash for every module we import functions from. The set of
135 // imported symbols for each module may affect code generation and is
136 // sensitive to link order, so include that as well.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000137 for (auto &Entry : ImportList) {
138 auto ModHash = Index.getModuleHash(Entry.first());
139 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000140
141 AddUint64(Entry.second.size());
142 for (auto &Fn : Entry.second)
143 AddUint64(Fn.first);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000144 }
145
146 // Include the hash for the resolved ODR.
147 for (auto &Entry : ResolvedODR) {
148 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
149 sizeof(GlobalValue::GUID)));
150 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
151 sizeof(GlobalValue::LinkageTypes)));
152 }
153
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000154 std::set<GlobalValue::GUID> UsedTypeIds;
155
156 auto AddUsedTypeIds = [&](GlobalValueSummary *GS) {
157 auto *FS = dyn_cast_or_null<FunctionSummary>(GS);
158 if (!FS)
159 return;
160 for (auto &TT : FS->type_tests())
161 UsedTypeIds.insert(TT);
162 for (auto &TT : FS->type_test_assume_vcalls())
163 UsedTypeIds.insert(TT.GUID);
164 for (auto &TT : FS->type_checked_load_vcalls())
165 UsedTypeIds.insert(TT.GUID);
166 for (auto &TT : FS->type_test_assume_const_vcalls())
167 UsedTypeIds.insert(TT.VFunc.GUID);
168 for (auto &TT : FS->type_checked_load_const_vcalls())
169 UsedTypeIds.insert(TT.VFunc.GUID);
170 };
171
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000172 // Include the hash for the linkage type to reflect internalization and weak
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000173 // resolution, and collect any used type identifier resolutions.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000174 for (auto &GS : DefinedGlobals) {
175 GlobalValue::LinkageTypes Linkage = GS.second->linkage();
176 Hasher.update(
177 ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000178 AddUsedTypeIds(GS.second);
179 }
180
181 // Imported functions may introduce new uses of type identifier resolutions,
182 // so we need to collect their used resolutions as well.
183 for (auto &ImpM : ImportList)
184 for (auto &ImpF : ImpM.second)
185 AddUsedTypeIds(Index.findSummaryInModule(ImpF.first, ImpM.first()));
186
187 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
188 AddString(TId);
189
190 AddUnsigned(S.TTRes.TheKind);
191 AddUnsigned(S.TTRes.SizeM1BitWidth);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000192
193 AddUint64(S.WPDRes.size());
194 for (auto &WPD : S.WPDRes) {
195 AddUnsigned(WPD.first);
196 AddUnsigned(WPD.second.TheKind);
197 AddString(WPD.second.SingleImplName);
198
199 AddUint64(WPD.second.ResByArg.size());
200 for (auto &ByArg : WPD.second.ResByArg) {
201 AddUint64(ByArg.first.size());
202 for (uint64_t Arg : ByArg.first)
203 AddUint64(Arg);
204 AddUnsigned(ByArg.second.TheKind);
205 AddUint64(ByArg.second.Info);
206 }
207 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000208 };
209
210 // Include the hash for all type identifiers used by this module.
211 for (GlobalValue::GUID TId : UsedTypeIds) {
212 auto SummariesI = TypeIdSummariesByGuid.find(TId);
213 if (SummariesI != TypeIdSummariesByGuid.end())
214 for (auto *Summary : SummariesI->second)
215 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000216 }
217
Dehao Chen27978002016-12-16 16:48:46 +0000218 if (!Conf.SampleProfile.empty()) {
219 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
220 if (FileOrErr)
221 Hasher.update(FileOrErr.get()->getBuffer());
222 }
223
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000224 Key = toHex(Hasher.result());
225}
226
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000227static void thinLTOResolveWeakForLinkerGUID(
228 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
229 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000230 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000231 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000232 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000233 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000234 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000235 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
236 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
237 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000238 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000239 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000240 // This is both a compile-time optimization and a correctness
241 // transformation. This is necessary for correctness when we have exported
242 // a reference - we need to convert the linkonce to weak to
243 // ensure a copy is kept to satisfy the exported reference.
244 // FIXME: We may want to split the compile time and correctness
245 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000246 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000247 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
248 S->setLinkage(GlobalValue::getWeakLinkage(
249 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000250 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000251 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000252 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000253 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000254 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
255 if (S->linkage() != OriginalLinkage)
256 recordNewLinkage(S->modulePath(), GUID, S->linkage());
257 }
258}
259
260// Resolve Weak and LinkOnce values in the \p Index.
261//
262// We'd like to drop these functions if they are no longer referenced in the
263// current module. However there is a chance that another module is still
264// referencing them because of the import. We make sure we always emit at least
265// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000266void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000267 ModuleSummaryIndex &Index,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000268 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000269 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000270 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000271 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000272 // We won't optimize the globals that are referenced by an alias for now
273 // Ideally we should turn the alias into a global and duplicate the definition
274 // when needed.
275 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
276 for (auto &I : Index)
277 for (auto &S : I.second)
278 if (auto AS = dyn_cast<AliasSummary>(S.get()))
279 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
280
281 for (auto &I : Index)
282 thinLTOResolveWeakForLinkerGUID(I.second, I.first, GlobalInvolvedWithAlias,
Peter Collingbourne73589f32016-07-07 18:31:51 +0000283 isPrevailing, recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000284}
285
286static void thinLTOInternalizeAndPromoteGUID(
287 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000288 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000289 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000290 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000291 if (GlobalValue::isLocalLinkage(S->linkage()))
292 S->setLinkage(GlobalValue::ExternalLinkage);
293 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
294 S->setLinkage(GlobalValue::InternalLinkage);
295 }
296}
297
298// Update the linkages in the given \p Index to mark exported values
299// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000300void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000301 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000302 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000303 for (auto &I : Index)
304 thinLTOInternalizeAndPromoteGUID(I.second, I.first, isExported);
305}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000306
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000307struct InputFile::InputModule {
308 BitcodeModule BM;
309 std::unique_ptr<Module> Mod;
310
311 // The range of ModuleSymbolTable entries for this input module.
312 size_t SymBegin, SymEnd;
313};
314
315// Requires a destructor for std::vector<InputModule>.
316InputFile::~InputFile() = default;
317
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000318Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
319 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000320
Peter Collingbournead903692016-12-13 19:43:49 +0000321 ErrorOr<MemoryBufferRef> BCOrErr =
322 IRObjectFile::findBitcodeInMemBuffer(Object);
323 if (!BCOrErr)
324 return errorCodeToError(BCOrErr.getError());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000325
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000326 Expected<std::vector<BitcodeModule>> BMsOrErr =
327 getBitcodeModuleList(*BCOrErr);
328 if (!BMsOrErr)
329 return BMsOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000330
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000331 if (BMsOrErr->empty())
332 return make_error<StringError>("Bitcode file does not contain any modules",
333 inconvertibleErrorCode());
Peter Collingbournead903692016-12-13 19:43:49 +0000334
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000335 // Create an InputModule for each module in the InputFile, and add it to the
336 // ModuleSymbolTable.
337 for (auto BM : *BMsOrErr) {
338 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000339 BM.getLazyModule(File->Ctx, /*ShouldLazyLoadMetadata*/ true,
340 /*IsImporting*/ false);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000341 if (!MOrErr)
342 return MOrErr.takeError();
343
344 size_t SymBegin = File->SymTab.symbols().size();
345 File->SymTab.addModule(MOrErr->get());
346 size_t SymEnd = File->SymTab.symbols().size();
347
348 for (const auto &C : (*MOrErr)->getComdatSymbolTable()) {
349 auto P = File->ComdatMap.insert(
350 std::make_pair(&C.second, File->Comdats.size()));
351 assert(P.second);
352 (void)P;
353 File->Comdats.push_back(C.first());
354 }
355
356 File->Mods.push_back({BM, std::move(*MOrErr), SymBegin, SymEnd});
Rafael Espindola79121102016-10-25 12:02:03 +0000357 }
358
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000359 return std::move(File);
360}
361
Rafael Espindola79121102016-10-25 12:02:03 +0000362Expected<int> InputFile::Symbol::getComdatIndex() const {
Peter Collingbournead903692016-12-13 19:43:49 +0000363 if (!isGV())
Rafael Espindola79121102016-10-25 12:02:03 +0000364 return -1;
Peter Collingbournead903692016-12-13 19:43:49 +0000365 const GlobalObject *GO = getGV()->getBaseObject();
366 if (!GO)
367 return make_error<StringError>("Unable to determine comdat of alias!",
368 inconvertibleErrorCode());
Rafael Espindola79121102016-10-25 12:02:03 +0000369 if (const Comdat *C = GO->getComdat()) {
370 auto I = File->ComdatMap.find(C);
371 assert(I != File->ComdatMap.end());
372 return I->second;
373 }
374 return -1;
375}
376
Bob Haarmandd4ebc12017-02-02 23:00:49 +0000377Expected<std::string> InputFile::getLinkerOpts() {
378 std::string LinkerOpts;
379 raw_string_ostream LOS(LinkerOpts);
380 // Extract linker options from module metadata.
381 for (InputModule &Mod : Mods) {
382 std::unique_ptr<Module> &M = Mod.Mod;
383 if (auto E = M->materializeMetadata())
384 return std::move(E);
385 if (Metadata *Val = M->getModuleFlag("Linker Options")) {
386 MDNode *LinkerOptions = cast<MDNode>(Val);
387 for (const MDOperand &MDOptions : LinkerOptions->operands())
388 for (const MDOperand &MDOption : cast<MDNode>(MDOptions)->operands())
389 LOS << " " << cast<MDString>(MDOption)->getString();
390 }
391 }
392
393 // Synthesize export flags for symbols with dllexport storage.
394 const Triple TT(Mods[0].Mod->getTargetTriple());
395 Mangler M;
396 for (const ModuleSymbolTable::Symbol &Sym : SymTab.symbols())
397 if (auto *GV = Sym.dyn_cast<GlobalValue*>())
398 emitLinkerFlagsForGlobalCOFF(LOS, GV, TT, M);
399 LOS.flush();
400 return LinkerOpts;
401}
402
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000403StringRef InputFile::getName() const {
404 return Mods[0].BM.getModuleIdentifier();
405}
406
407StringRef InputFile::getSourceFileName() const {
408 return Mods[0].Mod->getSourceFileName();
409}
410
411iterator_range<InputFile::symbol_iterator>
412InputFile::module_symbols(InputModule &IM) {
413 return llvm::make_range(
414 symbol_iterator(SymTab.symbols().data() + IM.SymBegin, SymTab, this),
415 symbol_iterator(SymTab.symbols().data() + IM.SymEnd, SymTab, this));
416}
417
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000418LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
419 Config &Conf)
420 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Mehdi Aminie7494532016-08-23 18:39:12 +0000421 Ctx(Conf) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000422
423LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
424 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000425 this->Backend =
426 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000427}
428
429LTO::LTO(Config Conf, ThinBackend Backend,
430 unsigned ParallelCodeGenParallelismLevel)
431 : Conf(std::move(Conf)),
432 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000433 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000434
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000435// Requires a destructor for MapVector<BitcodeModule>.
436LTO::~LTO() = default;
437
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000438// Add the given symbol to the GlobalResolutions map, and resolve its partition.
Peter Collingbournead903692016-12-13 19:43:49 +0000439void LTO::addSymbolToGlobalRes(SmallPtrSet<GlobalValue *, 8> &Used,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000440 const InputFile::Symbol &Sym,
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000441 SymbolResolution Res, unsigned Partition) {
Peter Collingbournead903692016-12-13 19:43:49 +0000442 GlobalValue *GV = Sym.isGV() ? Sym.getGV() : nullptr;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000443
444 auto &GlobalRes = GlobalResolutions[Sym.getName()];
445 if (GV) {
446 GlobalRes.UnnamedAddr &= GV->hasGlobalUnnamedAddr();
447 if (Res.Prevailing)
448 GlobalRes.IRName = GV->getName();
449 }
Teresa Johnson6c475a72017-01-05 21:34:18 +0000450 // Set the partition to external if we know it is used elsewhere, e.g.
451 // it is visible to a regular object, is referenced from llvm.compiler_used,
452 // or was already recorded as being referenced from a different partition.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000453 if (Res.VisibleToRegularObj || (GV && Used.count(GV)) ||
454 (GlobalRes.Partition != GlobalResolution::Unknown &&
Teresa Johnson6c475a72017-01-05 21:34:18 +0000455 GlobalRes.Partition != Partition)) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000456 GlobalRes.Partition = GlobalResolution::External;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000457 } else
458 // First recorded reference, save the current partition.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000459 GlobalRes.Partition = Partition;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000460
461 // Flag as visible outside of ThinLTO if visible from a regular object or
462 // if this is a reference in the regular LTO partition.
463 GlobalRes.VisibleOutsideThinLTO |=
464 (Res.VisibleToRegularObj || (Partition == GlobalResolution::RegularLTO));
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000465}
466
Rafael Espindola7775c332016-08-26 20:19:35 +0000467static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
468 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000469 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000470 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000471 auto ResI = Res.begin();
472 for (const InputFile::Symbol &Sym : Input->symbols()) {
473 assert(ResI != Res.end());
474 SymbolResolution Res = *ResI++;
475
Rafael Espindola7775c332016-08-26 20:19:35 +0000476 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000477 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000478 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000479 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000480 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000481 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000482 OS << 'x';
483 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000484 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000485 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000486 assert(ResI == Res.end());
487}
488
489Error LTO::add(std::unique_ptr<InputFile> Input,
490 ArrayRef<SymbolResolution> Res) {
491 assert(!CalledGetMaxTasks);
492
493 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000494 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000495
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000496 const SymbolResolution *ResI = Res.begin();
497 for (InputFile::InputModule &IM : Input->Mods)
498 if (Error Err = addModule(*Input, IM, ResI, Res.end()))
499 return Err;
500
501 assert(ResI == Res.end());
502 return Error::success();
503}
504
505Error LTO::addModule(InputFile &Input, InputFile::InputModule &IM,
506 const SymbolResolution *&ResI,
507 const SymbolResolution *ResE) {
Mehdi Amini9989f802016-08-19 15:35:44 +0000508 // FIXME: move to backend
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000509 Module &M = *IM.Mod;
Davide Italiano2ceb6282016-12-14 21:57:04 +0000510
511 if (M.getDataLayoutStr().empty())
512 return make_error<StringError>("input module has no datalayout",
513 inconvertibleErrorCode());
514
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000515 if (!Conf.OverrideTriple.empty())
516 M.setTargetTriple(Conf.OverrideTriple);
517 else if (M.getTargetTriple().empty())
518 M.setTargetTriple(Conf.DefaultTriple);
519
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000520 Expected<bool> HasThinLTOSummary = IM.BM.hasSummary();
Peter Collingbournecd513a42016-11-11 19:50:24 +0000521 if (!HasThinLTOSummary)
522 return HasThinLTOSummary.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000523
Peter Collingbournecd513a42016-11-11 19:50:24 +0000524 if (*HasThinLTOSummary)
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000525 return addThinLTO(IM.BM, M, Input.module_symbols(IM), ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000526 else
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000527 return addRegularLTO(IM.BM, ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000528}
529
530// Add a regular LTO object to the link.
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000531Error LTO::addRegularLTO(BitcodeModule BM, const SymbolResolution *&ResI,
532 const SymbolResolution *ResE) {
Mehdi Aminie7494532016-08-23 18:39:12 +0000533 if (!RegularLTO.CombinedModule) {
534 RegularLTO.CombinedModule =
535 llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
536 RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
537 }
Peter Collingbournead903692016-12-13 19:43:49 +0000538 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000539 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
540 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000541 if (!MOrErr)
542 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000543
Peter Collingbournead903692016-12-13 19:43:49 +0000544 Module &M = **MOrErr;
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000545 if (Error Err = M.materializeMetadata())
546 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000547 UpgradeDebugInfo(M);
548
Peter Collingbournead903692016-12-13 19:43:49 +0000549 ModuleSymbolTable SymTab;
550 SymTab.addModule(&M);
551
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000552 SmallPtrSet<GlobalValue *, 8> Used;
553 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
554
555 std::vector<GlobalValue *> Keep;
556
557 for (GlobalVariable &GV : M.globals())
558 if (GV.hasAppendingLinkage())
559 Keep.push_back(&GV);
560
Peter Collingbourne46136262017-02-02 05:22:42 +0000561 DenseSet<GlobalObject *> AliasedGlobals;
562 for (auto &GA : M.aliases())
563 if (GlobalObject *GO = GA.getBaseObject())
564 AliasedGlobals.insert(GO);
565
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000566 for (const InputFile::Symbol &Sym :
Peter Collingbournead903692016-12-13 19:43:49 +0000567 make_range(InputFile::symbol_iterator(SymTab.symbols().begin(), SymTab,
568 nullptr),
569 InputFile::symbol_iterator(SymTab.symbols().end(), SymTab,
570 nullptr))) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000571 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000572 SymbolResolution Res = *ResI++;
Peter Collingbournead903692016-12-13 19:43:49 +0000573 addSymbolToGlobalRes(Used, Sym, Res, 0);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000574
Peter Collingbournec387e702017-02-02 05:12:15 +0000575 if (Sym.isGV()) {
Peter Collingbournead903692016-12-13 19:43:49 +0000576 GlobalValue *GV = Sym.getGV();
Peter Collingbournec387e702017-02-02 05:12:15 +0000577 if (Res.Prevailing) {
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000578 if (Sym.isUndefined())
Peter Collingbournec387e702017-02-02 05:12:15 +0000579 continue;
580 Keep.push_back(GV);
581 switch (GV->getLinkage()) {
582 default:
583 break;
584 case GlobalValue::LinkOnceAnyLinkage:
585 GV->setLinkage(GlobalValue::WeakAnyLinkage);
586 break;
587 case GlobalValue::LinkOnceODRLinkage:
588 GV->setLinkage(GlobalValue::WeakODRLinkage);
589 break;
590 }
Peter Collingbourne46136262017-02-02 05:22:42 +0000591 } else if (isa<GlobalObject>(GV) &&
592 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
593 GV->hasAvailableExternallyLinkage()) &&
594 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
595 // Either of the above three types of linkage indicates that the
596 // chosen prevailing symbol will have the same semantics as this copy of
597 // the symbol, so we can link it with available_externally linkage. We
598 // only need to do this if the symbol is undefined.
Peter Collingbournec387e702017-02-02 05:12:15 +0000599 GlobalValue *CombinedGV =
600 RegularLTO.CombinedModule->getNamedValue(GV->getName());
Peter Collingbourne46136262017-02-02 05:22:42 +0000601 if (!CombinedGV || CombinedGV->isDeclaration()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000602 Keep.push_back(GV);
Peter Collingbourne46136262017-02-02 05:22:42 +0000603 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
604 cast<GlobalObject>(GV)->setComdat(nullptr);
605 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000606 }
607 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000608 // Common resolution: collect the maximum size/alignment over all commons.
609 // We also record if we see an instance of a common as prevailing, so that
610 // if none is prevailing we can ignore it later.
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000611 if (Sym.isCommon()) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000612 // FIXME: We should figure out what to do about commons defined by asm.
613 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbournead903692016-12-13 19:43:49 +0000614 auto &CommonRes = RegularLTO.Commons[Sym.getGV()->getName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000615 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
616 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000617 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000618 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000619
620 // FIXME: use proposed local attribute for FinalDefinitionInLinkageUnit.
621 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000622
Peter Collingbournead903692016-12-13 19:43:49 +0000623 return RegularLTO.Mover->move(std::move(*MOrErr), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000624 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000625 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000626}
627
628// Add a ThinLTO object to the link.
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000629// FIXME: This function should not need to take as many parameters once we have
630// a bitcode symbol table.
631Error LTO::addThinLTO(BitcodeModule BM, Module &M,
632 iterator_range<InputFile::symbol_iterator> Syms,
633 const SymbolResolution *&ResI,
634 const SymbolResolution *ResE) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000635 SmallPtrSet<GlobalValue *, 8> Used;
636 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
637
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000638 Expected<std::unique_ptr<ModuleSummaryIndex>> SummaryOrErr = BM.getSummary();
639 if (!SummaryOrErr)
640 return SummaryOrErr.takeError();
641 ThinLTO.CombinedIndex.mergeFrom(std::move(*SummaryOrErr),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000642 ThinLTO.ModuleMap.size());
643
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000644 for (const InputFile::Symbol &Sym : Syms) {
645 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000646 SymbolResolution Res = *ResI++;
Peter Collingbournead903692016-12-13 19:43:49 +0000647 addSymbolToGlobalRes(Used, Sym, Res, ThinLTO.ModuleMap.size() + 1);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000648
Peter Collingbournead903692016-12-13 19:43:49 +0000649 if (Res.Prevailing && Sym.isGV())
650 ThinLTO.PrevailingModuleForGUID[Sym.getGV()->getGUID()] =
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000651 BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000652 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000653
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000654 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
655 return make_error<StringError>(
656 "Expected at most one ThinLTO module per bitcode file",
657 inconvertibleErrorCode());
658
Mehdi Amini41af4302016-11-11 04:28:40 +0000659 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000660}
661
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000662unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000663 CalledGetMaxTasks = true;
664 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
665}
666
Peter Collingbourne80186a52016-09-23 21:33:43 +0000667Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000668 // Save the status of having a regularLTO combined module, as
669 // this is needed for generating the ThinLTO Task ID, and
670 // the CombinedModule will be moved at the end of runRegularLTO.
671 bool HasRegularLTO = RegularLTO.CombinedModule != nullptr;
Mehdi Aminie7494532016-08-23 18:39:12 +0000672 // Invoke regular LTO if there was a regular LTO module to start with.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000673 if (HasRegularLTO)
Peter Collingbourne80186a52016-09-23 21:33:43 +0000674 if (auto E = runRegularLTO(AddStream))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000675 return E;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000676 return runThinLTO(AddStream, Cache, HasRegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000677}
678
Peter Collingbourne80186a52016-09-23 21:33:43 +0000679Error LTO::runRegularLTO(AddStreamFn AddStream) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000680 // Make sure commons have the right size/alignment: we kept the largest from
681 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000682 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000683 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000684 if (!I.second.Prevailing)
685 // Don't do anything if no instance of this common was prevailing.
686 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000687 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000688 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000689 // Don't create a new global if the type is already correct, just make
690 // sure the alignment is correct.
691 OldGV->setAlignment(I.second.Align);
692 continue;
693 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000694 ArrayType *Ty =
695 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000696 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
697 GlobalValue::CommonLinkage,
698 ConstantAggregateZero::get(Ty), "");
699 GV->setAlignment(I.second.Align);
700 if (OldGV) {
701 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
702 GV->takeName(OldGV);
703 OldGV->eraseFromParent();
704 } else {
705 GV->setName(I.first);
706 }
707 }
708
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000709 if (Conf.PreOptModuleHook &&
710 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000711 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000712
Mehdi Aminid310b472016-08-22 06:25:41 +0000713 if (!Conf.CodeGenOnly) {
714 for (const auto &R : GlobalResolutions) {
715 if (R.second.IRName.empty())
716 continue;
717 if (R.second.Partition != 0 &&
718 R.second.Partition != GlobalResolution::External)
719 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000720
Mehdi Aminid310b472016-08-22 06:25:41 +0000721 GlobalValue *GV =
722 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
723 // Ignore symbols defined in other partitions.
724 if (!GV || GV->hasLocalLinkage())
725 continue;
726 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
727 : GlobalValue::UnnamedAddr::None);
728 if (R.second.Partition == 0)
729 GV->setLinkage(GlobalValue::InternalLinkage);
730 }
731
732 if (Conf.PostInternalizeModuleHook &&
733 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000734 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000735 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000736 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000737 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000738}
739
740/// This class defines the interface to the ThinLTO backend.
741class lto::ThinBackendProc {
742protected:
743 Config &Conf;
744 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000745 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000746
747public:
748 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000749 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000750 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000751 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
752
753 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000754 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000755 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000756 const FunctionImporter::ImportMapTy &ImportList,
757 const FunctionImporter::ExportSetTy &ExportList,
758 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000759 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000760 virtual Error wait() = 0;
761};
762
Benjamin Kramerffd37152016-11-19 20:44:26 +0000763namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000764class InProcessThinBackend : public ThinBackendProc {
765 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000766 AddStreamFn AddStream;
767 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000768 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000769
770 Optional<Error> Err;
771 std::mutex ErrMu;
772
773public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000774 InProcessThinBackend(
775 Config &Conf, ModuleSummaryIndex &CombinedIndex,
776 unsigned ThinLTOParallelismLevel,
777 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000778 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000779 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
780 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000781 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
782 // Create a mapping from type identifier GUIDs to type identifier summaries.
783 // This allows backends to use the type identifier GUIDs stored in the
784 // function summaries to determine which type identifier summaries affect
785 // each function without needing to compute GUIDs in each backend.
786 for (auto &TId : CombinedIndex.typeIds())
787 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
788 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000789
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000790 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000791 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000792 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000793 const FunctionImporter::ImportMapTy &ImportList,
794 const FunctionImporter::ExportSetTy &ExportList,
795 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
796 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000797 MapVector<StringRef, BitcodeModule> &ModuleMap,
798 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000799 auto RunThinBackend = [&](AddStreamFn AddStream) {
800 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000801 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000802 if (!MOrErr)
803 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000804
Peter Collingbourne80186a52016-09-23 21:33:43 +0000805 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
806 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000807 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000808
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000809 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000810
811 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
812 all_of(CombinedIndex.getModuleHash(ModuleID),
813 [](uint32_t V) { return V == 0; }))
814 // Cache disabled or no entry for this module in the combined index or
815 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000816 return RunThinBackend(AddStream);
817
818 SmallString<40> Key;
819 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000820 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000821 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000822 if (AddStreamFn CacheAddStream = Cache(Task, Key))
823 return RunThinBackend(CacheAddStream);
824
Mehdi Amini41af4302016-11-11 04:28:40 +0000825 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000826 }
827
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000828 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000829 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000830 const FunctionImporter::ImportMapTy &ImportList,
831 const FunctionImporter::ExportSetTy &ExportList,
832 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000833 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
834 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000835 assert(ModuleToDefinedGVSummaries.count(ModulePath));
836 const GVSummaryMapTy &DefinedGlobals =
837 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000838 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000839 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000840 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000841 const FunctionImporter::ExportSetTy &ExportList,
842 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
843 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000844 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000845 MapVector<StringRef, BitcodeModule> &ModuleMap,
846 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000847 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000848 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
849 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000850 if (E) {
851 std::unique_lock<std::mutex> L(ErrMu);
852 if (Err)
853 Err = joinErrors(std::move(*Err), std::move(E));
854 else
855 Err = std::move(E);
856 }
857 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000858 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
859 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
860 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000861 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000862 }
863
864 Error wait() override {
865 BackendThreadPool.wait();
866 if (Err)
867 return std::move(*Err);
868 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000869 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000870 }
871};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000872} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000873
874ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
875 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000876 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000877 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000878 return llvm::make_unique<InProcessThinBackend>(
879 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000880 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000881 };
882}
883
Teresa Johnson3f212b82016-09-21 19:12:05 +0000884// Given the original \p Path to an output file, replace any path
885// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
886// resulting directory if it does not yet exist.
887std::string lto::getThinLTOOutputFile(const std::string &Path,
888 const std::string &OldPrefix,
889 const std::string &NewPrefix) {
890 if (OldPrefix.empty() && NewPrefix.empty())
891 return Path;
892 SmallString<128> NewPath(Path);
893 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
894 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
895 if (!ParentPath.empty()) {
896 // Make sure the new directory exists, creating it if necessary.
897 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
898 llvm::errs() << "warning: could not create directory '" << ParentPath
899 << "': " << EC.message() << '\n';
900 }
901 return NewPath.str();
902}
903
Benjamin Kramerffd37152016-11-19 20:44:26 +0000904namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000905class WriteIndexesThinBackend : public ThinBackendProc {
906 std::string OldPrefix, NewPrefix;
907 bool ShouldEmitImportsFiles;
908
909 std::string LinkedObjectsFileName;
910 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
911
912public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000913 WriteIndexesThinBackend(
914 Config &Conf, ModuleSummaryIndex &CombinedIndex,
915 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
916 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
917 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +0000918 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000919 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
920 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
921 LinkedObjectsFileName(LinkedObjectsFileName) {}
922
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000923 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000924 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000925 const FunctionImporter::ImportMapTy &ImportList,
926 const FunctionImporter::ExportSetTy &ExportList,
927 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000928 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
929 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000930 std::string NewModulePath =
931 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
932
933 std::error_code EC;
934 if (!LinkedObjectsFileName.empty()) {
935 if (!LinkedObjectsFile) {
936 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
937 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
938 if (EC)
939 return errorCodeToError(EC);
940 }
941 *LinkedObjectsFile << NewModulePath << '\n';
942 }
943
944 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
945 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000946 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000947
948 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
949 sys::fs::OpenFlags::F_None);
950 if (EC)
951 return errorCodeToError(EC);
952 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
953
954 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000955 return errorCodeToError(
956 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +0000957 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000958 }
959
Mehdi Amini41af4302016-11-11 04:28:40 +0000960 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000961};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000962} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000963
964ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
965 std::string NewPrefix,
966 bool ShouldEmitImportsFiles,
967 std::string LinkedObjectsFile) {
968 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000969 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000970 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000971 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +0000972 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
973 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000974 };
975}
976
Peter Collingbourne80186a52016-09-23 21:33:43 +0000977Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
978 bool HasRegularLTO) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000979 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +0000980 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000981
982 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +0000983 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000984
985 // Collect for each module the list of function it defines (GUID ->
986 // Summary).
987 StringMap<std::map<GlobalValue::GUID, GlobalValueSummary *>>
988 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
989 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
990 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +0000991 // Create entries for any modules that didn't have any GV summaries
992 // (either they didn't have any GVs to start with, or we suppressed
993 // generation of the summaries because they e.g. had inline assembly
994 // uses that couldn't be promoted/renamed on export). This is so
995 // InProcessThinBackend::start can still launch a backend thread, which
996 // is passed the map of summaries for the module, without any special
997 // handling for this case.
998 for (auto &Mod : ThinLTO.ModuleMap)
999 if (!ModuleToDefinedGVSummaries.count(Mod.first))
1000 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001001
1002 StringMap<FunctionImporter::ImportMapTy> ImportLists(
1003 ThinLTO.ModuleMap.size());
1004 StringMap<FunctionImporter::ExportSetTy> ExportLists(
1005 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001006 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001007
Teresa Johnson002af9b2016-10-31 22:12:21 +00001008 if (Conf.OptLevel > 0) {
Mehdi Aminif39ce992017-01-20 23:34:12 +00001009 // Compute "dead" symbols, we don't want to import/export these!
1010 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
1011 for (auto &Res : GlobalResolutions) {
1012 if (Res.second.VisibleOutsideThinLTO &&
1013 // IRName will be defined if we have seen the prevailing copy of
1014 // this value. If not, no need to preserve any ThinLTO copies.
1015 !Res.second.IRName.empty())
1016 GUIDPreservedSymbols.insert(GlobalValue::getGUID(Res.second.IRName));
1017 }
1018
1019 auto DeadSymbols =
1020 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
1021
Teresa Johnson002af9b2016-10-31 22:12:21 +00001022 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Teresa Johnson6c475a72017-01-05 21:34:18 +00001023 ImportLists, ExportLists, &DeadSymbols);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001024
1025 std::set<GlobalValue::GUID> ExportedGUIDs;
1026 for (auto &Res : GlobalResolutions) {
Teresa Johnson6c475a72017-01-05 21:34:18 +00001027 // First check if the symbol was flagged as having external references.
1028 if (Res.second.Partition != GlobalResolution::External)
1029 continue;
1030 // IRName will be defined if we have seen the prevailing copy of
1031 // this value. If not, no need to mark as exported from a ThinLTO
1032 // partition (and we can't get the GUID).
1033 if (Res.second.IRName.empty())
1034 continue;
1035 auto GUID = GlobalValue::getGUID(Res.second.IRName);
1036 // Mark exported unless index-based analysis determined it to be dead.
1037 if (!DeadSymbols.count(GUID))
Teresa Johnson002af9b2016-10-31 22:12:21 +00001038 ExportedGUIDs.insert(GlobalValue::getGUID(Res.second.IRName));
1039 }
1040
1041 auto isPrevailing = [&](GlobalValue::GUID GUID,
1042 const GlobalValueSummary *S) {
1043 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1044 };
Mehdi Amini1380edf2017-02-03 07:41:43 +00001045 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
Teresa Johnson002af9b2016-10-31 22:12:21 +00001046 const auto &ExportList = ExportLists.find(ModuleIdentifier);
Mehdi Amini1380edf2017-02-03 07:41:43 +00001047 return (ExportList != ExportLists.end() &&
1048 ExportList->second.count(GUID)) ||
1049 ExportedGUIDs.count(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001050 };
1051 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1052
1053 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1054 GlobalValue::GUID GUID,
1055 GlobalValue::LinkageTypes NewLinkage) {
1056 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1057 };
1058
1059 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1060 recordNewLinkage);
1061 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001062
Peter Collingbourne80186a52016-09-23 21:33:43 +00001063 std::unique_ptr<ThinBackendProc> BackendProc =
1064 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1065 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001066
Davide Italiano63098952017-01-04 20:37:57 +00001067 // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1068 // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1069 // are reserved for parallel code generation partitions.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +00001070 unsigned Task =
1071 HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001072 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001073 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001074 ExportLists[Mod.first],
1075 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001076 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001077 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001078 }
1079
1080 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001081}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001082
1083Expected<std::unique_ptr<tool_output_file>>
1084lto::setupOptimizationRemarks(LLVMContext &Context,
1085 StringRef LTORemarksFilename,
1086 bool LTOPassRemarksWithHotness, int Count) {
1087 if (LTORemarksFilename.empty())
1088 return nullptr;
1089
1090 std::string Filename = LTORemarksFilename;
1091 if (Count != -1)
1092 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1093
1094 std::error_code EC;
1095 auto DiagnosticFile =
1096 llvm::make_unique<tool_output_file>(Filename, EC, sys::fs::F_None);
1097 if (EC)
1098 return errorCodeToError(EC);
1099 Context.setDiagnosticsOutputFile(
1100 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1101 if (LTOPassRemarksWithHotness)
1102 Context.setDiagnosticHotnessRequested(true);
1103 DiagnosticFile->keep();
1104 return std::move(DiagnosticFile);
1105}