1488a800aSTeresa Johnson //===- lib/Transforms/Utils/FunctionImportUtils.cpp - Importing utilities -===// 2488a800aSTeresa Johnson // 3488a800aSTeresa Johnson // The LLVM Compiler Infrastructure 4488a800aSTeresa Johnson // 5488a800aSTeresa Johnson // This file is distributed under the University of Illinois Open Source 6488a800aSTeresa Johnson // License. See LICENSE.TXT for details. 7488a800aSTeresa Johnson // 8488a800aSTeresa Johnson //===----------------------------------------------------------------------===// 9488a800aSTeresa Johnson // 10488a800aSTeresa Johnson // This file implements the FunctionImportGlobalProcessing class, used 11488a800aSTeresa Johnson // to perform the necessary global value handling for function importing. 12488a800aSTeresa Johnson // 13488a800aSTeresa Johnson //===----------------------------------------------------------------------===// 14488a800aSTeresa Johnson 153b132e34SMehdi Amini #include "llvm/Analysis/ModuleSummaryAnalysis.h" 16488a800aSTeresa Johnson #include "llvm/Transforms/Utils/FunctionImportUtils.h" 17df5ef871STeresa Johnson #include "llvm/IR/InstIterator.h" 18df5ef871STeresa Johnson #include "llvm/IR/Instructions.h" 19488a800aSTeresa Johnson using namespace llvm; 20488a800aSTeresa Johnson 21488a800aSTeresa Johnson /// Checks if we should import SGV as a definition, otherwise import as a 22488a800aSTeresa Johnson /// declaration. 23488a800aSTeresa Johnson bool FunctionImportGlobalProcessing::doImportAsDefinition( 248d05185aSMehdi Amini const GlobalValue *SGV, DenseSet<const GlobalValue *> *GlobalsToImport) { 258d05185aSMehdi Amini 268d05185aSMehdi Amini // For alias, we tie the definition to the base object. Extract it and recurse 278d05185aSMehdi Amini if (auto *GA = dyn_cast<GlobalAlias>(SGV)) { 28488a800aSTeresa Johnson if (GA->hasWeakAnyLinkage()) 29488a800aSTeresa Johnson return false; 30488a800aSTeresa Johnson const GlobalObject *GO = GA->getBaseObject(); 31488a800aSTeresa Johnson if (!GO->hasLinkOnceODRLinkage()) 32488a800aSTeresa Johnson return false; 33488a800aSTeresa Johnson return FunctionImportGlobalProcessing::doImportAsDefinition( 348d05185aSMehdi Amini GO, GlobalsToImport); 35488a800aSTeresa Johnson } 368d05185aSMehdi Amini // Only import the globals requested for importing. 378d05185aSMehdi Amini if (GlobalsToImport->count(SGV)) 38488a800aSTeresa Johnson return true; 39488a800aSTeresa Johnson // Otherwise no. 40488a800aSTeresa Johnson return false; 41488a800aSTeresa Johnson } 42488a800aSTeresa Johnson 43488a800aSTeresa Johnson bool FunctionImportGlobalProcessing::doImportAsDefinition( 44488a800aSTeresa Johnson const GlobalValue *SGV) { 45488a800aSTeresa Johnson if (!isPerformingImport()) 46488a800aSTeresa Johnson return false; 478d05185aSMehdi Amini return FunctionImportGlobalProcessing::doImportAsDefinition(SGV, 488d05185aSMehdi Amini GlobalsToImport); 49488a800aSTeresa Johnson } 50488a800aSTeresa Johnson 51488a800aSTeresa Johnson bool FunctionImportGlobalProcessing::doPromoteLocalToGlobal( 52488a800aSTeresa Johnson const GlobalValue *SGV) { 53488a800aSTeresa Johnson assert(SGV->hasLocalLinkage()); 54488a800aSTeresa Johnson // Both the imported references and the original local variable must 55488a800aSTeresa Johnson // be promoted. 56488a800aSTeresa Johnson if (!isPerformingImport() && !isModuleExporting()) 57488a800aSTeresa Johnson return false; 58488a800aSTeresa Johnson 59488a800aSTeresa Johnson // Local const variables never need to be promoted unless they are address 60488a800aSTeresa Johnson // taken. The imported uses can simply use the clone created in this module. 61488a800aSTeresa Johnson // For now we are conservative in determining which variables are not 62488a800aSTeresa Johnson // address taken by checking the unnamed addr flag. To be more aggressive, 63488a800aSTeresa Johnson // the address taken information must be checked earlier during parsing 6426ab5772STeresa Johnson // of the module and recorded in the summary index for use when importing 65488a800aSTeresa Johnson // from that module. 66488a800aSTeresa Johnson auto *GVar = dyn_cast<GlobalVariable>(SGV); 67*96efdd61SPeter Collingbourne if (GVar && GVar->isConstant() && GVar->hasGlobalUnnamedAddr()) 68488a800aSTeresa Johnson return false; 69488a800aSTeresa Johnson 70b4e1e829SMehdi Amini if (GVar && GVar->hasSection()) 71b4e1e829SMehdi Amini // Some sections like "__DATA,__cfstring" are "magic" and promotion is not 72b4e1e829SMehdi Amini // allowed. Just disable promotion on any GVar with sections right now. 73b4e1e829SMehdi Amini return false; 74b4e1e829SMehdi Amini 75488a800aSTeresa Johnson // Eventually we only need to promote functions in the exporting module that 76488a800aSTeresa Johnson // are referenced by a potentially exported function (i.e. one that is in the 7726ab5772STeresa Johnson // summary index). 78488a800aSTeresa Johnson return true; 79488a800aSTeresa Johnson } 80488a800aSTeresa Johnson 81488a800aSTeresa Johnson std::string FunctionImportGlobalProcessing::getName(const GlobalValue *SGV) { 82488a800aSTeresa Johnson // For locals that must be promoted to global scope, ensure that 83488a800aSTeresa Johnson // the promoted name uniquely identifies the copy in the original module, 84488a800aSTeresa Johnson // using the ID assigned during combined index creation. When importing, 85488a800aSTeresa Johnson // we rename all locals (not just those that are promoted) in order to 86488a800aSTeresa Johnson // avoid naming conflicts between locals imported from different modules. 87488a800aSTeresa Johnson if (SGV->hasLocalLinkage() && 88488a800aSTeresa Johnson (doPromoteLocalToGlobal(SGV) || isPerformingImport())) 8926ab5772STeresa Johnson return ModuleSummaryIndex::getGlobalNameForLocal( 90488a800aSTeresa Johnson SGV->getName(), 91ae280e54SMehdi Amini ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier())); 92488a800aSTeresa Johnson return SGV->getName(); 93488a800aSTeresa Johnson } 94488a800aSTeresa Johnson 95488a800aSTeresa Johnson GlobalValue::LinkageTypes 96488a800aSTeresa Johnson FunctionImportGlobalProcessing::getLinkage(const GlobalValue *SGV) { 97488a800aSTeresa Johnson // Any local variable that is referenced by an exported function needs 98488a800aSTeresa Johnson // to be promoted to global scope. Since we don't currently know which 99488a800aSTeresa Johnson // functions reference which local variables/functions, we must treat 100488a800aSTeresa Johnson // all as potentially exported if this module is exporting anything. 101488a800aSTeresa Johnson if (isModuleExporting()) { 102488a800aSTeresa Johnson if (SGV->hasLocalLinkage() && doPromoteLocalToGlobal(SGV)) 103488a800aSTeresa Johnson return GlobalValue::ExternalLinkage; 104488a800aSTeresa Johnson return SGV->getLinkage(); 105488a800aSTeresa Johnson } 106488a800aSTeresa Johnson 107488a800aSTeresa Johnson // Otherwise, if we aren't importing, no linkage change is needed. 108488a800aSTeresa Johnson if (!isPerformingImport()) 109488a800aSTeresa Johnson return SGV->getLinkage(); 110488a800aSTeresa Johnson 111488a800aSTeresa Johnson switch (SGV->getLinkage()) { 112488a800aSTeresa Johnson case GlobalValue::ExternalLinkage: 113488a800aSTeresa Johnson // External defnitions are converted to available_externally 114488a800aSTeresa Johnson // definitions upon import, so that they are available for inlining 115488a800aSTeresa Johnson // and/or optimization, but are turned into declarations later 116488a800aSTeresa Johnson // during the EliminateAvailableExternally pass. 117488a800aSTeresa Johnson if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) 118488a800aSTeresa Johnson return GlobalValue::AvailableExternallyLinkage; 119488a800aSTeresa Johnson // An imported external declaration stays external. 120488a800aSTeresa Johnson return SGV->getLinkage(); 121488a800aSTeresa Johnson 122488a800aSTeresa Johnson case GlobalValue::AvailableExternallyLinkage: 123488a800aSTeresa Johnson // An imported available_externally definition converts 124488a800aSTeresa Johnson // to external if imported as a declaration. 125488a800aSTeresa Johnson if (!doImportAsDefinition(SGV)) 126488a800aSTeresa Johnson return GlobalValue::ExternalLinkage; 127488a800aSTeresa Johnson // An imported available_externally declaration stays that way. 128488a800aSTeresa Johnson return SGV->getLinkage(); 129488a800aSTeresa Johnson 130488a800aSTeresa Johnson case GlobalValue::LinkOnceAnyLinkage: 131488a800aSTeresa Johnson case GlobalValue::LinkOnceODRLinkage: 132488a800aSTeresa Johnson // These both stay the same when importing the definition. 133488a800aSTeresa Johnson // The ThinLTO pass will eventually force-import their definitions. 134488a800aSTeresa Johnson return SGV->getLinkage(); 135488a800aSTeresa Johnson 136488a800aSTeresa Johnson case GlobalValue::WeakAnyLinkage: 137488a800aSTeresa Johnson // Can't import weak_any definitions correctly, or we might change the 138488a800aSTeresa Johnson // program semantics, since the linker will pick the first weak_any 139488a800aSTeresa Johnson // definition and importing would change the order they are seen by the 140488a800aSTeresa Johnson // linker. The module linking caller needs to enforce this. 141488a800aSTeresa Johnson assert(!doImportAsDefinition(SGV)); 142488a800aSTeresa Johnson // If imported as a declaration, it becomes external_weak. 143bb3a1d92SMehdi Amini return SGV->getLinkage(); 144488a800aSTeresa Johnson 145488a800aSTeresa Johnson case GlobalValue::WeakODRLinkage: 146488a800aSTeresa Johnson // For weak_odr linkage, there is a guarantee that all copies will be 147488a800aSTeresa Johnson // equivalent, so the issue described above for weak_any does not exist, 148488a800aSTeresa Johnson // and the definition can be imported. It can be treated similarly 149488a800aSTeresa Johnson // to an imported externally visible global value. 150488a800aSTeresa Johnson if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) 151488a800aSTeresa Johnson return GlobalValue::AvailableExternallyLinkage; 152488a800aSTeresa Johnson else 153488a800aSTeresa Johnson return GlobalValue::ExternalLinkage; 154488a800aSTeresa Johnson 155488a800aSTeresa Johnson case GlobalValue::AppendingLinkage: 156488a800aSTeresa Johnson // It would be incorrect to import an appending linkage variable, 157488a800aSTeresa Johnson // since it would cause global constructors/destructors to be 158488a800aSTeresa Johnson // executed multiple times. This should have already been handled 159488a800aSTeresa Johnson // by linkIfNeeded, and we will assert in shouldLinkFromSource 160488a800aSTeresa Johnson // if we try to import, so we simply return AppendingLinkage. 161488a800aSTeresa Johnson return GlobalValue::AppendingLinkage; 162488a800aSTeresa Johnson 163488a800aSTeresa Johnson case GlobalValue::InternalLinkage: 164488a800aSTeresa Johnson case GlobalValue::PrivateLinkage: 165488a800aSTeresa Johnson // If we are promoting the local to global scope, it is handled 166488a800aSTeresa Johnson // similarly to a normal externally visible global. 167488a800aSTeresa Johnson if (doPromoteLocalToGlobal(SGV)) { 168488a800aSTeresa Johnson if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV)) 169488a800aSTeresa Johnson return GlobalValue::AvailableExternallyLinkage; 170488a800aSTeresa Johnson else 171488a800aSTeresa Johnson return GlobalValue::ExternalLinkage; 172488a800aSTeresa Johnson } 173488a800aSTeresa Johnson // A non-promoted imported local definition stays local. 174488a800aSTeresa Johnson // The ThinLTO pass will eventually force-import their definitions. 175488a800aSTeresa Johnson return SGV->getLinkage(); 176488a800aSTeresa Johnson 177488a800aSTeresa Johnson case GlobalValue::ExternalWeakLinkage: 178488a800aSTeresa Johnson // External weak doesn't apply to definitions, must be a declaration. 179488a800aSTeresa Johnson assert(!doImportAsDefinition(SGV)); 180488a800aSTeresa Johnson // Linkage stays external_weak. 181488a800aSTeresa Johnson return SGV->getLinkage(); 182488a800aSTeresa Johnson 183488a800aSTeresa Johnson case GlobalValue::CommonLinkage: 184488a800aSTeresa Johnson // Linkage stays common on definitions. 185488a800aSTeresa Johnson // The ThinLTO pass will eventually force-import their definitions. 186488a800aSTeresa Johnson return SGV->getLinkage(); 187488a800aSTeresa Johnson } 188488a800aSTeresa Johnson 189488a800aSTeresa Johnson llvm_unreachable("unknown linkage type"); 190488a800aSTeresa Johnson } 191488a800aSTeresa Johnson 192488a800aSTeresa Johnson void FunctionImportGlobalProcessing::processGlobalForThinLTO(GlobalValue &GV) { 193488a800aSTeresa Johnson if (GV.hasLocalLinkage() && 194488a800aSTeresa Johnson (doPromoteLocalToGlobal(&GV) || isPerformingImport())) { 195488a800aSTeresa Johnson GV.setName(getName(&GV)); 196488a800aSTeresa Johnson GV.setLinkage(getLinkage(&GV)); 197488a800aSTeresa Johnson if (!GV.hasLocalLinkage()) 198488a800aSTeresa Johnson GV.setVisibility(GlobalValue::HiddenVisibility); 199488a800aSTeresa Johnson } else 200488a800aSTeresa Johnson GV.setLinkage(getLinkage(&GV)); 201488a800aSTeresa Johnson 202488a800aSTeresa Johnson // Remove functions imported as available externally defs from comdats, 203488a800aSTeresa Johnson // as this is a declaration for the linker, and will be dropped eventually. 204488a800aSTeresa Johnson // It is illegal for comdats to contain declarations. 205488a800aSTeresa Johnson auto *GO = dyn_cast_or_null<GlobalObject>(&GV); 206488a800aSTeresa Johnson if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) { 207488a800aSTeresa Johnson // The IRMover should not have placed any imported declarations in 208488a800aSTeresa Johnson // a comdat, so the only declaration that should be in a comdat 209488a800aSTeresa Johnson // at this point would be a definition imported as available_externally. 210488a800aSTeresa Johnson assert(GO->hasAvailableExternallyLinkage() && 211488a800aSTeresa Johnson "Expected comdat on definition (possibly available external)"); 212488a800aSTeresa Johnson GO->setComdat(nullptr); 213488a800aSTeresa Johnson } 214488a800aSTeresa Johnson } 215488a800aSTeresa Johnson 216488a800aSTeresa Johnson void FunctionImportGlobalProcessing::processGlobalsForThinLTO() { 2173b132e34SMehdi Amini if (!moduleCanBeRenamedForThinLTO(M)) { 218b35cc691STeresa Johnson // We would have blocked importing from this module by suppressing index 2193b132e34SMehdi Amini // generation. We still may be able to import into this module though. 2203b132e34SMehdi Amini assert(!isPerformingImport() && 2213b132e34SMehdi Amini "Should have blocked importing from module with local used in ASM"); 222df5ef871STeresa Johnson return; 2233b132e34SMehdi Amini } 224b35cc691STeresa Johnson 225488a800aSTeresa Johnson for (GlobalVariable &GV : M.globals()) 226488a800aSTeresa Johnson processGlobalForThinLTO(GV); 227488a800aSTeresa Johnson for (Function &SF : M) 228488a800aSTeresa Johnson processGlobalForThinLTO(SF); 229488a800aSTeresa Johnson for (GlobalAlias &GA : M.aliases()) 230488a800aSTeresa Johnson processGlobalForThinLTO(GA); 231488a800aSTeresa Johnson } 232488a800aSTeresa Johnson 233488a800aSTeresa Johnson bool FunctionImportGlobalProcessing::run() { 234488a800aSTeresa Johnson processGlobalsForThinLTO(); 235488a800aSTeresa Johnson return false; 236488a800aSTeresa Johnson } 237488a800aSTeresa Johnson 2388d05185aSMehdi Amini bool llvm::renameModuleForThinLTO( 2398d05185aSMehdi Amini Module &M, const ModuleSummaryIndex &Index, 2408d05185aSMehdi Amini DenseSet<const GlobalValue *> *GlobalsToImport) { 2418d05185aSMehdi Amini FunctionImportGlobalProcessing ThinLTOProcessing(M, Index, GlobalsToImport); 242488a800aSTeresa Johnson return ThinLTOProcessing.run(); 243488a800aSTeresa Johnson } 244