aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2015-02-23 23:00:55 +0000
committerHans Wennborg <hans@hanshq.net>2015-02-23 23:00:55 +0000
commit5e58d24de32e3d09ae0be85c2cf464bbd5264803 (patch)
treebc37a870a1776f8e03674a2c384f71b080fbb021
parent32e9f97996c75e037efc934f3ac4423da13e37fc (diff)
downloadllvm-5e58d24de32e3d09ae0be85c2cf464bbd5264803.tar.gz
Release Notes: add text about garbage collection, from Philip Reames
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_36@230277 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index a8cfde5e667..4bc83e9139e 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -382,6 +382,24 @@ The PreserveSource linker mode was removed
It was fairly broken and was removed.
+Garbage Collection
+------------------
+A new experimental mechanism for describing a garbage collection safepoint was
+added to LLVM. The new mechanism was not complete at the point this release
+was branched so it is recommended that anyone interested in using this
+mechanism track the ongoing development work on tip of tree. The hope is that
+these intrinsics will be ready for general use by 3.7. Documentation can be
+found `here <http://llvm.org/docs/Statepoints.html>`_.
+
+The existing gc.root implementation is still supported and as fully featured
+as it ever was. However, two features from GCStrategy will likely be removed
+in the 3.7 release (performCustomLowering and findCustomSafePoints). If you
+have a use case for either, please mention it on llvm-dev so that it can be
+considered for future development.
+
+We are expecting to migrate away from gc.root in the 3.8 time frame,
+but both mechanism will be supported in 3.7.
+
Changes to the ARM Backend
--------------------------