[llvm-commits] CVS: llvm/docs/CodeGenerator.html
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 16 18:40:44 PDT 2005
Changes in directory llvm/docs:
CodeGenerator.html updated: 1.22 -> 1.23
---
Log message:
Document -view-isel-dags and -view-sched-dags
---
Diffs of the changes: (+10 -1)
CodeGenerator.html | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletion(-)
Index: llvm/docs/CodeGenerator.html
diff -u llvm/docs/CodeGenerator.html:1.22 llvm/docs/CodeGenerator.html:1.23
--- llvm/docs/CodeGenerator.html:1.22 Sun Oct 16 15:02:19 2005
+++ llvm/docs/CodeGenerator.html Sun Oct 16 20:40:33 2005
@@ -828,6 +828,15 @@
<p>After all of these steps are complete, the SelectionDAG is destroyed and the
rest of the code generation passes are run.</p>
+<p>One great way to visualize what is going on here is to take advantage of a
+few LLC command line options. In particular, the <tt>-view-isel-dags</tt>
+option pops up a window with the SelectionDAG input to the Select phase for all
+of the code compiled (if you only get errors printed to the console while using
+this, you probably <a href="ProgrammersManual.html#ViewGraph">need to configure
+your system</a> to add support for it). The <tt>-view-sched-dags</tt> option
+views the SelectionDAG output from the Select phase and input to the Scheduler
+phase.
+</p>
</div>
<!-- _______________________________________________________________________ -->
@@ -1277,7 +1286,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2005/10/16 20:02:19 $
+ Last modified: $Date: 2005/10/17 01:40:33 $
</address>
</body>
More information about the llvm-commits
mailing list