Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 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 "Error.h" |
| 13 | #include "InputFiles.h" |
| 14 | #include "Symbols.h" |
Bob Haarman | 35989d6 | 2017-02-02 23:49:16 +0000 | [diff] [blame] | 15 | #include "lld/Core/TargetOptionsCommandFlags.h" |
Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Rui Ueyama | 8c6a5aa | 2016-11-05 22:37:59 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallString.h" |
Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringRef.h" |
| 19 | #include "llvm/ADT/Twine.h" |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 20 | #include "llvm/IR/DiagnosticPrinter.h" |
Peter Collingbourne | e02775f | 2017-03-01 23:00:10 +0000 | [diff] [blame] | 21 | #include "llvm/LTO/Caching.h" |
Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 22 | #include "llvm/LTO/Config.h" |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 23 | #include "llvm/LTO/LTO.h" |
Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 24 | #include "llvm/Object/SymbolicFile.h" |
| 25 | #include "llvm/Support/CodeGen.h" |
| 26 | #include "llvm/Support/ELF.h" |
| 27 | #include "llvm/Support/Error.h" |
| 28 | #include "llvm/Support/FileSystem.h" |
| 29 | #include "llvm/Support/MemoryBuffer.h" |
| 30 | #include "llvm/Support/raw_ostream.h" |
| 31 | #include <algorithm> |
| 32 | #include <cstddef> |
| 33 | #include <memory> |
| 34 | #include <string> |
| 35 | #include <system_error> |
| 36 | #include <vector> |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 37 | |
| 38 | using namespace llvm; |
| 39 | using namespace llvm::object; |
| 40 | using namespace llvm::ELF; |
| 41 | |
| 42 | using namespace lld; |
| 43 | using namespace lld::elf; |
| 44 | |
| 45 | // This is for use when debugging LTO. |
Rui Ueyama | 48da5cf | 2016-07-15 02:17:13 +0000 | [diff] [blame] | 46 | static void saveBuffer(StringRef Buffer, const Twine &Path) { |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 47 | std::error_code EC; |
Rui Ueyama | 48da5cf | 2016-07-15 02:17:13 +0000 | [diff] [blame] | 48 | raw_fd_ostream OS(Path.str(), EC, sys::fs::OpenFlags::F_None); |
Rui Ueyama | f8292e9 | 2016-07-15 02:01:03 +0000 | [diff] [blame] | 49 | if (EC) |
Rui Ueyama | c8d3a83 | 2017-01-12 22:18:04 +0000 | [diff] [blame] | 50 | error("cannot create " + Path + ": " + EC.message()); |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 51 | OS << Buffer; |
| 52 | } |
| 53 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 54 | static void diagnosticHandler(const DiagnosticInfo &DI) { |
| 55 | SmallString<128> ErrStorage; |
| 56 | raw_svector_ostream OS(ErrStorage); |
| 57 | DiagnosticPrinterRawOStream DP(OS); |
| 58 | DI.print(DP); |
Rui Ueyama | d31e13f | 2016-09-29 21:00:23 +0000 | [diff] [blame] | 59 | warn(ErrStorage); |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Rui Ueyama | 6c5cbff | 2016-09-29 21:00:26 +0000 | [diff] [blame] | 62 | static void checkError(Error E) { |
Mehdi Amini | c1edf56 | 2016-11-11 04:29:25 +0000 | [diff] [blame] | 63 | handleAllErrors(std::move(E), [&](ErrorInfoBase &EIB) -> Error { |
Rui Ueyama | 6c5cbff | 2016-09-29 21:00:26 +0000 | [diff] [blame] | 64 | error(EIB.message()); |
| 65 | return Error::success(); |
| 66 | }); |
| 67 | } |
| 68 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 69 | static std::unique_ptr<lto::LTO> createLTO() { |
| 70 | lto::Config Conf; |
Davide Italiano | d26c4a1 | 2016-05-15 19:29:38 +0000 | [diff] [blame] | 71 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 72 | // LLD supports the new relocations. |
| 73 | Conf.Options = InitTargetOptionsFromCodeGenFlags(); |
| 74 | Conf.Options.RelaxELFRelocations = true; |
Davide Italiano | df24d5b | 2016-06-02 22:58:11 +0000 | [diff] [blame] | 75 | |
Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 76 | Conf.RelocModel = Config->Pic ? Reloc::PIC_ : Reloc::Static; |
Martell Malone | 6b43b7a | 2017-02-28 23:43:26 +0000 | [diff] [blame] | 77 | Conf.CodeModel = GetCodeModelFromCMModel(); |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 78 | Conf.DisableVerify = Config->DisableVerify; |
| 79 | Conf.DiagHandler = diagnosticHandler; |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 80 | Conf.OptLevel = Config->LTOO; |
Davide Italiano | df24d5b | 2016-06-02 22:58:11 +0000 | [diff] [blame] | 81 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 82 | // Set up a custom pipeline if we've been asked to. |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 83 | Conf.OptPipeline = Config->LTONewPmPasses; |
| 84 | Conf.AAPipeline = Config->LTOAAPipeline; |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 85 | |
Davide Italiano | db4b0a7 | 2017-02-13 17:49:18 +0000 | [diff] [blame] | 86 | // Set up optimization remarks if we've been asked to. |
| 87 | Conf.RemarksFilename = Config->OptRemarksFilename; |
| 88 | Conf.RemarksWithHotness = Config->OptRemarksWithHotness; |
| 89 | |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 90 | if (Config->SaveTemps) |
Rui Ueyama | 6c5cbff | 2016-09-29 21:00:26 +0000 | [diff] [blame] | 91 | checkError(Conf.addSaveTemps(std::string(Config->OutputFile) + ".", |
George Rimar | a4c7e74 | 2016-10-20 08:36:42 +0000 | [diff] [blame] | 92 | /*UseInputModulePath*/ true)); |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 93 | |
Davide Italiano | 7a7b35a | 2016-10-10 18:12:53 +0000 | [diff] [blame] | 94 | lto::ThinBackend Backend; |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 95 | if (Config->ThinLTOJobs != -1u) |
| 96 | Backend = lto::createInProcessThinBackend(Config->ThinLTOJobs); |
Davide Italiano | b6e6e4a | 2016-10-10 23:12:14 +0000 | [diff] [blame] | 97 | return llvm::make_unique<lto::LTO>(std::move(Conf), Backend, |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 98 | Config->LTOPartitions); |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 101 | BitcodeCompiler::BitcodeCompiler() : LTOObj(createLTO()) {} |
Rafael Espindola | ae605c1 | 2016-04-21 20:35:25 +0000 | [diff] [blame] | 102 | |
Eugene Zelenko | 22886a2 | 2016-11-05 01:00:56 +0000 | [diff] [blame] | 103 | BitcodeCompiler::~BitcodeCompiler() = default; |
Rui Ueyama | 412c802 | 2016-04-22 21:16:18 +0000 | [diff] [blame] | 104 | |
Peter Smith | 3a52eb0 | 2017-02-01 10:26:03 +0000 | [diff] [blame] | 105 | static void undefine(Symbol *S) { |
| 106 | replaceBody<Undefined>(S, S->body()->getName(), /*IsLocal=*/false, |
| 107 | STV_DEFAULT, S->body()->Type, nullptr); |
Peter Collingbourne | 0ef3874 | 2016-05-12 19:46:14 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Peter Smith | 3a52eb0 | 2017-02-01 10:26:03 +0000 | [diff] [blame] | 110 | void BitcodeCompiler::add(BitcodeFile &F) { |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 111 | lto::InputFile &Obj = *F.Obj; |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 112 | unsigned SymNum = 0; |
| 113 | std::vector<Symbol *> Syms = F.getSymbols(); |
| 114 | std::vector<lto::SymbolResolution> Resols(Syms.size()); |
Davide Italiano | 334fce9 | 2016-05-11 01:07:22 +0000 | [diff] [blame] | 115 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 116 | // Provide a resolution to the LTO API for each symbol. |
| 117 | for (const lto::InputFile::Symbol &ObjSym : Obj.symbols()) { |
| 118 | Symbol *Sym = Syms[SymNum]; |
| 119 | lto::SymbolResolution &R = Resols[SymNum]; |
| 120 | ++SymNum; |
| 121 | SymbolBody *B = Sym->body(); |
Davide Italiano | 86f2bd5 | 2016-03-29 21:46:35 +0000 | [diff] [blame] | 122 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 123 | // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile |
| 124 | // reports two symbols for module ASM defined. Without this check, lld |
| 125 | // flags an undefined in IR with a definition in ASM as prevailing. |
| 126 | // Once IRObjectFile is fixed to report only one symbol this hack can |
| 127 | // be removed. |
Peter Collingbourne | 0d56b95 | 2017-03-28 22:31:35 +0000 | [diff] [blame] | 128 | R.Prevailing = !ObjSym.isUndefined() && B->File == &F; |
Peter Collingbourne | 3ad1c1e | 2016-05-05 17:13:49 +0000 | [diff] [blame] | 129 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 130 | R.VisibleToRegularObj = |
| 131 | Sym->IsUsedInRegularObj || (R.Prevailing && Sym->includeInDynsym()); |
| 132 | if (R.Prevailing) |
Peter Smith | 3a52eb0 | 2017-02-01 10:26:03 +0000 | [diff] [blame] | 133 | undefine(Sym); |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 134 | } |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 135 | checkError(LTOObj->add(std::move(F.Obj), Resols)); |
Davide Italiano | bc17663 | 2016-04-15 22:38:10 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Rui Ueyama | 2599248 | 2016-03-22 20:52:10 +0000 | [diff] [blame] | 138 | // Merge all the bitcode files we have seen, codegen the result |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 139 | // and return the resulting ObjectFile(s). |
Rui Ueyama | 38dbd3e | 2016-09-14 00:05:51 +0000 | [diff] [blame] | 140 | std::vector<InputFile *> BitcodeCompiler::compile() { |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 141 | std::vector<InputFile *> Ret; |
Davide Italiano | 3bfa081 | 2016-11-26 05:37:04 +0000 | [diff] [blame] | 142 | unsigned MaxTasks = LTOObj->getMaxTasks(); |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 143 | Buff.resize(MaxTasks); |
Peter Collingbourne | e02775f | 2017-03-01 23:00:10 +0000 | [diff] [blame] | 144 | Files.resize(MaxTasks); |
Davide Italiano | 828ac541 | 2016-03-28 15:44:21 +0000 | [diff] [blame] | 145 | |
Peter Collingbourne | e02775f | 2017-03-01 23:00:10 +0000 | [diff] [blame] | 146 | // The --thinlto-cache-dir option specifies the path to a directory in which |
| 147 | // to cache native object files for ThinLTO incremental builds. If a path was |
| 148 | // specified, configure LTO to use it as the cache directory. |
| 149 | lto::NativeObjectCache Cache; |
| 150 | if (!Config->ThinLTOCacheDir.empty()) |
Peter Collingbourne | 128423f | 2017-03-17 00:34:07 +0000 | [diff] [blame] | 151 | Cache = check( |
| 152 | lto::localCache(Config->ThinLTOCacheDir, |
| 153 | [&](size_t Task, std::unique_ptr<MemoryBuffer> MB) { |
| 154 | Files[Task] = std::move(MB); |
| 155 | })); |
Peter Collingbourne | e02775f | 2017-03-01 23:00:10 +0000 | [diff] [blame] | 156 | |
| 157 | checkError(LTOObj->run( |
| 158 | [&](size_t Task) { |
| 159 | return llvm::make_unique<lto::NativeObjectStream>( |
| 160 | llvm::make_unique<raw_svector_ostream>(Buff[Task])); |
| 161 | }, |
| 162 | Cache)); |
Rafael Espindola | abf6c65 | 2016-04-17 23:20:08 +0000 | [diff] [blame] | 163 | |
Peter Collingbourne | ee59e43 | 2017-03-17 02:24:16 +0000 | [diff] [blame] | 164 | if (!Config->ThinLTOCacheDir.empty()) |
| 165 | pruneCache(Config->ThinLTOCacheDir, Config->ThinLTOCachePolicy); |
| 166 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 167 | for (unsigned I = 0; I != MaxTasks; ++I) { |
| 168 | if (Buff[I].empty()) |
| 169 | continue; |
| 170 | if (Config->SaveTemps) { |
Peter Collingbourne | d22ec64 | 2017-01-26 02:18:28 +0000 | [diff] [blame] | 171 | if (I == 0) |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 172 | saveBuffer(Buff[I], Config->OutputFile + ".lto.o"); |
| 173 | else |
| 174 | saveBuffer(Buff[I], Config->OutputFile + Twine(I) + ".lto.o"); |
| 175 | } |
Rui Ueyama | 55518e7 | 2016-10-28 20:57:25 +0000 | [diff] [blame] | 176 | InputFile *Obj = createObjectFile(MemoryBufferRef(Buff[I], "lto.tmp")); |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 177 | Ret.push_back(Obj); |
| 178 | } |
Peter Collingbourne | e02775f | 2017-03-01 23:00:10 +0000 | [diff] [blame] | 179 | |
| 180 | for (std::unique_ptr<MemoryBuffer> &File : Files) |
| 181 | if (File) |
| 182 | Ret.push_back(createObjectFile(*File)); |
| 183 | |
Davide Italiano | 786d8e3 | 2016-09-29 00:40:08 +0000 | [diff] [blame] | 184 | return Ret; |
Rui Ueyama | 961f2ff | 2016-03-23 21:19:27 +0000 | [diff] [blame] | 185 | } |