[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

Tanya Brethour tbrethou at cs.uiuc.edu
Thu Nov 18 17:25:31 PST 2004



Changes in directory llvm/docs:

WritingAnLLVMPass.html updated: 1.33 -> 1.34
---
Log message:

Added link to information on Statistic which is in the Programmers Manual.


---
Diffs of the changes:  (+19 -1)

Index: llvm/docs/WritingAnLLVMPass.html
diff -u llvm/docs/WritingAnLLVMPass.html:1.33 llvm/docs/WritingAnLLVMPass.html:1.34
--- llvm/docs/WritingAnLLVMPass.html:1.33	Sun Sep 19 23:36:29 2004
+++ llvm/docs/WritingAnLLVMPass.html	Thu Nov 18 19:25:14 2004
@@ -77,6 +77,7 @@
      <li><a href="#agconcepts">Analysis Group Concepts</a></li>
      <li><a href="#registerag">Using <tt>RegisterAnalysisGroup</tt></a></li>
      </ul></li>
+  <li><a href="#passStatistics">Pass Statistics</a>
   <li><a href="#passmanager">What PassManager does</a>
     <ul>
     <li><a href="#releaseMemory">The <tt>releaseMemory</tt> method</a></li>
@@ -1205,6 +1206,23 @@
 
 <!-- *********************************************************************** -->
 <div class="doc_section">
+  <a name="passStatistics">Pass Statistics</a>
+</div>
+<!-- *********************************************************************** -->
+
+<div class="doc_text">
+<p>The file <a
+href="http:://llvm.cs.uiuc.edu/doxygen/Statistic_8h-source.html"><tt>Statistic</tt></a>
+class, is designed to be an easy way to expose various success
+metrics from passes.  These statistics are printed at the end of a
+run, when the -stats command line option is enabled on the command
+line. See the <a href="http://llvm.org/docs/ProgrammersManual.html#Statistic">Statistics section</a> in the Programmers Manual for details. 
+
+</div>
+
+
+<!-- *********************************************************************** -->
+<div class="doc_section">
   <a name="passmanager">What PassManager does</a>
 </div>
 <!-- *********************************************************************** -->
@@ -1571,7 +1589,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: 2004/09/20 04:36:29 $
+  Last modified: $Date: 2004/11/19 01:25:14 $
 </address>
 
 </body>






More information about the llvm-commits mailing list