1 //===- lib/Transforms/Utils/FunctionImportUtils.cpp - Importing utilities -===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the FunctionImportGlobalProcessing class, used 10 // to perform the necessary global value handling for function importing. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Transforms/Utils/FunctionImportUtils.h" 15 #include "llvm/IR/InstIterator.h" 16 using namespace llvm; 17 18 /// Checks if we should import SGV as a definition, otherwise import as a 19 /// declaration. 20 bool FunctionImportGlobalProcessing::doImportAsDefinition( 21 const GlobalValue *SGV, SetVector<GlobalValue *> *GlobalsToImport) { 22 23 // Only import the globals requested for importing. 24 if (!GlobalsToImport->count(const_cast<GlobalValue *>(SGV))) 25 return false; 26 27 assert(!isa<GlobalAlias>(SGV) && 28 "Unexpected global alias in the import list."); 29 30 // Otherwise yes. 31 return true; 32 } 33 34 bool FunctionImportGlobalProcessing::doImportAsDefinition( 35 const GlobalValue *SGV) { 36 if (!isPerformingImport()) 37 return false; 38 return FunctionImportGlobalProcessing::doImportAsDefinition(SGV, 39 GlobalsToImport); 40 } 41 42 bool FunctionImportGlobalProcessing::shouldPromoteLocalToGlobal( 43 const GlobalValue *SGV) { 44 assert(SGV->hasLocalLinkage()); 45 // Both the imported references and the original local variable must 46 // be promoted. 47 if (!isPerformingImport() && !isModuleExporting()) 48 return false; 49 50 if (isPerformingImport()) { 51 assert((!GlobalsToImport->count(const_cast<GlobalValue *>(SGV)) || 52 !isNonRenamableLocal(*SGV)) && 53 "Attempting to promote non-renamable local"); 54 // We don't know for sure yet if we are importing this value (as either 55 // a reference or a def), since we are simply walking all values in the 56 // module. But by necessity if we end up importing it and it is local, 57 // it must be promoted, so unconditionally promote all values in the 58 // importing module. 59 return true; 60 } 61 62 // When exporting, consult the index. We can have more than one local 63 // with the same GUID, in the case of same-named locals in different but 64 // same-named source files that were compiled in their respective directories 65 // (so the source file name and resulting GUID is the same). Find the one 66 // in this module. 67 auto Summary = ImportIndex.findSummaryInModule( 68 SGV->getGUID(), SGV->getParent()->getModuleIdentifier()); 69 assert(Summary && "Missing summary for global value when exporting"); 70 auto Linkage = Summary->linkage(); 71 if (!GlobalValue::isLocalLinkage(Linkage)) { 72 assert(!isNonRenamableLocal(*SGV) && 73 "Attempting to promote non-renamable local"); 74 return true; 75 } 76 77 return false; 78 } 79 80 #ifndef NDEBUG 81 bool FunctionImportGlobalProcessing::isNonRenamableLocal( 82 const GlobalValue &GV) const { 83 if (!GV.hasLocalLinkage()) 84 return false; 85 // This needs to stay in sync with the logic in buildModuleSummaryIndex. 86 if (GV.hasSection()) 87 return true; 88 if (Used.count(const_cast<GlobalValue *>(&GV))) 89 return true; 90 return false; 91 } 92 #endif 93 94 std::string FunctionImportGlobalProcessing::getName(const GlobalValue *SGV, 95 bool DoPromote) { 96 // For locals that must be promoted to global scope, ensure that 97 // the promoted name uniquely identifies the copy in the original module, 98 // using the ID assigned during combined index creation. When importing, 99 // we rename all locals (not just those that are promoted) in order to 100 // avoid naming conflicts between locals imported from different modules. 101 if (SGV->hasLocalLinkage() && (DoPromote || isPerformingImport())) 102 return ModuleSummaryIndex::getGlobalNameForLocal( 103 SGV->getName(), 104 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier())); 105 return SGV->getName(); 106 } 107 108 GlobalValue::LinkageTypes 109 FunctionImportGlobalProcessing::getLinkage(const GlobalValue *SGV, 110 bool DoPromote) { 111 // Any local variable that is referenced by an exported function needs 112 // to be promoted to global scope. Since we don't currently know which 113 // functions reference which local variables/functions, we must treat 114 // all as potentially exported if this module is exporting anything. 115 if (isModuleExporting()) { 116 if (SGV->hasLocalLinkage() && DoPromote) 117 return GlobalValue::ExternalLinkage; 118 return SGV->getLinkage(); 119 } 120 121 // Otherwise, if we aren't importing, no linkage change is needed. 122 if (!isPerformingImport()) 123 return SGV->getLinkage(); 124 125 switch (SGV->getLinkage()) { 126 case GlobalValue::LinkOnceODRLinkage: 127 case GlobalValue::ExternalLinkage: 128 // External and linkonce definitions are converted to available_externally 129 // definitions upon import, so that they are available for inlining 130 // and/or optimization, but are turned into declarations later 131 // during the EliminateAvailableExternally pass. 132 if (doImportAsDefinition(SGV) && !isa<GlobalAlias>(SGV)) 133 return GlobalValue::AvailableExternallyLinkage; 134 // An imported external declaration stays external. 135 return SGV->getLinkage(); 136 137 case GlobalValue::AvailableExternallyLinkage: 138 // An imported available_externally definition converts 139 // to external if imported as a declaration. 140 if (!doImportAsDefinition(SGV)) 141 return GlobalValue::ExternalLinkage; 142 // An imported available_externally declaration stays that way. 143 return SGV->getLinkage(); 144 145 case GlobalValue::LinkOnceAnyLinkage: 146 case GlobalValue::WeakAnyLinkage: 147 // Can't import linkonce_any/weak_any definitions correctly, or we might 148 // change the program semantics, since the linker will pick the first 149 // linkonce_any/weak_any definition and importing would change the order 150 // they are seen by the linker. The module linking caller needs to enforce 151 // this. 152 assert(!doImportAsDefinition(SGV)); 153 // If imported as a declaration, it becomes external_weak. 154 return SGV->getLinkage(); 155 156 case GlobalValue::WeakODRLinkage: 157 // For weak_odr linkage, there is a guarantee that all copies will be 158 // equivalent, so the issue described above for weak_any does not exist, 159 // and the definition can be imported. It can be treated similarly 160 // to an imported externally visible global value. 161 if (doImportAsDefinition(SGV) && !isa<GlobalAlias>(SGV)) 162 return GlobalValue::AvailableExternallyLinkage; 163 else 164 return GlobalValue::ExternalLinkage; 165 166 case GlobalValue::AppendingLinkage: 167 // It would be incorrect to import an appending linkage variable, 168 // since it would cause global constructors/destructors to be 169 // executed multiple times. This should have already been handled 170 // by linkIfNeeded, and we will assert in shouldLinkFromSource 171 // if we try to import, so we simply return AppendingLinkage. 172 return GlobalValue::AppendingLinkage; 173 174 case GlobalValue::InternalLinkage: 175 case GlobalValue::PrivateLinkage: 176 // If we are promoting the local to global scope, it is handled 177 // similarly to a normal externally visible global. 178 if (DoPromote) { 179 if (doImportAsDefinition(SGV) && !isa<GlobalAlias>(SGV)) 180 return GlobalValue::AvailableExternallyLinkage; 181 else 182 return GlobalValue::ExternalLinkage; 183 } 184 // A non-promoted imported local definition stays local. 185 // The ThinLTO pass will eventually force-import their definitions. 186 return SGV->getLinkage(); 187 188 case GlobalValue::ExternalWeakLinkage: 189 // External weak doesn't apply to definitions, must be a declaration. 190 assert(!doImportAsDefinition(SGV)); 191 // Linkage stays external_weak. 192 return SGV->getLinkage(); 193 194 case GlobalValue::CommonLinkage: 195 // Linkage stays common on definitions. 196 // The ThinLTO pass will eventually force-import their definitions. 197 return SGV->getLinkage(); 198 } 199 200 llvm_unreachable("unknown linkage type"); 201 } 202 203 void FunctionImportGlobalProcessing::processGlobalForThinLTO(GlobalValue &GV) { 204 205 ValueInfo VI; 206 if (GV.hasName()) { 207 VI = ImportIndex.getValueInfo(GV.getGUID()); 208 // Set synthetic function entry counts. 209 if (VI && ImportIndex.hasSyntheticEntryCounts()) { 210 if (Function *F = dyn_cast<Function>(&GV)) { 211 if (!F->isDeclaration()) { 212 for (auto &S : VI.getSummaryList()) { 213 auto *FS = cast<FunctionSummary>(S->getBaseObject()); 214 if (FS->modulePath() == M.getModuleIdentifier()) { 215 F->setEntryCount(Function::ProfileCount(FS->entryCount(), 216 Function::PCT_Synthetic)); 217 break; 218 } 219 } 220 } 221 } 222 } 223 // Check the summaries to see if the symbol gets resolved to a known local 224 // definition. 225 if (VI && VI.isDSOLocal()) { 226 GV.setDSOLocal(true); 227 if (GV.hasDLLImportStorageClass()) 228 GV.setDLLStorageClass(GlobalValue::DefaultStorageClass); 229 } 230 } 231 232 // Mark read/write-only variables which can be imported with specific 233 // attribute. We can't internalize them now because IRMover will fail 234 // to link variable definitions to their external declarations during 235 // ThinLTO import. We'll internalize read-only variables later, after 236 // import is finished. See internalizeGVsAfterImport. 237 // 238 // If global value dead stripping is not enabled in summary then 239 // propagateConstants hasn't been run. We can't internalize GV 240 // in such case. 241 if (!GV.isDeclaration() && VI && ImportIndex.withGlobalValueDeadStripping()) { 242 if (GlobalVariable *V = dyn_cast<GlobalVariable>(&GV)) { 243 // We can have more than one local with the same GUID, in the case of 244 // same-named locals in different but same-named source files that were 245 // compiled in their respective directories (so the source file name 246 // and resulting GUID is the same). Find the one in this module. 247 auto* GVS = dyn_cast<GlobalVarSummary>( 248 ImportIndex.findSummaryInModule(VI, M.getModuleIdentifier())); 249 // At this stage "maybe" is "definitely" 250 if (GVS && (GVS->maybeReadOnly() || GVS->maybeWriteOnly())) 251 V->addAttribute("thinlto-internalize"); 252 } 253 } 254 255 bool DoPromote = false; 256 if (GV.hasLocalLinkage() && 257 ((DoPromote = shouldPromoteLocalToGlobal(&GV)) || isPerformingImport())) { 258 // Save the original name string before we rename GV below. 259 auto Name = GV.getName().str(); 260 // Once we change the name or linkage it is difficult to determine 261 // again whether we should promote since shouldPromoteLocalToGlobal needs 262 // to locate the summary (based on GUID from name and linkage). Therefore, 263 // use DoPromote result saved above. 264 GV.setName(getName(&GV, DoPromote)); 265 GV.setLinkage(getLinkage(&GV, DoPromote)); 266 if (!GV.hasLocalLinkage()) 267 GV.setVisibility(GlobalValue::HiddenVisibility); 268 269 // If we are renaming a COMDAT leader, ensure that we record the COMDAT 270 // for later renaming as well. This is required for COFF. 271 if (const auto *C = GV.getComdat()) 272 if (C->getName() == Name) 273 RenamedComdats.try_emplace(C, M.getOrInsertComdat(GV.getName())); 274 } else 275 GV.setLinkage(getLinkage(&GV, /* DoPromote */ false)); 276 277 // Remove functions imported as available externally defs from comdats, 278 // as this is a declaration for the linker, and will be dropped eventually. 279 // It is illegal for comdats to contain declarations. 280 auto *GO = dyn_cast<GlobalObject>(&GV); 281 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) { 282 // The IRMover should not have placed any imported declarations in 283 // a comdat, so the only declaration that should be in a comdat 284 // at this point would be a definition imported as available_externally. 285 assert(GO->hasAvailableExternallyLinkage() && 286 "Expected comdat on definition (possibly available external)"); 287 GO->setComdat(nullptr); 288 } 289 } 290 291 void FunctionImportGlobalProcessing::processGlobalsForThinLTO() { 292 for (GlobalVariable &GV : M.globals()) 293 processGlobalForThinLTO(GV); 294 for (Function &SF : M) 295 processGlobalForThinLTO(SF); 296 for (GlobalAlias &GA : M.aliases()) 297 processGlobalForThinLTO(GA); 298 299 // Replace any COMDATS that required renaming (because the COMDAT leader was 300 // promoted and renamed). 301 if (!RenamedComdats.empty()) 302 for (auto &GO : M.global_objects()) 303 if (auto *C = GO.getComdat()) { 304 auto Replacement = RenamedComdats.find(C); 305 if (Replacement != RenamedComdats.end()) 306 GO.setComdat(Replacement->second); 307 } 308 } 309 310 bool FunctionImportGlobalProcessing::run() { 311 processGlobalsForThinLTO(); 312 return false; 313 } 314 315 bool llvm::renameModuleForThinLTO(Module &M, const ModuleSummaryIndex &Index, 316 SetVector<GlobalValue *> *GlobalsToImport) { 317 FunctionImportGlobalProcessing ThinLTOProcessing(M, Index, GlobalsToImport); 318 return ThinLTOProcessing.run(); 319 } 320