blob: 3587c0017c939ddc207250ecd30552749ee694fc [file] [log] [blame]
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001//===-LTO.cpp - LLVM Link Time Optimizer ----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements functions and classes used to support LTO.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/LTO/LTO.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000015#include "llvm/Analysis/TargetLibraryInfo.h"
16#include "llvm/Analysis/TargetTransformInfo.h"
Teresa Johnsonad176792016-11-11 05:34:58 +000017#include "llvm/Bitcode/BitcodeReader.h"
18#include "llvm/Bitcode/BitcodeWriter.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000019#include "llvm/CodeGen/Analysis.h"
20#include "llvm/IR/AutoUpgrade.h"
21#include "llvm/IR/DiagnosticPrinter.h"
22#include "llvm/IR/LegacyPassManager.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000023#include "llvm/IR/Mangler.h"
24#include "llvm/IR/Metadata.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000025#include "llvm/LTO/LTOBackend.h"
26#include "llvm/Linker/IRMover.h"
Peter Collingbourne192d8522017-03-28 23:35:34 +000027#include "llvm/Object/IRObjectFile.h"
Bob Haarmandd4ebc12017-02-02 23:00:49 +000028#include "llvm/Support/Error.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000029#include "llvm/Support/ManagedStatic.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000030#include "llvm/Support/MemoryBuffer.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000031#include "llvm/Support/Path.h"
Mehdi Aminiadc0e262016-08-23 21:30:12 +000032#include "llvm/Support/SHA1.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000033#include "llvm/Support/SourceMgr.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000034#include "llvm/Support/TargetRegistry.h"
35#include "llvm/Support/ThreadPool.h"
Teresa Johnsonec544c52016-10-19 17:35:01 +000036#include "llvm/Support/Threading.h"
Peter Collingbourne942fa562017-04-13 01:26:12 +000037#include "llvm/Support/VCSRevision.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000038#include "llvm/Support/raw_ostream.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000039#include "llvm/Target/TargetMachine.h"
40#include "llvm/Target/TargetOptions.h"
41#include "llvm/Transforms/IPO.h"
42#include "llvm/Transforms/IPO/PassManagerBuilder.h"
43#include "llvm/Transforms/Utils/SplitModule.h"
Teresa Johnsondf6edc52016-05-23 22:54:06 +000044
Teresa Johnson9ba95f92016-08-11 14:58:12 +000045#include <set>
46
47using namespace llvm;
48using namespace lto;
49using namespace object;
Teresa Johnsondf6edc52016-05-23 22:54:06 +000050
Mehdi Aminiadc0e262016-08-23 21:30:12 +000051#define DEBUG_TYPE "lto"
52
Peter Collingbourne780a4dd2017-03-10 21:35:17 +000053// The values are (type identifier, summary) pairs.
54typedef DenseMap<
55 GlobalValue::GUID,
56 TinyPtrVector<const std::pair<const std::string, TypeIdSummary> *>>
57 TypeIdSummariesByGuidTy;
58
Mehdi Aminiadc0e262016-08-23 21:30:12 +000059// Returns a unique hash for the Module considering the current list of
60// export/import and other global analysis results.
61// The hash is produced in \p Key.
62static void computeCacheKey(
Peter Collingbournef4257522016-12-08 05:28:30 +000063 SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index,
64 StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +000065 const FunctionImporter::ExportSetTy &ExportList,
66 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +000067 const GVSummaryMapTy &DefinedGlobals,
68 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +000069 // Compute the unique hash for this entry.
70 // This is based on the current compiler version, the module itself, the
71 // export list, the hash for every single module in the import list, the
72 // list of ResolvedODR for the module, and the list of preserved symbols.
73 SHA1 Hasher;
74
75 // Start with the compiler revision
76 Hasher.update(LLVM_VERSION_STRING);
Peter Collingbourne942fa562017-04-13 01:26:12 +000077#ifdef LLVM_REVISION
Mehdi Aminiadc0e262016-08-23 21:30:12 +000078 Hasher.update(LLVM_REVISION);
79#endif
80
Peter Collingbournef4257522016-12-08 05:28:30 +000081 // Include the parts of the LTO configuration that affect code generation.
82 auto AddString = [&](StringRef Str) {
83 Hasher.update(Str);
84 Hasher.update(ArrayRef<uint8_t>{0});
85 };
86 auto AddUnsigned = [&](unsigned I) {
87 uint8_t Data[4];
88 Data[0] = I;
89 Data[1] = I >> 8;
90 Data[2] = I >> 16;
91 Data[3] = I >> 24;
92 Hasher.update(ArrayRef<uint8_t>{Data, 4});
93 };
Peter Collingbourne54a52b72017-03-03 20:25:30 +000094 auto AddUint64 = [&](uint64_t I) {
95 uint8_t Data[8];
96 Data[0] = I;
97 Data[1] = I >> 8;
98 Data[2] = I >> 16;
99 Data[3] = I >> 24;
100 Data[4] = I >> 32;
101 Data[5] = I >> 40;
102 Data[6] = I >> 48;
103 Data[7] = I >> 56;
104 Hasher.update(ArrayRef<uint8_t>{Data, 8});
105 };
Peter Collingbournef4257522016-12-08 05:28:30 +0000106 AddString(Conf.CPU);
107 // FIXME: Hash more of Options. For now all clients initialize Options from
108 // command-line flags (which is unsupported in production), but may set
109 // RelaxELFRelocations. The clang driver can also pass FunctionSections,
110 // DataSections and DebuggerTuning via command line flags.
111 AddUnsigned(Conf.Options.RelaxELFRelocations);
112 AddUnsigned(Conf.Options.FunctionSections);
113 AddUnsigned(Conf.Options.DataSections);
114 AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
115 for (auto &A : Conf.MAttrs)
116 AddString(A);
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000117 if (Conf.RelocModel)
118 AddUnsigned(*Conf.RelocModel);
119 else
120 AddUnsigned(-1);
Peter Collingbournef4257522016-12-08 05:28:30 +0000121 AddUnsigned(Conf.CodeModel);
122 AddUnsigned(Conf.CGOptLevel);
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000123 AddUnsigned(Conf.CGFileType);
Peter Collingbournef4257522016-12-08 05:28:30 +0000124 AddUnsigned(Conf.OptLevel);
Tim Shen4e912aa2017-06-01 23:13:44 +0000125 AddUnsigned(Conf.UseNewPM);
Peter Collingbournef4257522016-12-08 05:28:30 +0000126 AddString(Conf.OptPipeline);
127 AddString(Conf.AAPipeline);
128 AddString(Conf.OverrideTriple);
129 AddString(Conf.DefaultTriple);
130
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000131 // Include the hash for the current module
132 auto ModHash = Index.getModuleHash(ModuleID);
133 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
134 for (auto F : ExportList)
135 // The export list can impact the internalization, be conservative here
136 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
137
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000138 // Include the hash for every module we import functions from. The set of
139 // imported symbols for each module may affect code generation and is
140 // sensitive to link order, so include that as well.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000141 for (auto &Entry : ImportList) {
142 auto ModHash = Index.getModuleHash(Entry.first());
143 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000144
145 AddUint64(Entry.second.size());
146 for (auto &Fn : Entry.second)
147 AddUint64(Fn.first);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000148 }
149
150 // Include the hash for the resolved ODR.
151 for (auto &Entry : ResolvedODR) {
152 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
153 sizeof(GlobalValue::GUID)));
154 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
155 sizeof(GlobalValue::LinkageTypes)));
156 }
157
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000158 std::set<GlobalValue::GUID> UsedTypeIds;
159
160 auto AddUsedTypeIds = [&](GlobalValueSummary *GS) {
161 auto *FS = dyn_cast_or_null<FunctionSummary>(GS);
162 if (!FS)
163 return;
164 for (auto &TT : FS->type_tests())
165 UsedTypeIds.insert(TT);
166 for (auto &TT : FS->type_test_assume_vcalls())
167 UsedTypeIds.insert(TT.GUID);
168 for (auto &TT : FS->type_checked_load_vcalls())
169 UsedTypeIds.insert(TT.GUID);
170 for (auto &TT : FS->type_test_assume_const_vcalls())
171 UsedTypeIds.insert(TT.VFunc.GUID);
172 for (auto &TT : FS->type_checked_load_const_vcalls())
173 UsedTypeIds.insert(TT.VFunc.GUID);
174 };
175
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000176 // Include the hash for the linkage type to reflect internalization and weak
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000177 // resolution, and collect any used type identifier resolutions.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000178 for (auto &GS : DefinedGlobals) {
179 GlobalValue::LinkageTypes Linkage = GS.second->linkage();
180 Hasher.update(
181 ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000182 AddUsedTypeIds(GS.second);
183 }
184
185 // Imported functions may introduce new uses of type identifier resolutions,
186 // so we need to collect their used resolutions as well.
187 for (auto &ImpM : ImportList)
188 for (auto &ImpF : ImpM.second)
189 AddUsedTypeIds(Index.findSummaryInModule(ImpF.first, ImpM.first()));
190
191 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
192 AddString(TId);
193
194 AddUnsigned(S.TTRes.TheKind);
195 AddUnsigned(S.TTRes.SizeM1BitWidth);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000196
197 AddUint64(S.WPDRes.size());
198 for (auto &WPD : S.WPDRes) {
199 AddUnsigned(WPD.first);
200 AddUnsigned(WPD.second.TheKind);
201 AddString(WPD.second.SingleImplName);
202
203 AddUint64(WPD.second.ResByArg.size());
204 for (auto &ByArg : WPD.second.ResByArg) {
205 AddUint64(ByArg.first.size());
206 for (uint64_t Arg : ByArg.first)
207 AddUint64(Arg);
208 AddUnsigned(ByArg.second.TheKind);
209 AddUint64(ByArg.second.Info);
210 }
211 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000212 };
213
214 // Include the hash for all type identifiers used by this module.
215 for (GlobalValue::GUID TId : UsedTypeIds) {
216 auto SummariesI = TypeIdSummariesByGuid.find(TId);
217 if (SummariesI != TypeIdSummariesByGuid.end())
218 for (auto *Summary : SummariesI->second)
219 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000220 }
221
Dehao Chen27978002016-12-16 16:48:46 +0000222 if (!Conf.SampleProfile.empty()) {
223 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
224 if (FileOrErr)
225 Hasher.update(FileOrErr.get()->getBuffer());
226 }
227
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000228 Key = toHex(Hasher.result());
229}
230
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000231static void thinLTOResolveWeakForLinkerGUID(
232 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
233 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000234 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000235 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000236 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000237 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000238 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000239 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
240 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
241 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000242 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000243 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000244 // This is both a compile-time optimization and a correctness
245 // transformation. This is necessary for correctness when we have exported
246 // a reference - we need to convert the linkonce to weak to
247 // ensure a copy is kept to satisfy the exported reference.
248 // FIXME: We may want to split the compile time and correctness
249 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000250 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000251 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
252 S->setLinkage(GlobalValue::getWeakLinkage(
253 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000254 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000255 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000256 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000257 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000258 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
259 if (S->linkage() != OriginalLinkage)
260 recordNewLinkage(S->modulePath(), GUID, S->linkage());
261 }
262}
263
264// Resolve Weak and LinkOnce values in the \p Index.
265//
266// We'd like to drop these functions if they are no longer referenced in the
267// current module. However there is a chance that another module is still
268// referencing them because of the import. We make sure we always emit at least
269// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000270void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000271 ModuleSummaryIndex &Index,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000272 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000273 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000274 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000275 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000276 // We won't optimize the globals that are referenced by an alias for now
277 // Ideally we should turn the alias into a global and duplicate the definition
278 // when needed.
279 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
280 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000281 for (auto &S : I.second.SummaryList)
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000282 if (auto AS = dyn_cast<AliasSummary>(S.get()))
283 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
284
285 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000286 thinLTOResolveWeakForLinkerGUID(I.second.SummaryList, I.first,
287 GlobalInvolvedWithAlias, isPrevailing,
288 recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000289}
290
291static void thinLTOInternalizeAndPromoteGUID(
292 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000293 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000294 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000295 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000296 if (GlobalValue::isLocalLinkage(S->linkage()))
297 S->setLinkage(GlobalValue::ExternalLinkage);
298 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
299 S->setLinkage(GlobalValue::InternalLinkage);
300 }
301}
302
303// Update the linkages in the given \p Index to mark exported values
304// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000305void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000306 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000307 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000308 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000309 thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000310}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000311
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000312// Requires a destructor for std::vector<InputModule>.
313InputFile::~InputFile() = default;
314
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000315Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
316 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000317
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000318 Expected<IRSymtabFile> FOrErr = readIRSymtab(Object);
319 if (!FOrErr)
320 return FOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000321
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000322 File->TargetTriple = FOrErr->TheReader.getTargetTriple();
323 File->SourceFileName = FOrErr->TheReader.getSourceFileName();
324 File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts();
325 File->ComdatTable = FOrErr->TheReader.getComdatTable();
Peter Collingbournead903692016-12-13 19:43:49 +0000326
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000327 for (unsigned I = 0; I != FOrErr->Mods.size(); ++I) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000328 size_t Begin = File->Symbols.size();
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000329 for (const irsymtab::Reader::SymbolRef &Sym :
330 FOrErr->TheReader.module_symbols(I))
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000331 // Skip symbols that are irrelevant to LTO. Note that this condition needs
332 // to match the one in Skip() in LTO::addRegularLTO().
333 if (Sym.isGlobal() && !Sym.isFormatSpecific())
334 File->Symbols.push_back(Sym);
335 File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
Rafael Espindola79121102016-10-25 12:02:03 +0000336 }
337
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000338 File->Mods = FOrErr->Mods;
339 File->Strtab = std::move(FOrErr->Strtab);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000340 return std::move(File);
341}
342
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000343StringRef InputFile::getName() const {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000344 return Mods[0].getModuleIdentifier();
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000345}
346
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000347LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
348 Config &Conf)
349 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Mehdi Aminie7494532016-08-23 18:39:12 +0000350 Ctx(Conf) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000351
352LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) : Backend(Backend) {
353 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000354 this->Backend =
355 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000356}
357
358LTO::LTO(Config Conf, ThinBackend Backend,
359 unsigned ParallelCodeGenParallelismLevel)
360 : Conf(std::move(Conf)),
361 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000362 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000363
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000364// Requires a destructor for MapVector<BitcodeModule>.
365LTO::~LTO() = default;
366
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000367// Add the symbols in the given module to the GlobalResolutions map, and resolve
368// their partitions.
369void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
370 ArrayRef<SymbolResolution> Res,
371 unsigned Partition, bool InSummary) {
372 auto *ResI = Res.begin();
373 auto *ResE = Res.end();
Peter Collingbourne7e85b262017-06-15 17:41:32 +0000374 (void)ResE;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000375 for (const InputFile::Symbol &Sym : Syms) {
376 assert(ResI != ResE);
377 SymbolResolution Res = *ResI++;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000378
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000379 auto &GlobalRes = GlobalResolutions[Sym.getName()];
380 GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
381 if (Res.Prevailing)
382 GlobalRes.IRName = Sym.getIRName();
Teresa Johnson6c475a72017-01-05 21:34:18 +0000383
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000384 // Set the partition to external if we know it is re-defined by the linker
385 // with -defsym or -wrap options, used elsewhere, e.g. it is visible to a
386 // regular object, is referenced from llvm.compiler_used, or was already
387 // recorded as being referenced from a different partition.
388 if (Res.LinkerRedefined || Res.VisibleToRegularObj || Sym.isUsed() ||
389 (GlobalRes.Partition != GlobalResolution::Unknown &&
390 GlobalRes.Partition != Partition)) {
391 GlobalRes.Partition = GlobalResolution::External;
392 } else
393 // First recorded reference, save the current partition.
394 GlobalRes.Partition = Partition;
395
396 // Flag as visible outside of summary if visible from a regular object or
397 // from a module that does not have a summary.
398 GlobalRes.VisibleOutsideSummary |=
399 (Res.VisibleToRegularObj || Sym.isUsed() || !InSummary);
400 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000401}
402
Rafael Espindola7775c332016-08-26 20:19:35 +0000403static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
404 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000405 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000406 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000407 auto ResI = Res.begin();
408 for (const InputFile::Symbol &Sym : Input->symbols()) {
409 assert(ResI != Res.end());
410 SymbolResolution Res = *ResI++;
411
Rafael Espindola7775c332016-08-26 20:19:35 +0000412 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000413 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000414 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000415 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000416 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000417 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000418 OS << 'x';
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000419 if (Res.LinkerRedefined)
420 OS << 'r';
Rafael Espindola7775c332016-08-26 20:19:35 +0000421 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000422 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000423 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000424 assert(ResI == Res.end());
425}
426
427Error LTO::add(std::unique_ptr<InputFile> Input,
428 ArrayRef<SymbolResolution> Res) {
429 assert(!CalledGetMaxTasks);
430
431 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000432 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000433
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000434 const SymbolResolution *ResI = Res.begin();
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000435 for (unsigned I = 0; I != Input->Mods.size(); ++I)
436 if (Error Err = addModule(*Input, I, ResI, Res.end()))
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000437 return Err;
438
439 assert(ResI == Res.end());
440 return Error::success();
441}
442
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000443Error LTO::addModule(InputFile &Input, unsigned ModI,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000444 const SymbolResolution *&ResI,
445 const SymbolResolution *ResE) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000446 Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo();
447 if (!LTOInfo)
448 return LTOInfo.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000449
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000450 BitcodeModule BM = Input.Mods[ModI];
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000451 auto ModSyms = Input.module_symbols(ModI);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000452 addModuleToGlobalRes(ModSyms, {ResI, ResE},
453 LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0,
454 LTOInfo->HasSummary);
455
456 if (LTOInfo->IsThinLTO)
457 return addThinLTO(BM, ModSyms, ResI, ResE);
458
459 Expected<RegularLTOState::AddedModule> ModOrErr =
460 addRegularLTO(BM, ModSyms, ResI, ResE);
461 if (!ModOrErr)
462 return ModOrErr.takeError();
463
464 if (!LTOInfo->HasSummary)
465 return linkRegularLTO(std::move(*ModOrErr), /*LivenessFromIndex=*/false);
466
467 // Regular LTO module summaries are added to a dummy module that represents
468 // the combined regular LTO module.
469 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
470 return Err;
471 RegularLTO.ModsWithSummaries.push_back(std::move(*ModOrErr));
472 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000473}
474
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000475// Checks whether the given global value is in a non-prevailing comdat
476// (comdat containing values the linker indicated were not prevailing,
477// which we then dropped to available_externally), and if so, removes
478// it from the comdat. This is called for all global values to ensure the
479// comdat is empty rather than leaving an incomplete comdat. It is needed for
480// regular LTO modules, in case we are in a mixed-LTO mode (both regular
481// and thin LTO modules) compilation. Since the regular LTO module will be
482// linked first in the final native link, we want to make sure the linker
483// doesn't select any of these incomplete comdats that would be left
484// in the regular LTO module without this cleanup.
485static void
486handleNonPrevailingComdat(GlobalValue &GV,
487 std::set<const Comdat *> &NonPrevailingComdats) {
488 Comdat *C = GV.getComdat();
489 if (!C)
490 return;
491
492 if (!NonPrevailingComdats.count(C))
493 return;
494
495 // Additionally need to drop externally visible global values from the comdat
496 // to available_externally, so that there aren't multiply defined linker
497 // errors.
498 if (!GV.hasLocalLinkage())
499 GV.setLinkage(GlobalValue::AvailableExternallyLinkage);
500
501 if (auto GO = dyn_cast<GlobalObject>(&GV))
502 GO->setComdat(nullptr);
503}
504
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000505// Add a regular LTO object to the link.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000506// The resulting module needs to be linked into the combined LTO module with
507// linkRegularLTO.
508Expected<LTO::RegularLTOState::AddedModule>
509LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
510 const SymbolResolution *&ResI,
511 const SymbolResolution *ResE) {
512 RegularLTOState::AddedModule Mod;
Peter Collingbournead903692016-12-13 19:43:49 +0000513 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000514 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
515 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000516 if (!MOrErr)
517 return MOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000518 Module &M = **MOrErr;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000519 Mod.M = std::move(*MOrErr);
520
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000521 if (Error Err = M.materializeMetadata())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000522 return std::move(Err);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000523 UpgradeDebugInfo(M);
524
Peter Collingbournead903692016-12-13 19:43:49 +0000525 ModuleSymbolTable SymTab;
526 SymTab.addModule(&M);
527
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000528 for (GlobalVariable &GV : M.globals())
529 if (GV.hasAppendingLinkage())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000530 Mod.Keep.push_back(&GV);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000531
Peter Collingbourne46136262017-02-02 05:22:42 +0000532 DenseSet<GlobalObject *> AliasedGlobals;
533 for (auto &GA : M.aliases())
534 if (GlobalObject *GO = GA.getBaseObject())
535 AliasedGlobals.insert(GO);
536
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000537 // In this function we need IR GlobalValues matching the symbols in Syms
538 // (which is not backed by a module), so we need to enumerate them in the same
539 // order. The symbol enumeration order of a ModuleSymbolTable intentionally
540 // matches the order of an irsymtab, but when we read the irsymtab in
541 // InputFile::create we omit some symbols that are irrelevant to LTO. The
542 // Skip() function skips the same symbols from the module as InputFile does
543 // from the symbol table.
544 auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
545 auto Skip = [&]() {
546 while (MsymI != MsymE) {
547 auto Flags = SymTab.getSymbolFlags(*MsymI);
548 if ((Flags & object::BasicSymbolRef::SF_Global) &&
549 !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
550 return;
551 ++MsymI;
552 }
553 };
554 Skip();
555
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000556 std::set<const Comdat *> NonPrevailingComdats;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000557 for (const InputFile::Symbol &Sym : Syms) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000558 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000559 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000560
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000561 assert(MsymI != MsymE);
562 ModuleSymbolTable::Symbol Msym = *MsymI++;
563 Skip();
564
565 if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000566 if (Res.Prevailing) {
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000567 if (Sym.isUndefined())
Peter Collingbournec387e702017-02-02 05:12:15 +0000568 continue;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000569 Mod.Keep.push_back(GV);
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000570 // For symbols re-defined with linker -wrap and -defsym options,
571 // set the linkage to weak to inhibit IPO. The linkage will be
572 // restored by the linker.
573 if (Res.LinkerRedefined)
574 GV->setLinkage(GlobalValue::WeakAnyLinkage);
575
Davide Italianod4db1162017-05-26 21:56:14 +0000576 GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage();
577 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
578 GV->setLinkage(GlobalValue::getWeakLinkage(
579 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Peter Collingbourne46136262017-02-02 05:22:42 +0000580 } else if (isa<GlobalObject>(GV) &&
581 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
582 GV->hasAvailableExternallyLinkage()) &&
583 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000584 // Any of the above three types of linkage indicates that the
Peter Collingbourne46136262017-02-02 05:22:42 +0000585 // chosen prevailing symbol will have the same semantics as this copy of
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000586 // the symbol, so we may be able to link it with available_externally
587 // linkage. We will decide later whether to do that when we link this
588 // module (in linkRegularLTO), based on whether it is undefined.
589 Mod.Keep.push_back(GV);
590 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000591 if (GV->hasComdat())
592 NonPrevailingComdats.insert(GV->getComdat());
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000593 cast<GlobalObject>(GV)->setComdat(nullptr);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000594 }
595 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000596 // Common resolution: collect the maximum size/alignment over all commons.
597 // We also record if we see an instance of a common as prevailing, so that
598 // if none is prevailing we can ignore it later.
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000599 if (Sym.isCommon()) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000600 // FIXME: We should figure out what to do about commons defined by asm.
601 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000602 auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000603 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
604 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000605 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000606 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000607
608 // FIXME: use proposed local attribute for FinalDefinitionInLinkageUnit.
609 }
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000610 if (!M.getComdatSymbolTable().empty())
611 for (GlobalValue &GV : M.global_values())
612 handleNonPrevailingComdat(GV, NonPrevailingComdats);
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000613 assert(MsymI == MsymE);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000614 return std::move(Mod);
615}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000616
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000617Error LTO::linkRegularLTO(RegularLTOState::AddedModule Mod,
618 bool LivenessFromIndex) {
619 if (!RegularLTO.CombinedModule) {
620 RegularLTO.CombinedModule =
621 llvm::make_unique<Module>("ld-temp.o", RegularLTO.Ctx);
622 RegularLTO.Mover = llvm::make_unique<IRMover>(*RegularLTO.CombinedModule);
623 }
624
625 std::vector<GlobalValue *> Keep;
626 for (GlobalValue *GV : Mod.Keep) {
627 if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID()))
628 continue;
629
630 if (!GV->hasAvailableExternallyLinkage()) {
631 Keep.push_back(GV);
632 continue;
633 }
634
635 // Only link available_externally definitions if we don't already have a
636 // definition.
637 GlobalValue *CombinedGV =
638 RegularLTO.CombinedModule->getNamedValue(GV->getName());
639 if (CombinedGV && !CombinedGV->isDeclaration())
640 continue;
641
642 Keep.push_back(GV);
643 }
644
645 return RegularLTO.Mover->move(std::move(Mod.M), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000646 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000647 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000648}
649
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000650// Add a ThinLTO module to the link.
651Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000652 const SymbolResolution *&ResI,
653 const SymbolResolution *ResE) {
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000654 if (Error Err =
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000655 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
656 ThinLTO.ModuleMap.size()))
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000657 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000658
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000659 for (const InputFile::Symbol &Sym : Syms) {
660 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000661 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000662
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000663 if (Res.Prevailing) {
664 if (!Sym.getIRName().empty()) {
665 auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
666 Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
667 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
668 }
669 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000670 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000671
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000672 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
673 return make_error<StringError>(
674 "Expected at most one ThinLTO module per bitcode file",
675 inconvertibleErrorCode());
676
Mehdi Amini41af4302016-11-11 04:28:40 +0000677 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000678}
679
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000680unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000681 CalledGetMaxTasks = true;
682 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
683}
684
Peter Collingbourne80186a52016-09-23 21:33:43 +0000685Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000686 // Compute "dead" symbols, we don't want to import/export these!
687 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
688 for (auto &Res : GlobalResolutions) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000689 if (Res.second.VisibleOutsideSummary &&
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000690 // IRName will be defined if we have seen the prevailing copy of
691 // this value. If not, no need to preserve any ThinLTO copies.
692 !Res.second.IRName.empty())
693 GUIDPreservedSymbols.insert(GlobalValue::getGUID(
694 GlobalValue::dropLLVMManglingEscape(Res.second.IRName)));
695 }
696
697 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
698
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000699 // Save the status of having a regularLTO combined module, as
700 // this is needed for generating the ThinLTO Task ID, and
701 // the CombinedModule will be moved at the end of runRegularLTO.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000702 bool HasRegularLTO = RegularLTO.CombinedModule != nullptr ||
703 !RegularLTO.ModsWithSummaries.empty();
Mehdi Aminie7494532016-08-23 18:39:12 +0000704 // Invoke regular LTO if there was a regular LTO module to start with.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +0000705 if (HasRegularLTO)
Peter Collingbourne80186a52016-09-23 21:33:43 +0000706 if (auto E = runRegularLTO(AddStream))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000707 return E;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000708 return runThinLTO(AddStream, Cache, HasRegularLTO);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000709}
710
Peter Collingbourne80186a52016-09-23 21:33:43 +0000711Error LTO::runRegularLTO(AddStreamFn AddStream) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000712 for (auto &M : RegularLTO.ModsWithSummaries)
713 if (Error Err = linkRegularLTO(std::move(M),
714 /*LivenessFromIndex=*/true))
715 return Err;
716
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000717 // Make sure commons have the right size/alignment: we kept the largest from
718 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000719 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000720 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000721 if (!I.second.Prevailing)
722 // Don't do anything if no instance of this common was prevailing.
723 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000724 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000725 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000726 // Don't create a new global if the type is already correct, just make
727 // sure the alignment is correct.
728 OldGV->setAlignment(I.second.Align);
729 continue;
730 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000731 ArrayType *Ty =
732 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000733 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
734 GlobalValue::CommonLinkage,
735 ConstantAggregateZero::get(Ty), "");
736 GV->setAlignment(I.second.Align);
737 if (OldGV) {
738 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
739 GV->takeName(OldGV);
740 OldGV->eraseFromParent();
741 } else {
742 GV->setName(I.first);
743 }
744 }
745
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000746 if (Conf.PreOptModuleHook &&
747 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000748 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000749
Mehdi Aminid310b472016-08-22 06:25:41 +0000750 if (!Conf.CodeGenOnly) {
751 for (const auto &R : GlobalResolutions) {
752 if (R.second.IRName.empty())
753 continue;
754 if (R.second.Partition != 0 &&
755 R.second.Partition != GlobalResolution::External)
756 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000757
Mehdi Aminid310b472016-08-22 06:25:41 +0000758 GlobalValue *GV =
759 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
760 // Ignore symbols defined in other partitions.
761 if (!GV || GV->hasLocalLinkage())
762 continue;
763 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
764 : GlobalValue::UnnamedAddr::None);
765 if (R.second.Partition == 0)
766 GV->setLinkage(GlobalValue::InternalLinkage);
767 }
768
769 if (Conf.PostInternalizeModuleHook &&
770 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000771 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000772 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000773 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000774 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000775}
776
777/// This class defines the interface to the ThinLTO backend.
778class lto::ThinBackendProc {
779protected:
780 Config &Conf;
781 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000782 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000783
784public:
785 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000786 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000787 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000788 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
789
790 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000791 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000792 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000793 const FunctionImporter::ImportMapTy &ImportList,
794 const FunctionImporter::ExportSetTy &ExportList,
795 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000796 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000797 virtual Error wait() = 0;
798};
799
Benjamin Kramerffd37152016-11-19 20:44:26 +0000800namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000801class InProcessThinBackend : public ThinBackendProc {
802 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000803 AddStreamFn AddStream;
804 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000805 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000806
807 Optional<Error> Err;
808 std::mutex ErrMu;
809
810public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000811 InProcessThinBackend(
812 Config &Conf, ModuleSummaryIndex &CombinedIndex,
813 unsigned ThinLTOParallelismLevel,
814 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000815 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000816 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
817 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000818 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
819 // Create a mapping from type identifier GUIDs to type identifier summaries.
820 // This allows backends to use the type identifier GUIDs stored in the
821 // function summaries to determine which type identifier summaries affect
822 // each function without needing to compute GUIDs in each backend.
823 for (auto &TId : CombinedIndex.typeIds())
824 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
825 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000826
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000827 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000828 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000829 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000830 const FunctionImporter::ImportMapTy &ImportList,
831 const FunctionImporter::ExportSetTy &ExportList,
832 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
833 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000834 MapVector<StringRef, BitcodeModule> &ModuleMap,
835 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000836 auto RunThinBackend = [&](AddStreamFn AddStream) {
837 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000838 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000839 if (!MOrErr)
840 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000841
Peter Collingbourne80186a52016-09-23 21:33:43 +0000842 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
843 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000844 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000845
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000846 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000847
848 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
849 all_of(CombinedIndex.getModuleHash(ModuleID),
850 [](uint32_t V) { return V == 0; }))
851 // Cache disabled or no entry for this module in the combined index or
852 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000853 return RunThinBackend(AddStream);
854
855 SmallString<40> Key;
856 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000857 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000858 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000859 if (AddStreamFn CacheAddStream = Cache(Task, Key))
860 return RunThinBackend(CacheAddStream);
861
Mehdi Amini41af4302016-11-11 04:28:40 +0000862 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000863 }
864
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000865 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000866 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000867 const FunctionImporter::ImportMapTy &ImportList,
868 const FunctionImporter::ExportSetTy &ExportList,
869 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000870 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
871 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000872 assert(ModuleToDefinedGVSummaries.count(ModulePath));
873 const GVSummaryMapTy &DefinedGlobals =
874 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000875 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000876 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000877 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000878 const FunctionImporter::ExportSetTy &ExportList,
879 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
880 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000881 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000882 MapVector<StringRef, BitcodeModule> &ModuleMap,
883 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000884 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000885 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
886 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000887 if (E) {
888 std::unique_lock<std::mutex> L(ErrMu);
889 if (Err)
890 Err = joinErrors(std::move(*Err), std::move(E));
891 else
892 Err = std::move(E);
893 }
894 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000895 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
896 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
897 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000898 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000899 }
900
901 Error wait() override {
902 BackendThreadPool.wait();
903 if (Err)
904 return std::move(*Err);
905 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000906 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000907 }
908};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000909} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000910
911ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
912 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000913 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000914 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000915 return llvm::make_unique<InProcessThinBackend>(
916 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000917 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000918 };
919}
920
Teresa Johnson3f212b82016-09-21 19:12:05 +0000921// Given the original \p Path to an output file, replace any path
922// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
923// resulting directory if it does not yet exist.
924std::string lto::getThinLTOOutputFile(const std::string &Path,
925 const std::string &OldPrefix,
926 const std::string &NewPrefix) {
927 if (OldPrefix.empty() && NewPrefix.empty())
928 return Path;
929 SmallString<128> NewPath(Path);
930 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
931 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
932 if (!ParentPath.empty()) {
933 // Make sure the new directory exists, creating it if necessary.
934 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
935 llvm::errs() << "warning: could not create directory '" << ParentPath
936 << "': " << EC.message() << '\n';
937 }
938 return NewPath.str();
939}
940
Benjamin Kramerffd37152016-11-19 20:44:26 +0000941namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000942class WriteIndexesThinBackend : public ThinBackendProc {
943 std::string OldPrefix, NewPrefix;
944 bool ShouldEmitImportsFiles;
945
946 std::string LinkedObjectsFileName;
947 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
948
949public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000950 WriteIndexesThinBackend(
951 Config &Conf, ModuleSummaryIndex &CombinedIndex,
952 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
953 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
954 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +0000955 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000956 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
957 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
958 LinkedObjectsFileName(LinkedObjectsFileName) {}
959
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000960 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000961 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000962 const FunctionImporter::ImportMapTy &ImportList,
963 const FunctionImporter::ExportSetTy &ExportList,
964 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000965 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
966 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000967 std::string NewModulePath =
968 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
969
970 std::error_code EC;
971 if (!LinkedObjectsFileName.empty()) {
972 if (!LinkedObjectsFile) {
973 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
974 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
975 if (EC)
976 return errorCodeToError(EC);
977 }
978 *LinkedObjectsFile << NewModulePath << '\n';
979 }
980
981 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
982 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000983 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000984
985 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
986 sys::fs::OpenFlags::F_None);
987 if (EC)
988 return errorCodeToError(EC);
989 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
990
991 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +0000992 return errorCodeToError(
993 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +0000994 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000995 }
996
Mehdi Amini41af4302016-11-11 04:28:40 +0000997 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000998};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000999} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001000
1001ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
1002 std::string NewPrefix,
1003 bool ShouldEmitImportsFiles,
1004 std::string LinkedObjectsFile) {
1005 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +00001006 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +00001007 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001008 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +00001009 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
1010 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001011 };
1012}
1013
Peter Collingbourne80186a52016-09-23 21:33:43 +00001014Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache,
1015 bool HasRegularLTO) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001016 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +00001017 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001018
1019 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +00001020 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001021
1022 // Collect for each module the list of function it defines (GUID ->
1023 // Summary).
1024 StringMap<std::map<GlobalValue::GUID, GlobalValueSummary *>>
1025 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
1026 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
1027 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +00001028 // Create entries for any modules that didn't have any GV summaries
1029 // (either they didn't have any GVs to start with, or we suppressed
1030 // generation of the summaries because they e.g. had inline assembly
1031 // uses that couldn't be promoted/renamed on export). This is so
1032 // InProcessThinBackend::start can still launch a backend thread, which
1033 // is passed the map of summaries for the module, without any special
1034 // handling for this case.
1035 for (auto &Mod : ThinLTO.ModuleMap)
1036 if (!ModuleToDefinedGVSummaries.count(Mod.first))
1037 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001038
1039 StringMap<FunctionImporter::ImportMapTy> ImportLists(
1040 ThinLTO.ModuleMap.size());
1041 StringMap<FunctionImporter::ExportSetTy> ExportLists(
1042 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001043 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001044
Teresa Johnson002af9b2016-10-31 22:12:21 +00001045 if (Conf.OptLevel > 0) {
1046 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +00001047 ImportLists, ExportLists);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001048
1049 std::set<GlobalValue::GUID> ExportedGUIDs;
1050 for (auto &Res : GlobalResolutions) {
Teresa Johnson6c475a72017-01-05 21:34:18 +00001051 // First check if the symbol was flagged as having external references.
1052 if (Res.second.Partition != GlobalResolution::External)
1053 continue;
1054 // IRName will be defined if we have seen the prevailing copy of
1055 // this value. If not, no need to mark as exported from a ThinLTO
1056 // partition (and we can't get the GUID).
1057 if (Res.second.IRName.empty())
1058 continue;
Bob Haarmand6aea712017-03-31 21:56:30 +00001059 auto GUID = GlobalValue::getGUID(
Peter Collingbourne6f0ecca2017-05-16 00:39:01 +00001060 GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
Teresa Johnson6c475a72017-01-05 21:34:18 +00001061 // Mark exported unless index-based analysis determined it to be dead.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +00001062 if (ThinLTO.CombinedIndex.isGUIDLive(GUID))
Bob Haarmand6aea712017-03-31 21:56:30 +00001063 ExportedGUIDs.insert(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001064 }
1065
Mehdi Amini1380edf2017-02-03 07:41:43 +00001066 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
Teresa Johnson002af9b2016-10-31 22:12:21 +00001067 const auto &ExportList = ExportLists.find(ModuleIdentifier);
Mehdi Amini1380edf2017-02-03 07:41:43 +00001068 return (ExportList != ExportLists.end() &&
1069 ExportList->second.count(GUID)) ||
1070 ExportedGUIDs.count(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001071 };
1072 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001073 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001074
Peter Collingbournef87197a2017-05-25 23:40:11 +00001075 auto isPrevailing = [&](GlobalValue::GUID GUID,
1076 const GlobalValueSummary *S) {
1077 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1078 };
1079 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1080 GlobalValue::GUID GUID,
1081 GlobalValue::LinkageTypes NewLinkage) {
1082 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1083 };
1084 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1085 recordNewLinkage);
1086
Peter Collingbourne80186a52016-09-23 21:33:43 +00001087 std::unique_ptr<ThinBackendProc> BackendProc =
1088 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1089 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001090
Davide Italiano63098952017-01-04 20:37:57 +00001091 // Task numbers start at ParallelCodeGenParallelismLevel if an LTO
1092 // module is present, as tasks 0 through ParallelCodeGenParallelismLevel-1
1093 // are reserved for parallel code generation partitions.
Teresa Johnson8dd61ae2016-09-16 13:54:19 +00001094 unsigned Task =
1095 HasRegularLTO ? RegularLTO.ParallelCodeGenParallelismLevel : 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001096 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001097 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001098 ExportLists[Mod.first],
1099 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001100 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001101 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001102 }
1103
1104 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001105}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001106
1107Expected<std::unique_ptr<tool_output_file>>
1108lto::setupOptimizationRemarks(LLVMContext &Context,
1109 StringRef LTORemarksFilename,
1110 bool LTOPassRemarksWithHotness, int Count) {
1111 if (LTORemarksFilename.empty())
1112 return nullptr;
1113
1114 std::string Filename = LTORemarksFilename;
1115 if (Count != -1)
1116 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1117
1118 std::error_code EC;
1119 auto DiagnosticFile =
1120 llvm::make_unique<tool_output_file>(Filename, EC, sys::fs::F_None);
1121 if (EC)
1122 return errorCodeToError(EC);
1123 Context.setDiagnosticsOutputFile(
1124 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1125 if (LTOPassRemarksWithHotness)
1126 Context.setDiagnosticHotnessRequested(true);
1127 DiagnosticFile->keep();
1128 return std::move(DiagnosticFile);
1129}