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

Jim Grosbach grosbach at apple.com
Wed Nov 23 16:49:21 PST 2011


Author: grosbach
Date: Wed Nov 23 18:49:21 2011
New Revision: 145118

URL: http://llvm.org/viewvc/llvm-project?rev=145118&view=rev
Log:
Add a few notes for ARM and a blurb about the MCJIT.

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=145118&r1=145117&r2=145118&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Wed Nov 23 18:49:21 2011
@@ -930,11 +930,17 @@
    in.</p>
 
 <ul>
-<!--
-<li></li>
--->
+  <li>The ELF object streamers are much more full featured.</li>
+  <li>Target dependent relocation handling has been refactored into the Targets.</li>
+  <li>Early stage MC-JIT infrastructure has been implemented.</li>
 </ul>
 
+<p>The MC-JIT is a major new feature for MC, and will eventually grow to replace
+the current JIT implementation. It emits object files direct to memory and
+uses a runtime dynamic linker to resolve references and drive lazy compilation.
+The MC-JIT enables much greater code reuse between the JIT and the static
+compiler and provides better integration with the platform ABI as a result.</p>
+
 <p>For more information, please see
    the <a href="http://blog.llvm.org/2010/04/intro-to-llvm-mc-project.html">Intro
    to the LLVM MC Project Blog Post</a>.</p>
@@ -994,9 +1000,9 @@
 <p>New features of the ARM target include:</p>
 
 <ul>
-<!--
-<li></li>
--->
+  <li>Reworked Set Jump Long Jump EH Lowering,</li>
+  <li>improved support for Cortex-M series processors, and</li>
+  <li>beta quality integrated assembler support.</li>
 </ul>
 </div>
 





More information about the llvm-commits mailing list