aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LoopPass.cpp
AgeCommit message (Expand)Author
2009-09-03Don't try to verify a LoopPass analysis if the loop has been deleted.Dan Gohman
2009-08-23convert LoopInfo.h and GraphWriter.h to use raw_ostreamChris Lattner
2009-06-29Call doInitialization(), releaseMemory(), and doFinalization() for on-the-fly...Torok Edwin
2009-03-25Before deleting a basic block, give other loop passes a chance cleanup analys...Devang Patel
2009-03-06Sprinkle some PrettyStackEntry magic into the passmanager. With this, we nowChris Lattner
2009-02-17Add a method to ScalarEvolution for telling it when a loop has beenDan Gohman
2009-02-17Move dumpPassStructure out of line.Dan Gohman
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-08Don't call getAnalysisUsage unless -debug-pass is enabled. This speedsChris Lattner
2008-07-11Fix spelling of "hierarchy" in comments.Dan Gohman
2008-07-03Keep track of inherited analysis (e.g. dominator tree).Devang Patel
2008-07-01Fix typos in comments. Devang Patel
2008-07-01Add dom info verifier.Devang Patel
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-10-03Use empty() member functions when that's what's being tested for insteadDan Gohman
2007-09-18ooops...Devang Patel
2007-08-20- Use correct header for SCEV inside LoopPass.cppAnton Korobeynikov
2007-07-31Introduce Simple Analysis interface for loop passes.Devang Patel
2007-07-19Verify loop info.Devang Patel
2007-07-19Replace mysterious code causing a g++-4.2 warningDuncan Sands
2007-06-29Add loop info verification mechanism.Devang Patel
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-03-07Now IndVarSimplify is a LoopPass.Devang Patel
2007-03-07Now LoopUnswitch is a LoopPass.Devang Patel
2007-03-06Insert loop into LQ before visiting children.Devang Patel
2007-03-06Use schedulePass() instead of assignPassManager() to add new LPPassManager.Devang Patel
2007-03-06Add LPPassManager::insertLoop().Devang Patel
2007-03-06LPPassManager::deleteLoopFromQueue() add meat. Cut-n-paste code fromDevang Patel
2007-03-06LPPassManager. Implement preparePassManager() hook.Devang Patel
2007-03-06LPPassManager : Add initialization and finalizatino hooks.Devang Patel
2007-03-06Use std::deque to manage loop queue inside LPPassManager.Devang Patel
2007-03-05Avoid constructing std::strings unless pass debugging is ON.Devang Patel
2007-02-23Fix thinko.Devang Patel
2007-02-23Loop passes are set up to accept pointer.Devang Patel
2007-02-23Teach LoopPass to assign itself one Loop Pass Manager.Devang Patel
2007-02-23Add facility that allows LoopPass to re-insert a loop intoDevang Patel
2007-02-23Add LPPassManager interface that LoopPass can use to skipDevang Patel
2007-02-22Populate and walk loop queue.Devang Patel
2007-02-22Add LoopQueue. This is used by loop pass manager to manage loop nest.Devang Patel
2007-02-22Add Loop Pass Manager.Devang Patel