1 //===- LTO.cpp ------------------------------------------------------------===// 2 // 3 // The LLVM Linker 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "LTO.h" 11 #include "Config.h" 12 #include "InputFiles.h" 13 #include "LinkerScript.h" 14 #include "SymbolTable.h" 15 #include "Symbols.h" 16 #include "lld/Common/ErrorHandler.h" 17 #include "lld/Common/TargetOptionsCommandFlags.h" 18 #include "llvm/ADT/STLExtras.h" 19 #include "llvm/ADT/SmallString.h" 20 #include "llvm/ADT/StringRef.h" 21 #include "llvm/ADT/Twine.h" 22 #include "llvm/BinaryFormat/ELF.h" 23 #include "llvm/IR/DiagnosticPrinter.h" 24 #include "llvm/LTO/Caching.h" 25 #include "llvm/LTO/Config.h" 26 #include "llvm/LTO/LTO.h" 27 #include "llvm/Object/SymbolicFile.h" 28 #include "llvm/Support/CodeGen.h" 29 #include "llvm/Support/Error.h" 30 #include "llvm/Support/FileSystem.h" 31 #include "llvm/Support/MemoryBuffer.h" 32 #include "llvm/Support/raw_ostream.h" 33 #include <algorithm> 34 #include <cstddef> 35 #include <memory> 36 #include <string> 37 #include <system_error> 38 #include <vector> 39 40 using namespace llvm; 41 using namespace llvm::object; 42 using namespace llvm::ELF; 43 44 using namespace lld; 45 using namespace lld::elf; 46 47 // This is for use when debugging LTO. 48 static void saveBuffer(StringRef Buffer, const Twine &Path) { 49 std::error_code EC; 50 raw_fd_ostream OS(Path.str(), EC, sys::fs::OpenFlags::F_None); 51 if (EC) 52 error("cannot create " + Path + ": " + EC.message()); 53 OS << Buffer; 54 } 55 56 static void diagnosticHandler(const DiagnosticInfo &DI) { 57 SmallString<128> ErrStorage; 58 raw_svector_ostream OS(ErrStorage); 59 DiagnosticPrinterRawOStream DP(OS); 60 DI.print(DP); 61 warn(ErrStorage); 62 } 63 64 static void checkError(Error E) { 65 handleAllErrors(std::move(E), 66 [&](ErrorInfoBase &EIB) { error(EIB.message()); }); 67 } 68 69 static std::unique_ptr<lto::LTO> createLTO() { 70 lto::Config Conf; 71 72 // LLD supports the new relocations. 73 Conf.Options = InitTargetOptionsFromCodeGenFlags(); 74 Conf.Options.RelaxELFRelocations = true; 75 76 // Always emit a section per function/datum with LTO. 77 Conf.Options.FunctionSections = true; 78 Conf.Options.DataSections = true; 79 80 if (Config->Relocatable) 81 Conf.RelocModel = None; 82 else if (Config->Pic) 83 Conf.RelocModel = Reloc::PIC_; 84 else 85 Conf.RelocModel = Reloc::Static; 86 Conf.CodeModel = GetCodeModelFromCMModel(); 87 Conf.DisableVerify = Config->DisableVerify; 88 Conf.DiagHandler = diagnosticHandler; 89 Conf.OptLevel = Config->LTOO; 90 91 // Set up a custom pipeline if we've been asked to. 92 Conf.OptPipeline = Config->LTONewPmPasses; 93 Conf.AAPipeline = Config->LTOAAPipeline; 94 95 // Set up optimization remarks if we've been asked to. 96 Conf.RemarksFilename = Config->OptRemarksFilename; 97 Conf.RemarksWithHotness = Config->OptRemarksWithHotness; 98 99 if (Config->SaveTemps) 100 checkError(Conf.addSaveTemps(std::string(Config->OutputFile) + ".", 101 /*UseInputModulePath*/ true)); 102 103 lto::ThinBackend Backend; 104 if (Config->ThinLTOJobs != -1u) 105 Backend = lto::createInProcessThinBackend(Config->ThinLTOJobs); 106 return llvm::make_unique<lto::LTO>(std::move(Conf), Backend, 107 Config->LTOPartitions); 108 } 109 110 BitcodeCompiler::BitcodeCompiler() : LTOObj(createLTO()) { 111 for (Symbol *Sym : Symtab->getSymbols()) { 112 StringRef Name = Sym->getName(); 113 for (StringRef Prefix : {"__start_", "__stop_"}) 114 if (Name.startswith(Prefix)) 115 UsedStartStop.insert(Name.substr(Prefix.size())); 116 } 117 } 118 119 BitcodeCompiler::~BitcodeCompiler() = default; 120 121 static void undefine(Symbol *S) { 122 replaceSymbol<Undefined>(S, nullptr, S->getName(), STB_GLOBAL, STV_DEFAULT, 123 S->Type); 124 } 125 126 void BitcodeCompiler::add(BitcodeFile &F) { 127 lto::InputFile &Obj = *F.Obj; 128 unsigned SymNum = 0; 129 std::vector<Symbol *> Syms = F.getSymbols(); 130 std::vector<lto::SymbolResolution> Resols(Syms.size()); 131 132 DenseSet<StringRef> ScriptSymbols; 133 for (BaseCommand *Base : Script->SectionCommands) 134 if (auto *Cmd = dyn_cast<SymbolAssignment>(Base)) 135 ScriptSymbols.insert(Cmd->Name); 136 137 bool IsExecutable = !Config->Shared && !Config->Relocatable; 138 139 // Provide a resolution to the LTO API for each symbol. 140 for (const lto::InputFile::Symbol &ObjSym : Obj.symbols()) { 141 Symbol *Sym = Syms[SymNum]; 142 lto::SymbolResolution &R = Resols[SymNum]; 143 ++SymNum; 144 145 // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile 146 // reports two symbols for module ASM defined. Without this check, lld 147 // flags an undefined in IR with a definition in ASM as prevailing. 148 // Once IRObjectFile is fixed to report only one symbol this hack can 149 // be removed. 150 R.Prevailing = !ObjSym.isUndefined() && Sym->File == &F; 151 152 // We ask LTO to preserve following global symbols: 153 // 1) All symbols when doing relocatable link, so that them can be used 154 // for doing final link. 155 // 2) Symbols that are used in regular objects. 156 // 3) C named sections if we have corresponding __start_/__stop_ symbol. 157 // 4) Symbols that are defined in bitcode files and used for dynamic linking. 158 R.VisibleToRegularObj = Config->Relocatable || Sym->IsUsedInRegularObj || 159 (R.Prevailing && Sym->includeInDynsym()) || 160 UsedStartStop.count(ObjSym.getSectionName()); 161 R.FinalDefinitionInLinkageUnit = 162 Sym->isDefined() && (IsExecutable || Sym->Visibility != STV_DEFAULT); 163 164 if (R.Prevailing) 165 undefine(Sym); 166 167 // We tell LTO to not apply interprocedural optimization for following 168 // symbols because otherwise LTO would inline them while their values are 169 // still not final: 170 // 1) Aliased (with --defsym) or wrapped (with --wrap) symbols. 171 // 2) Symbols redefined in linker script. 172 R.LinkerRedefined = !Sym->CanInline || ScriptSymbols.count(Sym->getName()); 173 } 174 checkError(LTOObj->add(std::move(F.Obj), Resols)); 175 } 176 177 // Merge all the bitcode files we have seen, codegen the result 178 // and return the resulting ObjectFile(s). 179 std::vector<InputFile *> BitcodeCompiler::compile() { 180 std::vector<InputFile *> Ret; 181 unsigned MaxTasks = LTOObj->getMaxTasks(); 182 Buff.resize(MaxTasks); 183 Files.resize(MaxTasks); 184 185 // The --thinlto-cache-dir option specifies the path to a directory in which 186 // to cache native object files for ThinLTO incremental builds. If a path was 187 // specified, configure LTO to use it as the cache directory. 188 lto::NativeObjectCache Cache; 189 if (!Config->ThinLTOCacheDir.empty()) 190 Cache = check( 191 lto::localCache(Config->ThinLTOCacheDir, 192 [&](size_t Task, std::unique_ptr<MemoryBuffer> MB, 193 StringRef Path) { Files[Task] = std::move(MB); })); 194 195 checkError(LTOObj->run( 196 [&](size_t Task) { 197 return llvm::make_unique<lto::NativeObjectStream>( 198 llvm::make_unique<raw_svector_ostream>(Buff[Task])); 199 }, 200 Cache)); 201 202 if (!Config->ThinLTOCacheDir.empty()) 203 pruneCache(Config->ThinLTOCacheDir, Config->ThinLTOCachePolicy); 204 205 for (unsigned I = 0; I != MaxTasks; ++I) { 206 if (Buff[I].empty()) 207 continue; 208 if (Config->SaveTemps) { 209 if (I == 0) 210 saveBuffer(Buff[I], Config->OutputFile + ".lto.o"); 211 else 212 saveBuffer(Buff[I], Config->OutputFile + Twine(I) + ".lto.o"); 213 } 214 InputFile *Obj = createObjectFile(MemoryBufferRef(Buff[I], "lto.tmp")); 215 Ret.push_back(Obj); 216 } 217 218 for (std::unique_ptr<MemoryBuffer> &File : Files) 219 if (File) 220 Ret.push_back(createObjectFile(*File)); 221 222 return Ret; 223 } 224