[llvm-commits] [llvm] r145145 - /llvm/trunk/docs/ReleaseNotes.html
Benjamin Kramer
benny.kra at googlemail.com
Sat Nov 26 03:14:54 PST 2011
Author: d0k
Date: Sat Nov 26 05:14:54 2011
New Revision: 145145
URL: http://llvm.org/viewvc/llvm-project?rev=145145&view=rev
Log:
Move the branch probability blurb into the optimizer section. Add a minimal bullet for AVX.
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=145145&r1=145144&r2=145145&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Sat Nov 26 05:14:54 2011
@@ -771,8 +771,6 @@
Pass manager extension API.
-Information about branch probability and basic block frequency is now available within LLVM based on a combination of static branch prediction heuristics and __builtin_expect calls. That information is currently used for register spill placement and if-conversion, with additional optimizations planned for future releases. The same frameworks are intended for eventual use with profile-guided optimization, but that is not yet implemented.
-
-->
<ul>
@@ -943,9 +941,13 @@
optimizers:</p>
<ul>
-<!--
-<li></li>
--->
+<li>Information about <a href="BranchWeightMetadata.html">branch probability</a>
+ and basic block frequency is now available within LLVM, based on a
+ combination of static branch prediction heuristics and
+ <code>__builtin_expect</code> calls. That information is currently used for
+ register spill placement and if-conversion, with additional optimizations
+ planned for future releases. The same framework is intended for eventual
+ use with profile-guided optimization.</li>
</li>
</ul>
@@ -1010,6 +1012,8 @@
<p>New features and major changes in the X86 target include:</p>
<ul>
+ <li>The X86 backend, assembler and disassembler now completely support AVX.
+ To enable it pass <code>-mavx</code> to the compiler.</li>
<li>The X86 backend now supports
all <a href="http://llvm.org/PR879">inline assembly that uses the X86
More information about the llvm-commits
mailing list