blob: 64ccac48e18173817a0695b7368b84a23eb42e7a [file] [log] [blame]
Misha Brukman500bc302003-11-22 00:38:41 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Reid Spencer6454ed32004-11-18 18:38:58 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Daniel Dunbaradea4972012-04-19 20:20:34 +00006 <link rel="stylesheet" href="_static/llvm.css" type="text/css">
Chris Lattner21e1b7a2011-12-13 17:55:30 +00007 <title>LLVM 3.1 Release Notes</title>
Misha Brukman500bc302003-11-22 00:38:41 +00008</head>
9<body>
Chris Lattner79c3fe12003-10-02 04:57:28 +000010
Chris Lattner21e1b7a2011-12-13 17:55:30 +000011<h1>LLVM 3.1 Release Notes</h1>
Mikhail Glushenkovea65d7d2008-10-13 02:08:34 +000012
Jakub Staszakf8de54f2011-12-06 23:33:07 +000013<div>
14<img style="float:right" src="http://llvm.org/img/DragonSmall.png"
15 width="136" height="136" alt="LLVM Dragon Logo">
16</div>
Chris Lattner0e464a92010-03-17 04:02:39 +000017
Chris Lattner79c3fe12003-10-02 04:57:28 +000018<ol>
Misha Brukman500bc302003-11-22 00:38:41 +000019 <li><a href="#intro">Introduction</a></li>
Chris Lattner96a445e2008-10-13 18:01:01 +000020 <li><a href="#subproj">Sub-project Status Update</a></li>
Chris Lattner21e1b7a2011-12-13 17:55:30 +000021 <li><a href="#externalproj">External Projects Using LLVM 3.1</a></li>
22 <li><a href="#whatsnew">What's New in LLVM?</a></li>
Chris Lattner4b538b92004-04-30 22:17:12 +000023 <li><a href="GettingStarted.html">Installation Instructions</a></li>
Dan Gohman44aa9212008-10-14 16:23:02 +000024 <li><a href="#knownproblems">Known Problems</a></li>
Misha Brukman500bc302003-11-22 00:38:41 +000025 <li><a href="#additionalinfo">Additional Information</a></li>
Chris Lattner79c3fe12003-10-02 04:57:28 +000026</ol>
27
Chris Lattner7911ce22004-05-23 21:07:27 +000028<div class="doc_author">
NAKAMURA Takumib9a33632011-04-09 02:13:37 +000029 <p>Written by the <a href="http://llvm.org/">LLVM Team</a></p>
Misha Brukman500bc302003-11-22 00:38:41 +000030</div>
Chris Lattner79c3fe12003-10-02 04:57:28 +000031
Chris Lattner21e1b7a2011-12-13 17:55:30 +000032<h1 style="color:red">These are in-progress notes for the upcoming LLVM 3.1
Jeffrey Yasskinbec48772010-01-28 01:14:43 +000033release.<br>
34You may prefer the
Chris Lattner21e1b7a2011-12-13 17:55:30 +000035<a href="http://llvm.org/releases/3.0/docs/ReleaseNotes.html">LLVM 3.0
Dan Gohmanb44f6c62010-05-03 23:51:05 +000036Release Notes</a>.</h1>
Jeffrey Yasskinbec48772010-01-28 01:14:43 +000037
Chris Lattner79c3fe12003-10-02 04:57:28 +000038<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000039<h2>
Misha Brukman500bc302003-11-22 00:38:41 +000040 <a name="intro">Introduction</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000041</h2>
Chris Lattner79c3fe12003-10-02 04:57:28 +000042<!-- *********************************************************************** -->
43
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +000044<div>
Misha Brukman500bc302003-11-22 00:38:41 +000045
Chris Lattnerf6662f92008-10-13 17:57:36 +000046<p>This document contains the release notes for the LLVM Compiler
Chris Lattner21e1b7a2011-12-13 17:55:30 +000047 Infrastructure, release 3.1. Here we describe the status of LLVM, including
Chris Lattner1ab8ce92011-11-27 18:47:37 +000048 major improvements from the previous release, improvements in various
49 subprojects of LLVM, and some of the current users of the code.
Bill Wendling7b7fa742011-10-26 18:46:16 +000050 All LLVM releases may be downloaded from
51 the <a href="http://llvm.org/releases/">LLVM releases web site</a>.</p>
Chris Lattner19092612003-10-02 16:38:05 +000052
Chris Lattner7506b1d2004-12-07 08:04:13 +000053<p>For more information about LLVM, including information about the latest
Bill Wendling7b7fa742011-10-26 18:46:16 +000054 release, please check out the <a href="http://llvm.org/">main LLVM web
55 site</a>. If you have questions or comments,
56 the <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM
57 Developer's Mailing List</a> is a good place to send them.</p>
Chris Lattner79c3fe12003-10-02 04:57:28 +000058
Bill Wendling7b7fa742011-10-26 18:46:16 +000059<p>Note that if you are reading this file from a Subversion checkout or the main
60 LLVM web page, this document applies to the <i>next</i> release, not the
61 current one. To see the release notes for a specific release, please see the
62 <a href="http://llvm.org/releases/">releases page</a>.</p>
Misha Brukman500bc302003-11-22 00:38:41 +000063
64</div>
Michael J. Spencer60f790c2011-11-28 18:20:09 +000065
66
Chris Lattner96a445e2008-10-13 18:01:01 +000067<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000068<h2>
Chris Lattner96a445e2008-10-13 18:01:01 +000069 <a name="subproj">Sub-project Status Update</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000070</h2>
Chris Lattner96a445e2008-10-13 18:01:01 +000071<!-- *********************************************************************** -->
Chris Lattnerea34f642008-06-08 21:34:41 +000072
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +000073<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +000074
Chris Lattner21e1b7a2011-12-13 17:55:30 +000075<p>The LLVM 3.1 distribution currently consists of code from the core LLVM
Bill Wendling7b7fa742011-10-26 18:46:16 +000076 repository (which roughly includes the LLVM optimizers, code generators and
Bill Wendling1fefd092012-05-14 08:11:53 +000077 supporting tools), and the Clang repository. In addition to this code, the
78 LLVM Project includes other sub-projects that are in development. Here we
79 include updates on these subprojects.</p>
Chris Lattner96a445e2008-10-13 18:01:01 +000080
Chris Lattner8348b472008-06-08 21:58:17 +000081<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000082<h3>
Chris Lattnerfb97b2d2008-10-13 18:11:54 +000083<a name="clang">Clang: C/C++/Objective-C Frontend Toolkit</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +000084</h3>
Chris Lattner8348b472008-06-08 21:58:17 +000085
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +000086<div>
Chris Lattner8348b472008-06-08 21:58:17 +000087
Chris Lattner095539f2010-04-26 17:42:18 +000088<p><a href="http://clang.llvm.org/">Clang</a> is an LLVM front end for the C,
Bill Wendling7b7fa742011-10-26 18:46:16 +000089 C++, and Objective-C languages. Clang aims to provide a better user
90 experience through expressive diagnostics, a high level of conformance to
91 language standards, fast compilation, and low memory use. Like LLVM, Clang
92 provides a modular, library-based architecture that makes it suitable for
93 creating or integrating with other development tools. Clang is considered a
94 production-quality compiler for C, Objective-C, C++ and Objective-C++ on x86
Chris Lattner1ab8ce92011-11-27 18:47:37 +000095 (32- and 64-bit), and for Darwin/ARM targets.</p>
Chris Lattner61358ab2009-10-13 17:48:04 +000096
Benjamin Kramer88c8e692012-05-13 10:40:08 +000097<p>In the LLVM 3.1 time-frame, the Clang team has made many improvements.
98 Highlights include:</p>
Douglas Gregorba087df2011-10-15 00:48:01 +000099<ul>
Benjamin Kramer88c8e692012-05-13 10:40:08 +0000100 <li>Greatly expanded <a href="http://clang.llvm.org/cxx_status.html">C++11
101 support</a> including lambdas, initializer lists, constexpr, user-defined
102 literals, and atomics.</li>
103 <li>A new <a href="http://clang.llvm.org/docs/Tooling.html">tooling</a>
104 library to ease building of clang-based standalone tools.</li>
105 <li>Extended support for
106 <a href="http://clang.llvm.org/docs/ObjectiveCLiterals.html">literals in
107 Objective C</a>.</li>
Douglas Gregorba087df2011-10-15 00:48:01 +0000108</ul>
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000109
Bill Wendling1fefd092012-05-14 08:11:53 +0000110<p>For more details about the changes to Clang since the 3.0 release, see the
111 <a href="http://clang.llvm.org/docs/ReleaseNotes.html">Clang release
112 notes.</a></p>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000113
Duncan Sandsf3ba7af2011-04-06 08:07:40 +0000114<p>If Clang rejects your code but another compiler accepts it, please take a
Bill Wendling7b7fa742011-10-26 18:46:16 +0000115 look at the <a href="http://clang.llvm.org/compatibility.html">language
116 compatibility</a> guide to make sure this is not intentional or a known
117 issue.</p>
Bill Wendling741748a2008-10-27 09:27:33 +0000118
Chris Lattnerfb97b2d2008-10-13 18:11:54 +0000119</div>
120
121<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000122<h3>
Duncan Sands528a5102011-04-04 11:09:08 +0000123<a name="dragonegg">DragonEgg: GCC front-ends, LLVM back-end</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000124</h3>
Chris Lattner61358ab2009-10-13 17:48:04 +0000125
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000126<div>
Bill Wendling1fefd092012-05-14 08:11:53 +0000127
Bill Wendling7b7fa742011-10-26 18:46:16 +0000128<p><a href="http://dragonegg.llvm.org/">DragonEgg</a> is a
129 <a href="http://gcc.gnu.org/wiki/plugins">gcc plugin</a> that replaces GCC's
Duncan Sands5abd10a2012-05-11 19:59:43 +0000130 optimizers and code generators with LLVM's. It works with gcc-4.5 and gcc-4.6
131 (and partially with gcc-4.7), can target the x86-32/x86-64 and ARM processor
132 families, and has been successfully used on the Darwin, FreeBSD, KFreeBSD,
133 Linux and OpenBSD platforms. It fully supports Ada, C, C++ and Fortran. It
134 has partial support for Go, Java, Obj-C and Obj-C++.</p>
Duncan Sands749fd832010-04-02 09:23:15 +0000135
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000136<p>The 3.1 release has the following notable changes:</p>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000137
Bill Wendling1fefd092012-05-14 08:11:53 +0000138<ul>
Duncan Sands5abd10a2012-05-11 19:59:43 +0000139 <li>Partial support for gcc-4.7. Ada support is poor, but other languages work
140 fairly well.</li>
141
142 <li>Support for ARM processors. Some essential gcc headers that are needed to
143 build DragonEgg for ARM are not installed by gcc. To work around this,
144 copy the missing headers from the gcc source tree.</li>
145
146 <li>Better optimization for Fortran by exploiting the fact that Fortran scalar
147 arguments have 'restrict' semantics.</li>
148
149 <li>Better optimization for all languages by passing information about type
150 aliasing and type ranges to the LLVM optimizers.</li>
151
152 <li>A regression test-suite was added.</li>
Duncan Sands4b1da2b2010-09-30 17:37:34 +0000153</ul>
Chris Lattner61358ab2009-10-13 17:48:04 +0000154
155</div>
156
Chris Lattner75547712010-10-03 23:49:06 +0000157<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000158<h3>
Chris Lattner75547712010-10-03 23:49:06 +0000159<a name="compiler-rt">compiler-rt: Compiler Runtime Library</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000160</h3>
Chris Lattner75547712010-10-03 23:49:06 +0000161
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000162<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000163
164<p>The new LLVM <a href="http://compiler-rt.llvm.org/">compiler-rt project</a>
165 is a simple library that provides an implementation of the low-level
166 target-specific hooks required by code generation and other runtime
167 components. For example, when compiling for a 32-bit target, converting a
168 double to a 64-bit unsigned integer is compiled into a runtime call to the
169 "__fixunsdfdi" function. The compiler-rt library provides highly optimized
170 implementations of this and other low-level routines (some are 3x faster than
171 the equivalent libgcc routines).</p>
Chris Lattner75547712010-10-03 23:49:06 +0000172
Chris Lattner75547712010-10-03 23:49:06 +0000173</div>
Chris Lattner61358ab2009-10-13 17:48:04 +0000174
175<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000176<h3>
Chris Lattnere07043c2010-09-29 05:30:03 +0000177<a name="lldb">LLDB: Low Level Debugger</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000178</h3>
Chris Lattnere07043c2010-09-29 05:30:03 +0000179
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000180<div>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000181
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000182<p><a href="http://lldb.llvm.org">LLDB</a> is a ground-up implementation of a
183 command line debugger, as well as a debugger API that can be used from other
184 applications. LLDB makes use of the Clang parser to provide high-fidelity
185 expression parsing (particularly for C++) and uses the LLVM JIT for target
186 support.</p>
Chris Lattnere07043c2010-09-29 05:30:03 +0000187
Chris Lattnere07043c2010-09-29 05:30:03 +0000188</div>
189
190<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000191<h3>
Chris Lattnere07043c2010-09-29 05:30:03 +0000192<a name="libc++">libc++: C++ Standard Library</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000193</h3>
Chris Lattnere07043c2010-09-29 05:30:03 +0000194
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000195<div>
Chris Lattnere07043c2010-09-29 05:30:03 +0000196
Bill Wendling7b7fa742011-10-26 18:46:16 +0000197<p>Like compiler_rt, libc++ is now <a href="DeveloperPolicy.html#license">dual
198 licensed</a> under the MIT and UIUC license, allowing it to be used more
199 permissively.</p>
Chris Lattnere07043c2010-09-29 05:30:03 +0000200
201</div>
202
Chris Lattner3d6a80a2011-04-07 03:08:22 +0000203<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000204<h3>
Chris Lattner3d6a80a2011-04-07 03:08:22 +0000205<a name="vmkit">VMKit</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000206</h3>
Chris Lattner3d6a80a2011-04-07 03:08:22 +0000207
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000208<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000209
Bill Wendling1fefd092012-05-14 08:11:53 +0000210<p>The <a href="http://vmkit.llvm.org/">VMKit project</a> is an implementation
211 of a Java Virtual Machine (Java VM or JVM) that uses LLVM for static and
212 just-in-time compilation.</p>
Nicolas Geoffray54d5df92011-11-10 23:37:56 +0000213
Bill Wendling1fefd092012-05-14 08:11:53 +0000214<p>In the LLVM 3.1 time-frame, VMKit has had significant improvements on both
215 runtime and startup performance.</p>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000216
Chris Lattner3d6a80a2011-04-07 03:08:22 +0000217</div>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000218
Tobias Grosser76213b82012-04-16 17:17:00 +0000219
220<!--=========================================================================-->
221<h3>
Tobias Grosser99a0b282012-04-16 17:18:49 +0000222<a name="Polly">Polly: Polyhedral Optimizer</a>
Tobias Grosser76213b82012-04-16 17:17:00 +0000223</h3>
224
225<div>
226
Bill Wendling1fefd092012-05-14 08:11:53 +0000227<p><a href="http://polly.llvm.org/">Polly</a> is an <em>experimental</em>
Tobias Grosser76213b82012-04-16 17:17:00 +0000228 optimizer for data locality and parallelism. It currently provides high-level
229 loop optimizations and automatic parallelisation (using the OpenMP run time).
230 Work in the area of automatic SIMD and accelerator code generation was
Bill Wendling1fefd092012-05-14 08:11:53 +0000231 started.</p>
Tobias Grosser76213b82012-04-16 17:17:00 +0000232
Bill Wendling1fefd092012-05-14 08:11:53 +0000233<p>Within the LLVM 3.1 time-frame there were the following highlights:</p>
Tobias Grosser76213b82012-04-16 17:17:00 +0000234
Bill Wendling1fefd092012-05-14 08:11:53 +0000235<ul>
Tobias Grosser76213b82012-04-16 17:17:00 +0000236 <li>Polly became an official LLVM project</li>
Bill Wendling1fefd092012-05-14 08:11:53 +0000237 <li>Polly can be loaded directly into clang (enabled by '-O3 -mllvm -polly')</li>
238 <li>An automatic scheduling optimizer (derived
239 from <a href="http://pluto-compiler.sourceforge.net/">Pluto</a>) was
240 integrated. It performs loop transformations to optimize for data-locality
241 and parallelism. The transformations include, but are not limited to
242 interchange, fusion, fission, skewing and tiling.</li>
243</ul>
Tobias Grosser76213b82012-04-16 17:17:00 +0000244
245</div>
246
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000247</div>
Daniel Dunbar97b01a82010-10-04 17:39:47 +0000248
Chris Lattnerab68e9e2009-02-26 22:33:38 +0000249<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000250<h2>
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000251 <a name="externalproj">External Open Source Projects Using LLVM 3.1</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000252</h2>
Chris Lattnerab68e9e2009-02-26 22:33:38 +0000253<!-- *********************************************************************** -->
254
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000255<div>
Chris Lattner61358ab2009-10-13 17:48:04 +0000256
257<p>An exciting aspect of LLVM is that it is used as an enabling technology for
258 a lot of other language and tools projects. This section lists some of the
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000259 projects that have already been updated to work with LLVM 3.1.</p>
Chris Lattner75547712010-10-03 23:49:06 +0000260
Bill Wendlingf8cfe2e2012-05-13 09:52:48 +0000261<h3>FAUST</h3>
262
263<div>
264
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000265<p><a href="http://faust.grame.fr/">FAUST</a> is a compiled language for
266 real-time audio signal processing. The name FAUST stands for Functional
267 AUdio STream. Its programming model combines two approaches: functional
268 programming and block diagram composition. In addition with the C, C++, Java,
269 JavaScript output formats, the Faust compiler can generate LLVM bitcode, and
270 works with LLVM 2.7-3.1.</p>
Bill Wendlingf8cfe2e2012-05-13 09:52:48 +0000271
272</div>
273
Bill Wendlingde86bea2012-05-11 21:42:37 +0000274<h3>Glasgow Haskell Compiler (GHC)</h3>
275
276<div>
277
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000278<p><a href="http://www.haskell.org/ghc/">GHC</a> is an open source compiler and
279 programming suite for Haskell, a lazy functional programming language. It
280 includes an optimizing static compiler generating good code for a variety of
281 platforms, together with an interactive system for convenient, quick
282 development.</p>
Bill Wendlingde86bea2012-05-11 21:42:37 +0000283
284<p>GHC 7.0 and onwards include an LLVM code generator, supporting LLVM 2.8 and
285 later.</p>
286
287</div>
288
Bill Wendlinge9a73bb2012-05-14 06:23:51 +0000289<h3>Julia</h3>
290
291<div>
292
293<p><a href="https://github.com/JuliaLang/julia">Julia</a> is a high-level,
294 high-performance dynamic language for technical computing. It provides a
295 sophisticated compiler, distributed parallel execution, numerical accuracy,
296 and an extensive mathematical function library. The compiler uses type
297 inference to generate fast code without any type declarations, and uses
298 LLVM's optimization passes and JIT compiler. The
299 <a href="http://julialang.org/"> Julia Language</a> is designed
300 around multiple dispatch, giving programs a large degree of flexibility. It
301 is ready for use on many kinds of problems.</p>
302
303</div>
304
Bill Wendlingf2f92ba2012-05-13 10:00:58 +0000305<h3>LLVM D Compiler</h3>
306
307<div>
308
309<p><a href="https://github.com/ldc-developers/ldc">LLVM D Compiler</a> (LDC) is
310 a compiler for the D programming Language. It is based on the DMD frontend
311 and uses LLVM as backend.</p>
312
313</div>
314
Bill Wendling91071052012-05-13 09:55:24 +0000315<h3>Open Shading Language</h3>
316
317<div>
318
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000319<p><a href="https://github.com/imageworks/OpenShadingLanguage/">Open Shading
320 Language (OSL)</a> is a small but rich language for programmable shading in
321 advanced global illumination renderers and other applications, ideal for
322 describing materials, lights, displacement, and pattern generation. It uses
323 LLVM to JIT complex shader networks to x86 code at runtime.</p>
Bill Wendling91071052012-05-13 09:55:24 +0000324
325<p>OSL was developed by Sony Pictures Imageworks for use in its in-house
326 renderer used for feature film animation and visual effects, and is
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000327 distributed as open source software with the "New BSD" license.</p>
Bill Wendling91071052012-05-13 09:55:24 +0000328
329</div>
330
Bill Wendling59a23e32012-05-13 09:59:27 +0000331<h3>Portable OpenCL (pocl)</h3>
332
333<div>
334
335<p>In addition to producing an easily portable open source OpenCL
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000336 implementation, another major goal of <a href="http://pocl.sourceforge.net/">
337 pocl</a> is improving performance portability of OpenCL programs with
338 compiler optimizations, reducing the need for target-dependent manual
339 optimizations. An important part of pocl is a set of LLVM passes used to
340 statically parallelize multiple work-items with the kernel compiler, even in
341 the presence of work-group barriers. This enables static parallelization of
342 the fine-grained static concurrency in the work groups in multiple ways
343 (SIMD, VLIW, superscalar,...).</p>
Bill Wendling59a23e32012-05-13 09:59:27 +0000344
345</div>
346
Bill Wendlingde86bea2012-05-11 21:42:37 +0000347<h3>Pure</h3>
348
349<div>
350
Bill Wendling015d2ad2012-05-11 22:38:33 +0000351<p><a href="http://pure-lang.googlecode.com/">Pure</a> is an
352 algebraic/functional programming language based on term rewriting. Programs
353 are collections of equations which are used to evaluate expressions in a
354 symbolic fashion. The interpreter uses LLVM as a backend to JIT-compile Pure
355 programs to fast native code. Pure offers dynamic typing, eager and lazy
356 evaluation, lexical closures, a hygienic macro system (also based on term
357 rewriting), built-in list and matrix support (including list and matrix
358 comprehensions) and an easy-to-use interface to C and other programming
359 languages (including the ability to load LLVM bitcode modules, and inline C,
360 C++, Fortran and Faust code in Pure programs if the corresponding
361 LLVM-enabled compilers are installed).</p>
Bill Wendlingde86bea2012-05-11 21:42:37 +0000362
363<p>Pure version 0.54 has been tested and is known to work with LLVM 3.1 (and
364 continues to work with older LLVM releases >= 2.5).</p>
365
366</div>
Bill Wendling644ce532011-10-26 09:25:01 +0000367
Bill Wendling59a23e32012-05-13 09:59:27 +0000368<h3>TTA-based Co-design Environment (TCE)</h3>
369
370<div>
371
Benjamin Kramerabe446c2012-05-13 10:21:51 +0000372<p><a href="http://tce.cs.tut.fi/">TCE</a> is a toolset for designing
373 application-specific processors (ASP) based on the Transport triggered
374 architecture (TTA). The toolset provides a complete co-design flow from C/C++
375 programs down to synthesizable VHDL/Verilog and parallel program binaries.
376 Processor customization points include the register files, function units,
377 supported operations, and the interconnection network.</p>
Bill Wendling59a23e32012-05-13 09:59:27 +0000378
379<p>TCE uses Clang and LLVM for C/C++ language support, target independent
380 optimizations and also for parts of code generation. It generates new
381 LLVM-based code generators "on the fly" for the designed TTA processors and
382 loads them in to the compiler backend as runtime libraries to avoid
383 per-target recompilation of larger parts of the compiler chain.</p>
384
385</div>
386
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000387</div>
388
Chris Lattner8348b472008-06-08 21:58:17 +0000389<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000390<h2>
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000391 <a name="whatsnew">What's New in LLVM 3.1?</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000392</h2>
Chris Lattner8348b472008-06-08 21:58:17 +0000393<!-- *********************************************************************** -->
394
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000395<div>
Chris Lattnerf8e0b4e2008-06-08 22:59:35 +0000396
Chris Lattner61358ab2009-10-13 17:48:04 +0000397<p>This release includes a huge number of bug fixes, performance tweaks and
Bill Wendling7b7fa742011-10-26 18:46:16 +0000398 minor improvements. Some of the major improvements and new features are
399 listed in this section.</p>
Chris Lattner61358ab2009-10-13 17:48:04 +0000400
Chris Lattner914ce462010-04-22 06:28:20 +0000401<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000402<h3>
Chris Lattner252b83d2008-02-06 18:00:06 +0000403<a name="majorfeatures">Major New Features</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000404</h3>
Chris Lattner252b83d2008-02-06 18:00:06 +0000405
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000406<div>
Chris Lattner252b83d2008-02-06 18:00:06 +0000407
Chris Lattner1ab8ce92011-11-27 18:47:37 +0000408 <!-- Features that need text if they're finished for 3.1:
409 ARM EHABI
410 combiner-aa?
411 strong phi elim
412 loop dependence analysis
413 CorrelatedValuePropagation
414 lib/Transforms/IPO/MergeFunctions.cpp => consider for 3.1.
Chris Lattner1c80fbf2011-11-27 20:51:47 +0000415 Integrated assembler on by default for arm/thumb?
416
Chris Lattner1ab8ce92011-11-27 18:47:37 +0000417 -->
418
Chris Lattner1c80fbf2011-11-27 20:51:47 +0000419 <!-- Near dead:
Chris Lattnerdec23b62011-11-15 22:13:27 +0000420 Analysis/RegionInfo.h + Dom Frontiers
421 SparseBitVector: used in LiveVar.
Chris Lattner5a1731d2011-11-27 08:32:32 +0000422 llvm/lib/Archive - replace with lib object?
Chris Lattner1c80fbf2011-11-27 20:51:47 +0000423 -->
Chris Lattner6a007d12011-11-25 20:33:27 +0000424
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000425<p>LLVM 3.1 includes several major changes and big features:</p>
Bill Wendlingbc5f6dd2011-10-26 18:33:01 +0000426
Chris Lattner791f77b2008-06-05 06:25:56 +0000427<ul>
Evan Cheng28681862011-12-14 22:57:45 +0000428 <li><a href="../tools/clang/docs/AddressSanitizer.html">AddressSanitizer</a>,
429 a fast memory error detector.</li>
430 <li><a href="CodeGenerator.html#machineinstrbundle">MachineInstr Bundles</a>,
431 Support to model instruction bundling / packing.</li>
Jim Grosbach6e6b8222012-02-23 23:52:06 +0000432 <li><a href="#armintegratedassembler">ARM Integrated Assembler</a>,
433 A full featured assembler and direct-to-object support for ARM.</li>
Chandler Carruth268fde42012-04-17 01:10:35 +0000434 <li><a href="#blockplacement">Basic Block Placement</a>
435 Probability driven basic block placement.</li>
Chris Lattnerf304ffc2008-02-10 08:17:19 +0000436</ul>
Mikhail Glushenkovea65d7d2008-10-13 02:08:34 +0000437
Bill Wendlingbc5f6dd2011-10-26 18:33:01 +0000438</div>
439
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000440
Chris Lattner4f0fe432011-11-27 19:26:30 +0000441<!--=========================================================================-->
442<h3>
443<a name="coreimprovements">LLVM IR and Core Improvements</a>
444</h3>
445
446<div>
447
448<p>LLVM IR has several new features for better support of new targets and that
449 expose new optimization opportunities:</p>
450
Bill Wendling1fefd092012-05-14 08:11:53 +0000451<ul>
452 <li>A new type representing 16 bit <i>half</i> floating point values has
453 been added.</li>
454 <li>IR now supports vectors of pointers, including vector GEPs.</li>
455 <li>Module flags have been introduced. They convey information about the
456 module as a whole to LLVM subsystems. This is currently used to encode
457 Objective C ABI information.</li>
458 <li>Loads can now have range metadata attached to them to describe the
459 possible values being loaded.</li>
460 <li>The <tt>llvm.ctlz</tt> and <tt>llvm.cttz</tt> intrinsics now have an
461 additional argument which indicates whether the behavior of the intrinsic
462 is undefined on a zero input. This can be used to generate more efficient
463 code on platforms that only have instructions which don't return the type
464 size when counting bits in 0.</li>
465</ul>
466
Andrew Trick5aab6382011-11-06 17:59:24 +0000467</div>
468
469<!--=========================================================================-->
470<h3>
Chris Lattneracce85d2008-02-10 07:46:44 +0000471<a name="optimizer">Optimizer Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000472</h3>
Chris Lattneracce85d2008-02-10 07:46:44 +0000473
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000474<div>
Chris Lattneracce85d2008-02-10 07:46:44 +0000475
Chris Lattner064caf92011-11-27 21:30:28 +0000476<p>In addition to many minor performance tweaks and bug fixes, this
Bill Wendling7b7fa742011-10-26 18:46:16 +0000477 release includes a few major enhancements and additions to the
478 optimizers:</p>
Chris Lattneracce85d2008-02-10 07:46:44 +0000479
480<ul>
Brendon Cahoonff730392012-04-14 16:54:12 +0000481 <li>The loop unroll pass now is able to unroll loops with run-time trip counts.
482 This feature is turned off by default, and is enabled with the
483 <code>-unroll-runtime</code> flag.</li>
Hal Finkel9068bf52012-04-16 03:49:43 +0000484 <li>A new basic-block autovectorization pass is available. Pass
485 <code>-vectorize</code> to run this pass along with some associated
Hal Finkel12c10b32012-04-16 17:06:49 +0000486 post-vectorization cleanup passes. For more information, see the EuroLLVM
487 2012 slides: <a href="http://llvm.org/devmtg/2012-04-12/Slides/Hal_Finkel.pdf">
488 Autovectorization with LLVM</a>.</li>
Benjamin Kramerf26b4152012-05-13 12:01:16 +0000489 <li>Inline cost heuristics have been completely overhauled and now closely
490 model constant propagation through call sites, disregard trivially dead
491 code costs, and can model C++ STL iterator patterns.</li>
Chris Lattner11b66112010-10-04 02:42:39 +0000492</ul>
493
Chris Lattner61358ab2009-10-13 17:48:04 +0000494</div>
Chris Lattner917cc712009-03-02 02:37:32 +0000495
Chris Lattner0b832202008-06-08 02:45:07 +0000496<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000497<h3>
Chris Lattner4ba2b652010-09-30 16:31:33 +0000498<a name="mc">MC Level Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000499</h3>
Chris Lattner4ba2b652010-09-30 16:31:33 +0000500
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000501<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000502
503<p>The LLVM Machine Code (aka MC) subsystem was created to solve a number of
504 problems in the realm of assembly, disassembly, object file format handling,
505 and a number of other related areas that CPU instruction-set level tools work
Chris Lattner2f206022011-11-27 22:03:34 +0000506 in. For more information, please see
507 the <a href="http://blog.llvm.org/2010/04/intro-to-llvm-mc-project.html">Intro
508 to the LLVM MC Project Blog Post</a>.</p>
Chris Lattner7d9b6b42010-10-02 21:59:30 +0000509
Chris Lattner7d9b6b42010-10-02 21:59:30 +0000510<ul>
Benjamin Kramerf26b4152012-05-13 12:01:16 +0000511 <li>The integrated assembler can optionally emit debug information when
512 assembling a </tt>.s</tt> file. It can be enabled by passing the
513 <tt>-g</tt> option to <tt>llvm-mc</tt>.</li>
Chris Lattner7d9b6b42010-10-02 21:59:30 +0000514</ul>
515
NAKAMURA Takumi45c435a2011-04-05 08:24:22 +0000516</div>
Chris Lattner4ba2b652010-09-30 16:31:33 +0000517
Chris Lattner4ba2b652010-09-30 16:31:33 +0000518<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000519<h3>
Chris Lattner511433e2009-03-02 03:24:11 +0000520<a name="codegen">Target Independent Code Generator Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000521</h3>
Chris Lattner0b832202008-06-08 02:45:07 +0000522
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000523<div>
Chris Lattner0b832202008-06-08 02:45:07 +0000524
Bill Wendling190ec9b2012-02-16 10:23:43 +0000525<p>We have changed the way that the Type Legalizer legalizes vectors. The type
526 legalizer now attempts to promote integer elements. This enabled the
527 implementation of vector-select. Additionally, we see a performance boost on
528 workloads which use vectors of chars and shorts, since they are now promoted
529 to 32-bit types, which are better supported by the SIMD instruction set.
530 Floating point types are still widened as before.</p>
Nadav Rotem75597662011-12-20 08:02:50 +0000531
532
Mikhail Glushenkovf795ef02009-03-01 18:09:47 +0000533<p>We have put a significant amount of work into the code generator
Bill Wendling7b7fa742011-10-26 18:46:16 +0000534 infrastructure, which allows us to implement more aggressive algorithms and
535 make it run faster:</p>
Chris Lattner0b832202008-06-08 02:45:07 +0000536
537<ul>
Jakob Stoklund Olesen9897c622011-12-19 16:53:40 +0000538 <li>TableGen can now synthesize register classes that are only needed to
Bill Wendling190ec9b2012-02-16 10:23:43 +0000539 represent combinations of constraints from instructions and sub-registers.
540 The synthetic register classes inherit most of their properties form their
541 closest user-defined super-class.</li>
Jakob Stoklund Olesend9e5c762012-01-05 00:26:49 +0000542 <li><code>MachineRegisterInfo</code> now allows the reserved registers to be
Bill Wendling190ec9b2012-02-16 10:23:43 +0000543 frozen when register allocation starts. Target hooks should use the
Nadav Rotemfdc309c2012-02-26 08:35:53 +0000544 <code>MRI-&gt;canReserveReg(FramePtr)</code> method to avoid accidentally
Bill Wendling190ec9b2012-02-16 10:23:43 +0000545 disabling frame pointer elimination during register allocation.</li>
Jakob Stoklund Olesen7739cad2012-01-16 19:22:00 +0000546 <li>A new kind of <code>MachineOperand</code> provides a compact
Bill Wendling190ec9b2012-02-16 10:23:43 +0000547 representation of large clobber lists on call instructions. The register
548 mask operand references a bit mask of preserved registers. Everything else
549 is clobbered.</li>
Benjamin Kramer3a2d5652012-05-13 13:10:35 +0000550 <li>The DWARF debug info writer gained support for emitting data for the
551 <a href="SourceLevelDebugging.html#acceltable">name accelerator tables
552 DWARF extension</a>. It is used by LLDB to speed up name lookup.</li>
Chris Lattner84977642007-09-21 03:54:09 +0000553</ul>
Bill Wendling190ec9b2012-02-16 10:23:43 +0000554
Anshuman Dasgupta4b479552012-04-12 15:17:35 +0000555<p> We added new TableGen infrastructure to support bundling for
556 Very Long Instruction Word (VLIW) architectures. TableGen can now
557 automatically generate a deterministic finite automaton from a VLIW
558 target's schedule description which can be queried to determine
559 legal groupings of instructions in a bundle.</p>
560
Anshuman Dasgupta3c1ded22012-04-14 20:59:13 +0000561<p> We have added a new target independent VLIW packetizer based on the
Anshuman Dasguptacff391a2012-04-14 20:57:13 +0000562 DFA infrastructure to group machine instructions into bundles.</p>
563
Chris Lattner84977642007-09-21 03:54:09 +0000564</div>
565
Chandler Carruth268fde42012-04-17 01:10:35 +0000566<h4>
567<a name="blockplacement">Basic Block Placement</a>
568</h4>
569<div>
570<p>A probability based block placement and code layout algorithm was added to
571LLVM's code generator. This layout pass supports probabilities derived from
572static heuristics as well as source code annotations such as
573<code>__builtin_expect</code>.</p>
574</div>
575
Chris Lattner917cc712009-03-02 02:37:32 +0000576<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000577<h3>
Chris Lattner917cc712009-03-02 02:37:32 +0000578<a name="x86">X86-32 and X86-64 Target Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000579</h3>
Chris Lattner917cc712009-03-02 02:37:32 +0000580
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000581<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000582
583<p>New features and major changes in the X86 target include:</p>
Chris Lattner917cc712009-03-02 02:37:32 +0000584
585<ul>
Benjamin Kramer3a2d5652012-05-13 13:10:35 +0000586 <li>Greatly improved support for AVX2.</li>
587 <li>Lots of bug fixes and improvements for AVX1.</li>
588 <li>Support for the FMA4 and XOP instruction set extensions.</li>
Jakob Stoklund Olesen26246612012-02-16 18:22:39 +0000589 <li>Call instructions use the new register mask operands for faster compile
590 times and better support for different calling conventions. The old WINCALL
591 instructions are no longer needed.</li>
NAKAMURA Takumi847307a2012-04-07 02:24:20 +0000592 <li>DW2 Exception Handling is enabled on Cygwin and MinGW.</li>
Benjamin Kramer3a2d5652012-05-13 13:10:35 +0000593 <li>Support for implicit TLS model used with MSVC runtime.</li>
Chris Lattner917cc712009-03-02 02:37:32 +0000594</ul>
595
Chris Lattner917cc712009-03-02 02:37:32 +0000596</div>
Chris Lattner84977642007-09-21 03:54:09 +0000597
598<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000599<h3>
Chris Lattner61358ab2009-10-13 17:48:04 +0000600<a name="ARM">ARM Target Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000601</h3>
Chris Lattnerc441fb82009-03-01 02:30:21 +0000602
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000603<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000604
605<p>New features of the ARM target include:</p>
Chris Lattnerc441fb82009-03-01 02:30:21 +0000606
607<ul>
Jakob Stoklund Olesenf5bb45f2011-12-16 16:07:41 +0000608 <li>The constant island pass now supports basic block and constant pool entry
Jim Grosbach6e6b8222012-02-23 23:52:06 +0000609 alignments greater than 4 bytes.</li>
610 <li>On Darwin, the ARM target now has a full-featured integrated assembler.
611 </li>
612</ul>
Chris Lattner7b95c382011-11-15 22:23:46 +0000613
Jim Grosbach6e6b8222012-02-23 23:52:06 +0000614<h4>
615<a name="armintegratedassembler">ARM Integrated Assembler</a>
616</h4>
617<div>
618<p>The ARM target now includes a full featured macro assembler, including
619direct-to-object module support for clang. The assembler is currently enabled
620by default for Darwin only pending testing and any additional necessary
621platform specific support for Linux.</p>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000622
Jim Grosbach6e6b8222012-02-23 23:52:06 +0000623<p>Full support is included for Thumb1, Thumb2 and ARM modes, along with
624subtarget and CPU specific extensions for VFP2, VFP3 and NEON.</p>
625
626<p>The assembler is Unified Syntax only (see ARM Architecural Reference Manual
627for details). While there is some, and growing, support for pre-unfied (divided)
628syntax, there are still significant gaps in that support.</p>
629</div>
NAKAMURA Takumi9c55f592012-03-27 11:25:16 +0000630
631</div>
Chris Lattner1efe27e2011-04-06 00:45:11 +0000632<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000633<h3>
Akira Hatanaka5381cbf2011-11-15 21:33:05 +0000634<a name="MIPS">MIPS Target Improvements</a>
635</h3>
636
637<div>
638
Chris Lattner1cc489b2011-11-27 22:12:32 +0000639<p>This release has seen major new work on just about every aspect of the MIPS
640 backend. Some of the major new features include:</p>
Akira Hatanaka5381cbf2011-11-15 21:33:05 +0000641
642<ul>
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000643 <li>....</li>
Akira Hatanaka5381cbf2011-11-15 21:33:05 +0000644</ul>
645</div>
Chris Lattner7b95c382011-11-15 22:23:46 +0000646
647<!--=========================================================================-->
648<h3>
Justin Holewinskidc23c142012-05-13 17:32:35 +0000649<a name="PTX">PTX Target Improvements</a>
650</h3>
651
652<div>
653
654<p>An outstanding conditional inversion bug was fixed in this release.</p>
655
656<p><b>NOTE</b>: LLVM 3.1 marks the last release of the PTX back-end, in its
657 current form. The back-end is currently being replaced by the NVPTX
658 back-end, currently in SVN ToT.</p>
659
660</div>
661
662<!--=========================================================================-->
663<h3>
Chris Lattner1efe27e2011-04-06 00:45:11 +0000664<a name="OtherTS">Other Target Specific Improvements</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000665</h3>
Chris Lattnerc441fb82009-03-01 02:30:21 +0000666
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000667<div>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000668
Chris Lattner1efe27e2011-04-06 00:45:11 +0000669<ul>
Bill Wendling1fefd092012-05-14 08:11:53 +0000670 <li>Support for Qualcomm's Hexagon VLIW processor has been added.</li>
Chris Lattner1efe27e2011-04-06 00:45:11 +0000671</ul>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000672
Chris Lattner1efe27e2011-04-06 00:45:11 +0000673</div>
Chris Lattner77d29b12008-06-05 08:02:49 +0000674
675<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000676<h3>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000677<a name="changes">Major Changes and Removed Features</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000678</h3>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000679
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000680<div>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000681
Bill Wendling2626dba2011-08-03 22:18:20 +0000682<p>If you're already an LLVM user or developer with out-of-tree changes based on
Chris Lattner21e1b7a2011-12-13 17:55:30 +0000683 LLVM 3.1, this section lists some "gotchas" that you may run into upgrading
Bill Wendling2626dba2011-08-03 22:18:20 +0000684 from the previous release.</p>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000685
686<ul>
Benjamin Kramer2fb68012012-05-13 11:46:05 +0000687 <li>LLVM's build system now requires a python 2 interpreter to be present at
688 build time. A perl interpreter is no longer required.</li>
Benjamin Kramer5fdfaf52012-05-13 11:28:46 +0000689 <li>The C backend has been removed. It had numerous problems, to the point of
690 not being able to compile any nontrivial program.</li>
691 <li>The Alpha, Blackfin and SystemZ targets have been removed due to lack of
692 maintenance.</li>
Bill Wendling190ec9b2012-02-16 10:23:43 +0000693 <li>LLVM 3.1 removes support for reading LLVM 2.9 bitcode files. Going
694 forward, we aim for all future versions of LLVM to read bitcode files and
695 <tt>.ll</tt> files produced by LLVM 3.0 and later.</li>
696 <li>The <tt>unwind</tt> instruction is now gone. With the introduction of the
697 new exception handling system in LLVM 3.0, the <tt>unwind</tt> instruction
698 became obsolete.</li>
Joerg Sonnenbergerdba86d82012-04-26 20:10:07 +0000699 <li>LLVM 3.0 and earlier automatically added the returns_twice fo functions
700 like setjmp based on the name. This functionality was removed in 3.1.
701 This affects Clang users, if -ffreestanding is used.</li>
Devang Patelb34dd132008-10-14 20:03:43 +0000702</ul>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000703
Chris Lattnerf6662f92008-10-13 17:57:36 +0000704</div>
705
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000706<!--=========================================================================-->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000707<h3>
Chris Lattner1efe27e2011-04-06 00:45:11 +0000708<a name="api_changes">Internal API Changes</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000709</h3>
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000710
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000711<div>
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000712
Chris Lattner1efe27e2011-04-06 00:45:11 +0000713<p>In addition, many APIs have changed in this release. Some of the major
Bill Wendling16005252011-08-02 06:20:17 +0000714 LLVM API changes are:</p>
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000715
716<ul>
Nick Lewycky98a92d12012-03-21 22:58:28 +0000717 <li>Target specific options have been moved from global variables to members
718 on the new <code>TargetOptions</code> class, which is local to each
719 <code>TargetMachine</code>. As a consequence, the associated flags will
720 no longer be accepted by <tt>clang -mllvm</tt>. This includes:
721<ul>
Nick Lewycky8a618a22012-03-23 00:56:26 +0000722<li><code>llvm::PrintMachineCode</code></li>
723<li><code>llvm::NoFramePointerElim</code></li>
724<li><code>llvm::NoFramePointerElimNonLeaf</code></li>
725<li><code>llvm::DisableFramePointerElim(const MachineFunction &)</code></li>
726<li><code>llvm::LessPreciseFPMADOption</code></li>
727<li><code>llvm::LessPrecideFPMAD()</code></li>
728<li><code>llvm::NoExcessFPPrecision</code></li>
729<li><code>llvm::UnsafeFPMath</code></li>
730<li><code>llvm::NoInfsFPMath</code></li>
731<li><code>llvm::NoNaNsFPMath</code></li>
732<li><code>llvm::HonorSignDependentRoundingFPMathOption</code></li>
733<li><code>llvm::HonorSignDependentRoundingFPMath()</code></li>
734<li><code>llvm::UseSoftFloat</code></li>
735<li><code>llvm::FloatABIType</code></li>
736<li><code>llvm::NoZerosInBSS</code></li>
737<li><code>llvm::JITExceptionHandling</code></li>
738<li><code>llvm::JITEmitDebugInfo</code></li>
739<li><code>llvm::JITEmitDebugInfoToDisk</code></li>
740<li><code>llvm::GuaranteedTailCallOpt</code></li>
741<li><code>llvm::StackAlignmentOverride</code></li>
742<li><code>llvm::RealignStack</code></li>
743<li><code>llvm::DisableJumpTables</code></li>
744<li><code>llvm::EnableFastISel</code></li>
745<li><code>llvm::getTrapFunctionName()</code></li>
746<li><code>llvm::EnableSegmentedStacks</code></li>
Nick Lewycky98a92d12012-03-21 22:58:28 +0000747</ul></li>
Bill Wendling1fefd092012-05-14 08:11:53 +0000748
749 <li>The <code>MDBuilder</code> class has been added to simplify the creation
750 of metadata.</li>
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000751</ul>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000752
Daniel Dunbarf0233c62010-10-04 20:11:41 +0000753</div>
Chris Lattnerf6662f92008-10-13 17:57:36 +0000754
Nadav Rotemfdc309c2012-02-26 08:35:53 +0000755<!--=========================================================================-->
756<h3>
757<a name="tools_changes">Tools Changes</a>
758</h3>
759
760<div>
761
762<p>In addition, some tools have changed in this release. Some of the changes
763 are:</p>
764
765
766<ul>
Benjamin Kramer5fdfaf52012-05-13 11:28:46 +0000767 <li><tt>llvm-stress</tt> is a command line tool for generating random
768 <tt>.ll</tt> files to fuzz different LLVM components. </li>
769 <li>The <tt>llvm-ld</tt> tool has been removed. The clang driver provides a
770 more reliable solution for turning a set of bitcode files into a binary.
771 To merge bitcode files <tt>llvm-link</tt> can be used instead.</li>
Nadav Rotemfdc309c2012-02-26 08:35:53 +0000772</ul>
773
774</div>
775
Gregory Szorcca347492012-05-12 21:12:22 +0000776
777<!--=========================================================================-->
778<h3>
779<a name="python">Python Bindings</a>
780</h3>
781
782<div>
783
784<p>Officially supported Python bindings have been added! Feature support is far
785from complete. The current bindings support interfaces to:</p>
786<ul>
787 <li>Object File Interface</li>
788 <li>Disassembler</li>
789</ul>
790
791<p>Using the Object File Interface, it is possible to inspect binary object files.
792Think of it as a Python version of readelf or llvm-objdump.</p>
793
794<p>Support for additional features is currently being developed by community
795contributors. If you are interested in shaping the direction of the Python
796bindings, please express your intent on IRC or the developers list.</p>
797
798</div>
799
Nadav Rotemfdc309c2012-02-26 08:35:53 +0000800</div>
801
Chris Lattner79c3fe12003-10-02 04:57:28 +0000802<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000803<h2>
Misha Brukman500bc302003-11-22 00:38:41 +0000804 <a name="knownproblems">Known Problems</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000805</h2>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000806<!-- *********************************************************************** -->
807
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000808<div>
Misha Brukman500bc302003-11-22 00:38:41 +0000809
Chris Lattner70e22012011-11-27 19:38:20 +0000810<p>LLVM is generally a production quality compiler, and is used by a broad range
811 of applications and shipping in many products. That said, not every
812 subsystem is as mature as the aggregate, particularly the more obscure
813 targets. If you run into a problem, please check the <a
814 href="http://llvm.org/bugs/">LLVM bug database</a> and submit a bug if
815 there isn't already one or ask on the <a
816 href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVMdev
817 list</a>.</p>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000818
Chris Lattner70e22012011-11-27 19:38:20 +0000819 <p>Known problem areas include:</p>
Michael J. Spencer60f790c2011-11-28 18:20:09 +0000820
Chris Lattnerf5ee1702004-03-14 02:03:02 +0000821<ul>
Benjamin Kramer5fdfaf52012-05-13 11:28:46 +0000822 <li>The CellSPU, MSP430, PTX and XCore backends are experimental.</li>
Bill Wendling7b7fa742011-10-26 18:46:16 +0000823
Chris Lattner70e22012011-11-27 19:38:20 +0000824 <li>The integrated assembler, disassembler, and JIT is not supported by
825 several targets. If an integrated assembler is not supported, then a
826 system assembler is required. For more details, see the <a
827 href="CodeGenerator.html#targetfeatures">Target Features Matrix</a>.
828 </li>
Chris Lattner26299222006-11-18 07:51:14 +0000829</ul>
830
831</div>
John Criswellc0c186d2005-11-08 21:11:33 +0000832
Chris Lattner79c3fe12003-10-02 04:57:28 +0000833<!-- *********************************************************************** -->
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000834<h2>
Misha Brukman500bc302003-11-22 00:38:41 +0000835 <a name="additionalinfo">Additional Information</a>
NAKAMURA Takumi06c6d9a2011-04-18 01:17:51 +0000836</h2>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000837<!-- *********************************************************************** -->
838
NAKAMURA Takumi074eeaa2011-04-21 01:52:00 +0000839<div>
Misha Brukman500bc302003-11-22 00:38:41 +0000840
Bill Wendling7b7fa742011-10-26 18:46:16 +0000841<p>A wide variety of additional information is available on
842 the <a href="http://llvm.org/">LLVM web page</a>, in particular in
843 the <a href="http://llvm.org/docs/">documentation</a> section. The web page
844 also contains versions of the API documentation which is up-to-date with the
845 Subversion version of the source code. You can access versions of these
846 documents specific to this release by going into the "<tt>llvm/doc/</tt>"
847 directory in the LLVM tree.</p>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000848
Misha Brukman500bc302003-11-22 00:38:41 +0000849<p>If you have any questions or comments about LLVM, please feel free to contact
Bill Wendling7b7fa742011-10-26 18:46:16 +0000850 us via the <a href="http://llvm.org/docs/#maillist"> mailing lists</a>.</p>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000851
Misha Brukman500bc302003-11-22 00:38:41 +0000852</div>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000853
854<!-- *********************************************************************** -->
Chris Lattner79c3fe12003-10-02 04:57:28 +0000855
Misha Brukman500bc302003-11-22 00:38:41 +0000856<hr>
Misha Brukman2061e892003-11-22 01:23:39 +0000857<address>
Misha Brukman38847d52003-12-21 22:53:21 +0000858 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +0000859 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Misha Brukman2061e892003-11-22 01:23:39 +0000860 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +0000861 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Misha Brukman2061e892003-11-22 01:23:39 +0000862
Chris Lattnerb4b0ce72007-05-18 00:44:29 +0000863 <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br>
Misha Brukman500bc302003-11-22 00:38:41 +0000864 Last modified: $Date$
Misha Brukman2061e892003-11-22 01:23:39 +0000865</address>
Chris Lattner79c3fe12003-10-02 04:57:28 +0000866
Misha Brukman500bc302003-11-22 00:38:41 +0000867</body>
868</html>