blob: 98567fb620223656cb51b644622796eb3a43280f [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,
Evgeniy Stepanov3427d172017-08-09 23:24:07 +000068 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid,
69 const std::set<GlobalValue::GUID> &CfiFunctionDefs,
70 const std::set<GlobalValue::GUID> &CfiFunctionDecls) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +000071 // Compute the unique hash for this entry.
72 // This is based on the current compiler version, the module itself, the
73 // export list, the hash for every single module in the import list, the
74 // list of ResolvedODR for the module, and the list of preserved symbols.
75 SHA1 Hasher;
76
77 // Start with the compiler revision
78 Hasher.update(LLVM_VERSION_STRING);
Peter Collingbourne942fa562017-04-13 01:26:12 +000079#ifdef LLVM_REVISION
Mehdi Aminiadc0e262016-08-23 21:30:12 +000080 Hasher.update(LLVM_REVISION);
81#endif
82
Peter Collingbournef4257522016-12-08 05:28:30 +000083 // Include the parts of the LTO configuration that affect code generation.
84 auto AddString = [&](StringRef Str) {
85 Hasher.update(Str);
86 Hasher.update(ArrayRef<uint8_t>{0});
87 };
88 auto AddUnsigned = [&](unsigned I) {
89 uint8_t Data[4];
90 Data[0] = I;
91 Data[1] = I >> 8;
92 Data[2] = I >> 16;
93 Data[3] = I >> 24;
94 Hasher.update(ArrayRef<uint8_t>{Data, 4});
95 };
Peter Collingbourne54a52b72017-03-03 20:25:30 +000096 auto AddUint64 = [&](uint64_t I) {
97 uint8_t Data[8];
98 Data[0] = I;
99 Data[1] = I >> 8;
100 Data[2] = I >> 16;
101 Data[3] = I >> 24;
102 Data[4] = I >> 32;
103 Data[5] = I >> 40;
104 Data[6] = I >> 48;
105 Data[7] = I >> 56;
106 Hasher.update(ArrayRef<uint8_t>{Data, 8});
107 };
Peter Collingbournef4257522016-12-08 05:28:30 +0000108 AddString(Conf.CPU);
109 // FIXME: Hash more of Options. For now all clients initialize Options from
110 // command-line flags (which is unsupported in production), but may set
111 // RelaxELFRelocations. The clang driver can also pass FunctionSections,
112 // DataSections and DebuggerTuning via command line flags.
113 AddUnsigned(Conf.Options.RelaxELFRelocations);
114 AddUnsigned(Conf.Options.FunctionSections);
115 AddUnsigned(Conf.Options.DataSections);
116 AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
117 for (auto &A : Conf.MAttrs)
118 AddString(A);
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000119 if (Conf.RelocModel)
120 AddUnsigned(*Conf.RelocModel);
121 else
122 AddUnsigned(-1);
Rafael Espindola79e238a2017-08-03 02:16:21 +0000123 if (Conf.CodeModel)
124 AddUnsigned(*Conf.CodeModel);
125 else
126 AddUnsigned(-1);
Peter Collingbournef4257522016-12-08 05:28:30 +0000127 AddUnsigned(Conf.CGOptLevel);
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000128 AddUnsigned(Conf.CGFileType);
Peter Collingbournef4257522016-12-08 05:28:30 +0000129 AddUnsigned(Conf.OptLevel);
Tim Shen4e912aa2017-06-01 23:13:44 +0000130 AddUnsigned(Conf.UseNewPM);
Peter Collingbournef4257522016-12-08 05:28:30 +0000131 AddString(Conf.OptPipeline);
132 AddString(Conf.AAPipeline);
133 AddString(Conf.OverrideTriple);
134 AddString(Conf.DefaultTriple);
135
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000136 // Include the hash for the current module
137 auto ModHash = Index.getModuleHash(ModuleID);
138 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
139 for (auto F : ExportList)
140 // The export list can impact the internalization, be conservative here
141 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
142
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000143 // Include the hash for every module we import functions from. The set of
144 // imported symbols for each module may affect code generation and is
145 // sensitive to link order, so include that as well.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000146 for (auto &Entry : ImportList) {
147 auto ModHash = Index.getModuleHash(Entry.first());
148 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
Peter Collingbourne54a52b72017-03-03 20:25:30 +0000149
150 AddUint64(Entry.second.size());
151 for (auto &Fn : Entry.second)
152 AddUint64(Fn.first);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000153 }
154
155 // Include the hash for the resolved ODR.
156 for (auto &Entry : ResolvedODR) {
157 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
158 sizeof(GlobalValue::GUID)));
159 Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
160 sizeof(GlobalValue::LinkageTypes)));
161 }
162
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000163 // Members of CfiFunctionDefs and CfiFunctionDecls that are referenced or
164 // defined in this module.
165 std::set<GlobalValue::GUID> UsedCfiDefs;
166 std::set<GlobalValue::GUID> UsedCfiDecls;
167
168 // Typeids used in this module.
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000169 std::set<GlobalValue::GUID> UsedTypeIds;
170
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000171 auto AddUsedCfiGlobal = [&](GlobalValue::GUID ValueGUID) {
172 if (CfiFunctionDefs.count(ValueGUID))
173 UsedCfiDefs.insert(ValueGUID);
174 if (CfiFunctionDecls.count(ValueGUID))
175 UsedCfiDecls.insert(ValueGUID);
176 };
177
178 auto AddUsedThings = [&](GlobalValueSummary *GS) {
179 if (!GS) return;
180 for (const ValueInfo &VI : GS->refs())
181 AddUsedCfiGlobal(VI.getGUID());
182 if (auto *FS = dyn_cast<FunctionSummary>(GS)) {
183 for (auto &TT : FS->type_tests())
184 UsedTypeIds.insert(TT);
185 for (auto &TT : FS->type_test_assume_vcalls())
186 UsedTypeIds.insert(TT.GUID);
187 for (auto &TT : FS->type_checked_load_vcalls())
188 UsedTypeIds.insert(TT.GUID);
189 for (auto &TT : FS->type_test_assume_const_vcalls())
190 UsedTypeIds.insert(TT.VFunc.GUID);
191 for (auto &TT : FS->type_checked_load_const_vcalls())
192 UsedTypeIds.insert(TT.VFunc.GUID);
193 for (auto &ET : FS->calls())
194 AddUsedCfiGlobal(ET.first.getGUID());
195 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000196 };
197
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000198 // Include the hash for the linkage type to reflect internalization and weak
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000199 // resolution, and collect any used type identifier resolutions.
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000200 for (auto &GS : DefinedGlobals) {
201 GlobalValue::LinkageTypes Linkage = GS.second->linkage();
202 Hasher.update(
203 ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000204 AddUsedCfiGlobal(GS.first);
205 AddUsedThings(GS.second);
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000206 }
207
208 // Imported functions may introduce new uses of type identifier resolutions,
209 // so we need to collect their used resolutions as well.
210 for (auto &ImpM : ImportList)
211 for (auto &ImpF : ImpM.second)
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000212 AddUsedThings(Index.findSummaryInModule(ImpF.first, ImpM.first()));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000213
214 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
215 AddString(TId);
216
217 AddUnsigned(S.TTRes.TheKind);
218 AddUnsigned(S.TTRes.SizeM1BitWidth);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000219
Peter Collingbourneb9b60252017-09-11 22:49:10 +0000220 AddUint64(S.TTRes.AlignLog2);
221 AddUint64(S.TTRes.SizeM1);
222 AddUint64(S.TTRes.BitMask);
223 AddUint64(S.TTRes.InlineBits);
224
Peter Collingbourne711284b2017-03-10 21:37:10 +0000225 AddUint64(S.WPDRes.size());
226 for (auto &WPD : S.WPDRes) {
227 AddUnsigned(WPD.first);
228 AddUnsigned(WPD.second.TheKind);
229 AddString(WPD.second.SingleImplName);
230
231 AddUint64(WPD.second.ResByArg.size());
232 for (auto &ByArg : WPD.second.ResByArg) {
233 AddUint64(ByArg.first.size());
234 for (uint64_t Arg : ByArg.first)
235 AddUint64(Arg);
236 AddUnsigned(ByArg.second.TheKind);
237 AddUint64(ByArg.second.Info);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +0000238 AddUnsigned(ByArg.second.Byte);
239 AddUnsigned(ByArg.second.Bit);
Peter Collingbourne711284b2017-03-10 21:37:10 +0000240 }
241 }
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000242 };
243
244 // Include the hash for all type identifiers used by this module.
245 for (GlobalValue::GUID TId : UsedTypeIds) {
246 auto SummariesI = TypeIdSummariesByGuid.find(TId);
247 if (SummariesI != TypeIdSummariesByGuid.end())
248 for (auto *Summary : SummariesI->second)
249 AddTypeIdSummary(Summary->first, Summary->second);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000250 }
251
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000252 AddUnsigned(UsedCfiDefs.size());
253 for (auto &V : UsedCfiDefs)
254 AddUint64(V);
255
256 AddUnsigned(UsedCfiDecls.size());
257 for (auto &V : UsedCfiDecls)
258 AddUint64(V);
259
Dehao Chen27978002016-12-16 16:48:46 +0000260 if (!Conf.SampleProfile.empty()) {
261 auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
262 if (FileOrErr)
263 Hasher.update(FileOrErr.get()->getBuffer());
264 }
265
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000266 Key = toHex(Hasher.result());
267}
268
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000269static void thinLTOResolveWeakForLinkerGUID(
270 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
271 DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
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 for (auto &S : GVSummaryList) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000277 GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
278 if (!GlobalValue::isWeakForLinker(OriginalLinkage))
279 continue;
Peter Collingbourne73589f32016-07-07 18:31:51 +0000280 // We need to emit only one of these. The prevailing module will keep it,
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000281 // but turned into a weak, while the others will drop it when possible.
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000282 // This is both a compile-time optimization and a correctness
283 // transformation. This is necessary for correctness when we have exported
284 // a reference - we need to convert the linkonce to weak to
285 // ensure a copy is kept to satisfy the exported reference.
286 // FIXME: We may want to split the compile time and correctness
287 // aspects into separate routines.
Peter Collingbourne73589f32016-07-07 18:31:51 +0000288 if (isPrevailing(GUID, S.get())) {
Teresa Johnson28c03b52016-05-26 14:16:52 +0000289 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
290 S->setLinkage(GlobalValue::getWeakLinkage(
291 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000292 }
Teresa Johnson3bc8abd2016-10-30 05:15:23 +0000293 // Alias and aliasee can't be turned into available_externally.
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000294 else if (!isa<AliasSummary>(S.get()) &&
Teresa Johnson4566c6d2017-01-20 21:54:58 +0000295 !GlobalInvolvedWithAlias.count(S.get()))
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000296 S->setLinkage(GlobalValue::AvailableExternallyLinkage);
297 if (S->linkage() != OriginalLinkage)
298 recordNewLinkage(S->modulePath(), GUID, S->linkage());
299 }
300}
301
302// Resolve Weak and LinkOnce values in the \p Index.
303//
304// We'd like to drop these functions if they are no longer referenced in the
305// current module. However there is a chance that another module is still
306// referencing them because of the import. We make sure we always emit at least
307// one copy.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000308void llvm::thinLTOResolveWeakForLinkerInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000309 ModuleSummaryIndex &Index,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000310 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000311 isPrevailing,
Benjamin Kramerd3f4c052016-06-12 16:13:55 +0000312 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000313 recordNewLinkage) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000314 // We won't optimize the globals that are referenced by an alias for now
315 // Ideally we should turn the alias into a global and duplicate the definition
316 // when needed.
317 DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
318 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000319 for (auto &S : I.second.SummaryList)
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000320 if (auto AS = dyn_cast<AliasSummary>(S.get()))
321 GlobalInvolvedWithAlias.insert(&AS->getAliasee());
322
323 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000324 thinLTOResolveWeakForLinkerGUID(I.second.SummaryList, I.first,
325 GlobalInvolvedWithAlias, isPrevailing,
326 recordNewLinkage);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000327}
328
329static void thinLTOInternalizeAndPromoteGUID(
330 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000331 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000332 for (auto &S : GVSummaryList) {
Mehdi Amini1380edf2017-02-03 07:41:43 +0000333 if (isExported(S->modulePath(), GUID)) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000334 if (GlobalValue::isLocalLinkage(S->linkage()))
335 S->setLinkage(GlobalValue::ExternalLinkage);
336 } else if (!GlobalValue::isLocalLinkage(S->linkage()))
337 S->setLinkage(GlobalValue::InternalLinkage);
338 }
339}
340
341// Update the linkages in the given \p Index to mark exported values
342// as external and non-exported values as internal.
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000343void llvm::thinLTOInternalizeAndPromoteInIndex(
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000344 ModuleSummaryIndex &Index,
Mehdi Amini1380edf2017-02-03 07:41:43 +0000345 function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000346 for (auto &I : Index)
Peter Collingbourne9667b912017-05-04 18:03:25 +0000347 thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported);
Teresa Johnson04c9a2d2016-05-25 14:03:11 +0000348}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000349
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000350// Requires a destructor for std::vector<InputModule>.
351InputFile::~InputFile() = default;
352
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000353Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
354 std::unique_ptr<InputFile> File(new InputFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000355
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000356 Expected<IRSymtabFile> FOrErr = readIRSymtab(Object);
357 if (!FOrErr)
358 return FOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000359
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000360 File->TargetTriple = FOrErr->TheReader.getTargetTriple();
361 File->SourceFileName = FOrErr->TheReader.getSourceFileName();
362 File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts();
363 File->ComdatTable = FOrErr->TheReader.getComdatTable();
Peter Collingbournead903692016-12-13 19:43:49 +0000364
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000365 for (unsigned I = 0; I != FOrErr->Mods.size(); ++I) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000366 size_t Begin = File->Symbols.size();
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000367 for (const irsymtab::Reader::SymbolRef &Sym :
368 FOrErr->TheReader.module_symbols(I))
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000369 // Skip symbols that are irrelevant to LTO. Note that this condition needs
370 // to match the one in Skip() in LTO::addRegularLTO().
371 if (Sym.isGlobal() && !Sym.isFormatSpecific())
372 File->Symbols.push_back(Sym);
373 File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
Rafael Espindola79121102016-10-25 12:02:03 +0000374 }
375
Peter Collingbournec00c2b22017-06-08 01:26:14 +0000376 File->Mods = FOrErr->Mods;
377 File->Strtab = std::move(FOrErr->Strtab);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000378 return std::move(File);
379}
380
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000381StringRef InputFile::getName() const {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000382 return Mods[0].getModuleIdentifier();
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000383}
384
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000385LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
386 Config &Conf)
387 : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
Vitaly Bukaa5376f32017-12-16 02:10:00 +0000388 Ctx(Conf), CombinedModule(llvm::make_unique<Module>("ld-temp.o", Ctx)),
389 Mover(llvm::make_unique<IRMover>(*CombinedModule)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000390
Eugene Leviant28d8a492018-01-22 13:35:40 +0000391LTO::ThinLTOState::ThinLTOState(ThinBackend Backend)
392 : Backend(Backend), CombinedIndex(/*IsPeformingAnalysis*/ false) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000393 if (!Backend)
Teresa Johnsonec544c52016-10-19 17:35:01 +0000394 this->Backend =
395 createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000396}
397
398LTO::LTO(Config Conf, ThinBackend Backend,
399 unsigned ParallelCodeGenParallelismLevel)
400 : Conf(std::move(Conf)),
401 RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
Mehdi Amini026ddbb2016-08-19 05:56:37 +0000402 ThinLTO(std::move(Backend)) {}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000403
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000404// Requires a destructor for MapVector<BitcodeModule>.
405LTO::~LTO() = default;
406
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000407// Add the symbols in the given module to the GlobalResolutions map, and resolve
408// their partitions.
409void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
410 ArrayRef<SymbolResolution> Res,
411 unsigned Partition, bool InSummary) {
412 auto *ResI = Res.begin();
413 auto *ResE = Res.end();
Peter Collingbourne7e85b262017-06-15 17:41:32 +0000414 (void)ResE;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000415 for (const InputFile::Symbol &Sym : Syms) {
416 assert(ResI != ResE);
417 SymbolResolution Res = *ResI++;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000418
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000419 auto &GlobalRes = GlobalResolutions[Sym.getName()];
420 GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
Eugene Leviant746f1522017-12-15 09:18:21 +0000421 if (Res.Prevailing) {
George Rimard3283652018-01-25 17:23:27 +0000422 assert(!GlobalRes.Prevailing &&
Eugene Leviantcb122492017-12-15 16:27:33 +0000423 "Multiple prevailing defs are not allowed");
George Rimard3283652018-01-25 17:23:27 +0000424 GlobalRes.Prevailing = true;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000425 GlobalRes.IRName = Sym.getIRName();
Eugene Leviant746f1522017-12-15 09:18:21 +0000426 }
Teresa Johnson6c475a72017-01-05 21:34:18 +0000427
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000428 // Set the partition to external if we know it is re-defined by the linker
429 // with -defsym or -wrap options, used elsewhere, e.g. it is visible to a
430 // regular object, is referenced from llvm.compiler_used, or was already
431 // recorded as being referenced from a different partition.
432 if (Res.LinkerRedefined || Res.VisibleToRegularObj || Sym.isUsed() ||
433 (GlobalRes.Partition != GlobalResolution::Unknown &&
434 GlobalRes.Partition != Partition)) {
435 GlobalRes.Partition = GlobalResolution::External;
436 } else
437 // First recorded reference, save the current partition.
438 GlobalRes.Partition = Partition;
439
440 // Flag as visible outside of summary if visible from a regular object or
441 // from a module that does not have a summary.
442 GlobalRes.VisibleOutsideSummary |=
443 (Res.VisibleToRegularObj || Sym.isUsed() || !InSummary);
444 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000445}
446
Rafael Espindola7775c332016-08-26 20:19:35 +0000447static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
448 ArrayRef<SymbolResolution> Res) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000449 StringRef Path = Input->getName();
Rafael Espindola7775c332016-08-26 20:19:35 +0000450 OS << Path << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000451 auto ResI = Res.begin();
452 for (const InputFile::Symbol &Sym : Input->symbols()) {
453 assert(ResI != Res.end());
454 SymbolResolution Res = *ResI++;
455
Rafael Espindola7775c332016-08-26 20:19:35 +0000456 OS << "-r=" << Path << ',' << Sym.getName() << ',';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000457 if (Res.Prevailing)
Rafael Espindola7775c332016-08-26 20:19:35 +0000458 OS << 'p';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000459 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola7775c332016-08-26 20:19:35 +0000460 OS << 'l';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000461 if (Res.VisibleToRegularObj)
Rafael Espindola7775c332016-08-26 20:19:35 +0000462 OS << 'x';
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000463 if (Res.LinkerRedefined)
464 OS << 'r';
Rafael Espindola7775c332016-08-26 20:19:35 +0000465 OS << '\n';
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000466 }
Peter Collingbourne58ffcfb2017-01-19 23:10:14 +0000467 OS.flush();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000468 assert(ResI == Res.end());
469}
470
471Error LTO::add(std::unique_ptr<InputFile> Input,
472 ArrayRef<SymbolResolution> Res) {
473 assert(!CalledGetMaxTasks);
474
475 if (Conf.ResolutionFile)
Rafael Espindola7775c332016-08-26 20:19:35 +0000476 writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000477
Vitaly Bukaa5376f32017-12-16 02:10:00 +0000478 if (RegularLTO.CombinedModule->getTargetTriple().empty())
479 RegularLTO.CombinedModule->setTargetTriple(Input->getTargetTriple());
480
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000481 const SymbolResolution *ResI = Res.begin();
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000482 for (unsigned I = 0; I != Input->Mods.size(); ++I)
483 if (Error Err = addModule(*Input, I, ResI, Res.end()))
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000484 return Err;
485
486 assert(ResI == Res.end());
487 return Error::success();
488}
489
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000490Error LTO::addModule(InputFile &Input, unsigned ModI,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000491 const SymbolResolution *&ResI,
492 const SymbolResolution *ResE) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000493 Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo();
494 if (!LTOInfo)
495 return LTOInfo.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000496
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000497 BitcodeModule BM = Input.Mods[ModI];
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000498 auto ModSyms = Input.module_symbols(ModI);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000499 addModuleToGlobalRes(ModSyms, {ResI, ResE},
500 LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0,
501 LTOInfo->HasSummary);
502
503 if (LTOInfo->IsThinLTO)
504 return addThinLTO(BM, ModSyms, ResI, ResE);
505
506 Expected<RegularLTOState::AddedModule> ModOrErr =
507 addRegularLTO(BM, ModSyms, ResI, ResE);
508 if (!ModOrErr)
509 return ModOrErr.takeError();
510
511 if (!LTOInfo->HasSummary)
512 return linkRegularLTO(std::move(*ModOrErr), /*LivenessFromIndex=*/false);
513
514 // Regular LTO module summaries are added to a dummy module that represents
515 // the combined regular LTO module.
516 if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
517 return Err;
518 RegularLTO.ModsWithSummaries.push_back(std::move(*ModOrErr));
519 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000520}
521
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000522// Checks whether the given global value is in a non-prevailing comdat
523// (comdat containing values the linker indicated were not prevailing,
524// which we then dropped to available_externally), and if so, removes
525// it from the comdat. This is called for all global values to ensure the
526// comdat is empty rather than leaving an incomplete comdat. It is needed for
527// regular LTO modules, in case we are in a mixed-LTO mode (both regular
528// and thin LTO modules) compilation. Since the regular LTO module will be
529// linked first in the final native link, we want to make sure the linker
530// doesn't select any of these incomplete comdats that would be left
531// in the regular LTO module without this cleanup.
532static void
533handleNonPrevailingComdat(GlobalValue &GV,
534 std::set<const Comdat *> &NonPrevailingComdats) {
535 Comdat *C = GV.getComdat();
536 if (!C)
537 return;
538
539 if (!NonPrevailingComdats.count(C))
540 return;
541
542 // Additionally need to drop externally visible global values from the comdat
543 // to available_externally, so that there aren't multiply defined linker
544 // errors.
545 if (!GV.hasLocalLinkage())
546 GV.setLinkage(GlobalValue::AvailableExternallyLinkage);
547
548 if (auto GO = dyn_cast<GlobalObject>(&GV))
549 GO->setComdat(nullptr);
550}
551
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000552// Add a regular LTO object to the link.
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000553// The resulting module needs to be linked into the combined LTO module with
554// linkRegularLTO.
555Expected<LTO::RegularLTOState::AddedModule>
556LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
557 const SymbolResolution *&ResI,
558 const SymbolResolution *ResE) {
559 RegularLTOState::AddedModule Mod;
Peter Collingbournead903692016-12-13 19:43:49 +0000560 Expected<std::unique_ptr<Module>> MOrErr =
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000561 BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
562 /*IsImporting*/ false);
Peter Collingbournead903692016-12-13 19:43:49 +0000563 if (!MOrErr)
564 return MOrErr.takeError();
Peter Collingbournead903692016-12-13 19:43:49 +0000565 Module &M = **MOrErr;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000566 Mod.M = std::move(*MOrErr);
567
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000568 if (Error Err = M.materializeMetadata())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000569 return std::move(Err);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000570 UpgradeDebugInfo(M);
571
Peter Collingbournead903692016-12-13 19:43:49 +0000572 ModuleSymbolTable SymTab;
573 SymTab.addModule(&M);
574
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000575 for (GlobalVariable &GV : M.globals())
576 if (GV.hasAppendingLinkage())
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000577 Mod.Keep.push_back(&GV);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000578
Peter Collingbourne46136262017-02-02 05:22:42 +0000579 DenseSet<GlobalObject *> AliasedGlobals;
580 for (auto &GA : M.aliases())
581 if (GlobalObject *GO = GA.getBaseObject())
582 AliasedGlobals.insert(GO);
583
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000584 // In this function we need IR GlobalValues matching the symbols in Syms
585 // (which is not backed by a module), so we need to enumerate them in the same
586 // order. The symbol enumeration order of a ModuleSymbolTable intentionally
587 // matches the order of an irsymtab, but when we read the irsymtab in
588 // InputFile::create we omit some symbols that are irrelevant to LTO. The
589 // Skip() function skips the same symbols from the module as InputFile does
590 // from the symbol table.
591 auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
592 auto Skip = [&]() {
593 while (MsymI != MsymE) {
594 auto Flags = SymTab.getSymbolFlags(*MsymI);
595 if ((Flags & object::BasicSymbolRef::SF_Global) &&
596 !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
597 return;
598 ++MsymI;
599 }
600 };
601 Skip();
602
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000603 std::set<const Comdat *> NonPrevailingComdats;
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000604 for (const InputFile::Symbol &Sym : Syms) {
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000605 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000606 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000607
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000608 assert(MsymI != MsymE);
609 ModuleSymbolTable::Symbol Msym = *MsymI++;
610 Skip();
611
612 if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
Peter Collingbournec387e702017-02-02 05:12:15 +0000613 if (Res.Prevailing) {
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000614 if (Sym.isUndefined())
Peter Collingbournec387e702017-02-02 05:12:15 +0000615 continue;
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000616 Mod.Keep.push_back(GV);
Dmitry Mikulindb3b87b2017-06-05 16:24:25 +0000617 // For symbols re-defined with linker -wrap and -defsym options,
618 // set the linkage to weak to inhibit IPO. The linkage will be
619 // restored by the linker.
620 if (Res.LinkerRedefined)
621 GV->setLinkage(GlobalValue::WeakAnyLinkage);
622
Davide Italianod4db1162017-05-26 21:56:14 +0000623 GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage();
624 if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
625 GV->setLinkage(GlobalValue::getWeakLinkage(
626 GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
Peter Collingbourne46136262017-02-02 05:22:42 +0000627 } else if (isa<GlobalObject>(GV) &&
628 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
629 GV->hasAvailableExternallyLinkage()) &&
630 !AliasedGlobals.count(cast<GlobalObject>(GV))) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000631 // Any of the above three types of linkage indicates that the
Peter Collingbourne46136262017-02-02 05:22:42 +0000632 // chosen prevailing symbol will have the same semantics as this copy of
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000633 // the symbol, so we may be able to link it with available_externally
634 // linkage. We will decide later whether to do that when we link this
635 // module (in linkRegularLTO), based on whether it is undefined.
636 Mod.Keep.push_back(GV);
637 GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000638 if (GV->hasComdat())
639 NonPrevailingComdats.insert(GV->getComdat());
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000640 cast<GlobalObject>(GV)->setComdat(nullptr);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000641 }
Sean Fertile4595a912017-11-04 17:04:39 +0000642
643 // Set the 'local' flag based on the linker resolution for this symbol.
Rafael Espindola8a1ca672018-01-18 05:38:43 +0000644 if (Res.FinalDefinitionInLinkageUnit)
Rafael Espindola349fe0a2018-01-24 19:11:24 +0000645 GV->setDSOLocal(true);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000646 }
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000647 // Common resolution: collect the maximum size/alignment over all commons.
648 // We also record if we see an instance of a common as prevailing, so that
649 // if none is prevailing we can ignore it later.
Peter Collingbourne0d56b952017-03-28 22:31:35 +0000650 if (Sym.isCommon()) {
Peter Collingbournefb8c2a42016-12-01 02:51:12 +0000651 // FIXME: We should figure out what to do about commons defined by asm.
652 // For now they aren't reported correctly by ModuleSymbolTable.
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000653 auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000654 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
655 CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000656 CommonRes.Prevailing |= Res.Prevailing;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000657 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000658
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000659 }
Teresa Johnsonb247ffb2017-06-30 14:03:24 +0000660 if (!M.getComdatSymbolTable().empty())
661 for (GlobalValue &GV : M.global_values())
662 handleNonPrevailingComdat(GV, NonPrevailingComdats);
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000663 assert(MsymI == MsymE);
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000664 return std::move(Mod);
665}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000666
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000667Error LTO::linkRegularLTO(RegularLTOState::AddedModule Mod,
668 bool LivenessFromIndex) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000669 std::vector<GlobalValue *> Keep;
670 for (GlobalValue *GV : Mod.Keep) {
671 if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID()))
672 continue;
673
674 if (!GV->hasAvailableExternallyLinkage()) {
675 Keep.push_back(GV);
676 continue;
677 }
678
679 // Only link available_externally definitions if we don't already have a
680 // definition.
681 GlobalValue *CombinedGV =
682 RegularLTO.CombinedModule->getNamedValue(GV->getName());
683 if (CombinedGV && !CombinedGV->isDeclaration())
684 continue;
685
686 Keep.push_back(GV);
687 }
688
689 return RegularLTO.Mover->move(std::move(Mod.M), Keep,
Teresa Johnson4b9b3792016-10-12 18:39:29 +0000690 [](GlobalValue &, IRMover::ValueAdder) {},
Teresa Johnson040cc162016-12-12 16:09:30 +0000691 /* IsPerformingImport */ false);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000692}
693
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000694// Add a ThinLTO module to the link.
695Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000696 const SymbolResolution *&ResI,
697 const SymbolResolution *ResE) {
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000698 if (Error Err =
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000699 BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
700 ThinLTO.ModuleMap.size()))
Peter Collingbourne74d22dd2017-05-01 22:04:36 +0000701 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000702
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000703 for (const InputFile::Symbol &Sym : Syms) {
704 assert(ResI != ResE);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000705 SymbolResolution Res = *ResI++;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000706
Sean Fertile4595a912017-11-04 17:04:39 +0000707 if (!Sym.getIRName().empty()) {
708 auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
709 Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
710 if (Res.Prevailing) {
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000711 ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
Davide Italiano6a5fbe52017-07-06 19:58:26 +0000712
713 // For linker redefined symbols (via --wrap or --defsym) we want to
714 // switch the linkage to `weak` to prevent IPOs from happening.
715 // Find the summary in the module for this very GV and record the new
716 // linkage so that we can switch it when we import the GV.
717 if (Res.LinkerRedefined)
718 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
719 GUID, BM.getModuleIdentifier()))
720 S->setLinkage(GlobalValue::WeakAnyLinkage);
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000721 }
Sean Fertile4595a912017-11-04 17:04:39 +0000722
723 // If the linker resolved the symbol to a local definition then mark it
724 // as local in the summary for the module we are adding.
725 if (Res.FinalDefinitionInLinkageUnit) {
726 if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
727 GUID, BM.getModuleIdentifier())) {
728 S->setDSOLocal(true);
729 }
730 }
Peter Collingbourne7b30f162017-03-31 04:47:07 +0000731 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000732 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000733
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000734 if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
735 return make_error<StringError>(
736 "Expected at most one ThinLTO module per bitcode file",
737 inconvertibleErrorCode());
738
Mehdi Amini41af4302016-11-11 04:28:40 +0000739 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000740}
741
Teresa Johnsonfaa75062016-08-11 20:38:39 +0000742unsigned LTO::getMaxTasks() const {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000743 CalledGetMaxTasks = true;
744 return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
745}
746
Peter Collingbourne80186a52016-09-23 21:33:43 +0000747Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000748 // Compute "dead" symbols, we don't want to import/export these!
749 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
George Rimard3283652018-01-25 17:23:27 +0000750 for (auto &Res : GlobalResolutions)
751 if (Res.second.VisibleOutsideSummary && Res.second.Prevailing)
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000752 GUIDPreservedSymbols.insert(GlobalValue::getGUID(
753 GlobalValue::dropLLVMManglingEscape(Res.second.IRName)));
Evgeniy Stepanov659b3bc2017-06-02 18:24:17 +0000754
755 computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols);
756
Vitaly Bukaa5376f32017-12-16 02:10:00 +0000757 if (auto E = runRegularLTO(AddStream))
758 return E;
759 return runThinLTO(AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000760}
761
Peter Collingbourne80186a52016-09-23 21:33:43 +0000762Error LTO::runRegularLTO(AddStreamFn AddStream) {
Peter Collingbournedbd2fed2017-06-15 17:26:13 +0000763 for (auto &M : RegularLTO.ModsWithSummaries)
764 if (Error Err = linkRegularLTO(std::move(M),
765 /*LivenessFromIndex=*/true))
766 return Err;
767
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000768 // Make sure commons have the right size/alignment: we kept the largest from
769 // all the prevailing when adding the inputs, and we apply it here.
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000770 const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000771 for (auto &I : RegularLTO.Commons) {
Mehdi Aminib2f46d1d2016-09-14 21:05:04 +0000772 if (!I.second.Prevailing)
773 // Don't do anything if no instance of this common was prevailing.
774 continue;
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000775 GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000776 if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000777 // Don't create a new global if the type is already correct, just make
778 // sure the alignment is correct.
779 OldGV->setAlignment(I.second.Align);
780 continue;
781 }
Teresa Johnsone2e621a2016-08-27 04:41:22 +0000782 ArrayType *Ty =
783 ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
Mehdi Aminidc4c8cf2016-08-22 06:25:46 +0000784 auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
785 GlobalValue::CommonLinkage,
786 ConstantAggregateZero::get(Ty), "");
787 GV->setAlignment(I.second.Align);
788 if (OldGV) {
789 OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
790 GV->takeName(OldGV);
791 OldGV->eraseFromParent();
792 } else {
793 GV->setName(I.first);
794 }
795 }
796
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000797 if (Conf.PreOptModuleHook &&
798 !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000799 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000800
Mehdi Aminid310b472016-08-22 06:25:41 +0000801 if (!Conf.CodeGenOnly) {
802 for (const auto &R : GlobalResolutions) {
George Rimard3283652018-01-25 17:23:27 +0000803 if (!R.second.Prevailing)
Mehdi Aminid310b472016-08-22 06:25:41 +0000804 continue;
805 if (R.second.Partition != 0 &&
806 R.second.Partition != GlobalResolution::External)
807 continue;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000808
Mehdi Aminid310b472016-08-22 06:25:41 +0000809 GlobalValue *GV =
810 RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
811 // Ignore symbols defined in other partitions.
812 if (!GV || GV->hasLocalLinkage())
813 continue;
814 GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
815 : GlobalValue::UnnamedAddr::None);
816 if (R.second.Partition == 0)
817 GV->setLinkage(GlobalValue::InternalLinkage);
818 }
819
820 if (Conf.PostInternalizeModuleHook &&
821 !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
Mehdi Amini41af4302016-11-11 04:28:40 +0000822 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000823 }
Peter Collingbourne80186a52016-09-23 21:33:43 +0000824 return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000825 std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000826}
827
828/// This class defines the interface to the ThinLTO backend.
829class lto::ThinBackendProc {
830protected:
831 Config &Conf;
832 ModuleSummaryIndex &CombinedIndex;
Mehdi Amini767e1452016-09-06 03:23:45 +0000833 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000834
835public:
836 ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000837 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
Mehdi Amini18b91112016-08-19 06:10:03 +0000838 : Conf(Conf), CombinedIndex(CombinedIndex),
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000839 ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
840
841 virtual ~ThinBackendProc() {}
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000842 virtual Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000843 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000844 const FunctionImporter::ImportMapTy &ImportList,
845 const FunctionImporter::ExportSetTy &ExportList,
846 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000847 MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000848 virtual Error wait() = 0;
849};
850
Benjamin Kramerffd37152016-11-19 20:44:26 +0000851namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000852class InProcessThinBackend : public ThinBackendProc {
853 ThreadPool BackendThreadPool;
Peter Collingbourne80186a52016-09-23 21:33:43 +0000854 AddStreamFn AddStream;
855 NativeObjectCache Cache;
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000856 TypeIdSummariesByGuidTy TypeIdSummariesByGuid;
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000857 std::set<GlobalValue::GUID> CfiFunctionDefs;
858 std::set<GlobalValue::GUID> CfiFunctionDecls;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000859
860 Optional<Error> Err;
861 std::mutex ErrMu;
862
863public:
Mehdi Amini767e1452016-09-06 03:23:45 +0000864 InProcessThinBackend(
865 Config &Conf, ModuleSummaryIndex &CombinedIndex,
866 unsigned ThinLTOParallelismLevel,
867 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000868 AddStreamFn AddStream, NativeObjectCache Cache)
Mehdi Amini18b91112016-08-19 06:10:03 +0000869 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
870 BackendThreadPool(ThinLTOParallelismLevel),
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000871 AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
872 // Create a mapping from type identifier GUIDs to type identifier summaries.
873 // This allows backends to use the type identifier GUIDs stored in the
874 // function summaries to determine which type identifier summaries affect
875 // each function without needing to compute GUIDs in each backend.
876 for (auto &TId : CombinedIndex.typeIds())
877 TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId);
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000878 for (auto &Name : CombinedIndex.cfiFunctionDefs())
879 CfiFunctionDefs.insert(
880 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
881 for (auto &Name : CombinedIndex.cfiFunctionDecls())
882 CfiFunctionDecls.insert(
883 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000884 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000885
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000886 Error runThinLTOBackendThread(
Peter Collingbourne80186a52016-09-23 21:33:43 +0000887 AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000888 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000889 const FunctionImporter::ImportMapTy &ImportList,
890 const FunctionImporter::ExportSetTy &ExportList,
891 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
892 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000893 MapVector<StringRef, BitcodeModule> &ModuleMap,
894 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000895 auto RunThinBackend = [&](AddStreamFn AddStream) {
896 LTOLLVMContext BackendContext(Conf);
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000897 Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000898 if (!MOrErr)
899 return MOrErr.takeError();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000900
Peter Collingbourne80186a52016-09-23 21:33:43 +0000901 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
902 ImportList, DefinedGlobals, ModuleMap);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000903 };
Peter Collingbourne80186a52016-09-23 21:33:43 +0000904
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000905 auto ModuleID = BM.getModuleIdentifier();
Mehdi Aminif82bda02016-10-08 04:44:23 +0000906
907 if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
908 all_of(CombinedIndex.getModuleHash(ModuleID),
909 [](uint32_t V) { return V == 0; }))
910 // Cache disabled or no entry for this module in the combined index or
911 // no module hash.
Peter Collingbourne80186a52016-09-23 21:33:43 +0000912 return RunThinBackend(AddStream);
913
914 SmallString<40> Key;
915 // The module may be cached, this helps handling it.
Peter Collingbournef4257522016-12-08 05:28:30 +0000916 computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList,
Evgeniy Stepanov3427d172017-08-09 23:24:07 +0000917 ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid,
918 CfiFunctionDefs, CfiFunctionDecls);
Peter Collingbourne80186a52016-09-23 21:33:43 +0000919 if (AddStreamFn CacheAddStream = Cache(Task, Key))
920 return RunThinBackend(CacheAddStream);
921
Mehdi Amini41af4302016-11-11 04:28:40 +0000922 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000923 }
924
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000925 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000926 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000927 const FunctionImporter::ImportMapTy &ImportList,
928 const FunctionImporter::ExportSetTy &ExportList,
929 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000930 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
931 StringRef ModulePath = BM.getModuleIdentifier();
Mehdi Amini767e1452016-09-06 03:23:45 +0000932 assert(ModuleToDefinedGVSummaries.count(ModulePath));
933 const GVSummaryMapTy &DefinedGlobals =
934 ModuleToDefinedGVSummaries.find(ModulePath)->second;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000935 BackendThreadPool.async(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000936 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000937 const FunctionImporter::ImportMapTy &ImportList,
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000938 const FunctionImporter::ExportSetTy &ExportList,
939 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
940 &ResolvedODR,
Mehdi Amini767e1452016-09-06 03:23:45 +0000941 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000942 MapVector<StringRef, BitcodeModule> &ModuleMap,
943 const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) {
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000944 Error E = runThinLTOBackendThread(
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000945 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
946 ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000947 if (E) {
948 std::unique_lock<std::mutex> L(ErrMu);
949 if (Err)
950 Err = joinErrors(std::move(*Err), std::move(E));
951 else
952 Err = std::move(E);
953 }
954 },
Peter Collingbourne780a4dd2017-03-10 21:35:17 +0000955 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
956 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap),
957 std::ref(TypeIdSummariesByGuid));
Mehdi Amini41af4302016-11-11 04:28:40 +0000958 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000959 }
960
961 Error wait() override {
962 BackendThreadPool.wait();
963 if (Err)
964 return std::move(*Err);
965 else
Mehdi Amini41af4302016-11-11 04:28:40 +0000966 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000967 }
968};
Benjamin Kramerffd37152016-11-19 20:44:26 +0000969} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000970
971ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
972 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +0000973 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000974 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000975 return llvm::make_unique<InProcessThinBackend>(
976 Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +0000977 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000978 };
979}
980
Teresa Johnson3f212b82016-09-21 19:12:05 +0000981// Given the original \p Path to an output file, replace any path
982// prefix matching \p OldPrefix with \p NewPrefix. Also, create the
983// resulting directory if it does not yet exist.
984std::string lto::getThinLTOOutputFile(const std::string &Path,
985 const std::string &OldPrefix,
986 const std::string &NewPrefix) {
987 if (OldPrefix.empty() && NewPrefix.empty())
988 return Path;
989 SmallString<128> NewPath(Path);
990 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
991 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
992 if (!ParentPath.empty()) {
993 // Make sure the new directory exists, creating it if necessary.
994 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
995 llvm::errs() << "warning: could not create directory '" << ParentPath
996 << "': " << EC.message() << '\n';
997 }
998 return NewPath.str();
999}
1000
Benjamin Kramerffd37152016-11-19 20:44:26 +00001001namespace {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001002class WriteIndexesThinBackend : public ThinBackendProc {
1003 std::string OldPrefix, NewPrefix;
1004 bool ShouldEmitImportsFiles;
1005
1006 std::string LinkedObjectsFileName;
1007 std::unique_ptr<llvm::raw_fd_ostream> LinkedObjectsFile;
1008
1009public:
Mehdi Amini767e1452016-09-06 03:23:45 +00001010 WriteIndexesThinBackend(
1011 Config &Conf, ModuleSummaryIndex &CombinedIndex,
1012 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1013 std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
1014 std::string LinkedObjectsFileName)
Mehdi Amini18b91112016-08-19 06:10:03 +00001015 : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001016 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
1017 ShouldEmitImportsFiles(ShouldEmitImportsFiles),
1018 LinkedObjectsFileName(LinkedObjectsFileName) {}
1019
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001020 Error start(
Peter Collingbourne1a0720e2016-12-14 01:17:59 +00001021 unsigned Task, BitcodeModule BM,
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001022 const FunctionImporter::ImportMapTy &ImportList,
1023 const FunctionImporter::ExportSetTy &ExportList,
1024 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +00001025 MapVector<StringRef, BitcodeModule> &ModuleMap) override {
1026 StringRef ModulePath = BM.getModuleIdentifier();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001027 std::string NewModulePath =
1028 getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
1029
1030 std::error_code EC;
1031 if (!LinkedObjectsFileName.empty()) {
1032 if (!LinkedObjectsFile) {
1033 LinkedObjectsFile = llvm::make_unique<raw_fd_ostream>(
1034 LinkedObjectsFileName, EC, sys::fs::OpenFlags::F_None);
1035 if (EC)
1036 return errorCodeToError(EC);
1037 }
1038 *LinkedObjectsFile << NewModulePath << '\n';
1039 }
1040
1041 std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
1042 gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001043 ImportList, ModuleToSummariesForIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001044
1045 raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
1046 sys::fs::OpenFlags::F_None);
1047 if (EC)
1048 return errorCodeToError(EC);
1049 WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
1050
1051 if (ShouldEmitImportsFiles)
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001052 return errorCodeToError(
1053 EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList));
Mehdi Amini41af4302016-11-11 04:28:40 +00001054 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001055 }
1056
Mehdi Amini41af4302016-11-11 04:28:40 +00001057 Error wait() override { return Error::success(); }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001058};
Benjamin Kramerffd37152016-11-19 20:44:26 +00001059} // end anonymous namespace
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001060
1061ThinBackend lto::createWriteIndexesThinBackend(std::string OldPrefix,
1062 std::string NewPrefix,
1063 bool ShouldEmitImportsFiles,
1064 std::string LinkedObjectsFile) {
1065 return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
Mehdi Amini767e1452016-09-06 03:23:45 +00001066 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
Peter Collingbourne80186a52016-09-23 21:33:43 +00001067 AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001068 return llvm::make_unique<WriteIndexesThinBackend>(
Mehdi Amini18b91112016-08-19 06:10:03 +00001069 Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
1070 ShouldEmitImportsFiles, LinkedObjectsFile);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001071 };
1072}
1073
Vitaly Bukaa5376f32017-12-16 02:10:00 +00001074Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001075 if (ThinLTO.ModuleMap.empty())
Mehdi Amini41af4302016-11-11 04:28:40 +00001076 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001077
1078 if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +00001079 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001080
1081 // Collect for each module the list of function it defines (GUID ->
1082 // Summary).
Dehao Chen5d96ee42017-07-10 20:12:54 +00001083 StringMap<GVSummaryMapTy>
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001084 ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
1085 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
1086 ModuleToDefinedGVSummaries);
Teresa Johnson620c1402016-09-20 23:07:17 +00001087 // Create entries for any modules that didn't have any GV summaries
1088 // (either they didn't have any GVs to start with, or we suppressed
1089 // generation of the summaries because they e.g. had inline assembly
1090 // uses that couldn't be promoted/renamed on export). This is so
1091 // InProcessThinBackend::start can still launch a backend thread, which
1092 // is passed the map of summaries for the module, without any special
1093 // handling for this case.
1094 for (auto &Mod : ThinLTO.ModuleMap)
1095 if (!ModuleToDefinedGVSummaries.count(Mod.first))
1096 ModuleToDefinedGVSummaries.try_emplace(Mod.first);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001097
1098 StringMap<FunctionImporter::ImportMapTy> ImportLists(
1099 ThinLTO.ModuleMap.size());
1100 StringMap<FunctionImporter::ExportSetTy> ExportLists(
1101 ThinLTO.ModuleMap.size());
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001102 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001103
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001104 if (Conf.OptLevel > 0)
Teresa Johnson002af9b2016-10-31 22:12:21 +00001105 ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
Evgeniy Stepanov56584bb2017-06-01 20:30:06 +00001106 ImportLists, ExportLists);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001107
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001108 // Figure out which symbols need to be internalized. This also needs to happen
1109 // at -O0 because summary-based DCE is implemented using internalization, and
1110 // we must apply DCE consistently with the full LTO module in order to avoid
1111 // undefined references during the final link.
1112 std::set<GlobalValue::GUID> ExportedGUIDs;
1113 for (auto &Res : GlobalResolutions) {
George Rimard3283652018-01-25 17:23:27 +00001114 // If the symbol does not have external references or it is not prevailing,
1115 // then not need to mark it as exported from a ThinLTO partition.
1116 if (Res.second.Partition != GlobalResolution::External ||
1117 !Res.second.Prevailing)
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001118 continue;
1119 auto GUID = GlobalValue::getGUID(
1120 GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
1121 // Mark exported unless index-based analysis determined it to be dead.
1122 if (ThinLTO.CombinedIndex.isGUIDLive(GUID))
1123 ExportedGUIDs.insert(GUID);
Teresa Johnson002af9b2016-10-31 22:12:21 +00001124 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001125
Peter Collingbourne9fb6e1a2017-11-01 17:58:39 +00001126 // Any functions referenced by the jump table in the regular LTO object must
1127 // be exported.
1128 for (auto &Def : ThinLTO.CombinedIndex.cfiFunctionDefs())
1129 ExportedGUIDs.insert(
1130 GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Def)));
1131
1132 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
1133 const auto &ExportList = ExportLists.find(ModuleIdentifier);
1134 return (ExportList != ExportLists.end() &&
1135 ExportList->second.count(GUID)) ||
1136 ExportedGUIDs.count(GUID);
1137 };
1138 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1139
Peter Collingbournef87197a2017-05-25 23:40:11 +00001140 auto isPrevailing = [&](GlobalValue::GUID GUID,
1141 const GlobalValueSummary *S) {
1142 return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1143 };
1144 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1145 GlobalValue::GUID GUID,
1146 GlobalValue::LinkageTypes NewLinkage) {
1147 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1148 };
1149 thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing,
1150 recordNewLinkage);
1151
Peter Collingbourne80186a52016-09-23 21:33:43 +00001152 std::unique_ptr<ThinBackendProc> BackendProc =
1153 ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1154 AddStream, Cache);
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001155
Vitaly Bukaa5376f32017-12-16 02:10:00 +00001156 // Tasks 0 through ParallelCodeGenParallelismLevel-1 are reserved for combined
1157 // module and parallel code generation partitions.
1158 unsigned Task = RegularLTO.ParallelCodeGenParallelismLevel;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001159 for (auto &Mod : ThinLTO.ModuleMap) {
Mehdi Aminicdbcbf72016-08-16 05:46:05 +00001160 if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
Mehdi Aminiadc0e262016-08-23 21:30:12 +00001161 ExportLists[Mod.first],
1162 ResolvedODR[Mod.first], ThinLTO.ModuleMap))
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001163 return E;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001164 ++Task;
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001165 }
1166
1167 return BackendProc->wait();
Teresa Johnsondf6edc52016-05-23 22:54:06 +00001168}
Davide Italiano690ed9d2017-02-10 23:49:38 +00001169
Reid Kleckner3fc649c2017-09-23 01:03:17 +00001170Expected<std::unique_ptr<ToolOutputFile>>
Davide Italiano690ed9d2017-02-10 23:49:38 +00001171lto::setupOptimizationRemarks(LLVMContext &Context,
1172 StringRef LTORemarksFilename,
1173 bool LTOPassRemarksWithHotness, int Count) {
1174 if (LTORemarksFilename.empty())
1175 return nullptr;
1176
1177 std::string Filename = LTORemarksFilename;
1178 if (Count != -1)
1179 Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1180
1181 std::error_code EC;
1182 auto DiagnosticFile =
Reid Kleckner3fc649c2017-09-23 01:03:17 +00001183 llvm::make_unique<ToolOutputFile>(Filename, EC, sys::fs::F_None);
Davide Italiano690ed9d2017-02-10 23:49:38 +00001184 if (EC)
1185 return errorCodeToError(EC);
1186 Context.setDiagnosticsOutputFile(
1187 llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1188 if (LTOPassRemarksWithHotness)
Brian Gesiak44e5f6c2017-06-30 18:13:59 +00001189 Context.setDiagnosticsHotnessRequested(true);
Davide Italiano690ed9d2017-02-10 23:49:38 +00001190 DiagnosticFile->keep();
1191 return std::move(DiagnosticFile);
1192}