xref: /llvm-project/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp (revision 39770ca0a11c4cd19c38f51a1ffda6b07ab8b90d)
1 //===- lib/Transforms/Utils/FunctionImportUtils.cpp - Importing utilities -===//
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 the FunctionImportGlobalProcessing class, used
11 // to perform the necessary global value handling for function importing.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/Transforms/Utils/FunctionImportUtils.h"
16 #include "llvm/Analysis/ModuleSummaryAnalysis.h"
17 #include "llvm/IR/InstIterator.h"
18 #include "llvm/IR/Instructions.h"
19 using namespace llvm;
20 
21 /// Checks if we should import SGV as a definition, otherwise import as a
22 /// declaration.
23 bool FunctionImportGlobalProcessing::doImportAsDefinition(
24     const GlobalValue *SGV, SetVector<GlobalValue *> *GlobalsToImport) {
25 
26   // Only import the globals requested for importing.
27   if (!GlobalsToImport->count(const_cast<GlobalValue *>(SGV)))
28     return false;
29 
30   assert(!isa<GlobalAlias>(SGV) &&
31          "Unexpected global alias in the import list.");
32 
33   // Otherwise yes.
34   return true;
35 }
36 
37 bool FunctionImportGlobalProcessing::doImportAsDefinition(
38     const GlobalValue *SGV) {
39   if (!isPerformingImport())
40     return false;
41   return FunctionImportGlobalProcessing::doImportAsDefinition(SGV,
42                                                               GlobalsToImport);
43 }
44 
45 bool FunctionImportGlobalProcessing::shouldPromoteLocalToGlobal(
46     const GlobalValue *SGV) {
47   assert(SGV->hasLocalLinkage());
48   // Both the imported references and the original local variable must
49   // be promoted.
50   if (!isPerformingImport() && !isModuleExporting())
51     return false;
52 
53   if (isPerformingImport()) {
54     assert((!GlobalsToImport->count(const_cast<GlobalValue *>(SGV)) ||
55             !isNonRenamableLocal(*SGV)) &&
56            "Attempting to promote non-renamable local");
57     // We don't know for sure yet if we are importing this value (as either
58     // a reference or a def), since we are simply walking all values in the
59     // module. But by necessity if we end up importing it and it is local,
60     // it must be promoted, so unconditionally promote all values in the
61     // importing module.
62     return true;
63   }
64 
65   // When exporting, consult the index. We can have more than one local
66   // with the same GUID, in the case of same-named locals in different but
67   // same-named source files that were compiled in their respective directories
68   // (so the source file name and resulting GUID is the same). Find the one
69   // in this module.
70   auto Summary = ImportIndex.findSummaryInModule(
71       SGV->getGUID(), SGV->getParent()->getModuleIdentifier());
72   assert(Summary && "Missing summary for global value when exporting");
73   auto Linkage = Summary->linkage();
74   if (!GlobalValue::isLocalLinkage(Linkage)) {
75     assert(!isNonRenamableLocal(*SGV) &&
76            "Attempting to promote non-renamable local");
77     return true;
78   }
79 
80   return false;
81 }
82 
83 #ifndef NDEBUG
84 bool FunctionImportGlobalProcessing::isNonRenamableLocal(
85     const GlobalValue &GV) const {
86   if (!GV.hasLocalLinkage())
87     return false;
88   // This needs to stay in sync with the logic in buildModuleSummaryIndex.
89   if (GV.hasSection())
90     return true;
91   if (Used.count(const_cast<GlobalValue *>(&GV)))
92     return true;
93   return false;
94 }
95 #endif
96 
97 std::string FunctionImportGlobalProcessing::getName(const GlobalValue *SGV,
98                                                     bool DoPromote) {
99   // For locals that must be promoted to global scope, ensure that
100   // the promoted name uniquely identifies the copy in the original module,
101   // using the ID assigned during combined index creation. When importing,
102   // we rename all locals (not just those that are promoted) in order to
103   // avoid naming conflicts between locals imported from different modules.
104   if (SGV->hasLocalLinkage() && (DoPromote || isPerformingImport()))
105     return ModuleSummaryIndex::getGlobalNameForLocal(
106         SGV->getName(),
107         ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier()));
108   return SGV->getName();
109 }
110 
111 GlobalValue::LinkageTypes
112 FunctionImportGlobalProcessing::getLinkage(const GlobalValue *SGV,
113                                            bool DoPromote) {
114   // Any local variable that is referenced by an exported function needs
115   // to be promoted to global scope. Since we don't currently know which
116   // functions reference which local variables/functions, we must treat
117   // all as potentially exported if this module is exporting anything.
118   if (isModuleExporting()) {
119     if (SGV->hasLocalLinkage() && DoPromote)
120       return GlobalValue::ExternalLinkage;
121     return SGV->getLinkage();
122   }
123 
124   // Otherwise, if we aren't importing, no linkage change is needed.
125   if (!isPerformingImport())
126     return SGV->getLinkage();
127 
128   switch (SGV->getLinkage()) {
129   case GlobalValue::LinkOnceAnyLinkage:
130   case GlobalValue::LinkOnceODRLinkage:
131   case GlobalValue::ExternalLinkage:
132     // External and linkonce definitions are converted to available_externally
133     // definitions upon import, so that they are available for inlining
134     // and/or optimization, but are turned into declarations later
135     // during the EliminateAvailableExternally pass.
136     if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV))
137       return GlobalValue::AvailableExternallyLinkage;
138     // An imported external declaration stays external.
139     return SGV->getLinkage();
140 
141   case GlobalValue::AvailableExternallyLinkage:
142     // An imported available_externally definition converts
143     // to external if imported as a declaration.
144     if (!doImportAsDefinition(SGV))
145       return GlobalValue::ExternalLinkage;
146     // An imported available_externally declaration stays that way.
147     return SGV->getLinkage();
148 
149   case GlobalValue::WeakAnyLinkage:
150     // Can't import weak_any definitions correctly, or we might change the
151     // program semantics, since the linker will pick the first weak_any
152     // definition and importing would change the order they are seen by the
153     // linker. The module linking caller needs to enforce this.
154     assert(!doImportAsDefinition(SGV));
155     // If imported as a declaration, it becomes external_weak.
156     return SGV->getLinkage();
157 
158   case GlobalValue::WeakODRLinkage:
159     // For weak_odr linkage, there is a guarantee that all copies will be
160     // equivalent, so the issue described above for weak_any does not exist,
161     // and the definition can be imported. It can be treated similarly
162     // to an imported externally visible global value.
163     if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV))
164       return GlobalValue::AvailableExternallyLinkage;
165     else
166       return GlobalValue::ExternalLinkage;
167 
168   case GlobalValue::AppendingLinkage:
169     // It would be incorrect to import an appending linkage variable,
170     // since it would cause global constructors/destructors to be
171     // executed multiple times. This should have already been handled
172     // by linkIfNeeded, and we will assert in shouldLinkFromSource
173     // if we try to import, so we simply return AppendingLinkage.
174     return GlobalValue::AppendingLinkage;
175 
176   case GlobalValue::InternalLinkage:
177   case GlobalValue::PrivateLinkage:
178     // If we are promoting the local to global scope, it is handled
179     // similarly to a normal externally visible global.
180     if (DoPromote) {
181       if (doImportAsDefinition(SGV) && !dyn_cast<GlobalAlias>(SGV))
182         return GlobalValue::AvailableExternallyLinkage;
183       else
184         return GlobalValue::ExternalLinkage;
185     }
186     // A non-promoted imported local definition stays local.
187     // The ThinLTO pass will eventually force-import their definitions.
188     return SGV->getLinkage();
189 
190   case GlobalValue::ExternalWeakLinkage:
191     // External weak doesn't apply to definitions, must be a declaration.
192     assert(!doImportAsDefinition(SGV));
193     // Linkage stays external_weak.
194     return SGV->getLinkage();
195 
196   case GlobalValue::CommonLinkage:
197     // Linkage stays common on definitions.
198     // The ThinLTO pass will eventually force-import their definitions.
199     return SGV->getLinkage();
200   }
201 
202   llvm_unreachable("unknown linkage type");
203 }
204 
205 void FunctionImportGlobalProcessing::processGlobalForThinLTO(GlobalValue &GV) {
206   bool DoPromote = false;
207   if (GV.hasLocalLinkage() &&
208       ((DoPromote = shouldPromoteLocalToGlobal(&GV)) || isPerformingImport())) {
209     // Once we change the name or linkage it is difficult to determine
210     // again whether we should promote since shouldPromoteLocalToGlobal needs
211     // to locate the summary (based on GUID from name and linkage). Therefore,
212     // use DoPromote result saved above.
213     GV.setName(getName(&GV, DoPromote));
214     GV.setLinkage(getLinkage(&GV, DoPromote));
215     if (!GV.hasLocalLinkage())
216       GV.setVisibility(GlobalValue::HiddenVisibility);
217   } else
218     GV.setLinkage(getLinkage(&GV, /* DoPromote */ false));
219 
220   // Remove functions imported as available externally defs from comdats,
221   // as this is a declaration for the linker, and will be dropped eventually.
222   // It is illegal for comdats to contain declarations.
223   auto *GO = dyn_cast_or_null<GlobalObject>(&GV);
224   if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) {
225     // The IRMover should not have placed any imported declarations in
226     // a comdat, so the only declaration that should be in a comdat
227     // at this point would be a definition imported as available_externally.
228     assert(GO->hasAvailableExternallyLinkage() &&
229            "Expected comdat on definition (possibly available external)");
230     GO->setComdat(nullptr);
231   }
232 }
233 
234 void FunctionImportGlobalProcessing::processGlobalsForThinLTO() {
235   for (GlobalVariable &GV : M.globals())
236     processGlobalForThinLTO(GV);
237   for (Function &SF : M)
238     processGlobalForThinLTO(SF);
239   for (GlobalAlias &GA : M.aliases())
240     processGlobalForThinLTO(GA);
241 }
242 
243 bool FunctionImportGlobalProcessing::run() {
244   processGlobalsForThinLTO();
245   return false;
246 }
247 
248 bool llvm::renameModuleForThinLTO(Module &M, const ModuleSummaryIndex &Index,
249                                   SetVector<GlobalValue *> *GlobalsToImport) {
250   FunctionImportGlobalProcessing ThinLTOProcessing(M, Index, GlobalsToImport);
251   return ThinLTOProcessing.run();
252 }
253