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