Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 1 | //===-LTO.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 functions and classes used to support LTO. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/LTO/LTO.h" |
Florian Hahn | d4332eb | 2018-04-20 10:18:36 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/Statistic.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/TargetLibraryInfo.h" |
| 17 | #include "llvm/Analysis/TargetTransformInfo.h" |
Teresa Johnson | ad17679 | 2016-11-11 05:34:58 +0000 | [diff] [blame] | 18 | #include "llvm/Bitcode/BitcodeReader.h" |
| 19 | #include "llvm/Bitcode/BitcodeWriter.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/Analysis.h" |
Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 21 | #include "llvm/Config/llvm-config.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 22 | #include "llvm/IR/AutoUpgrade.h" |
| 23 | #include "llvm/IR/DiagnosticPrinter.h" |
| 24 | #include "llvm/IR/LegacyPassManager.h" |
Bob Haarman | dd4ebc1 | 2017-02-02 23:00:49 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Mangler.h" |
| 26 | #include "llvm/IR/Metadata.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 27 | #include "llvm/LTO/LTOBackend.h" |
| 28 | #include "llvm/Linker/IRMover.h" |
Peter Collingbourne | 192d852 | 2017-03-28 23:35:34 +0000 | [diff] [blame] | 29 | #include "llvm/Object/IRObjectFile.h" |
Bob Haarman | dd4ebc1 | 2017-02-02 23:00:49 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Error.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ManagedStatic.h" |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 32 | #include "llvm/Support/MemoryBuffer.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Path.h" |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 34 | #include "llvm/Support/SHA1.h" |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 35 | #include "llvm/Support/SourceMgr.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 36 | #include "llvm/Support/TargetRegistry.h" |
| 37 | #include "llvm/Support/ThreadPool.h" |
Teresa Johnson | ec544c5 | 2016-10-19 17:35:01 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Threading.h" |
Peter Collingbourne | 942fa56 | 2017-04-13 01:26:12 +0000 | [diff] [blame] | 39 | #include "llvm/Support/VCSRevision.h" |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 40 | #include "llvm/Support/raw_ostream.h" |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetMachine.h" |
| 42 | #include "llvm/Target/TargetOptions.h" |
| 43 | #include "llvm/Transforms/IPO.h" |
| 44 | #include "llvm/Transforms/IPO/PassManagerBuilder.h" |
| 45 | #include "llvm/Transforms/Utils/SplitModule.h" |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 46 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 47 | #include <set> |
| 48 | |
| 49 | using namespace llvm; |
| 50 | using namespace lto; |
| 51 | using namespace object; |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 52 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 53 | #define DEBUG_TYPE "lto" |
| 54 | |
Charles Saternos | b040fcc | 2018-02-19 15:14:50 +0000 | [diff] [blame] | 55 | static cl::opt<bool> |
| 56 | DumpThinCGSCCs("dump-thin-cg-sccs", cl::init(false), cl::Hidden, |
| 57 | cl::desc("Dump the SCCs in the ThinLTO index's callgraph")); |
| 58 | |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 59 | // The values are (type identifier, summary) pairs. |
| 60 | typedef DenseMap< |
| 61 | GlobalValue::GUID, |
| 62 | TinyPtrVector<const std::pair<const std::string, TypeIdSummary> *>> |
| 63 | TypeIdSummariesByGuidTy; |
| 64 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 65 | // Returns a unique hash for the Module considering the current list of |
| 66 | // export/import and other global analysis results. |
| 67 | // The hash is produced in \p Key. |
| 68 | static void computeCacheKey( |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 69 | SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index, |
| 70 | StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 71 | const FunctionImporter::ExportSetTy &ExportList, |
| 72 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 73 | const GVSummaryMapTy &DefinedGlobals, |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 74 | const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid, |
| 75 | const std::set<GlobalValue::GUID> &CfiFunctionDefs, |
| 76 | const std::set<GlobalValue::GUID> &CfiFunctionDecls) { |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 77 | // Compute the unique hash for this entry. |
| 78 | // This is based on the current compiler version, the module itself, the |
| 79 | // export list, the hash for every single module in the import list, the |
| 80 | // list of ResolvedODR for the module, and the list of preserved symbols. |
| 81 | SHA1 Hasher; |
| 82 | |
| 83 | // Start with the compiler revision |
| 84 | Hasher.update(LLVM_VERSION_STRING); |
Peter Collingbourne | 942fa56 | 2017-04-13 01:26:12 +0000 | [diff] [blame] | 85 | #ifdef LLVM_REVISION |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 86 | Hasher.update(LLVM_REVISION); |
| 87 | #endif |
| 88 | |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 89 | // Include the parts of the LTO configuration that affect code generation. |
| 90 | auto AddString = [&](StringRef Str) { |
| 91 | Hasher.update(Str); |
| 92 | Hasher.update(ArrayRef<uint8_t>{0}); |
| 93 | }; |
| 94 | auto AddUnsigned = [&](unsigned I) { |
| 95 | uint8_t Data[4]; |
| 96 | Data[0] = I; |
| 97 | Data[1] = I >> 8; |
| 98 | Data[2] = I >> 16; |
| 99 | Data[3] = I >> 24; |
| 100 | Hasher.update(ArrayRef<uint8_t>{Data, 4}); |
| 101 | }; |
Peter Collingbourne | 54a52b7 | 2017-03-03 20:25:30 +0000 | [diff] [blame] | 102 | auto AddUint64 = [&](uint64_t I) { |
| 103 | uint8_t Data[8]; |
| 104 | Data[0] = I; |
| 105 | Data[1] = I >> 8; |
| 106 | Data[2] = I >> 16; |
| 107 | Data[3] = I >> 24; |
| 108 | Data[4] = I >> 32; |
| 109 | Data[5] = I >> 40; |
| 110 | Data[6] = I >> 48; |
| 111 | Data[7] = I >> 56; |
| 112 | Hasher.update(ArrayRef<uint8_t>{Data, 8}); |
| 113 | }; |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 114 | AddString(Conf.CPU); |
| 115 | // FIXME: Hash more of Options. For now all clients initialize Options from |
| 116 | // command-line flags (which is unsupported in production), but may set |
| 117 | // RelaxELFRelocations. The clang driver can also pass FunctionSections, |
| 118 | // DataSections and DebuggerTuning via command line flags. |
| 119 | AddUnsigned(Conf.Options.RelaxELFRelocations); |
| 120 | AddUnsigned(Conf.Options.FunctionSections); |
| 121 | AddUnsigned(Conf.Options.DataSections); |
| 122 | AddUnsigned((unsigned)Conf.Options.DebuggerTuning); |
| 123 | for (auto &A : Conf.MAttrs) |
| 124 | AddString(A); |
Evgeniy Stepanov | b9f1b01 | 2017-05-22 21:11:35 +0000 | [diff] [blame] | 125 | if (Conf.RelocModel) |
| 126 | AddUnsigned(*Conf.RelocModel); |
| 127 | else |
| 128 | AddUnsigned(-1); |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 129 | if (Conf.CodeModel) |
| 130 | AddUnsigned(*Conf.CodeModel); |
| 131 | else |
| 132 | AddUnsigned(-1); |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 133 | AddUnsigned(Conf.CGOptLevel); |
Tobias Edler von Koch | f454b9e | 2017-02-15 20:36:36 +0000 | [diff] [blame] | 134 | AddUnsigned(Conf.CGFileType); |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 135 | AddUnsigned(Conf.OptLevel); |
Tim Shen | 4e912aa | 2017-06-01 23:13:44 +0000 | [diff] [blame] | 136 | AddUnsigned(Conf.UseNewPM); |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 137 | AddString(Conf.OptPipeline); |
| 138 | AddString(Conf.AAPipeline); |
| 139 | AddString(Conf.OverrideTriple); |
| 140 | AddString(Conf.DefaultTriple); |
Yunlian Jiang | bd200b9 | 2018-04-13 05:03:28 +0000 | [diff] [blame] | 141 | AddString(Conf.DwoDir); |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 142 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 143 | // Include the hash for the current module |
| 144 | auto ModHash = Index.getModuleHash(ModuleID); |
| 145 | Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); |
| 146 | for (auto F : ExportList) |
| 147 | // The export list can impact the internalization, be conservative here |
| 148 | Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F))); |
| 149 | |
Peter Collingbourne | 54a52b7 | 2017-03-03 20:25:30 +0000 | [diff] [blame] | 150 | // Include the hash for every module we import functions from. The set of |
| 151 | // imported symbols for each module may affect code generation and is |
| 152 | // sensitive to link order, so include that as well. |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 153 | for (auto &Entry : ImportList) { |
| 154 | auto ModHash = Index.getModuleHash(Entry.first()); |
| 155 | Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); |
Peter Collingbourne | 54a52b7 | 2017-03-03 20:25:30 +0000 | [diff] [blame] | 156 | |
| 157 | AddUint64(Entry.second.size()); |
| 158 | for (auto &Fn : Entry.second) |
| 159 | AddUint64(Fn.first); |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | // Include the hash for the resolved ODR. |
| 163 | for (auto &Entry : ResolvedODR) { |
| 164 | Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first, |
| 165 | sizeof(GlobalValue::GUID))); |
| 166 | Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second, |
| 167 | sizeof(GlobalValue::LinkageTypes))); |
| 168 | } |
| 169 | |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 170 | // Members of CfiFunctionDefs and CfiFunctionDecls that are referenced or |
| 171 | // defined in this module. |
| 172 | std::set<GlobalValue::GUID> UsedCfiDefs; |
| 173 | std::set<GlobalValue::GUID> UsedCfiDecls; |
| 174 | |
| 175 | // Typeids used in this module. |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 176 | std::set<GlobalValue::GUID> UsedTypeIds; |
| 177 | |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 178 | auto AddUsedCfiGlobal = [&](GlobalValue::GUID ValueGUID) { |
| 179 | if (CfiFunctionDefs.count(ValueGUID)) |
| 180 | UsedCfiDefs.insert(ValueGUID); |
| 181 | if (CfiFunctionDecls.count(ValueGUID)) |
| 182 | UsedCfiDecls.insert(ValueGUID); |
| 183 | }; |
| 184 | |
| 185 | auto AddUsedThings = [&](GlobalValueSummary *GS) { |
| 186 | if (!GS) return; |
Peter Collingbourne | 7f1a5ba | 2018-02-09 05:58:55 +0000 | [diff] [blame] | 187 | AddUnsigned(GS->isLive()); |
Peter Collingbourne | b4edfb9 | 2018-02-05 17:17:51 +0000 | [diff] [blame] | 188 | for (const ValueInfo &VI : GS->refs()) { |
| 189 | AddUnsigned(VI.isDSOLocal()); |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 190 | AddUsedCfiGlobal(VI.getGUID()); |
Peter Collingbourne | b4edfb9 | 2018-02-05 17:17:51 +0000 | [diff] [blame] | 191 | } |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 192 | if (auto *FS = dyn_cast<FunctionSummary>(GS)) { |
| 193 | for (auto &TT : FS->type_tests()) |
| 194 | UsedTypeIds.insert(TT); |
| 195 | for (auto &TT : FS->type_test_assume_vcalls()) |
| 196 | UsedTypeIds.insert(TT.GUID); |
| 197 | for (auto &TT : FS->type_checked_load_vcalls()) |
| 198 | UsedTypeIds.insert(TT.GUID); |
| 199 | for (auto &TT : FS->type_test_assume_const_vcalls()) |
| 200 | UsedTypeIds.insert(TT.VFunc.GUID); |
| 201 | for (auto &TT : FS->type_checked_load_const_vcalls()) |
| 202 | UsedTypeIds.insert(TT.VFunc.GUID); |
Peter Collingbourne | 3fe815d | 2018-02-05 23:46:32 +0000 | [diff] [blame] | 203 | for (auto &ET : FS->calls()) { |
| 204 | AddUnsigned(ET.first.isDSOLocal()); |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 205 | AddUsedCfiGlobal(ET.first.getGUID()); |
Peter Collingbourne | 3fe815d | 2018-02-05 23:46:32 +0000 | [diff] [blame] | 206 | } |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 207 | } |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 208 | }; |
| 209 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 210 | // Include the hash for the linkage type to reflect internalization and weak |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 211 | // resolution, and collect any used type identifier resolutions. |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 212 | for (auto &GS : DefinedGlobals) { |
| 213 | GlobalValue::LinkageTypes Linkage = GS.second->linkage(); |
| 214 | Hasher.update( |
| 215 | ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage))); |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 216 | AddUsedCfiGlobal(GS.first); |
| 217 | AddUsedThings(GS.second); |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | // Imported functions may introduce new uses of type identifier resolutions, |
| 221 | // so we need to collect their used resolutions as well. |
| 222 | for (auto &ImpM : ImportList) |
| 223 | for (auto &ImpF : ImpM.second) |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 224 | AddUsedThings(Index.findSummaryInModule(ImpF.first, ImpM.first())); |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 225 | |
| 226 | auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) { |
| 227 | AddString(TId); |
| 228 | |
| 229 | AddUnsigned(S.TTRes.TheKind); |
| 230 | AddUnsigned(S.TTRes.SizeM1BitWidth); |
Peter Collingbourne | 711284b | 2017-03-10 21:37:10 +0000 | [diff] [blame] | 231 | |
Peter Collingbourne | b9b6025 | 2017-09-11 22:49:10 +0000 | [diff] [blame] | 232 | AddUint64(S.TTRes.AlignLog2); |
| 233 | AddUint64(S.TTRes.SizeM1); |
| 234 | AddUint64(S.TTRes.BitMask); |
| 235 | AddUint64(S.TTRes.InlineBits); |
| 236 | |
Peter Collingbourne | 711284b | 2017-03-10 21:37:10 +0000 | [diff] [blame] | 237 | AddUint64(S.WPDRes.size()); |
| 238 | for (auto &WPD : S.WPDRes) { |
| 239 | AddUnsigned(WPD.first); |
| 240 | AddUnsigned(WPD.second.TheKind); |
| 241 | AddString(WPD.second.SingleImplName); |
| 242 | |
| 243 | AddUint64(WPD.second.ResByArg.size()); |
| 244 | for (auto &ByArg : WPD.second.ResByArg) { |
| 245 | AddUint64(ByArg.first.size()); |
| 246 | for (uint64_t Arg : ByArg.first) |
| 247 | AddUint64(Arg); |
| 248 | AddUnsigned(ByArg.second.TheKind); |
| 249 | AddUint64(ByArg.second.Info); |
Peter Collingbourne | b15a35e | 2017-09-11 22:34:42 +0000 | [diff] [blame] | 250 | AddUnsigned(ByArg.second.Byte); |
| 251 | AddUnsigned(ByArg.second.Bit); |
Peter Collingbourne | 711284b | 2017-03-10 21:37:10 +0000 | [diff] [blame] | 252 | } |
| 253 | } |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | // Include the hash for all type identifiers used by this module. |
| 257 | for (GlobalValue::GUID TId : UsedTypeIds) { |
| 258 | auto SummariesI = TypeIdSummariesByGuid.find(TId); |
| 259 | if (SummariesI != TypeIdSummariesByGuid.end()) |
| 260 | for (auto *Summary : SummariesI->second) |
| 261 | AddTypeIdSummary(Summary->first, Summary->second); |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 264 | AddUnsigned(UsedCfiDefs.size()); |
| 265 | for (auto &V : UsedCfiDefs) |
| 266 | AddUint64(V); |
| 267 | |
| 268 | AddUnsigned(UsedCfiDecls.size()); |
| 269 | for (auto &V : UsedCfiDecls) |
| 270 | AddUint64(V); |
| 271 | |
Dehao Chen | 2797800 | 2016-12-16 16:48:46 +0000 | [diff] [blame] | 272 | if (!Conf.SampleProfile.empty()) { |
| 273 | auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile); |
| 274 | if (FileOrErr) |
| 275 | Hasher.update(FileOrErr.get()->getBuffer()); |
| 276 | } |
| 277 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 278 | Key = toHex(Hasher.result()); |
| 279 | } |
| 280 | |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 281 | static void thinLTOResolveWeakForLinkerGUID( |
| 282 | GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, |
| 283 | DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias, |
Benjamin Kramer | d3f4c05 | 2016-06-12 16:13:55 +0000 | [diff] [blame] | 284 | function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)> |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 285 | isPrevailing, |
Benjamin Kramer | d3f4c05 | 2016-06-12 16:13:55 +0000 | [diff] [blame] | 286 | function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 287 | recordNewLinkage) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 288 | for (auto &S : GVSummaryList) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 289 | GlobalValue::LinkageTypes OriginalLinkage = S->linkage(); |
| 290 | if (!GlobalValue::isWeakForLinker(OriginalLinkage)) |
| 291 | continue; |
Peter Collingbourne | 73589f3 | 2016-07-07 18:31:51 +0000 | [diff] [blame] | 292 | // We need to emit only one of these. The prevailing module will keep it, |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 293 | // but turned into a weak, while the others will drop it when possible. |
Teresa Johnson | 3bc8abd | 2016-10-30 05:15:23 +0000 | [diff] [blame] | 294 | // This is both a compile-time optimization and a correctness |
| 295 | // transformation. This is necessary for correctness when we have exported |
| 296 | // a reference - we need to convert the linkonce to weak to |
| 297 | // ensure a copy is kept to satisfy the exported reference. |
| 298 | // FIXME: We may want to split the compile time and correctness |
| 299 | // aspects into separate routines. |
Peter Collingbourne | 73589f3 | 2016-07-07 18:31:51 +0000 | [diff] [blame] | 300 | if (isPrevailing(GUID, S.get())) { |
Teresa Johnson | 28c03b5 | 2016-05-26 14:16:52 +0000 | [diff] [blame] | 301 | if (GlobalValue::isLinkOnceLinkage(OriginalLinkage)) |
| 302 | S->setLinkage(GlobalValue::getWeakLinkage( |
| 303 | GlobalValue::isLinkOnceODRLinkage(OriginalLinkage))); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 304 | } |
Teresa Johnson | 3bc8abd | 2016-10-30 05:15:23 +0000 | [diff] [blame] | 305 | // Alias and aliasee can't be turned into available_externally. |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 306 | else if (!isa<AliasSummary>(S.get()) && |
Teresa Johnson | 4566c6d | 2017-01-20 21:54:58 +0000 | [diff] [blame] | 307 | !GlobalInvolvedWithAlias.count(S.get())) |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 308 | S->setLinkage(GlobalValue::AvailableExternallyLinkage); |
| 309 | if (S->linkage() != OriginalLinkage) |
| 310 | recordNewLinkage(S->modulePath(), GUID, S->linkage()); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | // Resolve Weak and LinkOnce values in the \p Index. |
| 315 | // |
| 316 | // We'd like to drop these functions if they are no longer referenced in the |
| 317 | // current module. However there is a chance that another module is still |
| 318 | // referencing them because of the import. We make sure we always emit at least |
| 319 | // one copy. |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 320 | void llvm::thinLTOResolveWeakForLinkerInIndex( |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 321 | ModuleSummaryIndex &Index, |
Benjamin Kramer | d3f4c05 | 2016-06-12 16:13:55 +0000 | [diff] [blame] | 322 | function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)> |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 323 | isPrevailing, |
Benjamin Kramer | d3f4c05 | 2016-06-12 16:13:55 +0000 | [diff] [blame] | 324 | function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 325 | recordNewLinkage) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 326 | // We won't optimize the globals that are referenced by an alias for now |
| 327 | // Ideally we should turn the alias into a global and duplicate the definition |
| 328 | // when needed. |
| 329 | DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias; |
| 330 | for (auto &I : Index) |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 331 | for (auto &S : I.second.SummaryList) |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 332 | if (auto AS = dyn_cast<AliasSummary>(S.get())) |
| 333 | GlobalInvolvedWithAlias.insert(&AS->getAliasee()); |
| 334 | |
| 335 | for (auto &I : Index) |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 336 | thinLTOResolveWeakForLinkerGUID(I.second.SummaryList, I.first, |
| 337 | GlobalInvolvedWithAlias, isPrevailing, |
| 338 | recordNewLinkage); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | static void thinLTOInternalizeAndPromoteGUID( |
| 342 | GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, |
Mehdi Amini | 1380edf | 2017-02-03 07:41:43 +0000 | [diff] [blame] | 343 | function_ref<bool(StringRef, GlobalValue::GUID)> isExported) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 344 | for (auto &S : GVSummaryList) { |
Mehdi Amini | 1380edf | 2017-02-03 07:41:43 +0000 | [diff] [blame] | 345 | if (isExported(S->modulePath(), GUID)) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 346 | if (GlobalValue::isLocalLinkage(S->linkage())) |
| 347 | S->setLinkage(GlobalValue::ExternalLinkage); |
| 348 | } else if (!GlobalValue::isLocalLinkage(S->linkage())) |
| 349 | S->setLinkage(GlobalValue::InternalLinkage); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | // Update the linkages in the given \p Index to mark exported values |
| 354 | // as external and non-exported values as internal. |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 355 | void llvm::thinLTOInternalizeAndPromoteInIndex( |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 356 | ModuleSummaryIndex &Index, |
Mehdi Amini | 1380edf | 2017-02-03 07:41:43 +0000 | [diff] [blame] | 357 | function_ref<bool(StringRef, GlobalValue::GUID)> isExported) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 358 | for (auto &I : Index) |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 359 | thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 360 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 361 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 362 | // Requires a destructor for std::vector<InputModule>. |
| 363 | InputFile::~InputFile() = default; |
| 364 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 365 | Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) { |
| 366 | std::unique_ptr<InputFile> File(new InputFile); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 367 | |
Peter Collingbourne | c00c2b2 | 2017-06-08 01:26:14 +0000 | [diff] [blame] | 368 | Expected<IRSymtabFile> FOrErr = readIRSymtab(Object); |
| 369 | if (!FOrErr) |
| 370 | return FOrErr.takeError(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 371 | |
Peter Collingbourne | c00c2b2 | 2017-06-08 01:26:14 +0000 | [diff] [blame] | 372 | File->TargetTriple = FOrErr->TheReader.getTargetTriple(); |
| 373 | File->SourceFileName = FOrErr->TheReader.getSourceFileName(); |
| 374 | File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts(); |
| 375 | File->ComdatTable = FOrErr->TheReader.getComdatTable(); |
Peter Collingbourne | ad90369 | 2016-12-13 19:43:49 +0000 | [diff] [blame] | 376 | |
Peter Collingbourne | c00c2b2 | 2017-06-08 01:26:14 +0000 | [diff] [blame] | 377 | for (unsigned I = 0; I != FOrErr->Mods.size(); ++I) { |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 378 | size_t Begin = File->Symbols.size(); |
Peter Collingbourne | c00c2b2 | 2017-06-08 01:26:14 +0000 | [diff] [blame] | 379 | for (const irsymtab::Reader::SymbolRef &Sym : |
| 380 | FOrErr->TheReader.module_symbols(I)) |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 381 | // Skip symbols that are irrelevant to LTO. Note that this condition needs |
| 382 | // to match the one in Skip() in LTO::addRegularLTO(). |
| 383 | if (Sym.isGlobal() && !Sym.isFormatSpecific()) |
| 384 | File->Symbols.push_back(Sym); |
| 385 | File->ModuleSymIndices.push_back({Begin, File->Symbols.size()}); |
Rafael Espindola | 7912110 | 2016-10-25 12:02:03 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Peter Collingbourne | c00c2b2 | 2017-06-08 01:26:14 +0000 | [diff] [blame] | 388 | File->Mods = FOrErr->Mods; |
| 389 | File->Strtab = std::move(FOrErr->Strtab); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 390 | return std::move(File); |
| 391 | } |
| 392 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 393 | StringRef InputFile::getName() const { |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 394 | return Mods[0].getModuleIdentifier(); |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 395 | } |
| 396 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 397 | LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel, |
| 398 | Config &Conf) |
| 399 | : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel), |
Vitaly Buka | a5376f3 | 2017-12-16 02:10:00 +0000 | [diff] [blame] | 400 | Ctx(Conf), CombinedModule(llvm::make_unique<Module>("ld-temp.o", Ctx)), |
| 401 | Mover(llvm::make_unique<IRMover>(*CombinedModule)) {} |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 402 | |
Eugene Leviant | 28d8a49 | 2018-01-22 13:35:40 +0000 | [diff] [blame] | 403 | LTO::ThinLTOState::ThinLTOState(ThinBackend Backend) |
Teresa Johnson | 4ffc3e7 | 2018-06-06 22:22:01 +0000 | [diff] [blame^] | 404 | : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 405 | if (!Backend) |
Teresa Johnson | ec544c5 | 2016-10-19 17:35:01 +0000 | [diff] [blame] | 406 | this->Backend = |
| 407 | createInProcessThinBackend(llvm::heavyweight_hardware_concurrency()); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | LTO::LTO(Config Conf, ThinBackend Backend, |
| 411 | unsigned ParallelCodeGenParallelismLevel) |
| 412 | : Conf(std::move(Conf)), |
| 413 | RegularLTO(ParallelCodeGenParallelismLevel, this->Conf), |
Mehdi Amini | 026ddbb | 2016-08-19 05:56:37 +0000 | [diff] [blame] | 414 | ThinLTO(std::move(Backend)) {} |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 415 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 416 | // Requires a destructor for MapVector<BitcodeModule>. |
| 417 | LTO::~LTO() = default; |
| 418 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 419 | // Add the symbols in the given module to the GlobalResolutions map, and resolve |
| 420 | // their partitions. |
| 421 | void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, |
| 422 | ArrayRef<SymbolResolution> Res, |
| 423 | unsigned Partition, bool InSummary) { |
| 424 | auto *ResI = Res.begin(); |
| 425 | auto *ResE = Res.end(); |
Peter Collingbourne | 7e85b26 | 2017-06-15 17:41:32 +0000 | [diff] [blame] | 426 | (void)ResE; |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 427 | for (const InputFile::Symbol &Sym : Syms) { |
| 428 | assert(ResI != ResE); |
| 429 | SymbolResolution Res = *ResI++; |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 430 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 431 | auto &GlobalRes = GlobalResolutions[Sym.getName()]; |
| 432 | GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr(); |
Eugene Leviant | 746f152 | 2017-12-15 09:18:21 +0000 | [diff] [blame] | 433 | if (Res.Prevailing) { |
George Rimar | d328365 | 2018-01-25 17:23:27 +0000 | [diff] [blame] | 434 | assert(!GlobalRes.Prevailing && |
Eugene Leviant | cb12249 | 2017-12-15 16:27:33 +0000 | [diff] [blame] | 435 | "Multiple prevailing defs are not allowed"); |
George Rimar | d328365 | 2018-01-25 17:23:27 +0000 | [diff] [blame] | 436 | GlobalRes.Prevailing = true; |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 437 | GlobalRes.IRName = Sym.getIRName(); |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 438 | } else if (!GlobalRes.Prevailing && GlobalRes.IRName.empty()) { |
| 439 | // Sometimes it can be two copies of symbol in a module and prevailing |
| 440 | // symbol can have no IR name. That might happen if symbol is defined in |
| 441 | // module level inline asm block. In case we have multiple modules with |
| 442 | // the same symbol we want to use IR name of the prevailing symbol. |
| 443 | // Otherwise, if we haven't seen a prevailing symbol, set the name so that |
| 444 | // we can later use it to check if there is any prevailing copy in IR. |
| 445 | GlobalRes.IRName = Sym.getIRName(); |
Eugene Leviant | 746f152 | 2017-12-15 09:18:21 +0000 | [diff] [blame] | 446 | } |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 447 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 448 | // Set the partition to external if we know it is re-defined by the linker |
| 449 | // with -defsym or -wrap options, used elsewhere, e.g. it is visible to a |
| 450 | // regular object, is referenced from llvm.compiler_used, or was already |
| 451 | // recorded as being referenced from a different partition. |
| 452 | if (Res.LinkerRedefined || Res.VisibleToRegularObj || Sym.isUsed() || |
| 453 | (GlobalRes.Partition != GlobalResolution::Unknown && |
| 454 | GlobalRes.Partition != Partition)) { |
| 455 | GlobalRes.Partition = GlobalResolution::External; |
| 456 | } else |
| 457 | // First recorded reference, save the current partition. |
| 458 | GlobalRes.Partition = Partition; |
| 459 | |
| 460 | // Flag as visible outside of summary if visible from a regular object or |
| 461 | // from a module that does not have a summary. |
| 462 | GlobalRes.VisibleOutsideSummary |= |
| 463 | (Res.VisibleToRegularObj || Sym.isUsed() || !InSummary); |
| 464 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 465 | } |
| 466 | |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 467 | static void writeToResolutionFile(raw_ostream &OS, InputFile *Input, |
| 468 | ArrayRef<SymbolResolution> Res) { |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 469 | StringRef Path = Input->getName(); |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 470 | OS << Path << '\n'; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 471 | auto ResI = Res.begin(); |
| 472 | for (const InputFile::Symbol &Sym : Input->symbols()) { |
| 473 | assert(ResI != Res.end()); |
| 474 | SymbolResolution Res = *ResI++; |
| 475 | |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 476 | OS << "-r=" << Path << ',' << Sym.getName() << ','; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 477 | if (Res.Prevailing) |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 478 | OS << 'p'; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 479 | if (Res.FinalDefinitionInLinkageUnit) |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 480 | OS << 'l'; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 481 | if (Res.VisibleToRegularObj) |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 482 | OS << 'x'; |
Dmitry Mikulin | db3b87b | 2017-06-05 16:24:25 +0000 | [diff] [blame] | 483 | if (Res.LinkerRedefined) |
| 484 | OS << 'r'; |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 485 | OS << '\n'; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 486 | } |
Peter Collingbourne | 58ffcfb | 2017-01-19 23:10:14 +0000 | [diff] [blame] | 487 | OS.flush(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 488 | assert(ResI == Res.end()); |
| 489 | } |
| 490 | |
| 491 | Error LTO::add(std::unique_ptr<InputFile> Input, |
| 492 | ArrayRef<SymbolResolution> Res) { |
| 493 | assert(!CalledGetMaxTasks); |
| 494 | |
| 495 | if (Conf.ResolutionFile) |
Rafael Espindola | 7775c33 | 2016-08-26 20:19:35 +0000 | [diff] [blame] | 496 | writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 497 | |
Vitaly Buka | a5376f3 | 2017-12-16 02:10:00 +0000 | [diff] [blame] | 498 | if (RegularLTO.CombinedModule->getTargetTriple().empty()) |
| 499 | RegularLTO.CombinedModule->setTargetTriple(Input->getTargetTriple()); |
| 500 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 501 | const SymbolResolution *ResI = Res.begin(); |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 502 | for (unsigned I = 0; I != Input->Mods.size(); ++I) |
| 503 | if (Error Err = addModule(*Input, I, ResI, Res.end())) |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 504 | return Err; |
| 505 | |
| 506 | assert(ResI == Res.end()); |
| 507 | return Error::success(); |
| 508 | } |
| 509 | |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 510 | Error LTO::addModule(InputFile &Input, unsigned ModI, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 511 | const SymbolResolution *&ResI, |
| 512 | const SymbolResolution *ResE) { |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 513 | Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo(); |
| 514 | if (!LTOInfo) |
| 515 | return LTOInfo.takeError(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 516 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 517 | BitcodeModule BM = Input.Mods[ModI]; |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 518 | auto ModSyms = Input.module_symbols(ModI); |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 519 | addModuleToGlobalRes(ModSyms, {ResI, ResE}, |
| 520 | LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0, |
| 521 | LTOInfo->HasSummary); |
| 522 | |
| 523 | if (LTOInfo->IsThinLTO) |
| 524 | return addThinLTO(BM, ModSyms, ResI, ResE); |
| 525 | |
| 526 | Expected<RegularLTOState::AddedModule> ModOrErr = |
| 527 | addRegularLTO(BM, ModSyms, ResI, ResE); |
| 528 | if (!ModOrErr) |
| 529 | return ModOrErr.takeError(); |
| 530 | |
| 531 | if (!LTOInfo->HasSummary) |
| 532 | return linkRegularLTO(std::move(*ModOrErr), /*LivenessFromIndex=*/false); |
| 533 | |
| 534 | // Regular LTO module summaries are added to a dummy module that represents |
| 535 | // the combined regular LTO module. |
| 536 | if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull)) |
| 537 | return Err; |
| 538 | RegularLTO.ModsWithSummaries.push_back(std::move(*ModOrErr)); |
| 539 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 540 | } |
| 541 | |
Teresa Johnson | b247ffb | 2017-06-30 14:03:24 +0000 | [diff] [blame] | 542 | // Checks whether the given global value is in a non-prevailing comdat |
| 543 | // (comdat containing values the linker indicated were not prevailing, |
| 544 | // which we then dropped to available_externally), and if so, removes |
| 545 | // it from the comdat. This is called for all global values to ensure the |
| 546 | // comdat is empty rather than leaving an incomplete comdat. It is needed for |
| 547 | // regular LTO modules, in case we are in a mixed-LTO mode (both regular |
| 548 | // and thin LTO modules) compilation. Since the regular LTO module will be |
| 549 | // linked first in the final native link, we want to make sure the linker |
| 550 | // doesn't select any of these incomplete comdats that would be left |
| 551 | // in the regular LTO module without this cleanup. |
| 552 | static void |
| 553 | handleNonPrevailingComdat(GlobalValue &GV, |
| 554 | std::set<const Comdat *> &NonPrevailingComdats) { |
| 555 | Comdat *C = GV.getComdat(); |
| 556 | if (!C) |
| 557 | return; |
| 558 | |
| 559 | if (!NonPrevailingComdats.count(C)) |
| 560 | return; |
| 561 | |
| 562 | // Additionally need to drop externally visible global values from the comdat |
| 563 | // to available_externally, so that there aren't multiply defined linker |
| 564 | // errors. |
| 565 | if (!GV.hasLocalLinkage()) |
| 566 | GV.setLinkage(GlobalValue::AvailableExternallyLinkage); |
| 567 | |
| 568 | if (auto GO = dyn_cast<GlobalObject>(&GV)) |
| 569 | GO->setComdat(nullptr); |
| 570 | } |
| 571 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 572 | // Add a regular LTO object to the link. |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 573 | // The resulting module needs to be linked into the combined LTO module with |
| 574 | // linkRegularLTO. |
| 575 | Expected<LTO::RegularLTOState::AddedModule> |
| 576 | LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, |
| 577 | const SymbolResolution *&ResI, |
| 578 | const SymbolResolution *ResE) { |
| 579 | RegularLTOState::AddedModule Mod; |
Peter Collingbourne | ad90369 | 2016-12-13 19:43:49 +0000 | [diff] [blame] | 580 | Expected<std::unique_ptr<Module>> MOrErr = |
Teresa Johnson | a61f5e3 | 2016-12-16 21:25:01 +0000 | [diff] [blame] | 581 | BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true, |
| 582 | /*IsImporting*/ false); |
Peter Collingbourne | ad90369 | 2016-12-13 19:43:49 +0000 | [diff] [blame] | 583 | if (!MOrErr) |
| 584 | return MOrErr.takeError(); |
Peter Collingbourne | ad90369 | 2016-12-13 19:43:49 +0000 | [diff] [blame] | 585 | Module &M = **MOrErr; |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 586 | Mod.M = std::move(*MOrErr); |
| 587 | |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 588 | if (Error Err = M.materializeMetadata()) |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 589 | return std::move(Err); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 590 | UpgradeDebugInfo(M); |
| 591 | |
Peter Collingbourne | ad90369 | 2016-12-13 19:43:49 +0000 | [diff] [blame] | 592 | ModuleSymbolTable SymTab; |
| 593 | SymTab.addModule(&M); |
| 594 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 595 | for (GlobalVariable &GV : M.globals()) |
| 596 | if (GV.hasAppendingLinkage()) |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 597 | Mod.Keep.push_back(&GV); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 598 | |
Peter Collingbourne | 4613626 | 2017-02-02 05:22:42 +0000 | [diff] [blame] | 599 | DenseSet<GlobalObject *> AliasedGlobals; |
| 600 | for (auto &GA : M.aliases()) |
| 601 | if (GlobalObject *GO = GA.getBaseObject()) |
| 602 | AliasedGlobals.insert(GO); |
| 603 | |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 604 | // In this function we need IR GlobalValues matching the symbols in Syms |
| 605 | // (which is not backed by a module), so we need to enumerate them in the same |
| 606 | // order. The symbol enumeration order of a ModuleSymbolTable intentionally |
| 607 | // matches the order of an irsymtab, but when we read the irsymtab in |
| 608 | // InputFile::create we omit some symbols that are irrelevant to LTO. The |
| 609 | // Skip() function skips the same symbols from the module as InputFile does |
| 610 | // from the symbol table. |
| 611 | auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end(); |
| 612 | auto Skip = [&]() { |
| 613 | while (MsymI != MsymE) { |
| 614 | auto Flags = SymTab.getSymbolFlags(*MsymI); |
| 615 | if ((Flags & object::BasicSymbolRef::SF_Global) && |
| 616 | !(Flags & object::BasicSymbolRef::SF_FormatSpecific)) |
| 617 | return; |
| 618 | ++MsymI; |
| 619 | } |
| 620 | }; |
| 621 | Skip(); |
| 622 | |
Teresa Johnson | b247ffb | 2017-06-30 14:03:24 +0000 | [diff] [blame] | 623 | std::set<const Comdat *> NonPrevailingComdats; |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 624 | for (const InputFile::Symbol &Sym : Syms) { |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 625 | assert(ResI != ResE); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 626 | SymbolResolution Res = *ResI++; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 627 | |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 628 | assert(MsymI != MsymE); |
| 629 | ModuleSymbolTable::Symbol Msym = *MsymI++; |
| 630 | Skip(); |
| 631 | |
| 632 | if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) { |
Peter Collingbourne | c387e70 | 2017-02-02 05:12:15 +0000 | [diff] [blame] | 633 | if (Res.Prevailing) { |
Peter Collingbourne | 0d56b95 | 2017-03-28 22:31:35 +0000 | [diff] [blame] | 634 | if (Sym.isUndefined()) |
Peter Collingbourne | c387e70 | 2017-02-02 05:12:15 +0000 | [diff] [blame] | 635 | continue; |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 636 | Mod.Keep.push_back(GV); |
Dmitry Mikulin | db3b87b | 2017-06-05 16:24:25 +0000 | [diff] [blame] | 637 | // For symbols re-defined with linker -wrap and -defsym options, |
| 638 | // set the linkage to weak to inhibit IPO. The linkage will be |
| 639 | // restored by the linker. |
| 640 | if (Res.LinkerRedefined) |
| 641 | GV->setLinkage(GlobalValue::WeakAnyLinkage); |
| 642 | |
Davide Italiano | d4db116 | 2017-05-26 21:56:14 +0000 | [diff] [blame] | 643 | GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage(); |
| 644 | if (GlobalValue::isLinkOnceLinkage(OriginalLinkage)) |
| 645 | GV->setLinkage(GlobalValue::getWeakLinkage( |
| 646 | GlobalValue::isLinkOnceODRLinkage(OriginalLinkage))); |
Peter Collingbourne | 4613626 | 2017-02-02 05:22:42 +0000 | [diff] [blame] | 647 | } else if (isa<GlobalObject>(GV) && |
| 648 | (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() || |
| 649 | GV->hasAvailableExternallyLinkage()) && |
| 650 | !AliasedGlobals.count(cast<GlobalObject>(GV))) { |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 651 | // Any of the above three types of linkage indicates that the |
Peter Collingbourne | 4613626 | 2017-02-02 05:22:42 +0000 | [diff] [blame] | 652 | // chosen prevailing symbol will have the same semantics as this copy of |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 653 | // the symbol, so we may be able to link it with available_externally |
| 654 | // linkage. We will decide later whether to do that when we link this |
| 655 | // module (in linkRegularLTO), based on whether it is undefined. |
| 656 | Mod.Keep.push_back(GV); |
| 657 | GV->setLinkage(GlobalValue::AvailableExternallyLinkage); |
Teresa Johnson | b247ffb | 2017-06-30 14:03:24 +0000 | [diff] [blame] | 658 | if (GV->hasComdat()) |
| 659 | NonPrevailingComdats.insert(GV->getComdat()); |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 660 | cast<GlobalObject>(GV)->setComdat(nullptr); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 661 | } |
Sean Fertile | 4595a91 | 2017-11-04 17:04:39 +0000 | [diff] [blame] | 662 | |
| 663 | // Set the 'local' flag based on the linker resolution for this symbol. |
Rafael Espindola | 8a1ca67 | 2018-01-18 05:38:43 +0000 | [diff] [blame] | 664 | if (Res.FinalDefinitionInLinkageUnit) |
Rafael Espindola | 349fe0a | 2018-01-24 19:11:24 +0000 | [diff] [blame] | 665 | GV->setDSOLocal(true); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 666 | } |
Mehdi Amini | b2f46d1d | 2016-09-14 21:05:04 +0000 | [diff] [blame] | 667 | // Common resolution: collect the maximum size/alignment over all commons. |
| 668 | // We also record if we see an instance of a common as prevailing, so that |
| 669 | // if none is prevailing we can ignore it later. |
Peter Collingbourne | 0d56b95 | 2017-03-28 22:31:35 +0000 | [diff] [blame] | 670 | if (Sym.isCommon()) { |
Peter Collingbourne | fb8c2a4 | 2016-12-01 02:51:12 +0000 | [diff] [blame] | 671 | // FIXME: We should figure out what to do about commons defined by asm. |
| 672 | // For now they aren't reported correctly by ModuleSymbolTable. |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 673 | auto &CommonRes = RegularLTO.Commons[Sym.getIRName()]; |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 674 | CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize()); |
| 675 | CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment()); |
Mehdi Amini | b2f46d1d | 2016-09-14 21:05:04 +0000 | [diff] [blame] | 676 | CommonRes.Prevailing |= Res.Prevailing; |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 677 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 678 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 679 | } |
Teresa Johnson | b247ffb | 2017-06-30 14:03:24 +0000 | [diff] [blame] | 680 | if (!M.getComdatSymbolTable().empty()) |
| 681 | for (GlobalValue &GV : M.global_values()) |
| 682 | handleNonPrevailingComdat(GV, NonPrevailingComdats); |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 683 | assert(MsymI == MsymE); |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 684 | return std::move(Mod); |
| 685 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 686 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 687 | Error LTO::linkRegularLTO(RegularLTOState::AddedModule Mod, |
| 688 | bool LivenessFromIndex) { |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 689 | std::vector<GlobalValue *> Keep; |
| 690 | for (GlobalValue *GV : Mod.Keep) { |
| 691 | if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID())) |
| 692 | continue; |
| 693 | |
| 694 | if (!GV->hasAvailableExternallyLinkage()) { |
| 695 | Keep.push_back(GV); |
| 696 | continue; |
| 697 | } |
| 698 | |
| 699 | // Only link available_externally definitions if we don't already have a |
| 700 | // definition. |
| 701 | GlobalValue *CombinedGV = |
| 702 | RegularLTO.CombinedModule->getNamedValue(GV->getName()); |
| 703 | if (CombinedGV && !CombinedGV->isDeclaration()) |
| 704 | continue; |
| 705 | |
| 706 | Keep.push_back(GV); |
| 707 | } |
| 708 | |
| 709 | return RegularLTO.Mover->move(std::move(Mod.M), Keep, |
Teresa Johnson | 4b9b379 | 2016-10-12 18:39:29 +0000 | [diff] [blame] | 710 | [](GlobalValue &, IRMover::ValueAdder) {}, |
Teresa Johnson | 040cc16 | 2016-12-12 16:09:30 +0000 | [diff] [blame] | 711 | /* IsPerformingImport */ false); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 714 | // Add a ThinLTO module to the link. |
| 715 | Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 716 | const SymbolResolution *&ResI, |
| 717 | const SymbolResolution *ResE) { |
Peter Collingbourne | 74d22dd | 2017-05-01 22:04:36 +0000 | [diff] [blame] | 718 | if (Error Err = |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 719 | BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(), |
| 720 | ThinLTO.ModuleMap.size())) |
Peter Collingbourne | 74d22dd | 2017-05-01 22:04:36 +0000 | [diff] [blame] | 721 | return Err; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 722 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 723 | for (const InputFile::Symbol &Sym : Syms) { |
| 724 | assert(ResI != ResE); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 725 | SymbolResolution Res = *ResI++; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 726 | |
Sean Fertile | 4595a91 | 2017-11-04 17:04:39 +0000 | [diff] [blame] | 727 | if (!Sym.getIRName().empty()) { |
| 728 | auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier( |
| 729 | Sym.getIRName(), GlobalValue::ExternalLinkage, "")); |
| 730 | if (Res.Prevailing) { |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 731 | ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier(); |
Davide Italiano | 6a5fbe5 | 2017-07-06 19:58:26 +0000 | [diff] [blame] | 732 | |
| 733 | // For linker redefined symbols (via --wrap or --defsym) we want to |
| 734 | // switch the linkage to `weak` to prevent IPOs from happening. |
| 735 | // Find the summary in the module for this very GV and record the new |
| 736 | // linkage so that we can switch it when we import the GV. |
| 737 | if (Res.LinkerRedefined) |
| 738 | if (auto S = ThinLTO.CombinedIndex.findSummaryInModule( |
| 739 | GUID, BM.getModuleIdentifier())) |
| 740 | S->setLinkage(GlobalValue::WeakAnyLinkage); |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 741 | } |
Sean Fertile | 4595a91 | 2017-11-04 17:04:39 +0000 | [diff] [blame] | 742 | |
| 743 | // If the linker resolved the symbol to a local definition then mark it |
| 744 | // as local in the summary for the module we are adding. |
| 745 | if (Res.FinalDefinitionInLinkageUnit) { |
| 746 | if (auto S = ThinLTO.CombinedIndex.findSummaryInModule( |
| 747 | GUID, BM.getModuleIdentifier())) { |
| 748 | S->setDSOLocal(true); |
| 749 | } |
| 750 | } |
Peter Collingbourne | 7b30f16 | 2017-03-31 04:47:07 +0000 | [diff] [blame] | 751 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 752 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 753 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 754 | if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second) |
| 755 | return make_error<StringError>( |
| 756 | "Expected at most one ThinLTO module per bitcode file", |
| 757 | inconvertibleErrorCode()); |
| 758 | |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 759 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 760 | } |
| 761 | |
Teresa Johnson | faa7506 | 2016-08-11 20:38:39 +0000 | [diff] [blame] | 762 | unsigned LTO::getMaxTasks() const { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 763 | CalledGetMaxTasks = true; |
| 764 | return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size(); |
| 765 | } |
| 766 | |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 767 | Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) { |
Evgeniy Stepanov | 659b3bc | 2017-06-02 18:24:17 +0000 | [diff] [blame] | 768 | // Compute "dead" symbols, we don't want to import/export these! |
| 769 | DenseSet<GlobalValue::GUID> GUIDPreservedSymbols; |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 770 | DenseMap<GlobalValue::GUID, PrevailingType> GUIDPrevailingResolutions; |
| 771 | for (auto &Res : GlobalResolutions) { |
| 772 | // Normally resolution have IR name of symbol. We can do nothing here |
| 773 | // otherwise. See comments in GlobalResolution struct for more details. |
| 774 | if (Res.second.IRName.empty()) |
| 775 | continue; |
| 776 | |
| 777 | GlobalValue::GUID GUID = GlobalValue::getGUID( |
| 778 | GlobalValue::dropLLVMManglingEscape(Res.second.IRName)); |
| 779 | |
George Rimar | d328365 | 2018-01-25 17:23:27 +0000 | [diff] [blame] | 780 | if (Res.second.VisibleOutsideSummary && Res.second.Prevailing) |
Evgeniy Stepanov | 659b3bc | 2017-06-02 18:24:17 +0000 | [diff] [blame] | 781 | GUIDPreservedSymbols.insert(GlobalValue::getGUID( |
| 782 | GlobalValue::dropLLVMManglingEscape(Res.second.IRName))); |
Evgeniy Stepanov | 659b3bc | 2017-06-02 18:24:17 +0000 | [diff] [blame] | 783 | |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 784 | GUIDPrevailingResolutions[GUID] = |
| 785 | Res.second.Prevailing ? PrevailingType::Yes : PrevailingType::No; |
| 786 | } |
| 787 | |
| 788 | auto isPrevailing = [&](GlobalValue::GUID G) { |
| 789 | auto It = GUIDPrevailingResolutions.find(G); |
| 790 | if (It == GUIDPrevailingResolutions.end()) |
| 791 | return PrevailingType::Unknown; |
| 792 | return It->second; |
| 793 | }; |
| 794 | computeDeadSymbols(ThinLTO.CombinedIndex, GUIDPreservedSymbols, isPrevailing); |
Evgeniy Stepanov | 659b3bc | 2017-06-02 18:24:17 +0000 | [diff] [blame] | 795 | |
Florian Hahn | d4332eb | 2018-04-20 10:18:36 +0000 | [diff] [blame] | 796 | // Setup output file to emit statistics. |
| 797 | std::unique_ptr<ToolOutputFile> StatsFile = nullptr; |
| 798 | if (!Conf.StatsFile.empty()) { |
| 799 | EnableStatistics(false); |
| 800 | std::error_code EC; |
| 801 | StatsFile = |
| 802 | llvm::make_unique<ToolOutputFile>(Conf.StatsFile, EC, sys::fs::F_None); |
| 803 | if (EC) |
| 804 | return errorCodeToError(EC); |
| 805 | StatsFile->keep(); |
| 806 | } |
| 807 | |
| 808 | Error Result = runRegularLTO(AddStream); |
| 809 | if (!Result) |
| 810 | Result = runThinLTO(AddStream, Cache); |
| 811 | |
| 812 | if (StatsFile) |
| 813 | PrintStatisticsJSON(StatsFile->os()); |
| 814 | |
| 815 | return Result; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 816 | } |
| 817 | |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 818 | Error LTO::runRegularLTO(AddStreamFn AddStream) { |
Peter Collingbourne | dbd2fed | 2017-06-15 17:26:13 +0000 | [diff] [blame] | 819 | for (auto &M : RegularLTO.ModsWithSummaries) |
| 820 | if (Error Err = linkRegularLTO(std::move(M), |
| 821 | /*LivenessFromIndex=*/true)) |
| 822 | return Err; |
| 823 | |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 824 | // Make sure commons have the right size/alignment: we kept the largest from |
| 825 | // all the prevailing when adding the inputs, and we apply it here. |
Teresa Johnson | e2e621a | 2016-08-27 04:41:22 +0000 | [diff] [blame] | 826 | const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout(); |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 827 | for (auto &I : RegularLTO.Commons) { |
Mehdi Amini | b2f46d1d | 2016-09-14 21:05:04 +0000 | [diff] [blame] | 828 | if (!I.second.Prevailing) |
| 829 | // Don't do anything if no instance of this common was prevailing. |
| 830 | continue; |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 831 | GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first); |
Teresa Johnson | e2e621a | 2016-08-27 04:41:22 +0000 | [diff] [blame] | 832 | if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) { |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 833 | // Don't create a new global if the type is already correct, just make |
| 834 | // sure the alignment is correct. |
| 835 | OldGV->setAlignment(I.second.Align); |
| 836 | continue; |
| 837 | } |
Teresa Johnson | e2e621a | 2016-08-27 04:41:22 +0000 | [diff] [blame] | 838 | ArrayType *Ty = |
| 839 | ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size); |
Mehdi Amini | dc4c8cf | 2016-08-22 06:25:46 +0000 | [diff] [blame] | 840 | auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false, |
| 841 | GlobalValue::CommonLinkage, |
| 842 | ConstantAggregateZero::get(Ty), ""); |
| 843 | GV->setAlignment(I.second.Align); |
| 844 | if (OldGV) { |
| 845 | OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType())); |
| 846 | GV->takeName(OldGV); |
| 847 | OldGV->eraseFromParent(); |
| 848 | } else { |
| 849 | GV->setName(I.first); |
| 850 | } |
| 851 | } |
| 852 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 853 | if (Conf.PreOptModuleHook && |
| 854 | !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule)) |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 855 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 856 | |
Mehdi Amini | d310b47 | 2016-08-22 06:25:41 +0000 | [diff] [blame] | 857 | if (!Conf.CodeGenOnly) { |
| 858 | for (const auto &R : GlobalResolutions) { |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 859 | if (!R.second.isPrevailingIRSymbol()) |
Mehdi Amini | d310b47 | 2016-08-22 06:25:41 +0000 | [diff] [blame] | 860 | continue; |
| 861 | if (R.second.Partition != 0 && |
| 862 | R.second.Partition != GlobalResolution::External) |
| 863 | continue; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 864 | |
Mehdi Amini | d310b47 | 2016-08-22 06:25:41 +0000 | [diff] [blame] | 865 | GlobalValue *GV = |
| 866 | RegularLTO.CombinedModule->getNamedValue(R.second.IRName); |
| 867 | // Ignore symbols defined in other partitions. |
| 868 | if (!GV || GV->hasLocalLinkage()) |
| 869 | continue; |
| 870 | GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global |
| 871 | : GlobalValue::UnnamedAddr::None); |
| 872 | if (R.second.Partition == 0) |
| 873 | GV->setLinkage(GlobalValue::InternalLinkage); |
| 874 | } |
| 875 | |
| 876 | if (Conf.PostInternalizeModuleHook && |
| 877 | !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule)) |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 878 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 879 | } |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 880 | return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel, |
Peter Collingbourne | e02b74e | 2017-01-20 22:18:52 +0000 | [diff] [blame] | 881 | std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /// This class defines the interface to the ThinLTO backend. |
| 885 | class lto::ThinBackendProc { |
| 886 | protected: |
| 887 | Config &Conf; |
| 888 | ModuleSummaryIndex &CombinedIndex; |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 889 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 890 | |
| 891 | public: |
| 892 | ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex, |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 893 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries) |
Mehdi Amini | 18b9111 | 2016-08-19 06:10:03 +0000 | [diff] [blame] | 894 | : Conf(Conf), CombinedIndex(CombinedIndex), |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 895 | ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {} |
| 896 | |
| 897 | virtual ~ThinBackendProc() {} |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 898 | virtual Error start( |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 899 | unsigned Task, BitcodeModule BM, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 900 | const FunctionImporter::ImportMapTy &ImportList, |
| 901 | const FunctionImporter::ExportSetTy &ExportList, |
| 902 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 903 | MapVector<StringRef, BitcodeModule> &ModuleMap) = 0; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 904 | virtual Error wait() = 0; |
| 905 | }; |
| 906 | |
Benjamin Kramer | ffd3715 | 2016-11-19 20:44:26 +0000 | [diff] [blame] | 907 | namespace { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 908 | class InProcessThinBackend : public ThinBackendProc { |
| 909 | ThreadPool BackendThreadPool; |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 910 | AddStreamFn AddStream; |
| 911 | NativeObjectCache Cache; |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 912 | TypeIdSummariesByGuidTy TypeIdSummariesByGuid; |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 913 | std::set<GlobalValue::GUID> CfiFunctionDefs; |
| 914 | std::set<GlobalValue::GUID> CfiFunctionDecls; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 915 | |
| 916 | Optional<Error> Err; |
| 917 | std::mutex ErrMu; |
| 918 | |
| 919 | public: |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 920 | InProcessThinBackend( |
| 921 | Config &Conf, ModuleSummaryIndex &CombinedIndex, |
| 922 | unsigned ThinLTOParallelismLevel, |
| 923 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 924 | AddStreamFn AddStream, NativeObjectCache Cache) |
Mehdi Amini | 18b9111 | 2016-08-19 06:10:03 +0000 | [diff] [blame] | 925 | : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries), |
| 926 | BackendThreadPool(ThinLTOParallelismLevel), |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 927 | AddStream(std::move(AddStream)), Cache(std::move(Cache)) { |
| 928 | // Create a mapping from type identifier GUIDs to type identifier summaries. |
| 929 | // This allows backends to use the type identifier GUIDs stored in the |
| 930 | // function summaries to determine which type identifier summaries affect |
| 931 | // each function without needing to compute GUIDs in each backend. |
| 932 | for (auto &TId : CombinedIndex.typeIds()) |
| 933 | TypeIdSummariesByGuid[GlobalValue::getGUID(TId.first)].push_back(&TId); |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 934 | for (auto &Name : CombinedIndex.cfiFunctionDefs()) |
| 935 | CfiFunctionDefs.insert( |
| 936 | GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name))); |
| 937 | for (auto &Name : CombinedIndex.cfiFunctionDecls()) |
| 938 | CfiFunctionDecls.insert( |
| 939 | GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name))); |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 940 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 941 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 942 | Error runThinLTOBackendThread( |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 943 | AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 944 | BitcodeModule BM, ModuleSummaryIndex &CombinedIndex, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 945 | const FunctionImporter::ImportMapTy &ImportList, |
| 946 | const FunctionImporter::ExportSetTy &ExportList, |
| 947 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, |
| 948 | const GVSummaryMapTy &DefinedGlobals, |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 949 | MapVector<StringRef, BitcodeModule> &ModuleMap, |
| 950 | const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) { |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 951 | auto RunThinBackend = [&](AddStreamFn AddStream) { |
| 952 | LTOLLVMContext BackendContext(Conf); |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 953 | Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext); |
Peter Collingbourne | d9445c4 | 2016-11-13 07:00:17 +0000 | [diff] [blame] | 954 | if (!MOrErr) |
| 955 | return MOrErr.takeError(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 956 | |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 957 | return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex, |
| 958 | ImportList, DefinedGlobals, ModuleMap); |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 959 | }; |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 960 | |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 961 | auto ModuleID = BM.getModuleIdentifier(); |
Mehdi Amini | f82bda0 | 2016-10-08 04:44:23 +0000 | [diff] [blame] | 962 | |
| 963 | if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) || |
| 964 | all_of(CombinedIndex.getModuleHash(ModuleID), |
| 965 | [](uint32_t V) { return V == 0; })) |
| 966 | // Cache disabled or no entry for this module in the combined index or |
| 967 | // no module hash. |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 968 | return RunThinBackend(AddStream); |
| 969 | |
| 970 | SmallString<40> Key; |
| 971 | // The module may be cached, this helps handling it. |
Peter Collingbourne | f425752 | 2016-12-08 05:28:30 +0000 | [diff] [blame] | 972 | computeCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList, ExportList, |
Evgeniy Stepanov | 3427d17 | 2017-08-09 23:24:07 +0000 | [diff] [blame] | 973 | ResolvedODR, DefinedGlobals, TypeIdSummariesByGuid, |
| 974 | CfiFunctionDefs, CfiFunctionDecls); |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 975 | if (AddStreamFn CacheAddStream = Cache(Task, Key)) |
| 976 | return RunThinBackend(CacheAddStream); |
| 977 | |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 978 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 979 | } |
| 980 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 981 | Error start( |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 982 | unsigned Task, BitcodeModule BM, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 983 | const FunctionImporter::ImportMapTy &ImportList, |
| 984 | const FunctionImporter::ExportSetTy &ExportList, |
| 985 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 986 | MapVector<StringRef, BitcodeModule> &ModuleMap) override { |
| 987 | StringRef ModulePath = BM.getModuleIdentifier(); |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 988 | assert(ModuleToDefinedGVSummaries.count(ModulePath)); |
| 989 | const GVSummaryMapTy &DefinedGlobals = |
| 990 | ModuleToDefinedGVSummaries.find(ModulePath)->second; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 991 | BackendThreadPool.async( |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 992 | [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex, |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 993 | const FunctionImporter::ImportMapTy &ImportList, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 994 | const FunctionImporter::ExportSetTy &ExportList, |
| 995 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> |
| 996 | &ResolvedODR, |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 997 | const GVSummaryMapTy &DefinedGlobals, |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 998 | MapVector<StringRef, BitcodeModule> &ModuleMap, |
| 999 | const TypeIdSummariesByGuidTy &TypeIdSummariesByGuid) { |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1000 | Error E = runThinLTOBackendThread( |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 1001 | AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList, |
| 1002 | ResolvedODR, DefinedGlobals, ModuleMap, TypeIdSummariesByGuid); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1003 | if (E) { |
| 1004 | std::unique_lock<std::mutex> L(ErrMu); |
| 1005 | if (Err) |
| 1006 | Err = joinErrors(std::move(*Err), std::move(E)); |
| 1007 | else |
| 1008 | Err = std::move(E); |
| 1009 | } |
| 1010 | }, |
Peter Collingbourne | 780a4dd | 2017-03-10 21:35:17 +0000 | [diff] [blame] | 1011 | BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList), |
| 1012 | std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap), |
| 1013 | std::ref(TypeIdSummariesByGuid)); |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1014 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1015 | } |
| 1016 | |
| 1017 | Error wait() override { |
| 1018 | BackendThreadPool.wait(); |
| 1019 | if (Err) |
| 1020 | return std::move(*Err); |
| 1021 | else |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1022 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1023 | } |
| 1024 | }; |
Benjamin Kramer | ffd3715 | 2016-11-19 20:44:26 +0000 | [diff] [blame] | 1025 | } // end anonymous namespace |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1026 | |
| 1027 | ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) { |
| 1028 | return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex, |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 1029 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 1030 | AddStreamFn AddStream, NativeObjectCache Cache) { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1031 | return llvm::make_unique<InProcessThinBackend>( |
| 1032 | Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries, |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 1033 | AddStream, Cache); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1034 | }; |
| 1035 | } |
| 1036 | |
Teresa Johnson | 3f212b8 | 2016-09-21 19:12:05 +0000 | [diff] [blame] | 1037 | // Given the original \p Path to an output file, replace any path |
| 1038 | // prefix matching \p OldPrefix with \p NewPrefix. Also, create the |
| 1039 | // resulting directory if it does not yet exist. |
| 1040 | std::string lto::getThinLTOOutputFile(const std::string &Path, |
| 1041 | const std::string &OldPrefix, |
| 1042 | const std::string &NewPrefix) { |
| 1043 | if (OldPrefix.empty() && NewPrefix.empty()) |
| 1044 | return Path; |
| 1045 | SmallString<128> NewPath(Path); |
| 1046 | llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix); |
| 1047 | StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str()); |
| 1048 | if (!ParentPath.empty()) { |
| 1049 | // Make sure the new directory exists, creating it if necessary. |
| 1050 | if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath)) |
| 1051 | llvm::errs() << "warning: could not create directory '" << ParentPath |
| 1052 | << "': " << EC.message() << '\n'; |
| 1053 | } |
| 1054 | return NewPath.str(); |
| 1055 | } |
| 1056 | |
Benjamin Kramer | ffd3715 | 2016-11-19 20:44:26 +0000 | [diff] [blame] | 1057 | namespace { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1058 | class WriteIndexesThinBackend : public ThinBackendProc { |
| 1059 | std::string OldPrefix, NewPrefix; |
| 1060 | bool ShouldEmitImportsFiles; |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1061 | raw_fd_ostream *LinkedObjectsFile; |
Vitaly Buka | 59baf73 | 2018-01-30 21:19:26 +0000 | [diff] [blame] | 1062 | lto::IndexWriteCallback OnWrite; |
| 1063 | |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1064 | public: |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 1065 | WriteIndexesThinBackend( |
| 1066 | Config &Conf, ModuleSummaryIndex &CombinedIndex, |
| 1067 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
| 1068 | std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles, |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1069 | raw_fd_ostream *LinkedObjectsFile, lto::IndexWriteCallback OnWrite) |
Mehdi Amini | 18b9111 | 2016-08-19 06:10:03 +0000 | [diff] [blame] | 1070 | : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries), |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1071 | OldPrefix(OldPrefix), NewPrefix(NewPrefix), |
| 1072 | ShouldEmitImportsFiles(ShouldEmitImportsFiles), |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1073 | LinkedObjectsFile(LinkedObjectsFile), OnWrite(OnWrite) {} |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1074 | |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1075 | Error start( |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 1076 | unsigned Task, BitcodeModule BM, |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1077 | const FunctionImporter::ImportMapTy &ImportList, |
| 1078 | const FunctionImporter::ExportSetTy &ExportList, |
| 1079 | const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, |
Peter Collingbourne | 1a0720e | 2016-12-14 01:17:59 +0000 | [diff] [blame] | 1080 | MapVector<StringRef, BitcodeModule> &ModuleMap) override { |
| 1081 | StringRef ModulePath = BM.getModuleIdentifier(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1082 | std::string NewModulePath = |
| 1083 | getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix); |
| 1084 | |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1085 | if (LinkedObjectsFile) |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1086 | *LinkedObjectsFile << NewModulePath << '\n'; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1087 | |
| 1088 | std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex; |
| 1089 | gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries, |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 1090 | ImportList, ModuleToSummariesForIndex); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1091 | |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1092 | std::error_code EC; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1093 | raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC, |
| 1094 | sys::fs::OpenFlags::F_None); |
| 1095 | if (EC) |
| 1096 | return errorCodeToError(EC); |
| 1097 | WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex); |
| 1098 | |
Vitaly Buka | 59baf73 | 2018-01-30 21:19:26 +0000 | [diff] [blame] | 1099 | if (ShouldEmitImportsFiles) { |
| 1100 | EC = EmitImportsFiles(ModulePath, NewModulePath + ".imports", ImportList); |
| 1101 | if (EC) |
| 1102 | return errorCodeToError(EC); |
| 1103 | } |
| 1104 | |
| 1105 | if (OnWrite) |
| 1106 | OnWrite(ModulePath); |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1107 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1108 | } |
| 1109 | |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1110 | Error wait() override { return Error::success(); } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1111 | }; |
Benjamin Kramer | ffd3715 | 2016-11-19 20:44:26 +0000 | [diff] [blame] | 1112 | } // end anonymous namespace |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1113 | |
Vitaly Buka | a139b69 | 2018-02-22 19:06:15 +0000 | [diff] [blame] | 1114 | ThinBackend lto::createWriteIndexesThinBackend( |
| 1115 | std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles, |
| 1116 | raw_fd_ostream *LinkedObjectsFile, IndexWriteCallback OnWrite) { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1117 | return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex, |
Mehdi Amini | 767e145 | 2016-09-06 03:23:45 +0000 | [diff] [blame] | 1118 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 1119 | AddStreamFn AddStream, NativeObjectCache Cache) { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1120 | return llvm::make_unique<WriteIndexesThinBackend>( |
Mehdi Amini | 18b9111 | 2016-08-19 06:10:03 +0000 | [diff] [blame] | 1121 | Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix, |
Vitaly Buka | 59baf73 | 2018-01-30 21:19:26 +0000 | [diff] [blame] | 1122 | ShouldEmitImportsFiles, LinkedObjectsFile, OnWrite); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1123 | }; |
| 1124 | } |
| 1125 | |
Vitaly Buka | a5376f3 | 2017-12-16 02:10:00 +0000 | [diff] [blame] | 1126 | Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache) { |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1127 | if (ThinLTO.ModuleMap.empty()) |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1128 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1129 | |
| 1130 | if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex)) |
Mehdi Amini | 41af430 | 2016-11-11 04:28:40 +0000 | [diff] [blame] | 1131 | return Error::success(); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1132 | |
| 1133 | // Collect for each module the list of function it defines (GUID -> |
| 1134 | // Summary). |
Dehao Chen | 5d96ee4 | 2017-07-10 20:12:54 +0000 | [diff] [blame] | 1135 | StringMap<GVSummaryMapTy> |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1136 | ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size()); |
| 1137 | ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule( |
| 1138 | ModuleToDefinedGVSummaries); |
Teresa Johnson | 620c140 | 2016-09-20 23:07:17 +0000 | [diff] [blame] | 1139 | // Create entries for any modules that didn't have any GV summaries |
| 1140 | // (either they didn't have any GVs to start with, or we suppressed |
| 1141 | // generation of the summaries because they e.g. had inline assembly |
| 1142 | // uses that couldn't be promoted/renamed on export). This is so |
| 1143 | // InProcessThinBackend::start can still launch a backend thread, which |
| 1144 | // is passed the map of summaries for the module, without any special |
| 1145 | // handling for this case. |
| 1146 | for (auto &Mod : ThinLTO.ModuleMap) |
| 1147 | if (!ModuleToDefinedGVSummaries.count(Mod.first)) |
| 1148 | ModuleToDefinedGVSummaries.try_emplace(Mod.first); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1149 | |
| 1150 | StringMap<FunctionImporter::ImportMapTy> ImportLists( |
| 1151 | ThinLTO.ModuleMap.size()); |
| 1152 | StringMap<FunctionImporter::ExportSetTy> ExportLists( |
| 1153 | ThinLTO.ModuleMap.size()); |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1154 | StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR; |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1155 | |
Charles Saternos | b040fcc | 2018-02-19 15:14:50 +0000 | [diff] [blame] | 1156 | if (DumpThinCGSCCs) |
| 1157 | ThinLTO.CombinedIndex.dumpSCCs(outs()); |
| 1158 | |
Peter Collingbourne | 9fb6e1a | 2017-11-01 17:58:39 +0000 | [diff] [blame] | 1159 | if (Conf.OptLevel > 0) |
Teresa Johnson | 002af9b | 2016-10-31 22:12:21 +0000 | [diff] [blame] | 1160 | ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 1161 | ImportLists, ExportLists); |
Teresa Johnson | 002af9b | 2016-10-31 22:12:21 +0000 | [diff] [blame] | 1162 | |
Peter Collingbourne | 9fb6e1a | 2017-11-01 17:58:39 +0000 | [diff] [blame] | 1163 | // Figure out which symbols need to be internalized. This also needs to happen |
| 1164 | // at -O0 because summary-based DCE is implemented using internalization, and |
| 1165 | // we must apply DCE consistently with the full LTO module in order to avoid |
| 1166 | // undefined references during the final link. |
| 1167 | std::set<GlobalValue::GUID> ExportedGUIDs; |
| 1168 | for (auto &Res : GlobalResolutions) { |
George Rimar | d328365 | 2018-01-25 17:23:27 +0000 | [diff] [blame] | 1169 | // If the symbol does not have external references or it is not prevailing, |
| 1170 | // then not need to mark it as exported from a ThinLTO partition. |
| 1171 | if (Res.second.Partition != GlobalResolution::External || |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 1172 | !Res.second.isPrevailingIRSymbol()) |
Peter Collingbourne | 9fb6e1a | 2017-11-01 17:58:39 +0000 | [diff] [blame] | 1173 | continue; |
| 1174 | auto GUID = GlobalValue::getGUID( |
| 1175 | GlobalValue::dropLLVMManglingEscape(Res.second.IRName)); |
| 1176 | // Mark exported unless index-based analysis determined it to be dead. |
| 1177 | if (ThinLTO.CombinedIndex.isGUIDLive(GUID)) |
| 1178 | ExportedGUIDs.insert(GUID); |
Teresa Johnson | 002af9b | 2016-10-31 22:12:21 +0000 | [diff] [blame] | 1179 | } |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1180 | |
Peter Collingbourne | 9fb6e1a | 2017-11-01 17:58:39 +0000 | [diff] [blame] | 1181 | // Any functions referenced by the jump table in the regular LTO object must |
| 1182 | // be exported. |
| 1183 | for (auto &Def : ThinLTO.CombinedIndex.cfiFunctionDefs()) |
| 1184 | ExportedGUIDs.insert( |
| 1185 | GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Def))); |
| 1186 | |
| 1187 | auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) { |
| 1188 | const auto &ExportList = ExportLists.find(ModuleIdentifier); |
| 1189 | return (ExportList != ExportLists.end() && |
| 1190 | ExportList->second.count(GUID)) || |
| 1191 | ExportedGUIDs.count(GUID); |
| 1192 | }; |
| 1193 | thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported); |
| 1194 | |
Peter Collingbourne | f87197a | 2017-05-25 23:40:11 +0000 | [diff] [blame] | 1195 | auto isPrevailing = [&](GlobalValue::GUID GUID, |
| 1196 | const GlobalValueSummary *S) { |
| 1197 | return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath(); |
| 1198 | }; |
| 1199 | auto recordNewLinkage = [&](StringRef ModuleIdentifier, |
| 1200 | GlobalValue::GUID GUID, |
| 1201 | GlobalValue::LinkageTypes NewLinkage) { |
| 1202 | ResolvedODR[ModuleIdentifier][GUID] = NewLinkage; |
| 1203 | }; |
| 1204 | thinLTOResolveWeakForLinkerInIndex(ThinLTO.CombinedIndex, isPrevailing, |
| 1205 | recordNewLinkage); |
| 1206 | |
Peter Collingbourne | 80186a5 | 2016-09-23 21:33:43 +0000 | [diff] [blame] | 1207 | std::unique_ptr<ThinBackendProc> BackendProc = |
| 1208 | ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries, |
| 1209 | AddStream, Cache); |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1210 | |
Vitaly Buka | a5376f3 | 2017-12-16 02:10:00 +0000 | [diff] [blame] | 1211 | // Tasks 0 through ParallelCodeGenParallelismLevel-1 are reserved for combined |
| 1212 | // module and parallel code generation partitions. |
| 1213 | unsigned Task = RegularLTO.ParallelCodeGenParallelismLevel; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1214 | for (auto &Mod : ThinLTO.ModuleMap) { |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 1215 | if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first], |
Mehdi Amini | adc0e26 | 2016-08-23 21:30:12 +0000 | [diff] [blame] | 1216 | ExportLists[Mod.first], |
| 1217 | ResolvedODR[Mod.first], ThinLTO.ModuleMap)) |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1218 | return E; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1219 | ++Task; |
Teresa Johnson | 9ba95f9 | 2016-08-11 14:58:12 +0000 | [diff] [blame] | 1220 | } |
| 1221 | |
| 1222 | return BackendProc->wait(); |
Teresa Johnson | df6edc5 | 2016-05-23 22:54:06 +0000 | [diff] [blame] | 1223 | } |
Davide Italiano | 690ed9d | 2017-02-10 23:49:38 +0000 | [diff] [blame] | 1224 | |
Bob Haarman | fb2d342 | 2018-03-08 01:13:10 +0000 | [diff] [blame] | 1225 | Expected<std::unique_ptr<ToolOutputFile>> |
| 1226 | lto::setupOptimizationRemarks(LLVMContext &Context, |
| 1227 | StringRef LTORemarksFilename, |
| 1228 | bool LTOPassRemarksWithHotness, int Count) { |
Teresa Johnson | b77ab09 | 2018-05-04 23:59:34 +0000 | [diff] [blame] | 1229 | if (LTOPassRemarksWithHotness) |
| 1230 | Context.setDiagnosticsHotnessRequested(true); |
Davide Italiano | 690ed9d | 2017-02-10 23:49:38 +0000 | [diff] [blame] | 1231 | if (LTORemarksFilename.empty()) |
| 1232 | return nullptr; |
| 1233 | |
| 1234 | std::string Filename = LTORemarksFilename; |
| 1235 | if (Count != -1) |
| 1236 | Filename += ".thin." + llvm::utostr(Count) + ".yaml"; |
| 1237 | |
| 1238 | std::error_code EC; |
| 1239 | auto DiagnosticFile = |
Reid Kleckner | 3fc649c | 2017-09-23 01:03:17 +0000 | [diff] [blame] | 1240 | llvm::make_unique<ToolOutputFile>(Filename, EC, sys::fs::F_None); |
Davide Italiano | 690ed9d | 2017-02-10 23:49:38 +0000 | [diff] [blame] | 1241 | if (EC) |
| 1242 | return errorCodeToError(EC); |
| 1243 | Context.setDiagnosticsOutputFile( |
| 1244 | llvm::make_unique<yaml::Output>(DiagnosticFile->os())); |
Davide Italiano | 690ed9d | 2017-02-10 23:49:38 +0000 | [diff] [blame] | 1245 | DiagnosticFile->keep(); |
| 1246 | return std::move(DiagnosticFile); |
| 1247 | } |