| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix misspelling | Chris Lattner | 2002-05-07 | 1 | -1/+1 |
* | Fix bug: test/Regression/Transforms/ADCE/2002-01-31-UseStuckAround.ll | Chris Lattner | 2002-05-07 | 1 | -46/+31 |
* | New testcase for adce | Chris Lattner | 2002-05-07 | 1 | -0/+37 |
* | Build the ADCE tests | Chris Lattner | 2002-05-07 | 1 | -1/+1 |
* | ADCE tests | Chris Lattner | 2002-05-07 | 2 | -0/+25 |
* | Implement constant propogation of PHI instructions like this: | Chris Lattner | 2002-05-07 | 1 | -1/+17 |
* | Oops, forgot to check in makefile | Chris Lattner | 2002-05-07 | 1 | -0/+10 |
* | Add check that phi nodes get constant propogated away | Chris Lattner | 2002-05-07 | 1 | -0/+18 |
* | constprop doesn't delete dead instructions, it just makes them dead. | Chris Lattner | 2002-05-07 | 3 | -3/+3 |
* | Add testcase for not expressions | Chris Lattner | 2002-05-07 | 1 | -0/+22 |
* | Merge all include/llvm/Transforms/Scalar/* into a single Scalar.h | Chris Lattner | 2002-05-07 | 5 | -17/+5 |
* | Merge all individual .h files into a single Scalar.h file | Chris Lattner | 2002-05-07 | 10 | -10/+10 |
* | This doesn't use DCE! | Chris Lattner | 2002-05-07 | 1 | -1/+0 |
* | Extend TargetData::getIndexedOffset to support arrays and pointers! | Chris Lattner | 2002-05-07 | 1 | -10/+13 |
* | These files are supersumed by include/llvm/Transforms/Scalar.h | Chris Lattner | 2002-05-07 | 8 | -172/+0 |
* | New header file to replace all of the Scalar/*.h files. | Chris Lattner | 2002-05-07 | 1 | -0/+120 |
* | Fix makefiles after shuffling passes around the libraries | Chris Lattner | 2002-05-07 | 3 | -3/+3 |
* | Move UnifyFunctionExitNodes to Utils library: final resting place this time | Chris Lattner | 2002-05-07 | 5 | -5/+5 |
* | fix comments and documentation in file | Chris Lattner | 2002-05-07 | 1 | -6/+4 |
* | Split ChangeAllocations.cpp into Raise & LowerAllocations.cpp | Chris Lattner | 2002-05-07 | 2 | -93/+118 |
* | Checkin headers for Utils library | Chris Lattner | 2002-05-07 | 2 | -0/+109 |
* | Cleanup implementation a bit + comments | Chris Lattner | 2002-05-07 | 1 | -19/+7 |
* | Cleanup implementation a bit | Chris Lattner | 2002-05-07 | 1 | -4/+6 |
* | Change script to not even look in test/ directory, significantly speeding it up | Chris Lattner | 2002-05-07 | 2 | -2/+2 |
* | Oops, somehow lost a slash. Fixed | Chris Lattner | 2002-05-07 | 1 | -1/+1 |
* | Updates to move some header files out of include/llvm/Transforms into | Chris Lattner | 2002-05-07 | 15 | -121/+130 |
* | Update header after moving file | Chris Lattner | 2002-05-07 | 3 | -12/+9 |
* | Remove long dead file | Chris Lattner | 2002-05-07 | 1 | -15/+0 |
* | Straighten out makefiles after moving code to new Transform Utils library | Chris Lattner | 2002-05-07 | 4 | -5/+5 |
* | Factor code out to the Transform Utils library | Chris Lattner | 2002-05-07 | 2 | -42/+3 |
* | Reduce dependance on TransformInternals.h, instead using the TransformUtils l... | Chris Lattner | 2002-05-07 | 5 | -9/+18 |
* | Add #include no longer included by llvm/Transforms/Scalar/ConstantProp.h | Chris Lattner | 2002-05-07 | 1 | -0/+1 |
* | Factor code out to the TransformUtils library | Chris Lattner | 2002-05-07 | 2 | -102/+5 |
* | Factor code out of TransformInternals into the Transform Utils library | Chris Lattner | 2002-05-07 | 2 | -88/+0 |
* | Build Transforms Utils library | Chris Lattner | 2002-05-07 | 1 | -1/+1 |
* | Add code pulled out of TransformInternals.cpp, ConstProp.cpp, and DCE.cpp | Chris Lattner | 2002-05-07 | 3 | -0/+196 |
* | * Convert InstWorkList to vector instead of set, because on big programs it | Chris Lattner | 2002-05-07 | 1 | -5/+5 |
* | * Remove all cfg simplification stuff for a new cfg simplify pass (todo) | Chris Lattner | 2002-05-07 | 1 | -330/+85 |
* | Finish up the updates to the language reference | Chris Lattner | 2002-05-06 | 1 | -68/+192 |
* | Mark analyses that only depend on the CFG of a function | Chris Lattner | 2002-05-06 | 4 | -18/+18 |
* | Make functions that preserve the CFG not invalidate analyses that only depend | Chris Lattner | 2002-05-06 | 1 | -1/+28 |
* | Add support for passes to announce that they only depend on the CFG of a | Chris Lattner | 2002-05-06 | 1 | -0/+9 |
* | Only do masking for unsigned values! | Chris Lattner | 2002-05-06 | 1 | -8/+7 |
* | GCSE is faster than SCCP, and it makes SCCP's job easier, so run it first. | Chris Lattner | 2002-05-06 | 1 | -1/+1 |
* | * Eliminate dead code that should have been removed in last revision | Chris Lattner | 2002-05-06 | 1 | -146/+50 |
* | Handle X = phi Y --> X = Y | Chris Lattner | 2002-05-06 | 1 | -0/+19 |
* | Make the testcase more interesting so that DCE does not eliminate it. | Chris Lattner | 2002-05-06 | 1 | -5/+7 |
* | Move a bunch of code to a .cpp file, don't #include Instruction.h | Chris Lattner | 2002-05-06 | 3 | -129/+36 |
* | Move code out of header file | Chris Lattner | 2002-05-06 | 1 | -0/+81 |
* | * Use simplified interface to constant propogation stuff. | Chris Lattner | 2002-05-06 | 1 | -35/+8 |