summaryrefslogtreecommitdiffstats
path: root/llvm/tools/analyze/AnalysisWrappers.cpp
Commit message (Collapse)AuthorAgeFilesLines
* For PR872:Reid Spencer2006-08-181-81/+0
| | | | | | | | | | | | | | | | | | | | Shrinkify LLVM's footprint by removing the analyze tool and moving its functionality into the opt tool. THis eliminates one of the largest tools from LLVM and doesn't make opt much bigger because it already included most of the analysis passes. To get the old analyze functionality pass the -analyze option to opt. Note that the integeration here is dead simple. The "main" of analyze was just copied to opt and invoked if the -analyze option was given. There may be opportunities for further integration such as removing the distinction between transform passes and analysis passes. To use the analysis functionality, if you previously did this: analyze $FNAME -domset -disable-verify you would now do this: opt -analyze $FNAME -domset -disable-verify Pretty simple. llvm-svn: 29762
* fix printing call graphsAndrew Lenharth2006-04-181-1/+1
| | | | llvm-svn: 27820
* Fix test/Regression/Other/2002-01-31-CallGraph.ll after the recent callgraphChris Lattner2005-12-221-3/+17
| | | | | | rework. llvm-svn: 24959
* Remove trailing whitespaceMisha Brukman2005-04-221-3/+3
| | | | llvm-svn: 21428
* 'Pass' should now not be derived from by clients. Instead, they should deriveChris Lattner2004-09-201-2/+2
| | | | | | | from ModulePass. Instead of implementing Pass::run, then should implement ModulePass::runOnModule. llvm-svn: 16436
* Remove this printerChris Lattner2004-07-181-19/+0
| | | | llvm-svn: 14980
* bug 122:Reid Spencer2004-07-181-1/+1
| | | | | | - Minimize redundant isa<GlobalValue> usage llvm-svn: 14952
* Add #include <iostream> since Value.h does not include it any more.Reid Spencer2004-07-041-0/+1
| | | | llvm-svn: 14623
* Right, globals aren't values yet..Chris Lattner2004-05-271-1/+1
| | | | llvm-svn: 13822
* Add a simple pass.Chris Lattner2004-05-271-0/+45
| | | | llvm-svn: 13820
* Remove obsolete analysesChris Lattner2004-04-021-71/+1
| | | | llvm-svn: 12634
* Rename methodChris Lattner2003-12-231-1/+1
| | | | llvm-svn: 10593
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+2
| | | | llvm-svn: 9903
* fix file headersChris Lattner2003-10-201-1/+0
| | | | llvm-svn: 9293
* Added copyright header to all C++ source files.John Criswell2003-10-201-0/+8
| | | | llvm-svn: 9291
* The word `separate' only has one `e'.Misha Brukman2003-07-141-1/+1
| | | | llvm-svn: 7173
* - Eliminate the last traces of the 'analysis' namespaceChris Lattner2002-08-301-4/+4
| | | | llvm-svn: 3550
* - Cleaned up the interface to AnalysisUsage to take analysis class namesChris Lattner2002-08-081-1/+1
| | | | | | | instead of ::ID's. - Pass::getAnalysis<> now no longer takes an optional argument llvm-svn: 3265
* Seperate analysis wrapper stuff to AnalysisWrappers.cppChris Lattner2002-07-291-0/+101
llvm-svn: 3127
OpenPOWER on IntegriCloud