blob: 30645f4400e39930b1306db301597cfb94058ab6 [file] [log] [blame]
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +00001//===- MergedLoadStoreMotion.cpp - merge and hoist/sink load/stores -------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +00006//
7//===----------------------------------------------------------------------===//
8//
9//! \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010//! This pass performs merges of loads and stores on both sides of a
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000011// diamond (hammock). It hoists the loads and sinks the stores.
12//
13// The algorithm iteratively hoists two loads to the same address out of a
14// diamond (hammock) and merges them into a single load in the header. Similar
15// it sinks and merges two stores to the tail block (footer). The algorithm
16// iterates over the instructions of one side of the diamond and attempts to
17// find a matching load/store on the other side. It hoists / sinks when it
18// thinks it safe to do so. This optimization helps with eg. hiding load
19// latencies, triggering if-conversion, and reducing static code size.
20//
Daniel Berlin390dfde2017-01-24 19:55:36 +000021// NOTE: This code no longer performs load hoisting, it is subsumed by GVNHoist.
22//
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000023//===----------------------------------------------------------------------===//
24//
25//
26// Example:
27// Diamond shaped code before merge:
28//
29// header:
30// br %cond, label %if.then, label %if.else
Gerolf Hoflehnerea96a3d2014-08-07 23:19:55 +000031// + +
32// + +
33// + +
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000034// if.then: if.else:
35// %lt = load %addr_l %le = load %addr_l
36// <use %lt> <use %le>
37// <...> <...>
38// store %st, %addr_s store %se, %addr_s
39// br label %if.end br label %if.end
Gerolf Hoflehnerea96a3d2014-08-07 23:19:55 +000040// + +
41// + +
42// + +
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000043// if.end ("footer"):
44// <...>
45//
46// Diamond shaped code after merge:
47//
48// header:
49// %l = load %addr_l
50// br %cond, label %if.then, label %if.else
Gerolf Hoflehnerea96a3d2014-08-07 23:19:55 +000051// + +
52// + +
53// + +
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000054// if.then: if.else:
55// <use %l> <use %l>
56// <...> <...>
57// br label %if.end br label %if.end
Gerolf Hoflehnerea96a3d2014-08-07 23:19:55 +000058// + +
59// + +
60// + +
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000061// if.end ("footer"):
62// %s.sink = phi [%st, if.then], [%se, if.else]
63// <...>
64// store %s.sink, %addr_s
65// <...>
66//
67//
68//===----------------------- TODO -----------------------------------------===//
69//
70// 1) Generalize to regions other than diamonds
71// 2) Be more aggressive merging memory operations
72// Note that both changes require register pressure control
73//
74//===----------------------------------------------------------------------===//
75
Davide Italianob49aa5c2016-06-17 19:10:09 +000076#include "llvm/Transforms/Scalar/MergedLoadStoreMotion.h"
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000077#include "llvm/ADT/Statistic.h"
78#include "llvm/Analysis/AliasAnalysis.h"
79#include "llvm/Analysis/CFG.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000080#include "llvm/Analysis/GlobalsModRef.h"
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000081#include "llvm/Analysis/Loads.h"
Eli Friedman9f8031c2016-06-12 02:11:20 +000082#include "llvm/Analysis/ValueTracking.h"
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000083#include "llvm/IR/Metadata.h"
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000084#include "llvm/Support/Debug.h"
Benjamin Kramerb85d3752015-03-23 18:45:56 +000085#include "llvm/Support/raw_ostream.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000086#include "llvm/Transforms/Scalar.h"
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000087#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Hans Wennborg083ca9b2015-10-06 23:24:35 +000088
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000089using namespace llvm;
90
91#define DEBUG_TYPE "mldst-motion"
92
Benjamin Kramer4d098922016-07-10 11:28:51 +000093namespace {
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000094//===----------------------------------------------------------------------===//
95// MergedLoadStoreMotion Pass
96//===----------------------------------------------------------------------===//
Davide Italianob49aa5c2016-06-17 19:10:09 +000097class MergedLoadStoreMotion {
Davide Italianob49aa5c2016-06-17 19:10:09 +000098 AliasAnalysis *AA = nullptr;
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +000099
Davide Italianob49aa5c2016-06-17 19:10:09 +0000100 // The mergeLoad/Store algorithms could have Size0 * Size1 complexity,
101 // where Size0 and Size1 are the #instructions on the two sides of
102 // the diamond. The constant chosen here is arbitrary. Compiler Time
103 // Control is enforced by the check Size0 * Size1 < MagicCompileTimeControl.
104 const int MagicCompileTimeControl = 250;
Davide Italiano41315f72016-06-16 17:40:53 +0000105
106public:
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000107 bool run(Function &F, AliasAnalysis &AA);
Davide Italiano41315f72016-06-16 17:40:53 +0000108
109private:
Davide Italiano41315f72016-06-16 17:40:53 +0000110 BasicBlock *getDiamondTail(BasicBlock *BB);
111 bool isDiamondHead(BasicBlock *BB);
Davide Italiano41315f72016-06-16 17:40:53 +0000112 // Routines for sinking stores
113 StoreInst *canSinkFromBlock(BasicBlock *BB, StoreInst *SI);
114 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
115 bool isStoreSinkBarrierInRange(const Instruction &Start,
116 const Instruction &End, MemoryLocation Loc);
117 bool sinkStore(BasicBlock *BB, StoreInst *SinkCand, StoreInst *ElseInst);
118 bool mergeStores(BasicBlock *BB);
Davide Italiano41315f72016-06-16 17:40:53 +0000119};
Benjamin Kramer4d098922016-07-10 11:28:51 +0000120} // end anonymous namespace
Davide Italiano41315f72016-06-16 17:40:53 +0000121
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000122///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000123/// Return tail block of a diamond.
Davide Italiano41315f72016-06-16 17:40:53 +0000124///
125BasicBlock *MergedLoadStoreMotion::getDiamondTail(BasicBlock *BB) {
126 assert(isDiamondHead(BB) && "Basic block is not head of a diamond");
127 return BB->getTerminator()->getSuccessor(0)->getSingleSuccessor();
128}
129
130///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000131/// True when BB is the head of a diamond (hammock)
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000132///
Davide Italiano41315f72016-06-16 17:40:53 +0000133bool MergedLoadStoreMotion::isDiamondHead(BasicBlock *BB) {
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000134 if (!BB)
135 return false;
David Majnemer8cce3332016-05-26 05:43:12 +0000136 auto *BI = dyn_cast<BranchInst>(BB->getTerminator());
137 if (!BI || !BI->isConditional())
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000138 return false;
139
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000140 BasicBlock *Succ0 = BI->getSuccessor(0);
141 BasicBlock *Succ1 = BI->getSuccessor(1);
142
David Majnemer8cce3332016-05-26 05:43:12 +0000143 if (!Succ0->getSinglePredecessor())
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000144 return false;
David Majnemer8cce3332016-05-26 05:43:12 +0000145 if (!Succ1->getSinglePredecessor())
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000146 return false;
147
David Majnemer8cce3332016-05-26 05:43:12 +0000148 BasicBlock *Succ0Succ = Succ0->getSingleSuccessor();
149 BasicBlock *Succ1Succ = Succ1->getSingleSuccessor();
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000150 // Ignore triangles.
David Majnemer8cce3332016-05-26 05:43:12 +0000151 if (!Succ0Succ || !Succ1Succ || Succ0Succ != Succ1Succ)
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000152 return false;
153 return true;
154}
155
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000156
157///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000158/// True when instruction is a sink barrier for a store
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000159/// located in Loc
160///
161/// Whenever an instruction could possibly read or modify the
162/// value being stored or protect against the store from
163/// happening it is considered a sink barrier.
164///
Davide Italiano41315f72016-06-16 17:40:53 +0000165bool MergedLoadStoreMotion::isStoreSinkBarrierInRange(const Instruction &Start,
166 const Instruction &End,
167 MemoryLocation Loc) {
David Majnemer47451252016-05-26 07:11:09 +0000168 for (const Instruction &Inst :
169 make_range(Start.getIterator(), End.getIterator()))
170 if (Inst.mayThrow())
171 return true;
Alina Sbirlea193429f2017-12-07 22:41:34 +0000172 return AA->canInstructionRangeModRef(Start, End, Loc, ModRefInfo::ModRef);
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000173}
174
175///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000176/// Check if \p BB contains a store to the same address as \p SI
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000177///
178/// \return The store in \p when it is safe to sink. Otherwise return Null.
179///
Davide Italiano41315f72016-06-16 17:40:53 +0000180StoreInst *MergedLoadStoreMotion::canSinkFromBlock(BasicBlock *BB1,
181 StoreInst *Store0) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000182 LLVM_DEBUG(dbgs() << "can Sink? : "; Store0->dump(); dbgs() << "\n");
Elena Demikhovskyef035bb2015-02-17 13:10:05 +0000183 BasicBlock *BB0 = Store0->getParent();
David Majnemerd7708772016-06-24 04:05:21 +0000184 for (Instruction &Inst : reverse(*BB1)) {
185 auto *Store1 = dyn_cast<StoreInst>(&Inst);
David Majnemer47451252016-05-26 07:11:09 +0000186 if (!Store1)
187 continue;
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000188
Chandler Carruthac80dc72015-06-17 07:18:54 +0000189 MemoryLocation Loc0 = MemoryLocation::get(Store0);
190 MemoryLocation Loc1 = MemoryLocation::get(Store1);
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000191 if (AA->isMustAlias(Loc0, Loc1) && Store0->isSameOperationAs(Store1) &&
Davide Italiano41315f72016-06-16 17:40:53 +0000192 !isStoreSinkBarrierInRange(*Store1->getNextNode(), BB1->back(), Loc1) &&
193 !isStoreSinkBarrierInRange(*Store0->getNextNode(), BB0->back(), Loc0)) {
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000194 return Store1;
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000195 }
196 }
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000197 return nullptr;
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000198}
199
200///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000201/// Create a PHI node in BB for the operands of S0 and S1
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000202///
Davide Italiano41315f72016-06-16 17:40:53 +0000203PHINode *MergedLoadStoreMotion::getPHIOperand(BasicBlock *BB, StoreInst *S0,
204 StoreInst *S1) {
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000205 // Create a phi if the values mismatch.
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000206 Value *Opd1 = S0->getValueOperand();
207 Value *Opd2 = S1->getValueOperand();
David Majnemer8cce3332016-05-26 05:43:12 +0000208 if (Opd1 == Opd2)
209 return nullptr;
210
211 auto *NewPN = PHINode::Create(Opd1->getType(), 2, Opd2->getName() + ".sink",
212 &BB->front());
Jordan Rupprecht80e7e862018-11-02 18:25:41 +0000213 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc());
David Majnemer8cce3332016-05-26 05:43:12 +0000214 NewPN->addIncoming(Opd1, S0->getParent());
215 NewPN->addIncoming(Opd2, S1->getParent());
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000216 return NewPN;
217}
218
219///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000220/// Merge two stores to same address and sink into \p BB
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000221///
222/// Also sinks GEP instruction computing the store address
223///
Davide Italiano41315f72016-06-16 17:40:53 +0000224bool MergedLoadStoreMotion::sinkStore(BasicBlock *BB, StoreInst *S0,
225 StoreInst *S1) {
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000226 // Only one definition?
David Majnemer8cce3332016-05-26 05:43:12 +0000227 auto *A0 = dyn_cast<Instruction>(S0->getPointerOperand());
228 auto *A1 = dyn_cast<Instruction>(S1->getPointerOperand());
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000229 if (A0 && A1 && A0->isIdenticalTo(A1) && A0->hasOneUse() &&
230 (A0->getParent() == S0->getParent()) && A1->hasOneUse() &&
231 (A1->getParent() == S1->getParent()) && isa<GetElementPtrInst>(A0)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000232 LLVM_DEBUG(dbgs() << "Sink Instruction into BB \n"; BB->dump();
233 dbgs() << "Instruction Left\n"; S0->dump(); dbgs() << "\n";
234 dbgs() << "Instruction Right\n"; S1->dump(); dbgs() << "\n");
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000235 // Hoist the instruction.
236 BasicBlock::iterator InsertPt = BB->getFirstInsertionPt();
237 // Intersect optional metadata.
Peter Collingbourne8f1dd5c2016-09-07 23:39:04 +0000238 S0->andIRFlags(S1);
Adrian Prantlcbdfdb72015-08-20 22:00:30 +0000239 S0->dropUnknownNonDebugMetadata();
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000240
241 // Create the new store to be inserted at the join point.
David Majnemer8cce3332016-05-26 05:43:12 +0000242 StoreInst *SNew = cast<StoreInst>(S0->clone());
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000243 Instruction *ANew = A0->clone();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000244 SNew->insertBefore(&*InsertPt);
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000245 ANew->insertBefore(SNew);
246
247 assert(S0->getParent() == A0->getParent());
248 assert(S1->getParent() == A1->getParent());
249
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000250 // New PHI operand? Use it.
Davide Italiano41315f72016-06-16 17:40:53 +0000251 if (PHINode *NewPN = getPHIOperand(BB, S0, S1))
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000252 SNew->setOperand(0, NewPN);
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000253 S0->eraseFromParent();
254 S1->eraseFromParent();
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000255 A0->replaceAllUsesWith(ANew);
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000256 A0->eraseFromParent();
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000257 A1->replaceAllUsesWith(ANew);
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000258 A1->eraseFromParent();
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000259 return true;
260 }
261 return false;
262}
263
264///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000265/// True when two stores are equivalent and can sink into the footer
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000266///
267/// Starting from a diamond tail block, iterate over the instructions in one
268/// predecessor block and try to match a store in the second predecessor.
269///
Davide Italiano41315f72016-06-16 17:40:53 +0000270bool MergedLoadStoreMotion::mergeStores(BasicBlock *T) {
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000271
272 bool MergedStores = false;
273 assert(T && "Footer of a diamond cannot be empty");
274
275 pred_iterator PI = pred_begin(T), E = pred_end(T);
276 assert(PI != E);
277 BasicBlock *Pred0 = *PI;
278 ++PI;
279 BasicBlock *Pred1 = *PI;
280 ++PI;
281 // tail block of a diamond/hammock?
282 if (Pred0 == Pred1)
283 return false; // No.
284 if (PI != E)
285 return false; // No. More than 2 predecessors.
286
287 // #Instructions in Succ1 for Compile Time Control
Vedant Kumar5a0872c2018-05-16 23:20:42 +0000288 auto InstsNoDbg = Pred1->instructionsWithoutDebug();
289 int Size1 = std::distance(InstsNoDbg.begin(), InstsNoDbg.end());
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000290 int NStores = 0;
291
292 for (BasicBlock::reverse_iterator RBI = Pred0->rbegin(), RBE = Pred0->rend();
293 RBI != RBE;) {
294
295 Instruction *I = &*RBI;
296 ++RBI;
Elena Demikhovskya5599bf2014-12-15 14:09:53 +0000297
David Majnemer8cce3332016-05-26 05:43:12 +0000298 // Don't sink non-simple (atomic, volatile) stores.
299 auto *S0 = dyn_cast<StoreInst>(I);
300 if (!S0 || !S0->isSimple())
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000301 continue;
302
303 ++NStores;
304 if (NStores * Size1 >= MagicCompileTimeControl)
305 break;
Davide Italiano41315f72016-06-16 17:40:53 +0000306 if (StoreInst *S1 = canSinkFromBlock(Pred1, S0)) {
307 bool Res = sinkStore(T, S0, S1);
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000308 MergedStores |= Res;
309 // Don't attempt to sink below stores that had to stick around
310 // But after removal of a store and some of its feeding
311 // instruction search again from the beginning since the iterator
312 // is likely stale at this point.
313 if (!Res)
314 break;
David Majnemer8cce3332016-05-26 05:43:12 +0000315 RBI = Pred0->rbegin();
316 RBE = Pred0->rend();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000317 LLVM_DEBUG(dbgs() << "Search again\n"; Instruction *I = &*RBI; I->dump());
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000318 }
319 }
320 return MergedStores;
321}
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000322
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000323bool MergedLoadStoreMotion::run(Function &F, AliasAnalysis &AA) {
Davide Italianob49aa5c2016-06-17 19:10:09 +0000324 this->AA = &AA;
Davide Italiano41315f72016-06-16 17:40:53 +0000325
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000326 bool Changed = false;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000327 LLVM_DEBUG(dbgs() << "Instruction Merger\n");
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000328
329 // Merge unconditional branches, allowing PRE to catch more
330 // optimization opportunities.
331 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE;) {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000332 BasicBlock *BB = &*FI++;
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000333
334 // Hoist equivalent loads and sink stores
335 // outside diamonds when possible
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000336 if (isDiamondHead(BB)) {
Davide Italiano41315f72016-06-16 17:40:53 +0000337 Changed |= mergeStores(getDiamondTail(BB));
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000338 }
339 }
340 return Changed;
341}
Davide Italianob49aa5c2016-06-17 19:10:09 +0000342
343namespace {
344class MergedLoadStoreMotionLegacyPass : public FunctionPass {
345public:
346 static char ID; // Pass identification, replacement for typeid
347 MergedLoadStoreMotionLegacyPass() : FunctionPass(ID) {
348 initializeMergedLoadStoreMotionLegacyPassPass(
349 *PassRegistry::getPassRegistry());
350 }
351
352 ///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000353 /// Run the transformation for each function
Davide Italianob49aa5c2016-06-17 19:10:09 +0000354 ///
355 bool runOnFunction(Function &F) override {
356 if (skipFunction(F))
357 return false;
358 MergedLoadStoreMotion Impl;
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000359 return Impl.run(F, getAnalysis<AAResultsWrapperPass>().getAAResults());
Davide Italianob49aa5c2016-06-17 19:10:09 +0000360 }
361
362private:
Davide Italianob49aa5c2016-06-17 19:10:09 +0000363 void getAnalysisUsage(AnalysisUsage &AU) const override {
364 AU.setPreservesCFG();
365 AU.addRequired<AAResultsWrapperPass>();
366 AU.addPreserved<GlobalsAAWrapperPass>();
Davide Italianob49aa5c2016-06-17 19:10:09 +0000367 }
368};
369
370char MergedLoadStoreMotionLegacyPass::ID = 0;
371} // anonymous namespace
372
373///
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000374/// createMergedLoadStoreMotionPass - The public interface to this file.
Davide Italianob49aa5c2016-06-17 19:10:09 +0000375///
376FunctionPass *llvm::createMergedLoadStoreMotionPass() {
377 return new MergedLoadStoreMotionLegacyPass();
378}
379
380INITIALIZE_PASS_BEGIN(MergedLoadStoreMotionLegacyPass, "mldst-motion",
381 "MergedLoadStoreMotion", false, false)
Davide Italianob49aa5c2016-06-17 19:10:09 +0000382INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
383INITIALIZE_PASS_END(MergedLoadStoreMotionLegacyPass, "mldst-motion",
384 "MergedLoadStoreMotion", false, false)
385
386PreservedAnalyses
Sean Silva36e0d012016-08-09 00:28:15 +0000387MergedLoadStoreMotionPass::run(Function &F, FunctionAnalysisManager &AM) {
Davide Italianob49aa5c2016-06-17 19:10:09 +0000388 MergedLoadStoreMotion Impl;
Davide Italianob49aa5c2016-06-17 19:10:09 +0000389 auto &AA = AM.getResult<AAManager>(F);
Bjorn Steinbrink983d6c32018-02-23 10:41:57 +0000390 if (!Impl.run(F, AA))
Davide Italianob49aa5c2016-06-17 19:10:09 +0000391 return PreservedAnalyses::all();
392
Davide Italianob49aa5c2016-06-17 19:10:09 +0000393 PreservedAnalyses PA;
Chandler Carruthca68a3e2017-01-15 06:32:49 +0000394 PA.preserveSet<CFGAnalyses>();
Davide Italianob49aa5c2016-06-17 19:10:09 +0000395 PA.preserve<GlobalsAA>();
Davide Italianob49aa5c2016-06-17 19:10:09 +0000396 return PA;
397}