1 //===- LTO.cpp ------------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "LTO.h" 10 #include "Config.h" 11 #include "InputFiles.h" 12 #include "LinkerScript.h" 13 #include "SymbolTable.h" 14 #include "Symbols.h" 15 #include "lld/Common/Args.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/Bitcode/BitcodeReader.h" 24 #include "llvm/Bitcode/BitcodeWriter.h" 25 #include "llvm/IR/DiagnosticPrinter.h" 26 #include "llvm/LTO/Caching.h" 27 #include "llvm/LTO/Config.h" 28 #include "llvm/LTO/LTO.h" 29 #include "llvm/Object/SymbolicFile.h" 30 #include "llvm/Support/CodeGen.h" 31 #include "llvm/Support/Error.h" 32 #include "llvm/Support/FileSystem.h" 33 #include "llvm/Support/MemoryBuffer.h" 34 #include <algorithm> 35 #include <cstddef> 36 #include <memory> 37 #include <string> 38 #include <system_error> 39 #include <vector> 40 41 using namespace llvm; 42 using namespace llvm::object; 43 using namespace llvm::ELF; 44 45 namespace lld { 46 namespace elf { 47 48 // Creates an empty file to store a list of object files for final 49 // linking of distributed ThinLTO. 50 static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) { 51 std::error_code ec; 52 auto ret = 53 std::make_unique<raw_fd_ostream>(file, ec, sys::fs::OpenFlags::OF_None); 54 if (ec) { 55 error("cannot open " + file + ": " + ec.message()); 56 return nullptr; 57 } 58 return ret; 59 } 60 61 static std::string getThinLTOOutputFile(StringRef modulePath) { 62 return lto::getThinLTOOutputFile( 63 std::string(modulePath), std::string(config->thinLTOPrefixReplace.first), 64 std::string(config->thinLTOPrefixReplace.second)); 65 } 66 67 static lto::Config createConfig() { 68 lto::Config c; 69 70 // LLD supports the new relocations and address-significance tables. 71 c.Options = initTargetOptionsFromCodeGenFlags(); 72 c.Options.RelaxELFRelocations = true; 73 c.Options.EmitAddrsig = true; 74 75 // Always emit a section per function/datum with LTO. 76 c.Options.FunctionSections = true; 77 c.Options.DataSections = true; 78 79 // Check if basic block sections must be used. 80 // Allowed values for --lto-basicblock-sections are "all", "labels", 81 // "<file name specifying basic block ids>", or none. This is the equivalent 82 // of -fbasicblock-sections= flag in clang. 83 if (!config->ltoBasicBlockSections.empty()) { 84 if (config->ltoBasicBlockSections == "all") { 85 c.Options.BBSections = BasicBlockSection::All; 86 } else if (config->ltoBasicBlockSections == "labels") { 87 c.Options.BBSections = BasicBlockSection::Labels; 88 } else if (config->ltoBasicBlockSections == "none") { 89 c.Options.BBSections = BasicBlockSection::None; 90 } else { 91 ErrorOr<std::unique_ptr<MemoryBuffer>> MBOrErr = 92 MemoryBuffer::getFile(config->ltoBasicBlockSections.str()); 93 if (!MBOrErr) { 94 error("cannot open " + config->ltoBasicBlockSections + ":" + 95 MBOrErr.getError().message()); 96 } else { 97 c.Options.BBSectionsFuncListBuf = std::move(*MBOrErr); 98 } 99 c.Options.BBSections = BasicBlockSection::List; 100 } 101 } 102 103 c.Options.UniqueBBSectionNames = config->ltoUniqueBBSectionNames; 104 105 if (auto relocModel = getRelocModelFromCMModel()) 106 c.RelocModel = *relocModel; 107 else if (config->relocatable) 108 c.RelocModel = None; 109 else if (config->isPic) 110 c.RelocModel = Reloc::PIC_; 111 else 112 c.RelocModel = Reloc::Static; 113 114 c.CodeModel = getCodeModelFromCMModel(); 115 c.DisableVerify = config->disableVerify; 116 c.DiagHandler = diagnosticHandler; 117 c.OptLevel = config->ltoo; 118 c.CPU = getCPUStr(); 119 c.MAttrs = getMAttrs(); 120 c.CGOptLevel = args::getCGOptLevel(config->ltoo); 121 122 c.PTO.LoopVectorization = c.OptLevel > 1; 123 c.PTO.SLPVectorization = c.OptLevel > 1; 124 125 // Set up a custom pipeline if we've been asked to. 126 c.OptPipeline = std::string(config->ltoNewPmPasses); 127 c.AAPipeline = std::string(config->ltoAAPipeline); 128 129 // Set up optimization remarks if we've been asked to. 130 c.RemarksFilename = std::string(config->optRemarksFilename); 131 c.RemarksPasses = std::string(config->optRemarksPasses); 132 c.RemarksWithHotness = config->optRemarksWithHotness; 133 c.RemarksFormat = std::string(config->optRemarksFormat); 134 135 c.SampleProfile = std::string(config->ltoSampleProfile); 136 c.UseNewPM = config->ltoNewPassManager; 137 c.DebugPassManager = config->ltoDebugPassManager; 138 c.DwoDir = std::string(config->dwoDir); 139 140 c.HasWholeProgramVisibility = config->ltoWholeProgramVisibility; 141 c.AlwaysEmitRegularLTOObj = !config->ltoObjPath.empty(); 142 143 c.TimeTraceEnabled = config->timeTraceEnabled; 144 c.TimeTraceGranularity = config->timeTraceGranularity; 145 146 c.CSIRProfile = std::string(config->ltoCSProfileFile); 147 c.RunCSIRInstr = config->ltoCSProfileGenerate; 148 149 if (config->emitLLVM) { 150 c.PostInternalizeModuleHook = [](size_t task, const Module &m) { 151 if (std::unique_ptr<raw_fd_ostream> os = openFile(config->outputFile)) 152 WriteBitcodeToFile(m, *os, false); 153 return false; 154 }; 155 } 156 157 if (config->ltoEmitAsm) 158 c.CGFileType = CGFT_AssemblyFile; 159 160 if (config->saveTemps) 161 checkError(c.addSaveTemps(config->outputFile.str() + ".", 162 /*UseInputModulePath*/ true)); 163 return c; 164 } 165 166 BitcodeCompiler::BitcodeCompiler() { 167 // Initialize indexFile. 168 if (!config->thinLTOIndexOnlyArg.empty()) 169 indexFile = openFile(config->thinLTOIndexOnlyArg); 170 171 // Initialize ltoObj. 172 lto::ThinBackend backend; 173 if (config->thinLTOIndexOnly) { 174 auto onIndexWrite = [&](StringRef s) { thinIndices.erase(s); }; 175 backend = lto::createWriteIndexesThinBackend( 176 std::string(config->thinLTOPrefixReplace.first), 177 std::string(config->thinLTOPrefixReplace.second), 178 config->thinLTOEmitImportsFiles, indexFile.get(), onIndexWrite); 179 } else { 180 backend = lto::createInProcessThinBackend( 181 llvm::heavyweight_hardware_concurrency(config->thinLTOJobs)); 182 } 183 184 ltoObj = std::make_unique<lto::LTO>(createConfig(), backend, 185 config->ltoPartitions); 186 187 // Initialize usedStartStop. 188 for (Symbol *sym : symtab->symbols()) { 189 StringRef s = sym->getName(); 190 for (StringRef prefix : {"__start_", "__stop_"}) 191 if (s.startswith(prefix)) 192 usedStartStop.insert(s.substr(prefix.size())); 193 } 194 } 195 196 BitcodeCompiler::~BitcodeCompiler() = default; 197 198 void BitcodeCompiler::add(BitcodeFile &f) { 199 lto::InputFile &obj = *f.obj; 200 bool isExec = !config->shared && !config->relocatable; 201 202 if (config->thinLTOIndexOnly) 203 thinIndices.insert(obj.getName()); 204 205 ArrayRef<Symbol *> syms = f.getSymbols(); 206 ArrayRef<lto::InputFile::Symbol> objSyms = obj.symbols(); 207 std::vector<lto::SymbolResolution> resols(syms.size()); 208 209 // Provide a resolution to the LTO API for each symbol. 210 for (size_t i = 0, e = syms.size(); i != e; ++i) { 211 Symbol *sym = syms[i]; 212 const lto::InputFile::Symbol &objSym = objSyms[i]; 213 lto::SymbolResolution &r = resols[i]; 214 215 // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile 216 // reports two symbols for module ASM defined. Without this check, lld 217 // flags an undefined in IR with a definition in ASM as prevailing. 218 // Once IRObjectFile is fixed to report only one symbol this hack can 219 // be removed. 220 r.Prevailing = !objSym.isUndefined() && sym->file == &f; 221 222 // We ask LTO to preserve following global symbols: 223 // 1) All symbols when doing relocatable link, so that them can be used 224 // for doing final link. 225 // 2) Symbols that are used in regular objects. 226 // 3) C named sections if we have corresponding __start_/__stop_ symbol. 227 // 4) Symbols that are defined in bitcode files and used for dynamic linking. 228 r.VisibleToRegularObj = config->relocatable || sym->isUsedInRegularObj || 229 (r.Prevailing && sym->includeInDynsym()) || 230 usedStartStop.count(objSym.getSectionName()); 231 const auto *dr = dyn_cast<Defined>(sym); 232 r.FinalDefinitionInLinkageUnit = 233 (isExec || sym->visibility != STV_DEFAULT) && dr && 234 // Skip absolute symbols from ELF objects, otherwise PC-rel relocations 235 // will be generated by for them, triggering linker errors. 236 // Symbol section is always null for bitcode symbols, hence the check 237 // for isElf(). Skip linker script defined symbols as well: they have 238 // no File defined. 239 !(dr->section == nullptr && (!sym->file || sym->file->isElf())); 240 241 if (r.Prevailing) 242 sym->replace(Undefined{nullptr, sym->getName(), STB_GLOBAL, STV_DEFAULT, 243 sym->type}); 244 245 // We tell LTO to not apply interprocedural optimization for wrapped 246 // (with --wrap) symbols because otherwise LTO would inline them while 247 // their values are still not final. 248 r.LinkerRedefined = !sym->canInline; 249 } 250 checkError(ltoObj->add(std::move(f.obj), resols)); 251 } 252 253 // If LazyObjFile has not been added to link, emit empty index files. 254 // This is needed because this is what GNU gold plugin does and we have a 255 // distributed build system that depends on that behavior. 256 static void thinLTOCreateEmptyIndexFiles() { 257 for (LazyObjFile *f : lazyObjFiles) { 258 if (!isBitcode(f->mb)) 259 continue; 260 std::string path = replaceThinLTOSuffix(getThinLTOOutputFile(f->getName())); 261 std::unique_ptr<raw_fd_ostream> os = openFile(path + ".thinlto.bc"); 262 if (!os) 263 continue; 264 265 ModuleSummaryIndex m(/*HaveGVs*/ false); 266 m.setSkipModuleByDistributedBackend(); 267 WriteIndexToFile(m, *os); 268 if (config->thinLTOEmitImportsFiles) 269 openFile(path + ".imports"); 270 } 271 } 272 273 // Merge all the bitcode files we have seen, codegen the result 274 // and return the resulting ObjectFile(s). 275 std::vector<InputFile *> BitcodeCompiler::compile() { 276 unsigned maxTasks = ltoObj->getMaxTasks(); 277 buf.resize(maxTasks); 278 files.resize(maxTasks); 279 280 // The --thinlto-cache-dir option specifies the path to a directory in which 281 // to cache native object files for ThinLTO incremental builds. If a path was 282 // specified, configure LTO to use it as the cache directory. 283 lto::NativeObjectCache cache; 284 if (!config->thinLTOCacheDir.empty()) 285 cache = check( 286 lto::localCache(config->thinLTOCacheDir, 287 [&](size_t task, std::unique_ptr<MemoryBuffer> mb) { 288 files[task] = std::move(mb); 289 })); 290 291 if (!bitcodeFiles.empty()) 292 checkError(ltoObj->run( 293 [&](size_t task) { 294 return std::make_unique<lto::NativeObjectStream>( 295 std::make_unique<raw_svector_ostream>(buf[task])); 296 }, 297 cache)); 298 299 // Emit empty index files for non-indexed files 300 for (StringRef s : thinIndices) { 301 std::string path = getThinLTOOutputFile(s); 302 openFile(path + ".thinlto.bc"); 303 if (config->thinLTOEmitImportsFiles) 304 openFile(path + ".imports"); 305 } 306 307 if (config->thinLTOIndexOnly) { 308 thinLTOCreateEmptyIndexFiles(); 309 310 if (!config->ltoObjPath.empty()) 311 saveBuffer(buf[0], config->ltoObjPath); 312 313 // ThinLTO with index only option is required to generate only the index 314 // files. After that, we exit from linker and ThinLTO backend runs in a 315 // distributed environment. 316 if (indexFile) 317 indexFile->close(); 318 return {}; 319 } 320 321 if (!config->thinLTOCacheDir.empty()) 322 pruneCache(config->thinLTOCacheDir, config->thinLTOCachePolicy); 323 324 if (!config->ltoObjPath.empty()) { 325 saveBuffer(buf[0], config->ltoObjPath); 326 for (unsigned i = 1; i != maxTasks; ++i) 327 saveBuffer(buf[i], config->ltoObjPath + Twine(i)); 328 } 329 330 if (config->saveTemps) { 331 if (!buf[0].empty()) 332 saveBuffer(buf[0], config->outputFile + ".lto.o"); 333 for (unsigned i = 1; i != maxTasks; ++i) 334 saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o"); 335 } 336 337 if (config->ltoEmitAsm) { 338 saveBuffer(buf[0], config->outputFile); 339 for (unsigned i = 1; i != maxTasks; ++i) 340 saveBuffer(buf[i], config->outputFile + Twine(i)); 341 return {}; 342 } 343 344 std::vector<InputFile *> ret; 345 for (unsigned i = 0; i != maxTasks; ++i) 346 if (!buf[i].empty()) 347 ret.push_back(createObjectFile(MemoryBufferRef(buf[i], "lto.tmp"))); 348 349 for (std::unique_ptr<MemoryBuffer> &file : files) 350 if (file) 351 ret.push_back(createObjectFile(*file)); 352 return ret; 353 } 354 355 } // namespace elf 356 } // namespace lld 357