[llvm-commits] [llvm] r51988 - /llvm/trunk/docs/ReleaseNotes.html

Chris Lattner sabre at nondot.org
Thu Jun 5 01:02:50 PDT 2008


Author: lattner
Date: Thu Jun  5 03:02:49 2008
New Revision: 51988

URL: http://llvm.org/viewvc/llvm-project?rev=51988&view=rev
Log:
more updates and random notes, including changes up through Week-of-Mon-20080324.

Modified:
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=51988&r1=51987&r2=51988&view=diff

==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Thu Jun  5 03:02:49 2008
@@ -23,6 +23,8 @@
   <p>Written by the <a href="http://llvm.org">LLVM Team</a><p>
 </div>
 
+<!-- Done through Week-of-Mon-20080324.txt -->
+
 <!-- *********************************************************************** -->
 <div class="doc_section">
   <a name="intro">Introduction</a>
@@ -64,7 +66,6 @@
 </div>
 
 <!-- Unfinished features in 2.3:
-  Index Set Splitting not enabled by default
   Machine LICM
   Machine Sinking
   LegalizeDAGTypes
@@ -72,7 +73,7 @@
 
 <!--=========================================================================-->
 <div class="doc_subsection">
-<a name="deprecation">Removed features in LLVM 2.3</a>
+<a name="changes">Major Changes in LLVM 2.3</a>
 </div>
 
 <div class="doc_text">
@@ -83,6 +84,9 @@
 LLVM release to do this.  One nice impact of this is that the LLVM regressionn
 test suite no longer depends on llvm-upgrade, which makes it run faster.</p>
 
+<p>LLVM 2.3 renames the LLVMBuilder and LLVMFoldingBuilder classes to
+   IRBuilder.</p>
+
 </div>
 
 <!--=========================================================================-->
@@ -118,8 +122,11 @@
 
 </li>
 
+<li>Reimplemented <a href="LinkTimeOptimization.html">LTO interface</a> in
+ C.</li>
 
 
+<li>kaleidoscope tutorial in ocaml.</li>
 
 </ul>
 
@@ -165,7 +172,7 @@
 
 Common linkage?
 
-Atomic operation support, Alpha, X86, PowerPC. "__sync_syncronize"
+Atomic operation support, Alpha, X86, X86-64, PowerPC. "__sync_synchronize"
 
 <ul>
 </ul>
@@ -186,6 +193,7 @@
 <ul>
 <li>MemOperand in the code generator: describe me!.</li>
 <li>i128 support and APInt through most of codegen.</li>
+<li>Several compile time speedups for code with large basic blocks.</li>
 </ul>
 
 </div>
@@ -204,7 +212,9 @@
 
 <li>Loop index set splitting on by default: describe me.</li>
 <li>LLVM includes a new memcpy optimization pass which optimizes out dead
-memcpy calls and unneeded copies of aggregates.</li>
+memcpy calls, unneeded copies of aggregates, and handles the return slot
+optimization.  The LLVM optimizer now notices long sequences of consequtive
+stores and merges them into memcpy's where profitable.</li>
 </ul>
 
 </div>
@@ -212,7 +222,7 @@
 
 <!--=========================================================================-->
 <div class="doc_subsection">
-<a name="targetspecific">Target Specific Improvements</a>
+<a name="x86specific">X86/X86-64 Specific Improvements</a>
 </div>
 
 <div class="doc_text">
@@ -241,6 +251,8 @@
 <li>Trampolines (taking the address of a nested function) now work on
     Linux/x86-64.</li>
     
+<li><tt>__builtin_prefetch</tt> is now compiled into the appropriate prefetch
+    instructions instead of being ignored.</li>
 
 </ul>
   
@@ -248,6 +260,25 @@
 
 <!--=========================================================================-->
 <div class="doc_subsection">
+<a name="targetspecific">Other Target Specific Improvements</a>
+</div>
+
+<div class="doc_text">
+<p>New target-specific features include:
+</p>
+
+<ul>
+<li>The LLVM C backend now supports vectors code.</li>
+    
+
+</ul>
+  
+</div>
+
+
+
+<!--=========================================================================-->
+<div class="doc_subsection">
 <a name="otherimprovements">Other Improvements</a>
 </div>
 
@@ -257,6 +288,7 @@
 
 <ul>
 <li>LLVM now builds with GCC 4.3.</li>
+<li>llvm2cpp tool was moved into llc, use llc -march=cpp</li>
 </ul>
   
 </div>
@@ -337,8 +369,9 @@
 <div class="doc_text">
 
 <ul>
-<li>The X86 backend does not yet support <a href="http://llvm.org/PR879">inline
-    assembly that uses the X86 floating point stack</a>.</li>
+<li>The X86 backend does not yet support all <a 
+    href="http://llvm.org/PR879">inline assembly that uses the X86 floating
+    point stack</a>.  It supports the 'f' and 't' constraints, but not 'u'.</li>
 <li>The X86 backend generates inefficient floating point code when configured to
     generate code for systems that don't have SSE2.</li>
 </ul>





More information about the llvm-commits mailing list