blob: 7b633b20077d443e97154d56d11c1d1e4829c0d0 [file] [log] [blame]
Chris Lattner4d1e46e2002-05-07 18:07:59 +00001//===-- BasicBlockUtils.cpp - BasicBlock Utilities -------------------------==//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner4d1e46e2002-05-07 18:07:59 +00009//
10// This family of functions perform manipulations on basic blocks, and
11// instructions contained within basic blocks.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Transforms/Utils/BasicBlockUtils.h"
16#include "llvm/Function.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000017#include "llvm/Instructions.h"
Chris Lattnerb0f0ef82002-07-29 22:32:08 +000018#include "llvm/Constant.h"
19#include "llvm/Type.h"
Chris Lattner54b9c3b2008-04-21 01:28:02 +000020#include "llvm/Analysis/AliasAnalysis.h"
Devang Patel80198932007-07-06 21:39:20 +000021#include "llvm/Analysis/LoopInfo.h"
22#include "llvm/Analysis/Dominators.h"
Chris Lattneree6e10b2008-11-27 08:18:12 +000023#include "llvm/Target/TargetData.h"
Chris Lattner4d1e46e2002-05-07 18:07:59 +000024#include <algorithm>
Chris Lattnerf7703df2004-01-09 06:12:26 +000025using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000026
Chris Lattner71af9b02008-12-03 06:40:52 +000027/// DeleteDeadBlock - Delete the specified block, which must have no
28/// predecessors.
29void llvm::DeleteDeadBlock(BasicBlock *BB) {
Chris Lattner2973a252008-12-03 07:45:15 +000030 assert((pred_begin(BB) == pred_end(BB) ||
31 // Can delete self loop.
32 BB->getSinglePredecessor() == BB) && "Block is not dead!");
Chris Lattner2b1ba242008-12-03 06:37:44 +000033 TerminatorInst *BBTerm = BB->getTerminator();
Devang Patel5622f072009-02-24 00:05:16 +000034
Chris Lattner2b1ba242008-12-03 06:37:44 +000035 // Loop through all of our successors and make sure they know that one
36 // of their predecessors is going away.
37 for (unsigned i = 0, e = BBTerm->getNumSuccessors(); i != e; ++i)
38 BBTerm->getSuccessor(i)->removePredecessor(BB);
39
40 // Zap all the instructions in the block.
41 while (!BB->empty()) {
42 Instruction &I = BB->back();
43 // If this instruction is used, replace uses with an arbitrary value.
44 // Because control flow can't get here, we don't care what we replace the
45 // value with. Note that since this block is unreachable, and all values
46 // contained within it must dominate their uses, that all uses will
47 // eventually be removed (they are themselves dead).
48 if (!I.use_empty())
49 I.replaceAllUsesWith(UndefValue::get(I.getType()));
50 BB->getInstList().pop_back();
51 }
Devang Patel5622f072009-02-24 00:05:16 +000052
Chris Lattner2b1ba242008-12-03 06:37:44 +000053 // Zap the block!
54 BB->eraseFromParent();
Chris Lattner2b1ba242008-12-03 06:37:44 +000055}
56
Chris Lattner29874e02008-12-03 19:44:02 +000057/// FoldSingleEntryPHINodes - We know that BB has one predecessor. If there are
58/// any single-entry PHI nodes in it, fold them away. This handles the case
59/// when all entries to the PHI nodes in a block are guaranteed equal, such as
60/// when the block has exactly one predecessor.
61void llvm::FoldSingleEntryPHINodes(BasicBlock *BB) {
62 if (!isa<PHINode>(BB->begin()))
63 return;
64
65 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
66 if (PN->getIncomingValue(0) != PN)
67 PN->replaceAllUsesWith(PN->getIncomingValue(0));
68 else
69 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
70 PN->eraseFromParent();
71 }
72}
73
74
Owen Andersonb31b06d2008-07-17 00:01:40 +000075/// MergeBlockIntoPredecessor - Attempts to merge a block into its predecessor,
76/// if possible. The return value indicates success or failure.
77bool llvm::MergeBlockIntoPredecessor(BasicBlock* BB, Pass* P) {
Owen Anderson11f2ec82008-07-17 19:42:29 +000078 pred_iterator PI(pred_begin(BB)), PE(pred_end(BB));
Owen Andersonb31b06d2008-07-17 00:01:40 +000079 // Can't merge the entry block.
80 if (pred_begin(BB) == pred_end(BB)) return false;
Owen Andersonb31b06d2008-07-17 00:01:40 +000081
Owen Anderson11f2ec82008-07-17 19:42:29 +000082 BasicBlock *PredBB = *PI++;
83 for (; PI != PE; ++PI) // Search all predecessors, see if they are all same
84 if (*PI != PredBB) {
85 PredBB = 0; // There are multiple different predecessors...
86 break;
87 }
Owen Andersonb31b06d2008-07-17 00:01:40 +000088
Owen Anderson11f2ec82008-07-17 19:42:29 +000089 // Can't merge if there are multiple predecessors.
90 if (!PredBB) return false;
Owen Anderson3ecaf1b2008-07-18 17:46:41 +000091 // Don't break self-loops.
92 if (PredBB == BB) return false;
93 // Don't break invokes.
94 if (isa<InvokeInst>(PredBB->getTerminator())) return false;
Owen Anderson11f2ec82008-07-17 19:42:29 +000095
96 succ_iterator SI(succ_begin(PredBB)), SE(succ_end(PredBB));
97 BasicBlock* OnlySucc = BB;
98 for (; SI != SE; ++SI)
99 if (*SI != OnlySucc) {
100 OnlySucc = 0; // There are multiple distinct successors!
101 break;
102 }
103
104 // Can't merge if there are multiple successors.
105 if (!OnlySucc) return false;
Devang Patele435a5d2008-09-09 01:06:56 +0000106
107 // Can't merge if there is PHI loop.
108 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; ++BI) {
109 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
110 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
111 if (PN->getIncomingValue(i) == PN)
112 return false;
113 } else
114 break;
115 }
116
Owen Andersonb31b06d2008-07-17 00:01:40 +0000117 // Begin by getting rid of unneeded PHIs.
118 while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) {
119 PN->replaceAllUsesWith(PN->getIncomingValue(0));
120 BB->getInstList().pop_front(); // Delete the phi node...
121 }
122
123 // Delete the unconditional branch from the predecessor...
124 PredBB->getInstList().pop_back();
125
126 // Move all definitions in the successor to the predecessor...
127 PredBB->getInstList().splice(PredBB->end(), BB->getInstList());
128
129 // Make all PHI nodes that referred to BB now refer to Pred as their
130 // source...
131 BB->replaceAllUsesWith(PredBB);
132
Owen Anderson11f2ec82008-07-17 19:42:29 +0000133 // Inherit predecessors name if it exists.
134 if (!PredBB->hasName())
135 PredBB->takeName(BB);
136
Owen Andersonb31b06d2008-07-17 00:01:40 +0000137 // Finally, erase the old block and update dominator info.
138 if (P) {
Duncan Sands1465d612009-01-28 13:14:17 +0000139 if (DominatorTree* DT = P->getAnalysisIfAvailable<DominatorTree>()) {
Owen Andersonb31b06d2008-07-17 00:01:40 +0000140 DomTreeNode* DTN = DT->getNode(BB);
141 DomTreeNode* PredDTN = DT->getNode(PredBB);
142
143 if (DTN) {
144 SmallPtrSet<DomTreeNode*, 8> Children(DTN->begin(), DTN->end());
145 for (SmallPtrSet<DomTreeNode*, 8>::iterator DI = Children.begin(),
146 DE = Children.end(); DI != DE; ++DI)
147 DT->changeImmediateDominator(*DI, PredDTN);
148
149 DT->eraseNode(BB);
150 }
151 }
152 }
153
154 BB->eraseFromParent();
155
156
157 return true;
158}
159
Chris Lattner0f67dd62005-04-21 16:04:49 +0000160/// ReplaceInstWithValue - Replace all uses of an instruction (specified by BI)
161/// with a value, then remove and delete the original instruction.
162///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000163void llvm::ReplaceInstWithValue(BasicBlock::InstListType &BIL,
164 BasicBlock::iterator &BI, Value *V) {
Chris Lattner18961502002-06-25 16:12:52 +0000165 Instruction &I = *BI;
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000166 // Replaces all of the uses of the instruction with uses of the value
Chris Lattner18961502002-06-25 16:12:52 +0000167 I.replaceAllUsesWith(V);
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000168
Chris Lattner86cc4232007-02-11 01:37:51 +0000169 // Make sure to propagate a name if there is one already.
170 if (I.hasName() && !V->hasName())
171 V->takeName(&I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000172
Misha Brukman5560c9d2003-08-18 14:43:39 +0000173 // Delete the unnecessary instruction now...
Chris Lattner18961502002-06-25 16:12:52 +0000174 BI = BIL.erase(BI);
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000175}
176
177
Chris Lattner0f67dd62005-04-21 16:04:49 +0000178/// ReplaceInstWithInst - Replace the instruction specified by BI with the
179/// instruction specified by I. The original instruction is deleted and BI is
180/// updated to point to the new instruction.
181///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000182void llvm::ReplaceInstWithInst(BasicBlock::InstListType &BIL,
183 BasicBlock::iterator &BI, Instruction *I) {
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000184 assert(I->getParent() == 0 &&
185 "ReplaceInstWithInst: Instruction already inserted into basic block!");
186
187 // Insert the new instruction into the basic block...
Chris Lattner18961502002-06-25 16:12:52 +0000188 BasicBlock::iterator New = BIL.insert(BI, I);
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000189
190 // Replace all uses of the old instruction, and delete it.
191 ReplaceInstWithValue(BIL, BI, I);
192
193 // Move BI back to point to the newly inserted instruction
Chris Lattner18961502002-06-25 16:12:52 +0000194 BI = New;
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000195}
196
Chris Lattner0f67dd62005-04-21 16:04:49 +0000197/// ReplaceInstWithInst - Replace the instruction specified by From with the
198/// instruction specified by To.
199///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000200void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) {
Chris Lattner18961502002-06-25 16:12:52 +0000201 BasicBlock::iterator BI(From);
202 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
Chris Lattner4d1e46e2002-05-07 18:07:59 +0000203}
Chris Lattnerb0f0ef82002-07-29 22:32:08 +0000204
Chris Lattner0f67dd62005-04-21 16:04:49 +0000205/// RemoveSuccessor - Change the specified terminator instruction such that its
Reid Spencerbc2eba12006-05-19 19:09:46 +0000206/// successor SuccNum no longer exists. Because this reduces the outgoing
Chris Lattner0f67dd62005-04-21 16:04:49 +0000207/// degree of the current basic block, the actual terminator instruction itself
Reid Spencerbc2eba12006-05-19 19:09:46 +0000208/// may have to be changed. In the case where the last successor of the block
209/// is deleted, a return instruction is inserted in its place which can cause a
Chris Lattner0f67dd62005-04-21 16:04:49 +0000210/// surprising change in program behavior if it is not expected.
211///
Chris Lattnerf7703df2004-01-09 06:12:26 +0000212void llvm::RemoveSuccessor(TerminatorInst *TI, unsigned SuccNum) {
Chris Lattnerb0f0ef82002-07-29 22:32:08 +0000213 assert(SuccNum < TI->getNumSuccessors() &&
214 "Trying to remove a nonexistant successor!");
215
216 // If our old successor block contains any PHI nodes, remove the entry in the
217 // PHI nodes that comes from this branch...
218 //
219 BasicBlock *BB = TI->getParent();
220 TI->getSuccessor(SuccNum)->removePredecessor(BB);
221
222 TerminatorInst *NewTI = 0;
223 switch (TI->getOpcode()) {
224 case Instruction::Br:
225 // If this is a conditional branch... convert to unconditional branch.
226 if (TI->getNumSuccessors() == 2) {
227 cast<BranchInst>(TI)->setUnconditionalDest(TI->getSuccessor(1-SuccNum));
228 } else { // Otherwise convert to a return instruction...
229 Value *RetVal = 0;
Misha Brukmanfd939082005-04-21 23:48:37 +0000230
Chris Lattnerb0f0ef82002-07-29 22:32:08 +0000231 // Create a value to return... if the function doesn't return null...
232 if (BB->getParent()->getReturnType() != Type::VoidTy)
233 RetVal = Constant::getNullValue(BB->getParent()->getReturnType());
234
235 // Create the return...
Gabor Greif051a9502008-04-06 20:25:17 +0000236 NewTI = ReturnInst::Create(RetVal);
Chris Lattnerb0f0ef82002-07-29 22:32:08 +0000237 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000238 break;
Chris Lattnerb0f0ef82002-07-29 22:32:08 +0000239
240 case Instruction::Invoke: // Should convert to call
241 case Instruction::Switch: // Should remove entry
242 default:
243 case Instruction::Ret: // Cannot happen, has no successors!
244 assert(0 && "Unhandled terminator instruction type in RemoveSuccessor!");
245 abort();
246 }
247
248 if (NewTI) // If it's a different instruction, replace.
249 ReplaceInstWithInst(TI, NewTI);
250}
Brian Gaeked0fde302003-11-11 22:41:34 +0000251
Devang Patel80198932007-07-06 21:39:20 +0000252/// SplitEdge - Split the edge connecting specified block. Pass P must
253/// not be NULL.
254BasicBlock *llvm::SplitEdge(BasicBlock *BB, BasicBlock *Succ, Pass *P) {
255 TerminatorInst *LatchTerm = BB->getTerminator();
256 unsigned SuccNum = 0;
Devang Patel8a88a142008-11-03 23:14:09 +0000257#ifndef NDEBUG
258 unsigned e = LatchTerm->getNumSuccessors();
259#endif
260 for (unsigned i = 0; ; ++i) {
Devang Patel80198932007-07-06 21:39:20 +0000261 assert(i != e && "Didn't find edge?");
262 if (LatchTerm->getSuccessor(i) == Succ) {
263 SuccNum = i;
264 break;
265 }
266 }
267
268 // If this is a critical edge, let SplitCriticalEdge do it.
269 if (SplitCriticalEdge(BB->getTerminator(), SuccNum, P))
270 return LatchTerm->getSuccessor(SuccNum);
271
272 // If the edge isn't critical, then BB has a single successor or Succ has a
273 // single pred. Split the block.
274 BasicBlock::iterator SplitPoint;
275 if (BasicBlock *SP = Succ->getSinglePredecessor()) {
276 // If the successor only has a single pred, split the top of the successor
277 // block.
278 assert(SP == BB && "CFG broken");
Devang Patel8a88a142008-11-03 23:14:09 +0000279 SP = NULL;
Devang Patel80198932007-07-06 21:39:20 +0000280 return SplitBlock(Succ, Succ->begin(), P);
281 } else {
282 // Otherwise, if BB has a single successor, split it at the bottom of the
283 // block.
284 assert(BB->getTerminator()->getNumSuccessors() == 1 &&
285 "Should have a single succ!");
286 return SplitBlock(BB, BB->getTerminator(), P);
287 }
288}
289
290/// SplitBlock - Split the specified block at the specified instruction - every
291/// thing before SplitPt stays in Old and everything starting with SplitPt moves
292/// to a new block. The two blocks are joined by an unconditional branch and
293/// the loop info is updated.
294///
295BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) {
Devang Patel80198932007-07-06 21:39:20 +0000296 BasicBlock::iterator SplitIt = SplitPt;
297 while (isa<PHINode>(SplitIt))
298 ++SplitIt;
299 BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split");
300
301 // The new block lives in whichever loop the old one did.
Duncan Sands1465d612009-01-28 13:14:17 +0000302 if (LoopInfo* LI = P->getAnalysisIfAvailable<LoopInfo>())
Owen Andersona90793b2008-10-03 06:55:35 +0000303 if (Loop *L = LI->getLoopFor(Old))
304 L->addBasicBlockToLoop(New, LI->getBase());
Devang Patel80198932007-07-06 21:39:20 +0000305
Duncan Sands1465d612009-01-28 13:14:17 +0000306 if (DominatorTree *DT = P->getAnalysisIfAvailable<DominatorTree>())
Devang Patela8a8a362007-07-19 02:29:24 +0000307 {
308 // Old dominates New. New node domiantes all other nodes dominated by Old.
309 DomTreeNode *OldNode = DT->getNode(Old);
310 std::vector<DomTreeNode *> Children;
311 for (DomTreeNode::iterator I = OldNode->begin(), E = OldNode->end();
312 I != E; ++I)
313 Children.push_back(*I);
314
315 DomTreeNode *NewNode = DT->addNewBlock(New,Old);
316
317 for (std::vector<DomTreeNode *>::iterator I = Children.begin(),
318 E = Children.end(); I != E; ++I)
319 DT->changeImmediateDominator(*I, NewNode);
320 }
Devang Patel80198932007-07-06 21:39:20 +0000321
Duncan Sands1465d612009-01-28 13:14:17 +0000322 if (DominanceFrontier *DF = P->getAnalysisIfAvailable<DominanceFrontier>())
Devang Patel80198932007-07-06 21:39:20 +0000323 DF->splitBlock(Old);
324
325 return New;
326}
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000327
328
329/// SplitBlockPredecessors - This method transforms BB by introducing a new
330/// basic block into the function, and moving some of the predecessors of BB to
331/// be predecessors of the new block. The new predecessors are indicated by the
332/// Preds array, which has NumPreds elements in it. The new block is given a
333/// suffix of 'Suffix'.
334///
335/// This currently updates the LLVM IR, AliasAnalysis, DominatorTree and
336/// DominanceFrontier, but no other analyses.
337BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB,
338 BasicBlock *const *Preds,
339 unsigned NumPreds, const char *Suffix,
340 Pass *P) {
341 // Create new basic block, insert right before the original block.
342 BasicBlock *NewBB =
343 BasicBlock::Create(BB->getName()+Suffix, BB->getParent(), BB);
344
345 // The new block unconditionally branches to the old block.
346 BranchInst *BI = BranchInst::Create(BB, NewBB);
347
348 // Move the edges from Preds to point to NewBB instead of BB.
Nick Lewycky280a6e62008-04-25 16:53:59 +0000349 for (unsigned i = 0; i != NumPreds; ++i)
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000350 Preds[i]->getTerminator()->replaceUsesOfWith(BB, NewBB);
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000351
352 // Update dominator tree and dominator frontier if available.
Duncan Sands1465d612009-01-28 13:14:17 +0000353 DominatorTree *DT = P ? P->getAnalysisIfAvailable<DominatorTree>() : 0;
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000354 if (DT)
355 DT->splitBlock(NewBB);
Duncan Sands1465d612009-01-28 13:14:17 +0000356 if (DominanceFrontier *DF = P ? P->getAnalysisIfAvailable<DominanceFrontier>():0)
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000357 DF->splitBlock(NewBB);
Duncan Sands1465d612009-01-28 13:14:17 +0000358 AliasAnalysis *AA = P ? P->getAnalysisIfAvailable<AliasAnalysis>() : 0;
Chris Lattner54b9c3b2008-04-21 01:28:02 +0000359
360
361 // Insert a new PHI node into NewBB for every PHI node in BB and that new PHI
362 // node becomes an incoming value for BB's phi node. However, if the Preds
363 // list is empty, we need to insert dummy entries into the PHI nodes in BB to
364 // account for the newly created predecessor.
365 if (NumPreds == 0) {
366 // Insert dummy values as the incoming value.
367 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I)
368 cast<PHINode>(I)->addIncoming(UndefValue::get(I->getType()), NewBB);
369 return NewBB;
370 }
371
372 // Otherwise, create a new PHI node in NewBB for each PHI node in BB.
373 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ) {
374 PHINode *PN = cast<PHINode>(I++);
375
376 // Check to see if all of the values coming in are the same. If so, we
377 // don't need to create a new PHI node.
378 Value *InVal = PN->getIncomingValueForBlock(Preds[0]);
379 for (unsigned i = 1; i != NumPreds; ++i)
380 if (InVal != PN->getIncomingValueForBlock(Preds[i])) {
381 InVal = 0;
382 break;
383 }
384
385 if (InVal) {
386 // If all incoming values for the new PHI would be the same, just don't
387 // make a new PHI. Instead, just remove the incoming values from the old
388 // PHI.
389 for (unsigned i = 0; i != NumPreds; ++i)
390 PN->removeIncomingValue(Preds[i], false);
391 } else {
392 // If the values coming into the block are not the same, we need a PHI.
393 // Create the new PHI node, insert it into NewBB at the end of the block
394 PHINode *NewPHI =
395 PHINode::Create(PN->getType(), PN->getName()+".ph", BI);
396 if (AA) AA->copyValue(PN, NewPHI);
397
398 // Move all of the PHI values for 'Preds' to the new PHI.
399 for (unsigned i = 0; i != NumPreds; ++i) {
400 Value *V = PN->removeIncomingValue(Preds[i], false);
401 NewPHI->addIncoming(V, Preds[i]);
402 }
403 InVal = NewPHI;
404 }
405
406 // Add an incoming value to the PHI node in the loop for the preheader
407 // edge.
408 PN->addIncoming(InVal, NewBB);
409
410 // Check to see if we can eliminate this phi node.
411 if (Value *V = PN->hasConstantValue(DT != 0)) {
412 Instruction *I = dyn_cast<Instruction>(V);
413 if (!I || DT == 0 || DT->dominates(I, PN)) {
414 PN->replaceAllUsesWith(V);
415 if (AA) AA->deleteValue(PN);
416 PN->eraseFromParent();
417 }
418 }
419 }
420
421 return NewBB;
422}
Chris Lattner52c95852008-11-27 08:10:05 +0000423
Chris Lattner4aebaee2008-11-27 08:56:30 +0000424/// AreEquivalentAddressValues - Test if A and B will obviously have the same
425/// value. This includes recognizing that %t0 and %t1 will have the same
426/// value in code like this:
427/// %t0 = getelementptr @a, 0, 3
428/// store i32 0, i32* %t0
429/// %t1 = getelementptr @a, 0, 3
430/// %t2 = load i32* %t1
431///
432static bool AreEquivalentAddressValues(const Value *A, const Value *B) {
433 // Test if the values are trivially equivalent.
434 if (A == B) return true;
435
436 // Test if the values come form identical arithmetic instructions.
437 if (isa<BinaryOperator>(A) || isa<CastInst>(A) ||
438 isa<PHINode>(A) || isa<GetElementPtrInst>(A))
439 if (const Instruction *BI = dyn_cast<Instruction>(B))
440 if (cast<Instruction>(A)->isIdenticalTo(BI))
441 return true;
442
443 // Otherwise they may not be equivalent.
444 return false;
445}
446
Chris Lattner52c95852008-11-27 08:10:05 +0000447/// FindAvailableLoadedValue - Scan the ScanBB block backwards (starting at the
448/// instruction before ScanFrom) checking to see if we have the value at the
449/// memory address *Ptr locally available within a small number of instructions.
450/// If the value is available, return it.
451///
452/// If not, return the iterator for the last validated instruction that the
453/// value would be live through. If we scanned the entire block and didn't find
454/// something that invalidates *Ptr or provides it, ScanFrom would be left at
455/// begin() and this returns null. ScanFrom could also be left
456///
457/// MaxInstsToScan specifies the maximum instructions to scan in the block. If
458/// it is set to 0, it will scan the whole block. You can also optionally
459/// specify an alias analysis implementation, which makes this more precise.
460Value *llvm::FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
461 BasicBlock::iterator &ScanFrom,
462 unsigned MaxInstsToScan,
463 AliasAnalysis *AA) {
464 if (MaxInstsToScan == 0) MaxInstsToScan = ~0U;
Chris Lattneree6e10b2008-11-27 08:18:12 +0000465
466 // If we're using alias analysis to disambiguate get the size of *Ptr.
467 unsigned AccessSize = 0;
468 if (AA) {
469 const Type *AccessTy = cast<PointerType>(Ptr->getType())->getElementType();
470 AccessSize = AA->getTargetData().getTypeStoreSizeInBits(AccessTy);
471 }
Chris Lattner52c95852008-11-27 08:10:05 +0000472
473 while (ScanFrom != ScanBB->begin()) {
474 // Don't scan huge blocks.
475 if (MaxInstsToScan-- == 0) return 0;
476
477 Instruction *Inst = --ScanFrom;
478
479 // If this is a load of Ptr, the loaded value is available.
480 if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
Chris Lattner4aebaee2008-11-27 08:56:30 +0000481 if (AreEquivalentAddressValues(LI->getOperand(0), Ptr))
Chris Lattner52c95852008-11-27 08:10:05 +0000482 return LI;
483
484 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
485 // If this is a store through Ptr, the value is available!
Chris Lattner4aebaee2008-11-27 08:56:30 +0000486 if (AreEquivalentAddressValues(SI->getOperand(1), Ptr))
Chris Lattner52c95852008-11-27 08:10:05 +0000487 return SI->getOperand(0);
488
489 // If Ptr is an alloca and this is a store to a different alloca, ignore
490 // the store. This is a trivial form of alias analysis that is important
491 // for reg2mem'd code.
492 if ((isa<AllocaInst>(Ptr) || isa<GlobalVariable>(Ptr)) &&
493 (isa<AllocaInst>(SI->getOperand(1)) ||
494 isa<GlobalVariable>(SI->getOperand(1))))
495 continue;
496
Chris Lattneree6e10b2008-11-27 08:18:12 +0000497 // If we have alias analysis and it says the store won't modify the loaded
498 // value, ignore the store.
499 if (AA &&
500 (AA->getModRefInfo(SI, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
501 continue;
502
Chris Lattner52c95852008-11-27 08:10:05 +0000503 // Otherwise the store that may or may not alias the pointer, bail out.
504 ++ScanFrom;
505 return 0;
506 }
507
Chris Lattner52c95852008-11-27 08:10:05 +0000508 // If this is some other instruction that may clobber Ptr, bail out.
509 if (Inst->mayWriteToMemory()) {
Chris Lattneree6e10b2008-11-27 08:18:12 +0000510 // If alias analysis claims that it really won't modify the load,
511 // ignore it.
512 if (AA &&
513 (AA->getModRefInfo(Inst, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
514 continue;
515
Chris Lattner52c95852008-11-27 08:10:05 +0000516 // May modify the pointer, bail out.
517 ++ScanFrom;
518 return 0;
519 }
520 }
521
522 // Got to the start of the block, we didn't find it, but are done for this
523 // block.
524 return 0;
525}