aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/LICM.cpp
AgeCommit message (Expand)Author
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
2007-02-02Changes to support making the shift instructions be true BinaryOperators.Reid Spencer
2007-01-30Adjust #includes to match movement of constant folding code from transformuti...Chris Lattner
2006-12-23For PR950:Reid Spencer
2006-12-19Switch over Transforms/Scalar to use the STATISTIC macro. For each statisticChris Lattner
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-11-27For PR950:Reid Spencer
2006-11-26Removed #include <iostream> and replaced with llvm_* streams.Bill Wendling
2006-09-12An sinkable instruction may exist with uses, if those uses are in dead blocks.Chris Lattner
2006-08-27eliminate RegisterOpt. It does the same thing as RegisterPass.Chris Lattner
2006-06-26random code cleanups, no functionality changeChris Lattner
2006-01-22Make iostream #inclusion explicitChris Lattner
2005-06-20prevent va_arg from being hoisted from a loopAndrew Lenharth
2005-06-18core changes for varargsAndrew Lenharth
2005-04-21Remove trailing whitespaceMisha Brukman
2005-03-25Fix a bug where LICM was not updating AA information properly when sinkingChris Lattner
2005-03-23enable -debug-only=licmChris Lattner
2004-12-15Adjust to new interfacesChris Lattner
2004-11-29Allow hoisting loads of globals and alloca's in conditionals.Chris Lattner