1 //===-LTOCodeGenerator.cpp - LLVM Link Time Optimizer ---------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
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.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/LTO/LTOCodeGenerator.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/Analysis/Passes.h"
18 #include "llvm/Analysis/TargetLibraryInfo.h"
19 #include "llvm/Analysis/TargetTransformInfo.h"
20 #include "llvm/Bitcode/ReaderWriter.h"
21 #include "llvm/CodeGen/RuntimeLibcalls.h"
22 #include "llvm/Config/config.h"
23 #include "llvm/IR/Constants.h"
24 #include "llvm/IR/DataLayout.h"
25 #include "llvm/IR/DerivedTypes.h"
26 #include "llvm/IR/DiagnosticInfo.h"
27 #include "llvm/IR/DiagnosticPrinter.h"
28 #include "llvm/IR/LLVMContext.h"
29 #include "llvm/IR/LegacyPassManager.h"
30 #include "llvm/IR/Mangler.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/IR/UseListOrder.h"
33 #include "llvm/IR/Verifier.h"
34 #include "llvm/InitializePasses.h"
35 #include "llvm/LTO/LTOModule.h"
36 #include "llvm/Linker/Linker.h"
37 #include "llvm/MC/MCAsmInfo.h"
38 #include "llvm/MC/MCContext.h"
39 #include "llvm/MC/SubtargetFeature.h"
40 #include "llvm/Support/CommandLine.h"
41 #include "llvm/Support/FileSystem.h"
42 #include "llvm/Support/Host.h"
43 #include "llvm/Support/MemoryBuffer.h"
44 #include "llvm/Support/Signals.h"
45 #include "llvm/Support/TargetRegistry.h"
46 #include "llvm/Support/TargetSelect.h"
47 #include "llvm/Support/ToolOutputFile.h"
48 #include "llvm/Support/raw_ostream.h"
49 #include "llvm/Target/TargetLowering.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include "llvm/Target/TargetRegisterInfo.h"
52 #include "llvm/Target/TargetSubtargetInfo.h"
53 #include "llvm/Transforms/IPO.h"
54 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
55 #include "llvm/Transforms/ObjCARC.h"
56 #include <system_error>
59 const char* LTOCodeGenerator::getVersionString() {
60 #ifdef LLVM_VERSION_INFO
61 return PACKAGE_NAME " version " PACKAGE_VERSION ", " LLVM_VERSION_INFO;
63 return PACKAGE_NAME " version " PACKAGE_VERSION;
67 LTOCodeGenerator::LTOCodeGenerator()
68 : Context(getGlobalContext()), IRLinker(new Module("ld-temp.o", Context)) {
72 LTOCodeGenerator::LTOCodeGenerator(std::unique_ptr<LLVMContext> Context)
73 : OwnedContext(std::move(Context)), Context(*OwnedContext),
74 IRLinker(new Module("ld-temp.o", *OwnedContext)), OptLevel(2) {
78 void LTOCodeGenerator::initialize() {
80 EmitDwarfDebugInfo = false;
81 ScopeRestrictionsDone = false;
82 CodeModel = LTO_CODEGEN_PIC_MODEL_DEFAULT;
83 DiagHandler = nullptr;
84 DiagContext = nullptr;
85 OwnedModule = nullptr;
87 initializeLTOPasses();
90 void LTOCodeGenerator::destroyMergedModule() {
92 assert(IRLinker.getModule() == &OwnedModule->getModule() &&
93 "The linker's module should be the same as the owned module");
95 OwnedModule = nullptr;
96 } else if (IRLinker.getModule())
97 IRLinker.deleteModule();
100 LTOCodeGenerator::~LTOCodeGenerator() {
101 destroyMergedModule();
104 TargetMach = nullptr;
106 for (std::vector<char *>::iterator I = CodegenOptions.begin(),
107 E = CodegenOptions.end();
112 // Initialize LTO passes. Please keep this funciton in sync with
113 // PassManagerBuilder::populateLTOPassManager(), and make sure all LTO
114 // passes are initialized.
115 void LTOCodeGenerator::initializeLTOPasses() {
116 PassRegistry &R = *PassRegistry::getPassRegistry();
118 initializeInternalizePassPass(R);
119 initializeIPSCCPPass(R);
120 initializeGlobalOptPass(R);
121 initializeConstantMergePass(R);
122 initializeDAHPass(R);
123 initializeInstructionCombiningPassPass(R);
124 initializeSimpleInlinerPass(R);
125 initializePruneEHPass(R);
126 initializeGlobalDCEPass(R);
127 initializeArgPromotionPass(R);
128 initializeJumpThreadingPass(R);
129 initializeSROAPass(R);
130 initializeSROA_DTPass(R);
131 initializeSROA_SSAUpPass(R);
132 initializeFunctionAttrsPass(R);
133 initializeGlobalsModRefPass(R);
134 initializeLICMPass(R);
135 initializeMergedLoadStoreMotionPass(R);
136 initializeGVNPass(R);
137 initializeMemCpyOptPass(R);
138 initializeDCEPass(R);
139 initializeCFGSimplifyPassPass(R);
142 bool LTOCodeGenerator::addModule(LTOModule *mod) {
143 assert(&mod->getModule().getContext() == &Context &&
144 "Expected module in same context");
146 bool ret = IRLinker.linkInModule(&mod->getModule());
148 const std::vector<const char*> &undefs = mod->getAsmUndefinedRefs();
149 for (int i = 0, e = undefs.size(); i != e; ++i)
150 AsmUndefinedRefs[undefs[i]] = 1;
155 void LTOCodeGenerator::setModule(LTOModule *Mod) {
156 assert(&Mod->getModule().getContext() == &Context &&
157 "Expected module in same context");
159 // Delete the old merged module.
160 destroyMergedModule();
161 AsmUndefinedRefs.clear();
164 IRLinker.setModule(&Mod->getModule());
166 const std::vector<const char*> &Undefs = Mod->getAsmUndefinedRefs();
167 for (int I = 0, E = Undefs.size(); I != E; ++I)
168 AsmUndefinedRefs[Undefs[I]] = 1;
171 void LTOCodeGenerator::setTargetOptions(TargetOptions options) {
175 void LTOCodeGenerator::setDebugInfo(lto_debug_model debug) {
177 case LTO_DEBUG_MODEL_NONE:
178 EmitDwarfDebugInfo = false;
181 case LTO_DEBUG_MODEL_DWARF:
182 EmitDwarfDebugInfo = true;
185 llvm_unreachable("Unknown debug format!");
188 void LTOCodeGenerator::setCodePICModel(lto_codegen_model model) {
190 case LTO_CODEGEN_PIC_MODEL_STATIC:
191 case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
192 case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
193 case LTO_CODEGEN_PIC_MODEL_DEFAULT:
197 llvm_unreachable("Unknown PIC model!");
200 bool LTOCodeGenerator::writeMergedModules(const char *path,
201 std::string &errMsg) {
202 if (!determineTarget(errMsg))
205 // mark which symbols can not be internalized
206 applyScopeRestrictions();
208 // create output file
210 tool_output_file Out(path, EC, sys::fs::F_None);
212 errMsg = "could not open bitcode file for writing: ";
217 // write bitcode to it
218 WriteBitcodeToFile(IRLinker.getModule(), Out.os(),
219 shouldPreserveBitcodeUseListOrder());
222 if (Out.os().has_error()) {
223 errMsg = "could not write bitcode file: ";
225 Out.os().clear_error();
233 bool LTOCodeGenerator::compileOptimizedToFile(const char **name,
234 std::string &errMsg) {
235 // make unique temp .o file to put generated object file
236 SmallString<128> Filename;
239 sys::fs::createTemporaryFile("lto-llvm", "o", FD, Filename);
241 errMsg = EC.message();
245 // generate object file
246 tool_output_file objFile(Filename.c_str(), FD);
248 bool genResult = compileOptimized(objFile.os(), errMsg);
249 objFile.os().close();
250 if (objFile.os().has_error()) {
251 objFile.os().clear_error();
252 sys::fs::remove(Twine(Filename));
258 sys::fs::remove(Twine(Filename));
262 NativeObjectPath = Filename.c_str();
263 *name = NativeObjectPath.c_str();
267 const void *LTOCodeGenerator::compileOptimized(size_t *length,
268 std::string &errMsg) {
270 if (!compileOptimizedToFile(&name, errMsg))
273 // read .o file into memory buffer
274 ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
275 MemoryBuffer::getFile(name, -1, false);
276 if (std::error_code EC = BufferOrErr.getError()) {
277 errMsg = EC.message();
278 sys::fs::remove(NativeObjectPath);
281 NativeObjectFile = std::move(*BufferOrErr);
284 sys::fs::remove(NativeObjectPath);
286 // return buffer, unless error
287 if (!NativeObjectFile)
289 *length = NativeObjectFile->getBufferSize();
290 return NativeObjectFile->getBufferStart();
294 bool LTOCodeGenerator::compile_to_file(const char **name,
296 bool disableGVNLoadPRE,
297 bool disableVectorization,
298 std::string &errMsg) {
299 if (!optimize(disableInline, disableGVNLoadPRE,
300 disableVectorization, errMsg))
303 return compileOptimizedToFile(name, errMsg);
306 const void* LTOCodeGenerator::compile(size_t *length,
308 bool disableGVNLoadPRE,
309 bool disableVectorization,
310 std::string &errMsg) {
311 if (!optimize(disableInline, disableGVNLoadPRE,
312 disableVectorization, errMsg))
315 return compileOptimized(length, errMsg);
318 bool LTOCodeGenerator::determineTarget(std::string &errMsg) {
322 std::string TripleStr = IRLinker.getModule()->getTargetTriple();
323 if (TripleStr.empty())
324 TripleStr = sys::getDefaultTargetTriple();
325 llvm::Triple Triple(TripleStr);
327 // create target machine from info for merged modules
328 const Target *march = TargetRegistry::lookupTarget(TripleStr, errMsg);
332 // The relocation model is actually a static member of TargetMachine and
333 // needs to be set before the TargetMachine is instantiated.
334 Reloc::Model RelocModel = Reloc::Default;
336 case LTO_CODEGEN_PIC_MODEL_STATIC:
337 RelocModel = Reloc::Static;
339 case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
340 RelocModel = Reloc::PIC_;
342 case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
343 RelocModel = Reloc::DynamicNoPIC;
345 case LTO_CODEGEN_PIC_MODEL_DEFAULT:
346 // RelocModel is already the default, so leave it that way.
350 // Construct LTOModule, hand over ownership of module and target. Use MAttr as
351 // the default set of features.
352 SubtargetFeatures Features(MAttr);
353 Features.getDefaultSubtargetFeatures(Triple);
354 std::string FeatureStr = Features.getString();
355 // Set a default CPU for Darwin triples.
356 if (MCpu.empty() && Triple.isOSDarwin()) {
357 if (Triple.getArch() == llvm::Triple::x86_64)
359 else if (Triple.getArch() == llvm::Triple::x86)
361 else if (Triple.getArch() == llvm::Triple::aarch64)
365 CodeGenOpt::Level CGOptLevel;
368 CGOptLevel = CodeGenOpt::None;
371 CGOptLevel = CodeGenOpt::Less;
374 CGOptLevel = CodeGenOpt::Default;
377 CGOptLevel = CodeGenOpt::Aggressive;
381 TargetMach = march->createTargetMachine(TripleStr, MCpu, FeatureStr, Options,
382 RelocModel, CodeModel::Default,
387 void LTOCodeGenerator::
388 applyRestriction(GlobalValue &GV,
389 ArrayRef<StringRef> Libcalls,
390 std::vector<const char*> &MustPreserveList,
391 SmallPtrSetImpl<GlobalValue*> &AsmUsed,
393 // There are no restrictions to apply to declarations.
394 if (GV.isDeclaration())
397 // There is nothing more restrictive than private linkage.
398 if (GV.hasPrivateLinkage())
401 SmallString<64> Buffer;
402 TargetMach->getNameWithPrefix(Buffer, &GV, Mangler);
404 if (MustPreserveSymbols.count(Buffer))
405 MustPreserveList.push_back(GV.getName().data());
406 if (AsmUndefinedRefs.count(Buffer))
409 // Conservatively append user-supplied runtime library functions to
410 // llvm.compiler.used. These could be internalized and deleted by
411 // optimizations like -globalopt, causing problems when later optimizations
412 // add new library calls (e.g., llvm.memset => memset and printf => puts).
413 // Leave it to the linker to remove any dead code (e.g. with -dead_strip).
414 if (isa<Function>(GV) &&
415 std::binary_search(Libcalls.begin(), Libcalls.end(), GV.getName()))
419 static void findUsedValues(GlobalVariable *LLVMUsed,
420 SmallPtrSetImpl<GlobalValue*> &UsedValues) {
421 if (!LLVMUsed) return;
423 ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
424 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i)
425 if (GlobalValue *GV =
426 dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
427 UsedValues.insert(GV);
430 // Collect names of runtime library functions. User-defined functions with the
431 // same names are added to llvm.compiler.used to prevent them from being
432 // deleted by optimizations.
433 static void accumulateAndSortLibcalls(std::vector<StringRef> &Libcalls,
434 const TargetLibraryInfo& TLI,
436 const TargetMachine &TM) {
437 // TargetLibraryInfo has info on C runtime library calls on the current
439 for (unsigned I = 0, E = static_cast<unsigned>(LibFunc::NumLibFuncs);
441 LibFunc::Func F = static_cast<LibFunc::Func>(I);
443 Libcalls.push_back(TLI.getName(F));
446 SmallPtrSet<const TargetLowering *, 1> TLSet;
448 for (const Function &F : Mod) {
449 const TargetLowering *Lowering =
450 TM.getSubtargetImpl(F)->getTargetLowering();
452 if (Lowering && TLSet.insert(Lowering).second)
453 // TargetLowering has info on library calls that CodeGen expects to be
454 // available, both from the C runtime and compiler-rt.
455 for (unsigned I = 0, E = static_cast<unsigned>(RTLIB::UNKNOWN_LIBCALL);
457 if (const char *Name =
458 Lowering->getLibcallName(static_cast<RTLIB::Libcall>(I)))
459 Libcalls.push_back(Name);
462 array_pod_sort(Libcalls.begin(), Libcalls.end());
463 Libcalls.erase(std::unique(Libcalls.begin(), Libcalls.end()),
467 void LTOCodeGenerator::applyScopeRestrictions() {
468 if (ScopeRestrictionsDone)
470 Module *mergedModule = IRLinker.getModule();
472 // Start off with a verification pass.
473 legacy::PassManager passes;
474 passes.add(createVerifierPass());
476 // mark which symbols can not be internalized
477 Mangler Mangler(TargetMach->getDataLayout());
478 std::vector<const char*> MustPreserveList;
479 SmallPtrSet<GlobalValue*, 8> AsmUsed;
480 std::vector<StringRef> Libcalls;
481 TargetLibraryInfoImpl TLII(Triple(TargetMach->getTargetTriple()));
482 TargetLibraryInfo TLI(TLII);
484 accumulateAndSortLibcalls(Libcalls, TLI, *mergedModule, *TargetMach);
486 for (Module::iterator f = mergedModule->begin(),
487 e = mergedModule->end(); f != e; ++f)
488 applyRestriction(*f, Libcalls, MustPreserveList, AsmUsed, Mangler);
489 for (Module::global_iterator v = mergedModule->global_begin(),
490 e = mergedModule->global_end(); v != e; ++v)
491 applyRestriction(*v, Libcalls, MustPreserveList, AsmUsed, Mangler);
492 for (Module::alias_iterator a = mergedModule->alias_begin(),
493 e = mergedModule->alias_end(); a != e; ++a)
494 applyRestriction(*a, Libcalls, MustPreserveList, AsmUsed, Mangler);
496 GlobalVariable *LLVMCompilerUsed =
497 mergedModule->getGlobalVariable("llvm.compiler.used");
498 findUsedValues(LLVMCompilerUsed, AsmUsed);
499 if (LLVMCompilerUsed)
500 LLVMCompilerUsed->eraseFromParent();
502 if (!AsmUsed.empty()) {
503 llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(Context);
504 std::vector<Constant*> asmUsed2;
505 for (auto *GV : AsmUsed) {
506 Constant *c = ConstantExpr::getBitCast(GV, i8PTy);
507 asmUsed2.push_back(c);
510 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
512 new llvm::GlobalVariable(*mergedModule, ATy, false,
513 llvm::GlobalValue::AppendingLinkage,
514 llvm::ConstantArray::get(ATy, asmUsed2),
515 "llvm.compiler.used");
517 LLVMCompilerUsed->setSection("llvm.metadata");
520 passes.add(createInternalizePass(MustPreserveList));
522 // apply scope restrictions
523 passes.run(*mergedModule);
525 ScopeRestrictionsDone = true;
528 /// Optimize merged modules using various IPO passes
529 bool LTOCodeGenerator::optimize(bool DisableInline,
530 bool DisableGVNLoadPRE,
531 bool DisableVectorization,
532 std::string &errMsg) {
533 if (!this->determineTarget(errMsg))
536 Module *mergedModule = IRLinker.getModule();
538 // Mark which symbols can not be internalized
539 this->applyScopeRestrictions();
541 // Instantiate the pass manager to organize the passes.
542 legacy::PassManager passes;
544 // Add an appropriate DataLayout instance for this module...
545 mergedModule->setDataLayout(*TargetMach->getDataLayout());
548 createTargetTransformInfoWrapperPass(TargetMach->getTargetIRAnalysis()));
550 Triple TargetTriple(TargetMach->getTargetTriple());
551 PassManagerBuilder PMB;
552 PMB.DisableGVNLoadPRE = DisableGVNLoadPRE;
553 PMB.LoopVectorize = !DisableVectorization;
554 PMB.SLPVectorize = !DisableVectorization;
556 PMB.Inliner = createFunctionInliningPass();
557 PMB.LibraryInfo = new TargetLibraryInfoImpl(TargetTriple);
558 PMB.OptLevel = OptLevel;
559 PMB.VerifyInput = true;
560 PMB.VerifyOutput = true;
562 PMB.populateLTOPassManager(passes);
564 // Run our queue of passes all at once now, efficiently.
565 passes.run(*mergedModule);
570 bool LTOCodeGenerator::compileOptimized(raw_pwrite_stream &out,
571 std::string &errMsg) {
572 if (!this->determineTarget(errMsg))
575 Module *mergedModule = IRLinker.getModule();
577 legacy::PassManager codeGenPasses;
579 // If the bitcode files contain ARC code and were compiled with optimization,
580 // the ObjCARCContractPass must be run, so do it unconditionally here.
581 codeGenPasses.add(createObjCARCContractPass());
583 if (TargetMach->addPassesToEmitFile(codeGenPasses, out,
584 TargetMachine::CGFT_ObjectFile)) {
585 errMsg = "target file type not supported";
589 // Run the code generator, and write assembly file
590 codeGenPasses.run(*mergedModule);
595 /// setCodeGenDebugOptions - Set codegen debugging options to aid in debugging
597 void LTOCodeGenerator::setCodeGenDebugOptions(const char *options) {
598 for (std::pair<StringRef, StringRef> o = getToken(options);
599 !o.first.empty(); o = getToken(o.second)) {
600 // ParseCommandLineOptions() expects argv[0] to be program name. Lazily add
602 if (CodegenOptions.empty())
603 CodegenOptions.push_back(strdup("libLLVMLTO"));
604 CodegenOptions.push_back(strdup(o.first.str().c_str()));
608 void LTOCodeGenerator::parseCodeGenDebugOptions() {
609 // Turn on -preserve-bc-uselistorder by default, but let the command-line
611 setPreserveBitcodeUseListOrder(true);
613 // if options were requested, set them
614 if (!CodegenOptions.empty())
615 cl::ParseCommandLineOptions(CodegenOptions.size(),
616 const_cast<char **>(&CodegenOptions[0]));
619 void LTOCodeGenerator::DiagnosticHandler(const DiagnosticInfo &DI,
621 ((LTOCodeGenerator *)Context)->DiagnosticHandler2(DI);
624 void LTOCodeGenerator::DiagnosticHandler2(const DiagnosticInfo &DI) {
625 // Map the LLVM internal diagnostic severity to the LTO diagnostic severity.
626 lto_codegen_diagnostic_severity_t Severity;
627 switch (DI.getSeverity()) {
629 Severity = LTO_DS_ERROR;
632 Severity = LTO_DS_WARNING;
635 Severity = LTO_DS_REMARK;
638 Severity = LTO_DS_NOTE;
641 // Create the string that will be reported to the external diagnostic handler.
642 std::string MsgStorage;
643 raw_string_ostream Stream(MsgStorage);
644 DiagnosticPrinterRawOStream DP(Stream);
648 // If this method has been called it means someone has set up an external
649 // diagnostic handler. Assert on that.
650 assert(DiagHandler && "Invalid diagnostic handler");
651 (*DiagHandler)(Severity, MsgStorage.c_str(), DiagContext);
655 LTOCodeGenerator::setDiagnosticHandler(lto_diagnostic_handler_t DiagHandler,
657 this->DiagHandler = DiagHandler;
658 this->DiagContext = Ctxt;
660 return Context.setDiagnosticHandler(nullptr, nullptr);
661 // Register the LTOCodeGenerator stub in the LLVMContext to forward the
662 // diagnostic to the external DiagHandler.
663 Context.setDiagnosticHandler(LTOCodeGenerator::DiagnosticHandler, this,
664 /* RespectFilters */ true);