| Chris Lattner | f2836d1 | 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 | f3ebc3f | 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 | f2836d1 | 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 | 829046b | 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 | f2836d1 | 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 | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 21 | #include "llvm/InlineAsm.h" | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 22 | #include "llvm/Instructions.h" | 
|  | 23 | #include "llvm/Pass.h" | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetAsmInfo.h" | 
|  | 25 | #include "llvm/Target/TargetData.h" | 
|  | 26 | #include "llvm/Target/TargetLowering.h" | 
|  | 27 | #include "llvm/Target/TargetMachine.h" | 
|  | 28 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 29 | #include "llvm/Transforms/Utils/Local.h" | 
|  | 30 | #include "llvm/ADT/DenseMap.h" | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallSet.h" | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CallSite.h" | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Compiler.h" | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Debug.h" | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 35 | #include "llvm/Support/GetElementPtrTypeIterator.h" | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 36 | using namespace llvm; | 
|  | 37 |  | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 38 | namespace { | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 39 | class VISIBILITY_HIDDEN CodeGenPrepare : public FunctionPass { | 
|  | 40 | /// TLI - Keep a pointer of a TargetLowering to consult for determining | 
|  | 41 | /// transformation profitability. | 
|  | 42 | const TargetLowering *TLI; | 
|  | 43 | public: | 
| Nick Lewycky | e7da2d6 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 44 | static char ID; // Pass identification, replacement for typeid | 
| Dan Gohman | 34d442f | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 45 | explicit CodeGenPrepare(const TargetLowering *tli = 0) | 
| Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 46 | : FunctionPass(&ID), TLI(tli) {} | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 47 | bool runOnFunction(Function &F); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 48 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 49 | private: | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 50 | bool EliminateMostlyEmptyBlocks(Function &F); | 
|  | 51 | bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const; | 
|  | 52 | void EliminateMostlyEmptyBlock(BasicBlock *BB); | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 53 | bool OptimizeBlock(BasicBlock &BB); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 54 | bool OptimizeLoadStoreInst(Instruction *I, Value *Addr, | 
|  | 55 | const Type *AccessTy, | 
|  | 56 | DenseMap<Value*,Value*> &SunkAddrs); | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 57 | bool OptimizeInlineAsmInst(Instruction *I, CallSite CS, | 
|  | 58 | DenseMap<Value*,Value*> &SunkAddrs); | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 59 | bool OptimizeExtUses(Instruction *I); | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 60 | }; | 
|  | 61 | } | 
| Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 62 |  | 
| Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 63 | char CodeGenPrepare::ID = 0; | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 64 | static RegisterPass<CodeGenPrepare> X("codegenprepare", | 
|  | 65 | "Optimize for code generation"); | 
|  | 66 |  | 
|  | 67 | FunctionPass *llvm::createCodeGenPreparePass(const TargetLowering *TLI) { | 
|  | 68 | return new CodeGenPrepare(TLI); | 
|  | 69 | } | 
|  | 70 |  | 
|  | 71 |  | 
|  | 72 | bool CodeGenPrepare::runOnFunction(Function &F) { | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 73 | bool EverMadeChange = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 74 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 75 | // First pass, eliminate blocks that contain only PHI nodes and an | 
|  | 76 | // unconditional branch. | 
|  | 77 | EverMadeChange |= EliminateMostlyEmptyBlocks(F); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 78 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 79 | bool MadeChange = true; | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 80 | while (MadeChange) { | 
|  | 81 | MadeChange = false; | 
|  | 82 | for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) | 
|  | 83 | MadeChange |= OptimizeBlock(*BB); | 
|  | 84 | EverMadeChange |= MadeChange; | 
|  | 85 | } | 
|  | 86 | return EverMadeChange; | 
|  | 87 | } | 
|  | 88 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 89 | /// EliminateMostlyEmptyBlocks - eliminate blocks that contain only PHI nodes | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 90 | /// and an unconditional branch.  Passes before isel (e.g. LSR/loopsimplify) | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 91 | /// often split edges in ways that are non-optimal for isel.  Start by | 
|  | 92 | /// eliminating these blocks so we can split them the way we want them. | 
|  | 93 | bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) { | 
|  | 94 | bool MadeChange = false; | 
|  | 95 | // Note that this intentionally skips the entry block. | 
|  | 96 | for (Function::iterator I = ++F.begin(), E = F.end(); I != E; ) { | 
|  | 97 | BasicBlock *BB = I++; | 
|  | 98 |  | 
|  | 99 | // If this block doesn't end with an uncond branch, ignore it. | 
|  | 100 | BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()); | 
|  | 101 | if (!BI || !BI->isUnconditional()) | 
|  | 102 | continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 103 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 104 | // If the instruction before the branch isn't a phi node, then other stuff | 
|  | 105 | // is happening here. | 
|  | 106 | BasicBlock::iterator BBI = BI; | 
|  | 107 | if (BBI != BB->begin()) { | 
|  | 108 | --BBI; | 
|  | 109 | if (!isa<PHINode>(BBI)) continue; | 
|  | 110 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 111 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 112 | // Do not break infinite loops. | 
|  | 113 | BasicBlock *DestBB = BI->getSuccessor(0); | 
|  | 114 | if (DestBB == BB) | 
|  | 115 | continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 116 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 117 | if (!CanMergeBlocks(BB, DestBB)) | 
|  | 118 | continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 119 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 120 | EliminateMostlyEmptyBlock(BB); | 
|  | 121 | MadeChange = true; | 
|  | 122 | } | 
|  | 123 | return MadeChange; | 
|  | 124 | } | 
|  | 125 |  | 
|  | 126 | /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a | 
|  | 127 | /// single uncond branch between them, and BB contains no other non-phi | 
|  | 128 | /// instructions. | 
|  | 129 | bool CodeGenPrepare::CanMergeBlocks(const BasicBlock *BB, | 
|  | 130 | const BasicBlock *DestBB) const { | 
|  | 131 | // We only want to eliminate blocks whose phi nodes are used by phi nodes in | 
|  | 132 | // the successor.  If there are more complex condition (e.g. preheaders), | 
|  | 133 | // don't mess around with them. | 
|  | 134 | BasicBlock::const_iterator BBI = BB->begin(); | 
|  | 135 | while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) { | 
|  | 136 | for (Value::use_const_iterator UI = PN->use_begin(), E = PN->use_end(); | 
|  | 137 | UI != E; ++UI) { | 
|  | 138 | const Instruction *User = cast<Instruction>(*UI); | 
|  | 139 | if (User->getParent() != DestBB || !isa<PHINode>(User)) | 
|  | 140 | return false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 141 | // If User is inside DestBB block and it is a PHINode then check | 
|  | 142 | // incoming value. If incoming value is not from BB then this is | 
| Devang Patel | d320852 | 2007-04-25 00:37:04 +0000 | [diff] [blame] | 143 | // a complex condition (e.g. preheaders) we want to avoid here. | 
|  | 144 | if (User->getParent() == DestBB) { | 
|  | 145 | if (const PHINode *UPN = dyn_cast<PHINode>(User)) | 
|  | 146 | for (unsigned I = 0, E = UPN->getNumIncomingValues(); I != E; ++I) { | 
|  | 147 | Instruction *Insn = dyn_cast<Instruction>(UPN->getIncomingValue(I)); | 
|  | 148 | if (Insn && Insn->getParent() == BB && | 
|  | 149 | Insn->getParent() != UPN->getIncomingBlock(I)) | 
|  | 150 | return false; | 
|  | 151 | } | 
|  | 152 | } | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 153 | } | 
|  | 154 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 155 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 156 | // If BB and DestBB contain any common predecessors, then the phi nodes in BB | 
|  | 157 | // and DestBB may have conflicting incoming values for the block.  If so, we | 
|  | 158 | // can't merge the block. | 
|  | 159 | const PHINode *DestBBPN = dyn_cast<PHINode>(DestBB->begin()); | 
|  | 160 | if (!DestBBPN) return true;  // no conflict. | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 161 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 162 | // Collect the preds of BB. | 
| Chris Lattner | 8201a9b | 2007-11-06 22:07:40 +0000 | [diff] [blame] | 163 | SmallPtrSet<const BasicBlock*, 16> BBPreds; | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 164 | if (const PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) { | 
|  | 165 | // It is faster to get preds from a PHI than with pred_iterator. | 
|  | 166 | for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i) | 
|  | 167 | BBPreds.insert(BBPN->getIncomingBlock(i)); | 
|  | 168 | } else { | 
|  | 169 | BBPreds.insert(pred_begin(BB), pred_end(BB)); | 
|  | 170 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 171 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 172 | // Walk the preds of DestBB. | 
|  | 173 | for (unsigned i = 0, e = DestBBPN->getNumIncomingValues(); i != e; ++i) { | 
|  | 174 | BasicBlock *Pred = DestBBPN->getIncomingBlock(i); | 
|  | 175 | if (BBPreds.count(Pred)) {   // Common predecessor? | 
|  | 176 | BBI = DestBB->begin(); | 
|  | 177 | while (const PHINode *PN = dyn_cast<PHINode>(BBI++)) { | 
|  | 178 | const Value *V1 = PN->getIncomingValueForBlock(Pred); | 
|  | 179 | const Value *V2 = PN->getIncomingValueForBlock(BB); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 180 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 181 | // If V2 is a phi node in BB, look up what the mapped value will be. | 
|  | 182 | if (const PHINode *V2PN = dyn_cast<PHINode>(V2)) | 
|  | 183 | if (V2PN->getParent() == BB) | 
|  | 184 | V2 = V2PN->getIncomingValueForBlock(Pred); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 185 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 186 | // If there is a conflict, bail out. | 
|  | 187 | if (V1 != V2) return false; | 
|  | 188 | } | 
|  | 189 | } | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | return true; | 
|  | 193 | } | 
|  | 194 |  | 
|  | 195 |  | 
|  | 196 | /// EliminateMostlyEmptyBlock - Eliminate a basic block that have only phi's and | 
|  | 197 | /// an unconditional branch in it. | 
|  | 198 | void CodeGenPrepare::EliminateMostlyEmptyBlock(BasicBlock *BB) { | 
|  | 199 | BranchInst *BI = cast<BranchInst>(BB->getTerminator()); | 
|  | 200 | BasicBlock *DestBB = BI->getSuccessor(0); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 201 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 202 | DOUT << "MERGING MOSTLY EMPTY BLOCKS - BEFORE:\n" << *BB << *DestBB; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 203 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 204 | // If the destination block has a single pred, then this is a trivial edge, | 
|  | 205 | // just collapse it. | 
|  | 206 | if (DestBB->getSinglePredecessor()) { | 
|  | 207 | // If DestBB has single-entry PHI nodes, fold them. | 
|  | 208 | while (PHINode *PN = dyn_cast<PHINode>(DestBB->begin())) { | 
|  | 209 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); | 
|  | 210 | PN->eraseFromParent(); | 
|  | 211 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 212 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 213 | // Splice all the PHI nodes from BB over to DestBB. | 
|  | 214 | DestBB->getInstList().splice(DestBB->begin(), BB->getInstList(), | 
|  | 215 | BB->begin(), BI); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 216 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 217 | // Anything that branched to BB now branches to DestBB. | 
|  | 218 | BB->replaceAllUsesWith(DestBB); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 219 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 220 | // Nuke BB. | 
|  | 221 | BB->eraseFromParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 222 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 223 | DOUT << "AFTER:\n" << *DestBB << "\n\n\n"; | 
|  | 224 | return; | 
|  | 225 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 226 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 227 | // Otherwise, we have multiple predecessors of BB.  Update the PHIs in DestBB | 
|  | 228 | // to handle the new incoming edges it is about to have. | 
|  | 229 | PHINode *PN; | 
|  | 230 | for (BasicBlock::iterator BBI = DestBB->begin(); | 
|  | 231 | (PN = dyn_cast<PHINode>(BBI)); ++BBI) { | 
|  | 232 | // Remove the incoming value for BB, and remember it. | 
|  | 233 | Value *InVal = PN->removeIncomingValue(BB, false); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 234 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 235 | // Two options: either the InVal is a phi node defined in BB or it is some | 
|  | 236 | // value that dominates BB. | 
|  | 237 | PHINode *InValPhi = dyn_cast<PHINode>(InVal); | 
|  | 238 | if (InValPhi && InValPhi->getParent() == BB) { | 
|  | 239 | // Add all of the input values of the input PHI as inputs of this phi. | 
|  | 240 | for (unsigned i = 0, e = InValPhi->getNumIncomingValues(); i != e; ++i) | 
|  | 241 | PN->addIncoming(InValPhi->getIncomingValue(i), | 
|  | 242 | InValPhi->getIncomingBlock(i)); | 
|  | 243 | } else { | 
|  | 244 | // Otherwise, add one instance of the dominating value for each edge that | 
|  | 245 | // we will be adding. | 
|  | 246 | if (PHINode *BBPN = dyn_cast<PHINode>(BB->begin())) { | 
|  | 247 | for (unsigned i = 0, e = BBPN->getNumIncomingValues(); i != e; ++i) | 
|  | 248 | PN->addIncoming(InVal, BBPN->getIncomingBlock(i)); | 
|  | 249 | } else { | 
|  | 250 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) | 
|  | 251 | PN->addIncoming(InVal, *PI); | 
|  | 252 | } | 
|  | 253 | } | 
|  | 254 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 255 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 256 | // The PHIs are now updated, change everything that refers to BB to use | 
|  | 257 | // DestBB and remove BB. | 
|  | 258 | BB->replaceAllUsesWith(DestBB); | 
|  | 259 | BB->eraseFromParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 260 |  | 
| Chris Lattner | c374856 | 2007-04-02 01:35:34 +0000 | [diff] [blame] | 261 | DOUT << "AFTER:\n" << *DestBB << "\n\n\n"; | 
|  | 262 | } | 
|  | 263 |  | 
|  | 264 |  | 
| Chris Lattner | 62a806d | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 265 | /// SplitEdgeNicely - Split the critical edge from TI to its specified | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 266 | /// successor if it will improve codegen.  We only do this if the successor has | 
|  | 267 | /// phi nodes (otherwise critical edges are ok).  If there is already another | 
|  | 268 | /// predecessor of the succ that is empty (and thus has no phi nodes), use it | 
|  | 269 | /// instead of introducing a new block. | 
|  | 270 | static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum, Pass *P) { | 
|  | 271 | BasicBlock *TIBB = TI->getParent(); | 
|  | 272 | BasicBlock *Dest = TI->getSuccessor(SuccNum); | 
|  | 273 | assert(isa<PHINode>(Dest->begin()) && | 
|  | 274 | "This should only be called if Dest has a PHI!"); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 275 |  | 
| Chris Lattner | 62a806d | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 276 | // As a hack, never split backedges of loops.  Even though the copy for any | 
|  | 277 | // PHIs inserted on the backedge would be dead for exits from the loop, we | 
|  | 278 | // assume that the cost of *splitting* the backedge would be too high. | 
| Chris Lattner | ef1bbfc | 2007-12-25 19:06:45 +0000 | [diff] [blame] | 279 | if (Dest == TIBB) | 
| Chris Lattner | 62a806d | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 280 | return; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 281 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 282 | /// TIPHIValues - This array is lazily computed to determine the values of | 
|  | 283 | /// PHIs in Dest that TI would provide. | 
| Chris Lattner | 62a806d | 2007-12-24 19:32:55 +0000 | [diff] [blame] | 284 | SmallVector<Value*, 32> TIPHIValues; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 285 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 286 | // Check to see if Dest has any blocks that can be used as a split edge for | 
|  | 287 | // this terminator. | 
|  | 288 | for (pred_iterator PI = pred_begin(Dest), E = pred_end(Dest); PI != E; ++PI) { | 
|  | 289 | BasicBlock *Pred = *PI; | 
|  | 290 | // To be usable, the pred has to end with an uncond branch to the dest. | 
|  | 291 | BranchInst *PredBr = dyn_cast<BranchInst>(Pred->getTerminator()); | 
|  | 292 | if (!PredBr || !PredBr->isUnconditional() || | 
|  | 293 | // Must be empty other than the branch. | 
| Dale Johannesen | 86e1dcf | 2007-05-08 01:01:04 +0000 | [diff] [blame] | 294 | &Pred->front() != PredBr || | 
|  | 295 | // Cannot be the entry block; its label does not get emitted. | 
|  | 296 | Pred == &(Dest->getParent()->getEntryBlock())) | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 297 | continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 298 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 299 | // Finally, since we know that Dest has phi nodes in it, we have to make | 
|  | 300 | // sure that jumping to Pred will have the same affect as going to Dest in | 
|  | 301 | // terms of PHI values. | 
|  | 302 | PHINode *PN; | 
|  | 303 | unsigned PHINo = 0; | 
|  | 304 | bool FoundMatch = true; | 
|  | 305 | for (BasicBlock::iterator I = Dest->begin(); | 
|  | 306 | (PN = dyn_cast<PHINode>(I)); ++I, ++PHINo) { | 
|  | 307 | if (PHINo == TIPHIValues.size()) | 
|  | 308 | TIPHIValues.push_back(PN->getIncomingValueForBlock(TIBB)); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 309 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 310 | // If the PHI entry doesn't work, we can't use this pred. | 
|  | 311 | if (TIPHIValues[PHINo] != PN->getIncomingValueForBlock(Pred)) { | 
|  | 312 | FoundMatch = false; | 
|  | 313 | break; | 
|  | 314 | } | 
|  | 315 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 316 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 317 | // If we found a workable predecessor, change TI to branch to Succ. | 
|  | 318 | if (FoundMatch) { | 
|  | 319 | Dest->removePredecessor(TIBB); | 
|  | 320 | TI->setSuccessor(SuccNum, Pred); | 
|  | 321 | return; | 
|  | 322 | } | 
|  | 323 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 324 |  | 
|  | 325 | SplitCriticalEdge(TI, SuccNum, P, true); | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 326 | } | 
|  | 327 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 328 | /// OptimizeNoopCopyExpression - If the specified cast instruction is a noop | 
|  | 329 | /// copy (e.g. it's casting from one pointer type to another, int->uint, or | 
|  | 330 | /// int->sbyte on PPC), sink it into user blocks to reduce the number of virtual | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 331 | /// registers that must be created and coalesced. | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 332 | /// | 
|  | 333 | /// Return true if any changes are made. | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 334 | static bool OptimizeNoopCopyExpression(CastInst *CI, const TargetLowering &TLI){ | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 335 | // If this is a noop copy, | 
| Duncan Sands | 13237ac | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 336 | MVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType()); | 
|  | 337 | MVT DstVT = TLI.getValueType(CI->getType()); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 338 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 339 | // This is an fp<->int conversion? | 
| Duncan Sands | 13237ac | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 340 | if (SrcVT.isInteger() != DstVT.isInteger()) | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 341 | return false; | 
| Duncan Sands | 11dd424 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 342 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 343 | // If this is an extension, it will be a zero or sign extension, which | 
|  | 344 | // isn't a noop. | 
| Duncan Sands | 11dd424 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 345 | if (SrcVT.bitsLT(DstVT)) return false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 346 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 347 | // If these values will be promoted, find out what they will be promoted | 
|  | 348 | // to.  This helps us consider truncates on PPC as noop copies when they | 
|  | 349 | // are. | 
|  | 350 | if (TLI.getTypeAction(SrcVT) == TargetLowering::Promote) | 
|  | 351 | SrcVT = TLI.getTypeToTransformTo(SrcVT); | 
|  | 352 | if (TLI.getTypeAction(DstVT) == TargetLowering::Promote) | 
|  | 353 | DstVT = TLI.getTypeToTransformTo(DstVT); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 354 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 355 | // If, after promotion, these are the same types, this is a noop copy. | 
|  | 356 | if (SrcVT != DstVT) | 
|  | 357 | return false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 358 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 359 | BasicBlock *DefBB = CI->getParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 360 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 361 | /// InsertedCasts - Only insert a cast in each block once. | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 362 | DenseMap<BasicBlock*, CastInst*> InsertedCasts; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 363 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 364 | bool MadeChange = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 365 | for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 366 | UI != E; ) { | 
|  | 367 | Use &TheUse = UI.getUse(); | 
|  | 368 | Instruction *User = cast<Instruction>(*UI); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 369 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 370 | // Figure out which BB this cast is used in.  For PHI's this is the | 
|  | 371 | // appropriate predecessor block. | 
|  | 372 | BasicBlock *UserBB = User->getParent(); | 
|  | 373 | if (PHINode *PN = dyn_cast<PHINode>(User)) { | 
|  | 374 | unsigned OpVal = UI.getOperandNo()/2; | 
|  | 375 | UserBB = PN->getIncomingBlock(OpVal); | 
|  | 376 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 377 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 378 | // Preincrement use iterator so we don't invalidate it. | 
|  | 379 | ++UI; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 380 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 381 | // If this user is in the same block as the cast, don't change the cast. | 
|  | 382 | if (UserBB == DefBB) continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 383 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 384 | // If we have already inserted a cast into this block, use it. | 
|  | 385 | CastInst *&InsertedCast = InsertedCasts[UserBB]; | 
|  | 386 |  | 
|  | 387 | if (!InsertedCast) { | 
| Dan Gohman | f96e137 | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 388 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 389 |  | 
|  | 390 | InsertedCast = | 
|  | 391 | CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "", | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 392 | InsertPt); | 
|  | 393 | MadeChange = true; | 
|  | 394 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 395 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 396 | // Replace a use of the cast with a use of the new cast. | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 397 | TheUse = InsertedCast; | 
|  | 398 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 399 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 400 | // If we removed all uses, nuke the cast. | 
| Duncan Sands | afa84da4 | 2008-01-20 16:51:46 +0000 | [diff] [blame] | 401 | if (CI->use_empty()) { | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 402 | CI->eraseFromParent(); | 
| Duncan Sands | afa84da4 | 2008-01-20 16:51:46 +0000 | [diff] [blame] | 403 | MadeChange = true; | 
|  | 404 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 405 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 406 | return MadeChange; | 
|  | 407 | } | 
|  | 408 |  | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 409 | /// OptimizeCmpExpression - sink the given CmpInst into user blocks to reduce | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 410 | /// the number of virtual registers that must be created and coalesced.  This is | 
| Chris Lattner | 2740694 | 2007-08-02 16:53:43 +0000 | [diff] [blame] | 411 | /// a clear win except on targets with multiple condition code registers | 
|  | 412 | ///  (PowerPC), where it might lose; some adjustment may be wanted there. | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 413 | /// | 
|  | 414 | /// Return true if any changes are made. | 
|  | 415 | static bool OptimizeCmpExpression(CmpInst *CI){ | 
|  | 416 |  | 
|  | 417 | BasicBlock *DefBB = CI->getParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 418 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 419 | /// InsertedCmp - Only insert a cmp in each block once. | 
|  | 420 | DenseMap<BasicBlock*, CmpInst*> InsertedCmps; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 421 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 422 | bool MadeChange = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 423 | for (Value::use_iterator UI = CI->use_begin(), E = CI->use_end(); | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 424 | UI != E; ) { | 
|  | 425 | Use &TheUse = UI.getUse(); | 
|  | 426 | Instruction *User = cast<Instruction>(*UI); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 427 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 428 | // Preincrement use iterator so we don't invalidate it. | 
|  | 429 | ++UI; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 430 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 431 | // Don't bother for PHI nodes. | 
|  | 432 | if (isa<PHINode>(User)) | 
|  | 433 | continue; | 
|  | 434 |  | 
|  | 435 | // Figure out which BB this cmp is used in. | 
|  | 436 | BasicBlock *UserBB = User->getParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 437 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 438 | // If this user is in the same block as the cmp, don't change the cmp. | 
|  | 439 | if (UserBB == DefBB) continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 440 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 441 | // If we have already inserted a cmp into this block, use it. | 
|  | 442 | CmpInst *&InsertedCmp = InsertedCmps[UserBB]; | 
|  | 443 |  | 
|  | 444 | if (!InsertedCmp) { | 
| Dan Gohman | f96e137 | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 445 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 446 |  | 
|  | 447 | InsertedCmp = | 
|  | 448 | CmpInst::Create(CI->getOpcode(), CI->getPredicate(), CI->getOperand(0), | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 449 | CI->getOperand(1), "", InsertPt); | 
|  | 450 | MadeChange = true; | 
|  | 451 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 452 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 453 | // Replace a use of the cmp with a use of the new cmp. | 
|  | 454 | TheUse = InsertedCmp; | 
|  | 455 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 456 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 457 | // If we removed all uses, nuke the cmp. | 
|  | 458 | if (CI->use_empty()) | 
|  | 459 | CI->eraseFromParent(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 460 |  | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 461 | return MadeChange; | 
|  | 462 | } | 
|  | 463 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 464 | /// EraseDeadInstructions - Erase any dead instructions | 
|  | 465 | static void EraseDeadInstructions(Value *V) { | 
|  | 466 | Instruction *I = dyn_cast<Instruction>(V); | 
|  | 467 | if (!I || !I->use_empty()) return; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 468 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 469 | SmallPtrSet<Instruction*, 16> Insts; | 
|  | 470 | Insts.insert(I); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 471 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 472 | while (!Insts.empty()) { | 
|  | 473 | I = *Insts.begin(); | 
|  | 474 | Insts.erase(I); | 
|  | 475 | if (isInstructionTriviallyDead(I)) { | 
|  | 476 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) | 
|  | 477 | if (Instruction *U = dyn_cast<Instruction>(I->getOperand(i))) | 
|  | 478 | Insts.insert(U); | 
|  | 479 | I->eraseFromParent(); | 
|  | 480 | } | 
|  | 481 | } | 
|  | 482 | } | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 483 |  | 
| Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 484 | namespace { | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 485 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 486 | /// ExtAddrMode - This is an extended version of TargetLowering::AddrMode which | 
|  | 487 | /// holds actual Value*'s for register values. | 
|  | 488 | struct ExtAddrMode : public TargetLowering::AddrMode { | 
|  | 489 | Value *BaseReg; | 
|  | 490 | Value *ScaledReg; | 
|  | 491 | ExtAddrMode() : BaseReg(0), ScaledReg(0) {} | 
|  | 492 | void dump() const; | 
|  | 493 | }; | 
|  | 494 |  | 
|  | 495 | static std::ostream &operator<<(std::ostream &OS, const ExtAddrMode &AM) { | 
|  | 496 | bool NeedPlus = false; | 
|  | 497 | OS << "["; | 
|  | 498 | if (AM.BaseGV) | 
|  | 499 | OS << (NeedPlus ? " + " : "") | 
|  | 500 | << "GV:%" << AM.BaseGV->getName(), NeedPlus = true; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 501 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 502 | if (AM.BaseOffs) | 
|  | 503 | OS << (NeedPlus ? " + " : "") << AM.BaseOffs, NeedPlus = true; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 504 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 505 | if (AM.BaseReg) | 
|  | 506 | OS << (NeedPlus ? " + " : "") | 
|  | 507 | << "Base:%" << AM.BaseReg->getName(), NeedPlus = true; | 
|  | 508 | if (AM.Scale) | 
|  | 509 | OS << (NeedPlus ? " + " : "") | 
|  | 510 | << AM.Scale << "*%" << AM.ScaledReg->getName(), NeedPlus = true; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 511 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 512 | return OS << "]"; | 
|  | 513 | } | 
|  | 514 |  | 
|  | 515 | void ExtAddrMode::dump() const { | 
|  | 516 | cerr << *this << "\n"; | 
|  | 517 | } | 
|  | 518 |  | 
| Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 519 | } | 
|  | 520 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 521 | static bool TryMatchingScaledValue(Value *ScaleReg, int64_t Scale, | 
|  | 522 | const Type *AccessTy, ExtAddrMode &AddrMode, | 
|  | 523 | SmallVector<Instruction*, 16> &AddrModeInsts, | 
|  | 524 | const TargetLowering &TLI, unsigned Depth); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 525 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 526 | /// FindMaximalLegalAddressingMode - If we can, try to merge the computation of | 
|  | 527 | /// Addr into the specified addressing mode.  If Addr can't be added to AddrMode | 
|  | 528 | /// this returns false.  This assumes that Addr is either a pointer type or | 
|  | 529 | /// intptr_t for the target. | 
|  | 530 | static bool FindMaximalLegalAddressingMode(Value *Addr, const Type *AccessTy, | 
|  | 531 | ExtAddrMode &AddrMode, | 
|  | 532 | SmallVector<Instruction*, 16> &AddrModeInsts, | 
|  | 533 | const TargetLowering &TLI, | 
|  | 534 | unsigned Depth) { | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 535 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 536 | // If this is a global variable, fold it into the addressing mode if possible. | 
|  | 537 | if (GlobalValue *GV = dyn_cast<GlobalValue>(Addr)) { | 
|  | 538 | if (AddrMode.BaseGV == 0) { | 
|  | 539 | AddrMode.BaseGV = GV; | 
|  | 540 | if (TLI.isLegalAddressingMode(AddrMode, AccessTy)) | 
|  | 541 | return true; | 
|  | 542 | AddrMode.BaseGV = 0; | 
|  | 543 | } | 
|  | 544 | } else if (ConstantInt *CI = dyn_cast<ConstantInt>(Addr)) { | 
|  | 545 | AddrMode.BaseOffs += CI->getSExtValue(); | 
|  | 546 | if (TLI.isLegalAddressingMode(AddrMode, AccessTy)) | 
|  | 547 | return true; | 
|  | 548 | AddrMode.BaseOffs -= CI->getSExtValue(); | 
|  | 549 | } else if (isa<ConstantPointerNull>(Addr)) { | 
|  | 550 | return true; | 
|  | 551 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 552 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 553 | // Look through constant exprs and instructions. | 
|  | 554 | unsigned Opcode = ~0U; | 
|  | 555 | User *AddrInst = 0; | 
|  | 556 | if (Instruction *I = dyn_cast<Instruction>(Addr)) { | 
|  | 557 | Opcode = I->getOpcode(); | 
|  | 558 | AddrInst = I; | 
|  | 559 | } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr)) { | 
|  | 560 | Opcode = CE->getOpcode(); | 
|  | 561 | AddrInst = CE; | 
|  | 562 | } | 
|  | 563 |  | 
|  | 564 | // Limit recursion to avoid exponential behavior. | 
|  | 565 | if (Depth == 5) { AddrInst = 0; Opcode = ~0U; } | 
|  | 566 |  | 
|  | 567 | // If this is really an instruction, add it to our list of related | 
|  | 568 | // instructions. | 
|  | 569 | if (Instruction *I = dyn_cast_or_null<Instruction>(AddrInst)) | 
|  | 570 | AddrModeInsts.push_back(I); | 
|  | 571 |  | 
|  | 572 | switch (Opcode) { | 
|  | 573 | case Instruction::PtrToInt: | 
|  | 574 | // PtrToInt is always a noop, as we know that the int type is pointer sized. | 
|  | 575 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 576 | AddrMode, AddrModeInsts, TLI, Depth)) | 
|  | 577 | return true; | 
|  | 578 | break; | 
|  | 579 | case Instruction::IntToPtr: | 
|  | 580 | // This inttoptr is a no-op if the integer type is pointer sized. | 
|  | 581 | if (TLI.getValueType(AddrInst->getOperand(0)->getType()) == | 
|  | 582 | TLI.getPointerTy()) { | 
|  | 583 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 584 | AddrMode, AddrModeInsts, TLI, Depth)) | 
|  | 585 | return true; | 
|  | 586 | } | 
|  | 587 | break; | 
|  | 588 | case Instruction::Add: { | 
|  | 589 | // Check to see if we can merge in the RHS then the LHS.  If so, we win. | 
|  | 590 | ExtAddrMode BackupAddrMode = AddrMode; | 
|  | 591 | unsigned OldSize = AddrModeInsts.size(); | 
|  | 592 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(1), AccessTy, | 
|  | 593 | AddrMode, AddrModeInsts, TLI, Depth+1) && | 
|  | 594 | FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 595 | AddrMode, AddrModeInsts, TLI, Depth+1)) | 
|  | 596 | return true; | 
|  | 597 |  | 
|  | 598 | // Restore the old addr mode info. | 
|  | 599 | AddrMode = BackupAddrMode; | 
|  | 600 | AddrModeInsts.resize(OldSize); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 601 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 602 | // Otherwise this was over-aggressive.  Try merging in the LHS then the RHS. | 
|  | 603 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 604 | AddrMode, AddrModeInsts, TLI, Depth+1) && | 
|  | 605 | FindMaximalLegalAddressingMode(AddrInst->getOperand(1), AccessTy, | 
|  | 606 | AddrMode, AddrModeInsts, TLI, Depth+1)) | 
|  | 607 | return true; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 608 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 609 | // Otherwise we definitely can't merge the ADD in. | 
|  | 610 | AddrMode = BackupAddrMode; | 
|  | 611 | AddrModeInsts.resize(OldSize); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 612 | break; | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 613 | } | 
|  | 614 | case Instruction::Or: { | 
|  | 615 | ConstantInt *RHS = dyn_cast<ConstantInt>(AddrInst->getOperand(1)); | 
|  | 616 | if (!RHS) break; | 
|  | 617 | // TODO: We can handle "Or Val, Imm" iff this OR is equivalent to an ADD. | 
|  | 618 | break; | 
|  | 619 | } | 
|  | 620 | case Instruction::Mul: | 
|  | 621 | case Instruction::Shl: { | 
|  | 622 | // Can only handle X*C and X << C, and can only handle this when the scale | 
|  | 623 | // field is available. | 
|  | 624 | ConstantInt *RHS = dyn_cast<ConstantInt>(AddrInst->getOperand(1)); | 
|  | 625 | if (!RHS) break; | 
|  | 626 | int64_t Scale = RHS->getSExtValue(); | 
|  | 627 | if (Opcode == Instruction::Shl) | 
|  | 628 | Scale = 1 << Scale; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 629 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 630 | if (TryMatchingScaledValue(AddrInst->getOperand(0), Scale, AccessTy, | 
|  | 631 | AddrMode, AddrModeInsts, TLI, Depth)) | 
|  | 632 | return true; | 
|  | 633 | break; | 
|  | 634 | } | 
|  | 635 | case Instruction::GetElementPtr: { | 
|  | 636 | // Scan the GEP.  We check it if it contains constant offsets and at most | 
|  | 637 | // one variable offset. | 
|  | 638 | int VariableOperand = -1; | 
|  | 639 | unsigned VariableScale = 0; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 640 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 641 | int64_t ConstantOffset = 0; | 
|  | 642 | const TargetData *TD = TLI.getTargetData(); | 
|  | 643 | gep_type_iterator GTI = gep_type_begin(AddrInst); | 
|  | 644 | for (unsigned i = 1, e = AddrInst->getNumOperands(); i != e; ++i, ++GTI) { | 
|  | 645 | if (const StructType *STy = dyn_cast<StructType>(*GTI)) { | 
|  | 646 | const StructLayout *SL = TD->getStructLayout(STy); | 
|  | 647 | unsigned Idx = | 
|  | 648 | cast<ConstantInt>(AddrInst->getOperand(i))->getZExtValue(); | 
|  | 649 | ConstantOffset += SL->getElementOffset(Idx); | 
|  | 650 | } else { | 
| Duncan Sands | 44b8721 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 651 | uint64_t TypeSize = TD->getABITypeSize(GTI.getIndexedType()); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 652 | if (ConstantInt *CI = dyn_cast<ConstantInt>(AddrInst->getOperand(i))) { | 
|  | 653 | ConstantOffset += CI->getSExtValue()*TypeSize; | 
|  | 654 | } else if (TypeSize) {  // Scales of zero don't do anything. | 
|  | 655 | // We only allow one variable index at the moment. | 
|  | 656 | if (VariableOperand != -1) { | 
|  | 657 | VariableOperand = -2; | 
|  | 658 | break; | 
|  | 659 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 660 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 661 | // Remember the variable index. | 
|  | 662 | VariableOperand = i; | 
|  | 663 | VariableScale = TypeSize; | 
|  | 664 | } | 
|  | 665 | } | 
|  | 666 | } | 
|  | 667 |  | 
|  | 668 | // If the GEP had multiple variable indices, punt. | 
|  | 669 | if (VariableOperand == -2) | 
|  | 670 | break; | 
|  | 671 |  | 
|  | 672 | // A common case is for the GEP to only do a constant offset.  In this case, | 
|  | 673 | // just add it to the disp field and check validity. | 
|  | 674 | if (VariableOperand == -1) { | 
|  | 675 | AddrMode.BaseOffs += ConstantOffset; | 
|  | 676 | if (ConstantOffset == 0 || TLI.isLegalAddressingMode(AddrMode, AccessTy)){ | 
|  | 677 | // Check to see if we can fold the base pointer in too. | 
|  | 678 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 679 | AddrMode, AddrModeInsts, TLI, | 
|  | 680 | Depth+1)) | 
|  | 681 | return true; | 
|  | 682 | } | 
|  | 683 | AddrMode.BaseOffs -= ConstantOffset; | 
|  | 684 | } else { | 
|  | 685 | // Check that this has no base reg yet.  If so, we won't have a place to | 
|  | 686 | // put the base of the GEP (assuming it is not a null ptr). | 
|  | 687 | bool SetBaseReg = false; | 
|  | 688 | if (AddrMode.HasBaseReg) { | 
|  | 689 | if (!isa<ConstantPointerNull>(AddrInst->getOperand(0))) | 
|  | 690 | break; | 
|  | 691 | } else { | 
|  | 692 | AddrMode.HasBaseReg = true; | 
|  | 693 | AddrMode.BaseReg = AddrInst->getOperand(0); | 
|  | 694 | SetBaseReg = true; | 
|  | 695 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 696 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 697 | // See if the scale amount is valid for this target. | 
|  | 698 | AddrMode.BaseOffs += ConstantOffset; | 
|  | 699 | if (TryMatchingScaledValue(AddrInst->getOperand(VariableOperand), | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 700 | VariableScale, AccessTy, AddrMode, | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 701 | AddrModeInsts, TLI, Depth)) { | 
|  | 702 | if (!SetBaseReg) return true; | 
|  | 703 |  | 
|  | 704 | // If this match succeeded, we know that we can form an address with the | 
|  | 705 | // GepBase as the basereg.  See if we can match *more*. | 
|  | 706 | AddrMode.HasBaseReg = false; | 
|  | 707 | AddrMode.BaseReg = 0; | 
|  | 708 | if (FindMaximalLegalAddressingMode(AddrInst->getOperand(0), AccessTy, | 
|  | 709 | AddrMode, AddrModeInsts, TLI, | 
|  | 710 | Depth+1)) | 
|  | 711 | return true; | 
|  | 712 | // Strange, shouldn't happen.  Restore the base reg and succeed the easy | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 713 | // way. | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 714 | AddrMode.HasBaseReg = true; | 
|  | 715 | AddrMode.BaseReg = AddrInst->getOperand(0); | 
|  | 716 | return true; | 
|  | 717 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 718 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 719 | AddrMode.BaseOffs -= ConstantOffset; | 
|  | 720 | if (SetBaseReg) { | 
|  | 721 | AddrMode.HasBaseReg = false; | 
|  | 722 | AddrMode.BaseReg = 0; | 
|  | 723 | } | 
|  | 724 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 725 | break; | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 726 | } | 
|  | 727 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 728 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 729 | if (Instruction *I = dyn_cast_or_null<Instruction>(AddrInst)) { | 
| Chris Lattner | a39cfc5 | 2008-04-06 21:44:08 +0000 | [diff] [blame] | 730 | assert(AddrModeInsts.back() == I && "Stack imbalance"); I = I; | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 731 | AddrModeInsts.pop_back(); | 
|  | 732 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 733 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 734 | // Worse case, the target should support [reg] addressing modes. :) | 
|  | 735 | if (!AddrMode.HasBaseReg) { | 
|  | 736 | AddrMode.HasBaseReg = true; | 
|  | 737 | // Still check for legality in case the target supports [imm] but not [i+r]. | 
|  | 738 | if (TLI.isLegalAddressingMode(AddrMode, AccessTy)) { | 
|  | 739 | AddrMode.BaseReg = Addr; | 
|  | 740 | return true; | 
|  | 741 | } | 
|  | 742 | AddrMode.HasBaseReg = false; | 
|  | 743 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 744 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 745 | // If the base register is already taken, see if we can do [r+r]. | 
|  | 746 | if (AddrMode.Scale == 0) { | 
|  | 747 | AddrMode.Scale = 1; | 
|  | 748 | if (TLI.isLegalAddressingMode(AddrMode, AccessTy)) { | 
|  | 749 | AddrMode.ScaledReg = Addr; | 
|  | 750 | return true; | 
|  | 751 | } | 
|  | 752 | AddrMode.Scale = 0; | 
|  | 753 | } | 
|  | 754 | // Couldn't match. | 
|  | 755 | return false; | 
|  | 756 | } | 
|  | 757 |  | 
|  | 758 | /// TryMatchingScaledValue - Try adding ScaleReg*Scale to the specified | 
|  | 759 | /// addressing mode.  Return true if this addr mode is legal for the target, | 
|  | 760 | /// false if not. | 
|  | 761 | static bool TryMatchingScaledValue(Value *ScaleReg, int64_t Scale, | 
|  | 762 | const Type *AccessTy, ExtAddrMode &AddrMode, | 
|  | 763 | SmallVector<Instruction*, 16> &AddrModeInsts, | 
|  | 764 | const TargetLowering &TLI, unsigned Depth) { | 
|  | 765 | // If we already have a scale of this value, we can add to it, otherwise, we | 
|  | 766 | // need an available scale field. | 
|  | 767 | if (AddrMode.Scale != 0 && AddrMode.ScaledReg != ScaleReg) | 
|  | 768 | return false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 769 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 770 | ExtAddrMode InputAddrMode = AddrMode; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 771 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 772 | // Add scale to turn X*4+X*3 -> X*7.  This could also do things like | 
|  | 773 | // [A+B + A*7] -> [B+A*8]. | 
|  | 774 | AddrMode.Scale += Scale; | 
|  | 775 | AddrMode.ScaledReg = ScaleReg; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 776 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 777 | if (TLI.isLegalAddressingMode(AddrMode, AccessTy)) { | 
|  | 778 | // Okay, we decided that we can add ScaleReg+Scale to AddrMode.  Check now | 
|  | 779 | // to see if ScaleReg is actually X+C.  If so, we can turn this into adding | 
|  | 780 | // X*Scale + C*Scale to addr mode. | 
|  | 781 | BinaryOperator *BinOp = dyn_cast<BinaryOperator>(ScaleReg); | 
|  | 782 | if (BinOp && BinOp->getOpcode() == Instruction::Add && | 
|  | 783 | isa<ConstantInt>(BinOp->getOperand(1)) && InputAddrMode.ScaledReg ==0) { | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 784 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 785 | InputAddrMode.Scale = Scale; | 
|  | 786 | InputAddrMode.ScaledReg = BinOp->getOperand(0); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 787 | InputAddrMode.BaseOffs += | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 788 | cast<ConstantInt>(BinOp->getOperand(1))->getSExtValue()*Scale; | 
|  | 789 | if (TLI.isLegalAddressingMode(InputAddrMode, AccessTy)) { | 
|  | 790 | AddrModeInsts.push_back(BinOp); | 
|  | 791 | AddrMode = InputAddrMode; | 
|  | 792 | return true; | 
|  | 793 | } | 
|  | 794 | } | 
|  | 795 |  | 
|  | 796 | // Otherwise, not (x+c)*scale, just return what we have. | 
|  | 797 | return true; | 
|  | 798 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 799 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 800 | // Otherwise, back this attempt out. | 
|  | 801 | AddrMode.Scale -= Scale; | 
|  | 802 | if (AddrMode.Scale == 0) AddrMode.ScaledReg = 0; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 803 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 804 | return false; | 
|  | 805 | } | 
|  | 806 |  | 
|  | 807 |  | 
|  | 808 | /// IsNonLocalValue - Return true if the specified values are defined in a | 
|  | 809 | /// different basic block than BB. | 
|  | 810 | static bool IsNonLocalValue(Value *V, BasicBlock *BB) { | 
|  | 811 | if (Instruction *I = dyn_cast<Instruction>(V)) | 
|  | 812 | return I->getParent() != BB; | 
|  | 813 | return false; | 
|  | 814 | } | 
|  | 815 |  | 
|  | 816 | /// OptimizeLoadStoreInst - Load and Store Instructions have often have | 
|  | 817 | /// addressing modes that can do significant amounts of computation.  As such, | 
|  | 818 | /// instruction selection will try to get the load or store to do as much | 
|  | 819 | /// computation as possible for the program.  The problem is that isel can only | 
|  | 820 | /// see within a single block.  As such, we sink as much legal addressing mode | 
|  | 821 | /// stuff into the block as possible. | 
|  | 822 | bool CodeGenPrepare::OptimizeLoadStoreInst(Instruction *LdStInst, Value *Addr, | 
|  | 823 | const Type *AccessTy, | 
|  | 824 | DenseMap<Value*,Value*> &SunkAddrs) { | 
|  | 825 | // Figure out what addressing mode will be built up for this operation. | 
|  | 826 | SmallVector<Instruction*, 16> AddrModeInsts; | 
|  | 827 | ExtAddrMode AddrMode; | 
|  | 828 | bool Success = FindMaximalLegalAddressingMode(Addr, AccessTy, AddrMode, | 
|  | 829 | AddrModeInsts, *TLI, 0); | 
|  | 830 | Success = Success; assert(Success && "Couldn't select *anything*?"); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 831 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 832 | // Check to see if any of the instructions supersumed by this addr mode are | 
|  | 833 | // non-local to I's BB. | 
|  | 834 | bool AnyNonLocal = false; | 
|  | 835 | for (unsigned i = 0, e = AddrModeInsts.size(); i != e; ++i) { | 
|  | 836 | if (IsNonLocalValue(AddrModeInsts[i], LdStInst->getParent())) { | 
|  | 837 | AnyNonLocal = true; | 
|  | 838 | break; | 
|  | 839 | } | 
|  | 840 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 841 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 842 | // If all the instructions matched are already in this BB, don't do anything. | 
|  | 843 | if (!AnyNonLocal) { | 
|  | 844 | DEBUG(cerr << "CGP: Found      local addrmode: " << AddrMode << "\n"); | 
|  | 845 | return false; | 
|  | 846 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 847 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 848 | // Insert this computation right after this user.  Since our caller is | 
|  | 849 | // scanning from the top of the BB to the bottom, reuse of the expr are | 
|  | 850 | // guaranteed to happen later. | 
|  | 851 | BasicBlock::iterator InsertPt = LdStInst; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 852 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 853 | // Now that we determined the addressing expression we want to use and know | 
|  | 854 | // that we have to sink it into this block.  Check to see if we have already | 
|  | 855 | // done this for some other load/store instr in this block.  If so, reuse the | 
|  | 856 | // computation. | 
|  | 857 | Value *&SunkAddr = SunkAddrs[Addr]; | 
|  | 858 | if (SunkAddr) { | 
|  | 859 | DEBUG(cerr << "CGP: Reusing nonlocal addrmode: " << AddrMode << "\n"); | 
|  | 860 | if (SunkAddr->getType() != Addr->getType()) | 
|  | 861 | SunkAddr = new BitCastInst(SunkAddr, Addr->getType(), "tmp", InsertPt); | 
|  | 862 | } else { | 
|  | 863 | DEBUG(cerr << "CGP: SINKING nonlocal addrmode: " << AddrMode << "\n"); | 
|  | 864 | const Type *IntPtrTy = TLI->getTargetData()->getIntPtrType(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 865 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 866 | Value *Result = 0; | 
|  | 867 | // Start with the scale value. | 
|  | 868 | if (AddrMode.Scale) { | 
|  | 869 | Value *V = AddrMode.ScaledReg; | 
|  | 870 | if (V->getType() == IntPtrTy) { | 
|  | 871 | // done. | 
|  | 872 | } else if (isa<PointerType>(V->getType())) { | 
|  | 873 | V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); | 
|  | 874 | } else if (cast<IntegerType>(IntPtrTy)->getBitWidth() < | 
|  | 875 | cast<IntegerType>(V->getType())->getBitWidth()) { | 
|  | 876 | V = new TruncInst(V, IntPtrTy, "sunkaddr", InsertPt); | 
|  | 877 | } else { | 
|  | 878 | V = new SExtInst(V, IntPtrTy, "sunkaddr", InsertPt); | 
|  | 879 | } | 
|  | 880 | if (AddrMode.Scale != 1) | 
| Gabor Greif | e1f6e4b | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 881 | V = BinaryOperator::CreateMul(V, ConstantInt::get(IntPtrTy, | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 882 | AddrMode.Scale), | 
|  | 883 | "sunkaddr", InsertPt); | 
|  | 884 | Result = V; | 
|  | 885 | } | 
|  | 886 |  | 
|  | 887 | // Add in the base register. | 
|  | 888 | if (AddrMode.BaseReg) { | 
|  | 889 | Value *V = AddrMode.BaseReg; | 
|  | 890 | if (V->getType() != IntPtrTy) | 
|  | 891 | V = new PtrToIntInst(V, IntPtrTy, "sunkaddr", InsertPt); | 
|  | 892 | if (Result) | 
| Gabor Greif | e1f6e4b | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 893 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 894 | else | 
|  | 895 | Result = V; | 
|  | 896 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 897 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 898 | // Add in the BaseGV if present. | 
|  | 899 | if (AddrMode.BaseGV) { | 
|  | 900 | Value *V = new PtrToIntInst(AddrMode.BaseGV, IntPtrTy, "sunkaddr", | 
|  | 901 | InsertPt); | 
|  | 902 | if (Result) | 
| Gabor Greif | e1f6e4b | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 903 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 904 | else | 
|  | 905 | Result = V; | 
|  | 906 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 907 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 908 | // Add in the Base Offset if present. | 
|  | 909 | if (AddrMode.BaseOffs) { | 
|  | 910 | Value *V = ConstantInt::get(IntPtrTy, AddrMode.BaseOffs); | 
|  | 911 | if (Result) | 
| Gabor Greif | e1f6e4b | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 912 | Result = BinaryOperator::CreateAdd(Result, V, "sunkaddr", InsertPt); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 913 | else | 
|  | 914 | Result = V; | 
|  | 915 | } | 
|  | 916 |  | 
|  | 917 | if (Result == 0) | 
|  | 918 | SunkAddr = Constant::getNullValue(Addr->getType()); | 
|  | 919 | else | 
|  | 920 | SunkAddr = new IntToPtrInst(Result, Addr->getType(), "sunkaddr",InsertPt); | 
|  | 921 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 922 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 923 | LdStInst->replaceUsesOfWith(Addr, SunkAddr); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 924 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 925 | if (Addr->use_empty()) | 
|  | 926 | EraseDeadInstructions(Addr); | 
|  | 927 | return true; | 
|  | 928 | } | 
|  | 929 |  | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 930 | /// OptimizeInlineAsmInst - If there are any memory operands, use | 
|  | 931 | /// OptimizeLoadStoreInt to sink their address computing into the block when | 
|  | 932 | /// possible / profitable. | 
|  | 933 | bool CodeGenPrepare::OptimizeInlineAsmInst(Instruction *I, CallSite CS, | 
|  | 934 | DenseMap<Value*,Value*> &SunkAddrs) { | 
|  | 935 | bool MadeChange = false; | 
|  | 936 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); | 
|  | 937 |  | 
|  | 938 | // Do a prepass over the constraints, canonicalizing them, and building up the | 
|  | 939 | // ConstraintOperands list. | 
|  | 940 | std::vector<InlineAsm::ConstraintInfo> | 
|  | 941 | ConstraintInfos = IA->ParseConstraints(); | 
|  | 942 |  | 
|  | 943 | /// ConstraintOperands - Information about all of the constraints. | 
|  | 944 | std::vector<TargetLowering::AsmOperandInfo> ConstraintOperands; | 
|  | 945 | unsigned ArgNo = 0;   // ArgNo - The argument of the CallInst. | 
|  | 946 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { | 
|  | 947 | ConstraintOperands. | 
|  | 948 | push_back(TargetLowering::AsmOperandInfo(ConstraintInfos[i])); | 
|  | 949 | TargetLowering::AsmOperandInfo &OpInfo = ConstraintOperands.back(); | 
|  | 950 |  | 
|  | 951 | // Compute the value type for each operand. | 
|  | 952 | switch (OpInfo.Type) { | 
|  | 953 | case InlineAsm::isOutput: | 
|  | 954 | if (OpInfo.isIndirect) | 
|  | 955 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); | 
|  | 956 | break; | 
|  | 957 | case InlineAsm::isInput: | 
|  | 958 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); | 
|  | 959 | break; | 
|  | 960 | case InlineAsm::isClobber: | 
|  | 961 | // Nothing to do. | 
|  | 962 | break; | 
|  | 963 | } | 
|  | 964 |  | 
|  | 965 | // Compute the constraint code and ConstraintType to use. | 
| Evan Cheng | 25dd4a2 | 2008-09-24 06:48:55 +0000 | [diff] [blame] | 966 | TLI->ComputeConstraintToUse(OpInfo, SDValue(), | 
|  | 967 | OpInfo.ConstraintType == TargetLowering::C_Memory); | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 968 |  | 
| Eli Friedman | 666bbe3 | 2008-02-26 18:37:49 +0000 | [diff] [blame] | 969 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && | 
|  | 970 | OpInfo.isIndirect) { | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 971 | Value *OpVal = OpInfo.CallOperandVal; | 
|  | 972 | MadeChange |= OptimizeLoadStoreInst(I, OpVal, OpVal->getType(), | 
|  | 973 | SunkAddrs); | 
|  | 974 | } | 
|  | 975 | } | 
|  | 976 |  | 
|  | 977 | return MadeChange; | 
|  | 978 | } | 
|  | 979 |  | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 980 | bool CodeGenPrepare::OptimizeExtUses(Instruction *I) { | 
|  | 981 | BasicBlock *DefBB = I->getParent(); | 
|  | 982 |  | 
|  | 983 | // If both result of the {s|z}xt and its source are live out, rewrite all | 
|  | 984 | // other uses of the source with result of extension. | 
|  | 985 | Value *Src = I->getOperand(0); | 
|  | 986 | if (Src->hasOneUse()) | 
|  | 987 | return false; | 
|  | 988 |  | 
| Evan Cheng | 2011df4 | 2007-12-13 07:50:36 +0000 | [diff] [blame] | 989 | // Only do this xform if truncating is free. | 
| Gabor Greif | aa26172 | 2008-02-26 19:13:21 +0000 | [diff] [blame] | 990 | if (TLI && !TLI->isTruncateFree(I->getType(), Src->getType())) | 
| Evan Cheng | 37c36ed | 2007-12-13 03:32:53 +0000 | [diff] [blame] | 991 | return false; | 
|  | 992 |  | 
| Evan Cheng | 7bc8942 | 2007-12-12 00:51:06 +0000 | [diff] [blame] | 993 | // Only safe to perform the optimization if the source is also defined in | 
| Evan Cheng | 63d33cf | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 994 | // this block. | 
|  | 995 | if (!isa<Instruction>(Src) || DefBB != cast<Instruction>(Src)->getParent()) | 
| Evan Cheng | 7bc8942 | 2007-12-12 00:51:06 +0000 | [diff] [blame] | 996 | return false; | 
|  | 997 |  | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 998 | bool DefIsLiveOut = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 999 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1000 | UI != E; ++UI) { | 
|  | 1001 | Instruction *User = cast<Instruction>(*UI); | 
|  | 1002 |  | 
|  | 1003 | // Figure out which BB this ext is used in. | 
|  | 1004 | BasicBlock *UserBB = User->getParent(); | 
|  | 1005 | if (UserBB == DefBB) continue; | 
|  | 1006 | DefIsLiveOut = true; | 
|  | 1007 | break; | 
|  | 1008 | } | 
|  | 1009 | if (!DefIsLiveOut) | 
|  | 1010 | return false; | 
|  | 1011 |  | 
| Evan Cheng | 63d33cf | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 1012 | // Make sure non of the uses are PHI nodes. | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1013 | for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end(); | 
| Evan Cheng | 63d33cf | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 1014 | UI != E; ++UI) { | 
|  | 1015 | Instruction *User = cast<Instruction>(*UI); | 
| Evan Cheng | 37c36ed | 2007-12-13 03:32:53 +0000 | [diff] [blame] | 1016 | BasicBlock *UserBB = User->getParent(); | 
|  | 1017 | if (UserBB == DefBB) continue; | 
|  | 1018 | // Be conservative. We don't want this xform to end up introducing | 
|  | 1019 | // reloads just before load / store instructions. | 
|  | 1020 | if (isa<PHINode>(User) || isa<LoadInst>(User) || isa<StoreInst>(User)) | 
| Evan Cheng | 63d33cf | 2007-12-12 02:53:41 +0000 | [diff] [blame] | 1021 | return false; | 
|  | 1022 | } | 
|  | 1023 |  | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1024 | // InsertedTruncs - Only insert one trunc in each block once. | 
|  | 1025 | DenseMap<BasicBlock*, Instruction*> InsertedTruncs; | 
|  | 1026 |  | 
|  | 1027 | bool MadeChange = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1028 | for (Value::use_iterator UI = Src->use_begin(), E = Src->use_end(); | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1029 | UI != E; ++UI) { | 
|  | 1030 | Use &TheUse = UI.getUse(); | 
|  | 1031 | Instruction *User = cast<Instruction>(*UI); | 
|  | 1032 |  | 
|  | 1033 | // Figure out which BB this ext is used in. | 
|  | 1034 | BasicBlock *UserBB = User->getParent(); | 
|  | 1035 | if (UserBB == DefBB) continue; | 
|  | 1036 |  | 
|  | 1037 | // Both src and def are live in this block. Rewrite the use. | 
|  | 1038 | Instruction *&InsertedTrunc = InsertedTruncs[UserBB]; | 
|  | 1039 |  | 
|  | 1040 | if (!InsertedTrunc) { | 
| Dan Gohman | f96e137 | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 1041 | BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI(); | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1042 |  | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1043 | InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt); | 
|  | 1044 | } | 
|  | 1045 |  | 
|  | 1046 | // Replace a use of the {s|z}ext source with a use of the result. | 
|  | 1047 | TheUse = InsertedTrunc; | 
|  | 1048 |  | 
|  | 1049 | MadeChange = true; | 
|  | 1050 | } | 
|  | 1051 |  | 
|  | 1052 | return MadeChange; | 
|  | 1053 | } | 
|  | 1054 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1055 | // In this pass we look for GEP and cast instructions that are used | 
|  | 1056 | // across basic blocks and rewrite them to improve basic-block-at-a-time | 
|  | 1057 | // selection. | 
|  | 1058 | bool CodeGenPrepare::OptimizeBlock(BasicBlock &BB) { | 
|  | 1059 | bool MadeChange = false; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1060 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1061 | // Split all critical edges where the dest block has a PHI and where the phi | 
|  | 1062 | // has shared immediate operands. | 
|  | 1063 | TerminatorInst *BBTI = BB.getTerminator(); | 
|  | 1064 | if (BBTI->getNumSuccessors() > 1) { | 
|  | 1065 | for (unsigned i = 0, e = BBTI->getNumSuccessors(); i != e; ++i) | 
|  | 1066 | if (isa<PHINode>(BBTI->getSuccessor(i)->begin()) && | 
|  | 1067 | isCriticalEdge(BBTI, i, true)) | 
|  | 1068 | SplitEdgeNicely(BBTI, i, this); | 
|  | 1069 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1070 |  | 
|  | 1071 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1072 | // Keep track of non-local addresses that have been sunk into this block. | 
|  | 1073 | // This allows us to avoid inserting duplicate code for blocks with multiple | 
|  | 1074 | // load/stores of the same address. | 
|  | 1075 | DenseMap<Value*, Value*> SunkAddrs; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1076 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1077 | for (BasicBlock::iterator BBI = BB.begin(), E = BB.end(); BBI != E; ) { | 
|  | 1078 | Instruction *I = BBI++; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1079 |  | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1080 | if (CastInst *CI = dyn_cast<CastInst>(I)) { | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1081 | // If the source of the cast is a constant, then this should have | 
|  | 1082 | // already been constant folded.  The only reason NOT to constant fold | 
|  | 1083 | // it is if something (e.g. LSR) was careful to place the constant | 
|  | 1084 | // evaluation in a block other than then one that uses it (e.g. to hoist | 
|  | 1085 | // the address of globals out of a loop).  If this is the case, we don't | 
|  | 1086 | // want to forward-subst the cast. | 
|  | 1087 | if (isa<Constant>(CI->getOperand(0))) | 
|  | 1088 | continue; | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1089 |  | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1090 | bool Change = false; | 
|  | 1091 | if (TLI) { | 
|  | 1092 | Change = OptimizeNoopCopyExpression(CI, *TLI); | 
|  | 1093 | MadeChange |= Change; | 
|  | 1094 | } | 
|  | 1095 |  | 
| Evan Cheng | a90fdc4 | 2008-03-19 22:02:26 +0000 | [diff] [blame] | 1096 | if (!Change && (isa<ZExtInst>(I) || isa<SExtInst>(I))) | 
| Evan Cheng | d3d8017 | 2007-12-05 23:58:20 +0000 | [diff] [blame] | 1097 | MadeChange |= OptimizeExtUses(I); | 
| Dale Johannesen | edfec0b | 2007-06-12 16:50:17 +0000 | [diff] [blame] | 1098 | } else if (CmpInst *CI = dyn_cast<CmpInst>(I)) { | 
|  | 1099 | MadeChange |= OptimizeCmpExpression(CI); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1100 | } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) { | 
|  | 1101 | if (TLI) | 
|  | 1102 | MadeChange |= OptimizeLoadStoreInst(I, I->getOperand(0), LI->getType(), | 
|  | 1103 | SunkAddrs); | 
|  | 1104 | } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { | 
|  | 1105 | if (TLI) | 
|  | 1106 | MadeChange |= OptimizeLoadStoreInst(I, SI->getOperand(1), | 
|  | 1107 | SI->getOperand(0)->getType(), | 
|  | 1108 | SunkAddrs); | 
|  | 1109 | } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { | 
| Chris Lattner | 164b765 | 2007-04-14 00:17:39 +0000 | [diff] [blame] | 1110 | if (GEPI->hasAllZeroIndices()) { | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1111 | /// The GEP operand must be a pointer, so must its result -> BitCast | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1112 | Instruction *NC = new BitCastInst(GEPI->getOperand(0), GEPI->getType(), | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1113 | GEPI->getName(), GEPI); | 
|  | 1114 | GEPI->replaceAllUsesWith(NC); | 
|  | 1115 | GEPI->eraseFromParent(); | 
|  | 1116 | MadeChange = true; | 
|  | 1117 | BBI = NC; | 
|  | 1118 | } | 
|  | 1119 | } else if (CallInst *CI = dyn_cast<CallInst>(I)) { | 
|  | 1120 | // If we found an inline asm expession, and if the target knows how to | 
|  | 1121 | // lower it to normal LLVM code, do so now. | 
|  | 1122 | if (TLI && isa<InlineAsm>(CI->getCalledValue())) | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1123 | if (const TargetAsmInfo *TAI = | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1124 | TLI->getTargetMachine().getTargetAsmInfo()) { | 
|  | 1125 | if (TAI->ExpandInlineAsm(CI)) | 
|  | 1126 | BBI = BB.begin(); | 
| Evan Cheng | 1da2500 | 2008-02-26 02:42:37 +0000 | [diff] [blame] | 1127 | else | 
|  | 1128 | // Sink address computing for memory operands into the block. | 
|  | 1129 | MadeChange |= OptimizeInlineAsmInst(I, &(*CI), SunkAddrs); | 
| Chris Lattner | feee64e | 2007-04-13 20:30:56 +0000 | [diff] [blame] | 1130 | } | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1131 | } | 
|  | 1132 | } | 
| Eric Christopher | c1ea149 | 2008-09-24 05:32:41 +0000 | [diff] [blame] | 1133 |  | 
| Chris Lattner | f2836d1 | 2007-03-31 04:06:36 +0000 | [diff] [blame] | 1134 | return MadeChange; | 
|  | 1135 | } |