blob: 6d1e37fa7e1e7812ac872f7686dd5ece0de45c02 [file] [log] [blame]
Teresa Johnson9ba95f92016-08-11 14:58:12 +00001//===-LTOBackend.cpp - LLVM Link Time Optimizer Backend -------------------===//
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 the "backend" phase of LTO, i.e. it performs
11// optimization and code generation on a loaded module. It is generally used
12// internally by the LTO class but can also be used independently, for example
13// to implement a standalone ThinLTO backend.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/LTO/LTOBackend.h"
Davide Italianoec9612d2016-09-07 17:46:16 +000018#include "llvm/Analysis/AliasAnalysis.h"
19#include "llvm/Analysis/CGSCCPassManager.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000020#include "llvm/Analysis/TargetLibraryInfo.h"
21#include "llvm/Analysis/TargetTransformInfo.h"
Teresa Johnsonad176792016-11-11 05:34:58 +000022#include "llvm/Bitcode/BitcodeReader.h"
23#include "llvm/Bitcode/BitcodeWriter.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000024#include "llvm/IR/LegacyPassManager.h"
Davide Italianoec9612d2016-09-07 17:46:16 +000025#include "llvm/IR/PassManager.h"
26#include "llvm/IR/Verifier.h"
Mehdi Amini970800e2016-08-17 06:23:09 +000027#include "llvm/LTO/LTO.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000028#include "llvm/MC/SubtargetFeature.h"
Peter Collingbourne192d8522017-03-28 23:35:34 +000029#include "llvm/Object/ModuleSymbolTable.h"
Davide Italianoec9612d2016-09-07 17:46:16 +000030#include "llvm/Passes/PassBuilder.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000031#include "llvm/Support/Error.h"
32#include "llvm/Support/FileSystem.h"
33#include "llvm/Support/TargetRegistry.h"
34#include "llvm/Support/ThreadPool.h"
35#include "llvm/Target/TargetMachine.h"
36#include "llvm/Transforms/IPO.h"
37#include "llvm/Transforms/IPO/PassManagerBuilder.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000038#include "llvm/Transforms/Scalar/LoopPassManager.h"
Teresa Johnson9ba95f92016-08-11 14:58:12 +000039#include "llvm/Transforms/Utils/FunctionImportUtils.h"
40#include "llvm/Transforms/Utils/SplitModule.h"
41
42using namespace llvm;
43using namespace lto;
44
Benjamin Kramer4c2582a2016-10-18 19:39:31 +000045LLVM_ATTRIBUTE_NORETURN static void reportOpenError(StringRef Path, Twine Msg) {
Davide Italianoa416d112016-09-17 22:32:42 +000046 errs() << "failed to open " << Path << ": " << Msg << '\n';
47 errs().flush();
48 exit(1);
49}
50
Teresa Johnson9ba95f92016-08-11 14:58:12 +000051Error Config::addSaveTemps(std::string OutputFileName,
52 bool UseInputModulePath) {
53 ShouldDiscardValueNames = false;
54
55 std::error_code EC;
56 ResolutionFile = llvm::make_unique<raw_fd_ostream>(
Mehdi Aminieccffad2016-08-18 00:12:33 +000057 OutputFileName + "resolution.txt", EC, sys::fs::OpenFlags::F_Text);
Teresa Johnson9ba95f92016-08-11 14:58:12 +000058 if (EC)
59 return errorCodeToError(EC);
60
61 auto setHook = [&](std::string PathSuffix, ModuleHookFn &Hook) {
62 // Keep track of the hook provided by the linker, which also needs to run.
63 ModuleHookFn LinkerHook = Hook;
Mehdi Aminif8c2f082016-08-22 16:17:40 +000064 Hook = [=](unsigned Task, const Module &M) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +000065 // If the linker's hook returned false, we need to pass that result
66 // through.
67 if (LinkerHook && !LinkerHook(Task, M))
68 return false;
69
70 std::string PathPrefix;
71 // If this is the combined module (not a ThinLTO backend compile) or the
72 // user hasn't requested using the input module's path, emit to a file
73 // named from the provided OutputFileName with the Task ID appended.
74 if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) {
Mehdi Aminieccffad2016-08-18 00:12:33 +000075 PathPrefix = OutputFileName + utostr(Task);
Teresa Johnson9ba95f92016-08-11 14:58:12 +000076 } else
77 PathPrefix = M.getModuleIdentifier();
78 std::string Path = PathPrefix + "." + PathSuffix + ".bc";
79 std::error_code EC;
80 raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
Davide Italianoa416d112016-09-17 22:32:42 +000081 // Because -save-temps is a debugging feature, we report the error
82 // directly and exit.
83 if (EC)
84 reportOpenError(Path, EC.message());
Teresa Johnson9ba95f92016-08-11 14:58:12 +000085 WriteBitcodeToFile(&M, OS, /*ShouldPreserveUseListOrder=*/false);
86 return true;
87 };
88 };
89
90 setHook("0.preopt", PreOptModuleHook);
91 setHook("1.promote", PostPromoteModuleHook);
92 setHook("2.internalize", PostInternalizeModuleHook);
93 setHook("3.import", PostImportModuleHook);
94 setHook("4.opt", PostOptModuleHook);
95 setHook("5.precodegen", PreCodeGenModuleHook);
96
97 CombinedIndexHook = [=](const ModuleSummaryIndex &Index) {
Mehdi Aminieccffad2016-08-18 00:12:33 +000098 std::string Path = OutputFileName + "index.bc";
Teresa Johnson9ba95f92016-08-11 14:58:12 +000099 std::error_code EC;
100 raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
Davide Italianoa416d112016-09-17 22:32:42 +0000101 // Because -save-temps is a debugging feature, we report the error
102 // directly and exit.
103 if (EC)
104 reportOpenError(Path, EC.message());
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000105 WriteIndexToFile(Index, OS);
106 return true;
107 };
108
Mehdi Amini41af4302016-11-11 04:28:40 +0000109 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000110}
111
112namespace {
113
114std::unique_ptr<TargetMachine>
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000115createTargetMachine(Config &Conf, const Target *TheTarget, Module &M) {
116 StringRef TheTriple = M.getTargetTriple();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000117 SubtargetFeatures Features;
118 Features.getDefaultSubtargetFeatures(Triple(TheTriple));
Davide Italiano24c29b12016-09-07 01:08:31 +0000119 for (const std::string &A : Conf.MAttrs)
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000120 Features.AddFeature(A);
121
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000122 Reloc::Model RelocModel;
123 if (Conf.RelocModel)
124 RelocModel = *Conf.RelocModel;
125 else
126 RelocModel =
127 M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_;
128
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000129 return std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine(
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000130 TheTriple, Conf.CPU, Features.getString(), Conf.Options, RelocModel,
Davide Italiano24c29b12016-09-07 01:08:31 +0000131 Conf.CodeModel, Conf.CGOptLevel));
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000132}
133
Dehao Chen89d32262017-08-02 01:28:31 +0000134static void runNewPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
135 unsigned OptLevel, bool IsThinLTO) {
136 Optional<PGOOptions> PGOOpt;
137 if (!Conf.SampleProfile.empty())
138 PGOOpt = PGOOptions("", "", Conf.SampleProfile, false, true);
139
140 PassBuilder PB(TM, PGOOpt);
Davide Italiano0dd200e2017-01-24 00:58:24 +0000141 AAManager AA;
142
143 // Parse a custom AA pipeline if asked to.
144 assert(PB.parseAAPipeline(AA, "default"));
145
146 LoopAnalysisManager LAM;
147 FunctionAnalysisManager FAM;
148 CGSCCAnalysisManager CGAM;
149 ModuleAnalysisManager MAM;
150
151 // Register the AA manager first so that our version is the one used.
152 FAM.registerPass([&] { return std::move(AA); });
153
154 // Register all the basic analyses with the managers.
155 PB.registerModuleAnalyses(MAM);
156 PB.registerCGSCCAnalyses(CGAM);
157 PB.registerFunctionAnalyses(FAM);
158 PB.registerLoopAnalyses(LAM);
159 PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
160
161 ModulePassManager MPM;
162 // FIXME (davide): verify the input.
163
164 PassBuilder::OptimizationLevel OL;
165
166 switch (OptLevel) {
167 default:
168 llvm_unreachable("Invalid optimization level");
169 case 0:
170 OL = PassBuilder::O0;
171 break;
172 case 1:
173 OL = PassBuilder::O1;
174 break;
175 case 2:
176 OL = PassBuilder::O2;
177 break;
178 case 3:
179 OL = PassBuilder::O3;
180 break;
181 }
182
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000183 if (IsThinLTO)
184 MPM = PB.buildThinLTODefaultPipeline(OL, false /* DebugLogging */);
185 else
186 MPM = PB.buildLTODefaultPipeline(OL, false /* DebugLogging */);
Davide Italiano0dd200e2017-01-24 00:58:24 +0000187 MPM.run(Mod, MAM);
188
189 // FIXME (davide): verify the output.
190}
191
Davide Italianoec9612d2016-09-07 17:46:16 +0000192static void runNewPMCustomPasses(Module &Mod, TargetMachine *TM,
193 std::string PipelineDesc,
Davide Italiano14e9e8a2016-09-16 21:03:21 +0000194 std::string AAPipelineDesc,
Davide Italianoec9612d2016-09-07 17:46:16 +0000195 bool DisableVerify) {
196 PassBuilder PB(TM);
197 AAManager AA;
Davide Italiano14e9e8a2016-09-16 21:03:21 +0000198
199 // Parse a custom AA pipeline if asked to.
200 if (!AAPipelineDesc.empty())
201 if (!PB.parseAAPipeline(AA, AAPipelineDesc))
202 report_fatal_error("unable to parse AA pipeline description: " +
203 AAPipelineDesc);
204
Davide Italianoec9612d2016-09-07 17:46:16 +0000205 LoopAnalysisManager LAM;
206 FunctionAnalysisManager FAM;
207 CGSCCAnalysisManager CGAM;
208 ModuleAnalysisManager MAM;
209
210 // Register the AA manager first so that our version is the one used.
211 FAM.registerPass([&] { return std::move(AA); });
212
213 // Register all the basic analyses with the managers.
214 PB.registerModuleAnalyses(MAM);
215 PB.registerCGSCCAnalyses(CGAM);
216 PB.registerFunctionAnalyses(FAM);
217 PB.registerLoopAnalyses(LAM);
218 PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
219
220 ModulePassManager MPM;
221
222 // Always verify the input.
223 MPM.addPass(VerifierPass());
224
225 // Now, add all the passes we've been requested to.
226 if (!PB.parsePassPipeline(MPM, PipelineDesc))
227 report_fatal_error("unable to parse pass pipeline description: " +
228 PipelineDesc);
229
230 if (!DisableVerify)
231 MPM.addPass(VerifierPass());
232 MPM.run(Mod, MAM);
233}
234
Davide Italiano24c29b12016-09-07 01:08:31 +0000235static void runOldPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000236 bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
237 const ModuleSummaryIndex *ImportSummary) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000238 legacy::PassManager passes;
239 passes.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
240
241 PassManagerBuilder PMB;
242 PMB.LibraryInfo = new TargetLibraryInfoImpl(Triple(TM->getTargetTriple()));
243 PMB.Inliner = createFunctionInliningPass();
Peter Collingbournef7691d82017-03-22 18:22:59 +0000244 PMB.ExportSummary = ExportSummary;
245 PMB.ImportSummary = ImportSummary;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000246 // Unconditionally verify input since it is not verified before this
247 // point and has unknown origin.
248 PMB.VerifyInput = true;
Davide Italiano24c29b12016-09-07 01:08:31 +0000249 PMB.VerifyOutput = !Conf.DisableVerify;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000250 PMB.LoopVectorize = true;
251 PMB.SLPVectorize = true;
Davide Italiano24c29b12016-09-07 01:08:31 +0000252 PMB.OptLevel = Conf.OptLevel;
Dehao Chen27978002016-12-16 16:48:46 +0000253 PMB.PGOSampleUse = Conf.SampleProfile;
Davide Italiano8812f282016-11-24 00:23:09 +0000254 if (IsThinLTO)
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000255 PMB.populateThinLTOPassManager(passes);
256 else
257 PMB.populateLTOPassManager(passes);
Davide Italiano24c29b12016-09-07 01:08:31 +0000258 passes.run(Mod);
Davide Italiano1e9d3d32016-08-31 17:02:44 +0000259}
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000260
Davide Italiano24c29b12016-09-07 01:08:31 +0000261bool opt(Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000262 bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
263 const ModuleSummaryIndex *ImportSummary) {
Davide Italiano0dd200e2017-01-24 00:58:24 +0000264 // FIXME: Plumb the combined index into the new pass manager.
265 if (!Conf.OptPipeline.empty())
Davide Italiano14e9e8a2016-09-16 21:03:21 +0000266 runNewPMCustomPasses(Mod, TM, Conf.OptPipeline, Conf.AAPipeline,
267 Conf.DisableVerify);
Tim Shen4e912aa2017-06-01 23:13:44 +0000268 else if (Conf.UseNewPM)
Dehao Chen89d32262017-08-02 01:28:31 +0000269 runNewPMPasses(Conf, Mod, TM, Conf.OptLevel, IsThinLTO);
Davide Italiano0dd200e2017-01-24 00:58:24 +0000270 else
Peter Collingbournef7691d82017-03-22 18:22:59 +0000271 runOldPMPasses(Conf, Mod, TM, IsThinLTO, ExportSummary, ImportSummary);
Davide Italiano24c29b12016-09-07 01:08:31 +0000272 return !Conf.PostOptModuleHook || Conf.PostOptModuleHook(Task, Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000273}
274
Peter Collingbourne80186a52016-09-23 21:33:43 +0000275void codegen(Config &Conf, TargetMachine *TM, AddStreamFn AddStream,
Davide Italiano24c29b12016-09-07 01:08:31 +0000276 unsigned Task, Module &Mod) {
277 if (Conf.PreCodeGenModuleHook && !Conf.PreCodeGenModuleHook(Task, Mod))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000278 return;
279
Peter Collingbourne80186a52016-09-23 21:33:43 +0000280 auto Stream = AddStream(Task);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000281 legacy::PassManager CodeGenPasses;
Tobias Edler von Kochf454b9e2017-02-15 20:36:36 +0000282 if (TM->addPassesToEmitFile(CodeGenPasses, *Stream->OS, Conf.CGFileType))
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000283 report_fatal_error("Failed to setup codegen");
Davide Italiano24c29b12016-09-07 01:08:31 +0000284 CodeGenPasses.run(Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000285}
286
Peter Collingbourne80186a52016-09-23 21:33:43 +0000287void splitCodeGen(Config &C, TargetMachine *TM, AddStreamFn AddStream,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000288 unsigned ParallelCodeGenParallelismLevel,
Davide Italiano24c29b12016-09-07 01:08:31 +0000289 std::unique_ptr<Module> Mod) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000290 ThreadPool CodegenThreadPool(ParallelCodeGenParallelismLevel);
291 unsigned ThreadCount = 0;
292 const Target *T = &TM->getTarget();
293
294 SplitModule(
Davide Italiano24c29b12016-09-07 01:08:31 +0000295 std::move(Mod), ParallelCodeGenParallelismLevel,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000296 [&](std::unique_ptr<Module> MPart) {
297 // We want to clone the module in a new context to multi-thread the
298 // codegen. We do it by serializing partition modules to bitcode
299 // (while still on the main thread, in order to avoid data races) and
300 // spinning up new threads which deserialize the partitions into
301 // separate contexts.
302 // FIXME: Provide a more direct way to do this in LLVM.
303 SmallString<0> BC;
304 raw_svector_ostream BCOS(BC);
305 WriteBitcodeToFile(MPart.get(), BCOS);
306
307 // Enqueue the task
308 CodegenThreadPool.async(
309 [&](const SmallString<0> &BC, unsigned ThreadId) {
310 LTOLLVMContext Ctx(C);
Peter Collingbourned9445c42016-11-13 07:00:17 +0000311 Expected<std::unique_ptr<Module>> MOrErr = parseBitcodeFile(
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000312 MemoryBufferRef(StringRef(BC.data(), BC.size()), "ld-temp.o"),
313 Ctx);
314 if (!MOrErr)
315 report_fatal_error("Failed to read bitcode");
316 std::unique_ptr<Module> MPartInCtx = std::move(MOrErr.get());
317
318 std::unique_ptr<TargetMachine> TM =
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000319 createTargetMachine(C, T, *MPartInCtx);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000320
Peter Collingbourne80186a52016-09-23 21:33:43 +0000321 codegen(C, TM.get(), AddStream, ThreadId, *MPartInCtx);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000322 },
323 // Pass BC using std::move to ensure that it get moved rather than
324 // copied into the thread's context.
325 std::move(BC), ThreadCount++);
326 },
327 false);
Peter Collingbournef75609e2016-09-29 03:29:28 +0000328
329 // Because the inner lambda (which runs in a worker thread) captures our local
330 // variables, we need to wait for the worker threads to terminate before we
331 // can leave the function scope.
Peter Collingbourne0d5636e2016-09-29 01:28:36 +0000332 CodegenThreadPool.wait();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000333}
334
Davide Italiano24c29b12016-09-07 01:08:31 +0000335Expected<const Target *> initAndLookupTarget(Config &C, Module &Mod) {
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000336 if (!C.OverrideTriple.empty())
Davide Italiano24c29b12016-09-07 01:08:31 +0000337 Mod.setTargetTriple(C.OverrideTriple);
338 else if (Mod.getTargetTriple().empty())
339 Mod.setTargetTriple(C.DefaultTriple);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000340
341 std::string Msg;
Davide Italiano24c29b12016-09-07 01:08:31 +0000342 const Target *T = TargetRegistry::lookupTarget(Mod.getTargetTriple(), Msg);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000343 if (!T)
344 return make_error<StringError>(Msg, inconvertibleErrorCode());
345 return T;
346}
347
348}
349
Davide Italiano20a895c2017-02-13 14:39:51 +0000350static void
351finalizeOptimizationRemarks(std::unique_ptr<tool_output_file> DiagOutputFile) {
352 // Make sure we flush the diagnostic remarks file in case the linker doesn't
353 // call the global destructors before exiting.
354 if (!DiagOutputFile)
355 return;
356 DiagOutputFile->keep();
357 DiagOutputFile->os().flush();
358}
359
Peter Collingbourne80186a52016-09-23 21:33:43 +0000360Error lto::backend(Config &C, AddStreamFn AddStream,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000361 unsigned ParallelCodeGenParallelismLevel,
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000362 std::unique_ptr<Module> Mod,
363 ModuleSummaryIndex &CombinedIndex) {
Davide Italiano24c29b12016-09-07 01:08:31 +0000364 Expected<const Target *> TOrErr = initAndLookupTarget(C, *Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000365 if (!TOrErr)
366 return TOrErr.takeError();
367
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000368 std::unique_ptr<TargetMachine> TM = createTargetMachine(C, *TOrErr, *Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000369
Davide Italianoebd47192017-02-12 03:31:30 +0000370 // Setup optimization remarks.
371 auto DiagFileOrErr = lto::setupOptimizationRemarks(
372 Mod->getContext(), C.RemarksFilename, C.RemarksWithHotness);
373 if (!DiagFileOrErr)
374 return DiagFileOrErr.takeError();
Davide Italiano20a895c2017-02-13 14:39:51 +0000375 auto DiagnosticOutputFile = std::move(*DiagFileOrErr);
Davide Italianoebd47192017-02-12 03:31:30 +0000376
Davide Italiano20a895c2017-02-13 14:39:51 +0000377 if (!C.CodeGenOnly) {
Peter Collingbournef7691d82017-03-22 18:22:59 +0000378 if (!opt(C, TM.get(), 0, *Mod, /*IsThinLTO=*/false,
379 /*ExportSummary=*/&CombinedIndex, /*ImportSummary=*/nullptr)) {
Davide Italiano20a895c2017-02-13 14:39:51 +0000380 finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
Mehdi Amini41af4302016-11-11 04:28:40 +0000381 return Error::success();
Davide Italiano20a895c2017-02-13 14:39:51 +0000382 }
383 }
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000384
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000385 if (ParallelCodeGenParallelismLevel == 1) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000386 codegen(C, TM.get(), AddStream, 0, *Mod);
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000387 } else {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000388 splitCodeGen(C, TM.get(), AddStream, ParallelCodeGenParallelismLevel,
Davide Italiano24c29b12016-09-07 01:08:31 +0000389 std::move(Mod));
Mehdi Aminiadc0e262016-08-23 21:30:12 +0000390 }
Davide Italiano20a895c2017-02-13 14:39:51 +0000391 finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
Mehdi Amini41af4302016-11-11 04:28:40 +0000392 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000393}
394
Peter Collingbourne80186a52016-09-23 21:33:43 +0000395Error lto::thinBackend(Config &Conf, unsigned Task, AddStreamFn AddStream,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000396 Module &Mod, const ModuleSummaryIndex &CombinedIndex,
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000397 const FunctionImporter::ImportMapTy &ImportList,
398 const GVSummaryMapTy &DefinedGlobals,
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000399 MapVector<StringRef, BitcodeModule> &ModuleMap) {
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000400 Expected<const Target *> TOrErr = initAndLookupTarget(Conf, Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000401 if (!TOrErr)
402 return TOrErr.takeError();
403
Evgeniy Stepanovb9f1b012017-05-22 21:11:35 +0000404 std::unique_ptr<TargetMachine> TM = createTargetMachine(Conf, *TOrErr, Mod);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000405
Mehdi Aminid310b472016-08-22 06:25:41 +0000406 if (Conf.CodeGenOnly) {
Peter Collingbourne80186a52016-09-23 21:33:43 +0000407 codegen(Conf, TM.get(), AddStream, Task, Mod);
Mehdi Amini41af4302016-11-11 04:28:40 +0000408 return Error::success();
Mehdi Aminid310b472016-08-22 06:25:41 +0000409 }
410
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000411 if (Conf.PreOptModuleHook && !Conf.PreOptModuleHook(Task, Mod))
Mehdi Amini41af4302016-11-11 04:28:40 +0000412 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000413
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000414 renameModuleForThinLTO(Mod, CombinedIndex);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000415
Mehdi Amini8ac7b322016-08-18 00:59:24 +0000416 thinLTOResolveWeakForLinkerModule(Mod, DefinedGlobals);
417
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000418 if (Conf.PostPromoteModuleHook && !Conf.PostPromoteModuleHook(Task, Mod))
Mehdi Amini41af4302016-11-11 04:28:40 +0000419 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000420
421 if (!DefinedGlobals.empty())
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000422 thinLTOInternalizeModule(Mod, DefinedGlobals);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000423
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000424 if (Conf.PostInternalizeModuleHook &&
425 !Conf.PostInternalizeModuleHook(Task, Mod))
Mehdi Amini41af4302016-11-11 04:28:40 +0000426 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000427
428 auto ModuleLoader = [&](StringRef Identifier) {
Mehdi Amini9ec5a612016-08-23 16:53:34 +0000429 assert(Mod.getContext().isODRUniquingDebugTypes() &&
Davide Italiano63e8f442016-09-14 18:48:43 +0000430 "ODR Type uniquing should be enabled on the context");
Peter Collingbourne1a0720e2016-12-14 01:17:59 +0000431 auto I = ModuleMap.find(Identifier);
432 assert(I != ModuleMap.end());
433 return I->second.getLazyModule(Mod.getContext(),
Teresa Johnsona61f5e32016-12-16 21:25:01 +0000434 /*ShouldLazyLoadMetadata=*/true,
435 /*IsImporting*/ true);
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000436 };
437
438 FunctionImporter Importer(CombinedIndex, ModuleLoader);
Peter Collingbourne7f00d0a2016-11-09 17:49:19 +0000439 if (Error Err = Importer.importFunctions(Mod, ImportList).takeError())
440 return Err;
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000441
Mehdi Aminiacc50c42016-08-16 00:44:46 +0000442 if (Conf.PostImportModuleHook && !Conf.PostImportModuleHook(Task, Mod))
Mehdi Amini41af4302016-11-11 04:28:40 +0000443 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000444
Peter Collingbournef7691d82017-03-22 18:22:59 +0000445 if (!opt(Conf, TM.get(), Task, Mod, /*IsThinLTO=*/true,
446 /*ExportSummary=*/nullptr, /*ImportSummary=*/&CombinedIndex))
Mehdi Amini41af4302016-11-11 04:28:40 +0000447 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000448
Peter Collingbourne80186a52016-09-23 21:33:43 +0000449 codegen(Conf, TM.get(), AddStream, Task, Mod);
Mehdi Amini41af4302016-11-11 04:28:40 +0000450 return Error::success();
Teresa Johnson9ba95f92016-08-11 14:58:12 +0000451}