blob: 19b04d5bc3a637125426fbce17eb42630784a9d6 [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/SmallSet.h"
20#include "llvm/ADT/Statistic.h"
21#include "llvm/Analysis/DominatorInternals.h"
22#include "llvm/Analysis/Dominators.h"
23#include "llvm/Analysis/InstructionSimplify.h"
24#include "llvm/Analysis/ProfileInfo.h"
25#include "llvm/Assembly/Writer.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000026#include "llvm/Constants.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000027#include "llvm/DataLayout.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000028#include "llvm/DerivedTypes.h"
29#include "llvm/Function.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000030#include "llvm/IRBuilder.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000031#include "llvm/InlineAsm.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000032#include "llvm/Instructions.h"
Dale Johannesen6aae1d62009-03-26 01:15:07 +000033#include "llvm/IntrinsicInst.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000034#include "llvm/Pass.h"
Evan Cheng9bf12b52008-02-26 02:42:37 +000035#include "llvm/Support/CallSite.h"
Evan Chenge1bcb442010-08-17 01:34:49 +000036#include "llvm/Support/CommandLine.h"
Evan Chengbdcb7262007-12-05 23:58:20 +000037#include "llvm/Support/Debug.h"
Chris Lattnerdd77df32007-04-13 20:30:56 +000038#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner088a1e82008-11-25 04:42:10 +000039#include "llvm/Support/PatternMatch.h"
Chris Lattner94e8e0c2011-01-15 07:25:29 +000040#include "llvm/Support/ValueHandle.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000041#include "llvm/Support/raw_ostream.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000042#include "llvm/Target/TargetLibraryInfo.h"
43#include "llvm/Target/TargetLowering.h"
44#include "llvm/Transforms/Utils/AddrModeMatcher.h"
45#include "llvm/Transforms/Utils/BasicBlockUtils.h"
46#include "llvm/Transforms/Utils/BuildLibCalls.h"
Preston Gurd2e2efd92012-09-04 18:22:17 +000047#include "llvm/Transforms/Utils/BypassSlowDivision.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000048#include "llvm/Transforms/Utils/Local.h"
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000049using namespace llvm;
Chris Lattner088a1e82008-11-25 04:42:10 +000050using namespace llvm::PatternMatch;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000051
Cameron Zwarich31ff1332011-01-05 17:27:27 +000052STATISTIC(NumBlocksElim, "Number of blocks eliminated");
Evan Cheng485fafc2011-03-21 01:19:09 +000053STATISTIC(NumPHIsElim, "Number of trivial PHIs eliminated");
54STATISTIC(NumGEPsElim, "Number of GEPs converted to casts");
Cameron Zwarich31ff1332011-01-05 17:27:27 +000055STATISTIC(NumCmpUses, "Number of uses of Cmp expressions replaced with uses of "
56 "sunken Cmps");
57STATISTIC(NumCastUses, "Number of uses of Cast expressions replaced with uses "
58 "of sunken Casts");
59STATISTIC(NumMemoryInsts, "Number of memory instructions whose address "
60 "computations were sunk");
Evan Cheng485fafc2011-03-21 01:19:09 +000061STATISTIC(NumExtsMoved, "Number of [s|z]ext instructions combined with loads");
62STATISTIC(NumExtUses, "Number of uses of [s|z]ext instructions optimized");
63STATISTIC(NumRetsDup, "Number of return instructions duplicated");
Devang Patelf56ea612011-08-18 00:50:51 +000064STATISTIC(NumDbgValueMoved, "Number of debug value instructions moved");
Benjamin Kramer59957502012-05-05 12:49:22 +000065STATISTIC(NumSelectsExpanded, "Number of selects turned into branches");
Jakob Stoklund Olesen7eb589d2010-09-30 20:51:52 +000066
Cameron Zwarich899eaa32011-03-11 21:52:04 +000067static cl::opt<bool> DisableBranchOpts(
68 "disable-cgp-branch-opts", cl::Hidden, cl::init(false),
69 cl::desc("Disable branch optimizations in CodeGenPrepare"));
70
Benjamin Kramer77c4ef82012-05-06 14:25:16 +000071static cl::opt<bool> DisableSelectToBranch(
72 "disable-cgp-select2branch", cl::Hidden, cl::init(false),
73 cl::desc("Disable select to branch conversion."));
Benjamin Kramer59957502012-05-05 12:49:22 +000074
Eric Christopher692bf6b2008-09-24 05:32:41 +000075namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000076 class CodeGenPrepare : public FunctionPass {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +000077 /// TLI - Keep a pointer of a TargetLowering to consult for determining
78 /// transformation profitability.
79 const TargetLowering *TLI;
Chad Rosier618c1db2011-12-01 03:08:23 +000080 const TargetLibraryInfo *TLInfo;
Cameron Zwarich80f6a502011-01-08 17:01:52 +000081 DominatorTree *DT;
Evan Cheng04149f72009-12-17 09:39:49 +000082 ProfileInfo *PFI;
Nadav Rotema94d6e82012-07-24 10:51:42 +000083
Chris Lattner75796092011-01-15 07:14:54 +000084 /// CurInstIterator - As we scan instructions optimizing them, this is the
85 /// next instruction to optimize. Xforms that can invalidate this should
86 /// update it.
87 BasicBlock::iterator CurInstIterator;
Evan Chengab631522008-12-19 18:03:11 +000088
Evan Cheng485fafc2011-03-21 01:19:09 +000089 /// Keeps track of non-local addresses that have been sunk into a block.
90 /// This allows us to avoid inserting duplicate code for blocks with
91 /// multiple load/stores of the same address.
Cameron Zwarich8c3527e2011-01-06 00:42:50 +000092 DenseMap<Value*, Value*> SunkAddrs;
93
Devang Patel52e37df2011-03-24 15:35:25 +000094 /// ModifiedDT - If CFG is modified in anyway, dominator tree may need to
Evan Cheng485fafc2011-03-21 01:19:09 +000095 /// be updated.
Devang Patel52e37df2011-03-24 15:35:25 +000096 bool ModifiedDT;
Evan Cheng485fafc2011-03-21 01:19:09 +000097
Benjamin Kramer59957502012-05-05 12:49:22 +000098 /// OptSize - True if optimizing for size.
99 bool OptSize;
100
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000101 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000102 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +0000103 explicit CodeGenPrepare(const TargetLowering *tli = 0)
Owen Anderson081c34b2010-10-19 17:21:58 +0000104 : FunctionPass(ID), TLI(tli) {
105 initializeCodeGenPreparePass(*PassRegistry::getPassRegistry());
106 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000107 bool runOnFunction(Function &F);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000108
Andreas Neustifterad809812009-09-16 09:26:52 +0000109 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000110 AU.addPreserved<DominatorTree>();
Andreas Neustifterad809812009-09-16 09:26:52 +0000111 AU.addPreserved<ProfileInfo>();
Chad Rosier618c1db2011-12-01 03:08:23 +0000112 AU.addRequired<TargetLibraryInfo>();
Andreas Neustifterad809812009-09-16 09:26:52 +0000113 }
114
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000115 private:
Nadav Rotem3e883732012-08-14 05:19:07 +0000116 bool EliminateFallThrough(Function &F);
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000117 bool EliminateMostlyEmptyBlocks(Function &F);
118 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
119 void EliminateMostlyEmptyBlock(BasicBlock *BB);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000120 bool OptimizeBlock(BasicBlock &BB);
Cameron Zwarichc0611012011-01-06 02:37:26 +0000121 bool OptimizeInst(Instruction *I);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000122 bool OptimizeMemoryInst(Instruction *I, Value *Addr, Type *AccessTy);
Chris Lattner75796092011-01-15 07:14:54 +0000123 bool OptimizeInlineAsmInst(CallInst *CS);
Eric Christopher040056f2010-03-11 02:41:03 +0000124 bool OptimizeCallInst(CallInst *CI);
Dan Gohmanb00f2362009-10-16 20:59:35 +0000125 bool MoveExtToFormExtLoad(Instruction *I);
Evan Chengbdcb7262007-12-05 23:58:20 +0000126 bool OptimizeExtUses(Instruction *I);
Benjamin Kramer59957502012-05-05 12:49:22 +0000127 bool OptimizeSelectInst(SelectInst *SI);
Benjamin Kramer4ccb49a2012-11-23 19:17:06 +0000128 bool DupRetToEnableTailCallOpts(BasicBlock *BB);
Devang Patelf56ea612011-08-18 00:50:51 +0000129 bool PlaceDbgValues(Function &F);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000130 };
131}
Devang Patel794fd752007-05-01 21:15:47 +0000132
Devang Patel19974732007-05-03 01:11:54 +0000133char CodeGenPrepare::ID = 0;
Chad Rosier618c1db2011-12-01 03:08:23 +0000134INITIALIZE_PASS_BEGIN(CodeGenPrepare, "codegenprepare",
135 "Optimize for code generation", false, false)
136INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
137INITIALIZE_PASS_END(CodeGenPrepare, "codegenprepare",
Owen Andersonce665bd2010-10-07 22:25:06 +0000138 "Optimize for code generation", false, false)
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000139
140FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) {
141 return new CodeGenPrepare(TLI);
142}
143
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000144bool CodeGenPrepare::runOnFunction(Function &F) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000145 bool EverMadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000146
Devang Patel52e37df2011-03-24 15:35:25 +0000147 ModifiedDT = false;
Chad Rosier618c1db2011-12-01 03:08:23 +0000148 TLInfo = &getAnalysis<TargetLibraryInfo>();
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000149 DT = getAnalysisIfAvailable<DominatorTree>();
Evan Cheng04149f72009-12-17 09:39:49 +0000150 PFI = getAnalysisIfAvailable<ProfileInfo>();
Bill Wendling67658342012-10-09 07:45:08 +0000151 OptSize = F.getFnAttributes().hasAttribute(Attributes::OptimizeForSize);
Evan Cheng485fafc2011-03-21 01:19:09 +0000152
Preston Gurd2e2efd92012-09-04 18:22:17 +0000153 /// This optimization identifies DIV instructions that can be
154 /// profitably bypassed and carried out with a shorter, faster divide.
155 if (TLI && TLI->isSlowDivBypassed()) {
Preston Gurd8d662b52012-10-04 21:33:40 +0000156 const DenseMap<unsigned int, unsigned int> &BypassWidths =
157 TLI->getBypassSlowDivWidths();
Evan Cheng911908d2012-09-14 21:25:34 +0000158 for (Function::iterator I = F.begin(); I != F.end(); I++)
Preston Gurd8d662b52012-10-04 21:33:40 +0000159 EverMadeChange |= bypassSlowDivision(F, I, BypassWidths);
Preston Gurd2e2efd92012-09-04 18:22:17 +0000160 }
161
162 // Eliminate blocks that contain only PHI nodes and an
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000163 // unconditional branch.
164 EverMadeChange |= EliminateMostlyEmptyBlocks(F);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000165
Devang Patelf56ea612011-08-18 00:50:51 +0000166 // llvm.dbg.value is far away from the value then iSel may not be able
Nadav Rotema94d6e82012-07-24 10:51:42 +0000167 // handle it properly. iSel will drop llvm.dbg.value if it can not
Devang Patelf56ea612011-08-18 00:50:51 +0000168 // find a node corresponding to the value.
169 EverMadeChange |= PlaceDbgValues(F);
170
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000171 bool MadeChange = true;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000172 while (MadeChange) {
173 MadeChange = false;
Hans Wennborg93ba1332012-09-19 07:48:16 +0000174 for (Function::iterator I = F.begin(); I != F.end(); ) {
Evan Cheng485fafc2011-03-21 01:19:09 +0000175 BasicBlock *BB = I++;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000176 MadeChange |= OptimizeBlock(*BB);
Evan Cheng485fafc2011-03-21 01:19:09 +0000177 }
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000178 EverMadeChange |= MadeChange;
179 }
Cameron Zwarich8c3527e2011-01-06 00:42:50 +0000180
181 SunkAddrs.clear();
182
Cameron Zwarich899eaa32011-03-11 21:52:04 +0000183 if (!DisableBranchOpts) {
184 MadeChange = false;
Bill Wendlinge3e394d2012-03-04 10:46:01 +0000185 SmallPtrSet<BasicBlock*, 8> WorkList;
186 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
187 SmallVector<BasicBlock*, 2> Successors(succ_begin(BB), succ_end(BB));
Frits van Bommel5649ba72011-05-22 16:24:18 +0000188 MadeChange |= ConstantFoldTerminator(BB, true);
Bill Wendlinge3e394d2012-03-04 10:46:01 +0000189 if (!MadeChange) continue;
190
191 for (SmallVectorImpl<BasicBlock*>::iterator
192 II = Successors.begin(), IE = Successors.end(); II != IE; ++II)
193 if (pred_begin(*II) == pred_end(*II))
194 WorkList.insert(*II);
195 }
196
Bill Wendlingbf2ad732012-11-28 23:23:48 +0000197 // Delete the dead blocks and any of their dead successors.
198 while (!WorkList.empty()) {
199 BasicBlock *BB = *WorkList.begin();
200 WorkList.erase(BB);
201 SmallVector<BasicBlock*, 2> Successors(succ_begin(BB), succ_end(BB));
202
203 DeleteDeadBlock(BB);
204
205 for (SmallVectorImpl<BasicBlock*>::iterator
206 II = Successors.begin(), IE = Successors.end(); II != IE; ++II)
207 if (pred_begin(*II) == pred_end(*II))
208 WorkList.insert(*II);
209 }
Cameron Zwarich899eaa32011-03-11 21:52:04 +0000210
Nadav Rotem3e883732012-08-14 05:19:07 +0000211 // Merge pairs of basic blocks with unconditional branches, connected by
212 // a single edge.
213 if (EverMadeChange || MadeChange)
214 MadeChange |= EliminateFallThrough(F);
215
Evan Cheng485fafc2011-03-21 01:19:09 +0000216 if (MadeChange)
Devang Patel52e37df2011-03-24 15:35:25 +0000217 ModifiedDT = true;
Cameron Zwarich899eaa32011-03-11 21:52:04 +0000218 EverMadeChange |= MadeChange;
219 }
220
Devang Patel52e37df2011-03-24 15:35:25 +0000221 if (ModifiedDT && DT)
Evan Cheng485fafc2011-03-21 01:19:09 +0000222 DT->DT->recalculate(F);
223
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000224 return EverMadeChange;
225}
226
Nadav Rotem3e883732012-08-14 05:19:07 +0000227/// EliminateFallThrough - Merge basic blocks which are connected
228/// by a single edge, where one of the basic blocks has a single successor
229/// pointing to the other basic block, which has a single predecessor.
230bool CodeGenPrepare::EliminateFallThrough(Function &F) {
231 bool Changed = false;
232 // Scan all of the blocks in the function, except for the entry block.
233 for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) {
234 BasicBlock *BB = I++;
235 // If the destination block has a single pred, then this is a trivial
236 // edge, just collapse it.
237 BasicBlock *SinglePred = BB->getSinglePredecessor();
238
Evan Cheng46597072012-09-28 23:58:57 +0000239 // Don't merge if BB's address is taken.
240 if (!SinglePred || SinglePred == BB || BB->hasAddressTaken()) continue;
Nadav Rotem3e883732012-08-14 05:19:07 +0000241
242 BranchInst *Term = dyn_cast<BranchInst>(SinglePred->getTerminator());
243 if (Term && !Term->isConditional()) {
244 Changed = true;
Michael Liao787ed032012-08-21 05:55:22 +0000245 DEBUG(dbgs() << "To merge:\n"<< *SinglePred << "\n\n\n");
Nadav Rotem3e883732012-08-14 05:19:07 +0000246 // Remember if SinglePred was the entry block of the function.
247 // If so, we will need to move BB back to the entry position.
248 bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
249 MergeBasicBlockIntoOnlyPred(BB, this);
250
251 if (isEntry && BB != &BB->getParent()->getEntryBlock())
252 BB->moveBefore(&BB->getParent()->getEntryBlock());
253
254 // We have erased a block. Update the iterator.
255 I = BB;
Nadav Rotem3e883732012-08-14 05:19:07 +0000256 }
257 }
258 return Changed;
259}
260
Dale Johannesen2d697242009-03-27 01:13:37 +0000261/// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes,
262/// debug info directives, and an unconditional branch. Passes before isel
263/// (e.g. LSR/loopsimplify) often split edges in ways that are non-optimal for
264/// isel. Start by eliminating these blocks so we can split them the way we
265/// want them.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000266bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) {
267 bool MadeChange = false;
268 // Note that this intentionally skips the entry block.
269 for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) {
270 BasicBlock *BB = I++;
271
272 // If this block doesn't end with an uncond branch, ignore it.
273 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
274 if (!BI || !BI->isUnconditional())
275 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000276
Dale Johannesen2d697242009-03-27 01:13:37 +0000277 // If the instruction before the branch (skipping debug info) isn't a phi
278 // node, then other stuff is happening here.
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000279 BasicBlock::iterator BBI = BI;
280 if (BBI != BB->begin()) {
281 --BBI;
Dale Johannesen2d697242009-03-27 01:13:37 +0000282 while (isa<DbgInfoIntrinsic>(BBI)) {
283 if (BBI == BB->begin())
284 break;
285 --BBI;
286 }
287 if (!isa<DbgInfoIntrinsic>(BBI) && !isa<PHINode>(BBI))
288 continue;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000289 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000290
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000291 // Do not break infinite loops.
292 BasicBlock *DestBB = BI->getSuccessor(0);
293 if (DestBB == BB)
294 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000295
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000296 if (!CanMergeBlocks(BB, DestBB))
297 continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000298
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000299 EliminateMostlyEmptyBlock(BB);
300 MadeChange = true;
301 }
302 return MadeChange;
303}
304
305/// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
306/// single uncond branch between them, and BB contains no other non-phi
307/// instructions.
308bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB,
309 const BasicBlock *DestBB) const {
310 // We only want to eliminate blocks whose phi nodes are used by phi nodes in
311 // the successor. If there are more complex condition (e.g. preheaders),
312 // don't mess around with them.
313 BasicBlock::const_iterator BBI = BB->begin();
314 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
Gabor Greif60ad7812010-03-25 23:06:16 +0000315 for (Value::const_use_iterator UI = PN->use_begin(), E = PN->use_end();
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000316 UI != E; ++UI) {
317 const Instruction *User = cast<Instruction>(*UI);
318 if (User->getParent() != DestBB || !isa<PHINode>(User))
319 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000320 // If User is inside DestBB block and it is a PHINode then check
321 // incoming value. If incoming value is not from BB then this is
Devang Patel75abc1e2007-04-25 00:37:04 +0000322 // a complex condition (e.g. preheaders) we want to avoid here.
323 if (User->getParent() == DestBB) {
324 if (const PHINode *UPN = dyn_cast<PHINode>(User))
325 for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) {
326 Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I));
327 if (Insn && Insn->getParent() == BB &&
328 Insn->getParent() != UPN->getIncomingBlock(I))
329 return false;
330 }
331 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000332 }
333 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000334
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000335 // If BB and DestBB contain any common predecessors, then the phi nodes in BB
336 // and DestBB may have conflicting incoming values for the block. If so, we
337 // can't merge the block.
338 const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin());
339 if (!DestBBPN) return true; // no conflict.
Eric Christopher692bf6b2008-09-24 05:32:41 +0000340
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000341 // Collect the preds of BB.
Chris Lattnerf67f73a2007-11-06 22:07:40 +0000342 SmallPtrSet<const BasicBlock*, 16> BBPreds;
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000343 if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
344 // It is faster to get preds from a PHI than with pred_iterator.
345 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
346 BBPreds.insert(BBPN->getIncomingBlock(i));
347 } else {
348 BBPreds.insert(pred_begin(BB), pred_end(BB));
349 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000350
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000351 // Walk the preds of DestBB.
352 for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) {
353 BasicBlock *Pred = DestBBPN->getIncomingBlock(i);
354 if (BBPreds.count(Pred)) { // Common predecessor?
355 BBI = DestBB->begin();
356 while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) {
357 const Value *V1 = PN->getIncomingValueForBlock(Pred);
358 const Value *V2 = PN->getIncomingValueForBlock(BB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000359
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000360 // If V2 is a phi node in BB, look up what the mapped value will be.
361 if (const PHINode *V2PN = dyn_cast<PHINode>(V2))
362 if (V2PN->getParent() == BB)
363 V2 = V2PN->getIncomingValueForBlock(Pred);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000364
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000365 // If there is a conflict, bail out.
366 if (V1 != V2) return false;
367 }
368 }
369 }
370
371 return true;
372}
373
374
375/// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and
376/// an unconditional branch in it.
377void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) {
378 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
379 BasicBlock *DestBB = BI->getSuccessor(0);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000380
David Greene68d67fd2010-01-05 01:27:11 +0000381 DEBUG(dbgs() << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000382
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000383 // If the destination block has a single pred, then this is a trivial edge,
384 // just collapse it.
Chris Lattner9918fb52008-11-27 19:29:14 +0000385 if (BasicBlock *SinglePred = DestBB->getSinglePredecessor()) {
Chris Lattnerf5102a02008-11-28 19:54:49 +0000386 if (SinglePred != DestBB) {
387 // Remember if SinglePred was the entry block of the function. If so, we
388 // will need to move BB back to the entry position.
389 bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock();
Andreas Neustifterad809812009-09-16 09:26:52 +0000390 MergeBasicBlockIntoOnlyPred(DestBB, this);
Chris Lattner9918fb52008-11-27 19:29:14 +0000391
Chris Lattnerf5102a02008-11-28 19:54:49 +0000392 if (isEntry && BB != &BB->getParent()->getEntryBlock())
393 BB->moveBefore(&BB->getParent()->getEntryBlock());
Nadav Rotema94d6e82012-07-24 10:51:42 +0000394
David Greene68d67fd2010-01-05 01:27:11 +0000395 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerf5102a02008-11-28 19:54:49 +0000396 return;
397 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000398 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000399
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000400 // Otherwise, we have multiple predecessors of BB. Update the PHIs in DestBB
401 // to handle the new incoming edges it is about to have.
402 PHINode *PN;
403 for (BasicBlock::iterator BBI = DestBB->begin();
404 (PN = dyn_cast<PHINode>(BBI)); ++BBI) {
405 // Remove the incoming value for BB, and remember it.
406 Value *InVal = PN->removeIncomingValue(BB, false);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000407
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000408 // Two options: either the InVal is a phi node defined in BB or it is some
409 // value that dominates BB.
410 PHINode *InValPhi = dyn_cast<PHINode>(InVal);
411 if (InValPhi && InValPhi->getParent() == BB) {
412 // Add all of the input values of the input PHI as inputs of this phi.
413 for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i)
414 PN->addIncoming(InValPhi->getIncomingValue(i),
415 InValPhi->getIncomingBlock(i));
416 } else {
417 // Otherwise, add one instance of the dominating value for each edge that
418 // we will be adding.
419 if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) {
420 for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i)
421 PN->addIncoming(InVal, BBPN->getIncomingBlock(i));
422 } else {
423 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
424 PN->addIncoming(InVal, *PI);
425 }
426 }
427 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000428
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000429 // The PHIs are now updated, change everything that refers to BB to use
430 // DestBB and remove BB.
431 BB->replaceAllUsesWith(DestBB);
Devang Patel52e37df2011-03-24 15:35:25 +0000432 if (DT && !ModifiedDT) {
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000433 BasicBlock *BBIDom = DT->getNode(BB)->getIDom()->getBlock();
434 BasicBlock *DestBBIDom = DT->getNode(DestBB)->getIDom()->getBlock();
435 BasicBlock *NewIDom = DT->findNearestCommonDominator(BBIDom, DestBBIDom);
436 DT->changeImmediateDominator(DestBB, NewIDom);
437 DT->eraseNode(BB);
438 }
Evan Cheng04149f72009-12-17 09:39:49 +0000439 if (PFI) {
440 PFI->replaceAllUses(BB, DestBB);
441 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB));
Andreas Neustifterad809812009-09-16 09:26:52 +0000442 }
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000443 BB->eraseFromParent();
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000444 ++NumBlocksElim;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000445
David Greene68d67fd2010-01-05 01:27:11 +0000446 DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n");
Chris Lattnerd9c3a0d2007-04-02 01:35:34 +0000447}
448
Chris Lattnerdd77df32007-04-13 20:30:56 +0000449/// OptimizeNoopCopyExpression - If the specified cast instruction is a noop
Dan Gohmana119de82009-06-14 23:30:43 +0000450/// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC),
451/// sink it into user blocks to reduce the number of virtual
Dale Johannesence0b2372007-06-12 16:50:17 +0000452/// registers that must be created and coalesced.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000453///
454/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000455///
Chris Lattnerdd77df32007-04-13 20:30:56 +0000456static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){
Eric Christopher692bf6b2008-09-24 05:32:41 +0000457 // If this is a noop copy,
Owen Andersone50ed302009-08-10 22:56:29 +0000458 EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
459 EVT DstVT = TLI.getValueType(CI->getType());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000460
Chris Lattnerdd77df32007-04-13 20:30:56 +0000461 // This is an fp<->int conversion?
Duncan Sands83ec4b62008-06-06 12:08:01 +0000462 if (SrcVT.isInteger() != DstVT.isInteger())
Chris Lattnerdd77df32007-04-13 20:30:56 +0000463 return false;
Duncan Sands8e4eb092008-06-08 20:54:56 +0000464
Chris Lattnerdd77df32007-04-13 20:30:56 +0000465 // If this is an extension, it will be a zero or sign extension, which
466 // isn't a noop.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000467 if (SrcVT.bitsLT(DstVT)) return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000468
Chris Lattnerdd77df32007-04-13 20:30:56 +0000469 // If these values will be promoted, find out what they will be promoted
470 // to. This helps us consider truncates on PPC as noop copies when they
471 // are.
Nadav Rotem0ccc12a2011-05-29 08:10:47 +0000472 if (TLI.getTypeAction(CI->getContext(), SrcVT) ==
473 TargetLowering::TypePromoteInteger)
Owen Anderson23b9b192009-08-12 00:36:31 +0000474 SrcVT = TLI.getTypeToTransformTo(CI->getContext(), SrcVT);
Nadav Rotem0ccc12a2011-05-29 08:10:47 +0000475 if (TLI.getTypeAction(CI->getContext(), DstVT) ==
476 TargetLowering::TypePromoteInteger)
Owen Anderson23b9b192009-08-12 00:36:31 +0000477 DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000478
Chris Lattnerdd77df32007-04-13 20:30:56 +0000479 // If, after promotion, these are the same types, this is a noop copy.
480 if (SrcVT != DstVT)
481 return false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000482
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000483 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000484
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000485 /// InsertedCasts - Only insert a cast in each block once.
Dale Johannesence0b2372007-06-12 16:50:17 +0000486 DenseMap<BasicBlock*, CastInst*> InsertedCasts;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000487
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000488 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000489 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000490 UI != E; ) {
491 Use &TheUse = UI.getUse();
492 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000493
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000494 // Figure out which BB this cast is used in. For PHI's this is the
495 // appropriate predecessor block.
496 BasicBlock *UserBB = User->getParent();
497 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Gabor Greifa36791d2009-01-23 19:40:15 +0000498 UserBB = PN->getIncomingBlock(UI);
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000499 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000500
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000501 // Preincrement use iterator so we don't invalidate it.
502 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000503
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000504 // If this user is in the same block as the cast, don't change the cast.
505 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000506
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000507 // If we have already inserted a cast into this block, use it.
508 CastInst *&InsertedCast = InsertedCasts[UserBB];
509
510 if (!InsertedCast) {
Bill Wendling5b6f42f2011-08-16 20:45:24 +0000511 BasicBlock::iterator InsertPt = UserBB->getFirstInsertionPt();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000512 InsertedCast =
513 CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "",
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000514 InsertPt);
515 MadeChange = true;
516 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000517
Dale Johannesence0b2372007-06-12 16:50:17 +0000518 // Replace a use of the cast with a use of the new cast.
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000519 TheUse = InsertedCast;
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000520 ++NumCastUses;
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000521 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000522
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000523 // If we removed all uses, nuke the cast.
Duncan Sandse0038132008-01-20 16:51:46 +0000524 if (CI->use_empty()) {
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000525 CI->eraseFromParent();
Duncan Sandse0038132008-01-20 16:51:46 +0000526 MadeChange = true;
527 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000528
Chris Lattnerdbe0dec2007-03-31 04:06:36 +0000529 return MadeChange;
530}
531
Eric Christopher692bf6b2008-09-24 05:32:41 +0000532/// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce
Dale Johannesence0b2372007-06-12 16:50:17 +0000533/// the number of virtual registers that must be created and coalesced. This is
Chris Lattner684b22d2007-08-02 16:53:43 +0000534/// a clear win except on targets with multiple condition code registers
535/// (PowerPC), where it might lose; some adjustment may be wanted there.
Dale Johannesence0b2372007-06-12 16:50:17 +0000536///
537/// Return true if any changes are made.
Chris Lattner85fa13c2008-11-24 22:44:16 +0000538static bool OptimizeCmpExpression(CmpInst *CI) {
Dale Johannesence0b2372007-06-12 16:50:17 +0000539 BasicBlock *DefBB = CI->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000540
Dale Johannesence0b2372007-06-12 16:50:17 +0000541 /// InsertedCmp - Only insert a cmp in each block once.
542 DenseMap<BasicBlock*, CmpInst*> InsertedCmps;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000543
Dale Johannesence0b2372007-06-12 16:50:17 +0000544 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000545 for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end();
Dale Johannesence0b2372007-06-12 16:50:17 +0000546 UI != E; ) {
547 Use &TheUse = UI.getUse();
548 Instruction *User = cast<Instruction>(*UI);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000549
Dale Johannesence0b2372007-06-12 16:50:17 +0000550 // Preincrement use iterator so we don't invalidate it.
551 ++UI;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000552
Dale Johannesence0b2372007-06-12 16:50:17 +0000553 // Don't bother for PHI nodes.
554 if (isa<PHINode>(User))
555 continue;
556
557 // Figure out which BB this cmp is used in.
558 BasicBlock *UserBB = User->getParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000559
Dale Johannesence0b2372007-06-12 16:50:17 +0000560 // If this user is in the same block as the cmp, don't change the cmp.
561 if (UserBB == DefBB) continue;
Eric Christopher692bf6b2008-09-24 05:32:41 +0000562
Dale Johannesence0b2372007-06-12 16:50:17 +0000563 // If we have already inserted a cmp into this block, use it.
564 CmpInst *&InsertedCmp = InsertedCmps[UserBB];
565
566 if (!InsertedCmp) {
Bill Wendling5b6f42f2011-08-16 20:45:24 +0000567 BasicBlock::iterator InsertPt = UserBB->getFirstInsertionPt();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000568 InsertedCmp =
Dan Gohman1c8a23c2009-08-25 23:17:54 +0000569 CmpInst::Create(CI->getOpcode(),
Owen Anderson333c4002009-07-09 23:48:35 +0000570 CI->getPredicate(), CI->getOperand(0),
Dale Johannesence0b2372007-06-12 16:50:17 +0000571 CI->getOperand(1), "", InsertPt);
572 MadeChange = true;
573 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000574
Dale Johannesence0b2372007-06-12 16:50:17 +0000575 // Replace a use of the cmp with a use of the new cmp.
576 TheUse = InsertedCmp;
Cameron Zwarich31ff1332011-01-05 17:27:27 +0000577 ++NumCmpUses;
Dale Johannesence0b2372007-06-12 16:50:17 +0000578 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000579
Dale Johannesence0b2372007-06-12 16:50:17 +0000580 // If we removed all uses, nuke the cmp.
581 if (CI->use_empty())
582 CI->eraseFromParent();
Eric Christopher692bf6b2008-09-24 05:32:41 +0000583
Dale Johannesence0b2372007-06-12 16:50:17 +0000584 return MadeChange;
585}
586
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000587namespace {
588class CodeGenPrepareFortifiedLibCalls : public SimplifyFortifiedLibCalls {
589protected:
590 void replaceCall(Value *With) {
591 CI->replaceAllUsesWith(With);
592 CI->eraseFromParent();
593 }
594 bool isFoldable(unsigned SizeCIOp, unsigned, bool) const {
Gabor Greifa6aac4c2010-07-16 09:38:02 +0000595 if (ConstantInt *SizeCI =
596 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp)))
597 return SizeCI->isAllOnesValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000598 return false;
599 }
600};
601} // end anonymous namespace
602
Eric Christopher040056f2010-03-11 02:41:03 +0000603bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) {
Chris Lattner75796092011-01-15 07:14:54 +0000604 BasicBlock *BB = CI->getParent();
Nadav Rotema94d6e82012-07-24 10:51:42 +0000605
Chris Lattner75796092011-01-15 07:14:54 +0000606 // Lower inline assembly if we can.
607 // If we found an inline asm expession, and if the target knows how to
608 // lower it to normal LLVM code, do so now.
609 if (TLI && isa<InlineAsm>(CI->getCalledValue())) {
610 if (TLI->ExpandInlineAsm(CI)) {
611 // Avoid invalidating the iterator.
612 CurInstIterator = BB->begin();
613 // Avoid processing instructions out of order, which could cause
614 // reuse before a value is defined.
615 SunkAddrs.clear();
616 return true;
617 }
618 // Sink address computing for memory operands into the block.
619 if (OptimizeInlineAsmInst(CI))
620 return true;
621 }
Nadav Rotema94d6e82012-07-24 10:51:42 +0000622
Eric Christopher040056f2010-03-11 02:41:03 +0000623 // Lower all uses of llvm.objectsize.*
624 IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI);
625 if (II && II->getIntrinsicID() == Intrinsic::objectsize) {
Gabor Greifde9f5452010-06-24 00:44:01 +0000626 bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000627 Type *ReturnTy = CI->getType();
Nadav Rotema94d6e82012-07-24 10:51:42 +0000628 Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL);
629
Chris Lattner94e8e0c2011-01-15 07:25:29 +0000630 // Substituting this can cause recursive simplifications, which can
631 // invalidate our iterator. Use a WeakVH to hold onto it in case this
632 // happens.
633 WeakVH IterHandle(CurInstIterator);
Nadav Rotema94d6e82012-07-24 10:51:42 +0000634
Micah Villmow3574eca2012-10-08 16:38:25 +0000635 replaceAndRecursivelySimplify(CI, RetVal, TLI ? TLI->getDataLayout() : 0,
Chandler Carruth6b980542012-03-24 21:11:24 +0000636 TLInfo, ModifiedDT ? 0 : DT);
Chris Lattner94e8e0c2011-01-15 07:25:29 +0000637
638 // If the iterator instruction was recursively deleted, start over at the
639 // start of the block.
Chris Lattner435b4d22011-01-18 20:53:04 +0000640 if (IterHandle != CurInstIterator) {
Chris Lattner94e8e0c2011-01-15 07:25:29 +0000641 CurInstIterator = BB->begin();
Chris Lattner435b4d22011-01-18 20:53:04 +0000642 SunkAddrs.clear();
643 }
Eric Christopher040056f2010-03-11 02:41:03 +0000644 return true;
645 }
646
Pete Cooperf210b682012-03-13 20:59:56 +0000647 if (II && TLI) {
648 SmallVector<Value*, 2> PtrOps;
649 Type *AccessTy;
650 if (TLI->GetAddrModeArguments(II, PtrOps, AccessTy))
651 while (!PtrOps.empty())
652 if (OptimizeMemoryInst(II, PtrOps.pop_back_val(), AccessTy))
653 return true;
654 }
655
Eric Christopher040056f2010-03-11 02:41:03 +0000656 // From here on out we're working with named functions.
657 if (CI->getCalledFunction() == 0) return false;
Devang Patel97de92c2011-05-26 21:51:06 +0000658
Micah Villmow3574eca2012-10-08 16:38:25 +0000659 // We'll need DataLayout from here on out.
660 const DataLayout *TD = TLI ? TLI->getDataLayout() : 0;
Eric Christopher040056f2010-03-11 02:41:03 +0000661 if (!TD) return false;
Nadav Rotema94d6e82012-07-24 10:51:42 +0000662
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000663 // Lower all default uses of _chk calls. This is very similar
664 // to what InstCombineCalls does, but here we are only lowering calls
Eric Christopher040056f2010-03-11 02:41:03 +0000665 // that have the default "don't know" as the objectsize. Anything else
666 // should be left alone.
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000667 CodeGenPrepareFortifiedLibCalls Simplifier;
Nuno Lopes51004df2012-07-25 16:46:31 +0000668 return Simplifier.fold(CI, TD, TLInfo);
Eric Christopher040056f2010-03-11 02:41:03 +0000669}
Chris Lattner94e8e0c2011-01-15 07:25:29 +0000670
Evan Cheng485fafc2011-03-21 01:19:09 +0000671/// DupRetToEnableTailCallOpts - Look for opportunities to duplicate return
672/// instructions to the predecessor to enable tail call optimizations. The
673/// case it is currently looking for is:
Dmitri Gribenko2d9eb722012-09-13 12:34:29 +0000674/// @code
Evan Cheng485fafc2011-03-21 01:19:09 +0000675/// bb0:
676/// %tmp0 = tail call i32 @f0()
677/// br label %return
678/// bb1:
679/// %tmp1 = tail call i32 @f1()
680/// br label %return
681/// bb2:
682/// %tmp2 = tail call i32 @f2()
683/// br label %return
684/// return:
685/// %retval = phi i32 [ %tmp0, %bb0 ], [ %tmp1, %bb1 ], [ %tmp2, %bb2 ]
686/// ret i32 %retval
Dmitri Gribenko2d9eb722012-09-13 12:34:29 +0000687/// @endcode
Evan Cheng485fafc2011-03-21 01:19:09 +0000688///
689/// =>
690///
Dmitri Gribenko2d9eb722012-09-13 12:34:29 +0000691/// @code
Evan Cheng485fafc2011-03-21 01:19:09 +0000692/// bb0:
693/// %tmp0 = tail call i32 @f0()
694/// ret i32 %tmp0
695/// bb1:
696/// %tmp1 = tail call i32 @f1()
697/// ret i32 %tmp1
698/// bb2:
699/// %tmp2 = tail call i32 @f2()
700/// ret i32 %tmp2
Dmitri Gribenko2d9eb722012-09-13 12:34:29 +0000701/// @endcode
Benjamin Kramer4ccb49a2012-11-23 19:17:06 +0000702bool CodeGenPrepare::DupRetToEnableTailCallOpts(BasicBlock *BB) {
Cameron Zwarich661a3902011-03-24 04:51:51 +0000703 if (!TLI)
704 return false;
705
Benjamin Kramer4ccb49a2012-11-23 19:17:06 +0000706 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
707 if (!RI)
708 return false;
709
Evan Cheng9c777a42012-07-27 21:21:26 +0000710 PHINode *PN = 0;
711 BitCastInst *BCI = 0;
Evan Cheng485fafc2011-03-21 01:19:09 +0000712 Value *V = RI->getReturnValue();
Evan Cheng9c777a42012-07-27 21:21:26 +0000713 if (V) {
714 BCI = dyn_cast<BitCastInst>(V);
715 if (BCI)
716 V = BCI->getOperand(0);
717
718 PN = dyn_cast<PHINode>(V);
719 if (!PN)
720 return false;
721 }
Evan Cheng485fafc2011-03-21 01:19:09 +0000722
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000723 if (PN && PN->getParent() != BB)
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000724 return false;
Evan Cheng485fafc2011-03-21 01:19:09 +0000725
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000726 // It's not safe to eliminate the sign / zero extension of the return value.
727 // See llvm::isInTailCallPosition().
728 const Function *F = BB->getParent();
Kostya Serebryany164b86b2012-01-20 17:56:17 +0000729 Attributes CallerRetAttr = F->getAttributes().getRetAttributes();
Bill Wendling67658342012-10-09 07:45:08 +0000730 if (CallerRetAttr.hasAttribute(Attributes::ZExt) ||
731 CallerRetAttr.hasAttribute(Attributes::SExt))
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000732 return false;
Evan Cheng485fafc2011-03-21 01:19:09 +0000733
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000734 // Make sure there are no instructions between the PHI and return, or that the
735 // return is the first instruction in the block.
736 if (PN) {
737 BasicBlock::iterator BI = BB->begin();
738 do { ++BI; } while (isa<DbgInfoIntrinsic>(BI));
Evan Cheng9c777a42012-07-27 21:21:26 +0000739 if (&*BI == BCI)
740 // Also skip over the bitcast.
741 ++BI;
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000742 if (&*BI != RI)
743 return false;
744 } else {
Cameron Zwarich90354842011-03-24 16:34:59 +0000745 BasicBlock::iterator BI = BB->begin();
746 while (isa<DbgInfoIntrinsic>(BI)) ++BI;
747 if (&*BI != RI)
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000748 return false;
749 }
Evan Cheng485fafc2011-03-21 01:19:09 +0000750
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000751 /// Only dup the ReturnInst if the CallInst is likely to be emitted as a tail
752 /// call.
753 SmallVector<CallInst*, 4> TailCalls;
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000754 if (PN) {
755 for (unsigned I = 0, E = PN->getNumIncomingValues(); I != E; ++I) {
756 CallInst *CI = dyn_cast<CallInst>(PN->getIncomingValue(I));
757 // Make sure the phi value is indeed produced by the tail call.
758 if (CI && CI->hasOneUse() && CI->getParent() == PN->getIncomingBlock(I) &&
759 TLI->mayBeEmittedAsTailCall(CI))
760 TailCalls.push_back(CI);
761 }
762 } else {
763 SmallPtrSet<BasicBlock*, 4> VisitedBBs;
764 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI) {
765 if (!VisitedBBs.insert(*PI))
766 continue;
767
768 BasicBlock::InstListType &InstList = (*PI)->getInstList();
769 BasicBlock::InstListType::reverse_iterator RI = InstList.rbegin();
770 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();
Cameron Zwarich90354842011-03-24 16:34:59 +0000771 do { ++RI; } while (RI != RE && isa<DbgInfoIntrinsic>(&*RI));
772 if (RI == RE)
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000773 continue;
Cameron Zwarich90354842011-03-24 16:34:59 +0000774
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000775 CallInst *CI = dyn_cast<CallInst>(&*RI);
Cameron Zwarichdc31cfe2011-03-24 15:54:11 +0000776 if (CI && CI->use_empty() && TLI->mayBeEmittedAsTailCall(CI))
Cameron Zwarich6e8ffc12011-03-24 04:52:10 +0000777 TailCalls.push_back(CI);
778 }
Evan Cheng485fafc2011-03-21 01:19:09 +0000779 }
780
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000781 bool Changed = false;
782 for (unsigned i = 0, e = TailCalls.size(); i != e; ++i) {
783 CallInst *CI = TailCalls[i];
784 CallSite CS(CI);
785
786 // Conservatively require the attributes of the call to match those of the
787 // return. Ignore noalias because it doesn't affect the call sequence.
Kostya Serebryany164b86b2012-01-20 17:56:17 +0000788 Attributes CalleeRetAttr = CS.getAttributes().getRetAttributes();
Bill Wendling702cc912012-10-15 20:35:56 +0000789 if (AttrBuilder(CalleeRetAttr).
Bill Wendling3756e702012-10-14 06:56:13 +0000790 removeAttribute(Attributes::NoAlias) !=
Bill Wendling702cc912012-10-15 20:35:56 +0000791 AttrBuilder(CallerRetAttr).
Bill Wendling3756e702012-10-14 06:56:13 +0000792 removeAttribute(Attributes::NoAlias))
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000793 continue;
794
795 // Make sure the call instruction is followed by an unconditional branch to
796 // the return block.
797 BasicBlock *CallBB = CI->getParent();
798 BranchInst *BI = dyn_cast<BranchInst>(CallBB->getTerminator());
799 if (!BI || !BI->isUnconditional() || BI->getSuccessor(0) != BB)
800 continue;
801
802 // Duplicate the return into CallBB.
803 (void)FoldReturnIntoUncondBranch(RI, BB, CallBB);
Devang Patel52e37df2011-03-24 15:35:25 +0000804 ModifiedDT = Changed = true;
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000805 ++NumRetsDup;
806 }
807
808 // If we eliminated all predecessors of the block, delete the block now.
Evan Cheng46597072012-09-28 23:58:57 +0000809 if (Changed && !BB->hasAddressTaken() && pred_begin(BB) == pred_end(BB))
Cameron Zwarich4bae5882011-03-24 04:52:07 +0000810 BB->eraseFromParent();
811
812 return Changed;
Evan Cheng485fafc2011-03-21 01:19:09 +0000813}
814
Chris Lattner88a5c832008-11-25 07:09:13 +0000815//===----------------------------------------------------------------------===//
Chris Lattner88a5c832008-11-25 07:09:13 +0000816// Memory Optimization
817//===----------------------------------------------------------------------===//
818
Chris Lattnerdd77df32007-04-13 20:30:56 +0000819/// IsNonLocalValue - Return true if the specified values are defined in a
820/// different basic block than BB.
821static bool IsNonLocalValue(Value *V, BasicBlock *BB) {
822 if (Instruction *I = dyn_cast<Instruction>(V))
823 return I->getParent() != BB;
824 return false;
825}
826
Bob Wilson4a8ee232009-12-03 21:47:07 +0000827/// OptimizeMemoryInst - Load and Store Instructions often have
Chris Lattnerdd77df32007-04-13 20:30:56 +0000828/// addressing modes that can do significant amounts of computation. As such,
829/// instruction selection will try to get the load or store to do as much
830/// computation as possible for the program. The problem is that isel can only
831/// see within a single block. As such, we sink as much legal addressing mode
832/// stuff into the block as possible.
Chris Lattner88a5c832008-11-25 07:09:13 +0000833///
834/// This method is used to optimize both load/store and inline asms with memory
835/// operands.
Chris Lattner896617b2008-11-26 03:20:37 +0000836bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000837 Type *AccessTy) {
Owen Anderson35bf4d62010-11-27 08:15:55 +0000838 Value *Repl = Addr;
Nadav Rotema94d6e82012-07-24 10:51:42 +0000839
840 // Try to collapse single-value PHI nodes. This is necessary to undo
Owen Andersond2f41742010-11-19 22:15:03 +0000841 // unprofitable PRE transformations.
Cameron Zwarich7cb4fa22011-01-03 06:33:01 +0000842 SmallVector<Value*, 8> worklist;
843 SmallPtrSet<Value*, 16> Visited;
Owen Anderson35bf4d62010-11-27 08:15:55 +0000844 worklist.push_back(Addr);
Nadav Rotema94d6e82012-07-24 10:51:42 +0000845
Owen Anderson35bf4d62010-11-27 08:15:55 +0000846 // Use a worklist to iteratively look through PHI nodes, and ensure that
847 // the addressing mode obtained from the non-PHI roots of the graph
848 // are equivalent.
849 Value *Consensus = 0;
Cameron Zwarich4c078f02011-03-01 21:13:53 +0000850 unsigned NumUsesConsensus = 0;
Cameron Zwarich7c8d3512011-03-05 08:12:26 +0000851 bool IsNumUsesConsensusValid = false;
Owen Anderson35bf4d62010-11-27 08:15:55 +0000852 SmallVector<Instruction*, 16> AddrModeInsts;
853 ExtAddrMode AddrMode;
854 while (!worklist.empty()) {
855 Value *V = worklist.back();
856 worklist.pop_back();
Nadav Rotema94d6e82012-07-24 10:51:42 +0000857
Owen Anderson35bf4d62010-11-27 08:15:55 +0000858 // Break use-def graph loops.
Nick Lewycky48105282011-09-29 23:40:12 +0000859 if (!Visited.insert(V)) {
Owen Anderson35bf4d62010-11-27 08:15:55 +0000860 Consensus = 0;
861 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000862 }
Nadav Rotema94d6e82012-07-24 10:51:42 +0000863
Owen Anderson35bf4d62010-11-27 08:15:55 +0000864 // For a PHI node, push all of its incoming values.
865 if (PHINode *P = dyn_cast<PHINode>(V)) {
866 for (unsigned i = 0, e = P->getNumIncomingValues(); i != e; ++i)
867 worklist.push_back(P->getIncomingValue(i));
868 continue;
869 }
Nadav Rotema94d6e82012-07-24 10:51:42 +0000870
Owen Anderson35bf4d62010-11-27 08:15:55 +0000871 // For non-PHIs, determine the addressing mode being computed.
872 SmallVector<Instruction*, 16> NewAddrModeInsts;
873 ExtAddrMode NewAddrMode =
Nick Lewycky48105282011-09-29 23:40:12 +0000874 AddressingModeMatcher::Match(V, AccessTy, MemoryInst,
Owen Anderson35bf4d62010-11-27 08:15:55 +0000875 NewAddrModeInsts, *TLI);
Cameron Zwarich7c8d3512011-03-05 08:12:26 +0000876
877 // This check is broken into two cases with very similar code to avoid using
878 // getNumUses() as much as possible. Some values have a lot of uses, so
879 // calling getNumUses() unconditionally caused a significant compile-time
880 // regression.
881 if (!Consensus) {
882 Consensus = V;
883 AddrMode = NewAddrMode;
884 AddrModeInsts = NewAddrModeInsts;
885 continue;
886 } else if (NewAddrMode == AddrMode) {
887 if (!IsNumUsesConsensusValid) {
888 NumUsesConsensus = Consensus->getNumUses();
889 IsNumUsesConsensusValid = true;
890 }
891
892 // Ensure that the obtained addressing mode is equivalent to that obtained
893 // for all other roots of the PHI traversal. Also, when choosing one
894 // such root as representative, select the one with the most uses in order
895 // to keep the cost modeling heuristics in AddressingModeMatcher
896 // applicable.
Cameron Zwarich4c078f02011-03-01 21:13:53 +0000897 unsigned NumUses = V->getNumUses();
898 if (NumUses > NumUsesConsensus) {
Owen Anderson35bf4d62010-11-27 08:15:55 +0000899 Consensus = V;
Cameron Zwarich4c078f02011-03-01 21:13:53 +0000900 NumUsesConsensus = NumUses;
Owen Anderson35bf4d62010-11-27 08:15:55 +0000901 AddrModeInsts = NewAddrModeInsts;
902 }
903 continue;
904 }
Nadav Rotema94d6e82012-07-24 10:51:42 +0000905
Owen Anderson35bf4d62010-11-27 08:15:55 +0000906 Consensus = 0;
907 break;
Owen Andersond2f41742010-11-19 22:15:03 +0000908 }
Nadav Rotema94d6e82012-07-24 10:51:42 +0000909
Owen Anderson35bf4d62010-11-27 08:15:55 +0000910 // If the addressing mode couldn't be determined, or if multiple different
911 // ones were determined, bail out now.
912 if (!Consensus) return false;
Nadav Rotema94d6e82012-07-24 10:51:42 +0000913
Chris Lattnerdd77df32007-04-13 20:30:56 +0000914 // Check to see if any of the instructions supersumed by this addr mode are
915 // non-local to I's BB.
916 bool AnyNonLocal = false;
917 for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) {
Chris Lattner896617b2008-11-26 03:20:37 +0000918 if (IsNonLocalValue(AddrModeInsts[i], MemoryInst->getParent())) {
Chris Lattnerdd77df32007-04-13 20:30:56 +0000919 AnyNonLocal = true;
920 break;
921 }
922 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000923
Chris Lattnerdd77df32007-04-13 20:30:56 +0000924 // If all the instructions matched are already in this BB, don't do anything.
925 if (!AnyNonLocal) {
David Greene68d67fd2010-01-05 01:27:11 +0000926 DEBUG(dbgs() << "CGP: Found local addrmode: " << AddrMode << "\n");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000927 return false;
928 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000929
Chris Lattnerdd77df32007-04-13 20:30:56 +0000930 // Insert this computation right after this user. Since our caller is
931 // scanning from the top of the BB to the bottom, reuse of the expr are
932 // guaranteed to happen later.
Devang Patel2048c372011-09-06 18:49:53 +0000933 IRBuilder<> Builder(MemoryInst);
Eric Christopher692bf6b2008-09-24 05:32:41 +0000934
Chris Lattnerdd77df32007-04-13 20:30:56 +0000935 // Now that we determined the addressing expression we want to use and know
936 // that we have to sink it into this block. Check to see if we have already
937 // done this for some other load/store instr in this block. If so, reuse the
938 // computation.
939 Value *&SunkAddr = SunkAddrs[Addr];
940 if (SunkAddr) {
David Greene68d67fd2010-01-05 01:27:11 +0000941 DEBUG(dbgs() << "CGP: Reusing nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000942 << *MemoryInst);
Chris Lattnerdd77df32007-04-13 20:30:56 +0000943 if (SunkAddr->getType() != Addr->getType())
Benjamin Kramera9390a42011-09-27 20:39:19 +0000944 SunkAddr = Builder.CreateBitCast(SunkAddr, Addr->getType());
Chris Lattnerdd77df32007-04-13 20:30:56 +0000945 } else {
David Greene68d67fd2010-01-05 01:27:11 +0000946 DEBUG(dbgs() << "CGP: SINKING nonlocal addrmode: " << AddrMode << " for "
Dan Gohman6c1980b2009-07-25 01:13:51 +0000947 << *MemoryInst);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000948 Type *IntPtrTy =
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000949 TLI->getDataLayout()->getIntPtrType(AccessTy->getContext());
Eric Christopher692bf6b2008-09-24 05:32:41 +0000950
Chris Lattnerdd77df32007-04-13 20:30:56 +0000951 Value *Result = 0;
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000952
953 // Start with the base register. Do this first so that subsequent address
954 // matching finds it last, which will prevent it from trying to match it
955 // as the scaled value in case it happens to be a mul. That would be
956 // problematic if we've sunk a different mul for the scale, because then
957 // we'd end up sinking both muls.
958 if (AddrMode.BaseReg) {
959 Value *V = AddrMode.BaseReg;
Duncan Sands1df98592010-02-16 11:11:14 +0000960 if (V->getType()->isPointerTy())
Devang Patel2048c372011-09-06 18:49:53 +0000961 V = Builder.CreatePtrToInt(V, IntPtrTy, "sunkaddr");
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000962 if (V->getType() != IntPtrTy)
Devang Patel2048c372011-09-06 18:49:53 +0000963 V = Builder.CreateIntCast(V, IntPtrTy, /*isSigned=*/true, "sunkaddr");
Dan Gohmand8d0b6a2010-01-19 22:45:06 +0000964 Result = V;
965 }
966
967 // Add the scale value.
Chris Lattnerdd77df32007-04-13 20:30:56 +0000968 if (AddrMode.Scale) {
969 Value *V = AddrMode.ScaledReg;
970 if (V->getType() == IntPtrTy) {
971 // done.
Duncan Sands1df98592010-02-16 11:11:14 +0000972 } else if (V->getType()->isPointerTy()) {
Devang Patel2048c372011-09-06 18:49:53 +0000973 V = Builder.CreatePtrToInt(V, IntPtrTy, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000974 } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() <
975 cast<IntegerType>(V->getType())->getBitWidth()) {
Devang Patel2048c372011-09-06 18:49:53 +0000976 V = Builder.CreateTrunc(V, IntPtrTy, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000977 } else {
Devang Patel2048c372011-09-06 18:49:53 +0000978 V = Builder.CreateSExt(V, IntPtrTy, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000979 }
980 if (AddrMode.Scale != 1)
Devang Patel2048c372011-09-06 18:49:53 +0000981 V = Builder.CreateMul(V, ConstantInt::get(IntPtrTy, AddrMode.Scale),
982 "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000983 if (Result)
Devang Patel2048c372011-09-06 18:49:53 +0000984 Result = Builder.CreateAdd(Result, V, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000985 else
986 Result = V;
987 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000988
Chris Lattnerdd77df32007-04-13 20:30:56 +0000989 // Add in the BaseGV if present.
990 if (AddrMode.BaseGV) {
Devang Patel2048c372011-09-06 18:49:53 +0000991 Value *V = Builder.CreatePtrToInt(AddrMode.BaseGV, IntPtrTy, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000992 if (Result)
Devang Patel2048c372011-09-06 18:49:53 +0000993 Result = Builder.CreateAdd(Result, V, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +0000994 else
995 Result = V;
996 }
Eric Christopher692bf6b2008-09-24 05:32:41 +0000997
Chris Lattnerdd77df32007-04-13 20:30:56 +0000998 // Add in the Base Offset if present.
999 if (AddrMode.BaseOffs) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001000 Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs);
Chris Lattnerdd77df32007-04-13 20:30:56 +00001001 if (Result)
Devang Patel2048c372011-09-06 18:49:53 +00001002 Result = Builder.CreateAdd(Result, V, "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +00001003 else
1004 Result = V;
1005 }
1006
1007 if (Result == 0)
Owen Andersona7235ea2009-07-31 20:28:14 +00001008 SunkAddr = Constant::getNullValue(Addr->getType());
Chris Lattnerdd77df32007-04-13 20:30:56 +00001009 else
Devang Patel2048c372011-09-06 18:49:53 +00001010 SunkAddr = Builder.CreateIntToPtr(Result, Addr->getType(), "sunkaddr");
Chris Lattnerdd77df32007-04-13 20:30:56 +00001011 }
Eric Christopher692bf6b2008-09-24 05:32:41 +00001012
Owen Andersond2f41742010-11-19 22:15:03 +00001013 MemoryInst->replaceUsesOfWith(Repl, SunkAddr);
Eric Christopher692bf6b2008-09-24 05:32:41 +00001014
Chris Lattner0403b472011-04-09 07:05:44 +00001015 // If we have no uses, recursively delete the value and all dead instructions
1016 // using it.
Owen Andersond2f41742010-11-19 22:15:03 +00001017 if (Repl->use_empty()) {
Chris Lattner0403b472011-04-09 07:05:44 +00001018 // This can cause recursive deletion, which can invalidate our iterator.
1019 // Use a WeakVH to hold onto it in case this happens.
1020 WeakVH IterHandle(CurInstIterator);
1021 BasicBlock *BB = CurInstIterator->getParent();
Nadav Rotema94d6e82012-07-24 10:51:42 +00001022
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +00001023 RecursivelyDeleteTriviallyDeadInstructions(Repl, TLInfo);
Chris Lattner0403b472011-04-09 07:05:44 +00001024
1025 if (IterHandle != CurInstIterator) {
1026 // If the iterator instruction was recursively deleted, start over at the
1027 // start of the block.
1028 CurInstIterator = BB->begin();
1029 SunkAddrs.clear();
1030 } else {
1031 // This address is now available for reassignment, so erase the table
1032 // entry; we don't want to match some completely different instruction.
1033 SunkAddrs[Addr] = 0;
Nadav Rotema94d6e82012-07-24 10:51:42 +00001034 }
Dale Johannesen536d31b2010-03-31 20:37:15 +00001035 }
Cameron Zwarich31ff1332011-01-05 17:27:27 +00001036 ++NumMemoryInsts;
Chris Lattnerdd77df32007-04-13 20:30:56 +00001037 return true;
1038}
1039
Evan Cheng9bf12b52008-02-26 02:42:37 +00001040/// OptimizeInlineAsmInst - If there are any memory operands, use
Chris Lattner88a5c832008-11-25 07:09:13 +00001041/// OptimizeMemoryInst to sink their address computing into the block when
Evan Cheng9bf12b52008-02-26 02:42:37 +00001042/// possible / profitable.
Chris Lattner75796092011-01-15 07:14:54 +00001043bool CodeGenPrepare::OptimizeInlineAsmInst(CallInst *CS) {
Evan Cheng9bf12b52008-02-26 02:42:37 +00001044 bool MadeChange = false;
Evan Cheng9bf12b52008-02-26 02:42:37 +00001045
Nadav Rotema94d6e82012-07-24 10:51:42 +00001046 TargetLowering::AsmOperandInfoVector
Chris Lattner75796092011-01-15 07:14:54 +00001047 TargetConstraints = TLI->ParseConstraints(CS);
Dale Johannesen677c6ec2010-09-16 18:30:55 +00001048 unsigned ArgNo = 0;
John Thompsoneac6e1d2010-09-13 18:15:37 +00001049 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) {
1050 TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i];
Nadav Rotema94d6e82012-07-24 10:51:42 +00001051
Evan Cheng9bf12b52008-02-26 02:42:37 +00001052 // Compute the constraint code and ConstraintType to use.
Dale Johannesen1784d162010-06-25 21:55:36 +00001053 TLI->ComputeConstraintToUse(OpInfo, SDValue());
Evan Cheng9bf12b52008-02-26 02:42:37 +00001054
Eli Friedman9ec80952008-02-26 18:37:49 +00001055 if (OpInfo.ConstraintType == TargetLowering::C_Memory &&
1056 OpInfo.isIndirect) {
Chris Lattner75796092011-01-15 07:14:54 +00001057 Value *OpVal = CS->getArgOperand(ArgNo++);
Chris Lattner1a8943a2011-01-15 07:29:01 +00001058 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
Dale Johannesen677c6ec2010-09-16 18:30:55 +00001059 } else if (OpInfo.Type == InlineAsm::isInput)
1060 ArgNo++;
Evan Cheng9bf12b52008-02-26 02:42:37 +00001061 }
1062
1063 return MadeChange;
1064}
1065
Dan Gohmanb00f2362009-10-16 20:59:35 +00001066/// MoveExtToFormExtLoad - Move a zext or sext fed by a load into the same
1067/// basic block as the load, unless conditions are unfavorable. This allows
1068/// SelectionDAG to fold the extend into the load.
1069///
1070bool CodeGenPrepare::MoveExtToFormExtLoad(Instruction *I) {
1071 // Look for a load being extended.
1072 LoadInst *LI = dyn_cast<LoadInst>(I->getOperand(0));
1073 if (!LI) return false;
1074
1075 // If they're already in the same block, there's nothing to do.
1076 if (LI->getParent() == I->getParent())
1077 return false;
1078
1079 // If the load has other users and the truncate is not free, this probably
1080 // isn't worthwhile.
1081 if (!LI->hasOneUse() &&
Bob Wilsonec57a1a2010-09-22 18:44:56 +00001082 TLI && (TLI->isTypeLegal(TLI->getValueType(LI->getType())) ||
1083 !TLI->isTypeLegal(TLI->getValueType(I->getType()))) &&
Bob Wilson71dc4d92010-09-21 21:54:27 +00001084 !TLI->isTruncateFree(I->getType(), LI->getType()))
Dan Gohmanb00f2362009-10-16 20:59:35 +00001085 return false;
1086
1087 // Check whether the target supports casts folded into loads.
1088 unsigned LType;
1089 if (isa<ZExtInst>(I))
1090 LType = ISD::ZEXTLOAD;
1091 else {
1092 assert(isa<SExtInst>(I) && "Unexpected ext type!");
1093 LType = ISD::SEXTLOAD;
1094 }
1095 if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType())))
1096 return false;
1097
1098 // Move the extend into the same block as the load, so that SelectionDAG
1099 // can fold it.
1100 I->removeFromParent();
1101 I->insertAfter(LI);
Cameron Zwarich31ff1332011-01-05 17:27:27 +00001102 ++NumExtsMoved;
Dan Gohmanb00f2362009-10-16 20:59:35 +00001103 return true;
1104}
1105
Evan Chengbdcb7262007-12-05 23:58:20 +00001106bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
1107 BasicBlock *DefBB = I->getParent();
1108
Bob Wilson9120f5c2010-09-21 21:44:14 +00001109 // If the result of a {s|z}ext and its source are both live out, rewrite all
Evan Chengbdcb7262007-12-05 23:58:20 +00001110 // other uses of the source with result of extension.
1111 Value *Src = I->getOperand(0);
1112 if (Src->hasOneUse())
1113 return false;
1114
Evan Cheng696e5c02007-12-13 07:50:36 +00001115 // Only do this xform if truncating is free.
Gabor Greif53bdbd72008-02-26 19:13:21 +00001116 if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType()))
Evan Chengf9785f92007-12-13 03:32:53 +00001117 return false;
1118
Evan Cheng772de512007-12-12 00:51:06 +00001119 // Only safe to perform the optimization if the source is also defined in
Evan Cheng765dff22007-12-12 02:53:41 +00001120 // this block.
1121 if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent())
Evan Cheng772de512007-12-12 00:51:06 +00001122 return false;
1123
Evan Chengbdcb7262007-12-05 23:58:20 +00001124 bool DefIsLiveOut = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +00001125 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +00001126 UI != E; ++UI) {
1127 Instruction *User = cast<Instruction>(*UI);
1128
1129 // Figure out which BB this ext is used in.
1130 BasicBlock *UserBB = User->getParent();
1131 if (UserBB == DefBB) continue;
1132 DefIsLiveOut = true;
1133 break;
1134 }
1135 if (!DefIsLiveOut)
1136 return false;
1137
Evan Cheng765dff22007-12-12 02:53:41 +00001138 // Make sure non of the uses are PHI nodes.
Eric Christopher692bf6b2008-09-24 05:32:41 +00001139 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Cheng765dff22007-12-12 02:53:41 +00001140 UI != E; ++UI) {
1141 Instruction *User = cast<Instruction>(*UI);
Evan Chengf9785f92007-12-13 03:32:53 +00001142 BasicBlock *UserBB = User->getParent();
1143 if (UserBB == DefBB) continue;
1144 // Be conservative. We don't want this xform to end up introducing
1145 // reloads just before load / store instructions.
1146 if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User))
Evan Cheng765dff22007-12-12 02:53:41 +00001147 return false;
1148 }
1149
Evan Chengbdcb7262007-12-05 23:58:20 +00001150 // InsertedTruncs - Only insert one trunc in each block once.
1151 DenseMap<BasicBlock*, Instruction*> InsertedTruncs;
1152
1153 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +00001154 for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end();
Evan Chengbdcb7262007-12-05 23:58:20 +00001155 UI != E; ++UI) {
1156 Use &TheUse = UI.getUse();
1157 Instruction *User = cast<Instruction>(*UI);
1158
1159 // Figure out which BB this ext is used in.
1160 BasicBlock *UserBB = User->getParent();
1161 if (UserBB == DefBB) continue;
1162
1163 // Both src and def are live in this block. Rewrite the use.
1164 Instruction *&InsertedTrunc = InsertedTruncs[UserBB];
1165
1166 if (!InsertedTrunc) {
Bill Wendling5b6f42f2011-08-16 20:45:24 +00001167 BasicBlock::iterator InsertPt = UserBB->getFirstInsertionPt();
Evan Chengbdcb7262007-12-05 23:58:20 +00001168 InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt);
1169 }
1170
1171 // Replace a use of the {s|z}ext source with a use of the result.
1172 TheUse = InsertedTrunc;
Cameron Zwarich31ff1332011-01-05 17:27:27 +00001173 ++NumExtUses;
Evan Chengbdcb7262007-12-05 23:58:20 +00001174 MadeChange = true;
1175 }
1176
1177 return MadeChange;
1178}
1179
Benjamin Kramer59957502012-05-05 12:49:22 +00001180/// isFormingBranchFromSelectProfitable - Returns true if a SelectInst should be
1181/// turned into an explicit branch.
1182static bool isFormingBranchFromSelectProfitable(SelectInst *SI) {
1183 // FIXME: This should use the same heuristics as IfConversion to determine
1184 // whether a select is better represented as a branch. This requires that
1185 // branch probability metadata is preserved for the select, which is not the
1186 // case currently.
1187
1188 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
1189
1190 // If the branch is predicted right, an out of order CPU can avoid blocking on
1191 // the compare. Emit cmovs on compares with a memory operand as branches to
1192 // avoid stalls on the load from memory. If the compare has more than one use
1193 // there's probably another cmov or setcc around so it's not worth emitting a
1194 // branch.
1195 if (!Cmp)
1196 return false;
1197
1198 Value *CmpOp0 = Cmp->getOperand(0);
1199 Value *CmpOp1 = Cmp->getOperand(1);
1200
1201 // We check that the memory operand has one use to avoid uses of the loaded
1202 // value directly after the compare, making branches unprofitable.
1203 return Cmp->hasOneUse() &&
1204 ((isa<LoadInst>(CmpOp0) && CmpOp0->hasOneUse()) ||
1205 (isa<LoadInst>(CmpOp1) && CmpOp1->hasOneUse()));
1206}
1207
1208
Nadav Rotem9f40cb32012-09-02 12:10:19 +00001209/// If we have a SelectInst that will likely profit from branch prediction,
1210/// turn it into a branch.
Benjamin Kramer59957502012-05-05 12:49:22 +00001211bool CodeGenPrepare::OptimizeSelectInst(SelectInst *SI) {
Nadav Rotem9f40cb32012-09-02 12:10:19 +00001212 bool VectorCond = !SI->getCondition()->getType()->isIntegerTy(1);
1213
1214 // Can we convert the 'select' to CF ?
1215 if (DisableSelectToBranch || OptSize || !TLI || VectorCond)
Benjamin Kramer59957502012-05-05 12:49:22 +00001216 return false;
1217
Nadav Rotem9f40cb32012-09-02 12:10:19 +00001218 TargetLowering::SelectSupportKind SelectKind;
1219 if (VectorCond)
1220 SelectKind = TargetLowering::VectorMaskSelect;
1221 else if (SI->getType()->isVectorTy())
1222 SelectKind = TargetLowering::ScalarCondVectorVal;
1223 else
1224 SelectKind = TargetLowering::ScalarValSelect;
1225
1226 // Do we have efficient codegen support for this kind of 'selects' ?
1227 if (TLI->isSelectSupported(SelectKind)) {
1228 // We have efficient codegen support for the select instruction.
1229 // Check if it is profitable to keep this 'select'.
1230 if (!TLI->isPredictableSelectExpensive() ||
1231 !isFormingBranchFromSelectProfitable(SI))
1232 return false;
1233 }
Benjamin Kramer59957502012-05-05 12:49:22 +00001234
1235 ModifiedDT = true;
1236
1237 // First, we split the block containing the select into 2 blocks.
1238 BasicBlock *StartBlock = SI->getParent();
1239 BasicBlock::iterator SplitPt = ++(BasicBlock::iterator(SI));
1240 BasicBlock *NextBlock = StartBlock->splitBasicBlock(SplitPt, "select.end");
1241
1242 // Create a new block serving as the landing pad for the branch.
1243 BasicBlock *SmallBlock = BasicBlock::Create(SI->getContext(), "select.mid",
1244 NextBlock->getParent(), NextBlock);
1245
1246 // Move the unconditional branch from the block with the select in it into our
1247 // landing pad block.
1248 StartBlock->getTerminator()->eraseFromParent();
1249 BranchInst::Create(NextBlock, SmallBlock);
1250
1251 // Insert the real conditional branch based on the original condition.
1252 BranchInst::Create(NextBlock, SmallBlock, SI->getCondition(), SI);
1253
1254 // The select itself is replaced with a PHI Node.
1255 PHINode *PN = PHINode::Create(SI->getType(), 2, "", NextBlock->begin());
1256 PN->takeName(SI);
1257 PN->addIncoming(SI->getTrueValue(), StartBlock);
1258 PN->addIncoming(SI->getFalseValue(), SmallBlock);
1259 SI->replaceAllUsesWith(PN);
1260 SI->eraseFromParent();
1261
1262 // Instruct OptimizeBlock to skip to the next block.
1263 CurInstIterator = StartBlock->end();
1264 ++NumSelectsExpanded;
1265 return true;
1266}
1267
Cameron Zwarichc0611012011-01-06 02:37:26 +00001268bool CodeGenPrepare::OptimizeInst(Instruction *I) {
Cameron Zwarichc0611012011-01-06 02:37:26 +00001269 if (PHINode *P = dyn_cast<PHINode>(I)) {
1270 // It is possible for very late stage optimizations (such as SimplifyCFG)
1271 // to introduce PHI nodes too late to be cleaned up. If we detect such a
1272 // trivial PHI, go ahead and zap it here.
1273 if (Value *V = SimplifyInstruction(P)) {
1274 P->replaceAllUsesWith(V);
1275 P->eraseFromParent();
1276 ++NumPHIsElim;
Chris Lattner1a8943a2011-01-15 07:29:01 +00001277 return true;
Cameron Zwarichc0611012011-01-06 02:37:26 +00001278 }
Chris Lattner1a8943a2011-01-15 07:29:01 +00001279 return false;
1280 }
Nadav Rotema94d6e82012-07-24 10:51:42 +00001281
Chris Lattner1a8943a2011-01-15 07:29:01 +00001282 if (CastInst *CI = dyn_cast<CastInst>(I)) {
Cameron Zwarichc0611012011-01-06 02:37:26 +00001283 // If the source of the cast is a constant, then this should have
1284 // already been constant folded. The only reason NOT to constant fold
1285 // it is if something (e.g. LSR) was careful to place the constant
1286 // evaluation in a block other than then one that uses it (e.g. to hoist
1287 // the address of globals out of a loop). If this is the case, we don't
1288 // want to forward-subst the cast.
1289 if (isa<Constant>(CI->getOperand(0)))
1290 return false;
1291
Chris Lattner1a8943a2011-01-15 07:29:01 +00001292 if (TLI && OptimizeNoopCopyExpression(CI, *TLI))
1293 return true;
Cameron Zwarichc0611012011-01-06 02:37:26 +00001294
Chris Lattner1a8943a2011-01-15 07:29:01 +00001295 if (isa<ZExtInst>(I) || isa<SExtInst>(I)) {
1296 bool MadeChange = MoveExtToFormExtLoad(I);
1297 return MadeChange | OptimizeExtUses(I);
Cameron Zwarichc0611012011-01-06 02:37:26 +00001298 }
Chris Lattner1a8943a2011-01-15 07:29:01 +00001299 return false;
1300 }
Nadav Rotema94d6e82012-07-24 10:51:42 +00001301
Chris Lattner1a8943a2011-01-15 07:29:01 +00001302 if (CmpInst *CI = dyn_cast<CmpInst>(I))
1303 return OptimizeCmpExpression(CI);
Nadav Rotema94d6e82012-07-24 10:51:42 +00001304
Chris Lattner1a8943a2011-01-15 07:29:01 +00001305 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Cameron Zwarichc0611012011-01-06 02:37:26 +00001306 if (TLI)
Hans Wennborg04d7d132012-10-30 11:23:25 +00001307 return OptimizeMemoryInst(I, I->getOperand(0), LI->getType());
1308 return false;
Chris Lattner1a8943a2011-01-15 07:29:01 +00001309 }
Nadav Rotema94d6e82012-07-24 10:51:42 +00001310
Chris Lattner1a8943a2011-01-15 07:29:01 +00001311 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Cameron Zwarichc0611012011-01-06 02:37:26 +00001312 if (TLI)
Chris Lattner1a8943a2011-01-15 07:29:01 +00001313 return OptimizeMemoryInst(I, SI->getOperand(1),
1314 SI->getOperand(0)->getType());
1315 return false;
1316 }
Nadav Rotema94d6e82012-07-24 10:51:42 +00001317
Chris Lattner1a8943a2011-01-15 07:29:01 +00001318 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
Cameron Zwarich865ae1a2011-01-06 02:44:52 +00001319 if (GEPI->hasAllZeroIndices()) {
1320 /// The GEP operand must be a pointer, so must its result -> BitCast
1321 Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(),
1322 GEPI->getName(), GEPI);
1323 GEPI->replaceAllUsesWith(NC);
1324 GEPI->eraseFromParent();
1325 ++NumGEPsElim;
Cameron Zwarich865ae1a2011-01-06 02:44:52 +00001326 OptimizeInst(NC);
Chris Lattner1a8943a2011-01-15 07:29:01 +00001327 return true;
Cameron Zwarich865ae1a2011-01-06 02:44:52 +00001328 }
Chris Lattner1a8943a2011-01-15 07:29:01 +00001329 return false;
Cameron Zwarichc0611012011-01-06 02:37:26 +00001330 }
Nadav Rotema94d6e82012-07-24 10:51:42 +00001331
Chris Lattner1a8943a2011-01-15 07:29:01 +00001332 if (CallInst *CI = dyn_cast<CallInst>(I))
1333 return OptimizeCallInst(CI);
Cameron Zwarichc0611012011-01-06 02:37:26 +00001334
Benjamin Kramer59957502012-05-05 12:49:22 +00001335 if (SelectInst *SI = dyn_cast<SelectInst>(I))
1336 return OptimizeSelectInst(SI);
1337
Chris Lattner1a8943a2011-01-15 07:29:01 +00001338 return false;
Cameron Zwarichc0611012011-01-06 02:37:26 +00001339}
1340
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001341// In this pass we look for GEP and cast instructions that are used
1342// across basic blocks and rewrite them to improve basic-block-at-a-time
1343// selection.
1344bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) {
Cameron Zwarich8c3527e2011-01-06 00:42:50 +00001345 SunkAddrs.clear();
Cameron Zwarich56e37932011-03-02 03:31:46 +00001346 bool MadeChange = false;
Eric Christopher692bf6b2008-09-24 05:32:41 +00001347
Chris Lattner75796092011-01-15 07:14:54 +00001348 CurInstIterator = BB.begin();
Hans Wennborg93ba1332012-09-19 07:48:16 +00001349 while (CurInstIterator != BB.end())
Chris Lattner94e8e0c2011-01-15 07:25:29 +00001350 MadeChange |= OptimizeInst(CurInstIterator++);
Eric Christopher692bf6b2008-09-24 05:32:41 +00001351
Benjamin Kramer4ccb49a2012-11-23 19:17:06 +00001352 MadeChange |= DupRetToEnableTailCallOpts(&BB);
1353
Chris Lattnerdbe0dec2007-03-31 04:06:36 +00001354 return MadeChange;
1355}
Devang Patelf56ea612011-08-18 00:50:51 +00001356
1357// llvm.dbg.value is far away from the value then iSel may not be able
Nadav Rotema94d6e82012-07-24 10:51:42 +00001358// handle it properly. iSel will drop llvm.dbg.value if it can not
Devang Patelf56ea612011-08-18 00:50:51 +00001359// find a node corresponding to the value.
1360bool CodeGenPrepare::PlaceDbgValues(Function &F) {
1361 bool MadeChange = false;
1362 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
1363 Instruction *PrevNonDbgInst = NULL;
1364 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE;) {
1365 Instruction *Insn = BI; ++BI;
1366 DbgValueInst *DVI = dyn_cast<DbgValueInst>(Insn);
1367 if (!DVI) {
1368 PrevNonDbgInst = Insn;
1369 continue;
1370 }
1371
1372 Instruction *VI = dyn_cast_or_null<Instruction>(DVI->getValue());
1373 if (VI && VI != PrevNonDbgInst && !VI->isTerminator()) {
1374 DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
1375 DVI->removeFromParent();
1376 if (isa<PHINode>(VI))
1377 DVI->insertBefore(VI->getParent()->getFirstInsertionPt());
1378 else
1379 DVI->insertAfter(VI);
1380 MadeChange = true;
1381 ++NumDbgValueMoved;
1382 }
1383 }
1384 }
1385 return MadeChange;
1386}