Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1 | //===- FunctionImport.cpp - ThinLTO Summary-based Function Import ---------===// |
| 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 Function import based on summaries. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/Transforms/IPO/FunctionImport.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/ArrayRef.h" |
| 16 | #include "llvm/ADT/STLExtras.h" |
| 17 | #include "llvm/ADT/SetVector.h" |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallVector.h" |
Teresa Johnson | d29478f | 2016-03-27 15:27:30 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/StringMap.h" |
Simon Pilgrim | 0efed32 | 2018-02-18 00:01:36 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/StringRef.h" |
Charles Saternos | b040fcc | 2018-02-19 15:14:50 +0000 | [diff] [blame^] | 22 | #include "llvm/ADT/StringSet.h" |
Peter Collingbourne | c15d60b | 2017-05-01 20:42:32 +0000 | [diff] [blame] | 23 | #include "llvm/Bitcode/BitcodeReader.h" |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 24 | #include "llvm/IR/AutoUpgrade.h" |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Constants.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Function.h" |
| 27 | #include "llvm/IR/GlobalAlias.h" |
| 28 | #include "llvm/IR/GlobalObject.h" |
| 29 | #include "llvm/IR/GlobalValue.h" |
| 30 | #include "llvm/IR/GlobalVariable.h" |
| 31 | #include "llvm/IR/Metadata.h" |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 32 | #include "llvm/IR/Module.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 33 | #include "llvm/IR/ModuleSummaryIndex.h" |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 34 | #include "llvm/IRReader/IRReader.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 35 | #include "llvm/Linker/IRMover.h" |
| 36 | #include "llvm/Object/ModuleSymbolTable.h" |
| 37 | #include "llvm/Object/SymbolicFile.h" |
| 38 | #include "llvm/Pass.h" |
| 39 | #include "llvm/Support/Casting.h" |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 40 | #include "llvm/Support/CommandLine.h" |
| 41 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Error.h" |
| 43 | #include "llvm/Support/ErrorHandling.h" |
| 44 | #include "llvm/Support/FileSystem.h" |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 45 | #include "llvm/Support/SourceMgr.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 46 | #include "llvm/Support/raw_ostream.h" |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 47 | #include "llvm/Transforms/IPO/Internalize.h" |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 48 | #include "llvm/Transforms/Utils/Cloning.h" |
Teresa Johnson | 488a800 | 2016-02-10 18:11:31 +0000 | [diff] [blame] | 49 | #include "llvm/Transforms/Utils/FunctionImportUtils.h" |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 50 | #include "llvm/Transforms/Utils/ValueMapper.h" |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 51 | #include <cassert> |
| 52 | #include <memory> |
| 53 | #include <set> |
| 54 | #include <string> |
| 55 | #include <system_error> |
| 56 | #include <tuple> |
| 57 | #include <utility> |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 58 | |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 59 | using namespace llvm; |
| 60 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 61 | #define DEBUG_TYPE "function-import" |
| 62 | |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 63 | STATISTIC(NumImportedFunctions, "Number of functions imported"); |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 64 | STATISTIC(NumImportedGlobalVars, "Number of global variables imported"); |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 65 | STATISTIC(NumImportedModules, "Number of modules imported from"); |
| 66 | STATISTIC(NumDeadSymbols, "Number of dead stripped symbols in index"); |
| 67 | STATISTIC(NumLiveSymbols, "Number of live symbols in index"); |
Teresa Johnson | d29478f | 2016-03-27 15:27:30 +0000 | [diff] [blame] | 68 | |
Teresa Johnson | 3930361 | 2015-11-24 22:55:46 +0000 | [diff] [blame] | 69 | /// Limit on instruction count of imported functions. |
| 70 | static cl::opt<unsigned> ImportInstrLimit( |
| 71 | "import-instr-limit", cl::init(100), cl::Hidden, cl::value_desc("N"), |
| 72 | cl::desc("Only import functions with less than N instructions")); |
| 73 | |
Mehdi Amini | 4064174 | 2016-02-10 23:31:45 +0000 | [diff] [blame] | 74 | static cl::opt<float> |
| 75 | ImportInstrFactor("import-instr-evolution-factor", cl::init(0.7), |
| 76 | cl::Hidden, cl::value_desc("x"), |
| 77 | cl::desc("As we import functions, multiply the " |
| 78 | "`import-instr-limit` threshold by this factor " |
| 79 | "before processing newly imported functions")); |
Piotr Padlewski | ba72b95 | 2016-09-29 17:32:07 +0000 | [diff] [blame] | 80 | |
Piotr Padlewski | d286947 | 2016-09-30 03:01:17 +0000 | [diff] [blame] | 81 | static cl::opt<float> ImportHotInstrFactor( |
| 82 | "import-hot-evolution-factor", cl::init(1.0), cl::Hidden, |
| 83 | cl::value_desc("x"), |
| 84 | cl::desc("As we import functions called from hot callsite, multiply the " |
| 85 | "`import-instr-limit` threshold by this factor " |
| 86 | "before processing newly imported functions")); |
| 87 | |
Piotr Padlewski | d9830eb | 2016-09-26 20:37:32 +0000 | [diff] [blame] | 88 | static cl::opt<float> ImportHotMultiplier( |
Dehao Chen | 8260d66 | 2017-07-28 01:02:34 +0000 | [diff] [blame] | 89 | "import-hot-multiplier", cl::init(10.0), cl::Hidden, cl::value_desc("x"), |
Piotr Padlewski | ba72b95 | 2016-09-29 17:32:07 +0000 | [diff] [blame] | 90 | cl::desc("Multiply the `import-instr-limit` threshold for hot callsites")); |
| 91 | |
Dehao Chen | 64c4657 | 2017-07-07 21:01:00 +0000 | [diff] [blame] | 92 | static cl::opt<float> ImportCriticalMultiplier( |
| 93 | "import-critical-multiplier", cl::init(100.0), cl::Hidden, |
| 94 | cl::value_desc("x"), |
| 95 | cl::desc( |
| 96 | "Multiply the `import-instr-limit` threshold for critical callsites")); |
| 97 | |
Piotr Padlewski | ba72b95 | 2016-09-29 17:32:07 +0000 | [diff] [blame] | 98 | // FIXME: This multiplier was not really tuned up. |
| 99 | static cl::opt<float> ImportColdMultiplier( |
| 100 | "import-cold-multiplier", cl::init(0), cl::Hidden, cl::value_desc("N"), |
| 101 | cl::desc("Multiply the `import-instr-limit` threshold for cold callsites")); |
Mehdi Amini | 4064174 | 2016-02-10 23:31:45 +0000 | [diff] [blame] | 102 | |
Teresa Johnson | d29478f | 2016-03-27 15:27:30 +0000 | [diff] [blame] | 103 | static cl::opt<bool> PrintImports("print-imports", cl::init(false), cl::Hidden, |
| 104 | cl::desc("Print imported functions")); |
| 105 | |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 106 | static cl::opt<bool> ComputeDead("compute-dead", cl::init(true), cl::Hidden, |
| 107 | cl::desc("Compute dead symbols")); |
| 108 | |
Piotr Padlewski | 3b77612 | 2016-07-08 23:01:49 +0000 | [diff] [blame] | 109 | static cl::opt<bool> EnableImportMetadata( |
| 110 | "enable-import-metadata", cl::init( |
| 111 | #if !defined(NDEBUG) |
| 112 | true /*Enabled with asserts.*/ |
| 113 | #else |
| 114 | false |
| 115 | #endif |
| 116 | ), |
| 117 | cl::Hidden, cl::desc("Enable import metadata like 'thinlto_src_module'")); |
| 118 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 119 | /// Summary file to use for function importing when using -function-import from |
| 120 | /// the command line. |
| 121 | static cl::opt<std::string> |
| 122 | SummaryFile("summary-file", |
| 123 | cl::desc("The summary file to use for function importing.")); |
| 124 | |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 125 | /// Used when testing importing from distributed indexes via opt |
| 126 | // -function-import. |
| 127 | static cl::opt<bool> |
| 128 | ImportAllIndex("import-all-index", |
| 129 | cl::desc("Import all external functions in index.")); |
| 130 | |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 131 | // Load lazily a module from \p FileName in \p Context. |
| 132 | static std::unique_ptr<Module> loadFile(const std::string &FileName, |
| 133 | LLVMContext &Context) { |
| 134 | SMDiagnostic Err; |
| 135 | DEBUG(dbgs() << "Loading '" << FileName << "'\n"); |
Teresa Johnson | 6cba37c | 2016-01-22 00:15:53 +0000 | [diff] [blame] | 136 | // Metadata isn't loaded until functions are imported, to minimize |
| 137 | // the memory overhead. |
Teresa Johnson | a1080ee | 2016-01-08 14:17:41 +0000 | [diff] [blame] | 138 | std::unique_ptr<Module> Result = |
| 139 | getLazyIRFileModule(FileName, Err, Context, |
| 140 | /* ShouldLazyLoadMetadata = */ true); |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 141 | if (!Result) { |
| 142 | Err.print("function-import", errs()); |
Mehdi Amini | d7ad221 | 2016-04-01 05:33:11 +0000 | [diff] [blame] | 143 | report_fatal_error("Abort"); |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 146 | return Result; |
| 147 | } |
| 148 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 149 | /// Given a list of possible callee implementation for a call site, select one |
| 150 | /// that fits the \p Threshold. |
| 151 | /// |
| 152 | /// FIXME: select "best" instead of first that fits. But what is "best"? |
| 153 | /// - The smallest: more likely to be inlined. |
| 154 | /// - The one with the least outgoing edges (already well optimized). |
| 155 | /// - One from a module already being imported from in order to reduce the |
| 156 | /// number of source modules parsed/linked. |
| 157 | /// - One that has PGO data attached. |
| 158 | /// - [insert you fancy metric here] |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 159 | static const GlobalValueSummary * |
Mehdi Amini | b4e1e82 | 2016-04-27 00:32:13 +0000 | [diff] [blame] | 160 | selectCallee(const ModuleSummaryIndex &Index, |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 161 | ArrayRef<std::unique_ptr<GlobalValueSummary>> CalleeSummaryList, |
Teresa Johnson | 83aaf35 | 2017-01-12 22:04:45 +0000 | [diff] [blame] | 162 | unsigned Threshold, StringRef CallerModulePath) { |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 163 | auto It = llvm::find_if( |
Teresa Johnson | 28e457b | 2016-04-24 14:57:11 +0000 | [diff] [blame] | 164 | CalleeSummaryList, |
| 165 | [&](const std::unique_ptr<GlobalValueSummary> &SummaryPtr) { |
| 166 | auto *GVSummary = SummaryPtr.get(); |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 167 | if (!Index.isGlobalValueLive(GVSummary)) |
| 168 | return false; |
| 169 | |
Teresa Johnson | 73305f8 | 2017-08-19 18:04:25 +0000 | [diff] [blame] | 170 | // For SamplePGO, in computeImportForFunction the OriginalId |
| 171 | // may have been used to locate the callee summary list (See |
| 172 | // comment there). |
| 173 | // The mapping from OriginalId to GUID may return a GUID |
| 174 | // that corresponds to a static variable. Filter it out here. |
| 175 | // This can happen when |
| 176 | // 1) There is a call to a library function which is not defined |
| 177 | // in the index. |
| 178 | // 2) There is a static variable with the OriginalGUID identical |
| 179 | // to the GUID of the library function in 1); |
| 180 | // When this happens, the logic for SamplePGO kicks in and |
| 181 | // the static variable in 2) will be found, which needs to be |
| 182 | // filtered out. |
| 183 | if (GVSummary->getSummaryKind() == GlobalValueSummary::GlobalVarKind) |
| 184 | return false; |
Rafael Espindola | f329be8 | 2016-05-11 01:26:06 +0000 | [diff] [blame] | 185 | if (GlobalValue::isInterposableLinkage(GVSummary->linkage())) |
Mehdi Amini | 5b85d8d | 2016-05-03 00:27:28 +0000 | [diff] [blame] | 186 | // There is no point in importing these, we can't inline them |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 187 | return false; |
Mehdi Amini | 2c719cc | 2016-04-20 04:17:36 +0000 | [diff] [blame] | 188 | |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 189 | auto *Summary = cast<FunctionSummary>(GVSummary->getBaseObject()); |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 190 | |
Teresa Johnson | 83aaf35 | 2017-01-12 22:04:45 +0000 | [diff] [blame] | 191 | // If this is a local function, make sure we import the copy |
| 192 | // in the caller's module. The only time a local function can |
| 193 | // share an entry in the index is if there is a local with the same name |
| 194 | // in another module that had the same source file name (in a different |
| 195 | // directory), where each was compiled in their own directory so there |
| 196 | // was not distinguishing path. |
| 197 | // However, do the import from another module if there is only one |
| 198 | // entry in the list - in that case this must be a reference due |
| 199 | // to indirect call profile data, since a function pointer can point to |
| 200 | // a local in another module. |
| 201 | if (GlobalValue::isLocalLinkage(Summary->linkage()) && |
| 202 | CalleeSummaryList.size() > 1 && |
| 203 | Summary->modulePath() != CallerModulePath) |
| 204 | return false; |
| 205 | |
Teresa Johnson | f9dc3de | 2017-07-17 19:25:38 +0000 | [diff] [blame] | 206 | if (Summary->instCount() > Threshold) |
| 207 | return false; |
| 208 | |
Teresa Johnson | 519465b | 2017-01-05 14:32:16 +0000 | [diff] [blame] | 209 | if (Summary->notEligibleToImport()) |
Mehdi Amini | b4e1e82 | 2016-04-27 00:32:13 +0000 | [diff] [blame] | 210 | return false; |
| 211 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 212 | return true; |
| 213 | }); |
Teresa Johnson | 28e457b | 2016-04-24 14:57:11 +0000 | [diff] [blame] | 214 | if (It == CalleeSummaryList.end()) |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 215 | return nullptr; |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 216 | |
Teresa Johnson | f9dc3de | 2017-07-17 19:25:38 +0000 | [diff] [blame] | 217 | return cast<GlobalValueSummary>(It->get()); |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 218 | } |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 219 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 220 | namespace { |
| 221 | |
Teresa Johnson | 475b51a | 2016-12-15 20:48:19 +0000 | [diff] [blame] | 222 | using EdgeInfo = std::tuple<const FunctionSummary *, unsigned /* Threshold */, |
| 223 | GlobalValue::GUID>; |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 224 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 225 | } // anonymous namespace |
| 226 | |
Teresa Johnson | 1958083 | 2017-09-13 15:16:38 +0000 | [diff] [blame] | 227 | static ValueInfo |
| 228 | updateValueInfoForIndirectCalls(const ModuleSummaryIndex &Index, ValueInfo VI) { |
| 229 | if (!VI.getSummaryList().empty()) |
| 230 | return VI; |
| 231 | // For SamplePGO, the indirect call targets for local functions will |
| 232 | // have its original name annotated in profile. We try to find the |
| 233 | // corresponding PGOFuncName as the GUID. |
| 234 | // FIXME: Consider updating the edges in the graph after building |
| 235 | // it, rather than needing to perform this mapping on each walk. |
| 236 | auto GUID = Index.getGUIDFromOriginalID(VI.getGUID()); |
| 237 | if (GUID == 0) |
Eugene Leviant | 28d8a49 | 2018-01-22 13:35:40 +0000 | [diff] [blame] | 238 | return ValueInfo(); |
Teresa Johnson | 1958083 | 2017-09-13 15:16:38 +0000 | [diff] [blame] | 239 | return Index.getValueInfo(GUID); |
| 240 | } |
| 241 | |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 242 | static void computeImportForReferencedGlobals( |
| 243 | const FunctionSummary &Summary, const GVSummaryMapTy &DefinedGVSummaries, |
| 244 | FunctionImporter::ImportMapTy &ImportList, |
| 245 | StringMap<FunctionImporter::ExportSetTy> *ExportLists) { |
| 246 | for (auto &VI : Summary.refs()) { |
| 247 | if (DefinedGVSummaries.count(VI.getGUID())) { |
| 248 | DEBUG(dbgs() << "Ref ignored! Target already in destination module.\n"); |
| 249 | continue; |
| 250 | } |
| 251 | |
| 252 | DEBUG(dbgs() << " ref -> " << VI.getGUID() << "\n"); |
| 253 | |
| 254 | for (auto &RefSummary : VI.getSummaryList()) |
| 255 | if (RefSummary->getSummaryKind() == GlobalValueSummary::GlobalVarKind && |
| 256 | // Don't try to import regular LTO summaries added to dummy module. |
| 257 | !RefSummary->modulePath().empty() && |
| 258 | !GlobalValue::isInterposableLinkage(RefSummary->linkage()) && |
| 259 | // For now we don't import global variables which have outgoing |
| 260 | // refs. Otherwise we have to promote referenced vars/functions. |
| 261 | RefSummary->refs().empty()) { |
| 262 | ImportList[RefSummary->modulePath()][VI.getGUID()] = 1; |
| 263 | if (ExportLists) |
| 264 | (*ExportLists)[RefSummary->modulePath()].insert(VI.getGUID()); |
| 265 | } |
| 266 | } |
| 267 | } |
| 268 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 269 | /// Compute the list of functions to import for a given caller. Mark these |
| 270 | /// imported functions and the symbols they reference in their source module as |
| 271 | /// exported from their source module. |
| 272 | static void computeImportForFunction( |
Teresa Johnson | 3255eec | 2016-04-10 15:17:26 +0000 | [diff] [blame] | 273 | const FunctionSummary &Summary, const ModuleSummaryIndex &Index, |
Piotr Padlewski | d9830eb | 2016-09-26 20:37:32 +0000 | [diff] [blame] | 274 | const unsigned Threshold, const GVSummaryMapTy &DefinedGVSummaries, |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 275 | SmallVectorImpl<EdgeInfo> &Worklist, |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 276 | FunctionImporter::ImportMapTy &ImportList, |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 277 | StringMap<FunctionImporter::ExportSetTy> *ExportLists = nullptr) { |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 278 | computeImportForReferencedGlobals(Summary, DefinedGVSummaries, ImportList, |
| 279 | ExportLists); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 280 | for (auto &Edge : Summary.calls()) { |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 281 | ValueInfo VI = Edge.first; |
| 282 | DEBUG(dbgs() << " edge -> " << VI.getGUID() << " Threshold:" << Threshold |
| 283 | << "\n"); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 284 | |
Teresa Johnson | 1958083 | 2017-09-13 15:16:38 +0000 | [diff] [blame] | 285 | VI = updateValueInfoForIndirectCalls(Index, VI); |
| 286 | if (!VI) |
| 287 | continue; |
Dehao Chen | 4a435e0 | 2017-03-14 17:33:01 +0000 | [diff] [blame] | 288 | |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 289 | if (DefinedGVSummaries.count(VI.getGUID())) { |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 290 | DEBUG(dbgs() << "ignored! Target already in destination module.\n"); |
| 291 | continue; |
Teresa Johnson | d450da3 | 2015-11-24 21:15:19 +0000 | [diff] [blame] | 292 | } |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 293 | |
Piotr Padlewski | ba72b95 | 2016-09-29 17:32:07 +0000 | [diff] [blame] | 294 | auto GetBonusMultiplier = [](CalleeInfo::HotnessType Hotness) -> float { |
| 295 | if (Hotness == CalleeInfo::HotnessType::Hot) |
| 296 | return ImportHotMultiplier; |
| 297 | if (Hotness == CalleeInfo::HotnessType::Cold) |
| 298 | return ImportColdMultiplier; |
Dehao Chen | 64c4657 | 2017-07-07 21:01:00 +0000 | [diff] [blame] | 299 | if (Hotness == CalleeInfo::HotnessType::Critical) |
| 300 | return ImportCriticalMultiplier; |
Piotr Padlewski | ba72b95 | 2016-09-29 17:32:07 +0000 | [diff] [blame] | 301 | return 1.0; |
| 302 | }; |
| 303 | |
Piotr Padlewski | d9830eb | 2016-09-26 20:37:32 +0000 | [diff] [blame] | 304 | const auto NewThreshold = |
Easwaran Raman | c73cec8 | 2018-01-25 19:27:17 +0000 | [diff] [blame] | 305 | Threshold * GetBonusMultiplier(Edge.second.getHotness()); |
Piotr Padlewski | d286947 | 2016-09-30 03:01:17 +0000 | [diff] [blame] | 306 | |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 307 | auto *CalleeSummary = selectCallee(Index, VI.getSummaryList(), NewThreshold, |
| 308 | Summary.modulePath()); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 309 | if (!CalleeSummary) { |
| 310 | DEBUG(dbgs() << "ignored! No qualifying callee with summary found.\n"); |
| 311 | continue; |
| 312 | } |
David Blaikie | 2f0cc47 | 2017-07-27 15:09:06 +0000 | [diff] [blame] | 313 | |
| 314 | // "Resolve" the summary |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 315 | const auto *ResolvedCalleeSummary = cast<FunctionSummary>(CalleeSummary->getBaseObject()); |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 316 | |
Piotr Padlewski | d9830eb | 2016-09-26 20:37:32 +0000 | [diff] [blame] | 317 | assert(ResolvedCalleeSummary->instCount() <= NewThreshold && |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 318 | "selectCallee() didn't honor the threshold"); |
| 319 | |
Piotr Padlewski | d286947 | 2016-09-30 03:01:17 +0000 | [diff] [blame] | 320 | auto GetAdjustedThreshold = [](unsigned Threshold, bool IsHotCallsite) { |
| 321 | // Adjust the threshold for next level of imported functions. |
| 322 | // The threshold is different for hot callsites because we can then |
| 323 | // inline chains of hot calls. |
| 324 | if (IsHotCallsite) |
| 325 | return Threshold * ImportHotInstrFactor; |
| 326 | return Threshold * ImportInstrFactor; |
| 327 | }; |
| 328 | |
Easwaran Raman | c73cec8 | 2018-01-25 19:27:17 +0000 | [diff] [blame] | 329 | bool IsHotCallsite = |
| 330 | Edge.second.getHotness() == CalleeInfo::HotnessType::Hot; |
Teresa Johnson | 1b859a2 | 2016-12-15 18:21:01 +0000 | [diff] [blame] | 331 | const auto AdjThreshold = GetAdjustedThreshold(Threshold, IsHotCallsite); |
| 332 | |
| 333 | auto ExportModulePath = ResolvedCalleeSummary->modulePath(); |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 334 | auto &ProcessedThreshold = ImportList[ExportModulePath][VI.getGUID()]; |
Teresa Johnson | 1b859a2 | 2016-12-15 18:21:01 +0000 | [diff] [blame] | 335 | /// Since the traversal of the call graph is DFS, we can revisit a function |
| 336 | /// a second time with a higher threshold. In this case, it is added back to |
| 337 | /// the worklist with the new threshold. |
| 338 | if (ProcessedThreshold && ProcessedThreshold >= AdjThreshold) { |
| 339 | DEBUG(dbgs() << "ignored! Target was already seen with Threshold " |
| 340 | << ProcessedThreshold << "\n"); |
| 341 | continue; |
| 342 | } |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 343 | bool PreviouslyImported = ProcessedThreshold != 0; |
Teresa Johnson | 1b859a2 | 2016-12-15 18:21:01 +0000 | [diff] [blame] | 344 | // Mark this function as imported in this module, with the current Threshold |
| 345 | ProcessedThreshold = AdjThreshold; |
| 346 | |
| 347 | // Make exports in the source module. |
| 348 | if (ExportLists) { |
| 349 | auto &ExportList = (*ExportLists)[ExportModulePath]; |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 350 | ExportList.insert(VI.getGUID()); |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 351 | if (!PreviouslyImported) { |
| 352 | // This is the first time this function was exported from its source |
| 353 | // module, so mark all functions and globals it references as exported |
| 354 | // to the outside if they are defined in the same source module. |
Teresa Johnson | edddca2 | 2016-12-16 04:11:51 +0000 | [diff] [blame] | 355 | // For efficiency, we unconditionally add all the referenced GUIDs |
| 356 | // to the ExportList for this module, and will prune out any not |
| 357 | // defined in the module later in a single pass. |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 358 | for (auto &Edge : ResolvedCalleeSummary->calls()) { |
| 359 | auto CalleeGUID = Edge.first.getGUID(); |
Teresa Johnson | edddca2 | 2016-12-16 04:11:51 +0000 | [diff] [blame] | 360 | ExportList.insert(CalleeGUID); |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 361 | } |
| 362 | for (auto &Ref : ResolvedCalleeSummary->refs()) { |
| 363 | auto GUID = Ref.getGUID(); |
Teresa Johnson | edddca2 | 2016-12-16 04:11:51 +0000 | [diff] [blame] | 364 | ExportList.insert(GUID); |
Teresa Johnson | 19f2aa7 | 2016-12-15 23:50:06 +0000 | [diff] [blame] | 365 | } |
Teresa Johnson | 1b859a2 | 2016-12-15 18:21:01 +0000 | [diff] [blame] | 366 | } |
| 367 | } |
Piotr Padlewski | d286947 | 2016-09-30 03:01:17 +0000 | [diff] [blame] | 368 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 369 | // Insert the newly imported function to the worklist. |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 370 | Worklist.emplace_back(ResolvedCalleeSummary, AdjThreshold, VI.getGUID()); |
Teresa Johnson | d450da3 | 2015-11-24 21:15:19 +0000 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 374 | /// Given the list of globals defined in a module, compute the list of imports |
| 375 | /// as well as the list of "exports", i.e. the list of symbols referenced from |
| 376 | /// another module (that may require promotion). |
| 377 | static void ComputeImportForModule( |
Teresa Johnson | c851d21 | 2016-04-25 21:09:51 +0000 | [diff] [blame] | 378 | const GVSummaryMapTy &DefinedGVSummaries, const ModuleSummaryIndex &Index, |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 379 | FunctionImporter::ImportMapTy &ImportList, |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 380 | StringMap<FunctionImporter::ExportSetTy> *ExportLists = nullptr) { |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 381 | // Worklist contains the list of function imported in this module, for which |
| 382 | // we will analyse the callees and may import further down the callgraph. |
| 383 | SmallVector<EdgeInfo, 128> Worklist; |
| 384 | |
| 385 | // Populate the worklist with the import for the functions in the current |
| 386 | // module |
Teresa Johnson | 28e457b | 2016-04-24 14:57:11 +0000 | [diff] [blame] | 387 | for (auto &GVSummary : DefinedGVSummaries) { |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 388 | if (!Index.isGlobalValueLive(GVSummary.second)) { |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 389 | DEBUG(dbgs() << "Ignores Dead GUID: " << GVSummary.first << "\n"); |
| 390 | continue; |
| 391 | } |
Peter Collingbourne | cfbd089 | 2017-09-14 05:02:59 +0000 | [diff] [blame] | 392 | auto *FuncSummary = |
| 393 | dyn_cast<FunctionSummary>(GVSummary.second->getBaseObject()); |
Mehdi Amini | 1aafabf | 2016-04-16 07:02:16 +0000 | [diff] [blame] | 394 | if (!FuncSummary) |
| 395 | // Skip import for global variables |
| 396 | continue; |
Xinliang David Li | 24524f3 | 2017-08-11 17:49:20 +0000 | [diff] [blame] | 397 | DEBUG(dbgs() << "Initialize import for " << GVSummary.first << "\n"); |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 398 | computeImportForFunction(*FuncSummary, Index, ImportInstrLimit, |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 399 | DefinedGVSummaries, Worklist, ImportList, |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 400 | ExportLists); |
| 401 | } |
| 402 | |
Piotr Padlewski | d286947 | 2016-09-30 03:01:17 +0000 | [diff] [blame] | 403 | // Process the newly imported functions and add callees to the worklist. |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 404 | while (!Worklist.empty()) { |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 405 | auto FuncInfo = Worklist.pop_back_val(); |
Teresa Johnson | 475b51a | 2016-12-15 20:48:19 +0000 | [diff] [blame] | 406 | auto *Summary = std::get<0>(FuncInfo); |
| 407 | auto Threshold = std::get<1>(FuncInfo); |
| 408 | auto GUID = std::get<2>(FuncInfo); |
| 409 | |
| 410 | // Check if we later added this summary with a higher threshold. |
| 411 | // If so, skip this entry. |
| 412 | auto ExportModulePath = Summary->modulePath(); |
| 413 | auto &LatestProcessedThreshold = ImportList[ExportModulePath][GUID]; |
| 414 | if (LatestProcessedThreshold > Threshold) |
| 415 | continue; |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 416 | |
Mehdi Amini | 1aafabf | 2016-04-16 07:02:16 +0000 | [diff] [blame] | 417 | computeImportForFunction(*Summary, Index, Threshold, DefinedGVSummaries, |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 418 | Worklist, ImportList, ExportLists); |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 419 | } |
Mehdi Amini | c8c5517 | 2015-12-03 02:37:33 +0000 | [diff] [blame] | 420 | } |
Mehdi Amini | ffe2e4a | 2015-12-02 04:34:28 +0000 | [diff] [blame] | 421 | |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 422 | #ifndef NDEBUG |
| 423 | static bool isGlobalVarSummary(const ModuleSummaryIndex &Index, |
| 424 | GlobalValue::GUID G) { |
| 425 | if (const auto &VI = Index.getValueInfo(G)) { |
| 426 | auto SL = VI.getSummaryList(); |
| 427 | if (!SL.empty()) |
| 428 | return SL[0]->getSummaryKind() == GlobalValueSummary::GlobalVarKind; |
| 429 | } |
| 430 | return false; |
| 431 | } |
| 432 | |
| 433 | static GlobalValue::GUID getGUID(GlobalValue::GUID G) { return G; } |
| 434 | |
| 435 | static GlobalValue::GUID |
| 436 | getGUID(const std::pair<const GlobalValue::GUID, unsigned> &P) { |
| 437 | return P.first; |
| 438 | } |
| 439 | |
| 440 | template <class T> |
| 441 | unsigned numGlobalVarSummaries(const ModuleSummaryIndex &Index, T &Cont) { |
| 442 | unsigned NumGVS = 0; |
| 443 | for (auto &V : Cont) |
| 444 | if (isGlobalVarSummary(Index, getGUID(V))) |
| 445 | ++NumGVS; |
| 446 | return NumGVS; |
| 447 | } |
| 448 | #endif |
| 449 | |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 450 | /// Compute all the import and export for every module using the Index. |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 451 | void llvm::ComputeCrossModuleImport( |
| 452 | const ModuleSummaryIndex &Index, |
Teresa Johnson | c851d21 | 2016-04-25 21:09:51 +0000 | [diff] [blame] | 453 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 454 | StringMap<FunctionImporter::ImportMapTy> &ImportLists, |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 455 | StringMap<FunctionImporter::ExportSetTy> &ExportLists) { |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 456 | // For each module that has function defined, compute the import/export lists. |
Mehdi Amini | 1aafabf | 2016-04-16 07:02:16 +0000 | [diff] [blame] | 457 | for (auto &DefinedGVSummaries : ModuleToDefinedGVSummaries) { |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 458 | auto &ImportList = ImportLists[DefinedGVSummaries.first()]; |
Mehdi Amini | 1aafabf | 2016-04-16 07:02:16 +0000 | [diff] [blame] | 459 | DEBUG(dbgs() << "Computing import for Module '" |
| 460 | << DefinedGVSummaries.first() << "'\n"); |
Mehdi Amini | 9b490f1 | 2016-08-16 05:47:12 +0000 | [diff] [blame] | 461 | ComputeImportForModule(DefinedGVSummaries.second, Index, ImportList, |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 462 | &ExportLists); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Teresa Johnson | edddca2 | 2016-12-16 04:11:51 +0000 | [diff] [blame] | 465 | // When computing imports we added all GUIDs referenced by anything |
| 466 | // imported from the module to its ExportList. Now we prune each ExportList |
| 467 | // of any not defined in that module. This is more efficient than checking |
| 468 | // while computing imports because some of the summary lists may be long |
| 469 | // due to linkonce (comdat) copies. |
| 470 | for (auto &ELI : ExportLists) { |
| 471 | const auto &DefinedGVSummaries = |
| 472 | ModuleToDefinedGVSummaries.lookup(ELI.first()); |
| 473 | for (auto EI = ELI.second.begin(); EI != ELI.second.end();) { |
| 474 | if (!DefinedGVSummaries.count(*EI)) |
| 475 | EI = ELI.second.erase(EI); |
| 476 | else |
| 477 | ++EI; |
| 478 | } |
| 479 | } |
| 480 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 481 | #ifndef NDEBUG |
| 482 | DEBUG(dbgs() << "Import/Export lists for " << ImportLists.size() |
| 483 | << " modules:\n"); |
| 484 | for (auto &ModuleImports : ImportLists) { |
| 485 | auto ModName = ModuleImports.first(); |
| 486 | auto &Exports = ExportLists[ModName]; |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 487 | unsigned NumGVS = numGlobalVarSummaries(Index, Exports); |
| 488 | DEBUG(dbgs() << "* Module " << ModName << " exports " |
| 489 | << Exports.size() - NumGVS << " functions and " << NumGVS |
| 490 | << " vars. Imports from " |
| 491 | << ModuleImports.second.size() << " modules.\n"); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 492 | for (auto &Src : ModuleImports.second) { |
| 493 | auto SrcModName = Src.first(); |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 494 | unsigned NumGVSPerMod = numGlobalVarSummaries(Index, Src.second); |
| 495 | DEBUG(dbgs() << " - " << Src.second.size() - NumGVSPerMod |
| 496 | << " functions imported from " << SrcModName << "\n"); |
| 497 | DEBUG(dbgs() << " - " << NumGVSPerMod << " global vars imported from " |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 498 | << SrcModName << "\n"); |
| 499 | } |
| 500 | } |
| 501 | #endif |
| 502 | } |
| 503 | |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 504 | #ifndef NDEBUG |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 505 | static void dumpImportListForModule(const ModuleSummaryIndex &Index, |
| 506 | StringRef ModulePath, |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 507 | FunctionImporter::ImportMapTy &ImportList) { |
| 508 | DEBUG(dbgs() << "* Module " << ModulePath << " imports from " |
| 509 | << ImportList.size() << " modules.\n"); |
| 510 | for (auto &Src : ImportList) { |
| 511 | auto SrcModName = Src.first(); |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 512 | unsigned NumGVSPerMod = numGlobalVarSummaries(Index, Src.second); |
| 513 | DEBUG(dbgs() << " - " << Src.second.size() - NumGVSPerMod |
| 514 | << " functions imported from " << SrcModName << "\n"); |
| 515 | DEBUG(dbgs() << " - " << NumGVSPerMod << " vars imported from " |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 516 | << SrcModName << "\n"); |
| 517 | } |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 518 | } |
Teresa Johnson | 69b2de8 | 2017-12-16 00:29:31 +0000 | [diff] [blame] | 519 | #endif |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 520 | |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 521 | /// Compute all the imports for the given module in the Index. |
| 522 | void llvm::ComputeCrossModuleImportForModule( |
| 523 | StringRef ModulePath, const ModuleSummaryIndex &Index, |
| 524 | FunctionImporter::ImportMapTy &ImportList) { |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 525 | // Collect the list of functions this module defines. |
| 526 | // GUID -> Summary |
Teresa Johnson | c851d21 | 2016-04-25 21:09:51 +0000 | [diff] [blame] | 527 | GVSummaryMapTy FunctionSummaryMap; |
Teresa Johnson | 28e457b | 2016-04-24 14:57:11 +0000 | [diff] [blame] | 528 | Index.collectDefinedFunctionsForModule(ModulePath, FunctionSummaryMap); |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 529 | |
| 530 | // Compute the import list for this module. |
| 531 | DEBUG(dbgs() << "Computing import for Module '" << ModulePath << "'\n"); |
Teresa Johnson | 28e457b | 2016-04-24 14:57:11 +0000 | [diff] [blame] | 532 | ComputeImportForModule(FunctionSummaryMap, Index, ImportList); |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 533 | |
| 534 | #ifndef NDEBUG |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 535 | dumpImportListForModule(Index, ModulePath, ImportList); |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 536 | #endif |
| 537 | } |
| 538 | |
| 539 | // Mark all external summaries in Index for import into the given module. |
| 540 | // Used for distributed builds using a distributed index. |
| 541 | void llvm::ComputeCrossModuleImportForModuleFromIndex( |
| 542 | StringRef ModulePath, const ModuleSummaryIndex &Index, |
| 543 | FunctionImporter::ImportMapTy &ImportList) { |
| 544 | for (auto &GlobalList : Index) { |
| 545 | // Ignore entries for undefined references. |
| 546 | if (GlobalList.second.SummaryList.empty()) |
| 547 | continue; |
| 548 | |
| 549 | auto GUID = GlobalList.first; |
| 550 | assert(GlobalList.second.SummaryList.size() == 1 && |
| 551 | "Expected individual combined index to have one summary per GUID"); |
| 552 | auto &Summary = GlobalList.second.SummaryList[0]; |
| 553 | // Skip the summaries for the importing module. These are included to |
| 554 | // e.g. record required linkage changes. |
| 555 | if (Summary->modulePath() == ModulePath) |
| 556 | continue; |
| 557 | // Doesn't matter what value we plug in to the map, just needs an entry |
| 558 | // to provoke importing by thinBackend. |
| 559 | ImportList[Summary->modulePath()][GUID] = 1; |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 560 | } |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 561 | #ifndef NDEBUG |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 562 | dumpImportListForModule(Index, ModulePath, ImportList); |
Teresa Johnson | c86af33 | 2016-04-12 21:13:11 +0000 | [diff] [blame] | 563 | #endif |
| 564 | } |
| 565 | |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 566 | void llvm::computeDeadSymbols( |
| 567 | ModuleSummaryIndex &Index, |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 568 | const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, |
| 569 | function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing) { |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 570 | assert(!Index.withGlobalValueDeadStripping()); |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 571 | if (!ComputeDead) |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 572 | return; |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 573 | if (GUIDPreservedSymbols.empty()) |
| 574 | // Don't do anything when nothing is live, this is friendly with tests. |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 575 | return; |
| 576 | unsigned LiveSymbols = 0; |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 577 | SmallVector<ValueInfo, 128> Worklist; |
| 578 | Worklist.reserve(GUIDPreservedSymbols.size() * 2); |
| 579 | for (auto GUID : GUIDPreservedSymbols) { |
| 580 | ValueInfo VI = Index.getValueInfo(GUID); |
| 581 | if (!VI) |
| 582 | continue; |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 583 | for (auto &S : VI.getSummaryList()) |
| 584 | S->setLive(true); |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 585 | } |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 586 | |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 587 | // Add values flagged in the index as live roots to the worklist. |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 588 | for (const auto &Entry : Index) |
| 589 | for (auto &S : Entry.second.SummaryList) |
| 590 | if (S->isLive()) { |
| 591 | DEBUG(dbgs() << "Live root: " << Entry.first << "\n"); |
Eugene Leviant | 28d8a49 | 2018-01-22 13:35:40 +0000 | [diff] [blame] | 592 | Worklist.push_back(ValueInfo(/*IsAnalysis=*/false, &Entry)); |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 593 | ++LiveSymbols; |
| 594 | break; |
| 595 | } |
| 596 | |
| 597 | // Make value live and add it to the worklist if it was not live before. |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 598 | auto visit = [&](ValueInfo VI) { |
Teresa Johnson | 1958083 | 2017-09-13 15:16:38 +0000 | [diff] [blame] | 599 | // FIXME: If we knew which edges were created for indirect call profiles, |
| 600 | // we could skip them here. Any that are live should be reached via |
| 601 | // other edges, e.g. reference edges. Otherwise, using a profile collected |
| 602 | // on a slightly different binary might provoke preserving, importing |
| 603 | // and ultimately promoting calls to functions not linked into this |
| 604 | // binary, which increases the binary size unnecessarily. Note that |
| 605 | // if this code changes, the importer needs to change so that edges |
| 606 | // to functions marked dead are skipped. |
| 607 | VI = updateValueInfoForIndirectCalls(Index, VI); |
| 608 | if (!VI) |
| 609 | return; |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 610 | for (auto &S : VI.getSummaryList()) |
Teresa Johnson | f625118 | 2017-09-20 17:09:47 +0000 | [diff] [blame] | 611 | if (S->isLive()) |
| 612 | return; |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 613 | |
| 614 | // We do not keep live symbols that are known to be non-prevailing. |
| 615 | if (isPrevailing(VI.getGUID()) == PrevailingType::No) |
| 616 | return; |
| 617 | |
Teresa Johnson | f625118 | 2017-09-20 17:09:47 +0000 | [diff] [blame] | 618 | for (auto &S : VI.getSummaryList()) |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 619 | S->setLive(true); |
| 620 | ++LiveSymbols; |
| 621 | Worklist.push_back(VI); |
| 622 | }; |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 623 | |
| 624 | while (!Worklist.empty()) { |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 625 | auto VI = Worklist.pop_back_val(); |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 626 | for (auto &Summary : VI.getSummaryList()) { |
Peter Collingbourne | cfbd089 | 2017-09-14 05:02:59 +0000 | [diff] [blame] | 627 | GlobalValueSummary *Base = Summary->getBaseObject(); |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 628 | // Set base value live in case it is an alias. |
| 629 | Base->setLive(true); |
Peter Collingbourne | cfbd089 | 2017-09-14 05:02:59 +0000 | [diff] [blame] | 630 | for (auto Ref : Base->refs()) |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 631 | visit(Ref); |
Peter Collingbourne | cfbd089 | 2017-09-14 05:02:59 +0000 | [diff] [blame] | 632 | if (auto *FS = dyn_cast<FunctionSummary>(Base)) |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 633 | for (auto Call : FS->calls()) |
| 634 | visit(Call.first); |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 635 | } |
| 636 | } |
Evgeniy Stepanov | 56584bb | 2017-06-01 20:30:06 +0000 | [diff] [blame] | 637 | Index.setWithGlobalValueDeadStripping(); |
| 638 | |
| 639 | unsigned DeadSymbols = Index.size() - LiveSymbols; |
| 640 | DEBUG(dbgs() << LiveSymbols << " symbols Live, and " << DeadSymbols |
| 641 | << " symbols Dead \n"); |
| 642 | NumDeadSymbols += DeadSymbols; |
| 643 | NumLiveSymbols += LiveSymbols; |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 644 | } |
| 645 | |
Teresa Johnson | 84174c3 | 2016-05-10 13:48:23 +0000 | [diff] [blame] | 646 | /// Compute the set of summaries needed for a ThinLTO backend compilation of |
| 647 | /// \p ModulePath. |
| 648 | void llvm::gatherImportedSummariesForModule( |
| 649 | StringRef ModulePath, |
| 650 | const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 651 | const FunctionImporter::ImportMapTy &ImportList, |
Teresa Johnson | 84174c3 | 2016-05-10 13:48:23 +0000 | [diff] [blame] | 652 | std::map<std::string, GVSummaryMapTy> &ModuleToSummariesForIndex) { |
| 653 | // Include all summaries from the importing module. |
| 654 | ModuleToSummariesForIndex[ModulePath] = |
| 655 | ModuleToDefinedGVSummaries.lookup(ModulePath); |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 656 | // Include summaries for imports. |
Mehdi Amini | 88c491d | 2016-08-16 05:49:12 +0000 | [diff] [blame] | 657 | for (auto &ILI : ImportList) { |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 658 | auto &SummariesForIndex = ModuleToSummariesForIndex[ILI.first()]; |
| 659 | const auto &DefinedGVSummaries = |
| 660 | ModuleToDefinedGVSummaries.lookup(ILI.first()); |
| 661 | for (auto &GI : ILI.second) { |
| 662 | const auto &DS = DefinedGVSummaries.find(GI.first); |
| 663 | assert(DS != DefinedGVSummaries.end() && |
| 664 | "Expected a defined summary for imported global value"); |
| 665 | SummariesForIndex[GI.first] = DS->second; |
Teresa Johnson | 84174c3 | 2016-05-10 13:48:23 +0000 | [diff] [blame] | 666 | } |
| 667 | } |
| 668 | } |
| 669 | |
Teresa Johnson | 8570fe4 | 2016-05-10 15:54:09 +0000 | [diff] [blame] | 670 | /// Emit the files \p ModulePath will import from into \p OutputFilename. |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 671 | std::error_code |
| 672 | llvm::EmitImportsFiles(StringRef ModulePath, StringRef OutputFilename, |
| 673 | const FunctionImporter::ImportMapTy &ModuleImports) { |
Teresa Johnson | 8570fe4 | 2016-05-10 15:54:09 +0000 | [diff] [blame] | 674 | std::error_code EC; |
| 675 | raw_fd_ostream ImportsOS(OutputFilename, EC, sys::fs::OpenFlags::F_None); |
| 676 | if (EC) |
| 677 | return EC; |
Mehdi Amini | cdbcbf7 | 2016-08-16 05:46:05 +0000 | [diff] [blame] | 678 | for (auto &ILI : ModuleImports) |
| 679 | ImportsOS << ILI.first() << "\n"; |
Teresa Johnson | 8570fe4 | 2016-05-10 15:54:09 +0000 | [diff] [blame] | 680 | return std::error_code(); |
| 681 | } |
| 682 | |
Teresa Johnson | 5a95c47 | 2018-02-05 15:44:27 +0000 | [diff] [blame] | 683 | bool llvm::convertToDeclaration(GlobalValue &GV) { |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 684 | DEBUG(dbgs() << "Converting to a declaration: `" << GV.getName() << "\n"); |
| 685 | if (Function *F = dyn_cast<Function>(&GV)) { |
| 686 | F->deleteBody(); |
| 687 | F->clearMetadata(); |
Peter Collingbourne | 7873669 | 2018-01-31 02:51:03 +0000 | [diff] [blame] | 688 | F->setComdat(nullptr); |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 689 | } else if (GlobalVariable *V = dyn_cast<GlobalVariable>(&GV)) { |
| 690 | V->setInitializer(nullptr); |
| 691 | V->setLinkage(GlobalValue::ExternalLinkage); |
| 692 | V->clearMetadata(); |
Peter Collingbourne | 7873669 | 2018-01-31 02:51:03 +0000 | [diff] [blame] | 693 | V->setComdat(nullptr); |
Teresa Johnson | 5a95c47 | 2018-02-05 15:44:27 +0000 | [diff] [blame] | 694 | } else { |
| 695 | GlobalValue *NewGV; |
| 696 | if (GV.getValueType()->isFunctionTy()) |
| 697 | NewGV = |
| 698 | Function::Create(cast<FunctionType>(GV.getValueType()), |
| 699 | GlobalValue::ExternalLinkage, "", GV.getParent()); |
| 700 | else |
| 701 | NewGV = |
| 702 | new GlobalVariable(*GV.getParent(), GV.getValueType(), |
| 703 | /*isConstant*/ false, GlobalValue::ExternalLinkage, |
| 704 | /*init*/ nullptr, "", |
| 705 | /*insertbefore*/ nullptr, GV.getThreadLocalMode(), |
| 706 | GV.getType()->getAddressSpace()); |
| 707 | NewGV->takeName(&GV); |
| 708 | GV.replaceAllUsesWith(NewGV); |
| 709 | return false; |
| 710 | } |
| 711 | return true; |
George Rimar | eaf5172 | 2018-01-29 08:03:30 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 714 | /// Fixup WeakForLinker linkages in \p TheModule based on summary analysis. |
| 715 | void llvm::thinLTOResolveWeakForLinkerModule( |
| 716 | Module &TheModule, const GVSummaryMapTy &DefinedGlobals) { |
| 717 | auto updateLinkage = [&](GlobalValue &GV) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 718 | // See if the global summary analysis computed a new resolved linkage. |
| 719 | const auto &GS = DefinedGlobals.find(GV.getGUID()); |
| 720 | if (GS == DefinedGlobals.end()) |
| 721 | return; |
| 722 | auto NewLinkage = GS->second->linkage(); |
| 723 | if (NewLinkage == GV.getLinkage()) |
| 724 | return; |
Davide Italiano | 6a5fbe5 | 2017-07-06 19:58:26 +0000 | [diff] [blame] | 725 | |
| 726 | // Switch the linkage to weakany if asked for, e.g. we do this for |
| 727 | // linker redefined symbols (via --wrap or --defsym). |
Davide Italiano | f4891d2 | 2017-07-06 20:04:20 +0000 | [diff] [blame] | 728 | // We record that the visibility should be changed here in `addThinLTO` |
| 729 | // as we need access to the resolution vectors for each input file in |
| 730 | // order to find which symbols have been redefined. |
| 731 | // We may consider reorganizing this code and moving the linkage recording |
| 732 | // somewhere else, e.g. in thinLTOResolveWeakForLinkerInIndex. |
Davide Italiano | 6a5fbe5 | 2017-07-06 19:58:26 +0000 | [diff] [blame] | 733 | if (NewLinkage == GlobalValue::WeakAnyLinkage) { |
| 734 | GV.setLinkage(NewLinkage); |
| 735 | return; |
| 736 | } |
| 737 | |
| 738 | if (!GlobalValue::isWeakForLinker(GV.getLinkage())) |
| 739 | return; |
Teresa Johnson | 4566c6d | 2017-01-20 21:54:58 +0000 | [diff] [blame] | 740 | // Check for a non-prevailing def that has interposable linkage |
| 741 | // (e.g. non-odr weak or linkonce). In that case we can't simply |
| 742 | // convert to available_externally, since it would lose the |
| 743 | // interposable property and possibly get inlined. Simply drop |
| 744 | // the definition in that case. |
| 745 | if (GlobalValue::isAvailableExternallyLinkage(NewLinkage) && |
Teresa Johnson | 5a95c47 | 2018-02-05 15:44:27 +0000 | [diff] [blame] | 746 | GlobalValue::isInterposableLinkage(GV.getLinkage())) { |
| 747 | if (!convertToDeclaration(GV)) |
| 748 | // FIXME: Change this to collect replaced GVs and later erase |
| 749 | // them from the parent module once thinLTOResolveWeakForLinkerGUID is |
| 750 | // changed to enable this for aliases. |
| 751 | llvm_unreachable("Expected GV to be converted"); |
| 752 | } else { |
Steven Wu | 33ba93c | 2018-02-09 18:34:08 +0000 | [diff] [blame] | 753 | // If the original symbols has global unnamed addr and linkonce_odr linkage, |
| 754 | // it should be an auto hide symbol. Add hidden visibility to the symbol to |
| 755 | // preserve the property. |
| 756 | if (GV.hasLinkOnceODRLinkage() && GV.hasGlobalUnnamedAddr() && |
| 757 | NewLinkage == GlobalValue::WeakODRLinkage) |
| 758 | GV.setVisibility(GlobalValue::HiddenVisibility); |
| 759 | |
Teresa Johnson | 4566c6d | 2017-01-20 21:54:58 +0000 | [diff] [blame] | 760 | DEBUG(dbgs() << "ODR fixing up linkage for `" << GV.getName() << "` from " |
| 761 | << GV.getLinkage() << " to " << NewLinkage << "\n"); |
| 762 | GV.setLinkage(NewLinkage); |
| 763 | } |
| 764 | // Remove declarations from comdats, including available_externally |
Teresa Johnson | 6107a41 | 2016-08-15 21:00:04 +0000 | [diff] [blame] | 765 | // as this is a declaration for the linker, and will be dropped eventually. |
| 766 | // It is illegal for comdats to contain declarations. |
| 767 | auto *GO = dyn_cast_or_null<GlobalObject>(&GV); |
Teresa Johnson | 4566c6d | 2017-01-20 21:54:58 +0000 | [diff] [blame] | 768 | if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) |
Teresa Johnson | 6107a41 | 2016-08-15 21:00:04 +0000 | [diff] [blame] | 769 | GO->setComdat(nullptr); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 770 | }; |
| 771 | |
| 772 | // Process functions and global now |
| 773 | for (auto &GV : TheModule) |
| 774 | updateLinkage(GV); |
| 775 | for (auto &GV : TheModule.globals()) |
| 776 | updateLinkage(GV); |
| 777 | for (auto &GV : TheModule.aliases()) |
| 778 | updateLinkage(GV); |
| 779 | } |
| 780 | |
| 781 | /// Run internalization on \p TheModule based on symmary analysis. |
| 782 | void llvm::thinLTOInternalizeModule(Module &TheModule, |
| 783 | const GVSummaryMapTy &DefinedGlobals) { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 784 | // Declare a callback for the internalize pass that will ask for every |
| 785 | // candidate GlobalValue if it can be internalized or not. |
| 786 | auto MustPreserveGV = [&](const GlobalValue &GV) -> bool { |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 787 | // Lookup the linkage recorded in the summaries during global analysis. |
Peter Collingbourne | c3d677f | 2017-05-09 22:43:31 +0000 | [diff] [blame] | 788 | auto GS = DefinedGlobals.find(GV.getGUID()); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 789 | if (GS == DefinedGlobals.end()) { |
| 790 | // Must have been promoted (possibly conservatively). Find original |
| 791 | // name so that we can access the correct summary and see if it can |
| 792 | // be internalized again. |
| 793 | // FIXME: Eventually we should control promotion instead of promoting |
| 794 | // and internalizing again. |
| 795 | StringRef OrigName = |
| 796 | ModuleSummaryIndex::getOriginalNameBeforePromote(GV.getName()); |
| 797 | std::string OrigId = GlobalValue::getGlobalIdentifier( |
| 798 | OrigName, GlobalValue::InternalLinkage, |
| 799 | TheModule.getSourceFileName()); |
Peter Collingbourne | c3d677f | 2017-05-09 22:43:31 +0000 | [diff] [blame] | 800 | GS = DefinedGlobals.find(GlobalValue::getGUID(OrigId)); |
Teresa Johnson | 7ab1f69 | 2016-06-09 01:14:13 +0000 | [diff] [blame] | 801 | if (GS == DefinedGlobals.end()) { |
| 802 | // Also check the original non-promoted non-globalized name. In some |
| 803 | // cases a preempted weak value is linked in as a local copy because |
| 804 | // it is referenced by an alias (IRLinker::linkGlobalValueProto). |
| 805 | // In that case, since it was originally not a local value, it was |
| 806 | // recorded in the index using the original name. |
| 807 | // FIXME: This may not be needed once PR27866 is fixed. |
Peter Collingbourne | c3d677f | 2017-05-09 22:43:31 +0000 | [diff] [blame] | 808 | GS = DefinedGlobals.find(GlobalValue::getGUID(OrigName)); |
Teresa Johnson | 7ab1f69 | 2016-06-09 01:14:13 +0000 | [diff] [blame] | 809 | assert(GS != DefinedGlobals.end()); |
Teresa Johnson | 7ab1f69 | 2016-06-09 01:14:13 +0000 | [diff] [blame] | 810 | } |
Peter Collingbourne | c3d677f | 2017-05-09 22:43:31 +0000 | [diff] [blame] | 811 | } |
| 812 | return !GlobalValue::isLocalLinkage(GS->second->linkage()); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 813 | }; |
| 814 | |
| 815 | // FIXME: See if we can just internalize directly here via linkage changes |
| 816 | // based on the index, rather than invoking internalizeModule. |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 817 | internalizeModule(TheModule, MustPreserveGV); |
Teresa Johnson | 04c9a2d | 2016-05-25 14:03:11 +0000 | [diff] [blame] | 818 | } |
| 819 | |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 820 | /// Make alias a clone of its aliasee. |
| 821 | static Function *replaceAliasWithAliasee(Module *SrcModule, GlobalAlias *GA) { |
| 822 | Function *Fn = cast<Function>(GA->getBaseObject()); |
| 823 | |
| 824 | ValueToValueMapTy VMap; |
| 825 | Function *NewFn = CloneFunction(Fn, VMap); |
| 826 | // Clone should use the original alias's linkage and name, and we ensure |
| 827 | // all uses of alias instead use the new clone (casted if necessary). |
| 828 | NewFn->setLinkage(GA->getLinkage()); |
| 829 | GA->replaceAllUsesWith(ConstantExpr::getBitCast(NewFn, GA->getType())); |
| 830 | NewFn->takeName(GA); |
| 831 | return NewFn; |
| 832 | } |
| 833 | |
Mehdi Amini | c8c5517 | 2015-12-03 02:37:33 +0000 | [diff] [blame] | 834 | // Automatically import functions in Module \p DestModule based on the summaries |
| 835 | // index. |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 836 | Expected<bool> FunctionImporter::importFunctions( |
Adrian Prantl | 6604379 | 2017-05-19 23:32:21 +0000 | [diff] [blame] | 837 | Module &DestModule, const FunctionImporter::ImportMapTy &ImportList) { |
Mehdi Amini | 5411d05 | 2015-12-08 23:04:19 +0000 | [diff] [blame] | 838 | DEBUG(dbgs() << "Starting import for Module " |
Mehdi Amini | 311fef6 | 2015-12-03 02:58:14 +0000 | [diff] [blame] | 839 | << DestModule.getModuleIdentifier() << "\n"); |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 840 | unsigned ImportedCount = 0, ImportedGVCount = 0; |
Mehdi Amini | c8c5517 | 2015-12-03 02:37:33 +0000 | [diff] [blame] | 841 | |
Peter Collingbourne | 6d8f817 | 2017-02-03 16:56:27 +0000 | [diff] [blame] | 842 | IRMover Mover(DestModule); |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 843 | // Do the actual import of functions now, one Module at a time |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 844 | std::set<StringRef> ModuleNameOrderedList; |
| 845 | for (auto &FunctionsToImportPerModule : ImportList) { |
| 846 | ModuleNameOrderedList.insert(FunctionsToImportPerModule.first()); |
| 847 | } |
| 848 | for (auto &Name : ModuleNameOrderedList) { |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 849 | // Get the module for the import |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 850 | const auto &FunctionsToImportPerModule = ImportList.find(Name); |
| 851 | assert(FunctionsToImportPerModule != ImportList.end()); |
Peter Collingbourne | d9445c4 | 2016-11-13 07:00:17 +0000 | [diff] [blame] | 852 | Expected<std::unique_ptr<Module>> SrcModuleOrErr = ModuleLoader(Name); |
| 853 | if (!SrcModuleOrErr) |
| 854 | return SrcModuleOrErr.takeError(); |
| 855 | std::unique_ptr<Module> SrcModule = std::move(*SrcModuleOrErr); |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 856 | assert(&DestModule.getContext() == &SrcModule->getContext() && |
| 857 | "Context mismatch"); |
| 858 | |
Teresa Johnson | 6cba37c | 2016-01-22 00:15:53 +0000 | [diff] [blame] | 859 | // If modules were created with lazy metadata loading, materialize it |
| 860 | // now, before linking it (otherwise this will be a noop). |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 861 | if (Error Err = SrcModule->materializeMetadata()) |
| 862 | return std::move(Err); |
Teresa Johnson | e5a6191 | 2015-12-17 17:14:09 +0000 | [diff] [blame] | 863 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 864 | auto &ImportGUIDs = FunctionsToImportPerModule->second; |
| 865 | // Find the globals to import |
Peter Collingbourne | 6d8f817 | 2017-02-03 16:56:27 +0000 | [diff] [blame] | 866 | SetVector<GlobalValue *> GlobalsToImport; |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 867 | for (Function &F : *SrcModule) { |
| 868 | if (!F.hasName()) |
Teresa Johnson | 0beb858 | 2016-04-04 18:52:23 +0000 | [diff] [blame] | 869 | continue; |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 870 | auto GUID = F.getGUID(); |
Teresa Johnson | 0beb858 | 2016-04-04 18:52:23 +0000 | [diff] [blame] | 871 | auto Import = ImportGUIDs.count(GUID); |
Mehdi Amini | aeb1e59 | 2016-04-19 09:21:30 +0000 | [diff] [blame] | 872 | DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function " << GUID |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 873 | << " " << F.getName() << " from " |
Mehdi Amini | aeb1e59 | 2016-04-19 09:21:30 +0000 | [diff] [blame] | 874 | << SrcModule->getSourceFileName() << "\n"); |
Teresa Johnson | 0beb858 | 2016-04-04 18:52:23 +0000 | [diff] [blame] | 875 | if (Import) { |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 876 | if (Error Err = F.materialize()) |
| 877 | return std::move(Err); |
Piotr Padlewski | 3b77612 | 2016-07-08 23:01:49 +0000 | [diff] [blame] | 878 | if (EnableImportMetadata) { |
| 879 | // Add 'thinlto_src_module' metadata for statistics and debugging. |
| 880 | F.setMetadata( |
| 881 | "thinlto_src_module", |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 882 | MDNode::get(DestModule.getContext(), |
| 883 | {MDString::get(DestModule.getContext(), |
| 884 | SrcModule->getSourceFileName())})); |
Piotr Padlewski | 3b77612 | 2016-07-08 23:01:49 +0000 | [diff] [blame] | 885 | } |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 886 | GlobalsToImport.insert(&F); |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 887 | } |
| 888 | } |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 889 | for (GlobalVariable &GV : SrcModule->globals()) { |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 890 | if (!GV.hasName()) |
| 891 | continue; |
| 892 | auto GUID = GV.getGUID(); |
| 893 | auto Import = ImportGUIDs.count(GUID); |
Mehdi Amini | aeb1e59 | 2016-04-19 09:21:30 +0000 | [diff] [blame] | 894 | DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing global " << GUID |
| 895 | << " " << GV.getName() << " from " |
| 896 | << SrcModule->getSourceFileName() << "\n"); |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 897 | if (Import) { |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 898 | if (Error Err = GV.materialize()) |
| 899 | return std::move(Err); |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 900 | ImportedGVCount += GlobalsToImport.insert(&GV); |
Mehdi Amini | 2d28f7a | 2016-04-16 06:56:44 +0000 | [diff] [blame] | 901 | } |
| 902 | } |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 903 | for (GlobalAlias &GA : SrcModule->aliases()) { |
| 904 | if (!GA.hasName()) |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 905 | continue; |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 906 | auto GUID = GA.getGUID(); |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 907 | auto Import = ImportGUIDs.count(GUID); |
| 908 | DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing alias " << GUID |
Piotr Padlewski | 1f685e0 | 2016-07-06 18:12:23 +0000 | [diff] [blame] | 909 | << " " << GA.getName() << " from " |
Mehdi Amini | aeb1e59 | 2016-04-19 09:21:30 +0000 | [diff] [blame] | 910 | << SrcModule->getSourceFileName() << "\n"); |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 911 | if (Import) { |
| 912 | if (Error Err = GA.materialize()) |
| 913 | return std::move(Err); |
| 914 | // Import alias as a copy of its aliasee. |
| 915 | GlobalObject *Base = GA.getBaseObject(); |
| 916 | if (Error Err = Base->materialize()) |
| 917 | return std::move(Err); |
| 918 | auto *Fn = replaceAliasWithAliasee(SrcModule.get(), &GA); |
| 919 | DEBUG(dbgs() << "Is importing aliasee fn " << Base->getGUID() |
| 920 | << " " << Base->getName() << " from " |
| 921 | << SrcModule->getSourceFileName() << "\n"); |
| 922 | if (EnableImportMetadata) { |
| 923 | // Add 'thinlto_src_module' metadata for statistics and debugging. |
| 924 | Fn->setMetadata( |
| 925 | "thinlto_src_module", |
| 926 | MDNode::get(DestModule.getContext(), |
| 927 | {MDString::get(DestModule.getContext(), |
| 928 | SrcModule->getSourceFileName())})); |
| 929 | } |
| 930 | GlobalsToImport.insert(Fn); |
| 931 | } |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 932 | } |
| 933 | |
Mehdi Amini | 19ef4fa | 2017-01-04 22:54:33 +0000 | [diff] [blame] | 934 | // Upgrade debug info after we're done materializing all the globals and we |
| 935 | // have loaded all the required metadata! |
| 936 | UpgradeDebugInfo(*SrcModule); |
| 937 | |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 938 | // Link in the specified functions. |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 939 | if (renameModuleForThinLTO(*SrcModule, Index, &GlobalsToImport)) |
Mehdi Amini | 8d05185 | 2016-03-19 00:40:31 +0000 | [diff] [blame] | 940 | return true; |
| 941 | |
Teresa Johnson | d29478f | 2016-03-27 15:27:30 +0000 | [diff] [blame] | 942 | if (PrintImports) { |
| 943 | for (const auto *GV : GlobalsToImport) |
| 944 | dbgs() << DestModule.getSourceFileName() << ": Import " << GV->getName() |
| 945 | << " from " << SrcModule->getSourceFileName() << "\n"; |
| 946 | } |
| 947 | |
Peter Collingbourne | 6d8f817 | 2017-02-03 16:56:27 +0000 | [diff] [blame] | 948 | if (Mover.move(std::move(SrcModule), GlobalsToImport.getArrayRef(), |
| 949 | [](GlobalValue &, IRMover::ValueAdder) {}, |
Peter Collingbourne | e6fd9ff | 2017-02-03 17:01:14 +0000 | [diff] [blame] | 950 | /*IsPerformingImport=*/true)) |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 951 | report_fatal_error("Function Import: link error"); |
| 952 | |
Mehdi Amini | 01e3213 | 2016-03-26 05:40:34 +0000 | [diff] [blame] | 953 | ImportedCount += GlobalsToImport.size(); |
Teresa Johnson | 6c475a7 | 2017-01-05 21:34:18 +0000 | [diff] [blame] | 954 | NumImportedModules++; |
Mehdi Amini | 7e88d0d | 2015-12-09 08:17:35 +0000 | [diff] [blame] | 955 | } |
Teresa Johnson | e5a6191 | 2015-12-17 17:14:09 +0000 | [diff] [blame] | 956 | |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 957 | NumImportedFunctions += (ImportedCount - ImportedGVCount); |
| 958 | NumImportedGlobalVars += ImportedGVCount; |
Teresa Johnson | d29478f | 2016-03-27 15:27:30 +0000 | [diff] [blame] | 959 | |
Eugene Leviant | 7331a0b | 2018-02-16 08:11:04 +0000 | [diff] [blame] | 960 | DEBUG(dbgs() << "Imported " << ImportedCount - ImportedGVCount |
| 961 | << " functions for Module " << DestModule.getModuleIdentifier() |
| 962 | << "\n"); |
| 963 | DEBUG(dbgs() << "Imported " << ImportedGVCount |
| 964 | << " global variables for Module " |
Mehdi Amini | c8c5517 | 2015-12-03 02:37:33 +0000 | [diff] [blame] | 965 | << DestModule.getModuleIdentifier() << "\n"); |
| 966 | return ImportedCount; |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Peter Collingbourne | 598bd2a | 2016-12-21 00:50:12 +0000 | [diff] [blame] | 969 | static bool doImportingForModule(Module &M) { |
| 970 | if (SummaryFile.empty()) |
| 971 | report_fatal_error("error: -function-import requires -summary-file\n"); |
| 972 | Expected<std::unique_ptr<ModuleSummaryIndex>> IndexPtrOrErr = |
| 973 | getModuleSummaryIndexForFile(SummaryFile); |
| 974 | if (!IndexPtrOrErr) { |
| 975 | logAllUnhandledErrors(IndexPtrOrErr.takeError(), errs(), |
| 976 | "Error loading file '" + SummaryFile + "': "); |
| 977 | return false; |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 978 | } |
Peter Collingbourne | 598bd2a | 2016-12-21 00:50:12 +0000 | [diff] [blame] | 979 | std::unique_ptr<ModuleSummaryIndex> Index = std::move(*IndexPtrOrErr); |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 980 | |
| 981 | // First step is collecting the import list. |
| 982 | FunctionImporter::ImportMapTy ImportList; |
Teresa Johnson | 81bbf74 | 2017-12-16 00:18:12 +0000 | [diff] [blame] | 983 | // If requested, simply import all functions in the index. This is used |
| 984 | // when testing distributed backend handling via the opt tool, when |
| 985 | // we have distributed indexes containing exactly the summaries to import. |
| 986 | if (ImportAllIndex) |
| 987 | ComputeCrossModuleImportForModuleFromIndex(M.getModuleIdentifier(), *Index, |
| 988 | ImportList); |
| 989 | else |
| 990 | ComputeCrossModuleImportForModule(M.getModuleIdentifier(), *Index, |
| 991 | ImportList); |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 992 | |
Teresa Johnson | 4fef68c | 2016-11-14 19:21:41 +0000 | [diff] [blame] | 993 | // Conservatively mark all internal values as promoted. This interface is |
| 994 | // only used when doing importing via the function importing pass. The pass |
| 995 | // is only enabled when testing importing via the 'opt' tool, which does |
| 996 | // not do the ThinLink that would normally determine what values to promote. |
| 997 | for (auto &I : *Index) { |
Peter Collingbourne | 9667b91 | 2017-05-04 18:03:25 +0000 | [diff] [blame] | 998 | for (auto &S : I.second.SummaryList) { |
Teresa Johnson | 4fef68c | 2016-11-14 19:21:41 +0000 | [diff] [blame] | 999 | if (GlobalValue::isLocalLinkage(S->linkage())) |
| 1000 | S->setLinkage(GlobalValue::ExternalLinkage); |
| 1001 | } |
| 1002 | } |
| 1003 | |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 1004 | // Next we need to promote to global scope and rename any local values that |
| 1005 | // are potentially exported to other modules. |
| 1006 | if (renameModuleForThinLTO(M, *Index, nullptr)) { |
| 1007 | errs() << "Error renaming module\n"; |
| 1008 | return false; |
| 1009 | } |
| 1010 | |
| 1011 | // Perform the import now. |
| 1012 | auto ModuleLoader = [&M](StringRef Identifier) { |
| 1013 | return loadFile(Identifier, M.getContext()); |
| 1014 | }; |
| 1015 | FunctionImporter Importer(*Index, ModuleLoader); |
Peter Collingbourne | 37e2459 | 2017-02-02 18:42:25 +0000 | [diff] [blame] | 1016 | Expected<bool> Result = Importer.importFunctions(M, ImportList); |
Peter Collingbourne | 7f00d0a | 2016-11-09 17:49:19 +0000 | [diff] [blame] | 1017 | |
| 1018 | // FIXME: Probably need to propagate Errors through the pass manager. |
| 1019 | if (!Result) { |
| 1020 | logAllUnhandledErrors(Result.takeError(), errs(), |
| 1021 | "Error importing module: "); |
| 1022 | return false; |
| 1023 | } |
| 1024 | |
| 1025 | return *Result; |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 1026 | } |
| 1027 | |
Benjamin Kramer | fe2b541 | 2015-12-24 10:03:35 +0000 | [diff] [blame] | 1028 | namespace { |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1029 | |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1030 | /// Pass that performs cross-module function import provided a summary file. |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 1031 | class FunctionImportLegacyPass : public ModulePass { |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1032 | public: |
| 1033 | /// Pass identification, replacement for typeid |
| 1034 | static char ID; |
| 1035 | |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1036 | explicit FunctionImportLegacyPass() : ModulePass(ID) {} |
| 1037 | |
Teresa Johnson | 5fcbdb7 | 2015-12-07 19:21:11 +0000 | [diff] [blame] | 1038 | /// Specify pass name for debug output |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 1039 | StringRef getPassName() const override { return "Function Importing"; } |
Teresa Johnson | 5fcbdb7 | 2015-12-07 19:21:11 +0000 | [diff] [blame] | 1040 | |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1041 | bool runOnModule(Module &M) override { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 1042 | if (skipModule(M)) |
| 1043 | return false; |
| 1044 | |
Peter Collingbourne | 598bd2a | 2016-12-21 00:50:12 +0000 | [diff] [blame] | 1045 | return doImportingForModule(M); |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1046 | } |
| 1047 | }; |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1048 | |
| 1049 | } // end anonymous namespace |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1050 | |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 1051 | PreservedAnalyses FunctionImportPass::run(Module &M, |
Sean Silva | fd03ac6 | 2016-08-09 00:28:38 +0000 | [diff] [blame] | 1052 | ModuleAnalysisManager &AM) { |
Peter Collingbourne | 598bd2a | 2016-12-21 00:50:12 +0000 | [diff] [blame] | 1053 | if (!doImportingForModule(M)) |
Teresa Johnson | 2124157 | 2016-07-18 21:22:24 +0000 | [diff] [blame] | 1054 | return PreservedAnalyses::all(); |
| 1055 | |
| 1056 | return PreservedAnalyses::none(); |
| 1057 | } |
| 1058 | |
| 1059 | char FunctionImportLegacyPass::ID = 0; |
| 1060 | INITIALIZE_PASS(FunctionImportLegacyPass, "function-import", |
| 1061 | "Summary Based Function Import", false, false) |
Mehdi Amini | 42418ab | 2015-11-24 06:07:49 +0000 | [diff] [blame] | 1062 | |
| 1063 | namespace llvm { |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1064 | |
Peter Collingbourne | 598bd2a | 2016-12-21 00:50:12 +0000 | [diff] [blame] | 1065 | Pass *createFunctionImportPass() { |
| 1066 | return new FunctionImportLegacyPass(); |
Teresa Johnson | 5fcbdb7 | 2015-12-07 19:21:11 +0000 | [diff] [blame] | 1067 | } |
Eugene Zelenko | e9ea08a | 2017-10-10 22:49:55 +0000 | [diff] [blame] | 1068 | |
| 1069 | } // end namespace llvm |