blob: 37b3bf17ed1f30ab6f2d5edb0fbc8e9ed8c71161 [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
Devang Patel76c85632011-10-17 17:17:43 +000062#include "llvm/Transforms/Scalar.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000063#include "llvm/ADT/DenseMap.h"
64#include "llvm/ADT/SmallBitVector.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000065#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000066#include "llvm/ADT/Statistic.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000067#include "llvm/CodeGen/Passes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000068#include "llvm/IR/Attributes.h"
69#include "llvm/IR/Constants.h"
70#include "llvm/IR/DataLayout.h"
71#include "llvm/IR/DerivedTypes.h"
72#include "llvm/IR/Function.h"
73#include "llvm/IR/GlobalVariable.h"
74#include "llvm/IR/Instructions.h"
75#include "llvm/IR/Intrinsics.h"
76#include "llvm/IR/Module.h"
Anton Korobeynikov19edda02010-07-24 21:52:08 +000077#include "llvm/Pass.h"
Quentin Colombet8fc34092013-03-18 22:30:07 +000078#include "llvm/Support/CommandLine.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000079#include "llvm/Support/Debug.h"
80#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov19edda02010-07-24 21:52:08 +000081#include "llvm/Target/TargetLowering.h"
Bob Wilson881b45c2010-11-17 21:25:39 +000082#include "llvm/Target/TargetLoweringObjectFile.h"
Eric Christopherd9134482014-08-04 21:25:23 +000083#include "llvm/Target/TargetSubtargetInfo.h"
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000084#include <algorithm>
Anton Korobeynikov19edda02010-07-24 21:52:08 +000085using namespace llvm;
86
Chandler Carruth964daaa2014-04-22 02:55:47 +000087#define DEBUG_TYPE "global-merge"
88
Ahmed Bougachab96444e2015-04-11 00:06:36 +000089// FIXME: This is only useful as a last-resort way to disable the pass.
Quentin Colombet8fc34092013-03-18 22:30:07 +000090static cl::opt<bool>
Jiangning Liu3e5b8552014-06-11 06:35:26 +000091EnableGlobalMerge("enable-global-merge", cl::Hidden,
Ahmed Bougachab96444e2015-04-11 00:06:36 +000092 cl::desc("Enable the global merge pass"),
Tim Northoverf804c172014-02-18 11:17:29 +000093 cl::init(true));
94
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +000095static cl::opt<bool> GlobalMergeGroupByUse(
96 "global-merge-group-by-use", cl::Hidden,
97 cl::desc("Improve global merge pass to look at uses"), cl::init(true));
98
99static cl::opt<bool> GlobalMergeIgnoreSingleUse(
100 "global-merge-ignore-single-use", cl::Hidden,
101 cl::desc("Improve global merge pass to ignore globals only used alone"),
102 cl::init(true));
103
Tim Northoverf804c172014-02-18 11:17:29 +0000104static cl::opt<bool>
Quentin Colombet8fc34092013-03-18 22:30:07 +0000105EnableGlobalMergeOnConst("global-merge-on-const", cl::Hidden,
Jakub Staszak6b36db02013-07-22 21:11:30 +0000106 cl::desc("Enable global merge pass on constants"),
107 cl::init(false));
Quentin Colombet8fc34092013-03-18 22:30:07 +0000108
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000109// FIXME: this could be a transitional option, and we probably need to remove
110// it if only we are sure this optimization could always benefit all targets.
111static cl::opt<bool>
112EnableGlobalMergeOnExternal("global-merge-on-external", cl::Hidden,
113 cl::desc("Enable global merge pass on external linkage"),
114 cl::init(false));
115
Eric Christophered47b222015-02-23 19:28:45 +0000116STATISTIC(NumMerged, "Number of globals merged");
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000117namespace {
Devang Patel76c85632011-10-17 17:17:43 +0000118 class GlobalMerge : public FunctionPass {
Bill Wendling7a639ea2013-06-19 21:07:11 +0000119 const TargetMachine *TM;
Eric Christophered47b222015-02-23 19:28:45 +0000120 const DataLayout *DL;
121 // FIXME: Infer the maximum possible offset depending on the actual users
122 // (these max offsets are different for the users inside Thumb or ARM
123 // functions), see the code that passes in the offset in the ARM backend
124 // for more information.
125 unsigned MaxOffset;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000126
Ahmed Bougacha82076412015-06-04 20:39:23 +0000127 /// Whether we should try to optimize for size only.
128 /// Currently, this applies a dead simple heuristic: only consider globals
129 /// used in minsize functions for merging.
130 /// FIXME: This could learn about optsize, and be used in the cost model.
131 bool OnlyOptimizeForSize;
132
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000133 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000134 Module &M, bool isConst, unsigned AddrSpace) const;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000135 /// \brief Merge everything in \p Globals for which the corresponding bit
136 /// in \p GlobalSet is set.
137 bool doMerge(SmallVectorImpl<GlobalVariable *> &Globals,
138 const BitVector &GlobalSet, Module &M, bool isConst,
139 unsigned AddrSpace) const;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000140
Quentin Colombet8fc34092013-03-18 22:30:07 +0000141 /// \brief Check if the given variable has been identified as must keep
142 /// \pre setMustKeepGlobalVariables must have been called on the Module that
143 /// contains GV
144 bool isMustKeepGlobalVariable(const GlobalVariable *GV) const {
145 return MustKeepGlobalVariables.count(GV);
146 }
147
148 /// Collect every variables marked as "used" or used in a landing pad
149 /// instruction for this Module.
150 void setMustKeepGlobalVariables(Module &M);
151
152 /// Collect every variables marked as "used"
153 void collectUsedGlobalVariables(Module &M);
154
Quentin Colombet2393cb92013-03-19 21:46:49 +0000155 /// Keep track of the GlobalVariable that must not be merged away
Quentin Colombet8fc34092013-03-18 22:30:07 +0000156 SmallPtrSet<const GlobalVariable *, 16> MustKeepGlobalVariables;
157
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000158 public:
159 static char ID; // Pass identification, replacement for typeid.
Eric Christophered47b222015-02-23 19:28:45 +0000160 explicit GlobalMerge(const TargetMachine *TM = nullptr,
Ahmed Bougacha82076412015-06-04 20:39:23 +0000161 unsigned MaximalOffset = 0,
162 bool OnlyOptimizeForSize = false)
Eric Christophered47b222015-02-23 19:28:45 +0000163 : FunctionPass(ID), TM(TM), DL(TM->getDataLayout()),
Ahmed Bougacha82076412015-06-04 20:39:23 +0000164 MaxOffset(MaximalOffset), OnlyOptimizeForSize(OnlyOptimizeForSize) {
Devang Patel76c85632011-10-17 17:17:43 +0000165 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
166 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000167
Craig Topper3e4c6972014-03-05 09:10:37 +0000168 bool doInitialization(Module &M) override;
169 bool runOnFunction(Function &F) override;
170 bool doFinalization(Module &M) override;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000171
Craig Topper3e4c6972014-03-05 09:10:37 +0000172 const char *getPassName() const override {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000173 return "Merge internal globals";
174 }
175
Craig Topper3e4c6972014-03-05 09:10:37 +0000176 void getAnalysisUsage(AnalysisUsage &AU) const override {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000177 AU.setPreservesCFG();
178 FunctionPass::getAnalysisUsage(AU);
179 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000180 };
181} // end anonymous namespace
182
Devang Patel76c85632011-10-17 17:17:43 +0000183char GlobalMerge::ID = 0;
Eric Christophered47b222015-02-23 19:28:45 +0000184INITIALIZE_PASS_BEGIN(GlobalMerge, "global-merge", "Merge global variables",
185 false, false)
186INITIALIZE_PASS_END(GlobalMerge, "global-merge", "Merge global variables",
187 false, false)
Devang Patel76c85632011-10-17 17:17:43 +0000188
189bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangaa055aab2013-01-07 12:31:25 +0000190 Module &M, bool isConst, unsigned AddrSpace) const {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000191 // FIXME: Find better heuristics
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000192 std::stable_sort(Globals.begin(), Globals.end(),
Eric Christophered47b222015-02-23 19:28:45 +0000193 [this](const GlobalVariable *GV1, const GlobalVariable *GV2) {
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000194 Type *Ty1 = cast<PointerType>(GV1->getType())->getElementType();
195 Type *Ty2 = cast<PointerType>(GV2->getType())->getElementType();
196
197 return (DL->getTypeAllocSize(Ty1) < DL->getTypeAllocSize(Ty2));
198 });
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000199
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000200 // If we want to just blindly group all globals together, do so.
201 if (!GlobalMergeGroupByUse) {
202 BitVector AllGlobals(Globals.size());
203 AllGlobals.set();
204 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
205 }
206
207 // If we want to be smarter, look at all uses of each global, to try to
208 // discover all sets of globals used together, and how many times each of
209 // these sets occured.
210 //
211 // Keep this reasonably efficient, by having an append-only list of all sets
212 // discovered so far (UsedGlobalSet), and mapping each "together-ness" unit of
213 // code (currently, a Function) to the set of globals seen so far that are
214 // used together in that unit (GlobalUsesByFunction).
215 //
216 // When we look at the Nth global, we now that any new set is either:
217 // - the singleton set {N}, containing this global only, or
218 // - the union of {N} and a previously-discovered set, containing some
219 // combination of the previous N-1 globals.
220 // Using that knowledge, when looking at the Nth global, we can keep:
221 // - a reference to the singleton set {N} (CurGVOnlySetIdx)
222 // - a list mapping each previous set to its union with {N} (EncounteredUGS),
223 // if it actually occurs.
224
225 // We keep track of the sets of globals used together "close enough".
226 struct UsedGlobalSet {
227 UsedGlobalSet(size_t Size) : Globals(Size), UsageCount(1) {}
228 BitVector Globals;
229 unsigned UsageCount;
230 };
231
232 // Each set is unique in UsedGlobalSets.
233 std::vector<UsedGlobalSet> UsedGlobalSets;
234
235 // Avoid repeating the create-global-set pattern.
236 auto CreateGlobalSet = [&]() -> UsedGlobalSet & {
237 UsedGlobalSets.emplace_back(Globals.size());
238 return UsedGlobalSets.back();
239 };
240
241 // The first set is the empty set.
242 CreateGlobalSet().UsageCount = 0;
243
244 // We define "close enough" to be "in the same function".
245 // FIXME: Grouping uses by function is way too aggressive, so we should have
246 // a better metric for distance between uses.
247 // The obvious alternative would be to group by BasicBlock, but that's in
248 // turn too conservative..
249 // Anything in between wouldn't be trivial to compute, so just stick with
250 // per-function grouping.
251
252 // The value type is an index into UsedGlobalSets.
253 // The default (0) conveniently points to the empty set.
254 DenseMap<Function *, size_t /*UsedGlobalSetIdx*/> GlobalUsesByFunction;
255
256 // Now, look at each merge-eligible global in turn.
257
258 // Keep track of the sets we already encountered to which we added the
259 // current global.
260 // Each element matches the same-index element in UsedGlobalSets.
261 // This lets us efficiently tell whether a set has already been expanded to
262 // include the current global.
263 std::vector<size_t> EncounteredUGS;
264
265 for (size_t GI = 0, GE = Globals.size(); GI != GE; ++GI) {
266 GlobalVariable *GV = Globals[GI];
267
268 // Reset the encountered sets for this global...
269 std::fill(EncounteredUGS.begin(), EncounteredUGS.end(), 0);
270 // ...and grow it in case we created new sets for the previous global.
271 EncounteredUGS.resize(UsedGlobalSets.size());
272
273 // We might need to create a set that only consists of the current global.
274 // Keep track of its index into UsedGlobalSets.
275 size_t CurGVOnlySetIdx = 0;
276
277 // For each global, look at all its Uses.
278 for (auto &U : GV->uses()) {
279 // This Use might be a ConstantExpr. We're interested in Instruction
280 // users, so look through ConstantExpr...
281 Use *UI, *UE;
282 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) {
Oliver Stannard8379e292015-06-08 16:55:31 +0000283 if (CE->use_empty())
284 continue;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000285 UI = &*CE->use_begin();
286 UE = nullptr;
287 } else if (isa<Instruction>(U.getUser())) {
288 UI = &U;
289 UE = UI->getNext();
290 } else {
291 continue;
292 }
293
294 // ...to iterate on all the instruction users of the global.
295 // Note that we iterate on Uses and not on Users to be able to getNext().
296 for (; UI != UE; UI = UI->getNext()) {
297 Instruction *I = dyn_cast<Instruction>(UI->getUser());
298 if (!I)
299 continue;
300
301 Function *ParentFn = I->getParent()->getParent();
Ahmed Bougacha82076412015-06-04 20:39:23 +0000302
303 // If we're only optimizing for size, ignore non-minsize functions.
304 if (OnlyOptimizeForSize &&
305 !ParentFn->hasFnAttribute(Attribute::MinSize))
306 continue;
307
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000308 size_t UGSIdx = GlobalUsesByFunction[ParentFn];
309
310 // If this is the first global the basic block uses, map it to the set
311 // consisting of this global only.
312 if (!UGSIdx) {
313 // If that set doesn't exist yet, create it.
314 if (!CurGVOnlySetIdx) {
315 CurGVOnlySetIdx = UsedGlobalSets.size();
316 CreateGlobalSet().Globals.set(GI);
317 } else {
318 ++UsedGlobalSets[CurGVOnlySetIdx].UsageCount;
319 }
320
321 GlobalUsesByFunction[ParentFn] = CurGVOnlySetIdx;
322 continue;
323 }
324
325 // If we already encountered this BB, just increment the counter.
326 if (UsedGlobalSets[UGSIdx].Globals.test(GI)) {
327 ++UsedGlobalSets[UGSIdx].UsageCount;
328 continue;
329 }
330
331 // If not, the previous set wasn't actually used in this function.
332 --UsedGlobalSets[UGSIdx].UsageCount;
333
334 // If we already expanded the previous set to include this global, just
335 // reuse that expanded set.
336 if (size_t ExpandedIdx = EncounteredUGS[UGSIdx]) {
337 ++UsedGlobalSets[ExpandedIdx].UsageCount;
338 GlobalUsesByFunction[ParentFn] = ExpandedIdx;
339 continue;
340 }
341
342 // If not, create a new set consisting of the union of the previous set
343 // and this global. Mark it as encountered, so we can reuse it later.
344 GlobalUsesByFunction[ParentFn] = EncounteredUGS[UGSIdx] =
345 UsedGlobalSets.size();
346
347 UsedGlobalSet &NewUGS = CreateGlobalSet();
348 NewUGS.Globals.set(GI);
349 NewUGS.Globals |= UsedGlobalSets[UGSIdx].Globals;
350 }
351 }
352 }
353
354 // Now we found a bunch of sets of globals used together. We accumulated
355 // the number of times we encountered the sets (i.e., the number of blocks
356 // that use that exact set of globals).
357 //
358 // Multiply that by the size of the set to give us a crude profitability
359 // metric.
360 std::sort(UsedGlobalSets.begin(), UsedGlobalSets.end(),
361 [](const UsedGlobalSet &UGS1, const UsedGlobalSet &UGS2) {
362 return UGS1.Globals.count() * UGS1.UsageCount <
363 UGS2.Globals.count() * UGS2.UsageCount;
364 });
365
366 // We can choose to merge all globals together, but ignore globals never used
367 // with another global. This catches the obviously non-profitable cases of
368 // having a single global, but is aggressive enough for any other case.
369 if (GlobalMergeIgnoreSingleUse) {
370 BitVector AllGlobals(Globals.size());
371 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
372 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
373 if (UGS.UsageCount == 0)
374 continue;
375 if (UGS.Globals.count() > 1)
376 AllGlobals |= UGS.Globals;
377 }
378 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
379 }
380
381 // Starting from the sets with the best (=biggest) profitability, find a
382 // good combination.
383 // The ideal (and expensive) solution can only be found by trying all
384 // combinations, looking for the one with the best profitability.
385 // Don't be smart about it, and just pick the first compatible combination,
386 // starting with the sets with the best profitability.
387 BitVector PickedGlobals(Globals.size());
388 bool Changed = false;
389
390 for (size_t i = 0, e = UsedGlobalSets.size(); i != e; ++i) {
391 const UsedGlobalSet &UGS = UsedGlobalSets[e - i - 1];
392 if (UGS.UsageCount == 0)
393 continue;
394 if (PickedGlobals.anyCommon(UGS.Globals))
395 continue;
396 PickedGlobals |= UGS.Globals;
397 // If the set only contains one global, there's no point in merging.
398 // Ignore the global for inclusion in other sets though, so keep it in
399 // PickedGlobals.
400 if (UGS.Globals.count() < 2)
401 continue;
402 Changed |= doMerge(Globals, UGS.Globals, M, isConst, AddrSpace);
403 }
404
405 return Changed;
406}
407
408bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable *> &Globals,
409 const BitVector &GlobalSet, Module &M, bool isConst,
410 unsigned AddrSpace) const {
411
Chris Lattner229907c2011-07-18 04:54:35 +0000412 Type *Int32Ty = Type::getInt32Ty(M.getContext());
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000413
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000414 assert(Globals.size() > 1);
415
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000416 DEBUG(dbgs() << " Trying to merge set, starts with #"
417 << GlobalSet.find_first() << "\n");
418
419 ssize_t i = GlobalSet.find_first();
420 while (i != -1) {
421 ssize_t j = 0;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000422 uint64_t MergedSize = 0;
Jay Foadb804a2b2011-07-12 14:06:48 +0000423 std::vector<Type*> Tys;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000424 std::vector<Constant*> Inits;
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000425
426 bool HasExternal = false;
427 GlobalVariable *TheFirstExternal = 0;
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000428 for (j = i; j != -1; j = GlobalSet.find_next(j)) {
Jay Foadb804a2b2011-07-12 14:06:48 +0000429 Type *Ty = Globals[j]->getType()->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000430 MergedSize += DL->getTypeAllocSize(Ty);
Bob Wilson4c8ab192010-11-17 21:25:36 +0000431 if (MergedSize > MaxOffset) {
432 break;
433 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000434 Tys.push_back(Ty);
435 Inits.push_back(Globals[j]->getInitializer());
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000436
437 if (Globals[j]->hasExternalLinkage() && !HasExternal) {
438 HasExternal = true;
439 TheFirstExternal = Globals[j];
440 }
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000441 }
442
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000443 // If merged variables doesn't have external linkage, we needn't to expose
444 // the symbol after merging.
445 GlobalValue::LinkageTypes Linkage = HasExternal
446 ? GlobalValue::ExternalLinkage
447 : GlobalValue::InternalLinkage;
448
Chris Lattnere40007a2010-09-05 21:18:45 +0000449 StructType *MergedTy = StructType::get(M.getContext(), Tys);
450 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000451
Benjamin Kramercccdadc2014-07-08 14:55:06 +0000452 // If merged variables have external linkage, we use symbol name of the
453 // first variable merged as the suffix of global symbol name. This would
454 // be able to avoid the link-time naming conflict for globalm symbols.
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000455 GlobalVariable *MergedGV = new GlobalVariable(
Benjamin Kramercccdadc2014-07-08 14:55:06 +0000456 M, MergedTy, isConst, Linkage, MergedInit,
457 HasExternal ? "_MergedGlobals_" + TheFirstExternal->getName()
458 : "_MergedGlobals",
459 nullptr, GlobalVariable::NotThreadLocal, AddrSpace);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000460
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000461 for (ssize_t k = i, idx = 0; k != j; k = GlobalSet.find_next(k)) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000462 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage();
463 std::string Name = Globals[k]->getName();
464
Chris Lattnere40007a2010-09-05 21:18:45 +0000465 Constant *Idx[2] = {
466 ConstantInt::get(Int32Ty, 0),
Ahmed Bougacha279e3ee2015-04-18 01:21:58 +0000467 ConstantInt::get(Int32Ty, idx++)
Chris Lattnere40007a2010-09-05 21:18:45 +0000468 };
David Blaikie4a2e73b2015-04-02 18:55:32 +0000469 Constant *GEP =
470 ConstantExpr::getInBoundsGetElementPtr(MergedTy, MergedGV, Idx);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000471 Globals[k]->replaceAllUsesWith(GEP);
472 Globals[k]->eraseFromParent();
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000473
474 if (Linkage != GlobalValue::InternalLinkage) {
475 // Generate a new alias...
476 auto *PTy = cast<PointerType>(GEP->getType());
David Blaikief64246b2015-04-29 21:22:39 +0000477 GlobalAlias::create(PTy, Linkage, Name, GEP, &M);
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000478 }
479
Devang Patel76c85632011-10-17 17:17:43 +0000480 NumMerged++;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000481 }
482 i = j;
483 }
484
485 return true;
486}
487
Quentin Colombet8fc34092013-03-18 22:30:07 +0000488void GlobalMerge::collectUsedGlobalVariables(Module &M) {
489 // Extract global variables from llvm.used array
490 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
491 if (!GV || !GV->hasInitializer()) return;
492
493 // Should be an array of 'i8*'.
Rafael Espindola74f2e462013-04-22 14:58:02 +0000494 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());
495
Quentin Colombet8fc34092013-03-18 22:30:07 +0000496 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
497 if (const GlobalVariable *G =
498 dyn_cast<GlobalVariable>(InitList->getOperand(i)->stripPointerCasts()))
499 MustKeepGlobalVariables.insert(G);
500}
501
502void GlobalMerge::setMustKeepGlobalVariables(Module &M) {
Quentin Colombet8fc34092013-03-18 22:30:07 +0000503 collectUsedGlobalVariables(M);
504
505 for (Module::iterator IFn = M.begin(), IEndFn = M.end(); IFn != IEndFn;
506 ++IFn) {
507 for (Function::iterator IBB = IFn->begin(), IEndBB = IFn->end();
508 IBB != IEndBB; ++IBB) {
Mark Seaborn07e74862014-03-13 00:04:17 +0000509 // Follow the invoke link to find the landing pad instruction
Quentin Colombet8fc34092013-03-18 22:30:07 +0000510 const InvokeInst *II = dyn_cast<InvokeInst>(IBB->getTerminator());
511 if (!II) continue;
512
513 const LandingPadInst *LPInst = II->getUnwindDest()->getLandingPadInst();
514 // Look for globals in the clauses of the landing pad instruction
515 for (unsigned Idx = 0, NumClauses = LPInst->getNumClauses();
516 Idx != NumClauses; ++Idx)
517 if (const GlobalVariable *GV =
518 dyn_cast<GlobalVariable>(LPInst->getClause(Idx)
519 ->stripPointerCasts()))
520 MustKeepGlobalVariables.insert(GV);
521 }
522 }
523}
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000524
Devang Patel76c85632011-10-17 17:17:43 +0000525bool GlobalMerge::doInitialization(Module &M) {
Tim Northoverf804c172014-02-18 11:17:29 +0000526 if (!EnableGlobalMerge)
527 return false;
528
Silviu Barangaa055aab2013-01-07 12:31:25 +0000529 DenseMap<unsigned, SmallVector<GlobalVariable*, 16> > Globals, ConstGlobals,
530 BSSGlobals;
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000531 bool Changed = false;
Quentin Colombet8fc34092013-03-18 22:30:07 +0000532 setMustKeepGlobalVariables(M);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000533
534 // Grab all non-const globals.
535 for (Module::global_iterator I = M.global_begin(),
536 E = M.global_end(); I != E; ++I) {
Jiangning Liub2ae37f2014-06-11 06:44:53 +0000537 // Merge is safe for "normal" internal or external globals only
538 if (I->isDeclaration() || I->isThreadLocal() || I->hasSection())
539 continue;
540
541 if (!(EnableGlobalMergeOnExternal && I->hasExternalLinkage()) &&
542 !I->hasInternalLinkage())
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000543 continue;
544
Silviu Barangaa055aab2013-01-07 12:31:25 +0000545 PointerType *PT = dyn_cast<PointerType>(I->getType());
546 assert(PT && "Global variable is not a pointer!");
547
548 unsigned AddressSpace = PT->getAddressSpace();
549
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000550 // Ignore fancy-aligned globals for now.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000551 unsigned Alignment = DL->getPreferredAlignment(I);
Chris Lattner229907c2011-07-18 04:54:35 +0000552 Type *Ty = I->getType()->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000553 if (Alignment > DL->getABITypeAlignment(Ty))
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000554 continue;
555
Anton Korobeynikov6bcea062010-07-26 18:45:39 +0000556 // Ignore all 'special' globals.
557 if (I->getName().startswith("llvm.") ||
558 I->getName().startswith(".llvm."))
559 continue;
560
Quentin Colombet8fc34092013-03-18 22:30:07 +0000561 // Ignore all "required" globals:
Quentin Colombet8fc34092013-03-18 22:30:07 +0000562 if (isMustKeepGlobalVariable(I))
563 continue;
564
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000565 if (DL->getTypeAllocSize(Ty) < MaxOffset) {
Eric Christopher2af33752014-06-10 20:39:39 +0000566 if (TargetLoweringObjectFile::getKindForGlobal(I, *TM).isBSSLocal())
Silviu Barangaa055aab2013-01-07 12:31:25 +0000567 BSSGlobals[AddressSpace].push_back(I);
Bob Wilson881b45c2010-11-17 21:25:39 +0000568 else if (I->isConstant())
Silviu Barangaa055aab2013-01-07 12:31:25 +0000569 ConstGlobals[AddressSpace].push_back(I);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000570 else
Silviu Barangaa055aab2013-01-07 12:31:25 +0000571 Globals[AddressSpace].push_back(I);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000572 }
573 }
574
Silviu Barangaa055aab2013-01-07 12:31:25 +0000575 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
576 I = Globals.begin(), E = Globals.end(); I != E; ++I)
577 if (I->second.size() > 1)
578 Changed |= doMerge(I->second, M, false, I->first);
579
580 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
581 I = BSSGlobals.begin(), E = BSSGlobals.end(); I != E; ++I)
582 if (I->second.size() > 1)
583 Changed |= doMerge(I->second, M, false, I->first);
Bob Wilson881b45c2010-11-17 21:25:39 +0000584
Quentin Colombet8fc34092013-03-18 22:30:07 +0000585 if (EnableGlobalMergeOnConst)
586 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
587 I = ConstGlobals.begin(), E = ConstGlobals.end(); I != E; ++I)
588 if (I->second.size() > 1)
589 Changed |= doMerge(I->second, M, true, I->first);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000590
591 return Changed;
592}
593
Devang Patel76c85632011-10-17 17:17:43 +0000594bool GlobalMerge::runOnFunction(Function &F) {
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000595 return false;
596}
597
Quentin Colombet2393cb92013-03-19 21:46:49 +0000598bool GlobalMerge::doFinalization(Module &M) {
599 MustKeepGlobalVariables.clear();
600 return false;
601}
602
Ahmed Bougacha82076412015-06-04 20:39:23 +0000603Pass *llvm::createGlobalMergePass(const TargetMachine *TM, unsigned Offset,
604 bool OnlyOptimizeForSize) {
605 return new GlobalMerge(TM, Offset, OnlyOptimizeForSize);
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000606}