[llvm-commits] [llvm] r156739 - /llvm/trunk/docs/ReleaseNotes.html
Benjamin Kramer
benny.kra at googlemail.com
Sun May 13 05:01:17 PDT 2012
Author: d0k
Date: Sun May 13 07:01:16 2012
New Revision: 156739
URL: http://llvm.org/viewvc/llvm-project?rev=156739&view=rev
Log:
ReleaseNotes: Add a blurb about llvm-mc -g and move inliner changes into the optimizer sections. Verbosify some bullets.
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=156739&r1=156738&r2=156739&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Sun May 13 07:01:16 2012
@@ -448,15 +448,14 @@
expose new optimization opportunities:</p>
<ul>
- <li>IR support for half float</li>
- <li>IR support for vectors of pointers, including vector GEPs.</li>
+ <li>A new type representing 16 bit <i>half</i> floating point values has
+ been added.</li>
+ <li>IR now supports vectors of pointers, including vector GEPs.</li>
<li>Module flags have been introduced. They convey information about the
- module as a whole to LLVM subsystems.</li>
+ module as a whole to LLVM subsystems. This is currently used to encode
+ Objective C ABI information.</li>
<li>Loads can now have range metadata attached to them to describe the
possible values being loaded.</li>
- <li>Inline cost heuristics have been completely overhauled and now closely
- model constant propagation through call sites, disregard trivially dead
- code costs, and can model C++ STL iterator patterns.</li>
<li>....</li>
</ul>
</div>
@@ -481,6 +480,9 @@
post-vectorization cleanup passes. For more information, see the EuroLLVM
2012 slides: <a href="http://llvm.org/devmtg/2012-04-12/Slides/Hal_Finkel.pdf">
Autovectorization with LLVM</a>.</li>
+ <li>Inline cost heuristics have been completely overhauled and now closely
+ model constant propagation through call sites, disregard trivially dead
+ code costs, and can model C++ STL iterator patterns.</li>
<li>....</li>
</ul>
@@ -501,6 +503,9 @@
to the LLVM MC Project Blog Post</a>.</p>
<ul>
+ <li>The integrated assembler can optionally emit debug information when
+ assembling a </tt>.s</tt> file. It can be enabled by passing the
+ <tt>-g</tt> option to <tt>llvm-mc</tt>.</li>
<li>....</li>
</ul>
More information about the llvm-commits
mailing list