blob: c6ca49ce24d7323c99c9ba1c3eb69aa23b487e72 [file] [log] [blame]
Devang Patel76c85632011-10-17 17:17:43 +00001//===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
Anton Korobeynikov19edda02010-07-24 21:52:08 +00002//
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// 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.
58//
59// We use heuristics to discover the best global grouping we can (cf cl::opts).
Eric Christopherbf86fd32010-09-28 04:18:29 +000060// ===---------------------------------------------------------------------===//
Anton Korobeynikov19edda02010-07-24 21:52:08 +000061
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000062#include "llvm/ADT/DenseMap.h"
63#include "llvm/ADT/SmallBitVector.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000064#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000065#include "llvm/ADT/Statistic.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000066#include "llvm/CodeGen/Passes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000067#include "llvm/IR/Attributes.h"
68#include "llvm/IR/Constants.h"
69#include "llvm/IR/DataLayout.h"
70#include "llvm/IR/DerivedTypes.h"
71#include "llvm/IR/Function.h"
72#include "llvm/IR/GlobalVariable.h"
73#include "llvm/IR/Instructions.h"
74#include "llvm/IR/Intrinsics.h"
75#include "llvm/IR/Module.h"
Anton Korobeynikov19edda02010-07-24 21:52:08 +000076#include "llvm/Pass.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000077#include "llvm/Support/CommandLine.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000078#include "llvm/Support/Debug.h"
79#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov19edda02010-07-24 21:52:08 +000080#include "llvm/Target/TargetLowering.h"
Bob Wilson881b45c2010-11-17 21:25:39 +000081#include "llvm/Target/TargetLoweringObjectFile.h"
Eric Christopherd9134482014-08-04 21:25:23 +000082#include "llvm/Target/TargetSubtargetInfo.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000083#include <algorithm>
Anton Korobeynikov19edda02010-07-24 21:52:08 +000084using namespace llvm;
85
Chandler Carruth964daaa2014-04-22 02:55:47 +000086#define DEBUG_TYPE "global-merge"
87
Ahmed Bougachab96444e2015-04-11 00:06:36 +000088// FIXME: This is only useful as a last-resort way to disable the pass.
Quentin Colombet8fc34092013-03-18 22:30:07 +000089static cl::opt<bool>
Jiangning Liu3e5b8552014-06-11 06:35:26 +000090EnableGlobalMerge("enable-global-merge", cl::Hidden,
Ahmed Bougachab96444e2015-04-11 00:06:36 +000091 cl::desc("Enable the global merge pass"),
Tim Northoverf804c172014-02-18 11:17:29 +000092 cl::init(true));
93
Peter Collingbournefe12d0e2016-05-19 04:38:56 +000094static cl::opt<unsigned>
95GlobalMergeMaxOffset("global-merge-max-offset", cl::Hidden,
96 cl::desc("Set maximum offset for global merge pass"),
97 cl::init(0));
98
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000099static cl::opt<bool> GlobalMergeGroupByUse(
100 "global-merge-group-by-use", cl::Hidden,
101 cl::desc("Improve global merge pass to look at uses"), cl::init(true));
102
103static cl::opt<bool> GlobalMergeIgnoreSingleUse(
104 "global-merge-ignore-single-use", cl::Hidden,
105 cl::desc("Improve global merge pass to ignore globals only used alone"),
106 cl::init(true));
107
Tim Northoverf804c172014-02-18 11:17:29 +0000108static cl::opt<bool>
Quentin Colombet8fc34092013-03-18 22:30:07 +0000109EnableGlobalMergeOnConst("global-merge-on-const", cl::Hidden,
Jakub Staszak6b36db02013-07-22 21:11:30 +0000110 cl::desc("Enable global merge pass on constants"),
111 cl::init(false));
Quentin Colombet8fc34092013-03-18 22:30:07 +0000112
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000113// FIXME: this could be a transitional option, and we probably need to remove
114// it if only we are sure this optimization could always benefit all targets.
John Brawn8b954242015-08-03 12:08:41 +0000115static cl::opt<cl::boolOrDefault>
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000116EnableGlobalMergeOnExternal("global-merge-on-external", cl::Hidden,
John Brawn8b954242015-08-03 12:08:41 +0000117 cl::desc("Enable global merge pass on external linkage"));
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000118
Eric Christophered47b222015-02-23 19:28:45 +0000119STATISTIC(NumMerged, "Number of globals merged");
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000120namespace {
Devang Patel76c85632011-10-17 17:17:43 +0000121 class GlobalMerge : public FunctionPass {
Bill Wendling7a639ea2013-06-19 21:07:11 +0000122 const TargetMachine *TM;
Eric Christophered47b222015-02-23 19:28:45 +0000123 // FIXME: Infer the maximum possible offset depending on the actual users
124 // (these max offsets are different for the users inside Thumb or ARM
125 // functions), see the code that passes in the offset in the ARM backend
126 // for more information.
127 unsigned MaxOffset;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000128
Ahmed Bougacha82076412015-06-04 20:39:23 +0000129 /// Whether we should try to optimize for size only.
130 /// Currently, this applies a dead simple heuristic: only consider globals
131 /// used in minsize functions for merging.
132 /// FIXME: This could learn about optsize, and be used in the cost model.
133 bool OnlyOptimizeForSize;
134
John Brawn8b954242015-08-03 12:08:41 +0000135 /// Whether we should merge global variables that have external linkage.
136 bool MergeExternalGlobals;
137
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000138 bool IsMachO;
139
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000140 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000141 Module &M, bool isConst, unsigned AddrSpace) const;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000142 /// \brief Merge everything in \p Globals for which the corresponding bit
143 /// in \p GlobalSet is set.
David Blaikie47bf5c02015-08-21 22:19:06 +0000144 bool doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000145 const BitVector &GlobalSet, Module &M, bool isConst,
146 unsigned AddrSpace) const;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000147
Quentin Colombet8fc34092013-03-18 22:30:07 +0000148 /// \brief Check if the given variable has been identified as must keep
149 /// \pre setMustKeepGlobalVariables must have been called on the Module that
150 /// contains GV
151 bool isMustKeepGlobalVariable(const GlobalVariable *GV) const {
152 return MustKeepGlobalVariables.count(GV);
153 }
154
155 /// Collect every variables marked as "used" or used in a landing pad
156 /// instruction for this Module.
157 void setMustKeepGlobalVariables(Module &M);
158
159 /// Collect every variables marked as "used"
160 void collectUsedGlobalVariables(Module &M);
161
Quentin Colombet2393cb92013-03-19 21:46:49 +0000162 /// Keep track of the GlobalVariable that must not be merged away
Quentin Colombet8fc34092013-03-18 22:30:07 +0000163 SmallPtrSet<const GlobalVariable *, 16> MustKeepGlobalVariables;
164
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000165 public:
166 static char ID; // Pass identification, replacement for typeid.
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000167 explicit GlobalMerge()
168 : FunctionPass(ID), TM(nullptr), MaxOffset(GlobalMergeMaxOffset),
169 OnlyOptimizeForSize(false), MergeExternalGlobals(false) {
170 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
171 }
172
173 explicit GlobalMerge(const TargetMachine *TM, unsigned MaximalOffset,
174 bool OnlyOptimizeForSize, bool MergeExternalGlobals)
Mehdi Aminif6727b02015-07-07 18:49:25 +0000175 : FunctionPass(ID), TM(TM), MaxOffset(MaximalOffset),
John Brawn8b954242015-08-03 12:08:41 +0000176 OnlyOptimizeForSize(OnlyOptimizeForSize),
177 MergeExternalGlobals(MergeExternalGlobals) {
Devang Patel76c85632011-10-17 17:17:43 +0000178 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
179 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000180
Craig Topper3e4c6972014-03-05 09:10:37 +0000181 bool doInitialization(Module &M) override;
182 bool runOnFunction(Function &F) override;
183 bool doFinalization(Module &M) override;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000184
Mehdi Amini117296c2016-10-01 02:56:57 +0000185 StringRef getPassName() const override { return "Merge internal globals"; }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000186
Craig Topper3e4c6972014-03-05 09:10:37 +0000187 void getAnalysisUsage(AnalysisUsage &AU) const override {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000188 AU.setPreservesCFG();
189 FunctionPass::getAnalysisUsage(AU);
190 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000191 };
192} // end anonymous namespace
193
Devang Patel76c85632011-10-17 17:17:43 +0000194char GlobalMerge::ID = 0;
Matthias Braun1527baa2017-05-25 21:26:32 +0000195INITIALIZE_PASS(GlobalMerge, DEBUG_TYPE, "Merge global variables", false, false)
Devang Patel76c85632011-10-17 17:17:43 +0000196
197bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000198 Module &M, bool isConst, unsigned AddrSpace) const {
Mehdi Aminif6727b02015-07-07 18:49:25 +0000199 auto &DL = M.getDataLayout();
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000200 // FIXME: Find better heuristics
David Blaikie9ed57a92015-08-21 22:00:44 +0000201 std::stable_sort(Globals.begin(), Globals.end(),
202 [&DL](const GlobalVariable *GV1, const GlobalVariable *GV2) {
203 return DL.getTypeAllocSize(GV1->getValueType()) <
204 DL.getTypeAllocSize(GV2->getValueType());
205 });
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000206
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000207 // If we want to just blindly group all globals together, do so.
208 if (!GlobalMergeGroupByUse) {
209 BitVector AllGlobals(Globals.size());
210 AllGlobals.set();
211 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
212 }
213
214 // If we want to be smarter, look at all uses of each global, to try to
215 // discover all sets of globals used together, and how many times each of
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000216 // these sets occurred.
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000217 //
218 // Keep this reasonably efficient, by having an append-only list of all sets
219 // discovered so far (UsedGlobalSet), and mapping each "together-ness" unit of
220 // code (currently, a Function) to the set of globals seen so far that are
221 // used together in that unit (GlobalUsesByFunction).
222 //
223 // When we look at the Nth global, we now that any new set is either:
224 // - the singleton set {N}, containing this global only, or
225 // - the union of {N} and a previously-discovered set, containing some
226 // combination of the previous N-1 globals.
227 // Using that knowledge, when looking at the Nth global, we can keep:
228 // - a reference to the singleton set {N} (CurGVOnlySetIdx)
229 // - a list mapping each previous set to its union with {N} (EncounteredUGS),
230 // if it actually occurs.
231
232 // We keep track of the sets of globals used together "close enough".
233 struct UsedGlobalSet {
234 UsedGlobalSet(size_t Size) : Globals(Size), UsageCount(1) {}
235 BitVector Globals;
236 unsigned UsageCount;
237 };
238
239 // Each set is unique in UsedGlobalSets.
240 std::vector<UsedGlobalSet> UsedGlobalSets;
241
242 // Avoid repeating the create-global-set pattern.
243 auto CreateGlobalSet = [&]() -> UsedGlobalSet & {
244 UsedGlobalSets.emplace_back(Globals.size());
245 return UsedGlobalSets.back();
246 };
247
248 // The first set is the empty set.
249 CreateGlobalSet().UsageCount = 0;
250
251 // We define "close enough" to be "in the same function".
252 // FIXME: Grouping uses by function is way too aggressive, so we should have
253 // a better metric for distance between uses.
254 // The obvious alternative would be to group by BasicBlock, but that's in
255 // turn too conservative..
256 // Anything in between wouldn't be trivial to compute, so just stick with
257 // per-function grouping.
258
259 // The value type is an index into UsedGlobalSets.
260 // The default (0) conveniently points to the empty set.
261 DenseMap<Function *, size_t /*UsedGlobalSetIdx*/> GlobalUsesByFunction;
262
263 // Now, look at each merge-eligible global in turn.
264
265 // Keep track of the sets we already encountered to which we added the
266 // current global.
267 // Each element matches the same-index element in UsedGlobalSets.
268 // This lets us efficiently tell whether a set has already been expanded to
269 // include the current global.
270 std::vector<size_t> EncounteredUGS;
271
272 for (size_t GI = 0, GE = Globals.size(); GI != GE; ++GI) {
273 GlobalVariable *GV = Globals[GI];
274
275 // Reset the encountered sets for this global...
276 std::fill(EncounteredUGS.begin(), EncounteredUGS.end(), 0);
277 // ...and grow it in case we created new sets for the previous global.
278 EncounteredUGS.resize(UsedGlobalSets.size());
279
280 // We might need to create a set that only consists of the current global.
281 // Keep track of its index into UsedGlobalSets.
282 size_t CurGVOnlySetIdx = 0;
283
284 // For each global, look at all its Uses.
285 for (auto &U : GV->uses()) {
286 // This Use might be a ConstantExpr. We're interested in Instruction
287 // users, so look through ConstantExpr...
288 Use *UI, *UE;
289 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) {
Oliver Stannard8379e292015-06-08 16:55:31 +0000290 if (CE->use_empty())
291 continue;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000292 UI = &*CE->use_begin();
293 UE = nullptr;
294 } else if (isa<Instruction>(U.getUser())) {
295 UI = &U;
296 UE = UI->getNext();
297 } else {
298 continue;
299 }
300
301 // ...to iterate on all the instruction users of the global.
302 // Note that we iterate on Uses and not on Users to be able to getNext().
303 for (; UI != UE; UI = UI->getNext()) {
304 Instruction *I = dyn_cast<Instruction>(UI->getUser());
305 if (!I)
306 continue;
307
308 Function *ParentFn = I->getParent()->getParent();
Ahmed Bougacha82076412015-06-04 20:39:23 +0000309
310 // If we're only optimizing for size, ignore non-minsize functions.
Sanjay Patel1cd6d882015-08-18 16:44:23 +0000311 if (OnlyOptimizeForSize && !ParentFn->optForMinSize())
Ahmed Bougacha82076412015-06-04 20:39:23 +0000312 continue;
313
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000314 size_t UGSIdx = GlobalUsesByFunction[ParentFn];
315
316 // If this is the first global the basic block uses, map it to the set
317 // consisting of this global only.
318 if (!UGSIdx) {
319 // If that set doesn't exist yet, create it.
320 if (!CurGVOnlySetIdx) {
321 CurGVOnlySetIdx = UsedGlobalSets.size();
322 CreateGlobalSet().Globals.set(GI);
323 } else {
324 ++UsedGlobalSets[CurGVOnlySetIdx].UsageCount;
325 }
326
327 GlobalUsesByFunction[ParentFn] = CurGVOnlySetIdx;
328 continue;
329 }
330
331 // If we already encountered this BB, just increment the counter.
332 if (UsedGlobalSets[UGSIdx].Globals.test(GI)) {
333 ++UsedGlobalSets[UGSIdx].UsageCount;
334 continue;
335 }
336
337 // If not, the previous set wasn't actually used in this function.
338 --UsedGlobalSets[UGSIdx].UsageCount;
339
340 // If we already expanded the previous set to include this global, just
341 // reuse that expanded set.
342 if (size_t ExpandedIdx = EncounteredUGS[UGSIdx]) {
343 ++UsedGlobalSets[ExpandedIdx].UsageCount;
344 GlobalUsesByFunction[ParentFn] = ExpandedIdx;
345 continue;
346 }
347
348 // If not, create a new set consisting of the union of the previous set
349 // and this global. Mark it as encountered, so we can reuse it later.
350 GlobalUsesByFunction[ParentFn] = EncounteredUGS[UGSIdx] =
351 UsedGlobalSets.size();
352
353 UsedGlobalSet &NewUGS = CreateGlobalSet();
354 NewUGS.Globals.set(GI);
355 NewUGS.Globals |= UsedGlobalSets[UGSIdx].Globals;
356 }
357 }
358 }
359
360 // Now we found a bunch of sets of globals used together. We accumulated
361 // the number of times we encountered the sets (i.e., the number of blocks
362 // that use that exact set of globals).
363 //
364 // Multiply that by the size of the set to give us a crude profitability
365 // metric.
366 std::sort(UsedGlobalSets.begin(), UsedGlobalSets.end(),
367 [](const UsedGlobalSet &UGS1, const UsedGlobalSet &UGS2) {
368 return UGS1.Globals.count() * UGS1.UsageCount <
369 UGS2.Globals.count() * UGS2.UsageCount;
370 });
371
372 // We can choose to merge all globals together, but ignore globals never used
373 // with another global. This catches the obviously non-profitable cases of
374 // having a single global, but is aggressive enough for any other case.
375 if (GlobalMergeIgnoreSingleUse) {
376 BitVector AllGlobals(Globals.size());
377 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
378 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
379 if (UGS.UsageCount == 0)
380 continue;
381 if (UGS.Globals.count() > 1)
382 AllGlobals |= UGS.Globals;
383 }
384 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
385 }
386
387 // Starting from the sets with the best (=biggest) profitability, find a
388 // good combination.
389 // The ideal (and expensive) solution can only be found by trying all
390 // combinations, looking for the one with the best profitability.
391 // Don't be smart about it, and just pick the first compatible combination,
392 // starting with the sets with the best profitability.
393 BitVector PickedGlobals(Globals.size());
394 bool Changed = false;
395
396 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
397 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
398 if (UGS.UsageCount == 0)
399 continue;
400 if (PickedGlobals.anyCommon(UGS.Globals))
401 continue;
402 PickedGlobals |= UGS.Globals;
403 // If the set only contains one global, there's no point in merging.
404 // Ignore the global for inclusion in other sets though, so keep it in
405 // PickedGlobals.
406 if (UGS.Globals.count() < 2)
407 continue;
408 Changed |= doMerge(Globals, UGS.Globals, M, isConst, AddrSpace);
409 }
410
411 return Changed;
412}
413
David Blaikie47bf5c02015-08-21 22:19:06 +0000414bool GlobalMerge::doMerge(const SmallVectorImpl<GlobalVariable *> &Globals,
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000415 const BitVector &GlobalSet, Module &M, bool isConst,
416 unsigned AddrSpace) const {
David Blaikie47bf5c02015-08-21 22:19:06 +0000417 assert(Globals.size() > 1);
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000418
Chris Lattner229907c2011-07-18 04:54:35 +0000419 Type *Int32Ty = Type::getInt32Ty(M.getContext());
Mehdi Aminif6727b02015-07-07 18:49:25 +0000420 auto &DL = M.getDataLayout();
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000421
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000422 DEBUG(dbgs() << " Trying to merge set, starts with #"
423 << GlobalSet.find_first() << "\n");
424
425 ssize_t i = GlobalSet.find_first();
426 while (i != -1) {
427 ssize_t j = 0;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000428 uint64_t MergedSize = 0;
Jay Foadb804a2b2011-07-12 14:06:48 +0000429 std::vector<Type*> Tys;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000430 std::vector<Constant*> Inits;
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000431
Adrian Prantl554fd992016-11-11 17:50:09 +0000432 bool HasExternal = false;
Adrian Prantl622bddb2016-11-11 22:09:25 +0000433 StringRef FirstExternalName;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000434 for (j = i; j != -1; j = GlobalSet.find_next(j)) {
David Blaikie9ed57a92015-08-21 22:00:44 +0000435 Type *Ty = Globals[j]->getValueType();
Mehdi Aminif6727b02015-07-07 18:49:25 +0000436 MergedSize += DL.getTypeAllocSize(Ty);
Bob Wilson4c8ab192010-11-17 21:25:36 +0000437 if (MergedSize > MaxOffset) {
438 break;
439 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000440 Tys.push_back(Ty);
441 Inits.push_back(Globals[j]->getInitializer());
Adrian Prantl554fd992016-11-11 17:50:09 +0000442
443 if (Globals[j]->hasExternalLinkage() && !HasExternal) {
444 HasExternal = true;
Adrian Prantl622bddb2016-11-11 22:09:25 +0000445 FirstExternalName = Globals[j]->getName();
Adrian Prantl554fd992016-11-11 17:50:09 +0000446 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000447 }
448
Adrian Prantl554fd992016-11-11 17:50:09 +0000449 // If merged variables doesn't have external linkage, we needn't to expose
450 // the symbol after merging.
451 GlobalValue::LinkageTypes Linkage = HasExternal
452 ? GlobalValue::ExternalLinkage
453 : GlobalValue::InternalLinkage;
Chris Lattnere40007a2010-09-05 21:18:45 +0000454 StructType *MergedTy = StructType::get(M.getContext(), Tys);
455 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000456
Adrian Prantl6cb849e2016-11-11 21:48:09 +0000457 // On Darwin external linkage needs to be preserved, otherwise
458 // dsymutil cannot preserve the debug info for the merged
459 // variables. If they have external linkage, use the symbol name
460 // of the first variable merged as the suffix of global symbol
461 // name. This avoids a link-time naming conflict for the
462 // _MergedGlobals symbols.
Adrian Prantl554fd992016-11-11 17:50:09 +0000463 Twine MergedName =
464 (IsMachO && HasExternal)
Adrian Prantl622bddb2016-11-11 22:09:25 +0000465 ? "_MergedGlobals_" + FirstExternalName
Adrian Prantl554fd992016-11-11 17:50:09 +0000466 : "_MergedGlobals";
467 auto MergedLinkage = IsMachO ? Linkage : GlobalValue::PrivateLinkage;
468 auto *MergedGV = new GlobalVariable(
469 M, MergedTy, isConst, MergedLinkage, MergedInit, MergedName, nullptr,
470 GlobalVariable::NotThreadLocal, AddrSpace);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000471
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000472 const StructLayout *MergedLayout = DL.getStructLayout(MergedTy);
473
David Blaikie6614d8d2015-09-14 20:29:26 +0000474 for (ssize_t k = i, idx = 0; k != j; k = GlobalSet.find_next(k), ++idx) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000475 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage();
476 std::string Name = Globals[k]->getName();
477
Peter Collingbourned4135bb2016-09-13 01:12:59 +0000478 // Copy metadata while adjusting any debug info metadata by the original
479 // global's offset within the merged global.
480 MergedGV->copyMetadata(Globals[k], MergedLayout->getElementOffset(idx));
481
Chris Lattnere40007a2010-09-05 21:18:45 +0000482 Constant *Idx[2] = {
483 ConstantInt::get(Int32Ty, 0),
David Blaikie6614d8d2015-09-14 20:29:26 +0000484 ConstantInt::get(Int32Ty, idx),
Chris Lattnere40007a2010-09-05 21:18:45 +0000485 };
David Blaikie4a2e73b2015-04-02 18:55:32 +0000486 Constant *GEP =
487 ConstantExpr::getInBoundsGetElementPtr(MergedTy, MergedGV, Idx);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000488 Globals[k]->replaceAllUsesWith(GEP);
489 Globals[k]->eraseFromParent();
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000490
John Brawn0bef27d2015-08-12 13:36:48 +0000491 // When the linkage is not internal we must emit an alias for the original
492 // variable name as it may be accessed from another object. On non-Mach-O
493 // we can also emit an alias for internal linkage as it's safe to do so.
494 // It's not safe on Mach-O as the alias (and thus the portion of the
495 // MergedGlobals variable) may be dead stripped at link time.
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000496 if (Linkage != GlobalValue::InternalLinkage || !IsMachO) {
David Blaikie6614d8d2015-09-14 20:29:26 +0000497 GlobalAlias::create(Tys[idx], AddrSpace, Linkage, Name, GEP, &M);
John Brawn0bef27d2015-08-12 13:36:48 +0000498 }
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000499
Devang Patel76c85632011-10-17 17:17:43 +0000500 NumMerged++;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000501 }
502 i = j;
503 }
504
505 return true;
506}
507
Quentin Colombet8fc34092013-03-18 22:30:07 +0000508void GlobalMerge::collectUsedGlobalVariables(Module &M) {
509 // Extract global variables from llvm.used array
510 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
511 if (!GV || !GV->hasInitializer()) return;
512
513 // Should be an array of 'i8*'.
Rafael Espindola74f2e462013-04-22 14:58:02 +0000514 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());
515
Quentin Colombet8fc34092013-03-18 22:30:07 +0000516 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
517 if (const GlobalVariable *G =
518 dyn_cast<GlobalVariable>(InitList->getOperand(i)->stripPointerCasts()))
519 MustKeepGlobalVariables.insert(G);
520}
521
522void GlobalMerge::setMustKeepGlobalVariables(Module &M) {
Quentin Colombet8fc34092013-03-18 22:30:07 +0000523 collectUsedGlobalVariables(M);
524
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000525 for (Function &F : M) {
526 for (BasicBlock &BB : F) {
527 Instruction *Pad = BB.getFirstNonPHI();
528 if (!Pad->isEHPad())
529 continue;
Quentin Colombet8fc34092013-03-18 22:30:07 +0000530
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000531 // Keep globals used by landingpads and catchpads.
532 for (const Use &U : Pad->operands()) {
Quentin Colombet8fc34092013-03-18 22:30:07 +0000533 if (const GlobalVariable *GV =
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000534 dyn_cast<GlobalVariable>(U->stripPointerCasts()))
Quentin Colombet8fc34092013-03-18 22:30:07 +0000535 MustKeepGlobalVariables.insert(GV);
Reid Klecknerf8d1d122016-10-19 19:56:22 +0000536 }
Quentin Colombet8fc34092013-03-18 22:30:07 +0000537 }
538 }
539}
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000540
Devang Patel76c85632011-10-17 17:17:43 +0000541bool GlobalMerge::doInitialization(Module &M) {
Tim Northoverf804c172014-02-18 11:17:29 +0000542 if (!EnableGlobalMerge)
543 return false;
544
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000545 IsMachO = Triple(M.getTargetTriple()).isOSBinFormatMachO();
546
Mehdi Aminif6727b02015-07-07 18:49:25 +0000547 auto &DL = M.getDataLayout();
Silviu Barangaa055aab2013-01-07 12:31:25 +0000548 DenseMap<unsigned, SmallVector<GlobalVariable*, 16> > Globals, ConstGlobals,
549 BSSGlobals;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000550 bool Changed = false;
Quentin Colombet8fc34092013-03-18 22:30:07 +0000551 setMustKeepGlobalVariables(M);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000552
553 // Grab all non-const globals.
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000554 for (auto &GV : M.globals()) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000555 // Merge is safe for "normal" internal or external globals only
Javed Absarb16d1462017-06-05 10:09:13 +0000556 if (GV.isDeclaration() || GV.isThreadLocal() ||
557 GV.hasSection() || GV.hasImplicitSection())
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000558 continue;
559
John Brawn66716162017-06-02 10:24:14 +0000560 // It's not safe to merge globals that may be preempted
561 if (TM && !TM->shouldAssumeDSOLocal(M, &GV))
562 continue;
563
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000564 if (!(MergeExternalGlobals && GV.hasExternalLinkage()) &&
565 !GV.hasInternalLinkage())
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000566 continue;
567
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000568 PointerType *PT = dyn_cast<PointerType>(GV.getType());
Silviu Barangaa055aab2013-01-07 12:31:25 +0000569 assert(PT && "Global variable is not a pointer!");
570
571 unsigned AddressSpace = PT->getAddressSpace();
572
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000573 // Ignore fancy-aligned globals for now.
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000574 unsigned Alignment = DL.getPreferredAlignment(&GV);
575 Type *Ty = GV.getValueType();
Mehdi Aminif6727b02015-07-07 18:49:25 +0000576 if (Alignment > DL.getABITypeAlignment(Ty))
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000577 continue;
578
Anton Korobeynikov6bcea062010-07-26 18:45:39 +0000579 // Ignore all 'special' globals.
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000580 if (GV.getName().startswith("llvm.") ||
581 GV.getName().startswith(".llvm."))
Anton Korobeynikov6bcea062010-07-26 18:45:39 +0000582 continue;
583
Quentin Colombet8fc34092013-03-18 22:30:07 +0000584 // Ignore all "required" globals:
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000585 if (isMustKeepGlobalVariable(&GV))
Quentin Colombet8fc34092013-03-18 22:30:07 +0000586 continue;
587
Mehdi Aminif6727b02015-07-07 18:49:25 +0000588 if (DL.getTypeAllocSize(Ty) < MaxOffset) {
Peter Collingbournefe12d0e2016-05-19 04:38:56 +0000589 if (TM &&
590 TargetLoweringObjectFile::getKindForGlobal(&GV, *TM).isBSSLocal())
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000591 BSSGlobals[AddressSpace].push_back(&GV);
592 else if (GV.isConstant())
593 ConstGlobals[AddressSpace].push_back(&GV);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000594 else
Duncan P. N. Exon Smith530d0402015-10-09 18:57:47 +0000595 Globals[AddressSpace].push_back(&GV);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000596 }
597 }
598
David Blaikie47bf5c02015-08-21 22:19:06 +0000599 for (auto &P : Globals)
600 if (P.second.size() > 1)
601 Changed |= doMerge(P.second, M, false, P.first);
Silviu Barangaa055aab2013-01-07 12:31:25 +0000602
David Blaikie47bf5c02015-08-21 22:19:06 +0000603 for (auto &P : BSSGlobals)
604 if (P.second.size() > 1)
605 Changed |= doMerge(P.second, M, false, P.first);
Bob Wilson881b45c2010-11-17 21:25:39 +0000606
David Blaikied4860002015-08-25 17:01:36 +0000607 if (EnableGlobalMergeOnConst)
608 for (auto &P : ConstGlobals)
609 if (P.second.size() > 1)
610 Changed |= doMerge(P.second, M, true, P.first);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000611
612 return Changed;
613}
614
Devang Patel76c85632011-10-17 17:17:43 +0000615bool GlobalMerge::runOnFunction(Function &F) {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000616 return false;
617}
618
Quentin Colombet2393cb92013-03-19 21:46:49 +0000619bool GlobalMerge::doFinalization(Module &M) {
620 MustKeepGlobalVariables.clear();
621 return false;
622}
623
Ahmed Bougacha82076412015-06-04 20:39:23 +0000624Pass *llvm::createGlobalMergePass(const TargetMachine *TM, unsigned Offset,
John Brawn8b954242015-08-03 12:08:41 +0000625 bool OnlyOptimizeForSize,
626 bool MergeExternalByDefault) {
627 bool MergeExternal = (EnableGlobalMergeOnExternal == cl::BOU_UNSET) ?
628 MergeExternalByDefault : (EnableGlobalMergeOnExternal == cl::BOU_TRUE);
629 return new GlobalMerge(TM, Offset, OnlyOptimizeForSize, MergeExternal);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000630}