summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/PRE.cpp
Commit message (Collapse)AuthorAgeFilesLines
* This pass has never worked correctly. Remove.Chris Lattner2006-01-161-629/+0
| | | | llvm-svn: 25349
* Remove trailing whitespaceMisha Brukman2005-04-211-10/+10
| | | | llvm-svn: 21427
* Add more missing createXxxPass functions.Jeff Cohen2005-01-081-0/+1
| | | | llvm-svn: 19370
* This pass is completely broken.Chris Lattner2004-11-301-11/+4
| | | | llvm-svn: 18387
* Fix compatibility with MSVC, patch by Morten OfstadChris Lattner2004-10-251-0/+1
| | | | llvm-svn: 17218
* Changes For Bug 352Reid Spencer2004-09-011-5/+5
| | | | | | | | Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
* Fix #includes of i*.h => Instructions.h as per PR403.Misha Brukman2004-07-291-2/+1
| | | | llvm-svn: 15328
* Fixes working towards PR341Chris Lattner2004-07-151-8/+9
| | | | llvm-svn: 14839
* Finegrainify namespacificationChris Lattner2004-01-091-4/+2
| | | | llvm-svn: 10725
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-1/+5
| | | | llvm-svn: 9903
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
| | | | | | Header files will be on the way. llvm-svn: 9298
* Renamed DominatorTree::Node::getNode() -> getBlock()Chris Lattner2003-09-111-5/+5
| | | | llvm-svn: 8469
* Spell `occurrence' correctly.Misha Brukman2003-09-091-59/+58
| | | | llvm-svn: 8425
* DEBUG got moved to Support/Debug.hChris Lattner2003-08-011-0/+1
| | | | llvm-svn: 7492
* Add commentChris Lattner2003-05-291-0/+11
| | | | llvm-svn: 6415
* Initial checkin of PRE on LLVM. This implementation is still lacking inChris Lattner2003-03-311-0/+614
several ways: * Load expressions are not PRE'd well. Alias Analysis should be used to get accurate information when computing anticipatibility. * The expression collection implementation does not handle PHI nodes properly, thus the implementation misses many opportunities to PRE. * This code could be sped up quite a bit Despite these flaws, the code seems to work well, and handles PR's as one would expect. llvm-svn: 5759
OpenPOWER on IntegriCloud