blob: b130af6f7c3048dfea34a467c21e8cbeeb34867e [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);
192 };
193
194 // Include the hash for all type identifiers used by this module.
195 for (GlobalValue::GUID TId : UsedTypeIds) {
196 auto SummariesI = TypeIdSummariesByGuid.find(TId);
197 if (SummariesI != TypeIdSummariesByGuid.end())
198 for (auto *Summary : SummariesI->second)
199 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000200 }
201
Dehao Chen27978002016-12-16 16:48:46 +0000202 if (!Conf.SampleProfile.empty()) {
203 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
204 if (FileOrErr)
205 Hasher.update(FileOrErr.get()->getBuffer());
206 }
207
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000208 Key = toHex(Hasher.result());
209}
210
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000211static void thinLTOResolveWeakForLinkerGUID(
212 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
213 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000214 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000215 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000216 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000217 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000218 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000219 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
220 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
221 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000222 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000223 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000224 // This is both a compile-time optimization and a correctness
225 // transformation. This is necessary for correctness when we have exported
226 // a reference - we need to convert the linkonce to weak to
227 // ensure a copy is kept to satisfy the exported reference.
228 // FIXME: We may want to split the compile time and correctness
229 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000230 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000231 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
232 S->setLinkage(GlobalValue::getWeakLinkage(
233 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000234 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000235 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000236 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000237 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000238 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
239 if (S->linkage() != OriginalLinkage)
240 recordNewLinkage(S->modulePath(), GUID, S->linkage());
241 }
242}
243
244// Resolve Weak and LinkOnce values in the \p Index.
245//
246// We'd like to drop these functions if they are no longer referenced in the
247// current module. However there is a chance that another module is still
248// referencing them because of the import. We make sure we always emit at least
249// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000250void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000251 ModuleSummaryIndex &Index,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000252 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000253 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000254 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000255 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000256 // We won't optimize the globals that are referenced by an alias for now
257 // Ideally we should turn the alias into a global and duplicate the definition
258 // when needed.
259 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
260 for (auto &I : Index)
261 for (auto &S : I.second)
262 if (auto AS = dyn_cast<AliasSummary>(S.get()))
263 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
264
265 for (auto &I : Index)
266 thinLTOResolveWeakForLinkerGUID(I.second, I.first, GlobalInvolvedWithAlias,
Peter Collingbourne73589f32016-07-07 18:31:51 +0000267 isPrevailing, recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000268}
269
270static void thinLTOInternalizeAndPromoteGUID(
271 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000272 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000273 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000274 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000275 if (GlobalValue::isLocalLinkage(S->linkage()))
276 S->setLinkage(GlobalValue::ExternalLinkage);
277 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
278 S->setLinkage(GlobalValue::InternalLinkage);
279 }
280}
281
282// Update the linkages in the given \p Index to mark exported values
283// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000284void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000285 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000286 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000287 for (auto &I : Index)
288 thinLTOInternalizeAndPromoteGUID(I.second, I.first, isExported);
289}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000290
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000291struct InputFile::InputModule {
292 BitcodeModule BM;
293 std::unique_ptr<Module> Mod;
294
295 // The range of ModuleSymbolTable entries for this input module.
296 size_t SymBegin, SymEnd;
297};
298
299// Requires a destructor for std::vector<InputModule>.
300InputFile::~InputFile() = default;
301
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000302Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
303 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000304
Peter Collingbournead903692016-12-13 19:43:49 +0000305 ErrorOr<MemoryBufferRef> BCOrErr =
306 IRObjectFile::findBitcodeInMemBuffer(Object);
307 if (!BCOrErr)
308 return errorCodeToError(BCOrErr.getError());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000309
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000310 Expected<std::vector<BitcodeModule>> BMsOrErr =
311 getBitcodeModuleList(*BCOrErr);
312 if (!BMsOrErr)
313 return BMsOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000314
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000315 if (BMsOrErr->empty())
316 return make_error<StringError>("Bitcode file does not contain any modules",
317 inconvertibleErrorCode());
Peter Collingbournead903692016-12-13 19:43:49 +0000318
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000319 // Create an InputModule for each module in the InputFile, and add it to the
320 // ModuleSymbolTable.
321 for (auto BM : *BMsOrErr) {
322 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000323 BM.getLazyModule(File->Ctx, /*ShouldLazyLoadMetadata*/ true,
324 /*IsImporting*/ false);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000325 if (!MOrErr)
326 return MOrErr.takeError();
327
328 size_t SymBegin = File->SymTab.symbols().size();
329 File->SymTab.addModule(MOrErr->get());
330 size_t SymEnd = File->SymTab.symbols().size();
331
332 for (const auto &C : (*MOrErr)->getComdatSymbolTable()) {
333 auto P = File->ComdatMap.insert(
334 std::make_pair(&C.second, File->Comdats.size()));
335 assert(P.second);
336 (void)P;
337 File->Comdats.push_back(C.first());
338 }
339
340 File->Mods.push_back({BM, std::move(*MOrErr), SymBegin, SymEnd});
Rafael Espindola79121102016-10-25 12:02:03 +0000341 }
342
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000343 return std::move(File);
344}
345
Rafael Espindola79121102016-10-25 12:02:03 +0000346Expected<int> InputFile::Symbol::getComdatIndex() const {
Peter Collingbournead903692016-12-13 19:43:49 +0000347 if (!isGV())
Rafael Espindola79121102016-10-25 12:02:03 +0000348 return -1;
Peter Collingbournead903692016-12-13 19:43:49 +0000349 const GlobalObject *GO = getGV()->getBaseObject();
350 if (!GO)
351 return make_error<StringError>("Unable to determine comdat of alias!",
352 inconvertibleErrorCode());
Rafael Espindola79121102016-10-25 12:02:03 +0000353 if (const Comdat *C = GO->getComdat()) {
354 auto I = File->ComdatMap.find(C);
355 assert(I != File->ComdatMap.end());
356 return I->second;
357 }
358 return -1;
359}
360
Bob Haarmandd4ebc12017-02-02 23:00:49 +0000361Expected<std::string> InputFile::getLinkerOpts() {
362 std::string LinkerOpts;
363 raw_string_ostream LOS(LinkerOpts);
364 // Extract linker options from module metadata.
365 for (InputModule &Mod : Mods) {
366 std::unique_ptr<Module> &M = Mod.Mod;
367 if (auto E = M->materializeMetadata())
368 return std::move(E);
369 if (Metadata *Val = M->getModuleFlag("Linker Options")) {
370 MDNode *LinkerOptions = cast<MDNode>(Val);
371 for (const MDOperand &MDOptions : LinkerOptions->operands())
372 for (const MDOperand &MDOption : cast<MDNode>(MDOptions)->operands())
373 LOS << " " << cast<MDString>(MDOption)->getString();
374 }
375 }
376
377 // Synthesize export flags for symbols with dllexport storage.
378 const Triple TT(Mods[0].Mod->getTargetTriple());
379 Mangler M;
380 for (const ModuleSymbolTable::Symbol &Sym : SymTab.symbols())
381 if (auto *GV = Sym.dyn_cast<GlobalValue*>())
382 emitLinkerFlagsForGlobalCOFF(LOS, GV, TT, M);
383 LOS.flush();
384 return LinkerOpts;
385}
386
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000387StringRef InputFile::getName() const {
388 return Mods[0].BM.getModuleIdentifier();
389}
390
391StringRef InputFile::getSourceFileName() const {
392 return Mods[0].Mod->getSourceFileName();
393}
394
395iterator_range<InputFile::symbol_iterator>
396InputFile::module_symbols(InputModule &IM) {
397 return llvm::make_range(
398 symbol_iterator(SymTab.symbols().data() + IM.SymBegin, SymTab, this),
399 symbol_iterator(SymTab.symbols().data() + IM.SymEnd, SymTab, this));
400}
401
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000402LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
403 Config &Conf)
404 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Mehdi Aminie7494532016-08-23 18:39:12 +0000405 Ctx(Conf) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000406
407LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
408 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000409 this->Backend =
410 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000411}
412
413LTO::LTO(Config Conf, ThinBackend Backend,
414 unsigned ParallelCodeGenParallelismLevel)
415 : Conf(std::move(Conf)),
416 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000417 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000418
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000419// Requires a destructor for MapVector<BitcodeModule>.
420LTO::~LTO() = default;
421
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000422// Add the given symbol to the GlobalResolutions map, and resolve its partition.
Peter Collingbournead903692016-12-13 19:43:49 +0000423void LTO::addSymbolToGlobalRes(SmallPtrSet<GlobalValue *, 8> &Used,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000424 const InputFile::Symbol &Sym,
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000425 SymbolResolution Res, unsigned Partition) {
Peter Collingbournead903692016-12-13 19:43:49 +0000426 GlobalValue *GV = Sym.isGV() ? Sym.getGV() : nullptr;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000427
428 auto &GlobalRes = GlobalResolutions[Sym.getName()];
429 if (GV) {
430 GlobalRes.UnnamedAddr &= GV->hasGlobalUnnamedAddr();
431 if (Res.Prevailing)
432 GlobalRes.IRName = GV->getName();
433 }
Teresa Johnson6c475a72017-01-05 21:34:18 +0000434 // Set the partition to external if we know it is used elsewhere, e.g.
435 // it is visible to a regular object, is referenced from llvm.compiler_used,
436 // or was already recorded as being referenced from a different partition.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000437 if (Res.VisibleToRegularObj || (GV && Used.count(GV)) ||
438 (GlobalRes.Partition != GlobalResolution::Unknown &&
Teresa Johnson6c475a72017-01-05 21:34:18 +0000439 GlobalRes.Partition != Partition)) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000440 GlobalRes.Partition = GlobalResolution::External;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000441 } else
442 // First recorded reference, save the current partition.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000443 GlobalRes.Partition = Partition;
Teresa Johnson6c475a72017-01-05 21:34:18 +0000444
445 // Flag as visible outside of ThinLTO if visible from a regular object or
446 // if this is a reference in the regular LTO partition.
447 GlobalRes.VisibleOutsideThinLTO |=
448 (Res.VisibleToRegularObj || (Partition == GlobalResolution::RegularLTO));
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000449}
450
Rafael Espindola7775c332016-08-26 20:19:35 +0000451static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
452 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000453 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000454 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000455 auto ResI = Res.begin();
456 for (const InputFile::Symbol &Sym : Input->symbols()) {
457 assert(ResI != Res.end());
458 SymbolResolution Res = *ResI++;
459
Rafael Espindola7775c332016-08-26 20:19:35 +0000460 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000461 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000462 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000463 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000464 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000465 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000466 OS << 'x';
467 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000468 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000469 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000470 assert(ResI == Res.end());
471}
472
473Error LTO::add(std::unique_ptr<InputFile> Input,
474 ArrayRef<SymbolResolution> Res) {
475 assert(!CalledGetMaxTasks);
476
477 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000478 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000479
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000480 const SymbolResolution *ResI = Res.begin();
481 for (InputFile::InputModule &IM : Input->Mods)
482 if (Error Err = addModule(*Input, IM, ResI, Res.end()))
483 return Err;
484
485 assert(ResI == Res.end());
486 return Error::success();
487}
488
489Error LTO::addModule(InputFile &Input, InputFile::InputModule &IM,
490 const SymbolResolution *&ResI,
491 const SymbolResolution *ResE) {
Mehdi Amini9989f802016-08-19 15:35:44 +0000492 // FIXME: move to backend
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000493 Module &M = *IM.Mod;
Davide Italiano2ceb6282016-12-14 21:57:04 +0000494
495 if (M.getDataLayoutStr().empty())
496 return make_error<StringError>("input module has no datalayout",
497 inconvertibleErrorCode());
498
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000499 if (!Conf.OverrideTriple.empty())
500 M.setTargetTriple(Conf.OverrideTriple);
501 else if (M.getTargetTriple().empty())
502 M.setTargetTriple(Conf.DefaultTriple);
503
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000504 Expected<bool> HasThinLTOSummary = IM.BM.hasSummary();
Peter Collingbournecd513a42016-11-11 19:50:24 +0000505 if (!HasThinLTOSummary)
506 return HasThinLTOSummary.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000507
Peter Collingbournecd513a42016-11-11 19:50:24 +0000508 if (*HasThinLTOSummary)
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000509 return addThinLTO(IM.BM, M, Input.module_symbols(IM), ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000510 else
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000511 return addRegularLTO(IM.BM, ResI, ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000512}
513
514// Add a regular LTO object to the link.
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000515Error LTO::addRegularLTO(BitcodeModule BM, const SymbolResolution *&ResI,
516 const SymbolResolution *ResE) {
Mehdi Aminie7494532016-08-23 18:39:12 +0000517 if (!RegularLTO.CombinedModule) {
518 RegularLTO.CombinedModule =
519 llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
520 RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
521 }
Peter Collingbournead903692016-12-13 19:43:49 +0000522 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000523 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
524 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000525 if (!MOrErr)
526 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000527
Peter Collingbournead903692016-12-13 19:43:49 +0000528 Module &M = **MOrErr;
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000529 if (Error Err = M.materializeMetadata())
530 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000531 UpgradeDebugInfo(M);
532
Peter Collingbournead903692016-12-13 19:43:49 +0000533 ModuleSymbolTable SymTab;
534 SymTab.addModule(&M);
535
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000536 SmallPtrSet<GlobalValue *, 8> Used;
537 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
538
539 std::vector<GlobalValue *> Keep;
540
541 for (GlobalVariable &GV : M.globals())
542 if (GV.hasAppendingLinkage())
543 Keep.push_back(&GV);
544
Peter Collingbourne46136262017-02-02 05:22:42 +0000545 DenseSet<GlobalObject *> AliasedGlobals;
546 for (auto &GA : M.aliases())
547 if (GlobalObject *GO = GA.getBaseObject())
548 AliasedGlobals.insert(GO);
549
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000550 for (const InputFile::Symbol &Sym :
Peter Collingbournead903692016-12-13 19:43:49 +0000551 make_range(InputFile::symbol_iterator(SymTab.symbols().begin(), SymTab,
552 nullptr),
553 InputFile::symbol_iterator(SymTab.symbols().end(), SymTab,
554 nullptr))) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000555 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000556 SymbolResolution Res = *ResI++;
Peter Collingbournead903692016-12-13 19:43:49 +0000557 addSymbolToGlobalRes(Used, Sym, Res, 0);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000558
Peter Collingbournec387e702017-02-02 05:12:15 +0000559 if (Sym.isGV()) {
Peter Collingbournead903692016-12-13 19:43:49 +0000560 GlobalValue *GV = Sym.getGV();
Peter Collingbournec387e702017-02-02 05:12:15 +0000561 if (Res.Prevailing) {
562 if (Sym.getFlags() & object::BasicSymbolRef::SF_Undefined)
563 continue;
564 Keep.push_back(GV);
565 switch (GV->getLinkage()) {
566 default:
567 break;
568 case GlobalValue::LinkOnceAnyLinkage:
569 GV->setLinkage(GlobalValue::WeakAnyLinkage);
570 break;
571 case GlobalValue::LinkOnceODRLinkage:
572 GV->setLinkage(GlobalValue::WeakODRLinkage);
573 break;
574 }
Peter Collingbourne46136262017-02-02 05:22:42 +0000575 } else if (isa<GlobalObject>(GV) &&
576 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
577 GV->hasAvailableExternallyLinkage()) &&
578 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
579 // Either of the above three types of linkage indicates that the
580 // chosen prevailing symbol will have the same semantics as this copy of
581 // the symbol, so we can link it with available_externally linkage. We
582 // only need to do this if the symbol is undefined.
Peter Collingbournec387e702017-02-02 05:12:15 +0000583 GlobalValue *CombinedGV =
584 RegularLTO.CombinedModule->getNamedValue(GV->getName());
Peter Collingbourne46136262017-02-02 05:22:42 +0000585 if (!CombinedGV || CombinedGV->isDeclaration()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000586 Keep.push_back(GV);
Peter Collingbourne46136262017-02-02 05:22:42 +0000587 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
588 cast<GlobalObject>(GV)->setComdat(nullptr);
589 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000590 }
591 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000592 // Common resolution: collect the maximum size/alignment over all commons.
593 // We also record if we see an instance of a common as prevailing, so that
594 // if none is prevailing we can ignore it later.
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000595 if (Sym.getFlags() & object::BasicSymbolRef::SF_Common) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000596 // FIXME: We should figure out what to do about commons defined by asm.
597 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbournead903692016-12-13 19:43:49 +0000598 auto &CommonRes = RegularLTO.Commons[Sym.getGV()->getName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000599 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
600 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000601 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000602 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000603
604 // FIXME: use proposed local attribute for FinalDefinitionInLinkageUnit.
605 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000606
Peter Collingbournead903692016-12-13 19:43:49 +0000607 return RegularLTO.Mover->move(std::move(*MOrErr), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000608 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000609 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000610}
611
612// Add a ThinLTO object to the link.
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000613// FIXME: This function should not need to take as many parameters once we have
614// a bitcode symbol table.
615Error LTO::addThinLTO(BitcodeModule BM, Module &M,
616 iterator_range<InputFile::symbol_iterator> Syms,
617 const SymbolResolution *&ResI,
618 const SymbolResolution *ResE) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000619 SmallPtrSet<GlobalValue *, 8> Used;
620 collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
621
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000622 Expected<std::unique_ptr<ModuleSummaryIndex>> SummaryOrErr = BM.getSummary();
623 if (!SummaryOrErr)
624 return SummaryOrErr.takeError();
625 ThinLTO.CombinedIndex.mergeFrom(std::move(*SummaryOrErr),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000626 ThinLTO.ModuleMap.size());
627
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000628 for (const InputFile::Symbol &Sym : Syms) {
629 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000630 SymbolResolution Res = *ResI++;
Peter Collingbournead903692016-12-13 19:43:49 +0000631 addSymbolToGlobalRes(Used, Sym, Res, ThinLTO.ModuleMap.size() + 1);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000632
Peter Collingbournead903692016-12-13 19:43:49 +0000633 if (Res.Prevailing && Sym.isGV())
634 ThinLTO.PrevailingModuleForGUID[Sym.getGV()->getGUID()] =
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000635 BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000636 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000637
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000638 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
639 return make_error<StringError>(
640 "Expected at most one ThinLTO module per bitcode file",
641 inconvertibleErrorCode());
642
Mehdi Amini41af4302016-11-11 04:28:40 +0000643 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000644}
645
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000646unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000647 CalledGetMaxTasks = true;
648 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
649}
650
Peter Collingbourne80186a52016-09-23 21:33:43 +0000651Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000652 // Save the status of having a regularLTO combined module, as
653 // this is needed for generating the ThinLTO Task ID, and
654 // the CombinedModule will be moved at the end of runRegularLTO.
655 bool HasRegularLTO = RegularLTO.CombinedModule != nullptr;
Mehdi Aminie7494532016-08-23 18:39:12 +0000656 // Invoke regular LTO if there was a regular LTO module to start with.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000657 if (HasRegularLTO)
Peter Collingbourne80186a52016-09-23 21:33:43 +0000658 if (auto E = runRegularLTO(AddStream))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000659 return E;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000660 return runThinLTO(AddStream, Cache, HasRegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000661}
662
Peter Collingbourne80186a52016-09-23 21:33:43 +0000663Error LTO::runRegularLTO(AddStreamFn AddStream) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000664 // Make sure commons have the right size/alignment: we kept the largest from
665 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000666 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000667 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000668 if (!I.second.Prevailing)
669 // Don't do anything if no instance of this common was prevailing.
670 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000671 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000672 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000673 // Don't create a new global if the type is already correct, just make
674 // sure the alignment is correct.
675 OldGV->setAlignment(I.second.Align);
676 continue;
677 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000678 ArrayType *Ty =
679 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000680 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
681 GlobalValue::CommonLinkage,
682 ConstantAggregateZero::get(Ty), "");
683 GV->setAlignment(I.second.Align);
684 if (OldGV) {
685 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
686 GV->takeName(OldGV);
687 OldGV->eraseFromParent();
688 } else {
689 GV->setName(I.first);
690 }
691 }
692
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000693 if (Conf.PreOptModuleHook &&
694 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000695 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000696
Mehdi Aminid310b472016-08-22 06:25:41 +0000697 if (!Conf.CodeGenOnly) {
698 for (const auto &R : GlobalResolutions) {
699 if (R.second.IRName.empty())
700 continue;
701 if (R.second.Partition != 0 &&
702 R.second.Partition != GlobalResolution::External)
703 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000704
Mehdi Aminid310b472016-08-22 06:25:41 +0000705 GlobalValue *GV =
706 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
707 // Ignore symbols defined in other partitions.
708 if (!GV || GV->hasLocalLinkage())
709 continue;
710 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
711 : GlobalValue::UnnamedAddr::None);
712 if (R.second.Partition == 0)
713 GV->setLinkage(GlobalValue::InternalLinkage);
714 }
715
716 if (Conf.PostInternalizeModuleHook &&
717 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000718 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000719 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000720 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000721 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000722}
723
724/// This class defines the interface to the ThinLTO backend.
725class lto::ThinBackendProc {
726protected:
727 Config &Conf;
728 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000729 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000730
731public:
732 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000733 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000734 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000735 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
736
737 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000738 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000739 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000740 const FunctionImporter::ImportMapTy &ImportList,
741 const FunctionImporter::ExportSetTy &ExportList,
742 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000743 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000744 virtual Error wait() = 0;
745};
746
Benjamin Kramerffd37152016-11-19 20:44:26 +0000747namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000748class InProcessThinBackend : public ThinBackendProc {
749 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000750 AddStreamFn AddStream;
751 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000752 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000753
754 Optional<Error> Err;
755 std::mutex ErrMu;
756
757public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000758 InProcessThinBackend(
759 Config &Conf, ModuleSummaryIndex &CombinedIndex,
760 unsigned ThinLTOParallelismLevel,
761 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000762 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000763 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
764 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000765 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
766 // Create a mapping from type identifier GUIDs to type identifier summaries.
767 // This allows backends to use the type identifier GUIDs stored in the
768 // function summaries to determine which type identifier summaries affect
769 // each function without needing to compute GUIDs in each backend.
770 for (auto &TId : CombinedIndex.typeIds())
771 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
772 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000773
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000774 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000775 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000776 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000777 const FunctionImporter::ImportMapTy &ImportList,
778 const FunctionImporter::ExportSetTy &ExportList,
779 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
780 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000781 MapVector<StringRef, BitcodeModule> &ModuleMap,
782 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000783 auto RunThinBackend = [&](AddStreamFn AddStream) {
784 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000785 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000786 if (!MOrErr)
787 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000788
Peter Collingbourne80186a52016-09-23 21:33:43 +0000789 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
790 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000791 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000792
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000793 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000794
795 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
796 all_of(CombinedIndex.getModuleHash(ModuleID),
797 [](uint32_t V) { return V == 0; }))
798 // Cache disabled or no entry for this module in the combined index or
799 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000800 return RunThinBackend(AddStream);
801
802 SmallString<40> Key;
803 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000804 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000805 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000806 if (AddStreamFn CacheAddStream = Cache(Task, Key))
807 return RunThinBackend(CacheAddStream);
808
Mehdi Amini41af4302016-11-11 04:28:40 +0000809 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000810 }
811
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000812 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000813 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000814 const FunctionImporter::ImportMapTy &ImportList,
815 const FunctionImporter::ExportSetTy &ExportList,
816 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000817 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
818 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000819 assert(ModuleToDefinedGVSummaries.count(ModulePath));
820 const GVSummaryMapTy &DefinedGlobals =
821 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000822 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000823 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000824 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000825 const FunctionImporter::ExportSetTy &ExportList,
826 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
827 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000828 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000829 MapVector<StringRef, BitcodeModule> &ModuleMap,
830 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000831 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000832 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
833 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000834 if (E) {
835 std::unique_lock<std::mutex> L(ErrMu);
836 if (Err)
837 Err = joinErrors(std::move(*Err), std::move(E));
838 else
839 Err = std::move(E);
840 }
841 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000842 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
843 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
844 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000845 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000846 }
847
848 Error wait() override {
849 BackendThreadPool.wait();
850 if (Err)
851 return std::move(*Err);
852 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000853 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000854 }
855};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000856} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000857
858ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
859 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000860 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000861 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000862 return llvm::make_unique<InProcessThinBackend>(
863 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000864 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000865 };
866}
867
Teresa Johnson3f212b82016-09-21 19:12:05 +0000868// Given the original \p Path to an output file, replace any path
869// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
870// resulting directory if it does not yet exist.
871std::string lto::getThinLTOOutputFile(const std::string &Path,
872 const std::string &OldPrefix,
873 const std::string &NewPrefix) {
874 if (OldPrefix.empty() && NewPrefix.empty())
875 return Path;
876 SmallString<128> NewPath(Path);
877 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
878 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
879 if (!ParentPath.empty()) {
880 // Make sure the new directory exists, creating it if necessary.
881 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
882 llvm::errs() << "warning: could not create directory '" << ParentPath
883 << "': " << EC.message() << '\n';
884 }
885 return NewPath.str();
886}
887
Benjamin Kramerffd37152016-11-19 20:44:26 +0000888namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000889class WriteIndexesThinBackend : public ThinBackendProc {
890 std::string OldPrefix, NewPrefix;
891 bool ShouldEmitImportsFiles;
892
893 std::string LinkedObjectsFileName;
894 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
895
896public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000897 WriteIndexesThinBackend(
898 Config &Conf, ModuleSummaryIndex &CombinedIndex,
899 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
900 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
901 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +0000902 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000903 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
904 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
905 LinkedObjectsFileName(LinkedObjectsFileName) {}
906
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000907 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000908 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000909 const FunctionImporter::ImportMapTy &ImportList,
910 const FunctionImporter::ExportSetTy &ExportList,
911 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000912 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
913 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000914 std::string NewModulePath =
915 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
916
917 std::error_code EC;
918 if (!LinkedObjectsFileName.empty()) {
919 if (!LinkedObjectsFile) {
920 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
921 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
922 if (EC)
923 return errorCodeToError(EC);
924 }
925 *LinkedObjectsFile << NewModulePath << '\n';
926 }
927
928 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
929 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000930 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000931
932 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
933 sys::fs::OpenFlags::F_None);
934 if (EC)
935 return errorCodeToError(EC);
936 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
937
938 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000939 return errorCodeToError(
940 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +0000941 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000942 }
943
Mehdi Amini41af4302016-11-11 04:28:40 +0000944 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000945};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000946} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000947
948ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
949 std::string NewPrefix,
950 bool ShouldEmitImportsFiles,
951 std::string LinkedObjectsFile) {
952 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000953 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000954 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000955 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +0000956 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
957 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000958 };
959}
960
Peter Collingbourne80186a52016-09-23 21:33:43 +0000961Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
962 bool HasRegularLTO) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000963 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +0000964 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000965
966 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +0000967 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000968
969 // Collect for each module the list of function it defines (GUID ->
970 // Summary).
971 StringMap<std::map<GlobalValue::GUID, GlobalValueSummary *>>
972 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
973 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
974 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +0000975 // Create entries for any modules that didn't have any GV summaries
976 // (either they didn't have any GVs to start with, or we suppressed
977 // generation of the summaries because they e.g. had inline assembly
978 // uses that couldn't be promoted/renamed on export). This is so
979 // InProcessThinBackend::start can still launch a backend thread, which
980 // is passed the map of summaries for the module, without any special
981 // handling for this case.
982 for (auto &Mod : ThinLTO.ModuleMap)
983 if (!ModuleToDefinedGVSummaries.count(Mod.first))
984 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000985
986 StringMap<FunctionImporter::ImportMapTy> ImportLists(
987 ThinLTO.ModuleMap.size());
988 StringMap<FunctionImporter::ExportSetTy> ExportLists(
989 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000990 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000991
Teresa Johnson002af9b2016-10-31 22:12:21 +0000992 if (Conf.OptLevel > 0) {
Mehdi Aminif39ce992017-01-20 23:34:12 +0000993 // Compute "dead" symbols, we don't want to import/export these!
994 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
995 for (auto &Res : GlobalResolutions) {
996 if (Res.second.VisibleOutsideThinLTO &&
997 // IRName will be defined if we have seen the prevailing copy of
998 // this value. If not, no need to preserve any ThinLTO copies.
999 !Res.second.IRName.empty())
1000 GUIDPreservedSymbols.insert(GlobalValue::getGUID(Res.second.IRName));
1001 }
1002
1003 auto DeadSymbols =
1004 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
1005
Teresa Johnson002af9b2016-10-31 22:12:21 +00001006 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Teresa Johnson6c475a72017-01-05 21:34:18 +00001007 ImportLists, ExportLists, &DeadSymbols);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001008
1009 std::set<GlobalValue::GUID> ExportedGUIDs;
1010 for (auto &Res : GlobalResolutions) {
Teresa Johnson6c475a72017-01-05 21:34:18 +00001011 // First check if the symbol was flagged as having external references.
1012 if (Res.second.Partition != GlobalResolution::External)
1013 continue;
1014 // IRName will be defined if we have seen the prevailing copy of
1015 // this value. If not, no need to mark as exported from a ThinLTO
1016 // partition (and we can't get the GUID).
1017 if (Res.second.IRName.empty())
1018 continue;
1019 auto GUID = GlobalValue::getGUID(Res.second.IRName);
1020 // Mark exported unless index-based analysis determined it to be dead.
1021 if (!DeadSymbols.count(GUID))
Teresa Johnson002af9b2016-10-31 22:12:21 +00001022 ExportedGUIDs.insert(GlobalValue::getGUID(Res.second.IRName));
1023 }
1024
1025 auto isPrevailing = [&](GlobalValue::GUID GUID,
1026 const GlobalValueSummary *S) {
1027 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1028 };
Mehdi Amini1380edf2017-02-03 07:41:43 +00001029 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
Teresa Johnson002af9b2016-10-31 22:12:21 +00001030 const auto &ExportList = ExportLists.find(ModuleIdentifier);
Mehdi Amini1380edf2017-02-03 07:41:43 +00001031 return (ExportList != ExportLists.end() &&
1032 ExportList->second.count(GUID)) ||
1033 ExportedGUIDs.count(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001034 };
1035 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1036
1037 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1038 GlobalValue::GUID GUID,
1039 GlobalValue::LinkageTypes NewLinkage) {
1040 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1041 };
1042
1043 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1044 recordNewLinkage);
1045 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001046
Peter Collingbourne80186a52016-09-23 21:33:43 +00001047 std::unique_ptr<ThinBackendProc> BackendProc =
1048 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1049 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001050
Davide Italiano63098952017-01-04 20:37:57 +00001051 // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1052 // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1053 // are reserved for parallel code generation partitions.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +00001054 unsigned Task =
1055 HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001056 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001057 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001058 ExportLists[Mod.first],
1059 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001060 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001061 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001062 }
1063
1064 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001065}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001066
1067Expected<std::unique_ptr<tool_output_file>>
1068lto::setupOptimizationRemarks(LLVMContext &Context,
1069 StringRef LTORemarksFilename,
1070 bool LTOPassRemarksWithHotness, int Count) {
1071 if (LTORemarksFilename.empty())
1072 return nullptr;
1073
1074 std::string Filename = LTORemarksFilename;
1075 if (Count != -1)
1076 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1077
1078 std::error_code EC;
1079 auto DiagnosticFile =
1080 llvm::make_unique<tool_output_file>(Filename, EC, sys::fs::F_None);
1081 if (EC)
1082 return errorCodeToError(EC);
1083 Context.setDiagnosticsOutputFile(
1084 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1085 if (LTOPassRemarksWithHotness)
1086 Context.setDiagnosticHotnessRequested(true);
1087 DiagnosticFile->keep();
1088 return std::move(DiagnosticFile);
1089}