Use a range loop.
[oota-llvm.git] / lib / LTO / LTOCodeGenerator.cpp
1 //===-LTOCodeGenerator.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 the Link Time Optimization library. This library is
11 // intended to be used by linker to optimize code at link time.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/LTO/LTOCodeGenerator.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/Analysis/Passes.h"
18 #include "llvm/Bitcode/ReaderWriter.h"
19 #include "llvm/CodeGen/RuntimeLibcalls.h"
20 #include "llvm/Config/config.h"
21 #include "llvm/IR/Constants.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/IR/DerivedTypes.h"
24 #include "llvm/IR/DiagnosticInfo.h"
25 #include "llvm/IR/DiagnosticPrinter.h"
26 #include "llvm/IR/LLVMContext.h"
27 #include "llvm/IR/Mangler.h"
28 #include "llvm/IR/Module.h"
29 #include "llvm/IR/Verifier.h"
30 #include "llvm/InitializePasses.h"
31 #include "llvm/LTO/LTOModule.h"
32 #include "llvm/Linker/Linker.h"
33 #include "llvm/MC/MCAsmInfo.h"
34 #include "llvm/MC/MCContext.h"
35 #include "llvm/MC/SubtargetFeature.h"
36 #include "llvm/PassManager.h"
37 #include "llvm/Support/CommandLine.h"
38 #include "llvm/Support/FileSystem.h"
39 #include "llvm/Support/FormattedStream.h"
40 #include "llvm/Support/Host.h"
41 #include "llvm/Support/MemoryBuffer.h"
42 #include "llvm/Support/Signals.h"
43 #include "llvm/Support/TargetRegistry.h"
44 #include "llvm/Support/TargetSelect.h"
45 #include "llvm/Support/ToolOutputFile.h"
46 #include "llvm/Support/raw_ostream.h"
47 #include "llvm/Support/system_error.h"
48 #include "llvm/Target/TargetLibraryInfo.h"
49 #include "llvm/Target/TargetLowering.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include "llvm/Target/TargetRegisterInfo.h"
52 #include "llvm/Transforms/IPO.h"
53 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
54 #include "llvm/Transforms/ObjCARC.h"
55 using namespace llvm;
56
57 const char* LTOCodeGenerator::getVersionString() {
58 #ifdef LLVM_VERSION_INFO
59   return PACKAGE_NAME " version " PACKAGE_VERSION ", " LLVM_VERSION_INFO;
60 #else
61   return PACKAGE_NAME " version " PACKAGE_VERSION;
62 #endif
63 }
64
65 LTOCodeGenerator::LTOCodeGenerator()
66     : Context(getGlobalContext()), IRLinker(new Module("ld-temp.o", Context)),
67       TargetMach(nullptr), EmitDwarfDebugInfo(false),
68       ScopeRestrictionsDone(false), CodeModel(LTO_CODEGEN_PIC_MODEL_DEFAULT),
69       NativeObjectFile(nullptr), DiagHandler(nullptr), DiagContext(nullptr) {
70   initializeLTOPasses();
71 }
72
73 LTOCodeGenerator::~LTOCodeGenerator() {
74   delete TargetMach;
75   delete NativeObjectFile;
76   TargetMach = nullptr;
77   NativeObjectFile = nullptr;
78
79   IRLinker.deleteModule();
80
81   for (std::vector<char *>::iterator I = CodegenOptions.begin(),
82                                      E = CodegenOptions.end();
83        I != E; ++I)
84     free(*I);
85 }
86
87 // Initialize LTO passes. Please keep this funciton in sync with
88 // PassManagerBuilder::populateLTOPassManager(), and make sure all LTO
89 // passes are initialized.
90 void LTOCodeGenerator::initializeLTOPasses() {
91   PassRegistry &R = *PassRegistry::getPassRegistry();
92
93   initializeInternalizePassPass(R);
94   initializeIPSCCPPass(R);
95   initializeGlobalOptPass(R);
96   initializeConstantMergePass(R);
97   initializeDAHPass(R);
98   initializeInstCombinerPass(R);
99   initializeSimpleInlinerPass(R);
100   initializePruneEHPass(R);
101   initializeGlobalDCEPass(R);
102   initializeArgPromotionPass(R);
103   initializeJumpThreadingPass(R);
104   initializeSROAPass(R);
105   initializeSROA_DTPass(R);
106   initializeSROA_SSAUpPass(R);
107   initializeFunctionAttrsPass(R);
108   initializeGlobalsModRefPass(R);
109   initializeLICMPass(R);
110   initializeGVNPass(R);
111   initializeMemCpyOptPass(R);
112   initializeDCEPass(R);
113   initializeCFGSimplifyPassPass(R);
114 }
115
116 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
117   bool ret = IRLinker.linkInModule(mod->getLLVVMModule(), &errMsg);
118
119   const std::vector<const char*> &undefs = mod->getAsmUndefinedRefs();
120   for (int i = 0, e = undefs.size(); i != e; ++i)
121     AsmUndefinedRefs[undefs[i]] = 1;
122
123   return !ret;
124 }
125
126 void LTOCodeGenerator::setTargetOptions(TargetOptions options) {
127   Options.LessPreciseFPMADOption = options.LessPreciseFPMADOption;
128   Options.NoFramePointerElim = options.NoFramePointerElim;
129   Options.AllowFPOpFusion = options.AllowFPOpFusion;
130   Options.UnsafeFPMath = options.UnsafeFPMath;
131   Options.NoInfsFPMath = options.NoInfsFPMath;
132   Options.NoNaNsFPMath = options.NoNaNsFPMath;
133   Options.HonorSignDependentRoundingFPMathOption =
134     options.HonorSignDependentRoundingFPMathOption;
135   Options.UseSoftFloat = options.UseSoftFloat;
136   Options.FloatABIType = options.FloatABIType;
137   Options.NoZerosInBSS = options.NoZerosInBSS;
138   Options.GuaranteedTailCallOpt = options.GuaranteedTailCallOpt;
139   Options.DisableTailCalls = options.DisableTailCalls;
140   Options.StackAlignmentOverride = options.StackAlignmentOverride;
141   Options.TrapFuncName = options.TrapFuncName;
142   Options.PositionIndependentExecutable = options.PositionIndependentExecutable;
143   Options.UseInitArray = options.UseInitArray;
144 }
145
146 void LTOCodeGenerator::setDebugInfo(lto_debug_model debug) {
147   switch (debug) {
148   case LTO_DEBUG_MODEL_NONE:
149     EmitDwarfDebugInfo = false;
150     return;
151
152   case LTO_DEBUG_MODEL_DWARF:
153     EmitDwarfDebugInfo = true;
154     return;
155   }
156   llvm_unreachable("Unknown debug format!");
157 }
158
159 void LTOCodeGenerator::setCodePICModel(lto_codegen_model model) {
160   switch (model) {
161   case LTO_CODEGEN_PIC_MODEL_STATIC:
162   case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
163   case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
164   case LTO_CODEGEN_PIC_MODEL_DEFAULT:
165     CodeModel = model;
166     return;
167   }
168   llvm_unreachable("Unknown PIC model!");
169 }
170
171 bool LTOCodeGenerator::writeMergedModules(const char *path,
172                                           std::string &errMsg) {
173   if (!determineTarget(errMsg))
174     return false;
175
176   // mark which symbols can not be internalized
177   applyScopeRestrictions();
178
179   // create output file
180   std::string ErrInfo;
181   tool_output_file Out(path, ErrInfo, sys::fs::F_None);
182   if (!ErrInfo.empty()) {
183     errMsg = "could not open bitcode file for writing: ";
184     errMsg += path;
185     return false;
186   }
187
188   // write bitcode to it
189   WriteBitcodeToFile(IRLinker.getModule(), Out.os());
190   Out.os().close();
191
192   if (Out.os().has_error()) {
193     errMsg = "could not write bitcode file: ";
194     errMsg += path;
195     Out.os().clear_error();
196     return false;
197   }
198
199   Out.keep();
200   return true;
201 }
202
203 bool LTOCodeGenerator::compile_to_file(const char** name,
204                                        bool disableOpt,
205                                        bool disableInline,
206                                        bool disableGVNLoadPRE,
207                                        std::string& errMsg) {
208   // make unique temp .o file to put generated object file
209   SmallString<128> Filename;
210   int FD;
211   error_code EC = sys::fs::createTemporaryFile("lto-llvm", "o", FD, Filename);
212   if (EC) {
213     errMsg = EC.message();
214     return false;
215   }
216
217   // generate object file
218   tool_output_file objFile(Filename.c_str(), FD);
219
220   bool genResult = generateObjectFile(objFile.os(), disableOpt, disableInline,
221                                       disableGVNLoadPRE, errMsg);
222   objFile.os().close();
223   if (objFile.os().has_error()) {
224     objFile.os().clear_error();
225     sys::fs::remove(Twine(Filename));
226     return false;
227   }
228
229   objFile.keep();
230   if (!genResult) {
231     sys::fs::remove(Twine(Filename));
232     return false;
233   }
234
235   NativeObjectPath = Filename.c_str();
236   *name = NativeObjectPath.c_str();
237   return true;
238 }
239
240 const void* LTOCodeGenerator::compile(size_t* length,
241                                       bool disableOpt,
242                                       bool disableInline,
243                                       bool disableGVNLoadPRE,
244                                       std::string& errMsg) {
245   const char *name;
246   if (!compile_to_file(&name, disableOpt, disableInline, disableGVNLoadPRE,
247                        errMsg))
248     return nullptr;
249
250   // remove old buffer if compile() called twice
251   delete NativeObjectFile;
252
253   // read .o file into memory buffer
254   std::unique_ptr<MemoryBuffer> BuffPtr;
255   if (error_code ec = MemoryBuffer::getFile(name, BuffPtr, -1, false)) {
256     errMsg = ec.message();
257     sys::fs::remove(NativeObjectPath);
258     return nullptr;
259   }
260   NativeObjectFile = BuffPtr.release();
261
262   // remove temp files
263   sys::fs::remove(NativeObjectPath);
264
265   // return buffer, unless error
266   if (!NativeObjectFile)
267     return nullptr;
268   *length = NativeObjectFile->getBufferSize();
269   return NativeObjectFile->getBufferStart();
270 }
271
272 bool LTOCodeGenerator::determineTarget(std::string &errMsg) {
273   if (TargetMach)
274     return true;
275
276   std::string TripleStr = IRLinker.getModule()->getTargetTriple();
277   if (TripleStr.empty())
278     TripleStr = sys::getDefaultTargetTriple();
279   llvm::Triple Triple(TripleStr);
280
281   // create target machine from info for merged modules
282   const Target *march = TargetRegistry::lookupTarget(TripleStr, errMsg);
283   if (!march)
284     return false;
285
286   // The relocation model is actually a static member of TargetMachine and
287   // needs to be set before the TargetMachine is instantiated.
288   Reloc::Model RelocModel = Reloc::Default;
289   switch (CodeModel) {
290   case LTO_CODEGEN_PIC_MODEL_STATIC:
291     RelocModel = Reloc::Static;
292     break;
293   case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
294     RelocModel = Reloc::PIC_;
295     break;
296   case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
297     RelocModel = Reloc::DynamicNoPIC;
298     break;
299   case LTO_CODEGEN_PIC_MODEL_DEFAULT:
300     // RelocModel is already the default, so leave it that way.
301     break;
302   }
303
304   // Construct LTOModule, hand over ownership of module and target. Use MAttr as
305   // the default set of features.
306   SubtargetFeatures Features(MAttr);
307   Features.getDefaultSubtargetFeatures(Triple);
308   std::string FeatureStr = Features.getString();
309   // Set a default CPU for Darwin triples.
310   if (MCpu.empty() && Triple.isOSDarwin()) {
311     if (Triple.getArch() == llvm::Triple::x86_64)
312       MCpu = "core2";
313     else if (Triple.getArch() == llvm::Triple::x86)
314       MCpu = "yonah";
315     else if (Triple.getArch() == llvm::Triple::arm64)
316       MCpu = "cyclone";
317   }
318
319   TargetMach = march->createTargetMachine(TripleStr, MCpu, FeatureStr, Options,
320                                           RelocModel, CodeModel::Default,
321                                           CodeGenOpt::Aggressive);
322   return true;
323 }
324
325 void LTOCodeGenerator::
326 applyRestriction(GlobalValue &GV,
327                  const ArrayRef<StringRef> &Libcalls,
328                  std::vector<const char*> &MustPreserveList,
329                  SmallPtrSet<GlobalValue*, 8> &AsmUsed,
330                  Mangler &Mangler) {
331   // There are no restrictions to apply to declarations.
332   if (GV.isDeclaration())
333     return;
334
335   // There is nothing more restrictive than private linkage.
336   if (GV.hasPrivateLinkage())
337     return;
338
339   SmallString<64> Buffer;
340   TargetMach->getNameWithPrefix(Buffer, &GV, Mangler);
341
342   if (MustPreserveSymbols.count(Buffer))
343     MustPreserveList.push_back(GV.getName().data());
344   if (AsmUndefinedRefs.count(Buffer))
345     AsmUsed.insert(&GV);
346
347   // Conservatively append user-supplied runtime library functions to
348   // llvm.compiler.used.  These could be internalized and deleted by
349   // optimizations like -globalopt, causing problems when later optimizations
350   // add new library calls (e.g., llvm.memset => memset and printf => puts).
351   // Leave it to the linker to remove any dead code (e.g. with -dead_strip).
352   if (isa<Function>(GV) &&
353       std::binary_search(Libcalls.begin(), Libcalls.end(), GV.getName()))
354     AsmUsed.insert(&GV);
355 }
356
357 static void findUsedValues(GlobalVariable *LLVMUsed,
358                            SmallPtrSet<GlobalValue*, 8> &UsedValues) {
359   if (!LLVMUsed) return;
360
361   ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
362   for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i)
363     if (GlobalValue *GV =
364         dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
365       UsedValues.insert(GV);
366 }
367
368 static void accumulateAndSortLibcalls(std::vector<StringRef> &Libcalls,
369                                       const TargetLibraryInfo& TLI,
370                                       const TargetLowering *Lowering)
371 {
372   // TargetLibraryInfo has info on C runtime library calls on the current
373   // target.
374   for (unsigned I = 0, E = static_cast<unsigned>(LibFunc::NumLibFuncs);
375        I != E; ++I) {
376     LibFunc::Func F = static_cast<LibFunc::Func>(I);
377     if (TLI.has(F))
378       Libcalls.push_back(TLI.getName(F));
379   }
380
381   // TargetLowering has info on library calls that CodeGen expects to be
382   // available, both from the C runtime and compiler-rt.
383   if (Lowering)
384     for (unsigned I = 0, E = static_cast<unsigned>(RTLIB::UNKNOWN_LIBCALL);
385          I != E; ++I)
386       if (const char *Name
387           = Lowering->getLibcallName(static_cast<RTLIB::Libcall>(I)))
388         Libcalls.push_back(Name);
389
390   array_pod_sort(Libcalls.begin(), Libcalls.end());
391   Libcalls.erase(std::unique(Libcalls.begin(), Libcalls.end()),
392                  Libcalls.end());
393 }
394
395 void LTOCodeGenerator::applyScopeRestrictions() {
396   if (ScopeRestrictionsDone)
397     return;
398   Module *mergedModule = IRLinker.getModule();
399
400   // Start off with a verification pass.
401   PassManager passes;
402   passes.add(createVerifierPass());
403   passes.add(createDebugInfoVerifierPass());
404
405   // mark which symbols can not be internalized
406   Mangler Mangler(TargetMach->getDataLayout());
407   std::vector<const char*> MustPreserveList;
408   SmallPtrSet<GlobalValue*, 8> AsmUsed;
409   std::vector<StringRef> Libcalls;
410   TargetLibraryInfo TLI(Triple(TargetMach->getTargetTriple()));
411   accumulateAndSortLibcalls(Libcalls, TLI, TargetMach->getTargetLowering());
412
413   for (Module::iterator f = mergedModule->begin(),
414          e = mergedModule->end(); f != e; ++f)
415     applyRestriction(*f, Libcalls, MustPreserveList, AsmUsed, Mangler);
416   for (Module::global_iterator v = mergedModule->global_begin(),
417          e = mergedModule->global_end(); v !=  e; ++v)
418     applyRestriction(*v, Libcalls, MustPreserveList, AsmUsed, Mangler);
419   for (Module::alias_iterator a = mergedModule->alias_begin(),
420          e = mergedModule->alias_end(); a != e; ++a)
421     applyRestriction(*a, Libcalls, MustPreserveList, AsmUsed, Mangler);
422
423   GlobalVariable *LLVMCompilerUsed =
424     mergedModule->getGlobalVariable("llvm.compiler.used");
425   findUsedValues(LLVMCompilerUsed, AsmUsed);
426   if (LLVMCompilerUsed)
427     LLVMCompilerUsed->eraseFromParent();
428
429   if (!AsmUsed.empty()) {
430     llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(Context);
431     std::vector<Constant*> asmUsed2;
432     for (auto *GV : AsmUsed) {
433       Constant *c = ConstantExpr::getBitCast(GV, i8PTy);
434       asmUsed2.push_back(c);
435     }
436
437     llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
438     LLVMCompilerUsed =
439       new llvm::GlobalVariable(*mergedModule, ATy, false,
440                                llvm::GlobalValue::AppendingLinkage,
441                                llvm::ConstantArray::get(ATy, asmUsed2),
442                                "llvm.compiler.used");
443
444     LLVMCompilerUsed->setSection("llvm.metadata");
445   }
446
447   passes.add(createInternalizePass(MustPreserveList));
448
449   // apply scope restrictions
450   passes.run(*mergedModule);
451
452   ScopeRestrictionsDone = true;
453 }
454
455 /// Optimize merged modules using various IPO passes
456 bool LTOCodeGenerator::generateObjectFile(raw_ostream &out,
457                                           bool DisableOpt,
458                                           bool DisableInline,
459                                           bool DisableGVNLoadPRE,
460                                           std::string &errMsg) {
461   if (!this->determineTarget(errMsg))
462     return false;
463
464   Module *mergedModule = IRLinker.getModule();
465
466   // Mark which symbols can not be internalized
467   this->applyScopeRestrictions();
468
469   // Instantiate the pass manager to organize the passes.
470   PassManager passes;
471
472   // Start off with a verification pass.
473   passes.add(createVerifierPass());
474   passes.add(createDebugInfoVerifierPass());
475
476   // Add an appropriate DataLayout instance for this module...
477   mergedModule->setDataLayout(TargetMach->getDataLayout());
478   passes.add(new DataLayoutPass(mergedModule));
479
480   // Add appropriate TargetLibraryInfo for this module.
481   passes.add(new TargetLibraryInfo(Triple(TargetMach->getTargetTriple())));
482
483   TargetMach->addAnalysisPasses(passes);
484
485   // Enabling internalize here would use its AllButMain variant. It
486   // keeps only main if it exists and does nothing for libraries. Instead
487   // we create the pass ourselves with the symbol list provided by the linker.
488   if (!DisableOpt)
489     PassManagerBuilder().populateLTOPassManager(passes,
490                                               /*Internalize=*/false,
491                                               !DisableInline,
492                                               DisableGVNLoadPRE);
493
494   // Make sure everything is still good.
495   passes.add(createVerifierPass());
496   passes.add(createDebugInfoVerifierPass());
497
498   PassManager codeGenPasses;
499
500   codeGenPasses.add(new DataLayoutPass(mergedModule));
501
502   formatted_raw_ostream Out(out);
503
504   // If the bitcode files contain ARC code and were compiled with optimization,
505   // the ObjCARCContractPass must be run, so do it unconditionally here.
506   codeGenPasses.add(createObjCARCContractPass());
507
508   if (TargetMach->addPassesToEmitFile(codeGenPasses, Out,
509                                       TargetMachine::CGFT_ObjectFile)) {
510     errMsg = "target file type not supported";
511     return false;
512   }
513
514   // Run our queue of passes all at once now, efficiently.
515   passes.run(*mergedModule);
516
517   // Run the code generator, and write assembly file
518   codeGenPasses.run(*mergedModule);
519
520   return true;
521 }
522
523 /// setCodeGenDebugOptions - Set codegen debugging options to aid in debugging
524 /// LTO problems.
525 void LTOCodeGenerator::setCodeGenDebugOptions(const char *options) {
526   for (std::pair<StringRef, StringRef> o = getToken(options);
527        !o.first.empty(); o = getToken(o.second)) {
528     // ParseCommandLineOptions() expects argv[0] to be program name. Lazily add
529     // that.
530     if (CodegenOptions.empty())
531       CodegenOptions.push_back(strdup("libLLVMLTO"));
532     CodegenOptions.push_back(strdup(o.first.str().c_str()));
533   }
534 }
535
536 void LTOCodeGenerator::parseCodeGenDebugOptions() {
537   // if options were requested, set them
538   if (!CodegenOptions.empty())
539     cl::ParseCommandLineOptions(CodegenOptions.size(),
540                                 const_cast<char **>(&CodegenOptions[0]));
541 }
542
543 void LTOCodeGenerator::DiagnosticHandler(const DiagnosticInfo &DI,
544                                          void *Context) {
545   ((LTOCodeGenerator *)Context)->DiagnosticHandler2(DI);
546 }
547
548 void LTOCodeGenerator::DiagnosticHandler2(const DiagnosticInfo &DI) {
549   // Map the LLVM internal diagnostic severity to the LTO diagnostic severity.
550   lto_codegen_diagnostic_severity_t Severity;
551   switch (DI.getSeverity()) {
552   case DS_Error:
553     Severity = LTO_DS_ERROR;
554     break;
555   case DS_Warning:
556     Severity = LTO_DS_WARNING;
557     break;
558   case DS_Remark:
559     Severity = LTO_DS_REMARK;
560     break;
561   case DS_Note:
562     Severity = LTO_DS_NOTE;
563     break;
564   }
565   // Create the string that will be reported to the external diagnostic handler.
566   std::string MsgStorage;
567   raw_string_ostream Stream(MsgStorage);
568   DiagnosticPrinterRawOStream DP(Stream);
569   DI.print(DP);
570   Stream.flush();
571
572   // If this method has been called it means someone has set up an external
573   // diagnostic handler. Assert on that.
574   assert(DiagHandler && "Invalid diagnostic handler");
575   (*DiagHandler)(Severity, MsgStorage.c_str(), DiagContext);
576 }
577
578 void
579 LTOCodeGenerator::setDiagnosticHandler(lto_diagnostic_handler_t DiagHandler,
580                                        void *Ctxt) {
581   this->DiagHandler = DiagHandler;
582   this->DiagContext = Ctxt;
583   if (!DiagHandler)
584     return Context.setDiagnosticHandler(nullptr, nullptr);
585   // Register the LTOCodeGenerator stub in the LLVMContext to forward the
586   // diagnostic to the external DiagHandler.
587   Context.setDiagnosticHandler(LTOCodeGenerator::DiagnosticHandler, this);
588 }