blob: 8b25d486dbc330cecc6e391dbadb6de581205335 [file] [log] [blame]
Eugene Zelenkof1933322017-09-22 23:46:57 +00001//===- GlobalMerge.cpp - Internal globals merging -------------------------===//
Anton Korobeynikov19edda02010-07-24 21:52:08 +00002//
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
Anton Korobeynikov19edda02010-07-24 21:52:08 +00006//
7//===----------------------------------------------------------------------===//
Eugene Zelenkof1933322017-09-22 23:46:57 +00008//
Anton Korobeynikov19edda02010-07-24 21:52:08 +00009// This pass merges globals with internal linkage into one. This way all the
10// globals which were merged into a biggest one can be addressed using offsets
11// from the same base pointer (no need for separate base pointer for each of the
12// global). Such a transformation can significantly reduce the register pressure
13// when many globals are involved.
14//
Nadav Rotem465834c2012-07-24 10:51:42 +000015// For example, consider the code which touches several global variables at
Eric Christopherbf86fd32010-09-28 04:18:29 +000016// once:
Anton Korobeynikov19edda02010-07-24 21:52:08 +000017//
18// static int foo[N], bar[N], baz[N];
19//
20// for (i = 0; i < N; ++i) {
21// foo[i] = bar[i] * baz[i];
22// }
23//
24// On ARM the addresses of 3 arrays should be kept in the registers, thus
25// this code has quite large register pressure (loop body):
26//
27// ldr r1, [r5], #4
28// ldr r2, [r6], #4
29// mul r1, r2, r1
30// str r1, [r0], #4
31//
32// Pass converts the code to something like:
33//
34// static struct {
35// int foo[N];
36// int bar[N];
37// int baz[N];
38// } merged;
39//
40// for (i = 0; i < N; ++i) {
41// merged.foo[i] = merged.bar[i] * merged.baz[i];
42// }
43//
44// and in ARM code this becomes:
45//
46// ldr r0, [r5, #40]
47// ldr r1, [r5, #80]
48// mul r0, r1, r0
49// str r0, [r5], #4
50//
51// note that we saved 2 registers here almostly "for free".
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000052//
53// However, merging globals can have tradeoffs:
54// - it confuses debuggers, tools, and users
55// - it makes linker optimizations less useful (order files, LOHs, ...)
56// - it forces usage of indexed addressing (which isn't necessarily "free")
57// - it can increase register pressure when the uses are disparate enough.
Fangrui Songf78650a2018-07-30 19:41:25 +000058//
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000059// We use heuristics to discover the best global grouping we can (cf cl::opts).
Eugene Zelenkof1933322017-09-22 23:46:57 +000060//
Eric Christopherbf86fd32010-09-28 04:18:29 +000061// ===---------------------------------------------------------------------===//
Anton Korobeynikov19edda02010-07-24 21:52:08 +000062
Eugene Zelenkof1933322017-09-22 23:46:57 +000063#include "llvm/ADT/BitVector.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000064#include "llvm/ADT/DenseMap.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000065#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000066#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000067#include "llvm/ADT/Statistic.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000068#include "llvm/ADT/StringRef.h"
69#include "llvm/ADT/Triple.h"
70#include "llvm/ADT/Twine.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000071#include "llvm/CodeGen/Passes.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000072#include "llvm/IR/BasicBlock.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000073#include "llvm/IR/Constants.h"
74#include "llvm/IR/DataLayout.h"
75#include "llvm/IR/DerivedTypes.h"
76#include "llvm/IR/Function.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000077#include "llvm/IR/GlobalAlias.h"
78#include "llvm/IR/GlobalValue.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000079#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000080#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000081#include "llvm/IR/Module.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000082#include "llvm/IR/Type.h"
83#include "llvm/IR/Use.h"
84#include "llvm/IR/User.h"
Anton Korobeynikov19edda02010-07-24 21:52:08 +000085#include "llvm/Pass.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000086#include "llvm/Support/Casting.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000087#include "llvm/Support/CommandLine.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000088#include "llvm/Support/Debug.h"
89#include "llvm/Support/raw_ostream.h"
David Blaikie6054e652018-03-23 23:58:19 +000090#include "llvm/Target/TargetLoweringObjectFile.h"
Eugene Zelenkof1933322017-09-22 23:46:57 +000091#include "llvm/Target/TargetMachine.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000092#include <algorithm>
Eugene Zelenkof1933322017-09-22 23:46:57 +000093#include <cassert>
Eugene Zelenkof1933322017-09-22 23:46:57 +000094#include <cstddef>
David Blaikieb3bde2e2017-11-17 01:07:10 +000095#include <cstdint>
Eugene Zelenkof1933322017-09-22 23:46:57 +000096#include <string>
97#include <vector>
98
Anton Korobeynikov19edda02010-07-24 21:52:08 +000099using namespace llvm;
100
Chandler Carruth964daaa2014-04-22 02:55:47 +0000101#define DEBUG_TYPE "global-merge"
102
Ahmed Bougachab96444e2015-04-11 00:06:36 +0000103// FIXME: This is only useful as a last-resort way to disable the pass.
Quentin Colombet8fc34092013-03-18 22:30:07 +0000104static cl::opt<bool>
Jiangning Liu3e5b8552014-06-11 06:35:26 +0000105EnableGlobalMerge("enable-global-merge", cl::Hidden,
Ahmed Bougachab96444e2015-04-11 00:06:36 +0000106 cl::desc("Enable the global merge pass"),
Tim Northoverf804c172014-02-18 11:17:29 +0000107 cl::init(true));
108
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000109static cl::opt<unsigned>
110GlobalMergeMaxOffset("global-merge-max-offset", cl::Hidden,
111 cl::desc("Set maximum offset for global merge pass"),
112 cl::init(0));
113
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000114static cl::opt<bool> GlobalMergeGroupByUse(
115 "global-merge-group-by-use", cl::Hidden,
116 cl::desc("Improve global merge pass to look at uses"), cl::init(true));
117
118static cl::opt<bool> GlobalMergeIgnoreSingleUse(
119 "global-merge-ignore-single-use", cl::Hidden,
120 cl::desc("Improve global merge pass to ignore globals only used alone"),
121 cl::init(true));
122
Tim Northoverf804c172014-02-18 11:17:29 +0000123static cl::opt<bool>
Quentin Colombet8fc34092013-03-18 22:30:07 +0000124EnableGlobalMergeOnConst("global-merge-on-const", cl::Hidden,
Jakub Staszak6b36db02013-07-22 21:11:30 +0000125 cl::desc("Enable global merge pass on constants"),
126 cl::init(false));
Quentin Colombet8fc34092013-03-18 22:30:07 +0000127
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000128// FIXME: this could be a transitional option, and we probably need to remove
129// it if only we are sure this optimization could always benefit all targets.
John Brawn8b954242015-08-03 12:08:41 +0000130static cl::opt<cl::boolOrDefault>
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000131EnableGlobalMergeOnExternal("global-merge-on-external", cl::Hidden,
John Brawn8b954242015-08-03 12:08:41 +0000132 cl::desc("Enable global merge pass on external linkage"));
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000133
Eric Christophered47b222015-02-23 19:28:45 +0000134STATISTIC(NumMerged, "Number of globals merged");
Eugene Zelenkof1933322017-09-22 23:46:57 +0000135
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000136namespace {
Eugene Zelenkof1933322017-09-22 23:46:57 +0000137
Devang Patel76c85632011-10-17 17:17:43 +0000138 class GlobalMerge : public FunctionPass {
Eugene Zelenkof1933322017-09-22 23:46:57 +0000139 const TargetMachine *TM = nullptr;
140
Eric Christophered47b222015-02-23 19:28:45 +0000141 // FIXME: Infer the maximum possible offset depending on the actual users
142 // (these max offsets are different for the users inside Thumb or ARM
143 // functions), see the code that passes in the offset in the ARM backend
144 // for more information.
145 unsigned MaxOffset;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000146
Ahmed Bougacha82076412015-06-04 20:39:23 +0000147 /// Whether we should try to optimize for size only.
148 /// Currently, this applies a dead simple heuristic: only consider globals
149 /// used in minsize functions for merging.
150 /// FIXME: This could learn about optsize, and be used in the cost model.
Eugene Zelenkof1933322017-09-22 23:46:57 +0000151 bool OnlyOptimizeForSize = false;
Ahmed Bougacha82076412015-06-04 20:39:23 +0000152
John Brawn8b954242015-08-03 12:08:41 +0000153 /// Whether we should merge global variables that have external linkage.
Eugene Zelenkof1933322017-09-22 23:46:57 +0000154 bool MergeExternalGlobals = false;
John Brawn8b954242015-08-03 12:08:41 +0000155
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000156 bool IsMachO;
157
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000158 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000159 Module &M, bool isConst, unsigned AddrSpace) const;
Eugene Zelenkof1933322017-09-22 23:46:57 +0000160
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000161 /// Merge everything in \p Globals for which the corresponding bit
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000162 /// in \p GlobalSet is set.
David Blaikie47bf5c02015-08-21 22:19:06 +0000163 bool doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000164 const BitVector &GlobalSet, Module &M, bool isConst,
165 unsigned AddrSpace) const;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000166
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000167 /// Check if the given variable has been identified as must keep
Quentin Colombet8fc34092013-03-18 22:30:07 +0000168 /// \pre setMustKeepGlobalVariables must have been called on the Module that
169 /// contains GV
170 bool isMustKeepGlobalVariable(const GlobalVariable *GV) const {
171 return MustKeepGlobalVariables.count(GV);
172 }
173
174 /// Collect every variables marked as "used" or used in a landing pad
175 /// instruction for this Module.
176 void setMustKeepGlobalVariables(Module &M);
177
178 /// Collect every variables marked as "used"
Eli Friedmand6baff62018-07-25 22:03:35 +0000179 void collectUsedGlobalVariables(Module &M, StringRef Name);
Quentin Colombet8fc34092013-03-18 22:30:07 +0000180
Quentin Colombet2393cb92013-03-19 21:46:49 +0000181 /// Keep track of the GlobalVariable that must not be merged away
Quentin Colombet8fc34092013-03-18 22:30:07 +0000182 SmallPtrSet<const GlobalVariable *, 16> MustKeepGlobalVariables;
183
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000184 public:
185 static char ID; // Pass identification, replacement for typeid.
Eugene Zelenkof1933322017-09-22 23:46:57 +0000186
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000187 explicit GlobalMerge()
Eugene Zelenkof1933322017-09-22 23:46:57 +0000188 : FunctionPass(ID), MaxOffset(GlobalMergeMaxOffset) {
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000189 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
190 }
191
192 explicit GlobalMerge(const TargetMachine *TM, unsigned MaximalOffset,
193 bool OnlyOptimizeForSize, bool MergeExternalGlobals)
Mehdi Aminif6727b02015-07-07 18:49:25 +0000194 : FunctionPass(ID), TM(TM), MaxOffset(MaximalOffset),
John Brawn8b954242015-08-03 12:08:41 +0000195 OnlyOptimizeForSize(OnlyOptimizeForSize),
196 MergeExternalGlobals(MergeExternalGlobals) {
Devang Patel76c85632011-10-17 17:17:43 +0000197 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
198 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000199
Craig Topper3e4c6972014-03-05 09:10:37 +0000200 bool doInitialization(Module &M) override;
201 bool runOnFunction(Function &F) override;
202 bool doFinalization(Module &M) override;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000203
Mehdi Amini117296c2016-10-01 02:56:57 +0000204 StringRef getPassName() const override { return "Merge internal globals"; }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000205
Craig Topper3e4c6972014-03-05 09:10:37 +0000206 void getAnalysisUsage(AnalysisUsage &AU) const override {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000207 AU.setPreservesCFG();
208 FunctionPass::getAnalysisUsage(AU);
209 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000210 };
Eugene Zelenkof1933322017-09-22 23:46:57 +0000211
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000212} // end anonymous namespace
213
Devang Patel76c85632011-10-17 17:17:43 +0000214char GlobalMerge::ID = 0;
Eugene Zelenkof1933322017-09-22 23:46:57 +0000215
Matthias Braun1527baa2017-05-25 21:26:32 +0000216INITIALIZE_PASS(GlobalMerge, DEBUG_TYPE, "Merge global variables", false, false)
Devang Patel76c85632011-10-17 17:17:43 +0000217
218bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000219 Module &M, bool isConst, unsigned AddrSpace) const {
Mehdi Aminif6727b02015-07-07 18:49:25 +0000220 auto &DL = M.getDataLayout();
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000221 // FIXME: Find better heuristics
David Blaikie9ed57a92015-08-21 22:00:44 +0000222 std::stable_sort(Globals.begin(), Globals.end(),
223 [&DL](const GlobalVariable *GV1, const GlobalVariable *GV2) {
224 return DL.getTypeAllocSize(GV1->getValueType()) <
225 DL.getTypeAllocSize(GV2->getValueType());
226 });
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000227
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000228 // If we want to just blindly group all globals together, do so.
229 if (!GlobalMergeGroupByUse) {
230 BitVector AllGlobals(Globals.size());
231 AllGlobals.set();
232 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
233 }
234
235 // If we want to be smarter, look at all uses of each global, to try to
236 // discover all sets of globals used together, and how many times each of
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000237 // these sets occurred.
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000238 //
239 // Keep this reasonably efficient, by having an append-only list of all sets
240 // discovered so far (UsedGlobalSet), and mapping each "together-ness" unit of
241 // code (currently, a Function) to the set of globals seen so far that are
242 // used together in that unit (GlobalUsesByFunction).
243 //
Haicheng Wub09308d2018-04-26 17:56:50 +0000244 // When we look at the Nth global, we know that any new set is either:
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000245 // - the singleton set {N}, containing this global only, or
246 // - the union of {N} and a previously-discovered set, containing some
247 // combination of the previous N-1 globals.
248 // Using that knowledge, when looking at the Nth global, we can keep:
249 // - a reference to the singleton set {N} (CurGVOnlySetIdx)
250 // - a list mapping each previous set to its union with {N} (EncounteredUGS),
251 // if it actually occurs.
252
253 // We keep track of the sets of globals used together "close enough".
254 struct UsedGlobalSet {
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000255 BitVector Globals;
Eugene Zelenkof1933322017-09-22 23:46:57 +0000256 unsigned UsageCount = 1;
257
258 UsedGlobalSet(size_t Size) : Globals(Size) {}
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000259 };
260
261 // Each set is unique in UsedGlobalSets.
262 std::vector<UsedGlobalSet> UsedGlobalSets;
263
264 // Avoid repeating the create-global-set pattern.
265 auto CreateGlobalSet = [&]() -> UsedGlobalSet & {
266 UsedGlobalSets.emplace_back(Globals.size());
267 return UsedGlobalSets.back();
268 };
269
270 // The first set is the empty set.
271 CreateGlobalSet().UsageCount = 0;
272
273 // We define "close enough" to be "in the same function".
274 // FIXME: Grouping uses by function is way too aggressive, so we should have
275 // a better metric for distance between uses.
276 // The obvious alternative would be to group by BasicBlock, but that's in
277 // turn too conservative..
278 // Anything in between wouldn't be trivial to compute, so just stick with
279 // per-function grouping.
280
281 // The value type is an index into UsedGlobalSets.
282 // The default (0) conveniently points to the empty set.
283 DenseMap<Function *, size_t /*UsedGlobalSetIdx*/> GlobalUsesByFunction;
284
285 // Now, look at each merge-eligible global in turn.
286
287 // Keep track of the sets we already encountered to which we added the
288 // current global.
289 // Each element matches the same-index element in UsedGlobalSets.
290 // This lets us efficiently tell whether a set has already been expanded to
291 // include the current global.
292 std::vector<size_t> EncounteredUGS;
293
294 for (size_t GI = 0, GE = Globals.size(); GI != GE; ++GI) {
295 GlobalVariable *GV = Globals[GI];
296
297 // Reset the encountered sets for this global...
298 std::fill(EncounteredUGS.begin(), EncounteredUGS.end(), 0);
299 // ...and grow it in case we created new sets for the previous global.
300 EncounteredUGS.resize(UsedGlobalSets.size());
301
302 // We might need to create a set that only consists of the current global.
303 // Keep track of its index into UsedGlobalSets.
304 size_t CurGVOnlySetIdx = 0;
305
306 // For each global, look at all its Uses.
307 for (auto &U : GV->uses()) {
308 // This Use might be a ConstantExpr. We're interested in Instruction
309 // users, so look through ConstantExpr...
310 Use *UI, *UE;
311 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) {
Oliver Stannard8379e292015-06-08 16:55:31 +0000312 if (CE->use_empty())
313 continue;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000314 UI = &*CE->use_begin();
315 UE = nullptr;
316 } else if (isa<Instruction>(U.getUser())) {
317 UI = &U;
318 UE = UI->getNext();
319 } else {
320 continue;
321 }
322
323 // ...to iterate on all the instruction users of the global.
324 // Note that we iterate on Uses and not on Users to be able to getNext().
325 for (; UI != UE; UI = UI->getNext()) {
326 Instruction *I = dyn_cast<Instruction>(UI->getUser());
327 if (!I)
328 continue;
329
330 Function *ParentFn = I->getParent()->getParent();
Ahmed Bougacha82076412015-06-04 20:39:23 +0000331
332 // If we're only optimizing for size, ignore non-minsize functions.
Sanjay Patel1cd6d882015-08-18 16:44:23 +0000333 if (OnlyOptimizeForSize && !ParentFn->optForMinSize())
Ahmed Bougacha82076412015-06-04 20:39:23 +0000334 continue;
335
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000336 size_t UGSIdx = GlobalUsesByFunction[ParentFn];
337
338 // If this is the first global the basic block uses, map it to the set
339 // consisting of this global only.
340 if (!UGSIdx) {
341 // If that set doesn't exist yet, create it.
342 if (!CurGVOnlySetIdx) {
343 CurGVOnlySetIdx = UsedGlobalSets.size();
344 CreateGlobalSet().Globals.set(GI);
345 } else {
346 ++UsedGlobalSets[CurGVOnlySetIdx].UsageCount;
347 }
348
349 GlobalUsesByFunction[ParentFn] = CurGVOnlySetIdx;
350 continue;
351 }
352
353 // If we already encountered this BB, just increment the counter.
354 if (UsedGlobalSets[UGSIdx].Globals.test(GI)) {
355 ++UsedGlobalSets[UGSIdx].UsageCount;
356 continue;
357 }
358
359 // If not, the previous set wasn't actually used in this function.
360 --UsedGlobalSets[UGSIdx].UsageCount;
361
362 // If we already expanded the previous set to include this global, just
363 // reuse that expanded set.
364 if (size_t ExpandedIdx = EncounteredUGS[UGSIdx]) {
365 ++UsedGlobalSets[ExpandedIdx].UsageCount;
366 GlobalUsesByFunction[ParentFn] = ExpandedIdx;
367 continue;
368 }
369
370 // If not, create a new set consisting of the union of the previous set
371 // and this global. Mark it as encountered, so we can reuse it later.
372 GlobalUsesByFunction[ParentFn] = EncounteredUGS[UGSIdx] =
373 UsedGlobalSets.size();
374
375 UsedGlobalSet &NewUGS = CreateGlobalSet();
376 NewUGS.Globals.set(GI);
377 NewUGS.Globals |= UsedGlobalSets[UGSIdx].Globals;
378 }
379 }
380 }
381
382 // Now we found a bunch of sets of globals used together. We accumulated
383 // the number of times we encountered the sets (i.e., the number of blocks
384 // that use that exact set of globals).
385 //
386 // Multiply that by the size of the set to give us a crude profitability
387 // metric.
Mandeep Singh Grang8c603652017-11-09 18:05:17 +0000388 std::stable_sort(UsedGlobalSets.begin(), UsedGlobalSets.end(),
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000389 [](const UsedGlobalSet &UGS1, const UsedGlobalSet &UGS2) {
390 return UGS1.Globals.count() * UGS1.UsageCount <
391 UGS2.Globals.count() * UGS2.UsageCount;
392 });
393
394 // We can choose to merge all globals together, but ignore globals never used
395 // with another global. This catches the obviously non-profitable cases of
396 // having a single global, but is aggressive enough for any other case.
397 if (GlobalMergeIgnoreSingleUse) {
398 BitVector AllGlobals(Globals.size());
399 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
400 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
401 if (UGS.UsageCount == 0)
402 continue;
403 if (UGS.Globals.count() > 1)
404 AllGlobals |= UGS.Globals;
405 }
406 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
407 }
408
409 // Starting from the sets with the best (=biggest) profitability, find a
410 // good combination.
411 // The ideal (and expensive) solution can only be found by trying all
412 // combinations, looking for the one with the best profitability.
413 // Don't be smart about it, and just pick the first compatible combination,
414 // starting with the sets with the best profitability.
415 BitVector PickedGlobals(Globals.size());
416 bool Changed = false;
417
418 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
419 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
420 if (UGS.UsageCount == 0)
421 continue;
422 if (PickedGlobals.anyCommon(UGS.Globals))
423 continue;
424 PickedGlobals |= UGS.Globals;
425 // If the set only contains one global, there's no point in merging.
426 // Ignore the global for inclusion in other sets though, so keep it in
427 // PickedGlobals.
428 if (UGS.Globals.count() < 2)
429 continue;
430 Changed |= doMerge(Globals, UGS.Globals, M, isConst, AddrSpace);
431 }
432
433 return Changed;
434}
435
David Blaikie47bf5c02015-08-21 22:19:06 +0000436bool GlobalMerge::doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000437 const BitVector &GlobalSet, Module &M, bool isConst,
438 unsigned AddrSpace) const {
David Blaikie47bf5c02015-08-21 22:19:06 +0000439 assert(Globals.size() > 1);
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000440
Chris Lattner229907c2011-07-18 04:54:35 +0000441 Type *Int32Ty = Type::getInt32Ty(M.getContext());
Eli Friedman0887cf92018-07-25 20:58:01 +0000442 Type *Int8Ty = Type::getInt8Ty(M.getContext());
Mehdi Aminif6727b02015-07-07 18:49:25 +0000443 auto &DL = M.getDataLayout();
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000444
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000445 LLVM_DEBUG(dbgs() << " Trying to merge set, starts with #"
446 << GlobalSet.find_first() << "\n");
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000447
Haicheng Wu69ba0612018-05-19 18:00:02 +0000448 bool Changed = false;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000449 ssize_t i = GlobalSet.find_first();
450 while (i != -1) {
451 ssize_t j = 0;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000452 uint64_t MergedSize = 0;
Jay Foadb804a2b2011-07-12 14:06:48 +0000453 std::vector<Type*> Tys;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000454 std::vector<Constant*> Inits;
Eli Friedman0887cf92018-07-25 20:58:01 +0000455 std::vector<unsigned> StructIdxs;
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000456
Adrian Prantl554fd992016-11-11 17:50:09 +0000457 bool HasExternal = false;
Adrian Prantl622bddb2016-11-11 22:09:25 +0000458 StringRef FirstExternalName;
Eli Friedman0887cf92018-07-25 20:58:01 +0000459 unsigned MaxAlign = 1;
460 unsigned CurIdx = 0;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000461 for (j = i; j != -1; j = GlobalSet.find_next(j)) {
David Blaikie9ed57a92015-08-21 22:00:44 +0000462 Type *Ty = Globals[j]->getValueType();
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000463
Eli Friedman37696392018-08-29 23:46:26 +0000464 // Make sure we use the same alignment AsmPrinter would use.
Eli Friedman0887cf92018-07-25 20:58:01 +0000465 unsigned Align = DL.getPreferredAlignment(Globals[j]);
466 unsigned Padding = alignTo(MergedSize, Align) - MergedSize;
467 MergedSize += Padding;
Mehdi Aminif6727b02015-07-07 18:49:25 +0000468 MergedSize += DL.getTypeAllocSize(Ty);
Bob Wilson4c8ab192010-11-17 21:25:36 +0000469 if (MergedSize > MaxOffset) {
470 break;
471 }
Eli Friedman0887cf92018-07-25 20:58:01 +0000472 if (Padding) {
473 Tys.push_back(ArrayType::get(Int8Ty, Padding));
474 Inits.push_back(ConstantAggregateZero::get(Tys.back()));
475 ++CurIdx;
476 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000477 Tys.push_back(Ty);
478 Inits.push_back(Globals[j]->getInitializer());
Eli Friedman0887cf92018-07-25 20:58:01 +0000479 StructIdxs.push_back(CurIdx++);
480
481 MaxAlign = std::max(MaxAlign, Align);
Adrian Prantl554fd992016-11-11 17:50:09 +0000482
483 if (Globals[j]->hasExternalLinkage() && !HasExternal) {
484 HasExternal = true;
Adrian Prantl622bddb2016-11-11 22:09:25 +0000485 FirstExternalName = Globals[j]->getName();
Adrian Prantl554fd992016-11-11 17:50:09 +0000486 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000487 }
488
Haicheng Wu69ba0612018-05-19 18:00:02 +0000489 // Exit early if there is only one global to merge.
490 if (Tys.size() < 2) {
491 i = j;
492 continue;
493 }
494
Adrian Prantl554fd992016-11-11 17:50:09 +0000495 // If merged variables doesn't have external linkage, we needn't to expose
496 // the symbol after merging.
497 GlobalValue::LinkageTypes Linkage = HasExternal
498 ? GlobalValue::ExternalLinkage
499 : GlobalValue::InternalLinkage;
Eli Friedman0887cf92018-07-25 20:58:01 +0000500 // Use a packed struct so we can control alignment.
501 StructType *MergedTy = StructType::get(M.getContext(), Tys, true);
Chris Lattnere40007a2010-09-05 21:18:45 +0000502 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000503
Adrian Prantl6cb849e2016-11-11 21:48:09 +0000504 // On Darwin external linkage needs to be preserved, otherwise
505 // dsymutil cannot preserve the debug info for the merged
506 // variables. If they have external linkage, use the symbol name
507 // of the first variable merged as the suffix of global symbol
508 // name. This avoids a link-time naming conflict for the
509 // _MergedGlobals symbols.
Adrian Prantl554fd992016-11-11 17:50:09 +0000510 Twine MergedName =
511 (IsMachO && HasExternal)
Adrian Prantl622bddb2016-11-11 22:09:25 +0000512 ? "_MergedGlobals_" + FirstExternalName
Adrian Prantl554fd992016-11-11 17:50:09 +0000513 : "_MergedGlobals";
514 auto MergedLinkage = IsMachO ? Linkage : GlobalValue::PrivateLinkage;
515 auto *MergedGV = new GlobalVariable(
516 M, MergedTy, isConst, MergedLinkage, MergedInit, MergedName, nullptr,
517 GlobalVariable::NotThreadLocal, AddrSpace);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000518
Eli Friedman0887cf92018-07-25 20:58:01 +0000519 MergedGV->setAlignment(MaxAlign);
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000520 MergedGV->setSection(Globals[i]->getSection());
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000521
Eli Friedman0887cf92018-07-25 20:58:01 +0000522 const StructLayout *MergedLayout = DL.getStructLayout(MergedTy);
David Blaikie6614d8d2015-09-14 20:29:26 +0000523 for (ssize_t k = i, idx = 0; k != j; k = GlobalSet.find_next(k), ++idx) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000524 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage();
525 std::string Name = Globals[k]->getName();
Martin Storsjo9ca8b572018-02-12 21:14:21 +0000526 GlobalValue::DLLStorageClassTypes DLLStorage =
527 Globals[k]->getDLLStorageClass();
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000528
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000529 // Copy metadata while adjusting any debug info metadata by the original
530 // global's offset within the merged global.
Eli Friedman0887cf92018-07-25 20:58:01 +0000531 MergedGV->copyMetadata(Globals[k],
532 MergedLayout->getElementOffset(StructIdxs[idx]));
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000533
Chris Lattnere40007a2010-09-05 21:18:45 +0000534 Constant *Idx[2] = {
Eli Friedman0887cf92018-07-25 20:58:01 +0000535 ConstantInt::get(Int32Ty, 0),
536 ConstantInt::get(Int32Ty, StructIdxs[idx]),
Chris Lattnere40007a2010-09-05 21:18:45 +0000537 };
David Blaikie4a2e73b2015-04-02 18:55:32 +0000538 Constant *GEP =
539 ConstantExpr::getInBoundsGetElementPtr(MergedTy, MergedGV, Idx);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000540 Globals[k]->replaceAllUsesWith(GEP);
541 Globals[k]->eraseFromParent();
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000542
John Brawn0bef27d2015-08-12 13:36:48 +0000543 // When the linkage is not internal we must emit an alias for the original
544 // variable name as it may be accessed from another object. On non-Mach-O
545 // we can also emit an alias for internal linkage as it's safe to do so.
546 // It's not safe on Mach-O as the alias (and thus the portion of the
547 // MergedGlobals variable) may be dead stripped at link time.
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000548 if (Linkage != GlobalValue::InternalLinkage || !IsMachO) {
Eli Friedman0887cf92018-07-25 20:58:01 +0000549 GlobalAlias *GA = GlobalAlias::create(Tys[StructIdxs[idx]], AddrSpace,
550 Linkage, Name, GEP, &M);
Martin Storsjo9ca8b572018-02-12 21:14:21 +0000551 GA->setDLLStorageClass(DLLStorage);
John Brawn0bef27d2015-08-12 13:36:48 +0000552 }
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000553
Devang Patel76c85632011-10-17 17:17:43 +0000554 NumMerged++;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000555 }
Haicheng Wu69ba0612018-05-19 18:00:02 +0000556 Changed = true;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000557 i = j;
558 }
559
Haicheng Wu69ba0612018-05-19 18:00:02 +0000560 return Changed;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000561}
562
Eli Friedmand6baff62018-07-25 22:03:35 +0000563void GlobalMerge::collectUsedGlobalVariables(Module &M, StringRef Name) {
Quentin Colombet8fc34092013-03-18 22:30:07 +0000564 // Extract global variables from llvm.used array
Eli Friedmand6baff62018-07-25 22:03:35 +0000565 const GlobalVariable *GV = M.getGlobalVariable(Name);
Quentin Colombet8fc34092013-03-18 22:30:07 +0000566 if (!GV || !GV->hasInitializer()) return;
567
568 // Should be an array of 'i8*'.
Rafael Espindola74f2e462013-04-22 14:58:02 +0000569 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());
570
Quentin Colombet8fc34092013-03-18 22:30:07 +0000571 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
572 if (const GlobalVariable *G =
573 dyn_cast<GlobalVariable>(InitList->getOperand(i)->stripPointerCasts()))
574 MustKeepGlobalVariables.insert(G);
575}
576
577void GlobalMerge::setMustKeepGlobalVariables(Module &M) {
Eli Friedmand6baff62018-07-25 22:03:35 +0000578 collectUsedGlobalVariables(M, "llvm.used");
579 collectUsedGlobalVariables(M, "llvm.compiler.used");
Quentin Colombet8fc34092013-03-18 22:30:07 +0000580
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000581 for (Function &F : M) {
582 for (BasicBlock &BB : F) {
583 Instruction *Pad = BB.getFirstNonPHI();
584 if (!Pad->isEHPad())
585 continue;
Quentin Colombet8fc34092013-03-18 22:30:07 +0000586
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000587 // Keep globals used by landingpads and catchpads.
588 for (const Use &U : Pad->operands()) {
Quentin Colombet8fc34092013-03-18 22:30:07 +0000589 if (const GlobalVariable *GV =
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000590 dyn_cast<GlobalVariable>(U->stripPointerCasts()))
Quentin Colombet8fc34092013-03-18 22:30:07 +0000591 MustKeepGlobalVariables.insert(GV);
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000592 }
Quentin Colombet8fc34092013-03-18 22:30:07 +0000593 }
594 }
595}
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000596
Devang Patel76c85632011-10-17 17:17:43 +0000597bool GlobalMerge::doInitialization(Module &M) {
Tim Northoverf804c172014-02-18 11:17:29 +0000598 if (!EnableGlobalMerge)
599 return false;
600
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000601 IsMachO = Triple(M.getTargetTriple()).isOSBinFormatMachO();
602
Mehdi Aminif6727b02015-07-07 18:49:25 +0000603 auto &DL = M.getDataLayout();
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000604 DenseMap<std::pair<unsigned, StringRef>, SmallVector<GlobalVariable *, 16>>
605 Globals, ConstGlobals, BSSGlobals;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000606 bool Changed = false;
Quentin Colombet8fc34092013-03-18 22:30:07 +0000607 setMustKeepGlobalVariables(M);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000608
609 // Grab all non-const globals.
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000610 for (auto &GV : M.globals()) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000611 // Merge is safe for "normal" internal or external globals only
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000612 if (GV.isDeclaration() || GV.isThreadLocal() || GV.hasImplicitSection())
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000613 continue;
614
John Brawn66716162017-06-02 10:24:14 +0000615 // It's not safe to merge globals that may be preempted
616 if (TM && !TM->shouldAssumeDSOLocal(M, &GV))
617 continue;
618
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000619 if (!(MergeExternalGlobals && GV.hasExternalLinkage()) &&
620 !GV.hasInternalLinkage())
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000621 continue;
622
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000623 PointerType *PT = dyn_cast<PointerType>(GV.getType());
Silviu Barangaa055aab2013-01-07 12:31:25 +0000624 assert(PT && "Global variable is not a pointer!");
625
626 unsigned AddressSpace = PT->getAddressSpace();
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000627 StringRef Section = GV.getSection();
Silviu Barangaa055aab2013-01-07 12:31:25 +0000628
Anton Korobeynikov6bcea062010-07-26 18:45:39 +0000629 // Ignore all 'special' globals.
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000630 if (GV.getName().startswith("llvm.") ||
631 GV.getName().startswith(".llvm."))
Anton Korobeynikov6bcea062010-07-26 18:45:39 +0000632 continue;
633
Quentin Colombet8fc34092013-03-18 22:30:07 +0000634 // Ignore all "required" globals:
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000635 if (isMustKeepGlobalVariable(&GV))
Quentin Colombet8fc34092013-03-18 22:30:07 +0000636 continue;
637
Eli Friedman0887cf92018-07-25 20:58:01 +0000638 Type *Ty = GV.getValueType();
Mehdi Aminif6727b02015-07-07 18:49:25 +0000639 if (DL.getTypeAllocSize(Ty) < MaxOffset) {
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000640 if (TM &&
Huihui Zhang2f410652018-08-30 00:49:50 +0000641 TargetLoweringObjectFile::getKindForGlobal(&GV, *TM).isBSS())
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000642 BSSGlobals[{AddressSpace, Section}].push_back(&GV);
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000643 else if (GV.isConstant())
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000644 ConstGlobals[{AddressSpace, Section}].push_back(&GV);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000645 else
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000646 Globals[{AddressSpace, Section}].push_back(&GV);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000647 }
648 }
649
David Blaikie47bf5c02015-08-21 22:19:06 +0000650 for (auto &P : Globals)
651 if (P.second.size() > 1)
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000652 Changed |= doMerge(P.second, M, false, P.first.first);
Silviu Barangaa055aab2013-01-07 12:31:25 +0000653
David Blaikie47bf5c02015-08-21 22:19:06 +0000654 for (auto &P : BSSGlobals)
655 if (P.second.size() > 1)
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000656 Changed |= doMerge(P.second, M, false, P.first.first);
Bob Wilson881b45c2010-11-17 21:25:39 +0000657
David Blaikied4860002015-08-25 17:01:36 +0000658 if (EnableGlobalMergeOnConst)
659 for (auto &P : ConstGlobals)
660 if (P.second.size() > 1)
Eli Friedman1ba5e9a2018-08-02 23:54:16 +0000661 Changed |= doMerge(P.second, M, true, P.first.first);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000662
663 return Changed;
664}
665
Devang Patel76c85632011-10-17 17:17:43 +0000666bool GlobalMerge::runOnFunction(Function &F) {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000667 return false;
668}
669
Quentin Colombet2393cb92013-03-19 21:46:49 +0000670bool GlobalMerge::doFinalization(Module &M) {
671 MustKeepGlobalVariables.clear();
672 return false;
673}
674
Ahmed Bougacha82076412015-06-04 20:39:23 +0000675Pass *llvm::createGlobalMergePass(const TargetMachine *TM, unsigned Offset,
John Brawn8b954242015-08-03 12:08:41 +0000676 bool OnlyOptimizeForSize,
677 bool MergeExternalByDefault) {
678 bool MergeExternal = (EnableGlobalMergeOnExternal == cl::BOU_UNSET) ?
679 MergeExternalByDefault : (EnableGlobalMergeOnExternal == cl::BOU_TRUE);
680 return new GlobalMerge(TM, Offset, OnlyOptimizeForSize, MergeExternal);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000681}