summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
Commit message (Expand)AuthorAge
...
* tidy upChris Lattner2009-09-21
* Change PHINode::hasConstantValue to have a DominatorTree argumentDan Gohman2009-09-03
* Fix a bunch of namespace pollution.Dan Gohman2009-08-07
* Move more code back to 2.5 APIs.Owen Anderson2009-07-30
* Twines: Don't allow implicit conversion from integers, this is too tricky.Daniel Dunbar2009-07-30
* Switch obvious clients to Twine instead of utostr (when they were already usingDaniel Dunbar2009-07-30
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* "LLVMContext* " --> "LLVMContext *"Owen Anderson2009-07-06
* More LLVMContext-ification.Owen Anderson2009-07-05
* Simplify code by using SmallVector's pop_back_val() instead ofDan Gohman2009-05-06
* Fix for PR3944: make mem2reg O(N) instead of O(N^2) in the number of Eli Friedman2009-04-16
* Tweak the check for promotable alloca's to handleDale Johannesen2009-03-06
* Let AnalyzeAlloca() remove debug intrinsics.Devang Patel2008-11-17
* Rework r58829, allowing removal of dbg info intrinsics during allocaDaniel Dunbar2008-11-08
* BCUI + 1 doesn't work. Use next instead.Bill Wendling2008-11-07
* Handle (delete) dbg intrinsics while promoting alloca.Devang Patel2008-11-07
* Rewrite all the 'PromoteLocallyUsedAlloca[s]' logic. With the power ofChris Lattner2008-10-27
* Add a new LargeBlockInfo helper, which is just a wrapper aroundChris Lattner2008-10-27
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-06
* Update -mem2reg to use succ_iterator instead of iterating across TerminatorInstNick Lewycky2008-03-13
* Make RenamePass faster by making the 'is this a new phi node'Chris Lattner2008-02-05
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Finishing initial docs for all transformations in Passes.html.Gordon Henriksen2007-11-04
* Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfoChris Lattner2007-09-17
* Don't promote volatile loads/stores. This is needed (for example) to handle s...Anton Korobeynikov2007-08-26
* rewrite the code used to construct pruned SSA form with the IDF method.Chris Lattner2007-08-04
* Factor out a whole bunch of code into it's own method.Chris Lattner2007-08-04
* Use getNumPreds(BB) instead of computing them manually. This is a very small butChris Lattner2007-08-04
* Change the rename pass to be "tail recursive", only adding N-1 successorsChris Lattner2007-08-04
* cache computation of #preds for a BB. This speeds upChris Lattner2007-08-04
* reserve operand space for phi nodes when we insert them.Chris Lattner2007-08-04
* use continue to avoid nesting, no functionality change.Chris Lattner2007-08-04
* Promoting allocas with the 'single store' fastpath is Chris Lattner2007-08-04
* When PromoteLocallyUsedAllocas promoted allocas, it didn't rememberChris Lattner2007-08-04
* std::map -> DenseMapChris Lattner2007-08-04
* fix a logic bug where we wouldn't promote single store allocas if the Chris Lattner2007-08-04
* When we do the single-store optimization, delete both the storeChris Lattner2007-08-04
* Three improvements:Chris Lattner2007-08-04
* switch from using a std::set to using a SmallPtrSet. This speeds up theChris Lattner2007-08-04
* In mem2reg, when handling the single-store case, make sure to removeChris Lattner2007-08-04
* split rewriting of single-store allocas into its ownChris Lattner2007-08-04
* refactor some code to shrink PromoteMem2Reg::run a bitChris Lattner2007-08-04
* add a typedef, no other change.Chris Lattner2007-08-04
* avoid an unneeded vector copy. This speeds up mem2reg on the testcase Chris Lattner2007-08-04
* make RenamePassWorkList a local var instead of an ivar.Chris Lattner2007-08-04
* Use DominatorTree instead of ETForest.Devang Patel2007-06-07
* Mem2Reg does not need TargetData.Devang Patel2007-04-25
* Remove unused function argument.Devang Patel2007-04-25
* Fix a comment.Owen Anderson2007-04-21
* Move more passes to using ETForest instead of DominatorTree.Owen Anderson2007-04-20