lit: Add --config-prefix option, to override default config file names.
[oota-llvm.git] / docs / Lexicon.html
index e3d40f7af4293bc421eec92eda8ef1706a7f3513..820fdd6f022b91a42ecdb3e0d702cb19ff982dbe 100644 (file)
@@ -36,6 +36,7 @@
       <td><a href="#DSE">DSE</a></td>
     </tr>
     <tr><th colspan="8"><b>- <a href="#G">G</a> -</b></th></tr>
+    <tr>
       <td><a href="#GC">GC</a></td>
     </tr>
     <tr><th colspan="8"><b>- <a href="#I">I</a> -</b></th></tr>
@@ -60,6 +61,7 @@
     </tr>
     <tr><th colspan="8"><b>- <a href="#R">R</a> -</b></th></tr>
     <tr>
+      <td><a href="#RAUW">RAUW</a></td>
       <td><a href="#Reassociation">Reassociation</a></td>
       <td><a href="#Root">Root</a></td>
     </tr>
@@ -198,6 +200,13 @@ href="http://www.program-transformation.org/Transform/BURG">BURG</a> tool.</dd>
 <div class="doc_subsection"><a name="R">- R -</a></div>
 <div class="doc_text">
   <dl>
+       <dt><a name="RAUW"><b>RAUW</b></a></dt> <dd>An abbreviation for Replace
+       All Uses With. The functions User::replaceUsesOfWith(), 
+       Value::replaceAllUsesWith(), and Constant::replaceUsesOfWithOnConstant()
+       implement the replacement of one Value with another by iterating over its
+       def/use chain and fixing up all of the pointers to point to the new value.
+       See also <a href="ProgrammersManual.html#iterate_chains">def/use chains</a>.
+       </dd>
     <dt><a name="Reassociation"><b>Reassociation</b></a></dt> <dd>Rearranging
     associative expressions to promote better redundancy elimination and other
     optimization.  For example, changing (A+B-A) into (B+A-A), permitting it to
@@ -205,7 +214,7 @@ href="http://www.program-transformation.org/Transform/BURG">BURG</a> tool.</dd>
     <dt><a name="Root"><b>Root</b></a></dt> <dd>In garbage collection, a
     pointer variable lying outside of the <a href="#Heap">heap</a> from which
     the collector begins its reachability analysis. In the context of code
-    generation, "root" almost always refers to a "stack root"&#151;a local or
+    generation, "root" almost always refers to a "stack root" -- a local or
     temporary variable within an executing function.</dd>
   </dl>
 </div>
@@ -241,9 +250,9 @@ href="http://www.program-transformation.org/Transform/BURG">BURG</a> tool.</dd>
 <!-- *********************************************************************** -->
 <hr>
 <address> <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
- src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a><a
+ src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a><a
  href="http://validator.w3.org/check/referer"><img
- src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a><a
+ src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a><a
  href="http://llvm.org/">The LLVM Team</a><br>
 <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
 Last modified: $Date$