Remove dead code
[oota-llvm.git] / lib / Transforms /
2002-05-06 Chris LattnerMerge blocks like this:
2002-05-06 Chris LattnerImplement constant propogation of shift instructions
2002-05-02 Chris LattnerOk, really it only takes me 3 times to get this right!
2002-05-02 Chris LattnerOops, disable debugging code all the way. :)
2002-05-02 Chris Lattner* Finish the implementation of isEdgeFeasible this...
2002-05-02 Chris Lattner* Enable SCCP debugging to be turned on with a simple...
2002-05-02 Chris Lattner* Simplify the code by not bothering to name the folded...
2002-05-02 Chris LattnerExprTypeConvert will already do this transformation...
2002-05-02 Chris LattnerBe a little more efficient, do not generate loads and...
2002-05-02 Chris LattnerFix bug: test/Regression/Transforms/LevelRaise/2002...
2002-05-02 Chris Lattner* Add ability to eliminate a bunch of different cascadi...
2002-05-01 Chris LattnerFixed bug: test/Regression/Transforms/Mem2Reg/2002...
2002-04-30 Chris LattnerRemove unneccesary pass
2002-04-29 Chris LattnerAdd folding rules for mul X, 0 and mul X, 2
2002-04-29 Chris LattnerSignificantly clean up SCCP pass. Now the two classes...
2002-04-29 Chris LattnerRange insertion now returns an iterator
2002-04-29 Chris LattnerRemove unused files: This is the old induction varaibl...
2002-04-29 Chris LattnerFix for problem when allocating something like this:
2002-04-29 Chris Lattnerchanges because iMemory.h no longer #includes DerivedTy...
2002-04-29 Chris LattnerEliminate dead global variables
2002-04-29 Chris LattnerEliminate duplicate or unneccesary #include's
2002-04-29 Chris LattnerRemove broken assertion.
2002-04-29 Chris LattnerAdd new optional getPassName() virtual function that...
2002-04-29 Chris LattnerMore cleanups
2002-04-29 Chris LattnerCode cleanups
2002-04-28 Chris LattnerTighten up the AnalysisUsage of lots of passes, primari...
2002-04-28 Chris LattnerSplit ConstantVals.h into Constant.h and Constants.h
2002-04-28 Chris LattnerEliminate the PromoteInstance class, incorporating...
2002-04-28 Chris LattnerEliminate visited, CurrentValue, and WriteSets as insta...
2002-04-28 Chris Lattner* Fix bug: test/Regression/Transforms/Mem2Reg/2002...
2002-04-28 Chris LattnerThis huge changeset is a strictly cleanup change
2002-04-28 Chris LattnerEliminate the cfg namespace, moving LoopInfo, Dominator...
2002-04-28 Chris LattnerBe careful not to make "external" function internal
2002-04-28 Chris LattnerInitial checkin of new "Internalize" pass for GCCLD
2002-04-28 Chris LattnerInitial checkin of simple&fast SSA based GCSE algorithm
2002-04-28 Chris LattnerChange the Dominator info and LoopInfo classes to keep...
2002-04-27 Chris Lattners/Method/Function
2002-04-27 Chris Lattner* Rename MethodPass class to FunctionPass
2002-04-27 Chris LattnerChanges because the Terminator::getSuccessor function...
2002-04-27 Chris Lattner* Change Constant::getNullConstant to Constant::getNull...
2002-04-27 Chris LattnerChange Constant::getNullConstant to Constant::getNullValue
2002-04-18 Chris LattnerPrograms that actually free memory were broken
2002-04-18 Chris LattnerAdd a fixme so that we don't forget this is broken.
2002-04-18 Chris LattnerSignificantly rework InstructionCombining to work bette...
2002-04-18 Chris LattnerConvert SCCP over to use InstVisitor instead of hand...
2002-04-18 Chris LattnerGEP instructions can never be constant propogated.
2002-04-18 Chris LattnerStore instructions always return void, so they never...
2002-04-18 Chris LattnerCorrectly transform dependant arguments, allowing the...
2002-04-16 Chris LattnerAdd casts for documentation
2002-04-16 Chris Lattner* Clean up the code a bit
2002-04-15 Chris Lattnerrun an extra pass after a function has been transformed...
2002-04-15 Chris LattnerEliminate cast of same type instructions.
2002-04-14 Chris Lattner* s/Method/Function
2002-04-14 Chris LattnerTurn off debug output
2002-04-13 Chris Lattner* Allow datasize to be specified on the commandline
2002-04-13 Chris Lattner* Give alloca's for pool descriptors better names than...
2002-04-13 Chris Lattner* Add names to the symbol table for pool types and...
2002-04-12 Chris LattnerImplement function rewriting to use offsets instead...
2002-04-10 Chris Lattner* Add documentation
2002-04-09 Chris LattnerImplement TODO, fixing bug:
2002-04-09 Chris LattnerMove FunctionArgument out of iOther.h into Argument...
2002-04-09 Chris LattnerAdd explicit #includes of Function.h to make up for...
2002-04-09 Chris LattnerAdd #includes to make up for #includes pruned out of...
2002-04-08 Chris Lattners/Method/Function
2002-04-08 Chris LattnerConstantHandling moved into VMCore library
2002-04-07 Chris LattnerEliminate explicit use of Writer library, using debug...
2002-04-07 Chris LattnerChange references to the Method class to be references...
2002-04-04 Chris Lattners/MethodType/FunctionType
2002-04-04 Chris LattnerPATypeHolder is now not a template
2002-04-01 Chris LattnerAllow scalars that point to multiple nodes when buildin...
2002-04-01 Chris LattnerAdd extra case here to avoid getting spurious output
2002-03-31 Chris LattnerAdd debug output
2002-03-30 Chris Lattner* Catch and ignore (for now) return instructions in...
2002-03-30 Chris Lattner* Clean up data structures [AllocDSNode -> DSNode]
2002-03-30 Chris LattnerMaintain enough information so that the pools for all...
2002-03-29 Chris LattnerImplement the first batch of transformations to the...
2002-03-29 Chris LattnerCorrectly clone the function with the extra argument...
2002-03-29 Chris Lattners/Method/Function
2002-03-29 Chris LattnerNew clone function routine
2002-03-29 Chris LattnerFind out which calls in the function we need to transfo...
2002-03-29 Chris Lattners/Method/Function
2002-03-29 Chris LattnerModularize code a bit
2002-03-29 Chris LattnerImplement the first step of pool allocation - Creating...
2002-03-29 Chris Lattners/Method/Function
2002-03-29 Chris LattnerSimplify code a bit by using Module::getOrInsertFunction
2002-03-29 Chris LattnerFlesh out a bunch more code, print allocations that...
2002-03-29 Chris Lattners/method/function
2002-03-29 Chris Lattners/Method/Function/g
2002-03-29 Chris LattnerSimplify code a lot by using the Module::getFunction...
2002-03-28 Chris LattnerInitial checkin of Noop pass that will be the pool...
2002-03-27 Cameron Buschardt* Move classes around
2002-03-27 Cameron BuschardtImplemented promote mem->reg pass.
2002-03-26 Chris LattnerChange references from Method to Function
2002-03-24 Vikram S. AdveMoved to directory Scalar/ and renamed.
2002-03-24 Vikram S. AdveMajor overhaul to support arbitrary mixed array and...
2002-03-23 Chris LattnerRename Method to Function
2002-03-23 Vikram S. AdveNew pass to decompose multi-dimensional array reference...
2002-03-21 Chris LattnerFix bug test/Regression/Transforms/LevelRaise/2002...
2002-03-21 Chris LattnerFix test/Regression/Transforms/LevelRaise/2002-03-21...
2002-03-21 Chris LattnerFix test/Regression/Other/2002-03-21-LevelRaiseMiss.ll
next