Skip to content

Commit c0e6a92

Browse files
committed
Update ReleaseNotes: expand the section on enabling MemorySSA
llvm-svn: 375045
1 parent 8cdc842 commit c0e6a92

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

llvm/docs/ReleaseNotes.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,20 @@ Non-comprehensive list of changes in this release
4141
for adding a new subsection.
4242
4343
* The ISD::FP_ROUND_INREG opcode and related code was removed from SelectionDAG.
44-
* Enabled MemorySSA as a loop dependency.
44+
* Enabled MemorySSA as a loop dependency. Since
45+
`r370957 <https://reviews.llvm.org/rL370957>`_
46+
(`D58311 <https://reviews.llvm.org/D58311>`_ ``[MemorySSA & LoopPassManager]
47+
Enable MemorySSA as loop dependency. Update tests.``), the MemorySSA analysis
48+
is being preserved and used by a series of loop passes. The most significant
49+
use is in LICM, where the instruction hoisting and sinking relies on aliasing
50+
information provided by MemorySSA vs previously creating an AliasSetTracker.
51+
The LICM step of promoting variables to scalars still relies on the creation
52+
of an AliasSetTracker, but its use is reduced to only be enabled for loops
53+
with a small number of overall memory instructions. This choice was motivated
54+
by experimental results showing compile and run time benefits or replacing the
55+
AliasSetTracker usage with MemorySSA without any performance penalties.
56+
The fact that MemorySSA is now preserved by and available in a series of loop
57+
passes, also opens up opportunities for its use in those respective passes.
4558

4659
.. NOTE
4760
If you would like to document a larger change, then you can add a

0 commit comments

Comments
 (0)