From: Jim Grosbach
Date: Thu, 24 Nov 2011 00:49:21 +0000 (+0000)
Subject: Add a few notes for ARM and a blurb about the MCJIT.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2552de030bb50ab793ff8851401214187d35b542;p=oota-llvm.git
Add a few notes for ARM and a blurb about the MCJIT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145118 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 08cdce9cf0a..f2d8930ec1f 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -930,11 +930,17 @@ Builder.CreateResume(UnwindData);
in.
-
+ - The ELF object streamers are much more full featured.
+ - Target dependent relocation handling has been refactored into the Targets.
+ - Early stage MC-JIT infrastructure has been implemented.
+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.
+
For more information, please see
the Intro
to the LLVM MC Project Blog Post.
@@ -994,9 +1000,9 @@ Builder.CreateResume(UnwindData);
New features of the ARM target include:
-
+ - Reworked Set Jump Long Jump EH Lowering,
+ - improved support for Cortex-M series processors, and
+ - beta quality integrated assembler support.