blob: e48fcbdeff48540ca2721a2393251ef6768324ed [file] [log] [blame]
Teresa Johnson488a8002016-02-10 18:11:31 +00001//===- lib/Transforms/Utils/FunctionImportUtils.cpp - Importing utilities -===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Teresa Johnson488a8002016-02-10 18:11:31 +00006//
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"
Teresa Johnsondf5ef872016-04-27 14:19:38 +000015#include "llvm/IR/InstIterator.h"
Teresa Johnson488a8002016-02-10 18:11:31 +000016using namespace llvm;
17
18/// Checks if we should import SGV as a definition, otherwise import as a
19/// declaration.
20bool FunctionImportGlobalProcessing::doImportAsDefinition(
Peter Collingbourne6d8f8172017-02-03 16:56:27 +000021 const GlobalValue *SGV, SetVector<GlobalValue *> *GlobalsToImport) {
Mehdi Amini8d051852016-03-19 00:40:31 +000022
Mehdi Amini8d051852016-03-19 00:40:31 +000023 // Only import the globals requested for importing.
David Blaikie72c0b1c2017-07-27 15:28:10 +000024 if (!GlobalsToImport->count(const_cast<GlobalValue *>(SGV)))
25 return false;
David Blaikie2f0cc472017-07-27 15:09:06 +000026
27 assert(!isa<GlobalAlias>(SGV) &&
28 "Unexpected global alias in the import list.");
29
David Blaikie72c0b1c2017-07-27 15:28:10 +000030 // Otherwise yes.
31 return true;
Teresa Johnson488a8002016-02-10 18:11:31 +000032}
33
34bool FunctionImportGlobalProcessing::doImportAsDefinition(
35 const GlobalValue *SGV) {
36 if (!isPerformingImport())
37 return false;
Mehdi Amini8d051852016-03-19 00:40:31 +000038 return FunctionImportGlobalProcessing::doImportAsDefinition(SGV,
39 GlobalsToImport);
Teresa Johnson488a8002016-02-10 18:11:31 +000040}
41
Teresa Johnson38d4df72016-10-29 21:52:23 +000042bool FunctionImportGlobalProcessing::shouldPromoteLocalToGlobal(
Teresa Johnson488a8002016-02-10 18:11:31 +000043 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
Teresa Johnson4fef68c2016-11-14 19:21:41 +000050 if (isPerformingImport()) {
Peter Collingbourne6d8f8172017-02-03 16:56:27 +000051 assert((!GlobalsToImport->count(const_cast<GlobalValue *>(SGV)) ||
52 !isNonRenamableLocal(*SGV)) &&
Teresa Johnson2b603842017-01-05 15:10:10 +000053 "Attempting to promote non-renamable local");
Teresa Johnson4fef68c2016-11-14 19:21:41 +000054 // 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;
Teresa Johnson0515fb82016-11-03 01:07:16 +000060 }
Mehdi Aminib4e1e822016-04-27 00:32:13 +000061
Teresa Johnson9006d522017-01-06 23:38:41 +000062 // 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();
Teresa Johnson4fef68c2016-11-14 19:21:41 +000071 if (!GlobalValue::isLocalLinkage(Linkage)) {
Teresa Johnson519465b2017-01-05 14:32:16 +000072 assert(!isNonRenamableLocal(*SGV) &&
73 "Attempting to promote non-renamable local");
Teresa Johnson4fef68c2016-11-14 19:21:41 +000074 return true;
75 }
76
77 return false;
Teresa Johnson488a8002016-02-10 18:11:31 +000078}
79
Teresa Johnson519465b2017-01-05 14:32:16 +000080#ifndef NDEBUG
81bool 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
Teresa Johnson1b9c2be2016-10-29 21:31:48 +000094std::string FunctionImportGlobalProcessing::getName(const GlobalValue *SGV,
95 bool DoPromote) {
Teresa Johnson488a8002016-02-10 18:11:31 +000096 // 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.
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000101 if (SGV->hasLocalLinkage() && (DoPromote || isPerformingImport()))
Teresa Johnson26ab5772016-03-15 00:04:37 +0000102 return ModuleSummaryIndex::getGlobalNameForLocal(
Teresa Johnson488a8002016-02-10 18:11:31 +0000103 SGV->getName(),
Mehdi Aminiae280e52016-04-11 23:26:46 +0000104 ImportIndex.getModuleHash(SGV->getParent()->getModuleIdentifier()));
Teresa Johnson488a8002016-02-10 18:11:31 +0000105 return SGV->getName();
106}
107
108GlobalValue::LinkageTypes
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000109FunctionImportGlobalProcessing::getLinkage(const GlobalValue *SGV,
110 bool DoPromote) {
Teresa Johnson488a8002016-02-10 18:11:31 +0000111 // 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()) {
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000116 if (SGV->hasLocalLinkage() && DoPromote)
Teresa Johnson488a8002016-02-10 18:11:31 +0000117 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()) {
David Blaikie2f0cc472017-07-27 15:09:06 +0000126 case GlobalValue::LinkOnceODRLinkage:
Teresa Johnson488a8002016-02-10 18:11:31 +0000127 case GlobalValue::ExternalLinkage:
David Blaikie2f0cc472017-07-27 15:09:06 +0000128 // External and linkonce definitions are converted to available_externally
Teresa Johnson488a8002016-02-10 18:11:31 +0000129 // 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) && !dyn_cast<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
Xin Tong53e52e42018-11-28 15:16:35 +0000145 case GlobalValue::LinkOnceAnyLinkage:
Teresa Johnson488a8002016-02-10 18:11:31 +0000146 case GlobalValue::WeakAnyLinkage:
Xin Tong53e52e42018-11-28 15:16:35 +0000147 // 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.
Teresa Johnson488a8002016-02-10 18:11:31 +0000152 assert(!doImportAsDefinition(SGV));
153 // If imported as a declaration, it becomes external_weak.
Mehdi Aminibb3a1d92016-04-20 04:18:11 +0000154 return SGV->getLinkage();
Teresa Johnson488a8002016-02-10 18:11:31 +0000155
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) && !dyn_cast<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.
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000178 if (DoPromote) {
Teresa Johnson488a8002016-02-10 18:11:31 +0000179 if (doImportAsDefinition(SGV) && !dyn_cast<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
203void FunctionImportGlobalProcessing::processGlobalForThinLTO(GlobalValue &GV) {
Sean Fertile4595a912017-11-04 17:04:39 +0000204
Eugene Leviantbf46e742018-11-16 07:08:00 +0000205 ValueInfo VI;
Sean Fertile4595a912017-11-04 17:04:39 +0000206 if (GV.hasName()) {
Eugene Leviantbf46e742018-11-16 07:08:00 +0000207 VI = ImportIndex.getValueInfo(GV.getGUID());
Easwaran Raman5a7056f2018-12-13 19:54:27 +0000208 // 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 FunctionSummary *FS = dyn_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.
Rafael Espindolaf5220fb2018-03-13 15:24:51 +0000225 if (VI && VI.isDSOLocal()) {
Peter Collingbourneb4edfb92018-02-05 17:17:51 +0000226 GV.setDSOLocal(true);
Rafael Espindolaf5220fb2018-03-13 15:24:51 +0000227 if (GV.hasDLLImportStorageClass())
228 GV.setDLLStorageClass(GlobalValue::DefaultStorageClass);
229 }
Sean Fertile4595a912017-11-04 17:04:39 +0000230 }
231
Eugene Leviantbf46e742018-11-16 07:08:00 +0000232 // Mark read-only variables which can be imported with specific attribute.
233 // We can't internalize them now because IRMover will fail to link variable
234 // definitions to their external declarations during ThinLTO import. We'll
235 // internalize read-only variables later, after import is finished.
236 // See internalizeImmutableGVs.
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 const auto &SL = VI.getSummaryList();
243 auto *GVS = SL.empty() ? nullptr : dyn_cast<GlobalVarSummary>(SL[0].get());
244 if (GVS && GVS->isReadOnly())
245 cast<GlobalVariable>(&GV)->addAttribute("thinlto-internalize");
246 }
247
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000248 bool DoPromote = false;
Teresa Johnson488a8002016-02-10 18:11:31 +0000249 if (GV.hasLocalLinkage() &&
Teresa Johnson38d4df72016-10-29 21:52:23 +0000250 ((DoPromote = shouldPromoteLocalToGlobal(&GV)) || isPerformingImport())) {
Teresa Johnsonf59242e2019-01-31 17:18:11 +0000251 // Save the original name string before we rename GV below.
252 auto Name = GV.getName().str();
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000253 // Once we change the name or linkage it is difficult to determine
Teresa Johnson38d4df72016-10-29 21:52:23 +0000254 // again whether we should promote since shouldPromoteLocalToGlobal needs
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000255 // to locate the summary (based on GUID from name and linkage). Therefore,
256 // use DoPromote result saved above.
257 GV.setName(getName(&GV, DoPromote));
258 GV.setLinkage(getLinkage(&GV, DoPromote));
Teresa Johnson488a8002016-02-10 18:11:31 +0000259 if (!GV.hasLocalLinkage())
260 GV.setVisibility(GlobalValue::HiddenVisibility);
Teresa Johnsonf59242e2019-01-31 17:18:11 +0000261
262 // If we are renaming a COMDAT leader, ensure that we record the COMDAT
263 // for later renaming as well. This is required for COFF.
264 if (const auto *C = GV.getComdat())
265 if (C->getName() == Name)
266 RenamedComdats.try_emplace(C, M.getOrInsertComdat(GV.getName()));
Teresa Johnson488a8002016-02-10 18:11:31 +0000267 } else
Teresa Johnson1b9c2be2016-10-29 21:31:48 +0000268 GV.setLinkage(getLinkage(&GV, /* DoPromote */ false));
Teresa Johnson488a8002016-02-10 18:11:31 +0000269
270 // Remove functions imported as available externally defs from comdats,
271 // as this is a declaration for the linker, and will be dropped eventually.
272 // It is illegal for comdats to contain declarations.
Eugene Leviantbf46e742018-11-16 07:08:00 +0000273 auto *GO = dyn_cast<GlobalObject>(&GV);
Teresa Johnson488a8002016-02-10 18:11:31 +0000274 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) {
275 // The IRMover should not have placed any imported declarations in
276 // a comdat, so the only declaration that should be in a comdat
277 // at this point would be a definition imported as available_externally.
278 assert(GO->hasAvailableExternallyLinkage() &&
279 "Expected comdat on definition (possibly available external)");
280 GO->setComdat(nullptr);
281 }
282}
283
284void FunctionImportGlobalProcessing::processGlobalsForThinLTO() {
285 for (GlobalVariable &GV : M.globals())
286 processGlobalForThinLTO(GV);
287 for (Function &SF : M)
288 processGlobalForThinLTO(SF);
289 for (GlobalAlias &GA : M.aliases())
290 processGlobalForThinLTO(GA);
Teresa Johnsonf59242e2019-01-31 17:18:11 +0000291
292 // Replace any COMDATS that required renaming (because the COMDAT leader was
293 // promoted and renamed).
294 if (!RenamedComdats.empty())
295 for (auto &GO : M.global_objects())
296 if (auto *C = GO.getComdat()) {
297 auto Replacement = RenamedComdats.find(C);
298 if (Replacement != RenamedComdats.end())
299 GO.setComdat(Replacement->second);
300 }
Teresa Johnson488a8002016-02-10 18:11:31 +0000301}
302
303bool FunctionImportGlobalProcessing::run() {
304 processGlobalsForThinLTO();
305 return false;
306}
307
Peter Collingbourne6d8f8172017-02-03 16:56:27 +0000308bool llvm::renameModuleForThinLTO(Module &M, const ModuleSummaryIndex &Index,
309 SetVector<GlobalValue *> *GlobalsToImport) {
Mehdi Amini8d051852016-03-19 00:40:31 +0000310 FunctionImportGlobalProcessing ThinLTOProcessing(M, Index, GlobalsToImport);
Teresa Johnson488a8002016-02-10 18:11:31 +0000311 return ThinLTOProcessing.run();
312}