xref: /llvm-project-15.0.7/llvm/lib/LTO/LTO.cpp (revision 7d210c78)
1 //===-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"
15 #include "llvm/Analysis/TargetLibraryInfo.h"
16 #include "llvm/Analysis/TargetTransformInfo.h"
17 #include "llvm/Bitcode/BitcodeReader.h"
18 #include "llvm/Bitcode/BitcodeWriter.h"
19 #include "llvm/CodeGen/Analysis.h"
20 #include "llvm/IR/AutoUpgrade.h"
21 #include "llvm/IR/DiagnosticPrinter.h"
22 #include "llvm/IR/LegacyPassManager.h"
23 #include "llvm/IR/Mangler.h"
24 #include "llvm/IR/Metadata.h"
25 #include "llvm/LTO/LTOBackend.h"
26 #include "llvm/Linker/IRMover.h"
27 #include "llvm/Object/IRObjectFile.h"
28 #include "llvm/Object/ModuleSummaryIndexObjectFile.h"
29 #include "llvm/Support/Error.h"
30 #include "llvm/Support/ManagedStatic.h"
31 #include "llvm/Support/MemoryBuffer.h"
32 #include "llvm/Support/Path.h"
33 #include "llvm/Support/SHA1.h"
34 #include "llvm/Support/SourceMgr.h"
35 #include "llvm/Support/TargetRegistry.h"
36 #include "llvm/Support/ThreadPool.h"
37 #include "llvm/Support/Threading.h"
38 #include "llvm/Support/VCSRevision.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include "llvm/Target/TargetMachine.h"
41 #include "llvm/Target/TargetOptions.h"
42 #include "llvm/Transforms/IPO.h"
43 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
44 #include "llvm/Transforms/Utils/SplitModule.h"
45 
46 #include <set>
47 
48 using namespace llvm;
49 using namespace lto;
50 using namespace object;
51 
52 #define DEBUG_TYPE "lto"
53 
54 // The values are (type identifier, summary) pairs.
55 typedef DenseMap<
56     GlobalValue::GUID,
57     TinyPtrVector<const std::pair<const std::string, TypeIdSummary> *>>
58     TypeIdSummariesByGuidTy;
59 
60 // Returns a unique hash for the Module considering the current list of
61 // export/import and other global analysis results.
62 // The hash is produced in \p Key.
63 static void computeCacheKey(
64     SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index,
65     StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList,
66     const FunctionImporter::ExportSetTy &ExportList,
67     const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
68     const GVSummaryMapTy &DefinedGlobals,
69     const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
70   // Compute the unique hash for this entry.
71   // This is based on the current compiler version, the module itself, the
72   // export list, the hash for every single module in the import list, the
73   // list of ResolvedODR for the module, and the list of preserved symbols.
74   SHA1 Hasher;
75 
76   // Start with the compiler revision
77   Hasher.update(LLVM_VERSION_STRING);
78 #ifdef LLVM_REVISION
79   Hasher.update(LLVM_REVISION);
80 #endif
81 
82   // Include the parts of the LTO configuration that affect code generation.
83   auto AddString = [&](StringRef Str) {
84     Hasher.update(Str);
85     Hasher.update(ArrayRef<uint8_t>{0});
86   };
87   auto AddUnsigned = [&](unsigned I) {
88     uint8_t Data[4];
89     Data[0] = I;
90     Data[1] = I >> 8;
91     Data[2] = I >> 16;
92     Data[3] = I >> 24;
93     Hasher.update(ArrayRef<uint8_t>{Data, 4});
94   };
95   auto AddUint64 = [&](uint64_t I) {
96     uint8_t Data[8];
97     Data[0] = I;
98     Data[1] = I >> 8;
99     Data[2] = I >> 16;
100     Data[3] = I >> 24;
101     Data[4] = I >> 32;
102     Data[5] = I >> 40;
103     Data[6] = I >> 48;
104     Data[7] = I >> 56;
105     Hasher.update(ArrayRef<uint8_t>{Data, 8});
106   };
107   AddString(Conf.CPU);
108   // FIXME: Hash more of Options. For now all clients initialize Options from
109   // command-line flags (which is unsupported in production), but may set
110   // RelaxELFRelocations. The clang driver can also pass FunctionSections,
111   // DataSections and DebuggerTuning via command line flags.
112   AddUnsigned(Conf.Options.RelaxELFRelocations);
113   AddUnsigned(Conf.Options.FunctionSections);
114   AddUnsigned(Conf.Options.DataSections);
115   AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
116   for (auto &A : Conf.MAttrs)
117     AddString(A);
118   AddUnsigned(Conf.RelocModel);
119   AddUnsigned(Conf.CodeModel);
120   AddUnsigned(Conf.CGOptLevel);
121   AddUnsigned(Conf.CGFileType);
122   AddUnsigned(Conf.OptLevel);
123   AddString(Conf.OptPipeline);
124   AddString(Conf.AAPipeline);
125   AddString(Conf.OverrideTriple);
126   AddString(Conf.DefaultTriple);
127 
128   // Include the hash for the current module
129   auto ModHash = Index.getModuleHash(ModuleID);
130   Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
131   for (auto F : ExportList)
132     // The export list can impact the internalization, be conservative here
133     Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
134 
135   // Include the hash for every module we import functions from. The set of
136   // imported symbols for each module may affect code generation and is
137   // sensitive to link order, so include that as well.
138   for (auto &Entry : ImportList) {
139     auto ModHash = Index.getModuleHash(Entry.first());
140     Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
141 
142     AddUint64(Entry.second.size());
143     for (auto &Fn : Entry.second)
144       AddUint64(Fn.first);
145   }
146 
147   // Include the hash for the resolved ODR.
148   for (auto &Entry : ResolvedODR) {
149     Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
150                                     sizeof(GlobalValue::GUID)));
151     Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
152                                     sizeof(GlobalValue::LinkageTypes)));
153   }
154 
155   std::set<GlobalValue::GUID> UsedTypeIds;
156 
157   auto AddUsedTypeIds = [&](GlobalValueSummary *GS) {
158     auto *FS = dyn_cast_or_null<FunctionSummary>(GS);
159     if (!FS)
160       return;
161     for (auto &TT : FS->type_tests())
162       UsedTypeIds.insert(TT);
163     for (auto &TT : FS->type_test_assume_vcalls())
164       UsedTypeIds.insert(TT.GUID);
165     for (auto &TT : FS->type_checked_load_vcalls())
166       UsedTypeIds.insert(TT.GUID);
167     for (auto &TT : FS->type_test_assume_const_vcalls())
168       UsedTypeIds.insert(TT.VFunc.GUID);
169     for (auto &TT : FS->type_checked_load_const_vcalls())
170       UsedTypeIds.insert(TT.VFunc.GUID);
171   };
172 
173   // Include the hash for the linkage type to reflect internalization and weak
174   // resolution, and collect any used type identifier resolutions.
175   for (auto &GS : DefinedGlobals) {
176     GlobalValue::LinkageTypes Linkage = GS.second->linkage();
177     Hasher.update(
178         ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
179     AddUsedTypeIds(GS.second);
180   }
181 
182   // Imported functions may introduce new uses of type identifier resolutions,
183   // so we need to collect their used resolutions as well.
184   for (auto &ImpM : ImportList)
185     for (auto &ImpF : ImpM.second)
186       AddUsedTypeIds(Index.findSummaryInModule(ImpF.first, ImpM.first()));
187 
188   auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
189     AddString(TId);
190 
191     AddUnsigned(S.TTRes.TheKind);
192     AddUnsigned(S.TTRes.SizeM1BitWidth);
193 
194     AddUint64(S.WPDRes.size());
195     for (auto &WPD : S.WPDRes) {
196       AddUnsigned(WPD.first);
197       AddUnsigned(WPD.second.TheKind);
198       AddString(WPD.second.SingleImplName);
199 
200       AddUint64(WPD.second.ResByArg.size());
201       for (auto &ByArg : WPD.second.ResByArg) {
202         AddUint64(ByArg.first.size());
203         for (uint64_t Arg : ByArg.first)
204           AddUint64(Arg);
205         AddUnsigned(ByArg.second.TheKind);
206         AddUint64(ByArg.second.Info);
207       }
208     }
209   };
210 
211   // Include the hash for all type identifiers used by this module.
212   for (GlobalValue::GUID TId : UsedTypeIds) {
213     auto SummariesI = TypeIdSummariesByGuid.find(TId);
214     if (SummariesI != TypeIdSummariesByGuid.end())
215       for (auto *Summary : SummariesI->second)
216         AddTypeIdSummary(Summary->first, Summary->second);
217   }
218 
219   if (!Conf.SampleProfile.empty()) {
220     auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
221     if (FileOrErr)
222       Hasher.update(FileOrErr.get()->getBuffer());
223   }
224 
225   Key = toHex(Hasher.result());
226 }
227 
228 static void thinLTOResolveWeakForLinkerGUID(
229     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
230     DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
231     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
232         isPrevailing,
233     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
234         recordNewLinkage) {
235   for (auto &S : GVSummaryList) {
236     GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
237     if (!GlobalValue::isWeakForLinker(OriginalLinkage))
238       continue;
239     // We need to emit only one of these. The prevailing module will keep it,
240     // but turned into a weak, while the others will drop it when possible.
241     // This is both a compile-time optimization and a correctness
242     // transformation. This is necessary for correctness when we have exported
243     // a reference - we need to convert the linkonce to weak to
244     // ensure a copy is kept to satisfy the exported reference.
245     // FIXME: We may want to split the compile time and correctness
246     // aspects into separate routines.
247     if (isPrevailing(GUID, S.get())) {
248       if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
249         S->setLinkage(GlobalValue::getWeakLinkage(
250             GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
251     }
252     // Alias and aliasee can't be turned into available_externally.
253     else if (!isa<AliasSummary>(S.get()) &&
254              !GlobalInvolvedWithAlias.count(S.get()))
255       S->setLinkage(GlobalValue::AvailableExternallyLinkage);
256     if (S->linkage() != OriginalLinkage)
257       recordNewLinkage(S->modulePath(), GUID, S->linkage());
258   }
259 }
260 
261 // Resolve Weak and LinkOnce values in the \p Index.
262 //
263 // We'd like to drop these functions if they are no longer referenced in the
264 // current module. However there is a chance that another module is still
265 // referencing them because of the import. We make sure we always emit at least
266 // one copy.
267 void llvm::thinLTOResolveWeakForLinkerInIndex(
268     ModuleSummaryIndex &Index,
269     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
270         isPrevailing,
271     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
272         recordNewLinkage) {
273   // We won't optimize the globals that are referenced by an alias for now
274   // Ideally we should turn the alias into a global and duplicate the definition
275   // when needed.
276   DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
277   for (auto &I : Index)
278     for (auto &S : I.second)
279       if (auto AS = dyn_cast<AliasSummary>(S.get()))
280         GlobalInvolvedWithAlias.insert(&AS->getAliasee());
281 
282   for (auto &I : Index)
283     thinLTOResolveWeakForLinkerGUID(I.second, I.first, GlobalInvolvedWithAlias,
284                                     isPrevailing, recordNewLinkage);
285 }
286 
287 static void thinLTOInternalizeAndPromoteGUID(
288     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
289     function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
290   for (auto &S : GVSummaryList) {
291     if (isExported(S->modulePath(), GUID)) {
292       if (GlobalValue::isLocalLinkage(S->linkage()))
293         S->setLinkage(GlobalValue::ExternalLinkage);
294     } else if (!GlobalValue::isLocalLinkage(S->linkage()))
295       S->setLinkage(GlobalValue::InternalLinkage);
296   }
297 }
298 
299 // Update the linkages in the given \p Index to mark exported values
300 // as external and non-exported values as internal.
301 void llvm::thinLTOInternalizeAndPromoteInIndex(
302     ModuleSummaryIndex &Index,
303     function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
304   for (auto &I : Index)
305     thinLTOInternalizeAndPromoteGUID(I.second, I.first, isExported);
306 }
307 
308 // Requires a destructor for std::vector<InputModule>.
309 InputFile::~InputFile() = default;
310 
311 Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
312   std::unique_ptr<InputFile> File(new InputFile);
313 
314   ErrorOr<MemoryBufferRef> BCOrErr =
315       IRObjectFile::findBitcodeInMemBuffer(Object);
316   if (!BCOrErr)
317     return errorCodeToError(BCOrErr.getError());
318 
319   Expected<std::vector<BitcodeModule>> BMsOrErr =
320       getBitcodeModuleList(*BCOrErr);
321   if (!BMsOrErr)
322     return BMsOrErr.takeError();
323 
324   if (BMsOrErr->empty())
325     return make_error<StringError>("Bitcode file does not contain any modules",
326                                    inconvertibleErrorCode());
327 
328   File->Mods = *BMsOrErr;
329 
330   LLVMContext Ctx;
331   std::vector<Module *> Mods;
332   std::vector<std::unique_ptr<Module>> OwnedMods;
333   for (auto BM : *BMsOrErr) {
334     Expected<std::unique_ptr<Module>> MOrErr =
335         BM.getLazyModule(Ctx, /*ShouldLazyLoadMetadata*/ true,
336                          /*IsImporting*/ false);
337     if (!MOrErr)
338       return MOrErr.takeError();
339 
340     if ((*MOrErr)->getDataLayoutStr().empty())
341       return make_error<StringError>("input module has no datalayout",
342                                      inconvertibleErrorCode());
343 
344     Mods.push_back(MOrErr->get());
345     OwnedMods.push_back(std::move(*MOrErr));
346   }
347 
348   SmallVector<char, 0> Symtab;
349   if (Error E = irsymtab::build(Mods, Symtab, File->Strtab))
350     return std::move(E);
351 
352   irsymtab::Reader R({Symtab.data(), Symtab.size()},
353                      {File->Strtab.data(), File->Strtab.size()});
354   File->SourceFileName = R.getSourceFileName();
355   File->COFFLinkerOpts = R.getCOFFLinkerOpts();
356   File->ComdatTable = R.getComdatTable();
357 
358   for (unsigned I = 0; I != Mods.size(); ++I) {
359     size_t Begin = File->Symbols.size();
360     for (const irsymtab::Reader::SymbolRef &Sym : R.module_symbols(I))
361       // Skip symbols that are irrelevant to LTO. Note that this condition needs
362       // to match the one in Skip() in LTO::addRegularLTO().
363       if (Sym.isGlobal() && !Sym.isFormatSpecific())
364         File->Symbols.push_back(Sym);
365     File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
366   }
367 
368   return std::move(File);
369 }
370 
371 StringRef InputFile::getName() const {
372   return Mods[0].getModuleIdentifier();
373 }
374 
375 LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
376                                       Config &Conf)
377     : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
378       Ctx(Conf) {}
379 
380 LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
381   if (!Backend)
382     this->Backend =
383         createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
384 }
385 
386 LTO::LTO(Config Conf, ThinBackend Backend,
387          unsigned ParallelCodeGenParallelismLevel)
388     : Conf(std::move(Conf)),
389       RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
390       ThinLTO(std::move(Backend)) {}
391 
392 // Requires a destructor for MapVector<BitcodeModule>.
393 LTO::~LTO() = default;
394 
395 // Add the given symbol to the GlobalResolutions map, and resolve its partition.
396 void LTO::addSymbolToGlobalRes(const InputFile::Symbol &Sym,
397                                SymbolResolution Res, unsigned Partition) {
398   auto &GlobalRes = GlobalResolutions[Sym.getName()];
399   GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
400   if (Res.Prevailing)
401     GlobalRes.IRName = Sym.getIRName();
402 
403   // Set the partition to external if we know it is used elsewhere, e.g.
404   // it is visible to a regular object, is referenced from llvm.compiler_used,
405   // or was already recorded as being referenced from a different partition.
406   if (Res.VisibleToRegularObj || Sym.isUsed() ||
407       (GlobalRes.Partition != GlobalResolution::Unknown &&
408        GlobalRes.Partition != Partition)) {
409     GlobalRes.Partition = GlobalResolution::External;
410   } else
411     // First recorded reference, save the current partition.
412     GlobalRes.Partition = Partition;
413 
414   // Flag as visible outside of ThinLTO if visible from a regular object or
415   // if this is a reference in the regular LTO partition.
416   GlobalRes.VisibleOutsideThinLTO |=
417       (Res.VisibleToRegularObj || (Partition == GlobalResolution::RegularLTO));
418 }
419 
420 static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
421                                   ArrayRef<SymbolResolution> Res) {
422   StringRef Path = Input->getName();
423   OS << Path << '\n';
424   auto ResI = Res.begin();
425   for (const InputFile::Symbol &Sym : Input->symbols()) {
426     assert(ResI != Res.end());
427     SymbolResolution Res = *ResI++;
428 
429     OS << "-r=" << Path << ',' << Sym.getName() << ',';
430     if (Res.Prevailing)
431       OS << 'p';
432     if (Res.FinalDefinitionInLinkageUnit)
433       OS << 'l';
434     if (Res.VisibleToRegularObj)
435       OS << 'x';
436     OS << '\n';
437   }
438   OS.flush();
439   assert(ResI == Res.end());
440 }
441 
442 Error LTO::add(std::unique_ptr<InputFile> Input,
443                ArrayRef<SymbolResolution> Res) {
444   assert(!CalledGetMaxTasks);
445 
446   if (Conf.ResolutionFile)
447     writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
448 
449   const SymbolResolution *ResI = Res.begin();
450   for (unsigned I = 0; I != Input->Mods.size(); ++I)
451     if (Error Err = addModule(*Input, I, ResI, Res.end()))
452       return Err;
453 
454   assert(ResI == Res.end());
455   return Error::success();
456 }
457 
458 Error LTO::addModule(InputFile &Input, unsigned ModI,
459                      const SymbolResolution *&ResI,
460                      const SymbolResolution *ResE) {
461   Expected<bool> HasThinLTOSummary = Input.Mods[ModI].hasSummary();
462   if (!HasThinLTOSummary)
463     return HasThinLTOSummary.takeError();
464 
465   auto ModSyms = Input.module_symbols(ModI);
466   if (*HasThinLTOSummary)
467     return addThinLTO(Input.Mods[ModI], ModSyms, ResI, ResE);
468   else
469     return addRegularLTO(Input.Mods[ModI], ModSyms, ResI, ResE);
470 }
471 
472 // Add a regular LTO object to the link.
473 Error LTO::addRegularLTO(BitcodeModule BM,
474                          ArrayRef<InputFile::Symbol> Syms,
475                          const SymbolResolution *&ResI,
476                          const SymbolResolution *ResE) {
477   if (!RegularLTO.CombinedModule) {
478     RegularLTO.CombinedModule =
479         llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
480     RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
481   }
482   Expected<std::unique_ptr<Module>> MOrErr =
483       BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
484                        /*IsImporting*/ false);
485   if (!MOrErr)
486     return MOrErr.takeError();
487 
488   Module &M = **MOrErr;
489   if (Error Err = M.materializeMetadata())
490     return Err;
491   UpgradeDebugInfo(M);
492 
493   ModuleSymbolTable SymTab;
494   SymTab.addModule(&M);
495 
496   std::vector<GlobalValue *> Keep;
497 
498   for (GlobalVariable &GV : M.globals())
499     if (GV.hasAppendingLinkage())
500       Keep.push_back(&GV);
501 
502   DenseSet<GlobalObject *> AliasedGlobals;
503   for (auto &GA : M.aliases())
504     if (GlobalObject *GO = GA.getBaseObject())
505       AliasedGlobals.insert(GO);
506 
507   // In this function we need IR GlobalValues matching the symbols in Syms
508   // (which is not backed by a module), so we need to enumerate them in the same
509   // order. The symbol enumeration order of a ModuleSymbolTable intentionally
510   // matches the order of an irsymtab, but when we read the irsymtab in
511   // InputFile::create we omit some symbols that are irrelevant to LTO. The
512   // Skip() function skips the same symbols from the module as InputFile does
513   // from the symbol table.
514   auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
515   auto Skip = [&]() {
516     while (MsymI != MsymE) {
517       auto Flags = SymTab.getSymbolFlags(*MsymI);
518       if ((Flags & object::BasicSymbolRef::SF_Global) &&
519           !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
520         return;
521       ++MsymI;
522     }
523   };
524   Skip();
525 
526   for (const InputFile::Symbol &Sym : Syms) {
527     assert(ResI != ResE);
528     SymbolResolution Res = *ResI++;
529     addSymbolToGlobalRes(Sym, Res, 0);
530 
531     assert(MsymI != MsymE);
532     ModuleSymbolTable::Symbol Msym = *MsymI++;
533     Skip();
534 
535     if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
536       if (Res.Prevailing) {
537         if (Sym.isUndefined())
538           continue;
539         Keep.push_back(GV);
540         switch (GV->getLinkage()) {
541         default:
542           break;
543         case GlobalValue::LinkOnceAnyLinkage:
544           GV->setLinkage(GlobalValue::WeakAnyLinkage);
545           break;
546         case GlobalValue::LinkOnceODRLinkage:
547           GV->setLinkage(GlobalValue::WeakODRLinkage);
548           break;
549         }
550       } 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.
558         GlobalValue *CombinedGV =
559             RegularLTO.CombinedModule->getNamedValue(GV->getName());
560         if (!CombinedGV || CombinedGV->isDeclaration()) {
561           Keep.push_back(GV);
562           GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
563           cast<GlobalObject>(GV)->setComdat(nullptr);
564         }
565       }
566     }
567     // 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.
570     if (Sym.isCommon()) {
571       // FIXME: We should figure out what to do about commons defined by asm.
572       // For now they aren't reported correctly by ModuleSymbolTable.
573       auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
574       CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
575       CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
576       CommonRes.Prevailing |= Res.Prevailing;
577     }
578 
579     // FIXME: use proposed local attribute for FinalDefinitionInLinkageUnit.
580   }
581   assert(MsymI == MsymE);
582 
583   return RegularLTO.Mover->move(std::move(*MOrErr), Keep,
584                                 [](GlobalValue &, IRMover::ValueAdder) {},
585                                 /* IsPerformingImport */ false);
586 }
587 
588 // Add a ThinLTO object to the link.
589 Error LTO::addThinLTO(BitcodeModule BM,
590                       ArrayRef<InputFile::Symbol> Syms,
591                       const SymbolResolution *&ResI,
592                       const SymbolResolution *ResE) {
593   Expected<std::unique_ptr<ModuleSummaryIndex>> SummaryOrErr = BM.getSummary();
594   if (!SummaryOrErr)
595     return SummaryOrErr.takeError();
596   ThinLTO.CombinedIndex.mergeFrom(std::move(*SummaryOrErr),
597                                   ThinLTO.ModuleMap.size());
598 
599   for (const InputFile::Symbol &Sym : Syms) {
600     assert(ResI != ResE);
601     SymbolResolution Res = *ResI++;
602     addSymbolToGlobalRes(Sym, Res, ThinLTO.ModuleMap.size() + 1);
603 
604     if (Res.Prevailing) {
605       if (!Sym.getIRName().empty()) {
606         auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
607             Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
608         ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
609       }
610     }
611   }
612 
613   if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
614     return make_error<StringError>(
615         "Expected at most one ThinLTO module per bitcode file",
616         inconvertibleErrorCode());
617 
618   return Error::success();
619 }
620 
621 unsigned LTO::getMaxTasks() const {
622   CalledGetMaxTasks = true;
623   return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
624 }
625 
626 Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
627   // Save the status of having a regularLTO combined module, as
628   // this is needed for generating the ThinLTO Task ID, and
629   // the CombinedModule will be moved at the end of runRegularLTO.
630   bool HasRegularLTO = RegularLTO.CombinedModule != nullptr;
631   // Invoke regular LTO if there was a regular LTO module to start with.
632   if (HasRegularLTO)
633     if (auto E = runRegularLTO(AddStream))
634       return E;
635   return runThinLTO(AddStream, Cache, HasRegularLTO);
636 }
637 
638 Error LTO::runRegularLTO(AddStreamFn AddStream) {
639   // Make sure commons have the right size/alignment: we kept the largest from
640   // all the prevailing when adding the inputs, and we apply it here.
641   const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
642   for (auto &I : RegularLTO.Commons) {
643     if (!I.second.Prevailing)
644       // Don't do anything if no instance of this common was prevailing.
645       continue;
646     GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
647     if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
648       // Don't create a new global if the type is already correct, just make
649       // sure the alignment is correct.
650       OldGV->setAlignment(I.second.Align);
651       continue;
652     }
653     ArrayType *Ty =
654         ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
655     auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
656                                   GlobalValue::CommonLinkage,
657                                   ConstantAggregateZero::get(Ty), "");
658     GV->setAlignment(I.second.Align);
659     if (OldGV) {
660       OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
661       GV->takeName(OldGV);
662       OldGV->eraseFromParent();
663     } else {
664       GV->setName(I.first);
665     }
666   }
667 
668   if (Conf.PreOptModuleHook &&
669       !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
670     return Error::success();
671 
672   if (!Conf.CodeGenOnly) {
673     for (const auto &R : GlobalResolutions) {
674       if (R.second.IRName.empty())
675         continue;
676       if (R.second.Partition != 0 &&
677           R.second.Partition != GlobalResolution::External)
678         continue;
679 
680       GlobalValue *GV =
681           RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
682       // Ignore symbols defined in other partitions.
683       if (!GV || GV->hasLocalLinkage())
684         continue;
685       GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
686                                               : GlobalValue::UnnamedAddr::None);
687       if (R.second.Partition == 0)
688         GV->setLinkage(GlobalValue::InternalLinkage);
689     }
690 
691     if (Conf.PostInternalizeModuleHook &&
692         !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
693       return Error::success();
694   }
695   return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
696                  std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
697 }
698 
699 /// This class defines the interface to the ThinLTO backend.
700 class lto::ThinBackendProc {
701 protected:
702   Config &Conf;
703   ModuleSummaryIndex &CombinedIndex;
704   const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
705 
706 public:
707   ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
708                   const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
709       : Conf(Conf), CombinedIndex(CombinedIndex),
710         ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
711 
712   virtual ~ThinBackendProc() {}
713   virtual Error start(
714       unsigned Task, BitcodeModule BM,
715       const FunctionImporter::ImportMapTy &ImportList,
716       const FunctionImporter::ExportSetTy &ExportList,
717       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
718       MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
719   virtual Error wait() = 0;
720 };
721 
722 namespace {
723 class InProcessThinBackend : public ThinBackendProc {
724   ThreadPool BackendThreadPool;
725   AddStreamFn AddStream;
726   NativeObjectCache Cache;
727   TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
728 
729   Optional<Error> Err;
730   std::mutex ErrMu;
731 
732 public:
733   InProcessThinBackend(
734       Config &Conf, ModuleSummaryIndex &CombinedIndex,
735       unsigned ThinLTOParallelismLevel,
736       const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
737       AddStreamFn AddStream, NativeObjectCache Cache)
738       : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
739         BackendThreadPool(ThinLTOParallelismLevel),
740         AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
741     // Create a mapping from type identifier GUIDs to type identifier summaries.
742     // This allows backends to use the type identifier GUIDs stored in the
743     // function summaries to determine which type identifier summaries affect
744     // each function without needing to compute GUIDs in each backend.
745     for (auto &TId : CombinedIndex.typeIds())
746       TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
747   }
748 
749   Error runThinLTOBackendThread(
750       AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
751       BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
752       const FunctionImporter::ImportMapTy &ImportList,
753       const FunctionImporter::ExportSetTy &ExportList,
754       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
755       const GVSummaryMapTy &DefinedGlobals,
756       MapVector<StringRef, BitcodeModule> &ModuleMap,
757       const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
758     auto RunThinBackend = [&](AddStreamFn AddStream) {
759       LTOLLVMContext BackendContext(Conf);
760       Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
761       if (!MOrErr)
762         return MOrErr.takeError();
763 
764       return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
765                          ImportList, DefinedGlobals, ModuleMap);
766     };
767 
768     auto ModuleID = BM.getModuleIdentifier();
769 
770     if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
771         all_of(CombinedIndex.getModuleHash(ModuleID),
772                [](uint32_t V) { return V == 0; }))
773       // Cache disabled or no entry for this module in the combined index or
774       // no module hash.
775       return RunThinBackend(AddStream);
776 
777     SmallString<40> Key;
778     // The module may be cached, this helps handling it.
779     computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
780                     ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid);
781     if (AddStreamFn CacheAddStream = Cache(Task, Key))
782       return RunThinBackend(CacheAddStream);
783 
784     return Error::success();
785   }
786 
787   Error start(
788       unsigned Task, BitcodeModule BM,
789       const FunctionImporter::ImportMapTy &ImportList,
790       const FunctionImporter::ExportSetTy &ExportList,
791       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
792       MapVector<StringRef, BitcodeModule> &ModuleMap) override {
793     StringRef ModulePath = BM.getModuleIdentifier();
794     assert(ModuleToDefinedGVSummaries.count(ModulePath));
795     const GVSummaryMapTy &DefinedGlobals =
796         ModuleToDefinedGVSummaries.find(ModulePath)->second;
797     BackendThreadPool.async(
798         [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
799             const FunctionImporter::ImportMapTy &ImportList,
800             const FunctionImporter::ExportSetTy &ExportList,
801             const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
802                 &ResolvedODR,
803             const GVSummaryMapTy &DefinedGlobals,
804             MapVector<StringRef, BitcodeModule> &ModuleMap,
805             const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
806           Error E = runThinLTOBackendThread(
807               AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
808               ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
809           if (E) {
810             std::unique_lock<std::mutex> L(ErrMu);
811             if (Err)
812               Err = joinErrors(std::move(*Err), std::move(E));
813             else
814               Err = std::move(E);
815           }
816         },
817         BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
818         std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
819         std::ref(TypeIdSummariesByGuid));
820     return Error::success();
821   }
822 
823   Error wait() override {
824     BackendThreadPool.wait();
825     if (Err)
826       return std::move(*Err);
827     else
828       return Error::success();
829   }
830 };
831 } // end anonymous namespace
832 
833 ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
834   return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
835              const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
836              AddStreamFn AddStream, NativeObjectCache Cache) {
837     return llvm::make_unique<InProcessThinBackend>(
838         Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
839         AddStream, Cache);
840   };
841 }
842 
843 // Given the original \p Path to an output file, replace any path
844 // prefix matching \p OldPrefix with \p NewPrefix. Also, create the
845 // resulting directory if it does not yet exist.
846 std::string lto::getThinLTOOutputFile(const std::string &Path,
847                                       const std::string &OldPrefix,
848                                       const std::string &NewPrefix) {
849   if (OldPrefix.empty() && NewPrefix.empty())
850     return Path;
851   SmallString<128> NewPath(Path);
852   llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
853   StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
854   if (!ParentPath.empty()) {
855     // Make sure the new directory exists, creating it if necessary.
856     if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
857       llvm::errs() << "warning: could not create directory '" << ParentPath
858                    << "': " << EC.message() << '\n';
859   }
860   return NewPath.str();
861 }
862 
863 namespace {
864 class WriteIndexesThinBackend : public ThinBackendProc {
865   std::string OldPrefix, NewPrefix;
866   bool ShouldEmitImportsFiles;
867 
868   std::string LinkedObjectsFileName;
869   std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
870 
871 public:
872   WriteIndexesThinBackend(
873       Config &Conf, ModuleSummaryIndex &CombinedIndex,
874       const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
875       std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
876       std::string LinkedObjectsFileName)
877       : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
878         OldPrefix(OldPrefix), NewPrefix(NewPrefix),
879         ShouldEmitImportsFiles(ShouldEmitImportsFiles),
880         LinkedObjectsFileName(LinkedObjectsFileName) {}
881 
882   Error start(
883       unsigned Task, BitcodeModule BM,
884       const FunctionImporter::ImportMapTy &ImportList,
885       const FunctionImporter::ExportSetTy &ExportList,
886       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
887       MapVector<StringRef, BitcodeModule> &ModuleMap) override {
888     StringRef ModulePath = BM.getModuleIdentifier();
889     std::string NewModulePath =
890         getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
891 
892     std::error_code EC;
893     if (!LinkedObjectsFileName.empty()) {
894       if (!LinkedObjectsFile) {
895         LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
896             LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
897         if (EC)
898           return errorCodeToError(EC);
899       }
900       *LinkedObjectsFile << NewModulePath << '\n';
901     }
902 
903     std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
904     gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
905                                      ImportList, ModuleToSummariesForIndex);
906 
907     raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
908                       sys::fs::OpenFlags::F_None);
909     if (EC)
910       return errorCodeToError(EC);
911     WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
912 
913     if (ShouldEmitImportsFiles)
914       return errorCodeToError(
915           EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
916     return Error::success();
917   }
918 
919   Error wait() override { return Error::success(); }
920 };
921 } // end anonymous namespace
922 
923 ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
924                                                std::string NewPrefix,
925                                                bool ShouldEmitImportsFiles,
926                                                std::string LinkedObjectsFile) {
927   return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
928              const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
929              AddStreamFn AddStream, NativeObjectCache Cache) {
930     return llvm::make_unique<WriteIndexesThinBackend>(
931         Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
932         ShouldEmitImportsFiles, LinkedObjectsFile);
933   };
934 }
935 
936 Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
937                       bool HasRegularLTO) {
938   if (ThinLTO.ModuleMap.empty())
939     return Error::success();
940 
941   if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
942     return Error::success();
943 
944   // Collect for each module the list of function it defines (GUID ->
945   // Summary).
946   StringMap<std::map<GlobalValue::GUID, GlobalValueSummary *>>
947       ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
948   ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
949       ModuleToDefinedGVSummaries);
950   // Create entries for any modules that didn't have any GV summaries
951   // (either they didn't have any GVs to start with, or we suppressed
952   // generation of the summaries because they e.g. had inline assembly
953   // uses that couldn't be promoted/renamed on export). This is so
954   // InProcessThinBackend::start can still launch a backend thread, which
955   // is passed the map of summaries for the module, without any special
956   // handling for this case.
957   for (auto &Mod : ThinLTO.ModuleMap)
958     if (!ModuleToDefinedGVSummaries.count(Mod.first))
959       ModuleToDefinedGVSummaries.try_emplace(Mod.first);
960 
961   StringMap<FunctionImporter::ImportMapTy> ImportLists(
962       ThinLTO.ModuleMap.size());
963   StringMap<FunctionImporter::ExportSetTy> ExportLists(
964       ThinLTO.ModuleMap.size());
965   StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
966 
967   if (Conf.OptLevel > 0) {
968     // Compute "dead" symbols, we don't want to import/export these!
969     DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
970     for (auto &Res : GlobalResolutions) {
971       if (Res.second.VisibleOutsideThinLTO &&
972           // IRName will be defined if we have seen the prevailing copy of
973           // this value. If not, no need to preserve any ThinLTO copies.
974           !Res.second.IRName.empty())
975         GUIDPreservedSymbols.insert(GlobalValue::getGUID(
976             GlobalValue::getRealLinkageName(Res.second.IRName)));
977     }
978 
979     auto DeadSymbols =
980         computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
981 
982     ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
983                              ImportLists, ExportLists, &DeadSymbols);
984 
985     std::set<GlobalValue::GUID> ExportedGUIDs;
986     for (auto &Res : GlobalResolutions) {
987       // First check if the symbol was flagged as having external references.
988       if (Res.second.Partition != GlobalResolution::External)
989         continue;
990       // IRName will be defined if we have seen the prevailing copy of
991       // this value. If not, no need to mark as exported from a ThinLTO
992       // partition (and we can't get the GUID).
993       if (Res.second.IRName.empty())
994         continue;
995       auto GUID = GlobalValue::getGUID(
996           GlobalValue::getRealLinkageName(Res.second.IRName));
997       // Mark exported unless index-based analysis determined it to be dead.
998       if (!DeadSymbols.count(GUID))
999         ExportedGUIDs.insert(GUID);
1000     }
1001 
1002     auto isPrevailing = [&](GlobalValue::GUID GUID,
1003                             const GlobalValueSummary *S) {
1004       return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1005     };
1006     auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
1007       const auto &ExportList = ExportLists.find(ModuleIdentifier);
1008       return (ExportList != ExportLists.end() &&
1009               ExportList->second.count(GUID)) ||
1010              ExportedGUIDs.count(GUID);
1011     };
1012     thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1013 
1014     auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1015                                 GlobalValue::GUID GUID,
1016                                 GlobalValue::LinkageTypes NewLinkage) {
1017       ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1018     };
1019 
1020     thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1021                                        recordNewLinkage);
1022   }
1023 
1024   std::unique_ptr<ThinBackendProc> BackendProc =
1025       ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1026                       AddStream, Cache);
1027 
1028   // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1029   // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1030   // are reserved for parallel code generation partitions.
1031   unsigned Task =
1032       HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
1033   for (auto &Mod : ThinLTO.ModuleMap) {
1034     if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
1035                                      ExportLists[Mod.first],
1036                                      ResolvedODR[Mod.first], ThinLTO.ModuleMap))
1037       return E;
1038     ++Task;
1039   }
1040 
1041   return BackendProc->wait();
1042 }
1043 
1044 Expected<std::unique_ptr<tool_output_file>>
1045 lto::setupOptimizationRemarks(LLVMContext &Context,
1046                               StringRef LTORemarksFilename,
1047                               bool LTOPassRemarksWithHotness, int Count) {
1048   if (LTORemarksFilename.empty())
1049     return nullptr;
1050 
1051   std::string Filename = LTORemarksFilename;
1052   if (Count != -1)
1053     Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1054 
1055   std::error_code EC;
1056   auto DiagnosticFile =
1057       llvm::make_unique<tool_output_file>(Filename, EC, sys::fs::F_None);
1058   if (EC)
1059     return errorCodeToError(EC);
1060   Context.setDiagnosticsOutputFile(
1061       llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1062   if (LTOPassRemarksWithHotness)
1063     Context.setDiagnosticHotnessRequested(true);
1064   DiagnosticFile->keep();
1065   return std::move(DiagnosticFile);
1066 }
1067