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