LLVM API Documentation
00001 //===- IVUsers.cpp - Induction Variable Users -------------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file implements bookkeeping for "interesting" users of expressions 00011 // computed from induction variables. 00012 // 00013 //===----------------------------------------------------------------------===// 00014 00015 #define DEBUG_TYPE "iv-users" 00016 #include "llvm/Analysis/IVUsers.h" 00017 #include "llvm/ADT/STLExtras.h" 00018 #include "llvm/Analysis/Dominators.h" 00019 #include "llvm/Analysis/LoopPass.h" 00020 #include "llvm/Analysis/ScalarEvolutionExpressions.h" 00021 #include "llvm/Analysis/ValueTracking.h" 00022 #include "llvm/Assembly/Writer.h" 00023 #include "llvm/IR/Constants.h" 00024 #include "llvm/IR/DataLayout.h" 00025 #include "llvm/IR/DerivedTypes.h" 00026 #include "llvm/IR/Instructions.h" 00027 #include "llvm/IR/Type.h" 00028 #include "llvm/Support/Debug.h" 00029 #include "llvm/Support/raw_ostream.h" 00030 #include <algorithm> 00031 using namespace llvm; 00032 00033 char IVUsers::ID = 0; 00034 INITIALIZE_PASS_BEGIN(IVUsers, "iv-users", 00035 "Induction Variable Users", false, true) 00036 INITIALIZE_PASS_DEPENDENCY(LoopInfo) 00037 INITIALIZE_PASS_DEPENDENCY(DominatorTree) 00038 INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) 00039 INITIALIZE_PASS_END(IVUsers, "iv-users", 00040 "Induction Variable Users", false, true) 00041 00042 Pass *llvm::createIVUsersPass() { 00043 return new IVUsers(); 00044 } 00045 00046 /// isInteresting - Test whether the given expression is "interesting" when 00047 /// used by the given expression, within the context of analyzing the 00048 /// given loop. 00049 static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, 00050 ScalarEvolution *SE, LoopInfo *LI) { 00051 // An addrec is interesting if it's affine or if it has an interesting start. 00052 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { 00053 // Keep things simple. Don't touch loop-variant strides unless they're 00054 // only used outside the loop and we can simplify them. 00055 if (AR->getLoop() == L) 00056 return AR->isAffine() || 00057 (!L->contains(I) && 00058 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); 00059 // Otherwise recurse to see if the start value is interesting, and that 00060 // the step value is not interesting, since we don't yet know how to 00061 // do effective SCEV expansions for addrecs with interesting steps. 00062 return isInteresting(AR->getStart(), I, L, SE, LI) && 00063 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); 00064 } 00065 00066 // An add is interesting if exactly one of its operands is interesting. 00067 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { 00068 bool AnyInterestingYet = false; 00069 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end(); 00070 OI != OE; ++OI) 00071 if (isInteresting(*OI, I, L, SE, LI)) { 00072 if (AnyInterestingYet) 00073 return false; 00074 AnyInterestingYet = true; 00075 } 00076 return AnyInterestingYet; 00077 } 00078 00079 // Nothing else is interesting here. 00080 return false; 00081 } 00082 00083 /// Return true if all loop headers that dominate this block are in simplified 00084 /// form. 00085 static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT, 00086 const LoopInfo *LI, 00087 SmallPtrSet<Loop*,16> &SimpleLoopNests) { 00088 Loop *NearestLoop = 0; 00089 for (DomTreeNode *Rung = DT->getNode(BB); 00090 Rung; Rung = Rung->getIDom()) { 00091 BasicBlock *DomBB = Rung->getBlock(); 00092 Loop *DomLoop = LI->getLoopFor(DomBB); 00093 if (DomLoop && DomLoop->getHeader() == DomBB) { 00094 // If the domtree walk reaches a loop with no preheader, return false. 00095 if (!DomLoop->isLoopSimplifyForm()) 00096 return false; 00097 // If we have already checked this loop nest, stop checking. 00098 if (SimpleLoopNests.count(DomLoop)) 00099 break; 00100 // If we have not already checked this loop nest, remember the loop 00101 // header nearest to BB. The nearest loop may not contain BB. 00102 if (!NearestLoop) 00103 NearestLoop = DomLoop; 00104 } 00105 } 00106 if (NearestLoop) 00107 SimpleLoopNests.insert(NearestLoop); 00108 return true; 00109 } 00110 00111 /// AddUsersImpl - Inspect the specified instruction. If it is a 00112 /// reducible SCEV, recursively add its users to the IVUsesByStride set and 00113 /// return true. Otherwise, return false. 00114 bool IVUsers::AddUsersImpl(Instruction *I, 00115 SmallPtrSet<Loop*,16> &SimpleLoopNests) { 00116 // Add this IV user to the Processed set before returning false to ensure that 00117 // all IV users are members of the set. See IVUsers::isIVUserOrOperand. 00118 if (!Processed.insert(I)) 00119 return true; // Instruction already handled. 00120 00121 if (!SE->isSCEVable(I->getType())) 00122 return false; // Void and FP expressions cannot be reduced. 00123 00124 // IVUsers is used by LSR which assumes that all SCEV expressions are safe to 00125 // pass to SCEVExpander. Expressions are not safe to expand if they represent 00126 // operations that are not safe to speculate, namely integer division. 00127 if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I, TD)) 00128 return false; 00129 00130 // LSR is not APInt clean, do not touch integers bigger than 64-bits. 00131 // Also avoid creating IVs of non-native types. For example, we don't want a 00132 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast. 00133 uint64_t Width = SE->getTypeSizeInBits(I->getType()); 00134 if (Width > 64 || (TD && !TD->isLegalInteger(Width))) 00135 return false; 00136 00137 // Get the symbolic expression for this instruction. 00138 const SCEV *ISE = SE->getSCEV(I); 00139 00140 // If we've come to an uninteresting expression, stop the traversal and 00141 // call this a user. 00142 if (!isInteresting(ISE, I, L, SE, LI)) 00143 return false; 00144 00145 SmallPtrSet<Instruction *, 4> UniqueUsers; 00146 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); 00147 UI != E; ++UI) { 00148 Instruction *User = cast<Instruction>(*UI); 00149 if (!UniqueUsers.insert(User)) 00150 continue; 00151 00152 // Do not infinitely recurse on PHI nodes. 00153 if (isa<PHINode>(User) && Processed.count(User)) 00154 continue; 00155 00156 // Only consider IVUsers that are dominated by simplified loop 00157 // headers. Otherwise, SCEVExpander will crash. 00158 BasicBlock *UseBB = User->getParent(); 00159 // A phi's use is live out of its predecessor block. 00160 if (PHINode *PHI = dyn_cast<PHINode>(User)) { 00161 unsigned OperandNo = UI.getOperandNo(); 00162 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); 00163 UseBB = PHI->getIncomingBlock(ValNo); 00164 } 00165 if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests)) 00166 return false; 00167 00168 // Descend recursively, but not into PHI nodes outside the current loop. 00169 // It's important to see the entire expression outside the loop to get 00170 // choices that depend on addressing mode use right, although we won't 00171 // consider references outside the loop in all cases. 00172 // If User is already in Processed, we don't want to recurse into it again, 00173 // but do want to record a second reference in the same instruction. 00174 bool AddUserToIVUsers = false; 00175 if (LI->getLoopFor(User->getParent()) != L) { 00176 if (isa<PHINode>(User) || Processed.count(User) || 00177 !AddUsersImpl(User, SimpleLoopNests)) { 00178 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n' 00179 << " OF SCEV: " << *ISE << '\n'); 00180 AddUserToIVUsers = true; 00181 } 00182 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { 00183 DEBUG(dbgs() << "FOUND USER: " << *User << '\n' 00184 << " OF SCEV: " << *ISE << '\n'); 00185 AddUserToIVUsers = true; 00186 } 00187 00188 if (AddUserToIVUsers) { 00189 // Okay, we found a user that we cannot reduce. 00190 IVUses.push_back(new IVStrideUse(this, User, I)); 00191 IVStrideUse &NewUse = IVUses.back(); 00192 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops. 00193 // The regular return value here is discarded; instead of recording 00194 // it, we just recompute it when we need it. 00195 ISE = TransformForPostIncUse(NormalizeAutodetect, 00196 ISE, User, I, 00197 NewUse.PostIncLoops, 00198 *SE, *DT); 00199 DEBUG(if (SE->getSCEV(I) != ISE) 00200 dbgs() << " NORMALIZED TO: " << *ISE << '\n'); 00201 } 00202 } 00203 return true; 00204 } 00205 00206 bool IVUsers::AddUsersIfInteresting(Instruction *I) { 00207 // SCEVExpander can only handle users that are dominated by simplified loop 00208 // entries. Keep track of all loops that are only dominated by other simple 00209 // loops so we don't traverse the domtree for each user. 00210 SmallPtrSet<Loop*,16> SimpleLoopNests; 00211 00212 return AddUsersImpl(I, SimpleLoopNests); 00213 } 00214 00215 IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) { 00216 IVUses.push_back(new IVStrideUse(this, User, Operand)); 00217 return IVUses.back(); 00218 } 00219 00220 IVUsers::IVUsers() 00221 : LoopPass(ID) { 00222 initializeIVUsersPass(*PassRegistry::getPassRegistry()); 00223 } 00224 00225 void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const { 00226 AU.addRequired<LoopInfo>(); 00227 AU.addRequired<DominatorTree>(); 00228 AU.addRequired<ScalarEvolution>(); 00229 AU.setPreservesAll(); 00230 } 00231 00232 bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) { 00233 00234 L = l; 00235 LI = &getAnalysis<LoopInfo>(); 00236 DT = &getAnalysis<DominatorTree>(); 00237 SE = &getAnalysis<ScalarEvolution>(); 00238 TD = getAnalysisIfAvailable<DataLayout>(); 00239 00240 // Find all uses of induction variables in this loop, and categorize 00241 // them by stride. Start by finding all of the PHI nodes in the header for 00242 // this loop. If they are induction variables, inspect their uses. 00243 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) 00244 (void)AddUsersIfInteresting(I); 00245 00246 return false; 00247 } 00248 00249 void IVUsers::print(raw_ostream &OS, const Module *M) const { 00250 OS << "IV Users for loop "; 00251 WriteAsOperand(OS, L->getHeader(), false); 00252 if (SE->hasLoopInvariantBackedgeTakenCount(L)) { 00253 OS << " with backedge-taken count " 00254 << *SE->getBackedgeTakenCount(L); 00255 } 00256 OS << ":\n"; 00257 00258 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(), 00259 E = IVUses.end(); UI != E; ++UI) { 00260 OS << " "; 00261 WriteAsOperand(OS, UI->getOperandValToReplace(), false); 00262 OS << " = " << *getReplacementExpr(*UI); 00263 for (PostIncLoopSet::const_iterator 00264 I = UI->PostIncLoops.begin(), 00265 E = UI->PostIncLoops.end(); I != E; ++I) { 00266 OS << " (post-inc with loop "; 00267 WriteAsOperand(OS, (*I)->getHeader(), false); 00268 OS << ")"; 00269 } 00270 OS << " in "; 00271 UI->getUser()->print(OS); 00272 OS << '\n'; 00273 } 00274 } 00275 00276 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 00277 void IVUsers::dump() const { 00278 print(dbgs()); 00279 } 00280 #endif 00281 00282 void IVUsers::releaseMemory() { 00283 Processed.clear(); 00284 IVUses.clear(); 00285 } 00286 00287 /// getReplacementExpr - Return a SCEV expression which computes the 00288 /// value of the OperandValToReplace. 00289 const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const { 00290 return SE->getSCEV(IU.getOperandValToReplace()); 00291 } 00292 00293 /// getExpr - Return the expression for the use. 00294 const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const { 00295 return 00296 TransformForPostIncUse(Normalize, getReplacementExpr(IU), 00297 IU.getUser(), IU.getOperandValToReplace(), 00298 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()), 00299 *SE, *DT); 00300 } 00301 00302 static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) { 00303 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { 00304 if (AR->getLoop() == L) 00305 return AR; 00306 return findAddRecForLoop(AR->getStart(), L); 00307 } 00308 00309 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { 00310 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end(); 00311 I != E; ++I) 00312 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L)) 00313 return AR; 00314 return 0; 00315 } 00316 00317 return 0; 00318 } 00319 00320 const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const { 00321 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L)) 00322 return AR->getStepRecurrence(*SE); 00323 return 0; 00324 } 00325 00326 void IVStrideUse::transformToPostInc(const Loop *L) { 00327 PostIncLoops.insert(L); 00328 } 00329 00330 void IVStrideUse::deleted() { 00331 // Remove this user from the list. 00332 Parent->Processed.erase(this->getUser()); 00333 Parent->IVUses.erase(this); 00334 // this now dangles! 00335 }