blob: c15bd8a4268902b2b117537f9198658f7d06978b [file] [log] [blame]
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001//===- CodeGenPrepare.cpp - Prepare a function for code generation --------===//
2//
3// 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.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass munges the code in the input function to better prepare it for
Gordon Henriksena8a118b2008-05-08 17:46:35 +000011// SelectionDAG-based code generation. This works around limitations in it's
12// basic-block-at-a-time approach. It should eventually be removed.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000013//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "codegenprepare"
17#include "llvm/Transforms/Scalar.h"
18#include "llvm/Constants.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Function.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000021#include "llvm/InlineAsm.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000022#include "llvm/Instructions.h"
Dale Johannesen6aae1d62009-03-26 01:15:07 +000023#include "llvm/IntrinsicInst.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000024#include "llvm/Pass.h"
Owen Andersond5f86842010-12-23 20:57:35 +000025#include "llvm/Analysis/InstructionSimplify.h"
Andreas Neustifterad809812009-09-16 09:26:52 +000026#include "llvm/Analysis/ProfileInfo.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000027#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetLowering.h"
Evan Chenga1fd5b32009-02-20 18:24:38 +000029#include "llvm/Transforms/Utils/AddrModeMatcher.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000030#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000031#include "llvm/Transforms/Utils/Local.h"
Eric Christopher040056f2010-03-11 02:41:03 +000032#include "llvm/Transforms/Utils/BuildLibCalls.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000033#include "llvm/ADT/DenseMap.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000034#include "llvm/ADT/SmallSet.h"
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000035#include "llvm/ADT/Statistic.h"
Dan Gohman03ce0422009-02-13 17:45:12 +000036#include "llvm/Assembly/Writer.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000037#include "llvm/Support/CallSite.h"
Evan Chenge1bcb442010-08-17 01:34:49 +000038#include "llvm/Support/CommandLine.h"
Evan Chengbdcb7262007-12-05 23:58:20 +000039#include "llvm/Support/Debug.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000040#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner088a1e82008-11-25 04:42:10 +000041#include "llvm/Support/PatternMatch.h"
Dan Gohman6c1980b2009-07-25 01:13:51 +000042#include "llvm/Support/raw_ostream.h"
Eric Christopher040056f2010-03-11 02:41:03 +000043#include "llvm/Support/IRBuilder.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000044using namespace llvm;
Chris Lattner088a1e82008-11-25 04:42:10 +000045using namespace llvm::PatternMatch;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000046
Cameron Zwarich31ff1332011-01-05 17:27:27 +000047STATISTIC(NumBlocksElim, "Number of blocks eliminated");
Cameron Zwarich073057f2011-01-05 17:47:38 +000048STATISTIC(NumPHIsElim, "Number of trivial PHIs eliminated");
49STATISTIC(NumGEPsElim, "Number of GEPs converted to casts");
Cameron Zwarich31ff1332011-01-05 17:27:27 +000050STATISTIC(NumCmpUses, "Number of uses of Cmp expressions replaced with uses of "
51 "sunken Cmps");
52STATISTIC(NumCastUses, "Number of uses of Cast expressions replaced with uses "
53 "of sunken Casts");
54STATISTIC(NumMemoryInsts, "Number of memory instructions whose address "
55 "computations were sunk");
56STATISTIC(NumExtsMoved, "Number of [s|z]ext instructions combined with loads");
57STATISTIC(NumExtUses, "Number of uses of [s|z]ext instructions optimized");
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000058
Evan Chenge1bcb442010-08-17 01:34:49 +000059static cl::opt<bool>
60CriticalEdgeSplit("cgp-critical-edge-splitting",
61 cl::desc("Split critical edges during codegen prepare"),
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000062 cl::init(false), cl::Hidden);
Evan Chenge1bcb442010-08-17 01:34:49 +000063
Eric Christopher692bf6b2008-09-24 05:32:41 +000064namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000065 class CodeGenPrepare : public FunctionPass {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000066 /// TLI - Keep a pointer of a TargetLowering to consult for determining
67 /// transformation profitability.
68 const TargetLowering *TLI;
Evan Cheng04149f72009-12-17 09:39:49 +000069 ProfileInfo *PFI;
Evan Chengab631522008-12-19 18:03:11 +000070
71 /// BackEdges - Keep a set of all the loop back edges.
72 ///
Mike Stumpfe095f32009-05-04 18:40:41 +000073 SmallSet<std::pair<const BasicBlock*, const BasicBlock*>, 8> BackEdges;
Cameron Zwarich8c3527e2011-01-06 00:42:50 +000074
75 // Keeps track of non-local addresses that have been sunk into a block. This
76 // allows us to avoid inserting duplicate code for blocks with multiple
77 // load/stores of the same address.
78 DenseMap<Value*, Value*> SunkAddrs;
79
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000080 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000081 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000082 explicit CodeGenPrepare(const TargetLowering *tli = 0)
Owen Anderson081c34b2010-10-19 17:21:58 +000083 : FunctionPass(ID), TLI(tli) {
84 initializeCodeGenPreparePass(*PassRegistry::getPassRegistry());
85 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000086 bool runOnFunction(Function &F);
Eric Christopher692bf6b2008-09-24 05:32:41 +000087
Andreas Neustifterad809812009-09-16 09:26:52 +000088 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
89 AU.addPreserved<ProfileInfo>();
90 }
91
Dan Gohmanaa0e5232010-02-05 19:24:11 +000092 virtual void releaseMemory() {
93 BackEdges.clear();
94 }
95
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000096 private:
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +000097 bool EliminateMostlyEmptyBlocks(Function &F);
98 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
99 void EliminateMostlyEmptyBlock(BasicBlock *BB);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000100 bool OptimizeBlock(BasicBlock &BB);
Chris Lattner88a5c832008-11-25 07:09:13 +0000101 bool OptimizeMemoryInst(Instruction *I, Value *Addr, const Type *AccessTy,
102 DenseMap<Value*,Value*> &SunkAddrs);
Evan Cheng9bf12b52008-02-26 02:42:37 +0000103 bool OptimizeInlineAsmInst(Instruction *I, CallSite CS,
104 DenseMap<Value*,Value*> &SunkAddrs);
Eric Christopher040056f2010-03-11 02:41:03 +0000105 bool OptimizeCallInst(CallInst *CI);
Dan Gohmanb00f2362009-10-16 20:59:35 +0000106 bool MoveExtToFormExtLoad(Instruction *I);
Evan Chengbdcb7262007-12-05 23:58:20 +0000107 bool OptimizeExtUses(Instruction *I);
Mike Stumpfe095f32009-05-04 18:40:41 +0000108 void findLoopBackEdges(const Function &F);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000109 };
110}
Devang Patel794fd752007-05-01 21:15:47 +0000111
Devang Patel19974732007-05-03 01:11:54 +0000112char CodeGenPrepare::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000113INITIALIZE_PASS(CodeGenPrepare, "codegenprepare",
Owen Andersonce665bd2010-10-07 22:25:06 +0000114 "Optimize for code generation", false, false)
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000115
116FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) {
117 return new CodeGenPrepare(TLI);
118}
119
Evan Chengab631522008-12-19 18:03:11 +0000120/// findLoopBackEdges - Do a DFS walk to find loop back edges.
121///
Mike Stumpfe095f32009-05-04 18:40:41 +0000122void CodeGenPrepare::findLoopBackEdges(const Function &F) {
123 SmallVector<std::pair<const BasicBlock*,const BasicBlock*>, 32> Edges;
124 FindFunctionBackedges(F, Edges);
125
126 BackEdges.insert(Edges.begin(), Edges.end());
Evan Chengab631522008-12-19 18:03:11 +0000127}
128
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000129
130bool CodeGenPrepare::runOnFunction(Function &F) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000131 bool EverMadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000132
Evan Cheng04149f72009-12-17 09:39:49 +0000133 PFI = getAnalysisIfAvailable<ProfileInfo>();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000134 // First pass, eliminate blocks that contain only PHI nodes and an
135 // unconditional branch.
136 EverMadeChange |= EliminateMostlyEmptyBlocks(F);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000137
Cameron Zwarich95bb0042011-01-04 04:43:31 +0000138 // Now find loop back edges, but only if they are being used to decide which
139 // critical edges to split.
140 if (CriticalEdgeSplit)
141 findLoopBackEdges(F);
Evan Cheng7e66c0d2009-01-05 21:17:27 +0000142
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000143 bool MadeChange = true;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000144 while (MadeChange) {
145 MadeChange = false;
146 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
147 MadeChange |= OptimizeBlock(*BB);
148 EverMadeChange |= MadeChange;
149 }
Cameron Zwarich8c3527e2011-01-06 00:42:50 +0000150
151 SunkAddrs.clear();
152
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000153 return EverMadeChange;
154}
155
Dale Johannesen2d697242009-03-27 01:13:37 +0000156/// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes,
157/// debug info directives, and an unconditional branch. Passes before isel
158/// (e.g. LSR/loopsimplify) often split edges in ways that are non-optimal for
159/// isel. Start by eliminating these blocks so we can split them the way we
160/// want them.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000161bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) {
162 bool MadeChange = false;
163 // Note that this intentionally skips the entry block.
164 for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) {
165 BasicBlock *BB = I++;
166
167 // If this block doesn't end with an uncond branch, ignore it.
168 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
169 if (!BI || !BI->isUnconditional())
170 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000171
Dale Johannesen2d697242009-03-27 01:13:37 +0000172 // If the instruction before the branch (skipping debug info) isn't a phi
173 // node, then other stuff is happening here.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000174 BasicBlock::iterator BBI = BI;
175 if (BBI != BB->begin()) {
176 --BBI;
Dale Johannesen2d697242009-03-27 01:13:37 +0000177 while (isa<DbgInfoIntrinsic>(BBI)) {
178 if (BBI == BB->begin())
179 break;
180 --BBI;
181 }
182 if (!isa<DbgInfoIntrinsic>(BBI) && !isa<PHINode>(BBI))
183 continue;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000184 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000185
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000186 // Do not break infinite loops.
187 BasicBlock *DestBB = BI->getSuccessor(0);
188 if (DestBB == BB)
189 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000190
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000191 if (!CanMergeBlocks(BB, DestBB))
192 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000193
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000194 EliminateMostlyEmptyBlock(BB);
195 MadeChange = true;
196 }
197 return MadeChange;
198}
199
200/// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
201/// single uncond branch between them, and BB contains no other non-phi
202/// instructions.
203bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB,
204 const BasicBlock *DestBB) const {
205 // We only want to eliminate blocks whose phi nodes are used by phi nodes in
206 // the successor. If there are more complex condition (e.g. preheaders),
207 // don't mess around with them.
208 BasicBlock::const_iterator BBI = BB->begin();
209 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
Gabor Greif60ad7812010-03-25 23:06:16 +0000210 for (Value::const_use_iterator UI = PN->use_begin(), E = PN->use_end();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000211 UI != E; ++UI) {
212 const Instruction *User = cast<Instruction>(*UI);
213 if (User->getParent() != DestBB || !isa<PHINode>(User))
214 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000215 // If User is inside DestBB block and it is a PHINode then check
216 // incoming value. If incoming value is not from BB then this is
Devang Patel75abc1e2007-04-25 00:37:04 +0000217 // a complex condition (e.g. preheaders) we want to avoid here.
218 if (User->getParent() == DestBB) {
219 if (const PHINode *UPN = dyn_cast<PHINode>(User))
220 for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) {
221 Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I));
222 if (Insn && Insn->getParent() == BB &&
223 Insn->getParent() != UPN->getIncomingBlock(I))
224 return false;
225 }
226 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000227 }
228 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000229
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000230 // If BB and DestBB contain any common predecessors, then the phi nodes in BB
231 // and DestBB may have conflicting incoming values for the block. If so, we
232 // can't merge the block.
233 const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin());
234 if (!DestBBPN) return true; // no conflict.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000235
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000236 // Collect the preds of BB.
Chris Lattnerf67f73a2007-11-06 22:07:40 +0000237 SmallPtrSet<const BasicBlock*, 16> BBPreds;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000238 if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
239 // It is faster to get preds from a PHI than with pred_iterator.
240 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
241 BBPreds.insert(BBPN->getIncomingBlock(i));
242 } else {
243 BBPreds.insert(pred_begin(BB), pred_end(BB));
244 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000245
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000246 // Walk the preds of DestBB.
247 for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) {
248 BasicBlock *Pred = DestBBPN->getIncomingBlock(i);
249 if (BBPreds.count(Pred)) { // Common predecessor?
250 BBI = DestBB->begin();
251 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
252 const Value *V1 = PN->getIncomingValueForBlock(Pred);
253 const Value *V2 = PN->getIncomingValueForBlock(BB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000254
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000255 // If V2 is a phi node in BB, look up what the mapped value will be.
256 if (const PHINode *V2PN = dyn_cast<PHINode>(V2))
257 if (V2PN->getParent() == BB)
258 V2 = V2PN->getIncomingValueForBlock(Pred);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000259
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000260 // If there is a conflict, bail out.
261 if (V1 != V2) return false;
262 }
263 }
264 }
265
266 return true;
267}
268
269
270/// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and
271/// an unconditional branch in it.
272void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) {
273 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
274 BasicBlock *DestBB = BI->getSuccessor(0);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000275
David Greene68d67fd2010-01-05 01:27:11 +0000276 DEBUG(dbgs() << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000277
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000278 // If the destination block has a single pred, then this is a trivial edge,
279 // just collapse it.
Chris Lattner9918fb52008-11-27 19:29:14 +0000280 if (BasicBlock *SinglePred = DestBB->getSinglePredecessor()) {
Chris Lattnerf5102a02008-11-28 19:54:49 +0000281 if (SinglePred != DestBB) {
282 // Remember if SinglePred was the entry block of the function. If so, we
283 // will need to move BB back to the entry position.
284 bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
Andreas Neustifterad809812009-09-16 09:26:52 +0000285 MergeBasicBlockIntoOnlyPred(DestBB, this);
Chris Lattner9918fb52008-11-27 19:29:14 +0000286
Chris Lattnerf5102a02008-11-28 19:54:49 +0000287 if (isEntry && BB != &BB->getParent()->getEntryBlock())
288 BB->moveBefore(&BB->getParent()->getEntryBlock());
289
David Greene68d67fd2010-01-05 01:27:11 +0000290 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerf5102a02008-11-28 19:54:49 +0000291 return;
292 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000293 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000294
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000295 // Otherwise, we have multiple predecessors of BB. Update the PHIs in DestBB
296 // to handle the new incoming edges it is about to have.
297 PHINode *PN;
298 for (BasicBlock::iterator BBI = DestBB->begin();
299 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
300 // Remove the incoming value for BB, and remember it.
301 Value *InVal = PN->removeIncomingValue(BB, false);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000302
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000303 // Two options: either the InVal is a phi node defined in BB or it is some
304 // value that dominates BB.
305 PHINode *InValPhi = dyn_cast<PHINode>(InVal);
306 if (InValPhi && InValPhi->getParent() == BB) {
307 // Add all of the input values of the input PHI as inputs of this phi.
308 for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i)
309 PN->addIncoming(InValPhi->getIncomingValue(i),
310 InValPhi->getIncomingBlock(i));
311 } else {
312 // Otherwise, add one instance of the dominating value for each edge that
313 // we will be adding.
314 if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
315 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
316 PN->addIncoming(InVal, BBPN->getIncomingBlock(i));
317 } else {
318 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
319 PN->addIncoming(InVal, *PI);
320 }
321 }
322 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000323
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000324 // The PHIs are now updated, change everything that refers to BB to use
325 // DestBB and remove BB.
326 BB->replaceAllUsesWith(DestBB);
Evan Cheng04149f72009-12-17 09:39:49 +0000327 if (PFI) {
328 PFI->replaceAllUses(BB, DestBB);
329 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB));
Andreas Neustifterad809812009-09-16 09:26:52 +0000330 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000331 BB->eraseFromParent();
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000332 ++NumBlocksElim;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000333
David Greene68d67fd2010-01-05 01:27:11 +0000334 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000335}
336
Chris Lattner98d5c312010-02-13 05:35:08 +0000337/// FindReusablePredBB - Check all of the predecessors of the block DestPHI
338/// lives in to see if there is a block that we can reuse as a critical edge
339/// from TIBB.
340static BasicBlock *FindReusablePredBB(PHINode *DestPHI, BasicBlock *TIBB) {
341 BasicBlock *Dest = DestPHI->getParent();
342
343 /// TIPHIValues - This array is lazily computed to determine the values of
344 /// PHIs in Dest that TI would provide.
345 SmallVector<Value*, 32> TIPHIValues;
346
347 /// TIBBEntryNo - This is a cache to speed up pred queries for TIBB.
348 unsigned TIBBEntryNo = 0;
349
350 // Check to see if Dest has any blocks that can be used as a split edge for
351 // this terminator.
352 for (unsigned pi = 0, e = DestPHI->getNumIncomingValues(); pi != e; ++pi) {
353 BasicBlock *Pred = DestPHI->getIncomingBlock(pi);
354 // To be usable, the pred has to end with an uncond branch to the dest.
355 BranchInst *PredBr = dyn_cast<BranchInst>(Pred->getTerminator());
356 if (!PredBr || !PredBr->isUnconditional())
357 continue;
358 // Must be empty other than the branch and debug info.
359 BasicBlock::iterator I = Pred->begin();
360 while (isa<DbgInfoIntrinsic>(I))
361 I++;
362 if (&*I != PredBr)
363 continue;
364 // Cannot be the entry block; its label does not get emitted.
365 if (Pred == &Dest->getParent()->getEntryBlock())
366 continue;
367
368 // Finally, since we know that Dest has phi nodes in it, we have to make
369 // sure that jumping to Pred will have the same effect as going to Dest in
370 // terms of PHI values.
371 PHINode *PN;
372 unsigned PHINo = 0;
373 unsigned PredEntryNo = pi;
374
375 bool FoundMatch = true;
376 for (BasicBlock::iterator I = Dest->begin();
377 (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo) {
378 if (PHINo == TIPHIValues.size()) {
379 if (PN->getIncomingBlock(TIBBEntryNo) != TIBB)
380 TIBBEntryNo = PN->getBasicBlockIndex(TIBB);
381 TIPHIValues.push_back(PN->getIncomingValue(TIBBEntryNo));
382 }
383
384 // If the PHI entry doesn't work, we can't use this pred.
385 if (PN->getIncomingBlock(PredEntryNo) != Pred)
386 PredEntryNo = PN->getBasicBlockIndex(Pred);
387
388 if (TIPHIValues[PHINo] != PN->getIncomingValue(PredEntryNo)) {
389 FoundMatch = false;
390 break;
391 }
392 }
393
394 // If we found a workable predecessor, change TI to branch to Succ.
395 if (FoundMatch)
396 return Pred;
397 }
398 return 0;
399}
400
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000401
Chris Lattnerebe80752007-12-24 19:32:55 +0000402/// SplitEdgeNicely - Split the critical edge from TI to its specified
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000403/// successor if it will improve codegen. We only do this if the successor has
404/// phi nodes (otherwise critical edges are ok). If there is already another
405/// predecessor of the succ that is empty (and thus has no phi nodes), use it
406/// instead of introducing a new block.
Evan Chengab631522008-12-19 18:03:11 +0000407static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum,
Mike Stumpfe095f32009-05-04 18:40:41 +0000408 SmallSet<std::pair<const BasicBlock*,
409 const BasicBlock*>, 8> &BackEdges,
Evan Chengab631522008-12-19 18:03:11 +0000410 Pass *P) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000411 BasicBlock *TIBB = TI->getParent();
412 BasicBlock *Dest = TI->getSuccessor(SuccNum);
413 assert(isa<PHINode>(Dest->begin()) &&
414 "This should only be called if Dest has a PHI!");
Chris Lattner3f65b5e2010-02-13 04:04:42 +0000415 PHINode *DestPHI = cast<PHINode>(Dest->begin());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000416
Evan Chengfc0b80d2009-03-13 22:59:14 +0000417 // Do not split edges to EH landing pads.
Chris Lattner3f65b5e2010-02-13 04:04:42 +0000418 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(TI))
Evan Chengfc0b80d2009-03-13 22:59:14 +0000419 if (Invoke->getSuccessor(1) == Dest)
420 return;
Evan Chengfc0b80d2009-03-13 22:59:14 +0000421
Chris Lattnerebe80752007-12-24 19:32:55 +0000422 // As a hack, never split backedges of loops. Even though the copy for any
423 // PHIs inserted on the backedge would be dead for exits from the loop, we
424 // assume that the cost of *splitting* the backedge would be too high.
Evan Chengab631522008-12-19 18:03:11 +0000425 if (BackEdges.count(std::make_pair(TIBB, Dest)))
Chris Lattnerebe80752007-12-24 19:32:55 +0000426 return;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000427
Chris Lattnerc09687b2010-02-13 19:07:06 +0000428 if (BasicBlock *ReuseBB = FindReusablePredBB(DestPHI, TIBB)) {
429 ProfileInfo *PFI = P->getAnalysisIfAvailable<ProfileInfo>();
430 if (PFI)
431 PFI->splitEdge(TIBB, Dest, ReuseBB);
432 Dest->removePredecessor(TIBB);
433 TI->setSuccessor(SuccNum, ReuseBB);
Evan Chengab631522008-12-19 18:03:11 +0000434 return;
435 }
436
Chris Lattnerc09687b2010-02-13 19:07:06 +0000437 SplitCriticalEdge(TI, SuccNum, P, true);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000438}
439
Evan Chengab631522008-12-19 18:03:11 +0000440
Chris Lattnerdd77df32007-04-13 20:30:56 +0000441/// OptimizeNoopCopyExpression - If the specified cast instruction is a noop
Dan Gohmana119de82009-06-14 23:30:43 +0000442/// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC),
443/// sink it into user blocks to reduce the number of virtual
Dale Johannesence0b2372007-06-12 16:50:17 +0000444/// registers that must be created and coalesced.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000445///
446/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000447///
Chris Lattnerdd77df32007-04-13 20:30:56 +0000448static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){
Eric Christopher692bf6b2008-09-24 05:32:41 +0000449 // If this is a noop copy,
Owen Andersone50ed302009-08-10 22:56:29 +0000450 EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
451 EVT DstVT = TLI.getValueType(CI->getType());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000452
Chris Lattnerdd77df32007-04-13 20:30:56 +0000453 // This is an fp<->int conversion?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000454 if (SrcVT.isInteger() != DstVT.isInteger())
Chris Lattnerdd77df32007-04-13 20:30:56 +0000455 return false;
Duncan Sands8e4eb092008-06-08 20:54:56 +0000456
Chris Lattnerdd77df32007-04-13 20:30:56 +0000457 // If this is an extension, it will be a zero or sign extension, which
458 // isn't a noop.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000459 if (SrcVT.bitsLT(DstVT)) return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000460
Chris Lattnerdd77df32007-04-13 20:30:56 +0000461 // If these values will be promoted, find out what they will be promoted
462 // to. This helps us consider truncates on PPC as noop copies when they
463 // are.
Chris Lattneraafe6262010-08-25 23:00:45 +0000464 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
Owen Anderson23b9b192009-08-12 00:36:31 +0000465 SrcVT = TLI.getTypeToTransformTo(CI->getContext(), SrcVT);
Chris Lattneraafe6262010-08-25 23:00:45 +0000466 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
Owen Anderson23b9b192009-08-12 00:36:31 +0000467 DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000468
Chris Lattnerdd77df32007-04-13 20:30:56 +0000469 // If, after promotion, these are the same types, this is a noop copy.
470 if (SrcVT != DstVT)
471 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000472
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000473 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000474
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000475 /// InsertedCasts - Only insert a cast in each block once.
Dale Johannesence0b2372007-06-12 16:50:17 +0000476 DenseMap<BasicBlock*, CastInst*> InsertedCasts;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000477
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000478 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000479 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000480 UI != E; ) {
481 Use &TheUse = UI.getUse();
482 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000483
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000484 // Figure out which BB this cast is used in. For PHI's this is the
485 // appropriate predecessor block.
486 BasicBlock *UserBB = User->getParent();
487 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Gabor Greifa36791d2009-01-23 19:40:15 +0000488 UserBB = PN->getIncomingBlock(UI);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000489 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000490
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000491 // Preincrement use iterator so we don't invalidate it.
492 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000493
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000494 // If this user is in the same block as the cast, don't change the cast.
495 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000496
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000497 // If we have already inserted a cast into this block, use it.
498 CastInst *&InsertedCast = InsertedCasts[UserBB];
499
500 if (!InsertedCast) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000501 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000502
503 InsertedCast =
504 CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "",
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000505 InsertPt);
506 MadeChange = true;
507 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000508
Dale Johannesence0b2372007-06-12 16:50:17 +0000509 // Replace a use of the cast with a use of the new cast.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000510 TheUse = InsertedCast;
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000511 ++NumCastUses;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000512 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000513
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000514 // If we removed all uses, nuke the cast.
Duncan Sandse0038132008-01-20 16:51:46 +0000515 if (CI->use_empty()) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000516 CI->eraseFromParent();
Duncan Sandse0038132008-01-20 16:51:46 +0000517 MadeChange = true;
518 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000519
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000520 return MadeChange;
521}
522
Eric Christopher692bf6b2008-09-24 05:32:41 +0000523/// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce
Dale Johannesence0b2372007-06-12 16:50:17 +0000524/// the number of virtual registers that must be created and coalesced. This is
Chris Lattner684b22d2007-08-02 16:53:43 +0000525/// a clear win except on targets with multiple condition code registers
526/// (PowerPC), where it might lose; some adjustment may be wanted there.
Dale Johannesence0b2372007-06-12 16:50:17 +0000527///
528/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000529static bool OptimizeCmpExpression(CmpInst *CI) {
Dale Johannesence0b2372007-06-12 16:50:17 +0000530 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000531
Dale Johannesence0b2372007-06-12 16:50:17 +0000532 /// InsertedCmp - Only insert a cmp in each block once.
533 DenseMap<BasicBlock*, CmpInst*> InsertedCmps;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000534
Dale Johannesence0b2372007-06-12 16:50:17 +0000535 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000536 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Dale Johannesence0b2372007-06-12 16:50:17 +0000537 UI != E; ) {
538 Use &TheUse = UI.getUse();
539 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000540
Dale Johannesence0b2372007-06-12 16:50:17 +0000541 // Preincrement use iterator so we don't invalidate it.
542 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000543
Dale Johannesence0b2372007-06-12 16:50:17 +0000544 // Don't bother for PHI nodes.
545 if (isa<PHINode>(User))
546 continue;
547
548 // Figure out which BB this cmp is used in.
549 BasicBlock *UserBB = User->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000550
Dale Johannesence0b2372007-06-12 16:50:17 +0000551 // If this user is in the same block as the cmp, don't change the cmp.
552 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000553
Dale Johannesence0b2372007-06-12 16:50:17 +0000554 // If we have already inserted a cmp into this block, use it.
555 CmpInst *&InsertedCmp = InsertedCmps[UserBB];
556
557 if (!InsertedCmp) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000558 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000559
560 InsertedCmp =
Dan Gohman1c8a23c2009-08-25 23:17:54 +0000561 CmpInst::Create(CI->getOpcode(),
Owen Anderson333c4002009-07-09 23:48:35 +0000562 CI->getPredicate(), CI->getOperand(0),
Dale Johannesence0b2372007-06-12 16:50:17 +0000563 CI->getOperand(1), "", InsertPt);
564 MadeChange = true;
565 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000566
Dale Johannesence0b2372007-06-12 16:50:17 +0000567 // Replace a use of the cmp with a use of the new cmp.
568 TheUse = InsertedCmp;
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000569 ++NumCmpUses;
Dale Johannesence0b2372007-06-12 16:50:17 +0000570 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000571
Dale Johannesence0b2372007-06-12 16:50:17 +0000572 // If we removed all uses, nuke the cmp.
573 if (CI->use_empty())
574 CI->eraseFromParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000575
Dale Johannesence0b2372007-06-12 16:50:17 +0000576 return MadeChange;
577}
578
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000579namespace {
580class CodeGenPrepareFortifiedLibCalls : public SimplifyFortifiedLibCalls {
581protected:
582 void replaceCall(Value *With) {
583 CI->replaceAllUsesWith(With);
584 CI->eraseFromParent();
585 }
586 bool isFoldable(unsigned SizeCIOp, unsigned, bool) const {
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000587 if (ConstantInt *SizeCI =
588 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp)))
589 return SizeCI->isAllOnesValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000590 return false;
591 }
592};
593} // end anonymous namespace
594
Eric Christopher040056f2010-03-11 02:41:03 +0000595bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) {
Eric Christopher040056f2010-03-11 02:41:03 +0000596 // Lower all uses of llvm.objectsize.*
597 IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI);
598 if (II && II->getIntrinsicID() == Intrinsic::objectsize) {
Gabor Greifde9f5452010-06-24 00:44:01 +0000599 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1);
Eric Christopher040056f2010-03-11 02:41:03 +0000600 const Type *ReturnTy = CI->getType();
601 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
602 CI->replaceAllUsesWith(RetVal);
603 CI->eraseFromParent();
604 return true;
605 }
606
607 // From here on out we're working with named functions.
608 if (CI->getCalledFunction() == 0) return false;
609
610 // We'll need TargetData from here on out.
611 const TargetData *TD = TLI ? TLI->getTargetData() : 0;
612 if (!TD) return false;
613
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000614 // Lower all default uses of _chk calls. This is very similar
615 // to what InstCombineCalls does, but here we are only lowering calls
Eric Christopher040056f2010-03-11 02:41:03 +0000616 // that have the default "don't know" as the objectsize. Anything else
617 // should be left alone.
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000618 CodeGenPrepareFortifiedLibCalls Simplifier;
619 return Simplifier.fold(CI, TD);
Eric Christopher040056f2010-03-11 02:41:03 +0000620}
Chris Lattner88a5c832008-11-25 07:09:13 +0000621//===----------------------------------------------------------------------===//
Chris Lattner88a5c832008-11-25 07:09:13 +0000622// Memory Optimization
623//===----------------------------------------------------------------------===//
624
Chris Lattnerdd77df32007-04-13 20:30:56 +0000625/// IsNonLocalValue - Return true if the specified values are defined in a
626/// different basic block than BB.
627static bool IsNonLocalValue(Value *V, BasicBlock *BB) {
628 if (Instruction *I = dyn_cast<Instruction>(V))
629 return I->getParent() != BB;
630 return false;
631}
632
Bob Wilson4a8ee232009-12-03 21:47:07 +0000633/// OptimizeMemoryInst - Load and Store Instructions often have
Chris Lattnerdd77df32007-04-13 20:30:56 +0000634/// addressing modes that can do significant amounts of computation. As such,
635/// instruction selection will try to get the load or store to do as much
636/// computation as possible for the program. The problem is that isel can only
637/// see within a single block. As such, we sink as much legal addressing mode
638/// stuff into the block as possible.
Chris Lattner88a5c832008-11-25 07:09:13 +0000639///
640/// This method is used to optimize both load/store and inline asms with memory
641/// operands.
Chris Lattner896617b2008-11-26 03:20:37 +0000642bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr,
Chris Lattner88a5c832008-11-25 07:09:13 +0000643 const Type *AccessTy,
644 DenseMap<Value*,Value*> &SunkAddrs) {
Owen Anderson35bf4d62010-11-27 08:15:55 +0000645 Value *Repl = Addr;
646
Owen Andersond2f41742010-11-19 22:15:03 +0000647 // Try to collapse single-value PHI nodes. This is necessary to undo
648 // unprofitable PRE transformations.
Cameron Zwarich7cb4fa22011-01-03 06:33:01 +0000649 SmallVector<Value*, 8> worklist;
650 SmallPtrSet<Value*, 16> Visited;
Owen Anderson35bf4d62010-11-27 08:15:55 +0000651 worklist.push_back(Addr);
652
653 // Use a worklist to iteratively look through PHI nodes, and ensure that
654 // the addressing mode obtained from the non-PHI roots of the graph
655 // are equivalent.
656 Value *Consensus = 0;
657 unsigned NumUses = 0;
658 SmallVector<Instruction*, 16> AddrModeInsts;
659 ExtAddrMode AddrMode;
660 while (!worklist.empty()) {
661 Value *V = worklist.back();
662 worklist.pop_back();
663
664 // Break use-def graph loops.
665 if (Visited.count(V)) {
666 Consensus = 0;
667 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000668 }
669
Owen Anderson35bf4d62010-11-27 08:15:55 +0000670 Visited.insert(V);
671
672 // For a PHI node, push all of its incoming values.
673 if (PHINode *P = dyn_cast<PHINode>(V)) {
674 for (unsigned i = 0, e = P->getNumIncomingValues(); i != e; ++i)
675 worklist.push_back(P->getIncomingValue(i));
676 continue;
677 }
678
679 // For non-PHIs, determine the addressing mode being computed.
680 SmallVector<Instruction*, 16> NewAddrModeInsts;
681 ExtAddrMode NewAddrMode =
682 AddressingModeMatcher::Match(V, AccessTy,MemoryInst,
683 NewAddrModeInsts, *TLI);
684
685 // Ensure that the obtained addressing mode is equivalent to that obtained
686 // for all other roots of the PHI traversal. Also, when choosing one
687 // such root as representative, select the one with the most uses in order
688 // to keep the cost modeling heuristics in AddressingModeMatcher applicable.
689 if (!Consensus || NewAddrMode == AddrMode) {
690 if (V->getNumUses() > NumUses) {
691 Consensus = V;
692 NumUses = V->getNumUses();
693 AddrMode = NewAddrMode;
694 AddrModeInsts = NewAddrModeInsts;
695 }
696 continue;
697 }
698
699 Consensus = 0;
700 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000701 }
702
Owen Anderson35bf4d62010-11-27 08:15:55 +0000703 // If the addressing mode couldn't be determined, or if multiple different
704 // ones were determined, bail out now.
705 if (!Consensus) return false;
706
Chris Lattnerdd77df32007-04-13 20:30:56 +0000707 // Check to see if any of the instructions supersumed by this addr mode are
708 // non-local to I's BB.
709 bool AnyNonLocal = false;
710 for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) {
Chris Lattner896617b2008-11-26 03:20:37 +0000711 if (IsNonLocalValue(AddrModeInsts[i], MemoryInst->getParent())) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000712 AnyNonLocal = true;
713 break;
714 }
715 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000716
Chris Lattnerdd77df32007-04-13 20:30:56 +0000717 // If all the instructions matched are already in this BB, don't do anything.
718 if (!AnyNonLocal) {
David Greene68d67fd2010-01-05 01:27:11 +0000719 DEBUG(dbgs() << "CGP: Found local addrmode: " << AddrMode << "\n");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000720 return false;
721 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000722
Chris Lattnerdd77df32007-04-13 20:30:56 +0000723 // Insert this computation right after this user. Since our caller is
724 // scanning from the top of the BB to the bottom, reuse of the expr are
725 // guaranteed to happen later.
Chris Lattner896617b2008-11-26 03:20:37 +0000726 BasicBlock::iterator InsertPt = MemoryInst;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000727
Chris Lattnerdd77df32007-04-13 20:30:56 +0000728 // Now that we determined the addressing expression we want to use and know
729 // that we have to sink it into this block. Check to see if we have already
730 // done this for some other load/store instr in this block. If so, reuse the
731 // computation.
732 Value *&SunkAddr = SunkAddrs[Addr];
733 if (SunkAddr) {
David Greene68d67fd2010-01-05 01:27:11 +0000734 DEBUG(dbgs() << "CGP: Reusing nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000735 << *MemoryInst);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000736 if (SunkAddr->getType() != Addr->getType())
737 SunkAddr = new BitCastInst(SunkAddr, Addr->getType(), "tmp", InsertPt);
738 } else {
David Greene68d67fd2010-01-05 01:27:11 +0000739 DEBUG(dbgs() << "CGP: SINKING nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000740 << *MemoryInst);
Owen Anderson1d0be152009-08-13 21:58:54 +0000741 const Type *IntPtrTy =
742 TLI->getTargetData()->getIntPtrType(AccessTy->getContext());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000743
Chris Lattnerdd77df32007-04-13 20:30:56 +0000744 Value *Result = 0;
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000745
746 // Start with the base register. Do this first so that subsequent address
747 // matching finds it last, which will prevent it from trying to match it
748 // as the scaled value in case it happens to be a mul. That would be
749 // problematic if we've sunk a different mul for the scale, because then
750 // we'd end up sinking both muls.
751 if (AddrMode.BaseReg) {
752 Value *V = AddrMode.BaseReg;
Duncan Sands1df98592010-02-16 11:11:14 +0000753 if (V->getType()->isPointerTy())
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000754 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
755 if (V->getType() != IntPtrTy)
756 V = CastInst::CreateIntegerCast(V, IntPtrTy, /*isSigned=*/true,
757 "sunkaddr", InsertPt);
758 Result = V;
759 }
760
761 // Add the scale value.
Chris Lattnerdd77df32007-04-13 20:30:56 +0000762 if (AddrMode.Scale) {
763 Value *V = AddrMode.ScaledReg;
764 if (V->getType() == IntPtrTy) {
765 // done.
Duncan Sands1df98592010-02-16 11:11:14 +0000766 } else if (V->getType()->isPointerTy()) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000767 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
768 } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() <
769 cast<IntegerType>(V->getType())->getBitWidth()) {
770 V = new TruncInst(V, IntPtrTy, "sunkaddr", InsertPt);
771 } else {
772 V = new SExtInst(V, IntPtrTy, "sunkaddr", InsertPt);
773 }
774 if (AddrMode.Scale != 1)
Owen Andersoneed707b2009-07-24 23:12:02 +0000775 V = BinaryOperator::CreateMul(V, ConstantInt::get(IntPtrTy,
Owen Andersond672ecb2009-07-03 00:17:18 +0000776 AddrMode.Scale),
Chris Lattnerdd77df32007-04-13 20:30:56 +0000777 "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000778 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000779 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000780 else
781 Result = V;
782 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000783
Chris Lattnerdd77df32007-04-13 20:30:56 +0000784 // Add in the BaseGV if present.
785 if (AddrMode.BaseGV) {
786 Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr",
787 InsertPt);
788 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000789 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000790 else
791 Result = V;
792 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000793
Chris Lattnerdd77df32007-04-13 20:30:56 +0000794 // Add in the Base Offset if present.
795 if (AddrMode.BaseOffs) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000796 Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000797 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000798 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000799 else
800 Result = V;
801 }
802
803 if (Result == 0)
Owen Andersona7235ea2009-07-31 20:28:14 +0000804 SunkAddr = Constant::getNullValue(Addr->getType());
Chris Lattnerdd77df32007-04-13 20:30:56 +0000805 else
806 SunkAddr = new IntToPtrInst(Result, Addr->getType(), "sunkaddr",InsertPt);
807 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000808
Owen Andersond2f41742010-11-19 22:15:03 +0000809 MemoryInst->replaceUsesOfWith(Repl, SunkAddr);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000810
Owen Andersond2f41742010-11-19 22:15:03 +0000811 if (Repl->use_empty()) {
812 RecursivelyDeleteTriviallyDeadInstructions(Repl);
Dale Johannesen536d31b2010-03-31 20:37:15 +0000813 // This address is now available for reassignment, so erase the table entry;
814 // we don't want to match some completely different instruction.
815 SunkAddrs[Addr] = 0;
816 }
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000817 ++NumMemoryInsts;
Chris Lattnerdd77df32007-04-13 20:30:56 +0000818 return true;
819}
820
Evan Cheng9bf12b52008-02-26 02:42:37 +0000821/// OptimizeInlineAsmInst - If there are any memory operands, use
Chris Lattner88a5c832008-11-25 07:09:13 +0000822/// OptimizeMemoryInst to sink their address computing into the block when
Evan Cheng9bf12b52008-02-26 02:42:37 +0000823/// possible / profitable.
824bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS,
825 DenseMap<Value*,Value*> &SunkAddrs) {
826 bool MadeChange = false;
Evan Cheng9bf12b52008-02-26 02:42:37 +0000827
John Thompson44ab89e2010-10-29 17:29:13 +0000828 TargetLowering::AsmOperandInfoVector TargetConstraints = TLI->ParseConstraints(CS);
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000829 unsigned ArgNo = 0;
John Thompsoneac6e1d2010-09-13 18:15:37 +0000830 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
831 TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i];
832
Evan Cheng9bf12b52008-02-26 02:42:37 +0000833 // Compute the constraint code and ConstraintType to use.
Dale Johannesen1784d162010-06-25 21:55:36 +0000834 TLI->ComputeConstraintToUse(OpInfo, SDValue());
Evan Cheng9bf12b52008-02-26 02:42:37 +0000835
Eli Friedman9ec80952008-02-26 18:37:49 +0000836 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
837 OpInfo.isIndirect) {
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000838 Value *OpVal = const_cast<Value *>(CS.getArgument(ArgNo++));
Chris Lattner88a5c832008-11-25 07:09:13 +0000839 MadeChange |= OptimizeMemoryInst(I, OpVal, OpVal->getType(), SunkAddrs);
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000840 } else if (OpInfo.Type == InlineAsm::isInput)
841 ArgNo++;
Evan Cheng9bf12b52008-02-26 02:42:37 +0000842 }
843
844 return MadeChange;
845}
846
Dan Gohmanb00f2362009-10-16 20:59:35 +0000847/// MoveExtToFormExtLoad - Move a zext or sext fed by a load into the same
848/// basic block as the load, unless conditions are unfavorable. This allows
849/// SelectionDAG to fold the extend into the load.
850///
851bool CodeGenPrepare::MoveExtToFormExtLoad(Instruction *I) {
852 // Look for a load being extended.
853 LoadInst *LI = dyn_cast<LoadInst>(I->getOperand(0));
854 if (!LI) return false;
855
856 // If they're already in the same block, there's nothing to do.
857 if (LI->getParent() == I->getParent())
858 return false;
859
860 // If the load has other users and the truncate is not free, this probably
861 // isn't worthwhile.
862 if (!LI->hasOneUse() &&
Bob Wilsonec57a1a2010-09-22 18:44:56 +0000863 TLI && (TLI->isTypeLegal(TLI->getValueType(LI->getType())) ||
864 !TLI->isTypeLegal(TLI->getValueType(I->getType()))) &&
Bob Wilson71dc4d92010-09-21 21:54:27 +0000865 !TLI->isTruncateFree(I->getType(), LI->getType()))
Dan Gohmanb00f2362009-10-16 20:59:35 +0000866 return false;
867
868 // Check whether the target supports casts folded into loads.
869 unsigned LType;
870 if (isa<ZExtInst>(I))
871 LType = ISD::ZEXTLOAD;
872 else {
873 assert(isa<SExtInst>(I) && "Unexpected ext type!");
874 LType = ISD::SEXTLOAD;
875 }
876 if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType())))
877 return false;
878
879 // Move the extend into the same block as the load, so that SelectionDAG
880 // can fold it.
881 I->removeFromParent();
882 I->insertAfter(LI);
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000883 ++NumExtsMoved;
Dan Gohmanb00f2362009-10-16 20:59:35 +0000884 return true;
885}
886
Evan Chengbdcb7262007-12-05 23:58:20 +0000887bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
888 BasicBlock *DefBB = I->getParent();
889
Bob Wilson9120f5c2010-09-21 21:44:14 +0000890 // If the result of a {s|z}ext and its source are both live out, rewrite all
Evan Chengbdcb7262007-12-05 23:58:20 +0000891 // other uses of the source with result of extension.
892 Value *Src = I->getOperand(0);
893 if (Src->hasOneUse())
894 return false;
895
Evan Cheng696e5c02007-12-13 07:50:36 +0000896 // Only do this xform if truncating is free.
Gabor Greif53bdbd72008-02-26 19:13:21 +0000897 if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType()))
Evan Chengf9785f92007-12-13 03:32:53 +0000898 return false;
899
Evan Cheng772de512007-12-12 00:51:06 +0000900 // Only safe to perform the optimization if the source is also defined in
Evan Cheng765dff22007-12-12 02:53:41 +0000901 // this block.
902 if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent())
Evan Cheng772de512007-12-12 00:51:06 +0000903 return false;
904
Evan Chengbdcb7262007-12-05 23:58:20 +0000905 bool DefIsLiveOut = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000906 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000907 UI != E; ++UI) {
908 Instruction *User = cast<Instruction>(*UI);
909
910 // Figure out which BB this ext is used in.
911 BasicBlock *UserBB = User->getParent();
912 if (UserBB == DefBB) continue;
913 DefIsLiveOut = true;
914 break;
915 }
916 if (!DefIsLiveOut)
917 return false;
918
Evan Cheng765dff22007-12-12 02:53:41 +0000919 // Make sure non of the uses are PHI nodes.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000920 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Cheng765dff22007-12-12 02:53:41 +0000921 UI != E; ++UI) {
922 Instruction *User = cast<Instruction>(*UI);
Evan Chengf9785f92007-12-13 03:32:53 +0000923 BasicBlock *UserBB = User->getParent();
924 if (UserBB == DefBB) continue;
925 // Be conservative. We don't want this xform to end up introducing
926 // reloads just before load / store instructions.
927 if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User))
Evan Cheng765dff22007-12-12 02:53:41 +0000928 return false;
929 }
930
Evan Chengbdcb7262007-12-05 23:58:20 +0000931 // InsertedTruncs - Only insert one trunc in each block once.
932 DenseMap<BasicBlock*, Instruction*> InsertedTruncs;
933
934 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000935 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000936 UI != E; ++UI) {
937 Use &TheUse = UI.getUse();
938 Instruction *User = cast<Instruction>(*UI);
939
940 // Figure out which BB this ext is used in.
941 BasicBlock *UserBB = User->getParent();
942 if (UserBB == DefBB) continue;
943
944 // Both src and def are live in this block. Rewrite the use.
945 Instruction *&InsertedTrunc = InsertedTruncs[UserBB];
946
947 if (!InsertedTrunc) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000948 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000949
Evan Chengbdcb7262007-12-05 23:58:20 +0000950 InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt);
951 }
952
953 // Replace a use of the {s|z}ext source with a use of the result.
954 TheUse = InsertedTrunc;
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000955 ++NumExtUses;
Evan Chengbdcb7262007-12-05 23:58:20 +0000956 MadeChange = true;
957 }
958
959 return MadeChange;
960}
961
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000962// In this pass we look for GEP and cast instructions that are used
963// across basic blocks and rewrite them to improve basic-block-at-a-time
964// selection.
965bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) {
966 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000967
Evan Chengab631522008-12-19 18:03:11 +0000968 // Split all critical edges where the dest block has a PHI.
Evan Chenge1bcb442010-08-17 01:34:49 +0000969 if (CriticalEdgeSplit) {
970 TerminatorInst *BBTI = BB.getTerminator();
971 if (BBTI->getNumSuccessors() > 1 && !isa<IndirectBrInst>(BBTI)) {
972 for (unsigned i = 0, e = BBTI->getNumSuccessors(); i != e; ++i) {
973 BasicBlock *SuccBB = BBTI->getSuccessor(i);
974 if (isa<PHINode>(SuccBB->begin()) && isCriticalEdge(BBTI, i, true))
975 SplitEdgeNicely(BBTI, i, BackEdges, this);
976 }
Evan Chengab631522008-12-19 18:03:11 +0000977 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000978 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000979
Cameron Zwarich8c3527e2011-01-06 00:42:50 +0000980 SunkAddrs.clear();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000981
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000982 for (BasicBlock::iterator BBI = BB.begin(), E = BB.end(); BBI != E; ) {
983 Instruction *I = BBI++;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000984
Owen Andersond5f86842010-12-23 20:57:35 +0000985 if (PHINode *P = dyn_cast<PHINode>(I)) {
986 // It is possible for very late stage optimizations (such as SimplifyCFG)
987 // to introduce PHI nodes too late to be cleaned up. If we detect such a
988 // trivial PHI, go ahead and zap it here.
989 if (Value *V = SimplifyInstruction(P)) {
990 P->replaceAllUsesWith(V);
991 P->eraseFromParent();
Cameron Zwarich073057f2011-01-05 17:47:38 +0000992 ++NumPHIsElim;
Owen Andersond5f86842010-12-23 20:57:35 +0000993 }
994 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000995 // If the source of the cast is a constant, then this should have
996 // already been constant folded. The only reason NOT to constant fold
997 // it is if something (e.g. LSR) was careful to place the constant
998 // evaluation in a block other than then one that uses it (e.g. to hoist
999 // the address of globals out of a loop). If this is the case, we don't
1000 // want to forward-subst the cast.
1001 if (isa<Constant>(CI->getOperand(0)))
1002 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +00001003
Evan Chengbdcb7262007-12-05 23:58:20 +00001004 bool Change = false;
1005 if (TLI) {
1006 Change = OptimizeNoopCopyExpression(CI, *TLI);
1007 MadeChange |= Change;
1008 }
1009
Dan Gohmanb00f2362009-10-16 20:59:35 +00001010 if (!Change && (isa<ZExtInst>(I) || isa<SExtInst>(I))) {
1011 MadeChange |= MoveExtToFormExtLoad(I);
Evan Chengbdcb7262007-12-05 23:58:20 +00001012 MadeChange |= OptimizeExtUses(I);
Dan Gohmanb00f2362009-10-16 20:59:35 +00001013 }
Dale Johannesence0b2372007-06-12 16:50:17 +00001014 } else if (CmpInst *CI = dyn_cast<CmpInst>(I)) {
1015 MadeChange |= OptimizeCmpExpression(CI);
Chris Lattnerdd77df32007-04-13 20:30:56 +00001016 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
1017 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +00001018 MadeChange |= OptimizeMemoryInst(I, I->getOperand(0), LI->getType(),
1019 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +00001020 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
1021 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +00001022 MadeChange |= OptimizeMemoryInst(I, SI->getOperand(1),
1023 SI->getOperand(0)->getType(),
1024 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +00001025 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattnerf25646b2007-04-14 00:17:39 +00001026 if (GEPI->hasAllZeroIndices()) {
Chris Lattnerdd77df32007-04-13 20:30:56 +00001027 /// The GEP operand must be a pointer, so must its result -> BitCast
Eric Christopher692bf6b2008-09-24 05:32:41 +00001028 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(),
Chris Lattnerdd77df32007-04-13 20:30:56 +00001029 GEPI->getName(), GEPI);
1030 GEPI->replaceAllUsesWith(NC);
1031 GEPI->eraseFromParent();
Cameron Zwarich073057f2011-01-05 17:47:38 +00001032 ++NumGEPsElim;
Chris Lattnerdd77df32007-04-13 20:30:56 +00001033 MadeChange = true;
1034 BBI = NC;
1035 }
1036 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
1037 // If we found an inline asm expession, and if the target knows how to
1038 // lower it to normal LLVM code, do so now.
Chris Lattner8850b362009-07-20 17:52:52 +00001039 if (TLI && isa<InlineAsm>(CI->getCalledValue())) {
1040 if (TLI->ExpandInlineAsm(CI)) {
1041 BBI = BB.begin();
1042 // Avoid processing instructions out of order, which could cause
1043 // reuse before a value is defined.
1044 SunkAddrs.clear();
1045 } else
1046 // Sink address computing for memory operands into the block.
1047 MadeChange |= OptimizeInlineAsmInst(I, &(*CI), SunkAddrs);
Eric Christopher040056f2010-03-11 02:41:03 +00001048 } else {
1049 // Other CallInst optimizations that don't need to muck with the
1050 // enclosing iterator here.
1051 MadeChange |= OptimizeCallInst(CI);
Chris Lattner8850b362009-07-20 17:52:52 +00001052 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001053 }
1054 }
Eric Christopher692bf6b2008-09-24 05:32:41 +00001055
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001056 return MadeChange;
1057}