Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1 | //===- CodeGenPrepare.cpp - Prepare a function for code generation --------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass munges the code in the input function to better prepare it for |
Gordon Henriksen | a8a118b | 2008-05-08 17:46:35 +0000 | [diff] [blame] | 11 | // SelectionDAG-based code generation. This works around limitations in it's |
| 12 | // basic-block-at-a-time approach. It should eventually be removed. |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 13 | // |
| 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 Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 21 | #include "llvm/InlineAsm.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 22 | #include "llvm/Instructions.h" |
Dale Johannesen | 6aae1d6 | 2009-03-26 01:15:07 +0000 | [diff] [blame] | 23 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 24 | #include "llvm/Pass.h" |
Owen Anderson | d5f8684 | 2010-12-23 20:57:35 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/InstructionSimplify.h" |
Andreas Neustifter | ad80981 | 2009-09-16 09:26:52 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/ProfileInfo.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetData.h" |
| 28 | #include "llvm/Target/TargetLowering.h" |
Evan Cheng | a1fd5b3 | 2009-02-20 18:24:38 +0000 | [diff] [blame] | 29 | #include "llvm/Transforms/Utils/AddrModeMatcher.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 30 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 31 | #include "llvm/Transforms/Utils/Local.h" |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 32 | #include "llvm/Transforms/Utils/BuildLibCalls.h" |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/SmallSet.h" |
Jakob Stoklund Olesen | 7eb589d | 2010-09-30 20:51:52 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/Statistic.h" |
Dan Gohman | 03ce042 | 2009-02-13 17:45:12 +0000 | [diff] [blame] | 36 | #include "llvm/Assembly/Writer.h" |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CallSite.h" |
Evan Cheng | e1bcb44 | 2010-08-17 01:34:49 +0000 | [diff] [blame] | 38 | #include "llvm/Support/CommandLine.h" |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Debug.h" |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 40 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Chris Lattner | 088a1e8 | 2008-11-25 04:42:10 +0000 | [diff] [blame] | 41 | #include "llvm/Support/PatternMatch.h" |
Dan Gohman | 6c1980b | 2009-07-25 01:13:51 +0000 | [diff] [blame] | 42 | #include "llvm/Support/raw_ostream.h" |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 43 | #include "llvm/Support/IRBuilder.h" |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 44 | using namespace llvm; |
Chris Lattner | 088a1e8 | 2008-11-25 04:42:10 +0000 | [diff] [blame] | 45 | using namespace llvm::PatternMatch; |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 46 | |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 47 | STATISTIC(NumBlocksElim, "Number of blocks eliminated"); |
Cameron Zwarich | 073057f | 2011-01-05 17:47:38 +0000 | [diff] [blame] | 48 | STATISTIC(NumPHIsElim, "Number of trivial PHIs eliminated"); |
| 49 | STATISTIC(NumGEPsElim, "Number of GEPs converted to casts"); |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 50 | STATISTIC(NumCmpUses, "Number of uses of Cmp expressions replaced with uses of " |
| 51 | "sunken Cmps"); |
| 52 | STATISTIC(NumCastUses, "Number of uses of Cast expressions replaced with uses " |
| 53 | "of sunken Casts"); |
| 54 | STATISTIC(NumMemoryInsts, "Number of memory instructions whose address " |
| 55 | "computations were sunk"); |
| 56 | STATISTIC(NumExtsMoved, "Number of [s|z]ext instructions combined with loads"); |
| 57 | STATISTIC(NumExtUses, "Number of uses of [s|z]ext instructions optimized"); |
Jakob Stoklund Olesen | 7eb589d | 2010-09-30 20:51:52 +0000 | [diff] [blame] | 58 | |
Evan Cheng | e1bcb44 | 2010-08-17 01:34:49 +0000 | [diff] [blame] | 59 | static cl::opt<bool> |
| 60 | CriticalEdgeSplit("cgp-critical-edge-splitting", |
| 61 | cl::desc("Split critical edges during codegen prepare"), |
Jakob Stoklund Olesen | 7eb589d | 2010-09-30 20:51:52 +0000 | [diff] [blame] | 62 | cl::init(false), cl::Hidden); |
Evan Cheng | e1bcb44 | 2010-08-17 01:34:49 +0000 | [diff] [blame] | 63 | |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 64 | namespace { |
Chris Lattner | 3e8b663 | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 65 | class CodeGenPrepare : public FunctionPass { |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 66 | /// TLI - Keep a pointer of a TargetLowering to consult for determining |
| 67 | /// transformation profitability. |
| 68 | const TargetLowering *TLI; |
Evan Cheng | 04149f7 | 2009-12-17 09:39:49 +0000 | [diff] [blame] | 69 | ProfileInfo *PFI; |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 70 | |
| 71 | /// BackEdges - Keep a set of all the loop back edges. |
| 72 | /// |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 73 | SmallSet<std::pair<const BasicBlock*, const BasicBlock*>, 8> BackEdges; |
Cameron Zwarich | 8c3527e | 2011-01-06 00:42:50 +0000 | [diff] [blame] | 74 | |
| 75 | // Keeps track of non-local addresses that have been sunk into a block. This |
| 76 | // allows us to avoid inserting duplicate code for blocks with multiple |
| 77 | // load/stores of the same address. |
| 78 | DenseMap<Value*, Value*> SunkAddrs; |
| 79 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 80 | public: |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 81 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | c2bbfc1 | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 82 | explicit CodeGenPrepare(const TargetLowering *tli = 0) |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 83 | : FunctionPass(ID), TLI(tli) { |
| 84 | initializeCodeGenPreparePass(*PassRegistry::getPassRegistry()); |
| 85 | } |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 86 | bool runOnFunction(Function &F); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 87 | |
Andreas Neustifter | ad80981 | 2009-09-16 09:26:52 +0000 | [diff] [blame] | 88 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 89 | AU.addPreserved<ProfileInfo>(); |
| 90 | } |
| 91 | |
Dan Gohman | aa0e523 | 2010-02-05 19:24:11 +0000 | [diff] [blame] | 92 | virtual void releaseMemory() { |
| 93 | BackEdges.clear(); |
| 94 | } |
| 95 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 96 | private: |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 97 | bool EliminateMostlyEmptyBlocks(Function &F); |
| 98 | bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const; |
| 99 | void EliminateMostlyEmptyBlock(BasicBlock *BB); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 100 | bool OptimizeBlock(BasicBlock &BB); |
Cameron Zwarich | c061101 | 2011-01-06 02:37:26 +0000 | [diff] [blame^] | 101 | bool OptimizeInst(Instruction *I); |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 102 | bool OptimizeMemoryInst(Instruction *I, Value *Addr, const Type *AccessTy, |
| 103 | DenseMap<Value*,Value*> &SunkAddrs); |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 104 | bool OptimizeInlineAsmInst(Instruction *I, CallSite CS, |
| 105 | DenseMap<Value*,Value*> &SunkAddrs); |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 106 | bool OptimizeCallInst(CallInst *CI); |
Dan Gohman | b00f236 | 2009-10-16 20:59:35 +0000 | [diff] [blame] | 107 | bool MoveExtToFormExtLoad(Instruction *I); |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 108 | bool OptimizeExtUses(Instruction *I); |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 109 | void findLoopBackEdges(const Function &F); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 110 | }; |
| 111 | } |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 112 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 113 | char CodeGenPrepare::ID = 0; |
Owen Anderson | d13db2c | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 114 | INITIALIZE_PASS(CodeGenPrepare, "codegenprepare", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 115 | "Optimize for code generation", false, false) |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 116 | |
| 117 | FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) { |
| 118 | return new CodeGenPrepare(TLI); |
| 119 | } |
| 120 | |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 121 | /// findLoopBackEdges - Do a DFS walk to find loop back edges. |
| 122 | /// |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 123 | void CodeGenPrepare::findLoopBackEdges(const Function &F) { |
| 124 | SmallVector<std::pair<const BasicBlock*,const BasicBlock*>, 32> Edges; |
| 125 | FindFunctionBackedges(F, Edges); |
| 126 | |
| 127 | BackEdges.insert(Edges.begin(), Edges.end()); |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 130 | |
| 131 | bool CodeGenPrepare::runOnFunction(Function &F) { |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 132 | bool EverMadeChange = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 133 | |
Evan Cheng | 04149f7 | 2009-12-17 09:39:49 +0000 | [diff] [blame] | 134 | PFI = getAnalysisIfAvailable<ProfileInfo>(); |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 135 | // First pass, eliminate blocks that contain only PHI nodes and an |
| 136 | // unconditional branch. |
| 137 | EverMadeChange |= EliminateMostlyEmptyBlocks(F); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 138 | |
Cameron Zwarich | 95bb004 | 2011-01-04 04:43:31 +0000 | [diff] [blame] | 139 | // Now find loop back edges, but only if they are being used to decide which |
| 140 | // critical edges to split. |
| 141 | if (CriticalEdgeSplit) |
| 142 | findLoopBackEdges(F); |
Evan Cheng | 7e66c0d | 2009-01-05 21:17:27 +0000 | [diff] [blame] | 143 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 144 | bool MadeChange = true; |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 145 | while (MadeChange) { |
| 146 | MadeChange = false; |
| 147 | for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) |
| 148 | MadeChange |= OptimizeBlock(*BB); |
| 149 | EverMadeChange |= MadeChange; |
| 150 | } |
Cameron Zwarich | 8c3527e | 2011-01-06 00:42:50 +0000 | [diff] [blame] | 151 | |
| 152 | SunkAddrs.clear(); |
| 153 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 154 | return EverMadeChange; |
| 155 | } |
| 156 | |
Dale Johannesen | 2d69724 | 2009-03-27 01:13:37 +0000 | [diff] [blame] | 157 | /// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes, |
| 158 | /// debug info directives, and an unconditional branch. Passes before isel |
| 159 | /// (e.g. LSR/loopsimplify) often split edges in ways that are non-optimal for |
| 160 | /// isel. Start by eliminating these blocks so we can split them the way we |
| 161 | /// want them. |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 162 | bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) { |
| 163 | bool MadeChange = false; |
| 164 | // Note that this intentionally skips the entry block. |
| 165 | for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) { |
| 166 | BasicBlock *BB = I++; |
| 167 | |
| 168 | // If this block doesn't end with an uncond branch, ignore it. |
| 169 | BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); |
| 170 | if (!BI || !BI->isUnconditional()) |
| 171 | continue; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 172 | |
Dale Johannesen | 2d69724 | 2009-03-27 01:13:37 +0000 | [diff] [blame] | 173 | // If the instruction before the branch (skipping debug info) isn't a phi |
| 174 | // node, then other stuff is happening here. |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 175 | BasicBlock::iterator BBI = BI; |
| 176 | if (BBI != BB->begin()) { |
| 177 | --BBI; |
Dale Johannesen | 2d69724 | 2009-03-27 01:13:37 +0000 | [diff] [blame] | 178 | while (isa<DbgInfoIntrinsic>(BBI)) { |
| 179 | if (BBI == BB->begin()) |
| 180 | break; |
| 181 | --BBI; |
| 182 | } |
| 183 | if (!isa<DbgInfoIntrinsic>(BBI) && !isa<PHINode>(BBI)) |
| 184 | continue; |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 185 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 186 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 187 | // Do not break infinite loops. |
| 188 | BasicBlock *DestBB = BI->getSuccessor(0); |
| 189 | if (DestBB == BB) |
| 190 | continue; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 191 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 192 | if (!CanMergeBlocks(BB, DestBB)) |
| 193 | continue; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 194 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 195 | EliminateMostlyEmptyBlock(BB); |
| 196 | MadeChange = true; |
| 197 | } |
| 198 | return MadeChange; |
| 199 | } |
| 200 | |
| 201 | /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a |
| 202 | /// single uncond branch between them, and BB contains no other non-phi |
| 203 | /// instructions. |
| 204 | bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB, |
| 205 | const BasicBlock *DestBB) const { |
| 206 | // We only want to eliminate blocks whose phi nodes are used by phi nodes in |
| 207 | // the successor. If there are more complex condition (e.g. preheaders), |
| 208 | // don't mess around with them. |
| 209 | BasicBlock::const_iterator BBI = BB->begin(); |
| 210 | while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) { |
Gabor Greif | 60ad781 | 2010-03-25 23:06:16 +0000 | [diff] [blame] | 211 | for (Value::const_use_iterator UI = PN->use_begin(), E = PN->use_end(); |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 212 | UI != E; ++UI) { |
| 213 | const Instruction *User = cast<Instruction>(*UI); |
| 214 | if (User->getParent() != DestBB || !isa<PHINode>(User)) |
| 215 | return false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 216 | // If User is inside DestBB block and it is a PHINode then check |
| 217 | // incoming value. If incoming value is not from BB then this is |
Devang Patel | 75abc1e | 2007-04-25 00:37:04 +0000 | [diff] [blame] | 218 | // a complex condition (e.g. preheaders) we want to avoid here. |
| 219 | if (User->getParent() == DestBB) { |
| 220 | if (const PHINode *UPN = dyn_cast<PHINode>(User)) |
| 221 | for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) { |
| 222 | Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I)); |
| 223 | if (Insn && Insn->getParent() == BB && |
| 224 | Insn->getParent() != UPN->getIncomingBlock(I)) |
| 225 | return false; |
| 226 | } |
| 227 | } |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 228 | } |
| 229 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 230 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 231 | // If BB and DestBB contain any common predecessors, then the phi nodes in BB |
| 232 | // and DestBB may have conflicting incoming values for the block. If so, we |
| 233 | // can't merge the block. |
| 234 | const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin()); |
| 235 | if (!DestBBPN) return true; // no conflict. |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 236 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 237 | // Collect the preds of BB. |
Chris Lattner | f67f73a | 2007-11-06 22:07:40 +0000 | [diff] [blame] | 238 | SmallPtrSet<const BasicBlock*, 16> BBPreds; |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 239 | if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) { |
| 240 | // It is faster to get preds from a PHI than with pred_iterator. |
| 241 | for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i) |
| 242 | BBPreds.insert(BBPN->getIncomingBlock(i)); |
| 243 | } else { |
| 244 | BBPreds.insert(pred_begin(BB), pred_end(BB)); |
| 245 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 246 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 247 | // Walk the preds of DestBB. |
| 248 | for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) { |
| 249 | BasicBlock *Pred = DestBBPN->getIncomingBlock(i); |
| 250 | if (BBPreds.count(Pred)) { // Common predecessor? |
| 251 | BBI = DestBB->begin(); |
| 252 | while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) { |
| 253 | const Value *V1 = PN->getIncomingValueForBlock(Pred); |
| 254 | const Value *V2 = PN->getIncomingValueForBlock(BB); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 255 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 256 | // If V2 is a phi node in BB, look up what the mapped value will be. |
| 257 | if (const PHINode *V2PN = dyn_cast<PHINode>(V2)) |
| 258 | if (V2PN->getParent() == BB) |
| 259 | V2 = V2PN->getIncomingValueForBlock(Pred); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 260 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 261 | // If there is a conflict, bail out. |
| 262 | if (V1 != V2) return false; |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | |
| 271 | /// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and |
| 272 | /// an unconditional branch in it. |
| 273 | void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) { |
| 274 | BranchInst *BI = cast<BranchInst>(BB->getTerminator()); |
| 275 | BasicBlock *DestBB = BI->getSuccessor(0); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 276 | |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 277 | DEBUG(dbgs() << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 278 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 279 | // If the destination block has a single pred, then this is a trivial edge, |
| 280 | // just collapse it. |
Chris Lattner | 9918fb5 | 2008-11-27 19:29:14 +0000 | [diff] [blame] | 281 | if (BasicBlock *SinglePred = DestBB->getSinglePredecessor()) { |
Chris Lattner | f5102a0 | 2008-11-28 19:54:49 +0000 | [diff] [blame] | 282 | if (SinglePred != DestBB) { |
| 283 | // Remember if SinglePred was the entry block of the function. If so, we |
| 284 | // will need to move BB back to the entry position. |
| 285 | bool isEntry = SinglePred == &SinglePred->getParent()->getEntryBlock(); |
Andreas Neustifter | ad80981 | 2009-09-16 09:26:52 +0000 | [diff] [blame] | 286 | MergeBasicBlockIntoOnlyPred(DestBB, this); |
Chris Lattner | 9918fb5 | 2008-11-27 19:29:14 +0000 | [diff] [blame] | 287 | |
Chris Lattner | f5102a0 | 2008-11-28 19:54:49 +0000 | [diff] [blame] | 288 | if (isEntry && BB != &BB->getParent()->getEntryBlock()) |
| 289 | BB->moveBefore(&BB->getParent()->getEntryBlock()); |
| 290 | |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 291 | DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n"); |
Chris Lattner | f5102a0 | 2008-11-28 19:54:49 +0000 | [diff] [blame] | 292 | return; |
| 293 | } |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 294 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 295 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 296 | // Otherwise, we have multiple predecessors of BB. Update the PHIs in DestBB |
| 297 | // to handle the new incoming edges it is about to have. |
| 298 | PHINode *PN; |
| 299 | for (BasicBlock::iterator BBI = DestBB->begin(); |
| 300 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { |
| 301 | // Remove the incoming value for BB, and remember it. |
| 302 | Value *InVal = PN->removeIncomingValue(BB, false); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 303 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 304 | // Two options: either the InVal is a phi node defined in BB or it is some |
| 305 | // value that dominates BB. |
| 306 | PHINode *InValPhi = dyn_cast<PHINode>(InVal); |
| 307 | if (InValPhi && InValPhi->getParent() == BB) { |
| 308 | // Add all of the input values of the input PHI as inputs of this phi. |
| 309 | for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i) |
| 310 | PN->addIncoming(InValPhi->getIncomingValue(i), |
| 311 | InValPhi->getIncomingBlock(i)); |
| 312 | } else { |
| 313 | // Otherwise, add one instance of the dominating value for each edge that |
| 314 | // we will be adding. |
| 315 | if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) { |
| 316 | for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i) |
| 317 | PN->addIncoming(InVal, BBPN->getIncomingBlock(i)); |
| 318 | } else { |
| 319 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) |
| 320 | PN->addIncoming(InVal, *PI); |
| 321 | } |
| 322 | } |
| 323 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 324 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 325 | // The PHIs are now updated, change everything that refers to BB to use |
| 326 | // DestBB and remove BB. |
| 327 | BB->replaceAllUsesWith(DestBB); |
Evan Cheng | 04149f7 | 2009-12-17 09:39:49 +0000 | [diff] [blame] | 328 | if (PFI) { |
| 329 | PFI->replaceAllUses(BB, DestBB); |
| 330 | PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB)); |
Andreas Neustifter | ad80981 | 2009-09-16 09:26:52 +0000 | [diff] [blame] | 331 | } |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 332 | BB->eraseFromParent(); |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 333 | ++NumBlocksElim; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 334 | |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 335 | DEBUG(dbgs() << "AFTER:\n" << *DestBB << "\n\n\n"); |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Chris Lattner | 98d5c31 | 2010-02-13 05:35:08 +0000 | [diff] [blame] | 338 | /// FindReusablePredBB - Check all of the predecessors of the block DestPHI |
| 339 | /// lives in to see if there is a block that we can reuse as a critical edge |
| 340 | /// from TIBB. |
| 341 | static BasicBlock *FindReusablePredBB(PHINode *DestPHI, BasicBlock *TIBB) { |
| 342 | BasicBlock *Dest = DestPHI->getParent(); |
| 343 | |
| 344 | /// TIPHIValues - This array is lazily computed to determine the values of |
| 345 | /// PHIs in Dest that TI would provide. |
| 346 | SmallVector<Value*, 32> TIPHIValues; |
| 347 | |
| 348 | /// TIBBEntryNo - This is a cache to speed up pred queries for TIBB. |
| 349 | unsigned TIBBEntryNo = 0; |
| 350 | |
| 351 | // Check to see if Dest has any blocks that can be used as a split edge for |
| 352 | // this terminator. |
| 353 | for (unsigned pi = 0, e = DestPHI->getNumIncomingValues(); pi != e; ++pi) { |
| 354 | BasicBlock *Pred = DestPHI->getIncomingBlock(pi); |
| 355 | // To be usable, the pred has to end with an uncond branch to the dest. |
| 356 | BranchInst *PredBr = dyn_cast<BranchInst>(Pred->getTerminator()); |
| 357 | if (!PredBr || !PredBr->isUnconditional()) |
| 358 | continue; |
| 359 | // Must be empty other than the branch and debug info. |
| 360 | BasicBlock::iterator I = Pred->begin(); |
| 361 | while (isa<DbgInfoIntrinsic>(I)) |
| 362 | I++; |
| 363 | if (&*I != PredBr) |
| 364 | continue; |
| 365 | // Cannot be the entry block; its label does not get emitted. |
| 366 | if (Pred == &Dest->getParent()->getEntryBlock()) |
| 367 | continue; |
| 368 | |
| 369 | // Finally, since we know that Dest has phi nodes in it, we have to make |
| 370 | // sure that jumping to Pred will have the same effect as going to Dest in |
| 371 | // terms of PHI values. |
| 372 | PHINode *PN; |
| 373 | unsigned PHINo = 0; |
| 374 | unsigned PredEntryNo = pi; |
| 375 | |
| 376 | bool FoundMatch = true; |
| 377 | for (BasicBlock::iterator I = Dest->begin(); |
| 378 | (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo) { |
| 379 | if (PHINo == TIPHIValues.size()) { |
| 380 | if (PN->getIncomingBlock(TIBBEntryNo) != TIBB) |
| 381 | TIBBEntryNo = PN->getBasicBlockIndex(TIBB); |
| 382 | TIPHIValues.push_back(PN->getIncomingValue(TIBBEntryNo)); |
| 383 | } |
| 384 | |
| 385 | // If the PHI entry doesn't work, we can't use this pred. |
| 386 | if (PN->getIncomingBlock(PredEntryNo) != Pred) |
| 387 | PredEntryNo = PN->getBasicBlockIndex(Pred); |
| 388 | |
| 389 | if (TIPHIValues[PHINo] != PN->getIncomingValue(PredEntryNo)) { |
| 390 | FoundMatch = false; |
| 391 | break; |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // If we found a workable predecessor, change TI to branch to Succ. |
| 396 | if (FoundMatch) |
| 397 | return Pred; |
| 398 | } |
| 399 | return 0; |
| 400 | } |
| 401 | |
Chris Lattner | d9c3a0d | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 402 | |
Chris Lattner | ebe8075 | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 403 | /// SplitEdgeNicely - Split the critical edge from TI to its specified |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 404 | /// successor if it will improve codegen. We only do this if the successor has |
| 405 | /// phi nodes (otherwise critical edges are ok). If there is already another |
| 406 | /// predecessor of the succ that is empty (and thus has no phi nodes), use it |
| 407 | /// instead of introducing a new block. |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 408 | static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum, |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 409 | SmallSet<std::pair<const BasicBlock*, |
| 410 | const BasicBlock*>, 8> &BackEdges, |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 411 | Pass *P) { |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 412 | BasicBlock *TIBB = TI->getParent(); |
| 413 | BasicBlock *Dest = TI->getSuccessor(SuccNum); |
| 414 | assert(isa<PHINode>(Dest->begin()) && |
| 415 | "This should only be called if Dest has a PHI!"); |
Chris Lattner | 3f65b5e | 2010-02-13 04:04:42 +0000 | [diff] [blame] | 416 | PHINode *DestPHI = cast<PHINode>(Dest->begin()); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 417 | |
Evan Cheng | fc0b80d | 2009-03-13 22:59:14 +0000 | [diff] [blame] | 418 | // Do not split edges to EH landing pads. |
Chris Lattner | 3f65b5e | 2010-02-13 04:04:42 +0000 | [diff] [blame] | 419 | if (InvokeInst *Invoke = dyn_cast<InvokeInst>(TI)) |
Evan Cheng | fc0b80d | 2009-03-13 22:59:14 +0000 | [diff] [blame] | 420 | if (Invoke->getSuccessor(1) == Dest) |
| 421 | return; |
Evan Cheng | fc0b80d | 2009-03-13 22:59:14 +0000 | [diff] [blame] | 422 | |
Chris Lattner | ebe8075 | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 423 | // As a hack, never split backedges of loops. Even though the copy for any |
| 424 | // PHIs inserted on the backedge would be dead for exits from the loop, we |
| 425 | // assume that the cost of *splitting* the backedge would be too high. |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 426 | if (BackEdges.count(std::make_pair(TIBB, Dest))) |
Chris Lattner | ebe8075 | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 427 | return; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 428 | |
Chris Lattner | c09687b | 2010-02-13 19:07:06 +0000 | [diff] [blame] | 429 | if (BasicBlock *ReuseBB = FindReusablePredBB(DestPHI, TIBB)) { |
| 430 | ProfileInfo *PFI = P->getAnalysisIfAvailable<ProfileInfo>(); |
| 431 | if (PFI) |
| 432 | PFI->splitEdge(TIBB, Dest, ReuseBB); |
| 433 | Dest->removePredecessor(TIBB); |
| 434 | TI->setSuccessor(SuccNum, ReuseBB); |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 435 | return; |
| 436 | } |
| 437 | |
Chris Lattner | c09687b | 2010-02-13 19:07:06 +0000 | [diff] [blame] | 438 | SplitCriticalEdge(TI, SuccNum, P, true); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 441 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 442 | /// OptimizeNoopCopyExpression - If the specified cast instruction is a noop |
Dan Gohman | a119de8 | 2009-06-14 23:30:43 +0000 | [diff] [blame] | 443 | /// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC), |
| 444 | /// sink it into user blocks to reduce the number of virtual |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 445 | /// registers that must be created and coalesced. |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 446 | /// |
| 447 | /// Return true if any changes are made. |
Chris Lattner | 85fa13c | 2008-11-24 22:44:16 +0000 | [diff] [blame] | 448 | /// |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 449 | static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){ |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 450 | // If this is a noop copy, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 451 | EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType()); |
| 452 | EVT DstVT = TLI.getValueType(CI->getType()); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 453 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 454 | // This is an fp<->int conversion? |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 455 | if (SrcVT.isInteger() != DstVT.isInteger()) |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 456 | return false; |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 457 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 458 | // If this is an extension, it will be a zero or sign extension, which |
| 459 | // isn't a noop. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 460 | if (SrcVT.bitsLT(DstVT)) return false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 461 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 462 | // If these values will be promoted, find out what they will be promoted |
| 463 | // to. This helps us consider truncates on PPC as noop copies when they |
| 464 | // are. |
Chris Lattner | aafe626 | 2010-08-25 23:00:45 +0000 | [diff] [blame] | 465 | if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 466 | SrcVT = TLI.getTypeToTransformTo(CI->getContext(), SrcVT); |
Chris Lattner | aafe626 | 2010-08-25 23:00:45 +0000 | [diff] [blame] | 467 | if (TLI.getTypeAction(DstVT) == TargetLowering::Promote) |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 468 | DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 469 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 470 | // If, after promotion, these are the same types, this is a noop copy. |
| 471 | if (SrcVT != DstVT) |
| 472 | return false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 473 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 474 | BasicBlock *DefBB = CI->getParent(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 475 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 476 | /// InsertedCasts - Only insert a cast in each block once. |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 477 | DenseMap<BasicBlock*, CastInst*> InsertedCasts; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 478 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 479 | bool MadeChange = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 480 | for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 481 | UI != E; ) { |
| 482 | Use &TheUse = UI.getUse(); |
| 483 | Instruction *User = cast<Instruction>(*UI); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 484 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 485 | // Figure out which BB this cast is used in. For PHI's this is the |
| 486 | // appropriate predecessor block. |
| 487 | BasicBlock *UserBB = User->getParent(); |
| 488 | if (PHINode *PN = dyn_cast<PHINode>(User)) { |
Gabor Greif | a36791d | 2009-01-23 19:40:15 +0000 | [diff] [blame] | 489 | UserBB = PN->getIncomingBlock(UI); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 490 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 491 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 492 | // Preincrement use iterator so we don't invalidate it. |
| 493 | ++UI; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 494 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 495 | // If this user is in the same block as the cast, don't change the cast. |
| 496 | if (UserBB == DefBB) continue; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 497 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 498 | // If we have already inserted a cast into this block, use it. |
| 499 | CastInst *&InsertedCast = InsertedCasts[UserBB]; |
| 500 | |
| 501 | if (!InsertedCast) { |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 502 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 503 | |
| 504 | InsertedCast = |
| 505 | CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "", |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 506 | InsertPt); |
| 507 | MadeChange = true; |
| 508 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 509 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 510 | // Replace a use of the cast with a use of the new cast. |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 511 | TheUse = InsertedCast; |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 512 | ++NumCastUses; |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 513 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 514 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 515 | // If we removed all uses, nuke the cast. |
Duncan Sands | e003813 | 2008-01-20 16:51:46 +0000 | [diff] [blame] | 516 | if (CI->use_empty()) { |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 517 | CI->eraseFromParent(); |
Duncan Sands | e003813 | 2008-01-20 16:51:46 +0000 | [diff] [blame] | 518 | MadeChange = true; |
| 519 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 520 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 521 | return MadeChange; |
| 522 | } |
| 523 | |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 524 | /// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 525 | /// the number of virtual registers that must be created and coalesced. This is |
Chris Lattner | 684b22d | 2007-08-02 16:53:43 +0000 | [diff] [blame] | 526 | /// a clear win except on targets with multiple condition code registers |
| 527 | /// (PowerPC), where it might lose; some adjustment may be wanted there. |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 528 | /// |
| 529 | /// Return true if any changes are made. |
Chris Lattner | 85fa13c | 2008-11-24 22:44:16 +0000 | [diff] [blame] | 530 | static bool OptimizeCmpExpression(CmpInst *CI) { |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 531 | BasicBlock *DefBB = CI->getParent(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 532 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 533 | /// InsertedCmp - Only insert a cmp in each block once. |
| 534 | DenseMap<BasicBlock*, CmpInst*> InsertedCmps; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 535 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 536 | bool MadeChange = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 537 | for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 538 | UI != E; ) { |
| 539 | Use &TheUse = UI.getUse(); |
| 540 | Instruction *User = cast<Instruction>(*UI); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 541 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 542 | // Preincrement use iterator so we don't invalidate it. |
| 543 | ++UI; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 544 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 545 | // Don't bother for PHI nodes. |
| 546 | if (isa<PHINode>(User)) |
| 547 | continue; |
| 548 | |
| 549 | // Figure out which BB this cmp is used in. |
| 550 | BasicBlock *UserBB = User->getParent(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 551 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 552 | // If this user is in the same block as the cmp, don't change the cmp. |
| 553 | if (UserBB == DefBB) continue; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 554 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 555 | // If we have already inserted a cmp into this block, use it. |
| 556 | CmpInst *&InsertedCmp = InsertedCmps[UserBB]; |
| 557 | |
| 558 | if (!InsertedCmp) { |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 559 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 560 | |
| 561 | InsertedCmp = |
Dan Gohman | 1c8a23c | 2009-08-25 23:17:54 +0000 | [diff] [blame] | 562 | CmpInst::Create(CI->getOpcode(), |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 563 | CI->getPredicate(), CI->getOperand(0), |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 564 | CI->getOperand(1), "", InsertPt); |
| 565 | MadeChange = true; |
| 566 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 567 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 568 | // Replace a use of the cmp with a use of the new cmp. |
| 569 | TheUse = InsertedCmp; |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 570 | ++NumCmpUses; |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 571 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 572 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 573 | // If we removed all uses, nuke the cmp. |
| 574 | if (CI->use_empty()) |
| 575 | CI->eraseFromParent(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 576 | |
Dale Johannesen | ce0b237 | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 577 | return MadeChange; |
| 578 | } |
| 579 | |
Benjamin Kramer | 0b6cb50 | 2010-03-12 09:27:41 +0000 | [diff] [blame] | 580 | namespace { |
| 581 | class CodeGenPrepareFortifiedLibCalls : public SimplifyFortifiedLibCalls { |
| 582 | protected: |
| 583 | void replaceCall(Value *With) { |
| 584 | CI->replaceAllUsesWith(With); |
| 585 | CI->eraseFromParent(); |
| 586 | } |
| 587 | bool isFoldable(unsigned SizeCIOp, unsigned, bool) const { |
Gabor Greif | a6aac4c | 2010-07-16 09:38:02 +0000 | [diff] [blame] | 588 | if (ConstantInt *SizeCI = |
| 589 | dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp))) |
| 590 | return SizeCI->isAllOnesValue(); |
Benjamin Kramer | 0b6cb50 | 2010-03-12 09:27:41 +0000 | [diff] [blame] | 591 | return false; |
| 592 | } |
| 593 | }; |
| 594 | } // end anonymous namespace |
| 595 | |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 596 | bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) { |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 597 | // Lower all uses of llvm.objectsize.* |
| 598 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI); |
| 599 | if (II && II->getIntrinsicID() == Intrinsic::objectsize) { |
Gabor Greif | de9f545 | 2010-06-24 00:44:01 +0000 | [diff] [blame] | 600 | bool Min = (cast<ConstantInt>(II->getArgOperand(1))->getZExtValue() == 1); |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 601 | const Type *ReturnTy = CI->getType(); |
| 602 | Constant *RetVal = ConstantInt::get(ReturnTy, Min ? 0 : -1ULL); |
| 603 | CI->replaceAllUsesWith(RetVal); |
| 604 | CI->eraseFromParent(); |
| 605 | return true; |
| 606 | } |
| 607 | |
| 608 | // From here on out we're working with named functions. |
| 609 | if (CI->getCalledFunction() == 0) return false; |
| 610 | |
| 611 | // We'll need TargetData from here on out. |
| 612 | const TargetData *TD = TLI ? TLI->getTargetData() : 0; |
| 613 | if (!TD) return false; |
| 614 | |
Benjamin Kramer | 0b6cb50 | 2010-03-12 09:27:41 +0000 | [diff] [blame] | 615 | // Lower all default uses of _chk calls. This is very similar |
| 616 | // to what InstCombineCalls does, but here we are only lowering calls |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 617 | // that have the default "don't know" as the objectsize. Anything else |
| 618 | // should be left alone. |
Benjamin Kramer | 0b6cb50 | 2010-03-12 09:27:41 +0000 | [diff] [blame] | 619 | CodeGenPrepareFortifiedLibCalls Simplifier; |
| 620 | return Simplifier.fold(CI, TD); |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 621 | } |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 622 | //===----------------------------------------------------------------------===// |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 623 | // Memory Optimization |
| 624 | //===----------------------------------------------------------------------===// |
| 625 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 626 | /// IsNonLocalValue - Return true if the specified values are defined in a |
| 627 | /// different basic block than BB. |
| 628 | static bool IsNonLocalValue(Value *V, BasicBlock *BB) { |
| 629 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 630 | return I->getParent() != BB; |
| 631 | return false; |
| 632 | } |
| 633 | |
Bob Wilson | 4a8ee23 | 2009-12-03 21:47:07 +0000 | [diff] [blame] | 634 | /// OptimizeMemoryInst - Load and Store Instructions often have |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 635 | /// addressing modes that can do significant amounts of computation. As such, |
| 636 | /// instruction selection will try to get the load or store to do as much |
| 637 | /// computation as possible for the program. The problem is that isel can only |
| 638 | /// see within a single block. As such, we sink as much legal addressing mode |
| 639 | /// stuff into the block as possible. |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 640 | /// |
| 641 | /// This method is used to optimize both load/store and inline asms with memory |
| 642 | /// operands. |
Chris Lattner | 896617b | 2008-11-26 03:20:37 +0000 | [diff] [blame] | 643 | bool CodeGenPrepare::OptimizeMemoryInst(Instruction *MemoryInst, Value *Addr, |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 644 | const Type *AccessTy, |
| 645 | DenseMap<Value*,Value*> &SunkAddrs) { |
Owen Anderson | 35bf4d6 | 2010-11-27 08:15:55 +0000 | [diff] [blame] | 646 | Value *Repl = Addr; |
| 647 | |
Owen Anderson | d2f4174 | 2010-11-19 22:15:03 +0000 | [diff] [blame] | 648 | // Try to collapse single-value PHI nodes. This is necessary to undo |
| 649 | // unprofitable PRE transformations. |
Cameron Zwarich | 7cb4fa2 | 2011-01-03 06:33:01 +0000 | [diff] [blame] | 650 | SmallVector<Value*, 8> worklist; |
| 651 | SmallPtrSet<Value*, 16> Visited; |
Owen Anderson | 35bf4d6 | 2010-11-27 08:15:55 +0000 | [diff] [blame] | 652 | worklist.push_back(Addr); |
| 653 | |
| 654 | // Use a worklist to iteratively look through PHI nodes, and ensure that |
| 655 | // the addressing mode obtained from the non-PHI roots of the graph |
| 656 | // are equivalent. |
| 657 | Value *Consensus = 0; |
| 658 | unsigned NumUses = 0; |
| 659 | SmallVector<Instruction*, 16> AddrModeInsts; |
| 660 | ExtAddrMode AddrMode; |
| 661 | while (!worklist.empty()) { |
| 662 | Value *V = worklist.back(); |
| 663 | worklist.pop_back(); |
| 664 | |
| 665 | // Break use-def graph loops. |
| 666 | if (Visited.count(V)) { |
| 667 | Consensus = 0; |
| 668 | break; |
Owen Anderson | d2f4174 | 2010-11-19 22:15:03 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Owen Anderson | 35bf4d6 | 2010-11-27 08:15:55 +0000 | [diff] [blame] | 671 | Visited.insert(V); |
| 672 | |
| 673 | // For a PHI node, push all of its incoming values. |
| 674 | if (PHINode *P = dyn_cast<PHINode>(V)) { |
| 675 | for (unsigned i = 0, e = P->getNumIncomingValues(); i != e; ++i) |
| 676 | worklist.push_back(P->getIncomingValue(i)); |
| 677 | continue; |
| 678 | } |
| 679 | |
| 680 | // For non-PHIs, determine the addressing mode being computed. |
| 681 | SmallVector<Instruction*, 16> NewAddrModeInsts; |
| 682 | ExtAddrMode NewAddrMode = |
| 683 | AddressingModeMatcher::Match(V, AccessTy,MemoryInst, |
| 684 | NewAddrModeInsts, *TLI); |
| 685 | |
| 686 | // Ensure that the obtained addressing mode is equivalent to that obtained |
| 687 | // for all other roots of the PHI traversal. Also, when choosing one |
| 688 | // such root as representative, select the one with the most uses in order |
| 689 | // to keep the cost modeling heuristics in AddressingModeMatcher applicable. |
| 690 | if (!Consensus || NewAddrMode == AddrMode) { |
| 691 | if (V->getNumUses() > NumUses) { |
| 692 | Consensus = V; |
| 693 | NumUses = V->getNumUses(); |
| 694 | AddrMode = NewAddrMode; |
| 695 | AddrModeInsts = NewAddrModeInsts; |
| 696 | } |
| 697 | continue; |
| 698 | } |
| 699 | |
| 700 | Consensus = 0; |
| 701 | break; |
Owen Anderson | d2f4174 | 2010-11-19 22:15:03 +0000 | [diff] [blame] | 702 | } |
| 703 | |
Owen Anderson | 35bf4d6 | 2010-11-27 08:15:55 +0000 | [diff] [blame] | 704 | // If the addressing mode couldn't be determined, or if multiple different |
| 705 | // ones were determined, bail out now. |
| 706 | if (!Consensus) return false; |
| 707 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 708 | // Check to see if any of the instructions supersumed by this addr mode are |
| 709 | // non-local to I's BB. |
| 710 | bool AnyNonLocal = false; |
| 711 | for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) { |
Chris Lattner | 896617b | 2008-11-26 03:20:37 +0000 | [diff] [blame] | 712 | if (IsNonLocalValue(AddrModeInsts[i], MemoryInst->getParent())) { |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 713 | AnyNonLocal = true; |
| 714 | break; |
| 715 | } |
| 716 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 717 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 718 | // If all the instructions matched are already in this BB, don't do anything. |
| 719 | if (!AnyNonLocal) { |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 720 | DEBUG(dbgs() << "CGP: Found local addrmode: " << AddrMode << "\n"); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 721 | return false; |
| 722 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 723 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 724 | // Insert this computation right after this user. Since our caller is |
| 725 | // scanning from the top of the BB to the bottom, reuse of the expr are |
| 726 | // guaranteed to happen later. |
Chris Lattner | 896617b | 2008-11-26 03:20:37 +0000 | [diff] [blame] | 727 | BasicBlock::iterator InsertPt = MemoryInst; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 728 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 729 | // Now that we determined the addressing expression we want to use and know |
| 730 | // that we have to sink it into this block. Check to see if we have already |
| 731 | // done this for some other load/store instr in this block. If so, reuse the |
| 732 | // computation. |
| 733 | Value *&SunkAddr = SunkAddrs[Addr]; |
| 734 | if (SunkAddr) { |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 735 | DEBUG(dbgs() << "CGP: Reusing nonlocal addrmode: " << AddrMode << " for " |
Dan Gohman | 6c1980b | 2009-07-25 01:13:51 +0000 | [diff] [blame] | 736 | << *MemoryInst); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 737 | if (SunkAddr->getType() != Addr->getType()) |
| 738 | SunkAddr = new BitCastInst(SunkAddr, Addr->getType(), "tmp", InsertPt); |
| 739 | } else { |
David Greene | 68d67fd | 2010-01-05 01:27:11 +0000 | [diff] [blame] | 740 | DEBUG(dbgs() << "CGP: SINKING nonlocal addrmode: " << AddrMode << " for " |
Dan Gohman | 6c1980b | 2009-07-25 01:13:51 +0000 | [diff] [blame] | 741 | << *MemoryInst); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 742 | const Type *IntPtrTy = |
| 743 | TLI->getTargetData()->getIntPtrType(AccessTy->getContext()); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 744 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 745 | Value *Result = 0; |
Dan Gohman | d8d0b6a | 2010-01-19 22:45:06 +0000 | [diff] [blame] | 746 | |
| 747 | // Start with the base register. Do this first so that subsequent address |
| 748 | // matching finds it last, which will prevent it from trying to match it |
| 749 | // as the scaled value in case it happens to be a mul. That would be |
| 750 | // problematic if we've sunk a different mul for the scale, because then |
| 751 | // we'd end up sinking both muls. |
| 752 | if (AddrMode.BaseReg) { |
| 753 | Value *V = AddrMode.BaseReg; |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 754 | if (V->getType()->isPointerTy()) |
Dan Gohman | d8d0b6a | 2010-01-19 22:45:06 +0000 | [diff] [blame] | 755 | V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); |
| 756 | if (V->getType() != IntPtrTy) |
| 757 | V = CastInst::CreateIntegerCast(V, IntPtrTy, /*isSigned=*/true, |
| 758 | "sunkaddr", InsertPt); |
| 759 | Result = V; |
| 760 | } |
| 761 | |
| 762 | // Add the scale value. |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 763 | if (AddrMode.Scale) { |
| 764 | Value *V = AddrMode.ScaledReg; |
| 765 | if (V->getType() == IntPtrTy) { |
| 766 | // done. |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 767 | } else if (V->getType()->isPointerTy()) { |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 768 | V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); |
| 769 | } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() < |
| 770 | cast<IntegerType>(V->getType())->getBitWidth()) { |
| 771 | V = new TruncInst(V, IntPtrTy, "sunkaddr", InsertPt); |
| 772 | } else { |
| 773 | V = new SExtInst(V, IntPtrTy, "sunkaddr", InsertPt); |
| 774 | } |
| 775 | if (AddrMode.Scale != 1) |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 776 | V = BinaryOperator::CreateMul(V, ConstantInt::get(IntPtrTy, |
Owen Anderson | d672ecb | 2009-07-03 00:17:18 +0000 | [diff] [blame] | 777 | AddrMode.Scale), |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 778 | "sunkaddr", InsertPt); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 779 | if (Result) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 780 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 781 | else |
| 782 | Result = V; |
| 783 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 784 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 785 | // Add in the BaseGV if present. |
| 786 | if (AddrMode.BaseGV) { |
| 787 | Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr", |
| 788 | InsertPt); |
| 789 | if (Result) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 790 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 791 | else |
| 792 | Result = V; |
| 793 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 794 | |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 795 | // Add in the Base Offset if present. |
| 796 | if (AddrMode.BaseOffs) { |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 797 | Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 798 | if (Result) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 799 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 800 | else |
| 801 | Result = V; |
| 802 | } |
| 803 | |
| 804 | if (Result == 0) |
Owen Anderson | a7235ea | 2009-07-31 20:28:14 +0000 | [diff] [blame] | 805 | SunkAddr = Constant::getNullValue(Addr->getType()); |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 806 | else |
| 807 | SunkAddr = new IntToPtrInst(Result, Addr->getType(), "sunkaddr",InsertPt); |
| 808 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 809 | |
Owen Anderson | d2f4174 | 2010-11-19 22:15:03 +0000 | [diff] [blame] | 810 | MemoryInst->replaceUsesOfWith(Repl, SunkAddr); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 811 | |
Owen Anderson | d2f4174 | 2010-11-19 22:15:03 +0000 | [diff] [blame] | 812 | if (Repl->use_empty()) { |
| 813 | RecursivelyDeleteTriviallyDeadInstructions(Repl); |
Dale Johannesen | 536d31b | 2010-03-31 20:37:15 +0000 | [diff] [blame] | 814 | // This address is now available for reassignment, so erase the table entry; |
| 815 | // we don't want to match some completely different instruction. |
| 816 | SunkAddrs[Addr] = 0; |
| 817 | } |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 818 | ++NumMemoryInsts; |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 819 | return true; |
| 820 | } |
| 821 | |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 822 | /// OptimizeInlineAsmInst - If there are any memory operands, use |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 823 | /// OptimizeMemoryInst to sink their address computing into the block when |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 824 | /// possible / profitable. |
| 825 | bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS, |
| 826 | DenseMap<Value*,Value*> &SunkAddrs) { |
| 827 | bool MadeChange = false; |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 828 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 829 | TargetLowering::AsmOperandInfoVector TargetConstraints = TLI->ParseConstraints(CS); |
Dale Johannesen | 677c6ec | 2010-09-16 18:30:55 +0000 | [diff] [blame] | 830 | unsigned ArgNo = 0; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 831 | for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) { |
| 832 | TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i]; |
| 833 | |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 834 | // Compute the constraint code and ConstraintType to use. |
Dale Johannesen | 1784d16 | 2010-06-25 21:55:36 +0000 | [diff] [blame] | 835 | TLI->ComputeConstraintToUse(OpInfo, SDValue()); |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 836 | |
Eli Friedman | 9ec8095 | 2008-02-26 18:37:49 +0000 | [diff] [blame] | 837 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 838 | OpInfo.isIndirect) { |
Dale Johannesen | 677c6ec | 2010-09-16 18:30:55 +0000 | [diff] [blame] | 839 | Value *OpVal = const_cast<Value *>(CS.getArgument(ArgNo++)); |
Chris Lattner | 88a5c83 | 2008-11-25 07:09:13 +0000 | [diff] [blame] | 840 | MadeChange |= OptimizeMemoryInst(I, OpVal, OpVal->getType(), SunkAddrs); |
Dale Johannesen | 677c6ec | 2010-09-16 18:30:55 +0000 | [diff] [blame] | 841 | } else if (OpInfo.Type == InlineAsm::isInput) |
| 842 | ArgNo++; |
Evan Cheng | 9bf12b5 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | return MadeChange; |
| 846 | } |
| 847 | |
Dan Gohman | b00f236 | 2009-10-16 20:59:35 +0000 | [diff] [blame] | 848 | /// MoveExtToFormExtLoad - Move a zext or sext fed by a load into the same |
| 849 | /// basic block as the load, unless conditions are unfavorable. This allows |
| 850 | /// SelectionDAG to fold the extend into the load. |
| 851 | /// |
| 852 | bool CodeGenPrepare::MoveExtToFormExtLoad(Instruction *I) { |
| 853 | // Look for a load being extended. |
| 854 | LoadInst *LI = dyn_cast<LoadInst>(I->getOperand(0)); |
| 855 | if (!LI) return false; |
| 856 | |
| 857 | // If they're already in the same block, there's nothing to do. |
| 858 | if (LI->getParent() == I->getParent()) |
| 859 | return false; |
| 860 | |
| 861 | // If the load has other users and the truncate is not free, this probably |
| 862 | // isn't worthwhile. |
| 863 | if (!LI->hasOneUse() && |
Bob Wilson | ec57a1a | 2010-09-22 18:44:56 +0000 | [diff] [blame] | 864 | TLI && (TLI->isTypeLegal(TLI->getValueType(LI->getType())) || |
| 865 | !TLI->isTypeLegal(TLI->getValueType(I->getType()))) && |
Bob Wilson | 71dc4d9 | 2010-09-21 21:54:27 +0000 | [diff] [blame] | 866 | !TLI->isTruncateFree(I->getType(), LI->getType())) |
Dan Gohman | b00f236 | 2009-10-16 20:59:35 +0000 | [diff] [blame] | 867 | return false; |
| 868 | |
| 869 | // Check whether the target supports casts folded into loads. |
| 870 | unsigned LType; |
| 871 | if (isa<ZExtInst>(I)) |
| 872 | LType = ISD::ZEXTLOAD; |
| 873 | else { |
| 874 | assert(isa<SExtInst>(I) && "Unexpected ext type!"); |
| 875 | LType = ISD::SEXTLOAD; |
| 876 | } |
| 877 | if (TLI && !TLI->isLoadExtLegal(LType, TLI->getValueType(LI->getType()))) |
| 878 | return false; |
| 879 | |
| 880 | // Move the extend into the same block as the load, so that SelectionDAG |
| 881 | // can fold it. |
| 882 | I->removeFromParent(); |
| 883 | I->insertAfter(LI); |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 884 | ++NumExtsMoved; |
Dan Gohman | b00f236 | 2009-10-16 20:59:35 +0000 | [diff] [blame] | 885 | return true; |
| 886 | } |
| 887 | |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 888 | bool CodeGenPrepare::OptimizeExtUses(Instruction *I) { |
| 889 | BasicBlock *DefBB = I->getParent(); |
| 890 | |
Bob Wilson | 9120f5c | 2010-09-21 21:44:14 +0000 | [diff] [blame] | 891 | // If the result of a {s|z}ext and its source are both live out, rewrite all |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 892 | // other uses of the source with result of extension. |
| 893 | Value *Src = I->getOperand(0); |
| 894 | if (Src->hasOneUse()) |
| 895 | return false; |
| 896 | |
Evan Cheng | 696e5c0 | 2007-12-13 07:50:36 +0000 | [diff] [blame] | 897 | // Only do this xform if truncating is free. |
Gabor Greif | 53bdbd7 | 2008-02-26 19:13:21 +0000 | [diff] [blame] | 898 | if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType())) |
Evan Cheng | f9785f9 | 2007-12-13 03:32:53 +0000 | [diff] [blame] | 899 | return false; |
| 900 | |
Evan Cheng | 772de51 | 2007-12-12 00:51:06 +0000 | [diff] [blame] | 901 | // Only safe to perform the optimization if the source is also defined in |
Evan Cheng | 765dff2 | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 902 | // this block. |
| 903 | if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent()) |
Evan Cheng | 772de51 | 2007-12-12 00:51:06 +0000 | [diff] [blame] | 904 | return false; |
| 905 | |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 906 | bool DefIsLiveOut = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 907 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 908 | UI != E; ++UI) { |
| 909 | Instruction *User = cast<Instruction>(*UI); |
| 910 | |
| 911 | // Figure out which BB this ext is used in. |
| 912 | BasicBlock *UserBB = User->getParent(); |
| 913 | if (UserBB == DefBB) continue; |
| 914 | DefIsLiveOut = true; |
| 915 | break; |
| 916 | } |
| 917 | if (!DefIsLiveOut) |
| 918 | return false; |
| 919 | |
Evan Cheng | 765dff2 | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 920 | // Make sure non of the uses are PHI nodes. |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 921 | for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end(); |
Evan Cheng | 765dff2 | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 922 | UI != E; ++UI) { |
| 923 | Instruction *User = cast<Instruction>(*UI); |
Evan Cheng | f9785f9 | 2007-12-13 03:32:53 +0000 | [diff] [blame] | 924 | BasicBlock *UserBB = User->getParent(); |
| 925 | if (UserBB == DefBB) continue; |
| 926 | // Be conservative. We don't want this xform to end up introducing |
| 927 | // reloads just before load / store instructions. |
| 928 | if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User)) |
Evan Cheng | 765dff2 | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 929 | return false; |
| 930 | } |
| 931 | |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 932 | // InsertedTruncs - Only insert one trunc in each block once. |
| 933 | DenseMap<BasicBlock*, Instruction*> InsertedTruncs; |
| 934 | |
| 935 | bool MadeChange = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 936 | for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end(); |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 937 | UI != E; ++UI) { |
| 938 | Use &TheUse = UI.getUse(); |
| 939 | Instruction *User = cast<Instruction>(*UI); |
| 940 | |
| 941 | // Figure out which BB this ext is used in. |
| 942 | BasicBlock *UserBB = User->getParent(); |
| 943 | if (UserBB == DefBB) continue; |
| 944 | |
| 945 | // Both src and def are live in this block. Rewrite the use. |
| 946 | Instruction *&InsertedTrunc = InsertedTruncs[UserBB]; |
| 947 | |
| 948 | if (!InsertedTrunc) { |
Dan Gohman | 02dea8b | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 949 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 950 | |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 951 | InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt); |
| 952 | } |
| 953 | |
| 954 | // Replace a use of the {s|z}ext source with a use of the result. |
| 955 | TheUse = InsertedTrunc; |
Cameron Zwarich | 31ff133 | 2011-01-05 17:27:27 +0000 | [diff] [blame] | 956 | ++NumExtUses; |
Evan Cheng | bdcb726 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 957 | MadeChange = true; |
| 958 | } |
| 959 | |
| 960 | return MadeChange; |
| 961 | } |
| 962 | |
Cameron Zwarich | c061101 | 2011-01-06 02:37:26 +0000 | [diff] [blame^] | 963 | bool CodeGenPrepare::OptimizeInst(Instruction *I) { |
| 964 | bool MadeChange = false; |
| 965 | |
| 966 | if (PHINode *P = dyn_cast<PHINode>(I)) { |
| 967 | // It is possible for very late stage optimizations (such as SimplifyCFG) |
| 968 | // to introduce PHI nodes too late to be cleaned up. If we detect such a |
| 969 | // trivial PHI, go ahead and zap it here. |
| 970 | if (Value *V = SimplifyInstruction(P)) { |
| 971 | P->replaceAllUsesWith(V); |
| 972 | P->eraseFromParent(); |
| 973 | ++NumPHIsElim; |
| 974 | } |
| 975 | } else if (CastInst *CI = dyn_cast<CastInst>(I)) { |
| 976 | // If the source of the cast is a constant, then this should have |
| 977 | // already been constant folded. The only reason NOT to constant fold |
| 978 | // it is if something (e.g. LSR) was careful to place the constant |
| 979 | // evaluation in a block other than then one that uses it (e.g. to hoist |
| 980 | // the address of globals out of a loop). If this is the case, we don't |
| 981 | // want to forward-subst the cast. |
| 982 | if (isa<Constant>(CI->getOperand(0))) |
| 983 | return false; |
| 984 | |
| 985 | bool Change = false; |
| 986 | if (TLI) { |
| 987 | Change = OptimizeNoopCopyExpression(CI, *TLI); |
| 988 | MadeChange |= Change; |
| 989 | } |
| 990 | |
| 991 | if (!Change && (isa<ZExtInst>(I) || isa<SExtInst>(I))) { |
| 992 | MadeChange |= MoveExtToFormExtLoad(I); |
| 993 | MadeChange |= OptimizeExtUses(I); |
| 994 | } |
| 995 | } else if (CmpInst *CI = dyn_cast<CmpInst>(I)) { |
| 996 | MadeChange |= OptimizeCmpExpression(CI); |
| 997 | } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
| 998 | if (TLI) |
| 999 | MadeChange |= OptimizeMemoryInst(I, I->getOperand(0), LI->getType(), |
| 1000 | SunkAddrs); |
| 1001 | } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
| 1002 | if (TLI) |
| 1003 | MadeChange |= OptimizeMemoryInst(I, SI->getOperand(1), |
| 1004 | SI->getOperand(0)->getType(), |
| 1005 | SunkAddrs); |
| 1006 | } |
| 1007 | |
| 1008 | return MadeChange; |
| 1009 | } |
| 1010 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1011 | // In this pass we look for GEP and cast instructions that are used |
| 1012 | // across basic blocks and rewrite them to improve basic-block-at-a-time |
| 1013 | // selection. |
| 1014 | bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) { |
| 1015 | bool MadeChange = false; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1016 | |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 1017 | // Split all critical edges where the dest block has a PHI. |
Evan Cheng | e1bcb44 | 2010-08-17 01:34:49 +0000 | [diff] [blame] | 1018 | if (CriticalEdgeSplit) { |
| 1019 | TerminatorInst *BBTI = BB.getTerminator(); |
| 1020 | if (BBTI->getNumSuccessors() > 1 && !isa<IndirectBrInst>(BBTI)) { |
| 1021 | for (unsigned i = 0, e = BBTI->getNumSuccessors(); i != e; ++i) { |
| 1022 | BasicBlock *SuccBB = BBTI->getSuccessor(i); |
| 1023 | if (isa<PHINode>(SuccBB->begin()) && isCriticalEdge(BBTI, i, true)) |
| 1024 | SplitEdgeNicely(BBTI, i, BackEdges, this); |
| 1025 | } |
Evan Cheng | ab63152 | 2008-12-19 18:03:11 +0000 | [diff] [blame] | 1026 | } |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1027 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1028 | |
Cameron Zwarich | 8c3527e | 2011-01-06 00:42:50 +0000 | [diff] [blame] | 1029 | SunkAddrs.clear(); |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1030 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1031 | for (BasicBlock::iterator BBI = BB.begin(), E = BB.end(); BBI != E; ) { |
| 1032 | Instruction *I = BBI++; |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1033 | |
Cameron Zwarich | c061101 | 2011-01-06 02:37:26 +0000 | [diff] [blame^] | 1034 | if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { |
Chris Lattner | f25646b | 2007-04-14 00:17:39 +0000 | [diff] [blame] | 1035 | if (GEPI->hasAllZeroIndices()) { |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1036 | /// The GEP operand must be a pointer, so must its result -> BitCast |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1037 | Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(), |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1038 | GEPI->getName(), GEPI); |
| 1039 | GEPI->replaceAllUsesWith(NC); |
| 1040 | GEPI->eraseFromParent(); |
Cameron Zwarich | 073057f | 2011-01-05 17:47:38 +0000 | [diff] [blame] | 1041 | ++NumGEPsElim; |
Chris Lattner | dd77df3 | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1042 | MadeChange = true; |
| 1043 | BBI = NC; |
| 1044 | } |
| 1045 | } else if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 1046 | // If we found an inline asm expession, and if the target knows how to |
| 1047 | // lower it to normal LLVM code, do so now. |
Chris Lattner | 8850b36 | 2009-07-20 17:52:52 +0000 | [diff] [blame] | 1048 | if (TLI && isa<InlineAsm>(CI->getCalledValue())) { |
| 1049 | if (TLI->ExpandInlineAsm(CI)) { |
| 1050 | BBI = BB.begin(); |
| 1051 | // Avoid processing instructions out of order, which could cause |
| 1052 | // reuse before a value is defined. |
| 1053 | SunkAddrs.clear(); |
| 1054 | } else |
| 1055 | // Sink address computing for memory operands into the block. |
| 1056 | MadeChange |= OptimizeInlineAsmInst(I, &(*CI), SunkAddrs); |
Eric Christopher | 040056f | 2010-03-11 02:41:03 +0000 | [diff] [blame] | 1057 | } else { |
| 1058 | // Other CallInst optimizations that don't need to muck with the |
| 1059 | // enclosing iterator here. |
| 1060 | MadeChange |= OptimizeCallInst(CI); |
Chris Lattner | 8850b36 | 2009-07-20 17:52:52 +0000 | [diff] [blame] | 1061 | } |
Cameron Zwarich | c061101 | 2011-01-06 02:37:26 +0000 | [diff] [blame^] | 1062 | } else { |
| 1063 | MadeChange |= OptimizeInst(I); |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1064 | } |
| 1065 | } |
Eric Christopher | 692bf6b | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1066 | |
Chris Lattner | dbe0dec | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1067 | return MadeChange; |
| 1068 | } |