aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
AgeCommit message (Expand)Author
2003-10-18Fix PR#50Chris Lattner
2003-10-05This changes the PromoteMemToReg function to create "pruned" SSA form, notChris Lattner
2003-10-05Change the interface to PromoteMemToReg to also take a DominatorTreeChris Lattner
2003-10-05Speed up the mem2reg transform for allocas which are only read/written in a s...Chris Lattner
2003-10-05The first PHI node may be null, scan for the first non-null oneChris Lattner
2003-10-05The VersionNumbers vector is only used during PHI placement. Turn it into an...Chris Lattner
2003-10-05* Update file header commentChris Lattner
2003-10-05Simplify the loop a bitChris Lattner
2003-10-05There is no need for separate WriteSets and PhiNodeBlocks lists. It is just aChris Lattner
2003-10-05The PhiNodes 2D vector is only used during PHI node placement. It doesn'tChris Lattner
2003-10-05* Document instance vars betterChris Lattner
2003-10-05Two small cleanups/speedups:Chris Lattner
2003-10-05* Minor cleanupsChris Lattner
2003-08-18Spell `necessary' correctly.Misha Brukman
2003-04-25Fix bug: mem2reg/2003-04-24-MultipleIdenticalSuccessors.llChris Lattner
2003-04-24Fix iterator invalidation problemChris Lattner
2003-04-21Fix bug where use still existed in dead codeChris Lattner
2003-04-18Fix bug: Mem2reg/2003-04-18-DeadBlockProblem.llChris Lattner
2003-04-10* Fix bug: Mem2Reg/2003-04-10-DFNotFound.llChris Lattner
2003-03-03Change the mem2reg interface to accept a TargetData argumentChris Lattner
2003-02-22Split mem2reg promotion into two parts: a function which does the work, andChris Lattner
2003-02-22Clean up std namespace referencesChris Lattner
2002-10-21 - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG toChris Lattner
2002-10-01Updates to work with recent Statistic's changes:Chris Lattner
2002-09-24 - Fix bug: Mem2Reg/2002-05-01-ShouldNotPromoteThisAlloca.llChris Lattner
2002-09-10Clean up code due to auto-insert constructorsChris Lattner
2002-08-22Eliminated the MemAccessInst class, folding contents into GEP class.Chris Lattner
2002-08-08- Cleaned up the interface to AnalysisUsage to take analysis class namesChris Lattner
2002-07-26* Add support for different "PassType's"Chris Lattner
2002-07-23*** empty log message ***Chris Lattner
2002-06-25MEGAPATCH checkin.Chris Lattner
2002-05-10Add support for printing out statistics information when -stats is added toChris Lattner
2002-05-07Merge all individual .h files into a single Scalar.h fileChris Lattner
2002-05-01Fixed bug: test/Regression/Transforms/Mem2Reg/2002-05-01-ShouldNotPromoteThis...Chris Lattner
2002-04-29changes because iMemory.h no longer #includes DerivedTypes.hChris Lattner
2002-04-29Eliminate duplicate or unneccesary #include'sChris Lattner
2002-04-29Add new optional getPassName() virtual function that a Pass can overrideChris Lattner
2002-04-28Tighten up the AnalysisUsage of lots of passes, primarily to correctly indica...Chris Lattner
2002-04-28Split ConstantVals.h into Constant.h and Constants.hChris Lattner
2002-04-28Eliminate the PromoteInstance class, incorporating it into the PromotePassChris Lattner
2002-04-28Eliminate visited, CurrentValue, and WriteSets as instance variables ofChris Lattner
2002-04-28* Fix bug: test/Regression/Transforms/Mem2Reg/2002-03-28-UninitializedVal.llChris Lattner
2002-04-28This huge changeset is a strictly cleanup changeChris Lattner
2002-04-28Eliminate the cfg namespace, moving LoopInfo, Dominators, Interval* classesChris Lattner
2002-04-28Change the Dominator info and LoopInfo classes to keep track of BasicBlock's,...Chris Lattner
2002-04-27* Rename MethodPass class to FunctionPassChris Lattner
2002-04-09Add #includes to make up for #includes pruned out of header files.Chris Lattner
2002-04-08s/Method/FunctionChris Lattner
2002-04-07Change references to the Method class to be references to the FunctionChris Lattner
2002-03-27* Move classes aroundCameron Buschardt