summaryrefslogtreecommitdiffstats
path: root/llvm/tools/analyze/GraphPrinters.cpp
Commit message (Collapse)AuthorAgeFilesLines
* For PR872:Reid Spencer2006-08-181-77/+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
* Patches to make the LLVM sources more -pedantic clean. Patch providedChris Lattner2006-05-241-1/+1
| | | | | | by Anton Korobeynikov! This is a step towards closing PR786. llvm-svn: 28447
* Remove trailing whitespaceMisha Brukman2005-04-221-5/+5
| | | | 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
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
| | | | | | | | 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
* finegrainify namespacificationChris Lattner2004-04-121-17/+16
| | | | llvm-svn: 12862
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
| | | | llvm-svn: 9903
* Delete the -print-cfg pass from this fileChris Lattner2003-10-221-67/+2
| | | | llvm-svn: 9372
* 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
* Implement a new -print-callgraph analysis that turns a callgraph into a dotChris Lattner2002-11-041-1/+45
| | | | | | graph llvm-svn: 4524
* - Implement a new -print-cfg option for analyze, that causes it to print theChris Lattner2002-10-071-0/+88
CFG of each function in the module to 'dot' files. llvm-svn: 4062
OpenPOWER on IntegriCloud