blob: 60c7f7565ebe2e52418f1710c151d16fa2e499ae [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"
Andreas Neustifterad809812009-09-16 09:26:52 +000025#include "llvm/Analysis/ProfileInfo.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000026#include "llvm/Target/TargetData.h"
27#include "llvm/Target/TargetLowering.h"
Evan Chenga1fd5b32009-02-20 18:24:38 +000028#include "llvm/Transforms/Utils/AddrModeMatcher.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000029#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000030#include "llvm/Transforms/Utils/Local.h"
Eric Christopher040056f2010-03-11 02:41:03 +000031#include "llvm/Transforms/Utils/BuildLibCalls.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000033#include "llvm/ADT/SmallSet.h"
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000034#include "llvm/ADT/Statistic.h"
Dan Gohman03ce0422009-02-13 17:45:12 +000035#include "llvm/Assembly/Writer.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000036#include "llvm/Support/CallSite.h"
Evan Chenge1bcb442010-08-17 01:34:49 +000037#include "llvm/Support/CommandLine.h"
Evan Chengbdcb7262007-12-05 23:58:20 +000038#include "llvm/Support/Debug.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000039#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner088a1e82008-11-25 04:42:10 +000040#include "llvm/Support/PatternMatch.h"
Dan Gohman6c1980b2009-07-25 01:13:51 +000041#include "llvm/Support/raw_ostream.h"
Eric Christopher040056f2010-03-11 02:41:03 +000042#include "llvm/Support/IRBuilder.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000043using namespace llvm;
Chris Lattner088a1e82008-11-25 04:42:10 +000044using namespace llvm::PatternMatch;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000045
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000046STATISTIC(NumElim, "Number of blocks eliminated");
47
Evan Chenge1bcb442010-08-17 01:34:49 +000048static cl::opt<bool>
49CriticalEdgeSplit("cgp-critical-edge-splitting",
50 cl::desc("Split critical edges during codegen prepare"),
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000051 cl::init(false), cl::Hidden);
Evan Chenge1bcb442010-08-17 01:34:49 +000052
Eric Christopher692bf6b2008-09-24 05:32:41 +000053namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000054 class CodeGenPrepare : public FunctionPass {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000055 /// TLI - Keep a pointer of a TargetLowering to consult for determining
56 /// transformation profitability.
57 const TargetLowering *TLI;
Evan Cheng04149f72009-12-17 09:39:49 +000058 ProfileInfo *PFI;
Evan Chengab631522008-12-19 18:03:11 +000059
60 /// BackEdges - Keep a set of all the loop back edges.
61 ///
Mike Stumpfe095f32009-05-04 18:40:41 +000062 SmallSet<std::pair<const BasicBlock*, const BasicBlock*>, 8> BackEdges;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000063 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000064 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000065 explicit CodeGenPrepare(const TargetLowering *tli = 0)
Owen Anderson081c34b2010-10-19 17:21:58 +000066 : FunctionPass(ID), TLI(tli) {
67 initializeCodeGenPreparePass(*PassRegistry::getPassRegistry());
68 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000069 bool runOnFunction(Function &F);
Eric Christopher692bf6b2008-09-24 05:32:41 +000070
Andreas Neustifterad809812009-09-16 09:26:52 +000071 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
72 AU.addPreserved<ProfileInfo>();
73 }
74
Dan Gohmanaa0e5232010-02-05 19:24:11 +000075 virtual void releaseMemory() {
76 BackEdges.clear();
77 }
78
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000079 private:
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +000080 bool EliminateMostlyEmptyBlocks(Function &F);
81 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
82 void EliminateMostlyEmptyBlock(BasicBlock *BB);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000083 bool OptimizeBlock(BasicBlock &BB);
Chris Lattner88a5c832008-11-25 07:09:13 +000084 bool OptimizeMemoryInst(Instruction *I, Value *Addr, const Type *AccessTy,
85 DenseMap<Value*,Value*> &SunkAddrs);
Evan Cheng9bf12b52008-02-26 02:42:37 +000086 bool OptimizeInlineAsmInst(Instruction *I, CallSite CS,
87 DenseMap<Value*,Value*> &SunkAddrs);
Eric Christopher040056f2010-03-11 02:41:03 +000088 bool OptimizeCallInst(CallInst *CI);
Dan Gohmanb00f2362009-10-16 20:59:35 +000089 bool MoveExtToFormExtLoad(Instruction *I);
Evan Chengbdcb7262007-12-05 23:58:20 +000090 bool OptimizeExtUses(Instruction *I);
Mike Stumpfe095f32009-05-04 18:40:41 +000091 void findLoopBackEdges(const Function &F);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000092 };
93}
Devang Patel794fd752007-05-01 21:15:47 +000094
Devang Patel19974732007-05-03 01:11:54 +000095char CodeGenPrepare::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +000096INITIALIZE_PASS(CodeGenPrepare, "codegenprepare",
Owen Andersonce665bd2010-10-07 22:25:06 +000097 "Optimize for code generation", false, false)
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000098
99FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) {
100 return new CodeGenPrepare(TLI);
101}
102
Evan Chengab631522008-12-19 18:03:11 +0000103/// findLoopBackEdges - Do a DFS walk to find loop back edges.
104///
Mike Stumpfe095f32009-05-04 18:40:41 +0000105void CodeGenPrepare::findLoopBackEdges(const Function &F) {
106 SmallVector<std::pair<const BasicBlock*,const BasicBlock*>, 32> Edges;
107 FindFunctionBackedges(F, Edges);
108
109 BackEdges.insert(Edges.begin(), Edges.end());
Evan Chengab631522008-12-19 18:03:11 +0000110}
111
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000112
113bool CodeGenPrepare::runOnFunction(Function &F) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000114 bool EverMadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000115
Evan Cheng04149f72009-12-17 09:39:49 +0000116 PFI = getAnalysisIfAvailable<ProfileInfo>();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000117 // First pass, eliminate blocks that contain only PHI nodes and an
118 // unconditional branch.
119 EverMadeChange |= EliminateMostlyEmptyBlocks(F);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000120
Evan Cheng7e66c0d2009-01-05 21:17:27 +0000121 // Now find loop back edges.
122 findLoopBackEdges(F);
123
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000124 bool MadeChange = true;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000125 while (MadeChange) {
126 MadeChange = false;
127 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
128 MadeChange |= OptimizeBlock(*BB);
129 EverMadeChange |= MadeChange;
130 }
131 return EverMadeChange;
132}
133
Dale Johannesen2d697242009-03-27 01:13:37 +0000134/// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes,
135/// debug info directives, and an unconditional branch. Passes before isel
136/// (e.g. LSR/loopsimplify) often split edges in ways that are non-optimal for
137/// isel. Start by eliminating these blocks so we can split them the way we
138/// want them.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000139bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) {
140 bool MadeChange = false;
141 // Note that this intentionally skips the entry block.
142 for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) {
143 BasicBlock *BB = I++;
144
145 // If this block doesn't end with an uncond branch, ignore it.
146 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
147 if (!BI || !BI->isUnconditional())
148 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000149
Dale Johannesen2d697242009-03-27 01:13:37 +0000150 // If the instruction before the branch (skipping debug info) isn't a phi
151 // node, then other stuff is happening here.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000152 BasicBlock::iterator BBI = BI;
153 if (BBI != BB->begin()) {
154 --BBI;
Dale Johannesen2d697242009-03-27 01:13:37 +0000155 while (isa<DbgInfoIntrinsic>(BBI)) {
156 if (BBI == BB->begin())
157 break;
158 --BBI;
159 }
160 if (!isa<DbgInfoIntrinsic>(BBI) && !isa<PHINode>(BBI))
161 continue;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000162 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000163
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000164 // Do not break infinite loops.
165 BasicBlock *DestBB = BI->getSuccessor(0);
166 if (DestBB == BB)
167 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000168
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000169 if (!CanMergeBlocks(BB, DestBB))
170 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000171
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000172 EliminateMostlyEmptyBlock(BB);
173 MadeChange = true;
174 }
175 return MadeChange;
176}
177
178/// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
179/// single uncond branch between them, and BB contains no other non-phi
180/// instructions.
181bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB,
182 const BasicBlock *DestBB) const {
183 // We only want to eliminate blocks whose phi nodes are used by phi nodes in
184 // the successor. If there are more complex condition (e.g. preheaders),
185 // don't mess around with them.
186 BasicBlock::const_iterator BBI = BB->begin();
187 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
Gabor Greif60ad7812010-03-25 23:06:16 +0000188 for (Value::const_use_iterator UI = PN->use_begin(), E = PN->use_end();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000189 UI != E; ++UI) {
190 const Instruction *User = cast<Instruction>(*UI);
191 if (User->getParent() != DestBB || !isa<PHINode>(User))
192 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000193 // If User is inside DestBB block and it is a PHINode then check
194 // incoming value. If incoming value is not from BB then this is
Devang Patel75abc1e2007-04-25 00:37:04 +0000195 // a complex condition (e.g. preheaders) we want to avoid here.
196 if (User->getParent() == DestBB) {
197 if (const PHINode *UPN = dyn_cast<PHINode>(User))
198 for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) {
199 Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I));
200 if (Insn && Insn->getParent() == BB &&
201 Insn->getParent() != UPN->getIncomingBlock(I))
202 return false;
203 }
204 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000205 }
206 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000207
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000208 // If BB and DestBB contain any common predecessors, then the phi nodes in BB
209 // and DestBB may have conflicting incoming values for the block. If so, we
210 // can't merge the block.
211 const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin());
212 if (!DestBBPN) return true; // no conflict.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000213
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000214 // Collect the preds of BB.
Chris Lattnerf67f73a2007-11-06 22:07:40 +0000215 SmallPtrSet<const BasicBlock*, 16> BBPreds;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000216 if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
217 // It is faster to get preds from a PHI than with pred_iterator.
218 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
219 BBPreds.insert(BBPN->getIncomingBlock(i));
220 } else {
221 BBPreds.insert(pred_begin(BB), pred_end(BB));
222 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000223
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000224 // Walk the preds of DestBB.
225 for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) {
226 BasicBlock *Pred = DestBBPN->getIncomingBlock(i);
227 if (BBPreds.count(Pred)) { // Common predecessor?
228 BBI = DestBB->begin();
229 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
230 const Value *V1 = PN->getIncomingValueForBlock(Pred);
231 const Value *V2 = PN->getIncomingValueForBlock(BB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000232
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000233 // If V2 is a phi node in BB, look up what the mapped value will be.
234 if (const PHINode *V2PN = dyn_cast<PHINode>(V2))
235 if (V2PN->getParent() == BB)
236 V2 = V2PN->getIncomingValueForBlock(Pred);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000237
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000238 // If there is a conflict, bail out.
239 if (V1 != V2) return false;
240 }
241 }
242 }
243
244 return true;
245}
246
247
248/// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and
249/// an unconditional branch in it.
250void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) {
251 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
252 BasicBlock *DestBB = BI->getSuccessor(0);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000253
David Greene68d67fd2010-01-05 01:27:11 +0000254 DEBUG(dbgs() << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000255
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000256 // If the destination block has a single pred, then this is a trivial edge,
257 // just collapse it.
Chris Lattner9918fb52008-11-27 19:29:14 +0000258 if (BasicBlock *SinglePred = DestBB->getSinglePredecessor()) {
Chris Lattnerf5102a02008-11-28 19:54:49 +0000259 if (SinglePred != DestBB) {
260 // Remember if SinglePred was the entry block of the function. If so, we
261 // will need to move BB back to the entry position.
262 bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
Andreas Neustifterad809812009-09-16 09:26:52 +0000263 MergeBasicBlockIntoOnlyPred(DestBB, this);
Chris Lattner9918fb52008-11-27 19:29:14 +0000264
Chris Lattnerf5102a02008-11-28 19:54:49 +0000265 if (isEntry && BB != &BB->getParent()->getEntryBlock())
266 BB->moveBefore(&BB->getParent()->getEntryBlock());
267
David Greene68d67fd2010-01-05 01:27:11 +0000268 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerf5102a02008-11-28 19:54:49 +0000269 return;
270 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000271 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000272
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000273 // Otherwise, we have multiple predecessors of BB. Update the PHIs in DestBB
274 // to handle the new incoming edges it is about to have.
275 PHINode *PN;
276 for (BasicBlock::iterator BBI = DestBB->begin();
277 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
278 // Remove the incoming value for BB, and remember it.
279 Value *InVal = PN->removeIncomingValue(BB, false);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000280
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000281 // Two options: either the InVal is a phi node defined in BB or it is some
282 // value that dominates BB.
283 PHINode *InValPhi = dyn_cast<PHINode>(InVal);
284 if (InValPhi && InValPhi->getParent() == BB) {
285 // Add all of the input values of the input PHI as inputs of this phi.
286 for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i)
287 PN->addIncoming(InValPhi->getIncomingValue(i),
288 InValPhi->getIncomingBlock(i));
289 } else {
290 // Otherwise, add one instance of the dominating value for each edge that
291 // we will be adding.
292 if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
293 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
294 PN->addIncoming(InVal, BBPN->getIncomingBlock(i));
295 } else {
296 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
297 PN->addIncoming(InVal, *PI);
298 }
299 }
300 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000301
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000302 // The PHIs are now updated, change everything that refers to BB to use
303 // DestBB and remove BB.
304 BB->replaceAllUsesWith(DestBB);
Evan Cheng04149f72009-12-17 09:39:49 +0000305 if (PFI) {
306 PFI->replaceAllUses(BB, DestBB);
307 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB));
Andreas Neustifterad809812009-09-16 09:26:52 +0000308 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000309 BB->eraseFromParent();
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +0000310 ++NumElim;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000311
David Greene68d67fd2010-01-05 01:27:11 +0000312 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000313}
314
Chris Lattner98d5c312010-02-13 05:35:08 +0000315/// FindReusablePredBB - Check all of the predecessors of the block DestPHI
316/// lives in to see if there is a block that we can reuse as a critical edge
317/// from TIBB.
318static BasicBlock *FindReusablePredBB(PHINode *DestPHI, BasicBlock *TIBB) {
319 BasicBlock *Dest = DestPHI->getParent();
320
321 /// TIPHIValues - This array is lazily computed to determine the values of
322 /// PHIs in Dest that TI would provide.
323 SmallVector<Value*, 32> TIPHIValues;
324
325 /// TIBBEntryNo - This is a cache to speed up pred queries for TIBB.
326 unsigned TIBBEntryNo = 0;
327
328 // Check to see if Dest has any blocks that can be used as a split edge for
329 // this terminator.
330 for (unsigned pi = 0, e = DestPHI->getNumIncomingValues(); pi != e; ++pi) {
331 BasicBlock *Pred = DestPHI->getIncomingBlock(pi);
332 // To be usable, the pred has to end with an uncond branch to the dest.
333 BranchInst *PredBr = dyn_cast<BranchInst>(Pred->getTerminator());
334 if (!PredBr || !PredBr->isUnconditional())
335 continue;
336 // Must be empty other than the branch and debug info.
337 BasicBlock::iterator I = Pred->begin();
338 while (isa<DbgInfoIntrinsic>(I))
339 I++;
340 if (&*I != PredBr)
341 continue;
342 // Cannot be the entry block; its label does not get emitted.
343 if (Pred == &Dest->getParent()->getEntryBlock())
344 continue;
345
346 // Finally, since we know that Dest has phi nodes in it, we have to make
347 // sure that jumping to Pred will have the same effect as going to Dest in
348 // terms of PHI values.
349 PHINode *PN;
350 unsigned PHINo = 0;
351 unsigned PredEntryNo = pi;
352
353 bool FoundMatch = true;
354 for (BasicBlock::iterator I = Dest->begin();
355 (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo) {
356 if (PHINo == TIPHIValues.size()) {
357 if (PN->getIncomingBlock(TIBBEntryNo) != TIBB)
358 TIBBEntryNo = PN->getBasicBlockIndex(TIBB);
359 TIPHIValues.push_back(PN->getIncomingValue(TIBBEntryNo));
360 }
361
362 // If the PHI entry doesn't work, we can't use this pred.
363 if (PN->getIncomingBlock(PredEntryNo) != Pred)
364 PredEntryNo = PN->getBasicBlockIndex(Pred);
365
366 if (TIPHIValues[PHINo] != PN->getIncomingValue(PredEntryNo)) {
367 FoundMatch = false;
368 break;
369 }
370 }
371
372 // If we found a workable predecessor, change TI to branch to Succ.
373 if (FoundMatch)
374 return Pred;
375 }
376 return 0;
377}
378
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000379
Chris Lattnerebe80752007-12-24 19:32:55 +0000380/// SplitEdgeNicely - Split the critical edge from TI to its specified
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000381/// successor if it will improve codegen. We only do this if the successor has
382/// phi nodes (otherwise critical edges are ok). If there is already another
383/// predecessor of the succ that is empty (and thus has no phi nodes), use it
384/// instead of introducing a new block.
Evan Chengab631522008-12-19 18:03:11 +0000385static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum,
Mike Stumpfe095f32009-05-04 18:40:41 +0000386 SmallSet<std::pair<const BasicBlock*,
387 const BasicBlock*>, 8> &BackEdges,
Evan Chengab631522008-12-19 18:03:11 +0000388 Pass *P) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000389 BasicBlock *TIBB = TI->getParent();
390 BasicBlock *Dest = TI->getSuccessor(SuccNum);
391 assert(isa<PHINode>(Dest->begin()) &&
392 "This should only be called if Dest has a PHI!");
Chris Lattner3f65b5e2010-02-13 04:04:42 +0000393 PHINode *DestPHI = cast<PHINode>(Dest->begin());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000394
Evan Chengfc0b80d2009-03-13 22:59:14 +0000395 // Do not split edges to EH landing pads.
Chris Lattner3f65b5e2010-02-13 04:04:42 +0000396 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(TI))
Evan Chengfc0b80d2009-03-13 22:59:14 +0000397 if (Invoke->getSuccessor(1) == Dest)
398 return;
Evan Chengfc0b80d2009-03-13 22:59:14 +0000399
Chris Lattnerebe80752007-12-24 19:32:55 +0000400 // As a hack, never split backedges of loops. Even though the copy for any
401 // PHIs inserted on the backedge would be dead for exits from the loop, we
402 // assume that the cost of *splitting* the backedge would be too high.
Evan Chengab631522008-12-19 18:03:11 +0000403 if (BackEdges.count(std::make_pair(TIBB, Dest)))
Chris Lattnerebe80752007-12-24 19:32:55 +0000404 return;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000405
Chris Lattnerc09687b2010-02-13 19:07:06 +0000406 if (BasicBlock *ReuseBB = FindReusablePredBB(DestPHI, TIBB)) {
407 ProfileInfo *PFI = P->getAnalysisIfAvailable<ProfileInfo>();
408 if (PFI)
409 PFI->splitEdge(TIBB, Dest, ReuseBB);
410 Dest->removePredecessor(TIBB);
411 TI->setSuccessor(SuccNum, ReuseBB);
Evan Chengab631522008-12-19 18:03:11 +0000412 return;
413 }
414
Chris Lattnerc09687b2010-02-13 19:07:06 +0000415 SplitCriticalEdge(TI, SuccNum, P, true);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000416}
417
Evan Chengab631522008-12-19 18:03:11 +0000418
Chris Lattnerdd77df32007-04-13 20:30:56 +0000419/// OptimizeNoopCopyExpression - If the specified cast instruction is a noop
Dan Gohmana119de82009-06-14 23:30:43 +0000420/// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC),
421/// sink it into user blocks to reduce the number of virtual
Dale Johannesence0b2372007-06-12 16:50:17 +0000422/// registers that must be created and coalesced.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000423///
424/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000425///
Chris Lattnerdd77df32007-04-13 20:30:56 +0000426static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){
Eric Christopher692bf6b2008-09-24 05:32:41 +0000427 // If this is a noop copy,
Owen Andersone50ed302009-08-10 22:56:29 +0000428 EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
429 EVT DstVT = TLI.getValueType(CI->getType());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000430
Chris Lattnerdd77df32007-04-13 20:30:56 +0000431 // This is an fp<->int conversion?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000432 if (SrcVT.isInteger() != DstVT.isInteger())
Chris Lattnerdd77df32007-04-13 20:30:56 +0000433 return false;
Duncan Sands8e4eb092008-06-08 20:54:56 +0000434
Chris Lattnerdd77df32007-04-13 20:30:56 +0000435 // If this is an extension, it will be a zero or sign extension, which
436 // isn't a noop.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000437 if (SrcVT.bitsLT(DstVT)) return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000438
Chris Lattnerdd77df32007-04-13 20:30:56 +0000439 // If these values will be promoted, find out what they will be promoted
440 // to. This helps us consider truncates on PPC as noop copies when they
441 // are.
Chris Lattneraafe6262010-08-25 23:00:45 +0000442 if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote)
Owen Anderson23b9b192009-08-12 00:36:31 +0000443 SrcVT = TLI.getTypeToTransformTo(CI->getContext(), SrcVT);
Chris Lattneraafe6262010-08-25 23:00:45 +0000444 if (TLI.getTypeAction(DstVT) == TargetLowering::Promote)
Owen Anderson23b9b192009-08-12 00:36:31 +0000445 DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000446
Chris Lattnerdd77df32007-04-13 20:30:56 +0000447 // If, after promotion, these are the same types, this is a noop copy.
448 if (SrcVT != DstVT)
449 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000450
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000451 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000452
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000453 /// InsertedCasts - Only insert a cast in each block once.
Dale Johannesence0b2372007-06-12 16:50:17 +0000454 DenseMap<BasicBlock*, CastInst*> InsertedCasts;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000455
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000456 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000457 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000458 UI != E; ) {
459 Use &TheUse = UI.getUse();
460 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000461
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000462 // Figure out which BB this cast is used in. For PHI's this is the
463 // appropriate predecessor block.
464 BasicBlock *UserBB = User->getParent();
465 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Gabor Greifa36791d2009-01-23 19:40:15 +0000466 UserBB = PN->getIncomingBlock(UI);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000467 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000468
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000469 // Preincrement use iterator so we don't invalidate it.
470 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000471
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000472 // If this user is in the same block as the cast, don't change the cast.
473 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000474
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000475 // If we have already inserted a cast into this block, use it.
476 CastInst *&InsertedCast = InsertedCasts[UserBB];
477
478 if (!InsertedCast) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000479 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000480
481 InsertedCast =
482 CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "",
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000483 InsertPt);
484 MadeChange = true;
485 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000486
Dale Johannesence0b2372007-06-12 16:50:17 +0000487 // Replace a use of the cast with a use of the new cast.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000488 TheUse = InsertedCast;
489 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000490
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000491 // If we removed all uses, nuke the cast.
Duncan Sandse0038132008-01-20 16:51:46 +0000492 if (CI->use_empty()) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000493 CI->eraseFromParent();
Duncan Sandse0038132008-01-20 16:51:46 +0000494 MadeChange = true;
495 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000496
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000497 return MadeChange;
498}
499
Eric Christopher692bf6b2008-09-24 05:32:41 +0000500/// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce
Dale Johannesence0b2372007-06-12 16:50:17 +0000501/// the number of virtual registers that must be created and coalesced. This is
Chris Lattner684b22d2007-08-02 16:53:43 +0000502/// a clear win except on targets with multiple condition code registers
503/// (PowerPC), where it might lose; some adjustment may be wanted there.
Dale Johannesence0b2372007-06-12 16:50:17 +0000504///
505/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000506static bool OptimizeCmpExpression(CmpInst *CI) {
Dale Johannesence0b2372007-06-12 16:50:17 +0000507 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000508
Dale Johannesence0b2372007-06-12 16:50:17 +0000509 /// InsertedCmp - Only insert a cmp in each block once.
510 DenseMap<BasicBlock*, CmpInst*> InsertedCmps;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000511
Dale Johannesence0b2372007-06-12 16:50:17 +0000512 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000513 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Dale Johannesence0b2372007-06-12 16:50:17 +0000514 UI != E; ) {
515 Use &TheUse = UI.getUse();
516 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000517
Dale Johannesence0b2372007-06-12 16:50:17 +0000518 // Preincrement use iterator so we don't invalidate it.
519 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000520
Dale Johannesence0b2372007-06-12 16:50:17 +0000521 // Don't bother for PHI nodes.
522 if (isa<PHINode>(User))
523 continue;
524
525 // Figure out which BB this cmp is used in.
526 BasicBlock *UserBB = User->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000527
Dale Johannesence0b2372007-06-12 16:50:17 +0000528 // If this user is in the same block as the cmp, don't change the cmp.
529 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000530
Dale Johannesence0b2372007-06-12 16:50:17 +0000531 // If we have already inserted a cmp into this block, use it.
532 CmpInst *&InsertedCmp = InsertedCmps[UserBB];
533
534 if (!InsertedCmp) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000535 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000536
537 InsertedCmp =
Dan Gohman1c8a23c2009-08-25 23:17:54 +0000538 CmpInst::Create(CI->getOpcode(),
Owen Anderson333c4002009-07-09 23:48:35 +0000539 CI->getPredicate(), CI->getOperand(0),
Dale Johannesence0b2372007-06-12 16:50:17 +0000540 CI->getOperand(1), "", InsertPt);
541 MadeChange = true;
542 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000543
Dale Johannesence0b2372007-06-12 16:50:17 +0000544 // Replace a use of the cmp with a use of the new cmp.
545 TheUse = InsertedCmp;
546 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000547
Dale Johannesence0b2372007-06-12 16:50:17 +0000548 // If we removed all uses, nuke the cmp.
549 if (CI->use_empty())
550 CI->eraseFromParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000551
Dale Johannesence0b2372007-06-12 16:50:17 +0000552 return MadeChange;
553}
554
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000555namespace {
556class CodeGenPrepareFortifiedLibCalls : public SimplifyFortifiedLibCalls {
557protected:
558 void replaceCall(Value *With) {
559 CI->replaceAllUsesWith(With);
560 CI->eraseFromParent();
561 }
562 bool isFoldable(unsigned SizeCIOp, unsigned, bool) const {
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000563 if (ConstantInt *SizeCI =
564 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp)))
565 return SizeCI->isAllOnesValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000566 return false;
567 }
568};
569} // end anonymous namespace
570
Eric Christopher040056f2010-03-11 02:41:03 +0000571bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) {
Eric Christopher040056f2010-03-11 02:41:03 +0000572 // Lower all uses of llvm.objectsize.*
573 IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI);
574 if (II && II->getIntrinsicID() == Intrinsic::objectsize) {
Gabor Greifde9f5452010-06-24 00:44:01 +0000575 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1);
Eric Christopher040056f2010-03-11 02:41:03 +0000576 const Type *ReturnTy = CI->getType();
577 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
578 CI->replaceAllUsesWith(RetVal);
579 CI->eraseFromParent();
580 return true;
581 }
582
583 // From here on out we're working with named functions.
584 if (CI->getCalledFunction() == 0) return false;
585
586 // We'll need TargetData from here on out.
587 const TargetData *TD = TLI ? TLI->getTargetData() : 0;
588 if (!TD) return false;
589
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000590 // Lower all default uses of _chk calls. This is very similar
591 // to what InstCombineCalls does, but here we are only lowering calls
Eric Christopher040056f2010-03-11 02:41:03 +0000592 // that have the default "don't know" as the objectsize. Anything else
593 // should be left alone.
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000594 CodeGenPrepareFortifiedLibCalls Simplifier;
595 return Simplifier.fold(CI, TD);
Eric Christopher040056f2010-03-11 02:41:03 +0000596}
Chris Lattner88a5c832008-11-25 07:09:13 +0000597//===----------------------------------------------------------------------===//
Chris Lattner88a5c832008-11-25 07:09:13 +0000598// Memory Optimization
599//===----------------------------------------------------------------------===//
600
Chris Lattnerdd77df32007-04-13 20:30:56 +0000601/// IsNonLocalValue - Return true if the specified values are defined in a
602/// different basic block than BB.
603static bool IsNonLocalValue(Value *V, BasicBlock *BB) {
604 if (Instruction *I = dyn_cast<Instruction>(V))
605 return I->getParent() != BB;
606 return false;
607}
608
Bob Wilson4a8ee232009-12-03 21:47:07 +0000609/// OptimizeMemoryInst - Load and Store Instructions often have
Chris Lattnerdd77df32007-04-13 20:30:56 +0000610/// addressing modes that can do significant amounts of computation. As such,
611/// instruction selection will try to get the load or store to do as much
612/// computation as possible for the program. The problem is that isel can only
613/// see within a single block. As such, we sink as much legal addressing mode
614/// stuff into the block as possible.
Chris Lattner88a5c832008-11-25 07:09:13 +0000615///
616/// This method is used to optimize both load/store and inline asms with memory
617/// operands.
Chris Lattner896617b2008-11-26 03:20:37 +0000618bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr,
Chris Lattner88a5c832008-11-25 07:09:13 +0000619 const Type *AccessTy,
620 DenseMap<Value*,Value*> &SunkAddrs) {
Owen Anderson35bf4d62010-11-27 08:15:55 +0000621 Value *Repl = Addr;
622
Owen Andersond2f41742010-11-19 22:15:03 +0000623 // Try to collapse single-value PHI nodes. This is necessary to undo
624 // unprofitable PRE transformations.
Owen Anderson35bf4d62010-11-27 08:15:55 +0000625 std::vector<Value*> worklist;
626 SmallPtrSet<Value*, 4> Visited;
627 worklist.push_back(Addr);
628
629 // Use a worklist to iteratively look through PHI nodes, and ensure that
630 // the addressing mode obtained from the non-PHI roots of the graph
631 // are equivalent.
632 Value *Consensus = 0;
633 unsigned NumUses = 0;
634 SmallVector<Instruction*, 16> AddrModeInsts;
635 ExtAddrMode AddrMode;
636 while (!worklist.empty()) {
637 Value *V = worklist.back();
638 worklist.pop_back();
639
640 // Break use-def graph loops.
641 if (Visited.count(V)) {
642 Consensus = 0;
643 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000644 }
645
Owen Anderson35bf4d62010-11-27 08:15:55 +0000646 Visited.insert(V);
647
648 // For a PHI node, push all of its incoming values.
649 if (PHINode *P = dyn_cast<PHINode>(V)) {
650 for (unsigned i = 0, e = P->getNumIncomingValues(); i != e; ++i)
651 worklist.push_back(P->getIncomingValue(i));
652 continue;
653 }
654
655 // For non-PHIs, determine the addressing mode being computed.
656 SmallVector<Instruction*, 16> NewAddrModeInsts;
657 ExtAddrMode NewAddrMode =
658 AddressingModeMatcher::Match(V, AccessTy,MemoryInst,
659 NewAddrModeInsts, *TLI);
660
661 // Ensure that the obtained addressing mode is equivalent to that obtained
662 // for all other roots of the PHI traversal. Also, when choosing one
663 // such root as representative, select the one with the most uses in order
664 // to keep the cost modeling heuristics in AddressingModeMatcher applicable.
665 if (!Consensus || NewAddrMode == AddrMode) {
666 if (V->getNumUses() > NumUses) {
667 Consensus = V;
668 NumUses = V->getNumUses();
669 AddrMode = NewAddrMode;
670 AddrModeInsts = NewAddrModeInsts;
671 }
672 continue;
673 }
674
675 Consensus = 0;
676 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000677 }
678
Owen Anderson35bf4d62010-11-27 08:15:55 +0000679 // If the addressing mode couldn't be determined, or if multiple different
680 // ones were determined, bail out now.
681 if (!Consensus) return false;
682
Chris Lattnerdd77df32007-04-13 20:30:56 +0000683 // Check to see if any of the instructions supersumed by this addr mode are
684 // non-local to I's BB.
685 bool AnyNonLocal = false;
686 for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) {
Chris Lattner896617b2008-11-26 03:20:37 +0000687 if (IsNonLocalValue(AddrModeInsts[i], MemoryInst->getParent())) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000688 AnyNonLocal = true;
689 break;
690 }
691 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000692
Chris Lattnerdd77df32007-04-13 20:30:56 +0000693 // If all the instructions matched are already in this BB, don't do anything.
694 if (!AnyNonLocal) {
David Greene68d67fd2010-01-05 01:27:11 +0000695 DEBUG(dbgs() << "CGP: Found local addrmode: " << AddrMode << "\n");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000696 return false;
697 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000698
Chris Lattnerdd77df32007-04-13 20:30:56 +0000699 // Insert this computation right after this user. Since our caller is
700 // scanning from the top of the BB to the bottom, reuse of the expr are
701 // guaranteed to happen later.
Chris Lattner896617b2008-11-26 03:20:37 +0000702 BasicBlock::iterator InsertPt = MemoryInst;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000703
Chris Lattnerdd77df32007-04-13 20:30:56 +0000704 // Now that we determined the addressing expression we want to use and know
705 // that we have to sink it into this block. Check to see if we have already
706 // done this for some other load/store instr in this block. If so, reuse the
707 // computation.
708 Value *&SunkAddr = SunkAddrs[Addr];
709 if (SunkAddr) {
David Greene68d67fd2010-01-05 01:27:11 +0000710 DEBUG(dbgs() << "CGP: Reusing nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000711 << *MemoryInst);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000712 if (SunkAddr->getType() != Addr->getType())
713 SunkAddr = new BitCastInst(SunkAddr, Addr->getType(), "tmp", InsertPt);
714 } else {
David Greene68d67fd2010-01-05 01:27:11 +0000715 DEBUG(dbgs() << "CGP: SINKING nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000716 << *MemoryInst);
Owen Anderson1d0be152009-08-13 21:58:54 +0000717 const Type *IntPtrTy =
718 TLI->getTargetData()->getIntPtrType(AccessTy->getContext());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000719
Chris Lattnerdd77df32007-04-13 20:30:56 +0000720 Value *Result = 0;
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000721
722 // Start with the base register. Do this first so that subsequent address
723 // matching finds it last, which will prevent it from trying to match it
724 // as the scaled value in case it happens to be a mul. That would be
725 // problematic if we've sunk a different mul for the scale, because then
726 // we'd end up sinking both muls.
727 if (AddrMode.BaseReg) {
728 Value *V = AddrMode.BaseReg;
Duncan Sands1df98592010-02-16 11:11:14 +0000729 if (V->getType()->isPointerTy())
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000730 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
731 if (V->getType() != IntPtrTy)
732 V = CastInst::CreateIntegerCast(V, IntPtrTy, /*isSigned=*/true,
733 "sunkaddr", InsertPt);
734 Result = V;
735 }
736
737 // Add the scale value.
Chris Lattnerdd77df32007-04-13 20:30:56 +0000738 if (AddrMode.Scale) {
739 Value *V = AddrMode.ScaledReg;
740 if (V->getType() == IntPtrTy) {
741 // done.
Duncan Sands1df98592010-02-16 11:11:14 +0000742 } else if (V->getType()->isPointerTy()) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000743 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
744 } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() <
745 cast<IntegerType>(V->getType())->getBitWidth()) {
746 V = new TruncInst(V, IntPtrTy, "sunkaddr", InsertPt);
747 } else {
748 V = new SExtInst(V, IntPtrTy, "sunkaddr", InsertPt);
749 }
750 if (AddrMode.Scale != 1)
Owen Andersoneed707b2009-07-24 23:12:02 +0000751 V = BinaryOperator::CreateMul(V, ConstantInt::get(IntPtrTy,
Owen Andersond672ecb2009-07-03 00:17:18 +0000752 AddrMode.Scale),
Chris Lattnerdd77df32007-04-13 20:30:56 +0000753 "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000754 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000755 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000756 else
757 Result = V;
758 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000759
Chris Lattnerdd77df32007-04-13 20:30:56 +0000760 // Add in the BaseGV if present.
761 if (AddrMode.BaseGV) {
762 Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr",
763 InsertPt);
764 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000765 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000766 else
767 Result = V;
768 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000769
Chris Lattnerdd77df32007-04-13 20:30:56 +0000770 // Add in the Base Offset if present.
771 if (AddrMode.BaseOffs) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000772 Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000773 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000774 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000775 else
776 Result = V;
777 }
778
779 if (Result == 0)
Owen Andersona7235ea2009-07-31 20:28:14 +0000780 SunkAddr = Constant::getNullValue(Addr->getType());
Chris Lattnerdd77df32007-04-13 20:30:56 +0000781 else
782 SunkAddr = new IntToPtrInst(Result, Addr->getType(), "sunkaddr",InsertPt);
783 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000784
Owen Andersond2f41742010-11-19 22:15:03 +0000785 MemoryInst->replaceUsesOfWith(Repl, SunkAddr);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000786
Owen Andersond2f41742010-11-19 22:15:03 +0000787 if (Repl->use_empty()) {
788 RecursivelyDeleteTriviallyDeadInstructions(Repl);
Dale Johannesen536d31b2010-03-31 20:37:15 +0000789 // This address is now available for reassignment, so erase the table entry;
790 // we don't want to match some completely different instruction.
791 SunkAddrs[Addr] = 0;
792 }
Chris Lattnerdd77df32007-04-13 20:30:56 +0000793 return true;
794}
795
Evan Cheng9bf12b52008-02-26 02:42:37 +0000796/// OptimizeInlineAsmInst - If there are any memory operands, use
Chris Lattner88a5c832008-11-25 07:09:13 +0000797/// OptimizeMemoryInst to sink their address computing into the block when
Evan Cheng9bf12b52008-02-26 02:42:37 +0000798/// possible / profitable.
799bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS,
800 DenseMap<Value*,Value*> &SunkAddrs) {
801 bool MadeChange = false;
Evan Cheng9bf12b52008-02-26 02:42:37 +0000802
John Thompson44ab89e2010-10-29 17:29:13 +0000803 TargetLowering::AsmOperandInfoVector TargetConstraints = TLI->ParseConstraints(CS);
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000804 unsigned ArgNo = 0;
John Thompsoneac6e1d2010-09-13 18:15:37 +0000805 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
806 TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i];
807
Evan Cheng9bf12b52008-02-26 02:42:37 +0000808 // Compute the constraint code and ConstraintType to use.
Dale Johannesen1784d162010-06-25 21:55:36 +0000809 TLI->ComputeConstraintToUse(OpInfo, SDValue());
Evan Cheng9bf12b52008-02-26 02:42:37 +0000810
Eli Friedman9ec80952008-02-26 18:37:49 +0000811 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
812 OpInfo.isIndirect) {
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000813 Value *OpVal = const_cast<Value *>(CS.getArgument(ArgNo++));
Chris Lattner88a5c832008-11-25 07:09:13 +0000814 MadeChange |= OptimizeMemoryInst(I, OpVal, OpVal->getType(), SunkAddrs);
Dale Johannesen677c6ec2010-09-16 18:30:55 +0000815 } else if (OpInfo.Type == InlineAsm::isInput)
816 ArgNo++;
Evan Cheng9bf12b52008-02-26 02:42:37 +0000817 }
818
819 return MadeChange;
820}
821
Dan Gohmanb00f2362009-10-16 20:59:35 +0000822/// MoveExtToFormExtLoad - Move a zext or sext fed by a load into the same
823/// basic block as the load, unless conditions are unfavorable. This allows
824/// SelectionDAG to fold the extend into the load.
825///
826bool CodeGenPrepare::MoveExtToFormExtLoad(Instruction *I) {
827 // Look for a load being extended.
828 LoadInst *LI = dyn_cast<LoadInst>(I->getOperand(0));
829 if (!LI) return false;
830
831 // If they're already in the same block, there's nothing to do.
832 if (LI->getParent() == I->getParent())
833 return false;
834
835 // If the load has other users and the truncate is not free, this probably
836 // isn't worthwhile.
837 if (!LI->hasOneUse() &&
Bob Wilsonec57a1a2010-09-22 18:44:56 +0000838 TLI && (TLI->isTypeLegal(TLI->getValueType(LI->getType())) ||
839 !TLI->isTypeLegal(TLI->getValueType(I->getType()))) &&
Bob Wilson71dc4d92010-09-21 21:54:27 +0000840 !TLI->isTruncateFree(I->getType(), LI->getType()))
Dan Gohmanb00f2362009-10-16 20:59:35 +0000841 return false;
842
843 // Check whether the target supports casts folded into loads.
844 unsigned LType;
845 if (isa<ZExtInst>(I))
846 LType = ISD::ZEXTLOAD;
847 else {
848 assert(isa<SExtInst>(I) && "Unexpected ext type!");
849 LType = ISD::SEXTLOAD;
850 }
851 if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType())))
852 return false;
853
854 // Move the extend into the same block as the load, so that SelectionDAG
855 // can fold it.
856 I->removeFromParent();
857 I->insertAfter(LI);
858 return true;
859}
860
Evan Chengbdcb7262007-12-05 23:58:20 +0000861bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
862 BasicBlock *DefBB = I->getParent();
863
Bob Wilson9120f5c2010-09-21 21:44:14 +0000864 // If the result of a {s|z}ext and its source are both live out, rewrite all
Evan Chengbdcb7262007-12-05 23:58:20 +0000865 // other uses of the source with result of extension.
866 Value *Src = I->getOperand(0);
867 if (Src->hasOneUse())
868 return false;
869
Evan Cheng696e5c02007-12-13 07:50:36 +0000870 // Only do this xform if truncating is free.
Gabor Greif53bdbd72008-02-26 19:13:21 +0000871 if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType()))
Evan Chengf9785f92007-12-13 03:32:53 +0000872 return false;
873
Evan Cheng772de512007-12-12 00:51:06 +0000874 // Only safe to perform the optimization if the source is also defined in
Evan Cheng765dff22007-12-12 02:53:41 +0000875 // this block.
876 if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent())
Evan Cheng772de512007-12-12 00:51:06 +0000877 return false;
878
Evan Chengbdcb7262007-12-05 23:58:20 +0000879 bool DefIsLiveOut = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000880 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000881 UI != E; ++UI) {
882 Instruction *User = cast<Instruction>(*UI);
883
884 // Figure out which BB this ext is used in.
885 BasicBlock *UserBB = User->getParent();
886 if (UserBB == DefBB) continue;
887 DefIsLiveOut = true;
888 break;
889 }
890 if (!DefIsLiveOut)
891 return false;
892
Evan Cheng765dff22007-12-12 02:53:41 +0000893 // Make sure non of the uses are PHI nodes.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000894 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Cheng765dff22007-12-12 02:53:41 +0000895 UI != E; ++UI) {
896 Instruction *User = cast<Instruction>(*UI);
Evan Chengf9785f92007-12-13 03:32:53 +0000897 BasicBlock *UserBB = User->getParent();
898 if (UserBB == DefBB) continue;
899 // Be conservative. We don't want this xform to end up introducing
900 // reloads just before load / store instructions.
901 if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User))
Evan Cheng765dff22007-12-12 02:53:41 +0000902 return false;
903 }
904
Evan Chengbdcb7262007-12-05 23:58:20 +0000905 // InsertedTruncs - Only insert one trunc in each block once.
906 DenseMap<BasicBlock*, Instruction*> InsertedTruncs;
907
908 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000909 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000910 UI != E; ++UI) {
911 Use &TheUse = UI.getUse();
912 Instruction *User = cast<Instruction>(*UI);
913
914 // Figure out which BB this ext is used in.
915 BasicBlock *UserBB = User->getParent();
916 if (UserBB == DefBB) continue;
917
918 // Both src and def are live in this block. Rewrite the use.
919 Instruction *&InsertedTrunc = InsertedTruncs[UserBB];
920
921 if (!InsertedTrunc) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000922 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000923
Evan Chengbdcb7262007-12-05 23:58:20 +0000924 InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt);
925 }
926
927 // Replace a use of the {s|z}ext source with a use of the result.
928 TheUse = InsertedTrunc;
929
930 MadeChange = true;
931 }
932
933 return MadeChange;
934}
935
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000936// In this pass we look for GEP and cast instructions that are used
937// across basic blocks and rewrite them to improve basic-block-at-a-time
938// selection.
939bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) {
940 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000941
Evan Chengab631522008-12-19 18:03:11 +0000942 // Split all critical edges where the dest block has a PHI.
Evan Chenge1bcb442010-08-17 01:34:49 +0000943 if (CriticalEdgeSplit) {
944 TerminatorInst *BBTI = BB.getTerminator();
945 if (BBTI->getNumSuccessors() > 1 && !isa<IndirectBrInst>(BBTI)) {
946 for (unsigned i = 0, e = BBTI->getNumSuccessors(); i != e; ++i) {
947 BasicBlock *SuccBB = BBTI->getSuccessor(i);
948 if (isa<PHINode>(SuccBB->begin()) && isCriticalEdge(BBTI, i, true))
949 SplitEdgeNicely(BBTI, i, BackEdges, this);
950 }
Evan Chengab631522008-12-19 18:03:11 +0000951 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000952 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000953
Chris Lattnerdd77df32007-04-13 20:30:56 +0000954 // Keep track of non-local addresses that have been sunk into this block.
955 // This allows us to avoid inserting duplicate code for blocks with multiple
956 // load/stores of the same address.
957 DenseMap<Value*, Value*> SunkAddrs;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000958
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000959 for (BasicBlock::iterator BBI = BB.begin(), E = BB.end(); BBI != E; ) {
960 Instruction *I = BBI++;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000961
Chris Lattnerdd77df32007-04-13 20:30:56 +0000962 if (CastInst *CI = dyn_cast<CastInst>(I)) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000963 // If the source of the cast is a constant, then this should have
964 // already been constant folded. The only reason NOT to constant fold
965 // it is if something (e.g. LSR) was careful to place the constant
966 // evaluation in a block other than then one that uses it (e.g. to hoist
967 // the address of globals out of a loop). If this is the case, we don't
968 // want to forward-subst the cast.
969 if (isa<Constant>(CI->getOperand(0)))
970 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000971
Evan Chengbdcb7262007-12-05 23:58:20 +0000972 bool Change = false;
973 if (TLI) {
974 Change = OptimizeNoopCopyExpression(CI, *TLI);
975 MadeChange |= Change;
976 }
977
Dan Gohmanb00f2362009-10-16 20:59:35 +0000978 if (!Change && (isa<ZExtInst>(I) || isa<SExtInst>(I))) {
979 MadeChange |= MoveExtToFormExtLoad(I);
Evan Chengbdcb7262007-12-05 23:58:20 +0000980 MadeChange |= OptimizeExtUses(I);
Dan Gohmanb00f2362009-10-16 20:59:35 +0000981 }
Dale Johannesence0b2372007-06-12 16:50:17 +0000982 } else if (CmpInst *CI = dyn_cast<CmpInst>(I)) {
983 MadeChange |= OptimizeCmpExpression(CI);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000984 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
985 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +0000986 MadeChange |= OptimizeMemoryInst(I, I->getOperand(0), LI->getType(),
987 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000988 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
989 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +0000990 MadeChange |= OptimizeMemoryInst(I, SI->getOperand(1),
991 SI->getOperand(0)->getType(),
992 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000993 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattnerf25646b2007-04-14 00:17:39 +0000994 if (GEPI->hasAllZeroIndices()) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000995 /// The GEP operand must be a pointer, so must its result -> BitCast
Eric Christopher692bf6b2008-09-24 05:32:41 +0000996 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(),
Chris Lattnerdd77df32007-04-13 20:30:56 +0000997 GEPI->getName(), GEPI);
998 GEPI->replaceAllUsesWith(NC);
999 GEPI->eraseFromParent();
1000 MadeChange = true;
1001 BBI = NC;
1002 }
1003 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
1004 // If we found an inline asm expession, and if the target knows how to
1005 // lower it to normal LLVM code, do so now.
Chris Lattner8850b362009-07-20 17:52:52 +00001006 if (TLI && isa<InlineAsm>(CI->getCalledValue())) {
1007 if (TLI->ExpandInlineAsm(CI)) {
1008 BBI = BB.begin();
1009 // Avoid processing instructions out of order, which could cause
1010 // reuse before a value is defined.
1011 SunkAddrs.clear();
1012 } else
1013 // Sink address computing for memory operands into the block.
1014 MadeChange |= OptimizeInlineAsmInst(I, &(*CI), SunkAddrs);
Eric Christopher040056f2010-03-11 02:41:03 +00001015 } else {
1016 // Other CallInst optimizations that don't need to muck with the
1017 // enclosing iterator here.
1018 MadeChange |= OptimizeCallInst(CI);
Chris Lattner8850b362009-07-20 17:52:52 +00001019 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001020 }
1021 }
Eric Christopher692bf6b2008-09-24 05:32:41 +00001022
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001023 return MadeChange;
1024}