aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/LICM.cpp
AgeCommit message (Expand)Author
2009-03-09reimplement AliasSetTracker in terms of DenseMap instead of hash_map,Chris Lattner
2009-02-12This code doesn't actually use the ExitingBlocks list.Dan Gohman
2008-10-22Change create*Pass factory functions to return Pass* instead ofDaniel Dunbar
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-07-24Put the LICM of constant GlobalVariables, introduced in r53945, under aDan Gohman
2008-07-23"Allow LICM to sink or lift loads from constant memory. Also add a testChris Lattner
2008-06-22Use Loop::block_iterator.Dan Gohman
2008-05-23Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places toDan Gohman
2008-05-22rewrite the validity checking for memory promotion to be simpler,Chris Lattner
2008-05-22Use 'continue' to reduce nesting in this loop. No functionality change.Chris Lattner
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-05-06Make several variable declarations static.Dan Gohman
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-01Integrate the readonly/readnone logic more deeplyDuncan Sands
2007-11-25Remove another leak. Due to some reason AliasSetTracker didn't had any dtor...Anton Korobeynikov
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands
2007-10-31Fix a typo in a comment.Dan Gohman
2007-10-03Use empty() member functions when that's what's being tested for insteadDan Gohman
2007-10-01Relax unsafe use check. If there is one unconditional use inside the loop the...Devang Patel
2007-09-25Do not reserve DOM check for GetElementPtrInst.Devang Patel
2007-09-24 Do not promote null values because it may be unsafe to do so.Devang Patel
2007-09-19Avoid unsafe promotion.Devang Patel
2007-09-18Fix PR1657Devang Patel
2007-08-21Use SmallVector instead of std::vector.Devang Patel
2007-08-18Typo.Nick Lewycky
2007-07-31Add note.Devang Patel
2007-07-31Implement Simple Analysis interfaces - cloneBasicBlockAnalysis and deleteAnal...Devang Patel
2007-07-30LICM preserves scalar evolution and dom frontier.Devang Patel
2007-06-07Do not require ETForest. Now it is unused by LICM.Devang Patel
2007-06-07Use DominatorTree instead of ETForest.Devang Patel
2007-06-05Allow insertelement, extractelement, and shufflevector to be hoisted/sunkDan Gohman
2007-06-04s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/gDevang Patel
2007-06-03s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/gDevang Patel
2007-06-01Insert new instructions in AliasSet.Devang Patel
2007-05-30Fix typo.Devang Patel
2007-05-06Fix typo in comment.Nick Lewycky
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-04-25Mem2Reg does not need TargetData.Devang Patel
2007-04-24Rollback some changes that adversely affected performance. I'm currently ret...Owen Anderson
2007-04-21Fix a comment.Owen Anderson
2007-04-20Move more passes to using ETForest instead of DominatorTree.Owen Anderson
2007-04-18Switch more uses of DominatorTree over to ETForest.Owen Anderson
2007-04-17Spell doFinalization right, so that it is a proper virtual override andDan Gohman
2007-04-14fix long linesChris Lattner
2007-03-22Change uses of Function::front to Function::getEntryBlock for readability.Dan Gohman
2007-03-07Now LICM is a LoopPass.Devang Patel
2007-02-05Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes inReid Spencer