blob: fa60d3f29060bdf1dd03c6dac851bebc1eaa9f78 [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"
31#include "llvm/ADT/DenseMap.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000032#include "llvm/ADT/SmallSet.h"
Dan Gohman03ce0422009-02-13 17:45:12 +000033#include "llvm/Assembly/Writer.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000034#include "llvm/Support/CallSite.h"
Evan Chengab631522008-12-19 18:03:11 +000035#include "llvm/Support/CommandLine.h"
Evan Chengbdcb7262007-12-05 23:58:20 +000036#include "llvm/Support/Debug.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000037#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner088a1e82008-11-25 04:42:10 +000038#include "llvm/Support/PatternMatch.h"
Dan Gohman6c1980b2009-07-25 01:13:51 +000039#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000040using namespace llvm;
Chris Lattner088a1e82008-11-25 04:42:10 +000041using namespace llvm::PatternMatch;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000042
Evan Chengab631522008-12-19 18:03:11 +000043static cl::opt<bool> FactorCommonPreds("split-critical-paths-tweak",
44 cl::init(false), cl::Hidden);
45
Eric Christopher692bf6b2008-09-24 05:32:41 +000046namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000047 class CodeGenPrepare : public FunctionPass {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000048 /// TLI - Keep a pointer of a TargetLowering to consult for determining
49 /// transformation profitability.
50 const TargetLowering *TLI;
Evan Cheng04149f72009-12-17 09:39:49 +000051 ProfileInfo *PFI;
Evan Chengab631522008-12-19 18:03:11 +000052
53 /// BackEdges - Keep a set of all the loop back edges.
54 ///
Mike Stumpfe095f32009-05-04 18:40:41 +000055 SmallSet<std::pair<const BasicBlock*, const BasicBlock*>, 8> BackEdges;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000056 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000057 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000058 explicit CodeGenPrepare(const TargetLowering *tli = 0)
Dan Gohmanae73dc12008-09-04 17:05:41 +000059 : FunctionPass(&ID), TLI(tli) {}
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000060 bool runOnFunction(Function &F);
Eric Christopher692bf6b2008-09-24 05:32:41 +000061
Andreas Neustifterad809812009-09-16 09:26:52 +000062 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
63 AU.addPreserved<ProfileInfo>();
64 }
65
Dan Gohmanaa0e5232010-02-05 19:24:11 +000066 virtual void releaseMemory() {
67 BackEdges.clear();
68 }
69
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000070 private:
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +000071 bool EliminateMostlyEmptyBlocks(Function &F);
72 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
73 void EliminateMostlyEmptyBlock(BasicBlock *BB);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000074 bool OptimizeBlock(BasicBlock &BB);
Chris Lattner88a5c832008-11-25 07:09:13 +000075 bool OptimizeMemoryInst(Instruction *I, Value *Addr, const Type *AccessTy,
76 DenseMap<Value*,Value*> &SunkAddrs);
Evan Cheng9bf12b52008-02-26 02:42:37 +000077 bool OptimizeInlineAsmInst(Instruction *I, CallSite CS,
78 DenseMap<Value*,Value*> &SunkAddrs);
Dan Gohmanb00f2362009-10-16 20:59:35 +000079 bool MoveExtToFormExtLoad(Instruction *I);
Evan Chengbdcb7262007-12-05 23:58:20 +000080 bool OptimizeExtUses(Instruction *I);
Mike Stumpfe095f32009-05-04 18:40:41 +000081 void findLoopBackEdges(const Function &F);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000082 };
83}
Devang Patel794fd752007-05-01 21:15:47 +000084
Devang Patel19974732007-05-03 01:11:54 +000085char CodeGenPrepare::ID = 0;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000086static RegisterPass<CodeGenPrepare> X("codegenprepare",
87 "Optimize for code generation");
88
89FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) {
90 return new CodeGenPrepare(TLI);
91}
92
Evan Chengab631522008-12-19 18:03:11 +000093/// findLoopBackEdges - Do a DFS walk to find loop back edges.
94///
Mike Stumpfe095f32009-05-04 18:40:41 +000095void CodeGenPrepare::findLoopBackEdges(const Function &F) {
96 SmallVector<std::pair<const BasicBlock*,const BasicBlock*>, 32> Edges;
97 FindFunctionBackedges(F, Edges);
98
99 BackEdges.insert(Edges.begin(), Edges.end());
Evan Chengab631522008-12-19 18:03:11 +0000100}
101
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000102
103bool CodeGenPrepare::runOnFunction(Function &F) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000104 bool EverMadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000105
Evan Cheng04149f72009-12-17 09:39:49 +0000106 PFI = getAnalysisIfAvailable<ProfileInfo>();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000107 // First pass, eliminate blocks that contain only PHI nodes and an
108 // unconditional branch.
109 EverMadeChange |= EliminateMostlyEmptyBlocks(F);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000110
Evan Cheng7e66c0d2009-01-05 21:17:27 +0000111 // Now find loop back edges.
112 findLoopBackEdges(F);
113
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000114 bool MadeChange = true;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000115 while (MadeChange) {
116 MadeChange = false;
117 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
118 MadeChange |= OptimizeBlock(*BB);
119 EverMadeChange |= MadeChange;
120 }
121 return EverMadeChange;
122}
123
Dale Johannesen2d697242009-03-27 01:13:37 +0000124/// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes,
125/// debug info directives, and an unconditional branch. Passes before isel
126/// (e.g. LSR/loopsimplify) often split edges in ways that are non-optimal for
127/// isel. Start by eliminating these blocks so we can split them the way we
128/// want them.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000129bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) {
130 bool MadeChange = false;
131 // Note that this intentionally skips the entry block.
132 for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) {
133 BasicBlock *BB = I++;
134
135 // If this block doesn't end with an uncond branch, ignore it.
136 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
137 if (!BI || !BI->isUnconditional())
138 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000139
Dale Johannesen2d697242009-03-27 01:13:37 +0000140 // If the instruction before the branch (skipping debug info) isn't a phi
141 // node, then other stuff is happening here.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000142 BasicBlock::iterator BBI = BI;
143 if (BBI != BB->begin()) {
144 --BBI;
Dale Johannesen2d697242009-03-27 01:13:37 +0000145 while (isa<DbgInfoIntrinsic>(BBI)) {
146 if (BBI == BB->begin())
147 break;
148 --BBI;
149 }
150 if (!isa<DbgInfoIntrinsic>(BBI) && !isa<PHINode>(BBI))
151 continue;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000152 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000153
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000154 // Do not break infinite loops.
155 BasicBlock *DestBB = BI->getSuccessor(0);
156 if (DestBB == BB)
157 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000158
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000159 if (!CanMergeBlocks(BB, DestBB))
160 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000161
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000162 EliminateMostlyEmptyBlock(BB);
163 MadeChange = true;
164 }
165 return MadeChange;
166}
167
168/// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
169/// single uncond branch between them, and BB contains no other non-phi
170/// instructions.
171bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB,
172 const BasicBlock *DestBB) const {
173 // We only want to eliminate blocks whose phi nodes are used by phi nodes in
174 // the successor. If there are more complex condition (e.g. preheaders),
175 // don't mess around with them.
176 BasicBlock::const_iterator BBI = BB->begin();
177 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
178 for (Value::use_const_iterator UI = PN->use_begin(), E = PN->use_end();
179 UI != E; ++UI) {
180 const Instruction *User = cast<Instruction>(*UI);
181 if (User->getParent() != DestBB || !isa<PHINode>(User))
182 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000183 // If User is inside DestBB block and it is a PHINode then check
184 // incoming value. If incoming value is not from BB then this is
Devang Patel75abc1e2007-04-25 00:37:04 +0000185 // a complex condition (e.g. preheaders) we want to avoid here.
186 if (User->getParent() == DestBB) {
187 if (const PHINode *UPN = dyn_cast<PHINode>(User))
188 for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) {
189 Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I));
190 if (Insn && Insn->getParent() == BB &&
191 Insn->getParent() != UPN->getIncomingBlock(I))
192 return false;
193 }
194 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000195 }
196 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000197
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000198 // If BB and DestBB contain any common predecessors, then the phi nodes in BB
199 // and DestBB may have conflicting incoming values for the block. If so, we
200 // can't merge the block.
201 const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin());
202 if (!DestBBPN) return true; // no conflict.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000203
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000204 // Collect the preds of BB.
Chris Lattnerf67f73a2007-11-06 22:07:40 +0000205 SmallPtrSet<const BasicBlock*, 16> BBPreds;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000206 if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
207 // It is faster to get preds from a PHI than with pred_iterator.
208 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
209 BBPreds.insert(BBPN->getIncomingBlock(i));
210 } else {
211 BBPreds.insert(pred_begin(BB), pred_end(BB));
212 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000213
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000214 // Walk the preds of DestBB.
215 for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) {
216 BasicBlock *Pred = DestBBPN->getIncomingBlock(i);
217 if (BBPreds.count(Pred)) { // Common predecessor?
218 BBI = DestBB->begin();
219 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
220 const Value *V1 = PN->getIncomingValueForBlock(Pred);
221 const Value *V2 = PN->getIncomingValueForBlock(BB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000222
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000223 // If V2 is a phi node in BB, look up what the mapped value will be.
224 if (const PHINode *V2PN = dyn_cast<PHINode>(V2))
225 if (V2PN->getParent() == BB)
226 V2 = V2PN->getIncomingValueForBlock(Pred);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000227
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000228 // If there is a conflict, bail out.
229 if (V1 != V2) return false;
230 }
231 }
232 }
233
234 return true;
235}
236
237
238/// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and
239/// an unconditional branch in it.
240void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) {
241 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
242 BasicBlock *DestBB = BI->getSuccessor(0);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000243
David Greene68d67fd2010-01-05 01:27:11 +0000244 DEBUG(dbgs() << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000245
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000246 // If the destination block has a single pred, then this is a trivial edge,
247 // just collapse it.
Chris Lattner9918fb52008-11-27 19:29:14 +0000248 if (BasicBlock *SinglePred = DestBB->getSinglePredecessor()) {
Chris Lattnerf5102a02008-11-28 19:54:49 +0000249 if (SinglePred != DestBB) {
250 // Remember if SinglePred was the entry block of the function. If so, we
251 // will need to move BB back to the entry position.
252 bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
Andreas Neustifterad809812009-09-16 09:26:52 +0000253 MergeBasicBlockIntoOnlyPred(DestBB, this);
Chris Lattner9918fb52008-11-27 19:29:14 +0000254
Chris Lattnerf5102a02008-11-28 19:54:49 +0000255 if (isEntry && BB != &BB->getParent()->getEntryBlock())
256 BB->moveBefore(&BB->getParent()->getEntryBlock());
257
David Greene68d67fd2010-01-05 01:27:11 +0000258 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerf5102a02008-11-28 19:54:49 +0000259 return;
260 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000261 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000262
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000263 // Otherwise, we have multiple predecessors of BB. Update the PHIs in DestBB
264 // to handle the new incoming edges it is about to have.
265 PHINode *PN;
266 for (BasicBlock::iterator BBI = DestBB->begin();
267 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
268 // Remove the incoming value for BB, and remember it.
269 Value *InVal = PN->removeIncomingValue(BB, false);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000270
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000271 // Two options: either the InVal is a phi node defined in BB or it is some
272 // value that dominates BB.
273 PHINode *InValPhi = dyn_cast<PHINode>(InVal);
274 if (InValPhi && InValPhi->getParent() == BB) {
275 // Add all of the input values of the input PHI as inputs of this phi.
276 for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i)
277 PN->addIncoming(InValPhi->getIncomingValue(i),
278 InValPhi->getIncomingBlock(i));
279 } else {
280 // Otherwise, add one instance of the dominating value for each edge that
281 // we will be adding.
282 if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
283 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
284 PN->addIncoming(InVal, BBPN->getIncomingBlock(i));
285 } else {
286 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
287 PN->addIncoming(InVal, *PI);
288 }
289 }
290 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000291
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000292 // The PHIs are now updated, change everything that refers to BB to use
293 // DestBB and remove BB.
294 BB->replaceAllUsesWith(DestBB);
Evan Cheng04149f72009-12-17 09:39:49 +0000295 if (PFI) {
296 PFI->replaceAllUses(BB, DestBB);
297 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB));
Andreas Neustifterad809812009-09-16 09:26:52 +0000298 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000299 BB->eraseFromParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000300
David Greene68d67fd2010-01-05 01:27:11 +0000301 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000302}
303
304
Chris Lattnerebe80752007-12-24 19:32:55 +0000305/// SplitEdgeNicely - Split the critical edge from TI to its specified
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000306/// successor if it will improve codegen. We only do this if the successor has
307/// phi nodes (otherwise critical edges are ok). If there is already another
308/// predecessor of the succ that is empty (and thus has no phi nodes), use it
309/// instead of introducing a new block.
Evan Chengab631522008-12-19 18:03:11 +0000310static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum,
Mike Stumpfe095f32009-05-04 18:40:41 +0000311 SmallSet<std::pair<const BasicBlock*,
312 const BasicBlock*>, 8> &BackEdges,
Evan Chengab631522008-12-19 18:03:11 +0000313 Pass *P) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000314 BasicBlock *TIBB = TI->getParent();
315 BasicBlock *Dest = TI->getSuccessor(SuccNum);
316 assert(isa<PHINode>(Dest->begin()) &&
317 "This should only be called if Dest has a PHI!");
Eric Christopher692bf6b2008-09-24 05:32:41 +0000318
Evan Chengfc0b80d2009-03-13 22:59:14 +0000319 // Do not split edges to EH landing pads.
320 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(TI)) {
321 if (Invoke->getSuccessor(1) == Dest)
322 return;
323 }
Chris Lattnera4b04212009-10-31 22:04:43 +0000324
Evan Chengfc0b80d2009-03-13 22:59:14 +0000325
Chris Lattnerebe80752007-12-24 19:32:55 +0000326 // As a hack, never split backedges of loops. Even though the copy for any
327 // PHIs inserted on the backedge would be dead for exits from the loop, we
328 // assume that the cost of *splitting* the backedge would be too high.
Evan Chengab631522008-12-19 18:03:11 +0000329 if (BackEdges.count(std::make_pair(TIBB, Dest)))
Chris Lattnerebe80752007-12-24 19:32:55 +0000330 return;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000331
Evan Chengab631522008-12-19 18:03:11 +0000332 if (!FactorCommonPreds) {
333 /// TIPHIValues - This array is lazily computed to determine the values of
334 /// PHIs in Dest that TI would provide.
335 SmallVector<Value*, 32> TIPHIValues;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000336
Evan Chengab631522008-12-19 18:03:11 +0000337 // Check to see if Dest has any blocks that can be used as a split edge for
338 // this terminator.
339 for (pred_iterator PI = pred_begin(Dest), E = pred_end(Dest); PI != E; ++PI) {
340 BasicBlock *Pred = *PI;
341 // To be usable, the pred has to end with an uncond branch to the dest.
342 BranchInst *PredBr = dyn_cast<BranchInst>(Pred->getTerminator());
Dale Johannesen6aae1d62009-03-26 01:15:07 +0000343 if (!PredBr || !PredBr->isUnconditional())
344 continue;
345 // Must be empty other than the branch and debug info.
346 BasicBlock::iterator I = Pred->begin();
347 while (isa<DbgInfoIntrinsic>(I))
348 I++;
349 if (dyn_cast<Instruction>(I) != PredBr)
350 continue;
351 // Cannot be the entry block; its label does not get emitted.
352 if (Pred == &(Dest->getParent()->getEntryBlock()))
Evan Chengab631522008-12-19 18:03:11 +0000353 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000354
Evan Chengab631522008-12-19 18:03:11 +0000355 // Finally, since we know that Dest has phi nodes in it, we have to make
Dale Johannesen6aae1d62009-03-26 01:15:07 +0000356 // sure that jumping to Pred will have the same effect as going to Dest in
Evan Chengab631522008-12-19 18:03:11 +0000357 // terms of PHI values.
358 PHINode *PN;
359 unsigned PHINo = 0;
360 bool FoundMatch = true;
361 for (BasicBlock::iterator I = Dest->begin();
362 (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo) {
363 if (PHINo == TIPHIValues.size())
364 TIPHIValues.push_back(PN->getIncomingValueForBlock(TIBB));
Eric Christopher692bf6b2008-09-24 05:32:41 +0000365
Evan Chengab631522008-12-19 18:03:11 +0000366 // If the PHI entry doesn't work, we can't use this pred.
367 if (TIPHIValues[PHINo] != PN->getIncomingValueForBlock(Pred)) {
368 FoundMatch = false;
369 break;
370 }
371 }
372
373 // If we found a workable predecessor, change TI to branch to Succ.
374 if (FoundMatch) {
Evan Cheng04149f72009-12-17 09:39:49 +0000375 ProfileInfo *PFI = P->getAnalysisIfAvailable<ProfileInfo>();
376 if (PFI)
377 PFI->splitEdge(TIBB, Dest, Pred);
Evan Chengab631522008-12-19 18:03:11 +0000378 Dest->removePredecessor(TIBB);
379 TI->setSuccessor(SuccNum, Pred);
380 return;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000381 }
382 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000383
Evan Chengab631522008-12-19 18:03:11 +0000384 SplitCriticalEdge(TI, SuccNum, P, true);
385 return;
386 }
387
388 PHINode *PN;
389 SmallVector<Value*, 8> TIPHIValues;
390 for (BasicBlock::iterator I = Dest->begin();
391 (PN = dyn_cast<PHINode>(I)); ++I)
392 TIPHIValues.push_back(PN->getIncomingValueForBlock(TIBB));
393
394 SmallVector<BasicBlock*, 8> IdenticalPreds;
395 for (pred_iterator PI = pred_begin(Dest), E = pred_end(Dest); PI != E; ++PI) {
396 BasicBlock *Pred = *PI;
397 if (BackEdges.count(std::make_pair(Pred, Dest)))
398 continue;
399 if (PI == TIBB)
400 IdenticalPreds.push_back(Pred);
401 else {
402 bool Identical = true;
403 unsigned PHINo = 0;
404 for (BasicBlock::iterator I = Dest->begin();
405 (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo)
406 if (TIPHIValues[PHINo] != PN->getIncomingValueForBlock(Pred)) {
407 Identical = false;
408 break;
409 }
410 if (Identical)
411 IdenticalPreds.push_back(Pred);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000412 }
413 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000414
Evan Chengab631522008-12-19 18:03:11 +0000415 assert(!IdenticalPreds.empty());
416 SplitBlockPredecessors(Dest, &IdenticalPreds[0], IdenticalPreds.size(),
417 ".critedge", P);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000418}
419
Evan Chengab631522008-12-19 18:03:11 +0000420
Chris Lattnerdd77df32007-04-13 20:30:56 +0000421/// OptimizeNoopCopyExpression - If the specified cast instruction is a noop
Dan Gohmana119de82009-06-14 23:30:43 +0000422/// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC),
423/// sink it into user blocks to reduce the number of virtual
Dale Johannesence0b2372007-06-12 16:50:17 +0000424/// registers that must be created and coalesced.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000425///
426/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000427///
Chris Lattnerdd77df32007-04-13 20:30:56 +0000428static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){
Eric Christopher692bf6b2008-09-24 05:32:41 +0000429 // If this is a noop copy,
Owen Andersone50ed302009-08-10 22:56:29 +0000430 EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
431 EVT DstVT = TLI.getValueType(CI->getType());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000432
Chris Lattnerdd77df32007-04-13 20:30:56 +0000433 // This is an fp<->int conversion?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000434 if (SrcVT.isInteger() != DstVT.isInteger())
Chris Lattnerdd77df32007-04-13 20:30:56 +0000435 return false;
Duncan Sands8e4eb092008-06-08 20:54:56 +0000436
Chris Lattnerdd77df32007-04-13 20:30:56 +0000437 // If this is an extension, it will be a zero or sign extension, which
438 // isn't a noop.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000439 if (SrcVT.bitsLT(DstVT)) return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000440
Chris Lattnerdd77df32007-04-13 20:30:56 +0000441 // If these values will be promoted, find out what they will be promoted
442 // to. This helps us consider truncates on PPC as noop copies when they
443 // are.
Owen Anderson23b9b192009-08-12 00:36:31 +0000444 if (TLI.getTypeAction(CI->getContext(), SrcVT) == TargetLowering::Promote)
445 SrcVT = TLI.getTypeToTransformTo(CI->getContext(), SrcVT);
446 if (TLI.getTypeAction(CI->getContext(), DstVT) == TargetLowering::Promote)
447 DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000448
Chris Lattnerdd77df32007-04-13 20:30:56 +0000449 // If, after promotion, these are the same types, this is a noop copy.
450 if (SrcVT != DstVT)
451 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000452
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000453 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000454
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000455 /// InsertedCasts - Only insert a cast in each block once.
Dale Johannesence0b2372007-06-12 16:50:17 +0000456 DenseMap<BasicBlock*, CastInst*> InsertedCasts;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000457
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000458 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000459 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000460 UI != E; ) {
461 Use &TheUse = UI.getUse();
462 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000463
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000464 // Figure out which BB this cast is used in. For PHI's this is the
465 // appropriate predecessor block.
466 BasicBlock *UserBB = User->getParent();
467 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Gabor Greifa36791d2009-01-23 19:40:15 +0000468 UserBB = PN->getIncomingBlock(UI);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000469 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000470
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000471 // Preincrement use iterator so we don't invalidate it.
472 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000473
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000474 // If this user is in the same block as the cast, don't change the cast.
475 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000476
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000477 // If we have already inserted a cast into this block, use it.
478 CastInst *&InsertedCast = InsertedCasts[UserBB];
479
480 if (!InsertedCast) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000481 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000482
483 InsertedCast =
484 CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "",
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000485 InsertPt);
486 MadeChange = true;
487 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000488
Dale Johannesence0b2372007-06-12 16:50:17 +0000489 // Replace a use of the cast with a use of the new cast.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000490 TheUse = InsertedCast;
491 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000492
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000493 // If we removed all uses, nuke the cast.
Duncan Sandse0038132008-01-20 16:51:46 +0000494 if (CI->use_empty()) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000495 CI->eraseFromParent();
Duncan Sandse0038132008-01-20 16:51:46 +0000496 MadeChange = true;
497 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000498
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000499 return MadeChange;
500}
501
Eric Christopher692bf6b2008-09-24 05:32:41 +0000502/// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce
Dale Johannesence0b2372007-06-12 16:50:17 +0000503/// the number of virtual registers that must be created and coalesced. This is
Chris Lattner684b22d2007-08-02 16:53:43 +0000504/// a clear win except on targets with multiple condition code registers
505/// (PowerPC), where it might lose; some adjustment may be wanted there.
Dale Johannesence0b2372007-06-12 16:50:17 +0000506///
507/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000508static bool OptimizeCmpExpression(CmpInst *CI) {
Dale Johannesence0b2372007-06-12 16:50:17 +0000509 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000510
Dale Johannesence0b2372007-06-12 16:50:17 +0000511 /// InsertedCmp - Only insert a cmp in each block once.
512 DenseMap<BasicBlock*, CmpInst*> InsertedCmps;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000513
Dale Johannesence0b2372007-06-12 16:50:17 +0000514 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000515 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Dale Johannesence0b2372007-06-12 16:50:17 +0000516 UI != E; ) {
517 Use &TheUse = UI.getUse();
518 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000519
Dale Johannesence0b2372007-06-12 16:50:17 +0000520 // Preincrement use iterator so we don't invalidate it.
521 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000522
Dale Johannesence0b2372007-06-12 16:50:17 +0000523 // Don't bother for PHI nodes.
524 if (isa<PHINode>(User))
525 continue;
526
527 // Figure out which BB this cmp is used in.
528 BasicBlock *UserBB = User->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000529
Dale Johannesence0b2372007-06-12 16:50:17 +0000530 // If this user is in the same block as the cmp, don't change the cmp.
531 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000532
Dale Johannesence0b2372007-06-12 16:50:17 +0000533 // If we have already inserted a cmp into this block, use it.
534 CmpInst *&InsertedCmp = InsertedCmps[UserBB];
535
536 if (!InsertedCmp) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000537 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000538
539 InsertedCmp =
Dan Gohman1c8a23c2009-08-25 23:17:54 +0000540 CmpInst::Create(CI->getOpcode(),
Owen Anderson333c4002009-07-09 23:48:35 +0000541 CI->getPredicate(), CI->getOperand(0),
Dale Johannesence0b2372007-06-12 16:50:17 +0000542 CI->getOperand(1), "", InsertPt);
543 MadeChange = true;
544 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000545
Dale Johannesence0b2372007-06-12 16:50:17 +0000546 // Replace a use of the cmp with a use of the new cmp.
547 TheUse = InsertedCmp;
548 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000549
Dale Johannesence0b2372007-06-12 16:50:17 +0000550 // If we removed all uses, nuke the cmp.
551 if (CI->use_empty())
552 CI->eraseFromParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000553
Dale Johannesence0b2372007-06-12 16:50:17 +0000554 return MadeChange;
555}
556
Chris Lattner88a5c832008-11-25 07:09:13 +0000557//===----------------------------------------------------------------------===//
Chris Lattner88a5c832008-11-25 07:09:13 +0000558// Memory Optimization
559//===----------------------------------------------------------------------===//
560
Chris Lattnerdd77df32007-04-13 20:30:56 +0000561/// IsNonLocalValue - Return true if the specified values are defined in a
562/// different basic block than BB.
563static bool IsNonLocalValue(Value *V, BasicBlock *BB) {
564 if (Instruction *I = dyn_cast<Instruction>(V))
565 return I->getParent() != BB;
566 return false;
567}
568
Bob Wilson4a8ee232009-12-03 21:47:07 +0000569/// OptimizeMemoryInst - Load and Store Instructions often have
Chris Lattnerdd77df32007-04-13 20:30:56 +0000570/// addressing modes that can do significant amounts of computation. As such,
571/// instruction selection will try to get the load or store to do as much
572/// computation as possible for the program. The problem is that isel can only
573/// see within a single block. As such, we sink as much legal addressing mode
574/// stuff into the block as possible.
Chris Lattner88a5c832008-11-25 07:09:13 +0000575///
576/// This method is used to optimize both load/store and inline asms with memory
577/// operands.
Chris Lattner896617b2008-11-26 03:20:37 +0000578bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr,
Chris Lattner88a5c832008-11-25 07:09:13 +0000579 const Type *AccessTy,
580 DenseMap<Value*,Value*> &SunkAddrs) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000581 // Figure out what addressing mode will be built up for this operation.
582 SmallVector<Instruction*, 16> AddrModeInsts;
Chris Lattner896617b2008-11-26 03:20:37 +0000583 ExtAddrMode AddrMode = AddressingModeMatcher::Match(Addr, AccessTy,MemoryInst,
584 AddrModeInsts, *TLI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000585
Chris Lattnerdd77df32007-04-13 20:30:56 +0000586 // Check to see if any of the instructions supersumed by this addr mode are
587 // non-local to I's BB.
588 bool AnyNonLocal = false;
589 for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) {
Chris Lattner896617b2008-11-26 03:20:37 +0000590 if (IsNonLocalValue(AddrModeInsts[i], MemoryInst->getParent())) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000591 AnyNonLocal = true;
592 break;
593 }
594 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000595
Chris Lattnerdd77df32007-04-13 20:30:56 +0000596 // If all the instructions matched are already in this BB, don't do anything.
597 if (!AnyNonLocal) {
David Greene68d67fd2010-01-05 01:27:11 +0000598 DEBUG(dbgs() << "CGP: Found local addrmode: " << AddrMode << "\n");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000599 return false;
600 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000601
Chris Lattnerdd77df32007-04-13 20:30:56 +0000602 // Insert this computation right after this user. Since our caller is
603 // scanning from the top of the BB to the bottom, reuse of the expr are
604 // guaranteed to happen later.
Chris Lattner896617b2008-11-26 03:20:37 +0000605 BasicBlock::iterator InsertPt = MemoryInst;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000606
Chris Lattnerdd77df32007-04-13 20:30:56 +0000607 // Now that we determined the addressing expression we want to use and know
608 // that we have to sink it into this block. Check to see if we have already
609 // done this for some other load/store instr in this block. If so, reuse the
610 // computation.
611 Value *&SunkAddr = SunkAddrs[Addr];
612 if (SunkAddr) {
David Greene68d67fd2010-01-05 01:27:11 +0000613 DEBUG(dbgs() << "CGP: Reusing nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000614 << *MemoryInst);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000615 if (SunkAddr->getType() != Addr->getType())
616 SunkAddr = new BitCastInst(SunkAddr, Addr->getType(), "tmp", InsertPt);
617 } else {
David Greene68d67fd2010-01-05 01:27:11 +0000618 DEBUG(dbgs() << "CGP: SINKING nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000619 << *MemoryInst);
Owen Anderson1d0be152009-08-13 21:58:54 +0000620 const Type *IntPtrTy =
621 TLI->getTargetData()->getIntPtrType(AccessTy->getContext());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000622
Chris Lattnerdd77df32007-04-13 20:30:56 +0000623 Value *Result = 0;
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000624
625 // Start with the base register. Do this first so that subsequent address
626 // matching finds it last, which will prevent it from trying to match it
627 // as the scaled value in case it happens to be a mul. That would be
628 // problematic if we've sunk a different mul for the scale, because then
629 // we'd end up sinking both muls.
630 if (AddrMode.BaseReg) {
631 Value *V = AddrMode.BaseReg;
632 if (isa<PointerType>(V->getType()))
633 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
634 if (V->getType() != IntPtrTy)
635 V = CastInst::CreateIntegerCast(V, IntPtrTy, /*isSigned=*/true,
636 "sunkaddr", InsertPt);
637 Result = V;
638 }
639
640 // Add the scale value.
Chris Lattnerdd77df32007-04-13 20:30:56 +0000641 if (AddrMode.Scale) {
642 Value *V = AddrMode.ScaledReg;
643 if (V->getType() == IntPtrTy) {
644 // done.
645 } else if (isa<PointerType>(V->getType())) {
646 V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt);
647 } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() <
648 cast<IntegerType>(V->getType())->getBitWidth()) {
649 V = new TruncInst(V, IntPtrTy, "sunkaddr", InsertPt);
650 } else {
651 V = new SExtInst(V, IntPtrTy, "sunkaddr", InsertPt);
652 }
653 if (AddrMode.Scale != 1)
Owen Andersoneed707b2009-07-24 23:12:02 +0000654 V = BinaryOperator::CreateMul(V, ConstantInt::get(IntPtrTy,
Owen Andersond672ecb2009-07-03 00:17:18 +0000655 AddrMode.Scale),
Chris Lattnerdd77df32007-04-13 20:30:56 +0000656 "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000657 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000658 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000659 else
660 Result = V;
661 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000662
Chris Lattnerdd77df32007-04-13 20:30:56 +0000663 // Add in the BaseGV if present.
664 if (AddrMode.BaseGV) {
665 Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr",
666 InsertPt);
667 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000668 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000669 else
670 Result = V;
671 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000672
Chris Lattnerdd77df32007-04-13 20:30:56 +0000673 // Add in the Base Offset if present.
674 if (AddrMode.BaseOffs) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000675 Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000676 if (Result)
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000677 Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000678 else
679 Result = V;
680 }
681
682 if (Result == 0)
Owen Andersona7235ea2009-07-31 20:28:14 +0000683 SunkAddr = Constant::getNullValue(Addr->getType());
Chris Lattnerdd77df32007-04-13 20:30:56 +0000684 else
685 SunkAddr = new IntToPtrInst(Result, Addr->getType(), "sunkaddr",InsertPt);
686 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000687
Chris Lattner896617b2008-11-26 03:20:37 +0000688 MemoryInst->replaceUsesOfWith(Addr, SunkAddr);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000689
Chris Lattnerdd77df32007-04-13 20:30:56 +0000690 if (Addr->use_empty())
Chris Lattner3481f242008-11-27 22:57:53 +0000691 RecursivelyDeleteTriviallyDeadInstructions(Addr);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000692 return true;
693}
694
Evan Cheng9bf12b52008-02-26 02:42:37 +0000695/// OptimizeInlineAsmInst - If there are any memory operands, use
Chris Lattner88a5c832008-11-25 07:09:13 +0000696/// OptimizeMemoryInst to sink their address computing into the block when
Evan Cheng9bf12b52008-02-26 02:42:37 +0000697/// possible / profitable.
698bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS,
699 DenseMap<Value*,Value*> &SunkAddrs) {
700 bool MadeChange = false;
701 InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
702
703 // Do a prepass over the constraints, canonicalizing them, and building up the
704 // ConstraintOperands list.
705 std::vector<InlineAsm::ConstraintInfo>
706 ConstraintInfos = IA->ParseConstraints();
707
708 /// ConstraintOperands - Information about all of the constraints.
709 std::vector<TargetLowering::AsmOperandInfo> ConstraintOperands;
710 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst.
711 for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) {
712 ConstraintOperands.
713 push_back(TargetLowering::AsmOperandInfo(ConstraintInfos[i]));
714 TargetLowering::AsmOperandInfo &OpInfo = ConstraintOperands.back();
715
716 // Compute the value type for each operand.
717 switch (OpInfo.Type) {
718 case InlineAsm::isOutput:
719 if (OpInfo.isIndirect)
720 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
721 break;
722 case InlineAsm::isInput:
723 OpInfo.CallOperandVal = CS.getArgument(ArgNo++);
724 break;
725 case InlineAsm::isClobber:
726 // Nothing to do.
727 break;
728 }
729
730 // Compute the constraint code and ConstraintType to use.
Evan Chenga7e61462008-09-24 06:48:55 +0000731 TLI->ComputeConstraintToUse(OpInfo, SDValue(),
732 OpInfo.ConstraintType == TargetLowering::C_Memory);
Evan Cheng9bf12b52008-02-26 02:42:37 +0000733
Eli Friedman9ec80952008-02-26 18:37:49 +0000734 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
735 OpInfo.isIndirect) {
Evan Cheng9bf12b52008-02-26 02:42:37 +0000736 Value *OpVal = OpInfo.CallOperandVal;
Chris Lattner88a5c832008-11-25 07:09:13 +0000737 MadeChange |= OptimizeMemoryInst(I, OpVal, OpVal->getType(), SunkAddrs);
Evan Cheng9bf12b52008-02-26 02:42:37 +0000738 }
739 }
740
741 return MadeChange;
742}
743
Dan Gohmanb00f2362009-10-16 20:59:35 +0000744/// MoveExtToFormExtLoad - Move a zext or sext fed by a load into the same
745/// basic block as the load, unless conditions are unfavorable. This allows
746/// SelectionDAG to fold the extend into the load.
747///
748bool CodeGenPrepare::MoveExtToFormExtLoad(Instruction *I) {
749 // Look for a load being extended.
750 LoadInst *LI = dyn_cast<LoadInst>(I->getOperand(0));
751 if (!LI) return false;
752
753 // If they're already in the same block, there's nothing to do.
754 if (LI->getParent() == I->getParent())
755 return false;
756
757 // If the load has other users and the truncate is not free, this probably
758 // isn't worthwhile.
759 if (!LI->hasOneUse() &&
760 TLI && !TLI->isTruncateFree(I->getType(), LI->getType()))
761 return false;
762
763 // Check whether the target supports casts folded into loads.
764 unsigned LType;
765 if (isa<ZExtInst>(I))
766 LType = ISD::ZEXTLOAD;
767 else {
768 assert(isa<SExtInst>(I) && "Unexpected ext type!");
769 LType = ISD::SEXTLOAD;
770 }
771 if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType())))
772 return false;
773
774 // Move the extend into the same block as the load, so that SelectionDAG
775 // can fold it.
776 I->removeFromParent();
777 I->insertAfter(LI);
778 return true;
779}
780
Evan Chengbdcb7262007-12-05 23:58:20 +0000781bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
782 BasicBlock *DefBB = I->getParent();
783
784 // If both result of the {s|z}xt and its source are live out, rewrite all
785 // other uses of the source with result of extension.
786 Value *Src = I->getOperand(0);
787 if (Src->hasOneUse())
788 return false;
789
Evan Cheng696e5c02007-12-13 07:50:36 +0000790 // Only do this xform if truncating is free.
Gabor Greif53bdbd72008-02-26 19:13:21 +0000791 if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType()))
Evan Chengf9785f92007-12-13 03:32:53 +0000792 return false;
793
Evan Cheng772de512007-12-12 00:51:06 +0000794 // Only safe to perform the optimization if the source is also defined in
Evan Cheng765dff22007-12-12 02:53:41 +0000795 // this block.
796 if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent())
Evan Cheng772de512007-12-12 00:51:06 +0000797 return false;
798
Evan Chengbdcb7262007-12-05 23:58:20 +0000799 bool DefIsLiveOut = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000800 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000801 UI != E; ++UI) {
802 Instruction *User = cast<Instruction>(*UI);
803
804 // Figure out which BB this ext is used in.
805 BasicBlock *UserBB = User->getParent();
806 if (UserBB == DefBB) continue;
807 DefIsLiveOut = true;
808 break;
809 }
810 if (!DefIsLiveOut)
811 return false;
812
Evan Cheng765dff22007-12-12 02:53:41 +0000813 // Make sure non of the uses are PHI nodes.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000814 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Cheng765dff22007-12-12 02:53:41 +0000815 UI != E; ++UI) {
816 Instruction *User = cast<Instruction>(*UI);
Evan Chengf9785f92007-12-13 03:32:53 +0000817 BasicBlock *UserBB = User->getParent();
818 if (UserBB == DefBB) continue;
819 // Be conservative. We don't want this xform to end up introducing
820 // reloads just before load / store instructions.
821 if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User))
Evan Cheng765dff22007-12-12 02:53:41 +0000822 return false;
823 }
824
Evan Chengbdcb7262007-12-05 23:58:20 +0000825 // InsertedTruncs - Only insert one trunc in each block once.
826 DenseMap<BasicBlock*, Instruction*> InsertedTruncs;
827
828 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000829 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +0000830 UI != E; ++UI) {
831 Use &TheUse = UI.getUse();
832 Instruction *User = cast<Instruction>(*UI);
833
834 // Figure out which BB this ext is used in.
835 BasicBlock *UserBB = User->getParent();
836 if (UserBB == DefBB) continue;
837
838 // Both src and def are live in this block. Rewrite the use.
839 Instruction *&InsertedTrunc = InsertedTruncs[UserBB];
840
841 if (!InsertedTrunc) {
Dan Gohman02dea8b2008-05-23 21:05:58 +0000842 BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000843
Evan Chengbdcb7262007-12-05 23:58:20 +0000844 InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt);
845 }
846
847 // Replace a use of the {s|z}ext source with a use of the result.
848 TheUse = InsertedTrunc;
849
850 MadeChange = true;
851 }
852
853 return MadeChange;
854}
855
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000856// In this pass we look for GEP and cast instructions that are used
857// across basic blocks and rewrite them to improve basic-block-at-a-time
858// selection.
859bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) {
860 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000861
Evan Chengab631522008-12-19 18:03:11 +0000862 // Split all critical edges where the dest block has a PHI.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000863 TerminatorInst *BBTI = BB.getTerminator();
Chris Lattnera4b04212009-10-31 22:04:43 +0000864 if (BBTI->getNumSuccessors() > 1 && !isa<IndirectBrInst>(BBTI)) {
Evan Chengab631522008-12-19 18:03:11 +0000865 for (unsigned i = 0, e = BBTI->getNumSuccessors(); i != e; ++i) {
866 BasicBlock *SuccBB = BBTI->getSuccessor(i);
867 if (isa<PHINode>(SuccBB->begin()) && isCriticalEdge(BBTI, i, true))
868 SplitEdgeNicely(BBTI, i, BackEdges, this);
869 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000870 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000871
Chris Lattnerdd77df32007-04-13 20:30:56 +0000872 // Keep track of non-local addresses that have been sunk into this block.
873 // This allows us to avoid inserting duplicate code for blocks with multiple
874 // load/stores of the same address.
875 DenseMap<Value*, Value*> SunkAddrs;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000876
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000877 for (BasicBlock::iterator BBI = BB.begin(), E = BB.end(); BBI != E; ) {
878 Instruction *I = BBI++;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000879
Chris Lattnerdd77df32007-04-13 20:30:56 +0000880 if (CastInst *CI = dyn_cast<CastInst>(I)) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000881 // If the source of the cast is a constant, then this should have
882 // already been constant folded. The only reason NOT to constant fold
883 // it is if something (e.g. LSR) was careful to place the constant
884 // evaluation in a block other than then one that uses it (e.g. to hoist
885 // the address of globals out of a loop). If this is the case, we don't
886 // want to forward-subst the cast.
887 if (isa<Constant>(CI->getOperand(0)))
888 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000889
Evan Chengbdcb7262007-12-05 23:58:20 +0000890 bool Change = false;
891 if (TLI) {
892 Change = OptimizeNoopCopyExpression(CI, *TLI);
893 MadeChange |= Change;
894 }
895
Dan Gohmanb00f2362009-10-16 20:59:35 +0000896 if (!Change && (isa<ZExtInst>(I) || isa<SExtInst>(I))) {
897 MadeChange |= MoveExtToFormExtLoad(I);
Evan Chengbdcb7262007-12-05 23:58:20 +0000898 MadeChange |= OptimizeExtUses(I);
Dan Gohmanb00f2362009-10-16 20:59:35 +0000899 }
Dale Johannesence0b2372007-06-12 16:50:17 +0000900 } else if (CmpInst *CI = dyn_cast<CmpInst>(I)) {
901 MadeChange |= OptimizeCmpExpression(CI);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000902 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
903 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +0000904 MadeChange |= OptimizeMemoryInst(I, I->getOperand(0), LI->getType(),
905 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000906 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
907 if (TLI)
Chris Lattner88a5c832008-11-25 07:09:13 +0000908 MadeChange |= OptimizeMemoryInst(I, SI->getOperand(1),
909 SI->getOperand(0)->getType(),
910 SunkAddrs);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000911 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Chris Lattnerf25646b2007-04-14 00:17:39 +0000912 if (GEPI->hasAllZeroIndices()) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000913 /// The GEP operand must be a pointer, so must its result -> BitCast
Eric Christopher692bf6b2008-09-24 05:32:41 +0000914 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(),
Chris Lattnerdd77df32007-04-13 20:30:56 +0000915 GEPI->getName(), GEPI);
916 GEPI->replaceAllUsesWith(NC);
917 GEPI->eraseFromParent();
918 MadeChange = true;
919 BBI = NC;
920 }
921 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
922 // If we found an inline asm expession, and if the target knows how to
923 // lower it to normal LLVM code, do so now.
Chris Lattner8850b362009-07-20 17:52:52 +0000924 if (TLI && isa<InlineAsm>(CI->getCalledValue())) {
925 if (TLI->ExpandInlineAsm(CI)) {
926 BBI = BB.begin();
927 // Avoid processing instructions out of order, which could cause
928 // reuse before a value is defined.
929 SunkAddrs.clear();
930 } else
931 // Sink address computing for memory operands into the block.
932 MadeChange |= OptimizeInlineAsmInst(I, &(*CI), SunkAddrs);
933 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000934 }
935 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000936
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000937 return MadeChange;
938}