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