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

Reid Spencer reid at x10sys.com
Sat Oct 30 14:40:38 PDT 2004



Changes in directory llvm/docs:

Lexicon.html updated: 1.7 -> 1.8
---
Log message:

Add a few more terms.


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

Index: llvm/docs/Lexicon.html
diff -u llvm/docs/Lexicon.html:1.7 llvm/docs/Lexicon.html:1.8
--- llvm/docs/Lexicon.html:1.7	Sat Sep  4 22:57:23 2004
+++ llvm/docs/Lexicon.html	Sat Oct 30 16:40:28 2004
@@ -36,6 +36,12 @@
       <td></td>
       <td></td>
     </tr>
+    <tr><td colspan="8"><b>- <a href="#C">C</a> -</b></td></tr>
+    <tr>
+      <td><a href="#CSE">CSE</a></td>
+      <td></td>
+      <td></td>
+    </tr>
     <tr><td colspan="8"><b>- <a href="#D">D</a> -</b></td></tr>
     <tr>
       <td><a href="#DSA">DSA</a></td>
@@ -43,11 +49,19 @@
       <td></td>
       <td></td>
     </tr>
+    <tr><td colspan="8"><b>- <a href="#I">L</a> -</b></td></tr>
+    <tr>
+      <td><a href="#IPA">IPA</a></td>
+      <td><a href="#IPO">IPO</a></td>
+      <td></td>
+      <td></td>
+    </tr>
     <tr><td colspan="8"><b>- <a href="#L">L</a> -</b></td></tr>
     <tr>
       <td><a href="#LICM">LICM</a></td>
       <td><a href="#Load-VN">Load-VN</a></td>
       <td></td>
+      <td></td>
     </tr>
     <tr><td colspan="8"><b>- <a href="#P">P</a> -</b></td></tr>
     <tr>
@@ -86,6 +100,18 @@
   </dl>
 </div>
 <!-- _______________________________________________________________________ -->
+<div class="doc_subsection"><a name="C">- C -</a></div>
+<div class="doc_text">
+  <dl>
+    <dt><a name="CSE"><b>CSE</b></a></dt>
+    <dd>Common Subexpression Elimination. An optimization that removes common
+    subexpression compuation. For example <tt>(a+b)*(a+b)</tt> has two
+    subexpressions that are the same: <tt>(a+b)</tt>. This optimization would
+    perform the addition only once and then perform the multiply (but only if
+    its compulationally correct/safe).
+  </dl>
+</div>
+<!-- _______________________________________________________________________ -->
 <div class="doc_subsection"><a name="D">- D -</a></div>
 <div class="doc_text">
   <dl>
@@ -96,6 +122,19 @@
   </dl>
 </div>
 <!-- _______________________________________________________________________ -->
+<div class="doc_subsection"><a name="I">- I -</a></div>
+<div class="doc_text">
+  <dl>
+    <dt><a name="IPA"><b>IPA</b></a></dt>
+    <dd>Inter-Procedural Analysis. Refers to any variety of code analysis that
+    occurs between procedures, functions or compilation units (modules).</dd>
+    <dt><a name="IPO"><b>IPO</b></a></dt>
+    <dd>Inter-Procedural Optimization. Refers to any variety of code
+    optimization that occurs between procedures, functions or compilation units
+    (modules).</dd>
+  </dl>
+</div>
+<!-- _______________________________________________________________________ -->
 <div class="doc_subsection"><a name="L">- L -</a></div>
 <div class="doc_text">
   <dl>
@@ -131,7 +170,7 @@
  src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a><a
  href="http://llvm.org/">The LLVM Team</a><br>
 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-Last modified: $Date: 2004/09/05 03:57:23 $
+Last modified: $Date: 2004/10/30 21:40:28 $
 </address>
 <!-- vim: sw=2
 -->






More information about the llvm-commits mailing list