aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-07 20:29:17 +0000
committerDan Gohman <gohman@apple.com>2008-11-07 20:29:17 +0000
commitc4479a76b14eb7233878e8586ceb4d348b64ced4 (patch)
treec62eba886cae341758aed8802252171d00ecd907 /docs
parent47b3417cf0d90724f9dab71aae4c7204e46847b6 (diff)
downloadexternal_llvm-c4479a76b14eb7233878e8586ceb4d348b64ced4.zip
external_llvm-c4479a76b14eb7233878e8586ceb4d348b64ced4.tar.gz
external_llvm-c4479a76b14eb7233878e8586ceb4d348b64ced4.tar.bz2
Document the acronym RAUW. Patch by Jonathan Brandmeyer!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Lexicon.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/Lexicon.html b/docs/Lexicon.html
index e3d40f7..83a653e 100644
--- a/docs/Lexicon.html
+++ b/docs/Lexicon.html
@@ -60,6 +60,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 +199,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