blob: 4188e5d4fee760b46a89f1a9bde4a0262ca13490 [file] [log] [blame]
Devang Patel827454e2011-10-17 17:17:43 +00001//===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
Anton Korobeynikovcec36f42010-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 Rotema94d6e82012-07-24 10:51:42 +000015// For example, consider the code which touches several global variables at
Eric Christophera99c3e92010-09-28 04:18:29 +000016// once:
Anton Korobeynikovcec36f42010-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".
Eric Christophera99c3e92010-09-28 04:18:29 +000052// ===---------------------------------------------------------------------===//
Anton Korobeynikovcec36f42010-07-24 21:52:08 +000053
Devang Patel827454e2011-10-17 17:17:43 +000054#include "llvm/Transforms/Scalar.h"
Quentin Colombete5728092013-03-18 22:30:07 +000055#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000056#include "llvm/ADT/Statistic.h"
Stephen Hinesebe69fe2015-03-23 12:10:34 -070057#include "llvm/CodeGen/Passes.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000058#include "llvm/IR/Attributes.h"
59#include "llvm/IR/Constants.h"
60#include "llvm/IR/DataLayout.h"
61#include "llvm/IR/DerivedTypes.h"
62#include "llvm/IR/Function.h"
63#include "llvm/IR/GlobalVariable.h"
64#include "llvm/IR/Instructions.h"
65#include "llvm/IR/Intrinsics.h"
66#include "llvm/IR/Module.h"
Anton Korobeynikovcec36f42010-07-24 21:52:08 +000067#include "llvm/Pass.h"
Quentin Colombete5728092013-03-18 22:30:07 +000068#include "llvm/Support/CommandLine.h"
Anton Korobeynikovcec36f42010-07-24 21:52:08 +000069#include "llvm/Target/TargetLowering.h"
Bob Wilson05646092010-11-17 21:25:39 +000070#include "llvm/Target/TargetLoweringObjectFile.h"
Stephen Hines37ed9c12014-12-01 14:51:49 -080071#include "llvm/Target/TargetSubtargetInfo.h"
Anton Korobeynikovcec36f42010-07-24 21:52:08 +000072using namespace llvm;
73
Stephen Hinesdce4a402014-05-29 02:49:00 -070074#define DEBUG_TYPE "global-merge"
75
Stephen Hines36b56882014-04-23 16:57:46 -070076cl::opt<bool>
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070077EnableGlobalMerge("enable-global-merge", cl::Hidden,
Stephen Hines36b56882014-04-23 16:57:46 -070078 cl::desc("Enable global merge pass"),
79 cl::init(true));
80
Quentin Colombete5728092013-03-18 22:30:07 +000081static cl::opt<bool>
82EnableGlobalMergeOnConst("global-merge-on-const", cl::Hidden,
Jakub Staszakdca13e02013-07-22 21:11:30 +000083 cl::desc("Enable global merge pass on constants"),
84 cl::init(false));
Quentin Colombete5728092013-03-18 22:30:07 +000085
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -070086// FIXME: this could be a transitional option, and we probably need to remove
87// it if only we are sure this optimization could always benefit all targets.
88static cl::opt<bool>
89EnableGlobalMergeOnExternal("global-merge-on-external", cl::Hidden,
90 cl::desc("Enable global merge pass on external linkage"),
91 cl::init(false));
92
Stephen Hinesebe69fe2015-03-23 12:10:34 -070093STATISTIC(NumMerged, "Number of globals merged");
Anton Korobeynikovcec36f42010-07-24 21:52:08 +000094namespace {
Devang Patel827454e2011-10-17 17:17:43 +000095 class GlobalMerge : public FunctionPass {
Bill Wendlingf9fd58a2013-06-19 21:07:11 +000096 const TargetMachine *TM;
Stephen Hinesebe69fe2015-03-23 12:10:34 -070097 const DataLayout *DL;
98 // FIXME: Infer the maximum possible offset depending on the actual users
99 // (these max offsets are different for the users inside Thumb or ARM
100 // functions), see the code that passes in the offset in the ARM backend
101 // for more information.
102 unsigned MaxOffset;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000103
104 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangae9716592013-01-07 12:31:25 +0000105 Module &M, bool isConst, unsigned AddrSpace) const;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000106
Quentin Colombete5728092013-03-18 22:30:07 +0000107 /// \brief Check if the given variable has been identified as must keep
108 /// \pre setMustKeepGlobalVariables must have been called on the Module that
109 /// contains GV
110 bool isMustKeepGlobalVariable(const GlobalVariable *GV) const {
111 return MustKeepGlobalVariables.count(GV);
112 }
113
114 /// Collect every variables marked as "used" or used in a landing pad
115 /// instruction for this Module.
116 void setMustKeepGlobalVariables(Module &M);
117
118 /// Collect every variables marked as "used"
119 void collectUsedGlobalVariables(Module &M);
120
Quentin Colombet9deb9172013-03-19 21:46:49 +0000121 /// Keep track of the GlobalVariable that must not be merged away
Quentin Colombete5728092013-03-18 22:30:07 +0000122 SmallPtrSet<const GlobalVariable *, 16> MustKeepGlobalVariables;
123
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000124 public:
125 static char ID; // Pass identification, replacement for typeid.
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700126 explicit GlobalMerge(const TargetMachine *TM = nullptr,
127 unsigned MaximalOffset = 0)
128 : FunctionPass(ID), TM(TM), DL(TM->getDataLayout()),
129 MaxOffset(MaximalOffset) {
Devang Patel827454e2011-10-17 17:17:43 +0000130 initializeGlobalMergePass(*PassRegistry::getPassRegistry());
131 }
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000132
Stephen Hines36b56882014-04-23 16:57:46 -0700133 bool doInitialization(Module &M) override;
134 bool runOnFunction(Function &F) override;
135 bool doFinalization(Module &M) override;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000136
Stephen Hines36b56882014-04-23 16:57:46 -0700137 const char *getPassName() const override {
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000138 return "Merge internal globals";
139 }
140
Stephen Hines36b56882014-04-23 16:57:46 -0700141 void getAnalysisUsage(AnalysisUsage &AU) const override {
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000142 AU.setPreservesCFG();
143 FunctionPass::getAnalysisUsage(AU);
144 }
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000145 };
146} // end anonymous namespace
147
Devang Patel827454e2011-10-17 17:17:43 +0000148char GlobalMerge::ID = 0;
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700149INITIALIZE_PASS_BEGIN(GlobalMerge, "global-merge", "Merge global variables",
150 false, false)
151INITIALIZE_PASS_END(GlobalMerge, "global-merge", "Merge global variables",
152 false, false)
Devang Patel827454e2011-10-17 17:17:43 +0000153
154bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
Silviu Barangae9716592013-01-07 12:31:25 +0000155 Module &M, bool isConst, unsigned AddrSpace) const {
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000156 // FIXME: Find better heuristics
Stephen Hines36b56882014-04-23 16:57:46 -0700157 std::stable_sort(Globals.begin(), Globals.end(),
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700158 [this](const GlobalVariable *GV1, const GlobalVariable *GV2) {
Stephen Hines36b56882014-04-23 16:57:46 -0700159 Type *Ty1 = cast<PointerType>(GV1->getType())->getElementType();
160 Type *Ty2 = cast<PointerType>(GV2->getType())->getElementType();
161
162 return (DL->getTypeAllocSize(Ty1) < DL->getTypeAllocSize(Ty2));
163 });
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000164
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000165 Type *Int32Ty = Type::getInt32Ty(M.getContext());
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000166
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700167 assert(Globals.size() > 1);
168
169 // FIXME: This simple solution merges globals all together as maximum as
170 // possible. However, with this solution it would be hard to remove dead
171 // global symbols at link-time. An alternative solution could be checking
172 // global symbols references function by function, and make the symbols
173 // being referred in the same function merged and we would probably need
174 // to introduce heuristic algorithm to solve the merge conflict from
175 // different functions.
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000176 for (size_t i = 0, e = Globals.size(); i != e; ) {
177 size_t j = 0;
178 uint64_t MergedSize = 0;
Jay Foad5fdd6c82011-07-12 14:06:48 +0000179 std::vector<Type*> Tys;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000180 std::vector<Constant*> Inits;
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700181
182 bool HasExternal = false;
183 GlobalVariable *TheFirstExternal = 0;
Bob Wilson619a3722010-11-17 21:25:36 +0000184 for (j = i; j != e; ++j) {
Jay Foad5fdd6c82011-07-12 14:06:48 +0000185 Type *Ty = Globals[j]->getType()->getElementType();
Stephen Hines36b56882014-04-23 16:57:46 -0700186 MergedSize += DL->getTypeAllocSize(Ty);
Bob Wilson619a3722010-11-17 21:25:36 +0000187 if (MergedSize > MaxOffset) {
188 break;
189 }
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000190 Tys.push_back(Ty);
191 Inits.push_back(Globals[j]->getInitializer());
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700192
193 if (Globals[j]->hasExternalLinkage() && !HasExternal) {
194 HasExternal = true;
195 TheFirstExternal = Globals[j];
196 }
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000197 }
198
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700199 // If merged variables doesn't have external linkage, we needn't to expose
200 // the symbol after merging.
201 GlobalValue::LinkageTypes Linkage = HasExternal
202 ? GlobalValue::ExternalLinkage
203 : GlobalValue::InternalLinkage;
204
Chris Lattner252b4912010-09-05 21:18:45 +0000205 StructType *MergedTy = StructType::get(M.getContext(), Tys);
206 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700207
208 // If merged variables have external linkage, we use symbol name of the
209 // first variable merged as the suffix of global symbol name. This would
210 // be able to avoid the link-time naming conflict for globalm symbols.
211 GlobalVariable *MergedGV = new GlobalVariable(
212 M, MergedTy, isConst, Linkage, MergedInit,
213 HasExternal ? "_MergedGlobals_" + TheFirstExternal->getName()
214 : "_MergedGlobals",
215 nullptr, GlobalVariable::NotThreadLocal, AddrSpace);
216
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000217 for (size_t k = i; k < j; ++k) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700218 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage();
219 std::string Name = Globals[k]->getName();
220
Chris Lattner252b4912010-09-05 21:18:45 +0000221 Constant *Idx[2] = {
222 ConstantInt::get(Int32Ty, 0),
223 ConstantInt::get(Int32Ty, k-i)
224 };
Jay Foaddab3d292011-07-21 14:31:17 +0000225 Constant *GEP = ConstantExpr::getInBoundsGetElementPtr(MergedGV, Idx);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000226 Globals[k]->replaceAllUsesWith(GEP);
227 Globals[k]->eraseFromParent();
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700228
229 if (Linkage != GlobalValue::InternalLinkage) {
230 // Generate a new alias...
231 auto *PTy = cast<PointerType>(GEP->getType());
232 GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
233 Linkage, Name, GEP, &M);
234 }
235
Devang Patel827454e2011-10-17 17:17:43 +0000236 NumMerged++;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000237 }
238 i = j;
239 }
240
241 return true;
242}
243
Quentin Colombete5728092013-03-18 22:30:07 +0000244void GlobalMerge::collectUsedGlobalVariables(Module &M) {
245 // Extract global variables from llvm.used array
246 const GlobalVariable *GV = M.getGlobalVariable("llvm.used");
247 if (!GV || !GV->hasInitializer()) return;
248
249 // Should be an array of 'i8*'.
Rafael Espindolacde25b42013-04-22 14:58:02 +0000250 const ConstantArray *InitList = cast<ConstantArray>(GV->getInitializer());
251
Quentin Colombete5728092013-03-18 22:30:07 +0000252 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
253 if (const GlobalVariable *G =
254 dyn_cast<GlobalVariable>(InitList->getOperand(i)->stripPointerCasts()))
255 MustKeepGlobalVariables.insert(G);
256}
257
258void GlobalMerge::setMustKeepGlobalVariables(Module &M) {
Quentin Colombete5728092013-03-18 22:30:07 +0000259 collectUsedGlobalVariables(M);
260
261 for (Module::iterator IFn = M.begin(), IEndFn = M.end(); IFn != IEndFn;
262 ++IFn) {
263 for (Function::iterator IBB = IFn->begin(), IEndBB = IFn->end();
264 IBB != IEndBB; ++IBB) {
Stephen Hines36b56882014-04-23 16:57:46 -0700265 // Follow the invoke link to find the landing pad instruction
Quentin Colombete5728092013-03-18 22:30:07 +0000266 const InvokeInst *II = dyn_cast<InvokeInst>(IBB->getTerminator());
267 if (!II) continue;
268
269 const LandingPadInst *LPInst = II->getUnwindDest()->getLandingPadInst();
270 // Look for globals in the clauses of the landing pad instruction
271 for (unsigned Idx = 0, NumClauses = LPInst->getNumClauses();
272 Idx != NumClauses; ++Idx)
273 if (const GlobalVariable *GV =
274 dyn_cast<GlobalVariable>(LPInst->getClause(Idx)
275 ->stripPointerCasts()))
276 MustKeepGlobalVariables.insert(GV);
277 }
278 }
279}
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000280
Devang Patel827454e2011-10-17 17:17:43 +0000281bool GlobalMerge::doInitialization(Module &M) {
Stephen Hines36b56882014-04-23 16:57:46 -0700282 if (!EnableGlobalMerge)
283 return false;
284
Silviu Barangae9716592013-01-07 12:31:25 +0000285 DenseMap<unsigned, SmallVector<GlobalVariable*, 16> > Globals, ConstGlobals,
286 BSSGlobals;
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000287 bool Changed = false;
Quentin Colombete5728092013-03-18 22:30:07 +0000288 setMustKeepGlobalVariables(M);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000289
290 // Grab all non-const globals.
291 for (Module::global_iterator I = M.global_begin(),
292 E = M.global_end(); I != E; ++I) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700293 // Merge is safe for "normal" internal or external globals only
294 if (I->isDeclaration() || I->isThreadLocal() || I->hasSection())
295 continue;
296
297 if (!(EnableGlobalMergeOnExternal && I->hasExternalLinkage()) &&
298 !I->hasInternalLinkage())
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000299 continue;
300
Silviu Barangae9716592013-01-07 12:31:25 +0000301 PointerType *PT = dyn_cast<PointerType>(I->getType());
302 assert(PT && "Global variable is not a pointer!");
303
304 unsigned AddressSpace = PT->getAddressSpace();
305
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000306 // Ignore fancy-aligned globals for now.
Stephen Hines36b56882014-04-23 16:57:46 -0700307 unsigned Alignment = DL->getPreferredAlignment(I);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000308 Type *Ty = I->getType()->getElementType();
Stephen Hines36b56882014-04-23 16:57:46 -0700309 if (Alignment > DL->getABITypeAlignment(Ty))
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000310 continue;
311
Anton Korobeynikovb5a0ef92010-07-26 18:45:39 +0000312 // Ignore all 'special' globals.
313 if (I->getName().startswith("llvm.") ||
314 I->getName().startswith(".llvm."))
315 continue;
316
Quentin Colombete5728092013-03-18 22:30:07 +0000317 // Ignore all "required" globals:
Quentin Colombete5728092013-03-18 22:30:07 +0000318 if (isMustKeepGlobalVariable(I))
319 continue;
320
Stephen Hines36b56882014-04-23 16:57:46 -0700321 if (DL->getTypeAllocSize(Ty) < MaxOffset) {
Stephen Hinesc6a4f5e2014-07-21 00:45:20 -0700322 if (TargetLoweringObjectFile::getKindForGlobal(I, *TM).isBSSLocal())
Silviu Barangae9716592013-01-07 12:31:25 +0000323 BSSGlobals[AddressSpace].push_back(I);
Bob Wilson05646092010-11-17 21:25:39 +0000324 else if (I->isConstant())
Silviu Barangae9716592013-01-07 12:31:25 +0000325 ConstGlobals[AddressSpace].push_back(I);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000326 else
Silviu Barangae9716592013-01-07 12:31:25 +0000327 Globals[AddressSpace].push_back(I);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000328 }
329 }
330
Silviu Barangae9716592013-01-07 12:31:25 +0000331 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
332 I = Globals.begin(), E = Globals.end(); I != E; ++I)
333 if (I->second.size() > 1)
334 Changed |= doMerge(I->second, M, false, I->first);
335
336 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
337 I = BSSGlobals.begin(), E = BSSGlobals.end(); I != E; ++I)
338 if (I->second.size() > 1)
339 Changed |= doMerge(I->second, M, false, I->first);
Bob Wilson05646092010-11-17 21:25:39 +0000340
Quentin Colombete5728092013-03-18 22:30:07 +0000341 if (EnableGlobalMergeOnConst)
342 for (DenseMap<unsigned, SmallVector<GlobalVariable*, 16> >::iterator
343 I = ConstGlobals.begin(), E = ConstGlobals.end(); I != E; ++I)
344 if (I->second.size() > 1)
345 Changed |= doMerge(I->second, M, true, I->first);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000346
347 return Changed;
348}
349
Devang Patel827454e2011-10-17 17:17:43 +0000350bool GlobalMerge::runOnFunction(Function &F) {
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000351 return false;
352}
353
Quentin Colombet9deb9172013-03-19 21:46:49 +0000354bool GlobalMerge::doFinalization(Module &M) {
355 MustKeepGlobalVariables.clear();
356 return false;
357}
358
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700359Pass *llvm::createGlobalMergePass(const TargetMachine *TM, unsigned Offset) {
360 return new GlobalMerge(TM, Offset);
Anton Korobeynikovcec36f42010-07-24 21:52:08 +0000361}