Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rationalize the names of passes that print information: | Duncan Sands | 2008-09-23 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | -callgraph => print-callgraph -callscc => print-callgraph-sccs -cfgscc => print-cfg-sccs -externalfnconstants => print-externalfnconstants -print => print-function -print-alias-sets (no change) -print-callgraph => dot-callgraph -print-cfg => dot-cfg -print-cfg-only => dot-cfg-only -print-dom-info (no change) -printm => print-module -printusedtypes => print-used-types llvm-svn: 56487 | ||||
* | Tidy up several unbeseeming casts from pointer to intptr_t. | Dan Gohman | 2008-09-04 | 1 | -5/+5 |
| | | | | llvm-svn: 55779 | ||||
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -14/+21 |
| | | | | | | | several things that were neither in an anonymous namespace nor static but not intended to be global. llvm-svn: 51017 | ||||
* | Restore isCFGOnly property of various analysis passes. | Devang Patel | 2008-03-20 | 1 | -4/+4 |
| | | | | llvm-svn: 48579 | ||||
* | PassInfo keep tracks whether a pass is an analysis pass or not. | Devang Patel | 2008-03-19 | 1 | -7/+7 |
| | | | | llvm-svn: 48554 | ||||
* | Do not use virtual function to identify an analysis pass. | Devang Patel | 2008-03-19 | 1 | -16/+3 |
| | | | | llvm-svn: 48520 | ||||
* | Identify Analysis pass. | Devang Patel | 2008-03-18 | 1 | -0/+13 |
| | | | | | | | Do not run analysis pass again if analysis info is still available. This fixes PR1441. llvm-svn: 48476 | ||||
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| | | | | llvm-svn: 45418 | ||||
* | Add explicit keywords. | Dan Gohman | 2007-07-02 | 1 | -1/+1 |
| | | | | llvm-svn: 37839 | ||||
* | Fix PR 1497 | Devang Patel | 2007-06-05 | 1 | -0/+2 |
| | | | | | | Use separate pass id for CFGOnlyPrinter. llvm-svn: 37439 | ||||
* | Add passes -view-cfg and -view-cfg-only that are like -print-cfg and | Dan Gohman | 2007-05-14 | 1 | -0/+42 |
| | | | | | | | -print-cfg-only except they use the ViewCFG function, which displays the CFG rendered with graphviz with gv. llvm-svn: 37033 | ||||
* | Fix typo in comment. | Nick Lewycky | 2007-05-06 | 1 | -2/+2 |
| | | | | llvm-svn: 36873 | ||||
* | Drop 'const' | Devang Patel | 2007-05-03 | 1 | -4/+4 |
| | | | | llvm-svn: 36662 | ||||
* | Use 'static const char' instead of 'static const int'. | Devang Patel | 2007-05-02 | 1 | -4/+4 |
| | | | | | | | Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. llvm-svn: 36652 | ||||
* | Do not use typeinfo to identify pass in pass manager. | Devang Patel | 2007-05-01 | 1 | -0/+6 |
| | | | | llvm-svn: 36632 | ||||
* | Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduce | Reid Spencer | 2007-02-05 | 1 | -2/+3 |
| | | | | | | LLVM's footprint and speed up linking. llvm-svn: 33941 | ||||
* | Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are | Bill Wendling | 2006-12-07 | 1 | -3/+3 |
| | | | | | | now cerr, cout, and NullStream resp. llvm-svn: 32298 | ||||
* | Remove the 'printname' argument to WriteAsOperand. It is always true, and | Chris Lattner | 2006-12-06 | 1 | -2/+2 |
| | | | | | | passing false would make the asmprinter fail anyway. llvm-svn: 32264 | ||||
* | Removed some of the iostream #includes. Moved towards converting to using | Bill Wendling | 2006-11-28 | 1 | -4/+4 |
| | | | | | | llvm streams llvm-svn: 31983 | ||||
* | Needs the iostream include. | Bill Wendling | 2006-11-17 | 1 | -0/+1 |
| | | | | llvm-svn: 31815 | ||||
* | Eliminate RegisterAnalysis. RegisterPass now does all that is necessary. | Chris Lattner | 2006-08-27 | 1 | -3/+3 |
| | | | | llvm-svn: 29921 | ||||
* | For PR801: | Reid Spencer | 2006-06-27 | 1 | -95/+1 |
| | | | | | | | | | Refactor the Graph writing code to use a common implementation which is now in lib/Support/GraphWriter.cpp. This completes the PR. Patch by Anton Korobeynikov. Thanks, Anton! llvm-svn: 28925 | ||||
* | For PR798: | Reid Spencer | 2006-06-05 | 1 | -14/+66 |
| | | | | | | Add support for Graphviz. Patch contributed by Anton Korobeynikov. llvm-svn: 28684 | ||||
* | * Unbreak optimized build (noticed by Eric van Riet Paap) | Misha Brukman | 2005-08-04 | 1 | -3/+5 |
| | | | | | | * Comment #endif clauses for readability llvm-svn: 22646 | ||||
* | add support for Graphviz when viewing CFGs | Chris Lattner | 2005-08-03 | 1 | -0/+20 |
| | | | | llvm-svn: 22620 | ||||
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -6/+6 |
| | | | | llvm-svn: 21416 | ||||
* | For PR387:\ | Reid Spencer | 2004-12-07 | 1 | -2/+2 |
| | | | | | | | Make only one print method to avoid overloaded virtual warnings when \ compiled with -Woverloaded-virtual llvm-svn: 18589 | ||||
* | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 1 | -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 | ||||
* | Fix #includes of i*.h => Instructions.h as per PR403. | Misha Brukman | 2004-07-29 | 1 | -1/+1 |
| | | | | llvm-svn: 15334 | ||||
* | Move the stuff that fixes the size, orientation & fonts of graphs to | Brian Gaeke | 2004-05-05 | 1 | -5/+2 |
| | | | | | | | | | | | the debugging functions that call "dot". These fixed settings have various problems: for example, the fixed size that is set in the graph traits classes is not appropriate for turning the dot file into a PNG, and if TrueType font rendering is being used, the 'Courier' TrueType font may not be installed. It seems easy enough to specify these things on the command line, anyhow. llvm-svn: 13366 | ||||
* | Reorder #includes as per style guide. | Misha Brukman | 2004-04-29 | 1 | -3/+3 |
| | | | | llvm-svn: 13263 | ||||
* | Add functions that return instances of these printer passes | Brian Gaeke | 2004-04-26 | 1 | -0/+10 |
| | | | | llvm-svn: 13175 | ||||
* | Finegrainify namespacification | Chris Lattner | 2003-12-11 | 1 | -5/+23 |
| | | | | | | Add new -print-cfg-only pass llvm-svn: 10407 | ||||
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -3/+4 |
| | | | | llvm-svn: 9903 | ||||
* | Make sure to print labels on nodes without names | Chris Lattner | 2003-10-22 | 1 | -1/+7 |
| | | | | llvm-svn: 9376 | ||||
* | If the basic block has no name, make sure to print the % number of it | Chris Lattner | 2003-10-22 | 1 | -1/+7 |
| | | | | llvm-svn: 9375 | ||||
* | Implement the Function::viewCFG* methods, for use in a debugger. Also, the | Chris Lattner | 2003-10-22 | 1 | -0/+144 |
-print-cfg pass now lives here. llvm-svn: 9374 |