1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <link rel="stylesheet" href="llvm.css" type="text/css">
7 <title>LLVM 2.6 Release Notes</title>
11 <div class="doc_title">LLVM 2.6 Release Notes</div>
14 <li><a href="#intro">Introduction</a></li>
15 <li><a href="#subproj">Sub-project Status Update</a></li>
16 <li><a href="#externalproj">External Projects Using LLVM 2.6</a></li>
17 <li><a href="#whatsnew">What's New in LLVM 2.6?</a></li>
18 <li><a href="GettingStarted.html">Installation Instructions</a></li>
19 <li><a href="#portability">Portability and Supported Platforms</a></li>
20 <li><a href="#knownproblems">Known Problems</a></li>
21 <li><a href="#additionalinfo">Additional Information</a></li>
24 <div class="doc_author">
25 <p>Written by the <a href="http://llvm.org">LLVM Team</a></p>
28 <!-- *********************************************************************** -->
29 <div class="doc_section">
30 <a name="intro">Introduction</a>
32 <!-- *********************************************************************** -->
34 <div class="doc_text">
36 <p>This document contains the release notes for the LLVM Compiler
37 Infrastructure, release 2.6. Here we describe the status of LLVM, including
38 major improvements from the previous release and significant known problems.
39 All LLVM releases may be downloaded from the <a
40 href="http://llvm.org/releases/">LLVM releases web site</a>.</p>
42 <p>For more information about LLVM, including information about the latest
43 release, please check out the <a href="http://llvm.org/">main LLVM
44 web site</a>. If you have questions or comments, the <a
45 href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM Developer's Mailing
46 List</a> is a good place to send them.</p>
48 <p>Note that if you are reading this file from a Subversion checkout or the
49 main LLVM web page, this document applies to the <i>next</i> release, not the
50 current one. To see the release notes for a specific release, please see the
51 <a href="http://llvm.org/releases/">releases page</a>.</p>
55 <!-- Unfinished features in 2.5:
58 target-specific intrinsics
60 pre-alloc splitter, strong phi elim
61 <tt>llc -enable-value-prop</tt>, propagation of value info
62 (sign/zero ext info) from one MBB to another
63 debug info for optimized code
65 postalloc scheduler: anti dependence breaking, hazard recognizer?
67 initial support for debug line numbers when optimization enabled, not useful in
68 2.5 but will be for 2.6.
72 <!-- for announcement email:
75 <!-- *********************************************************************** -->
76 <div class="doc_section">
77 <a name="subproj">Sub-project Status Update</a>
79 <!-- *********************************************************************** -->
81 <div class="doc_text">
83 The LLVM 2.6 distribution currently consists of code from the core LLVM
84 repository —which roughly includes the LLVM optimizers, code generators
85 and supporting tools — and the llvm-gcc repository. In addition to this
86 code, the LLVM Project includes other sub-projects that are in development. The
87 two which are the most actively developed are the <a href="#clang">Clang
88 Project</a> and the <a href="#vmkit">VMKit Project</a>.
94 <!--=========================================================================-->
95 <div class="doc_subsection">
96 <a name="clang">Clang: C/C++/Objective-C Frontend Toolkit</a>
99 <div class="doc_text">
101 <p>The <a href="http://clang.llvm.org/">Clang project</a> is an effort to build
102 a set of new 'LLVM native' front-end technologies for the LLVM optimizer and
103 code generator. While Clang is not included in the LLVM 2.6 release, it is
104 continuing to make major strides forward in all areas. Its C and Objective-C
105 parsing and code generation support is now very solid. For example, it is
106 capable of successfully building many real-world applications for X86-32
108 including the <a href="http://wiki.freebsd.org/BuildingFreeBSDWithClang">FreeBSD
109 kernel</a> and <a href="http://gcc.gnu.org/gcc-4.2/">gcc 4.2</a>. C++ is also
110 making <a href="http://clang.llvm.org/cxx_status.html">incredible progress</a>,
111 and work on templates has recently started. If you are
112 interested in fast compiles and good diagnostics, we encourage you to try it out
113 by <a href="http://clang.llvm.org/get_started.html">building from mainline</a>
114 and reporting any issues you hit to the <a
115 href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">Clang front-end mailing
118 <p>In the LLVM 2.6 time-frame, the Clang team has made many improvements:</p>
121 <li>Something wonderful!</li>
122 <li>Many many bugs are fixed and many features have been added.</li>
126 <!--=========================================================================-->
127 <div class="doc_subsection">
128 <a name="clangsa">Clang Static Analyzer</a>
131 <div class="doc_text">
133 <p>Previously announced in the 2.4 LLVM release, the Clang project also
134 includes an early stage static source code analysis tool for <a
135 href="http://clang.llvm.org/StaticAnalysis.html">automatically finding bugs</a>
136 in C and Objective-C programs. The tool performs a growing set of checks to find
137 bugs that occur on a specific path within a program.</p>
139 <p>In the LLVM 2.6 time-frame there have been many significant improvements to
142 <p>The set of checks performed by the static analyzer continues to expand, and
143 future plans for the tool include full source-level inter-procedural analysis
144 and deeper checks such as buffer overrun detection. There are many opportunities
145 to extend and enhance the static analyzer, and anyone interested in working on
146 this project is encouraged to get involved!</p>
150 <!--=========================================================================-->
151 <div class="doc_subsection">
152 <a name="vmkit">VMKit: JVM/CLI Virtual Machine Implementation</a>
155 <div class="doc_text">
157 The <a href="http://vmkit.llvm.org/">VMKit project</a> is an implementation of
158 a JVM and a CLI Virtual Machines (Microsoft .NET is an
159 implementation of the CLI) using the Just-In-Time compiler of LLVM.</p>
161 <p>Following LLVM 2.6, VMKit has its XYZ release that you can find on its
162 <a href="http://vmkit.llvm.org/releases/">webpage</a>. The release includes
163 bug fixes, cleanup and new features. The major changes are:</p>
167 <li>Something wonderful!</li>
172 <!-- *********************************************************************** -->
173 <div class="doc_section">
174 <a name="externalproj">External Projects Using LLVM 2.6</a>
176 <!-- *********************************************************************** -->
178 <!--=========================================================================-->
179 <div class="doc_subsection">
180 <a name="pure">Pure</a>
183 <div class="doc_text">
185 <a href="http://pure-lang.googlecode.com/">Pure</a>
186 is an algebraic/functional programming language based on term rewriting.
187 Programs are collections of equations which are used to evaluate expressions in
188 a symbolic fashion. Pure offers dynamic typing, eager and lazy evaluation,
189 lexical closures, a hygienic macro system (also based on term rewriting),
190 built-in list and matrix support (including list and matrix comprehensions) and
191 an easy-to-use C interface. The interpreter uses LLVM as a backend to
192 JIT-compile Pure programs to fast native code.</p>
194 <p>In addition to the usual algebraic data structures, Pure also has
195 MATLAB-style matrices in order to support numeric computations and signal
196 processing in an efficient way. Pure is mainly aimed at mathematical
197 applications right now, but it has been designed as a general purpose language.
198 The dynamic interpreter environment and the C interface make it possible to use
199 it as a kind of functional scripting language for many application areas.
204 <!--=========================================================================-->
205 <div class="doc_subsection">
206 <a name="ldc">LLVM D Compiler</a>
209 <div class="doc_text">
211 <a href="http://www.dsource.org/projects/ldc">LDC</a> is an implementation of
212 the D Programming Language using the LLVM optimizer and code generator.
213 The LDC project works great with the LLVM 2.6 release. General improvements in
215 cycle have included new inline asm constraint handling, better debug info
216 support, general bugfixes, and better x86-64 support. This has allowed
217 some major improvements in LDC, getting us much closer to being as
218 fully featured as the original DMD compiler from DigitalMars.
222 <!--=========================================================================-->
223 <div class="doc_subsection">
224 <a name="RoadsendPHP">Roadsend PHP</a>
227 <div class="doc_text">
228 <p><a href="http://code.roadsend.com/rphp">Roadsend PHP</a> (rphp) is an open
229 source implementation of the PHP programming
230 language that uses LLVM for its optimizer, JIT, and static compiler. This is a
231 reimplementation of an earlier project that is now based on LLVM.</p>
234 <!--=========================================================================-->
235 <div class="doc_subsection">
236 <a name="Unladen Swallow">Unladen Swallow</a>
239 <div class="doc_text">
240 <p><a href="http://code.google.com/p/unladen-swallow/">Unladen Swallow</a> is a
241 branch of <a href="http://python.org/">Python</a> intended to be fully
242 compatible and significantly faster. It uses LLVM's optimization passes and JIT
246 <!--=========================================================================-->
247 <div class="doc_subsection">
248 <a name="Rubinius">Rubinius</a>
251 <div class="doc_text">
252 <p><a href="http://github.com/evanphx/rubinius">Rubinius</a> is a new virtual
253 machine for Ruby. It leverages LLVM to dynamically compile Ruby code down to
254 machine code using LLVM's JIT.</p>
258 <!-- *********************************************************************** -->
259 <div class="doc_section">
260 <a name="whatsnew">What's New in LLVM 2.6?</a>
262 <!-- *********************************************************************** -->
264 <div class="doc_text">
266 <p>This release includes a huge number of bug fixes, performance tweaks, and
267 minor improvements. Some of the major improvements and new features are listed
272 <!--=========================================================================-->
273 <div class="doc_subsection">
274 <a name="majorfeatures">Major New Features</a>
277 <div class="doc_text">
279 <p>LLVM 2.6 includes several major new capabilities:</p>
282 <li>Something wonderful!</li>
288 <!--=========================================================================-->
289 <div class="doc_subsection">
290 <a name="llvm-gcc">llvm-gcc 4.2 Improvements</a>
293 <div class="doc_text">
295 <p>LLVM fully supports the llvm-gcc 4.2 front-end, which marries the GCC
296 front-ends and driver with the LLVM optimizer and code generator. It currently
297 includes support for the C, C++, Objective-C, Ada, and Fortran front-ends.</p>
300 <li>Something wonderful!</li>
306 <!--=========================================================================-->
307 <div class="doc_subsection">
308 <a name="coreimprovements">LLVM IR and Core Improvements</a>
311 <div class="doc_text">
312 <p>LLVM IR has several new features that are used by our existing front-ends and
313 can be useful if you are writing a front-end for LLVM:</p>
316 <li>Something wonderful!</li>
321 <!--=========================================================================-->
322 <div class="doc_subsection">
323 <a name="optimizer">Optimizer Improvements</a>
326 <div class="doc_text">
328 <p>In addition to a large array of bug fixes and minor performance tweaks, this
329 release includes a few major enhancements and additions to the optimizers:</p>
333 <li>Something wonderful!</li>
339 <!--=========================================================================-->
340 <div class="doc_subsection">
341 <a name="codegen">Target Independent Code Generator Improvements</a>
344 <div class="doc_text">
346 <p>We have put a significant amount of work into the code generator
347 infrastructure, which allows us to implement more aggressive algorithms and make
352 <li>Something wonderful!</li>
356 <!--=========================================================================-->
357 <div class="doc_subsection">
358 <a name="x86">X86-32 and X86-64 Target Improvements</a>
361 <div class="doc_text">
362 <p>New features of the X86 target include:
367 <li>Something wonderful!</li>
372 <!--=========================================================================-->
373 <div class="doc_subsection">
374 <a name="pic16">PIC16 Target Improvements</a>
377 <div class="doc_text">
378 <p>New features of the PIC16 target include:
382 <li>Something wonderful!</li>
385 <p>Things not yet supported:</p>
388 <li>Floating point.</li>
389 <li>Passing/returning aggregate types to and from functions.</li>
390 <li>Variable arguments.</li>
391 <li>Indirect function calls.</li>
392 <li>Interrupts/programs.</li>
398 <!--=========================================================================-->
399 <div class="doc_subsection">
400 <a name="ARM">ARM Target Improvements</a>
403 <div class="doc_text">
404 <p>New features of the ARM target include:
409 <li>Preliminary support for processors, such as the Cortex-A8 and Cortex-A9,
410 that implement version 7 of the ARM architecture. The ARM backend now
411 supports both the Thumb2 and Advanced SIMD (Neon) instruction sets.
412 These features are still somewhat experimental and subject to change.
413 The Neon intrinsics, in particular, may change in future releases of LLVM.
420 <!--=========================================================================-->
421 <div class="doc_subsection">
422 <a name="llvmc">Improvements in LLVMC</a>
425 <div class="doc_text">
426 <p>New features include:</p>
429 <li>Something wonderful!</li>
435 <!--=========================================================================-->
436 <div class="doc_subsection">
437 <a name="changes">Major Changes and Removed Features</a>
440 <div class="doc_text">
442 <p>If you're already an LLVM user or developer with out-of-tree changes based
443 on LLVM 2.5, this section lists some "gotchas" that you may run into upgrading
444 from the previous release.</p>
448 <li>Something horrible!</li>
453 <p>In addition, many APIs have changed in this release. Some of the major LLVM
457 <li>LLVM's global uniquing tables for <tt>Type</tt>s and <tt>Constant</tt>s have
458 been privatized into members of an <tt>LLVMContext</tt>. A number of APIs
459 now take an <tt>LLVMContext</tt> as a parameter. To smooth the transition
460 for clients that will only ever use a single context, the new
461 <tt>getGlobalContext()</tt> API can be used to access a default global
462 context which can be passed in any and all cases where a context is
464 <li>The <tt>getABITypeSize</tt> methods are now called <tt>getAllocSize</tt>.</li>
465 <li>The <tt>Add</tt>, <tt>Sub</tt>, and <tt>Mul</tt> operators are no longer
466 overloaded for floating-point types. Floating-point addition, subtraction,
467 and multiplication are now represented with new operators <tt>FAdd</tt>,
468 <tt>FSub</tt>, and <tt>FMul</tt>. In the <tt>IRBuilder</tt> API,
469 <tt>CreateAdd</tt>, <tt>CreateSub</tt>, <tt>CreateMul</tt>, and
470 <tt>CreateNeg</tt> should only be used for integer arithmetic now;
471 <tt>CreateFAdd</tt>, <tt>CreateFSub</tt>, <tt>CreateFMul</tt>, and
472 <tt>CreateFNeg</tt> should now be used for floating-point arithmetic.</li>
473 <li>The DynamicLibrary class can no longer be constructed, its functionality has
474 moved to static member functions.</li>
475 <li><tt>raw_fd_ostream</tt>'s constructor for opening a given filename now
476 takes an extra <tt>Force</tt> argument. If <tt>Force</tt> is set to
477 <tt>false</tt>, an error will be reported if a file with the given name
478 already exists. If <tt>Force</tt> is set to <tt>true</tt>, the file will
479 be silently truncated (which is the behavior before this flag was
481 <li><tt>SCEVHandle</tt> no longer exists, because reference counting is no
482 longer done for <tt>SCEV*</tt> objects, instead <tt>const SCEV*</tt> should be
485 <li>Many APIs, notably <tt>llvm::Value</tt>, now use the <tt>StringRef</tt>
486 and <tt>Twine</tt> classes instead of passing <tt>const char*</tt>
487 or <tt>std::string</tt>, as described in
488 the <a href="ProgrammersManual.html#string_apis">Programmer's Manual</a>. Most
489 clients should be unaffected by this transition, unless they are used to <tt>Value::getName()</tt> returning a string. Here are some tips on updating to 2.6:
491 <li><tt>getNameStr()</tt> is still available, and matches the old
492 behavior. Replacing <tt>getName()</tt> calls with this is an safe option,
493 although more efficient alternatives are now possible.</li>
495 <li>If you were just relying on <tt>getName()</tt> being able to be sent to
496 a <tt>std::ostream</tt>, consider migrating
497 to <tt>llvm::raw_ostream</tt>.</li>
499 <li>If you were using <tt>getName().c_str()</tt> to get a <tt>const
500 char*</tt> pointer to the name, you can use <tt>getName().data()</tt>.
501 Note that this string (as before), may not be the entire name if the
502 name containts embedded null characters.</li>
504 <li>If you were using operator plus on the result of <tt>getName()</tt> and
505 treating the result as an <tt>std::string</tt>, you can either
506 uses <tt>Twine::str</tt> to get the result as an <tt>std::string</tt>, or
507 could move to a <tt>Twine</tt> based design.</li>
509 <li><tt>isName()</tt> should be replaced with comparison
510 against <tt>getName()</tt> (this is now efficient).
514 <li>The registration interfaces for backend Targets has changed (what was
515 previously TargetMachineRegistry). For backend authors, see the <a href="WritingAnLLVMBackend.html#TargetRegistration">Writing An LLVM Backend</a> guide. For clients, the notable API changes are:
517 <li><tt>TargetMachineRegistry</tt> has been renamed
518 to <tt>TargetRegistry</tt>.</li>
520 <li>Clients should move to using the <tt>TargetRegistry::lookupTarget()</tt>
521 function to find targets.</li>
525 <li>llvm-dis now fails if output file exists, instead of dumping to stdout.
526 FIXME: describe any other tool changes due to the raw_fd_ostream change. FIXME:
527 This is not an API change, maybe there should be a tool changes section?</li>
528 <li>temporarely due to Context API change passes should call doInitialization()
529 method of the pass they inherit from, otherwise Context is NULL.
530 FIXME: remove this entry when this is no longer needed.<li>
537 <!-- *********************************************************************** -->
538 <div class="doc_section">
539 <a name="portability">Portability and Supported Platforms</a>
541 <!-- *********************************************************************** -->
543 <div class="doc_text">
545 <p>LLVM is known to work on the following platforms:</p>
548 <li>Intel and AMD machines (IA32, X86-64, AMD64, EMT-64) running Red Hat
549 Linux, Fedora Core, FreeBSD and AuroraUX (and probably other unix-like systems).</li>
550 <li>PowerPC and X86-based Mac OS X systems, running 10.3 and above in 32-bit
551 and 64-bit modes.</li>
552 <li>Intel and AMD machines running on Win32 using MinGW libraries (native).</li>
553 <li>Intel and AMD machines running on Win32 with the Cygwin libraries (limited
554 support is available for native builds with Visual C++).</li>
555 <li>Sun UltraSPARC workstations running Solaris 10.</li>
556 <li>Alpha-based machines running Debian GNU/Linux.</li>
559 <p>The core LLVM infrastructure uses GNU autoconf to adapt itself
560 to the machine and operating system on which it is built. However, minor
561 porting may be required to get LLVM to work on new platforms. We welcome your
562 portability patches and reports of successful builds or error messages.</p>
566 <!-- *********************************************************************** -->
567 <div class="doc_section">
568 <a name="knownproblems">Known Problems</a>
570 <!-- *********************************************************************** -->
572 <div class="doc_text">
574 <p>This section contains significant known problems with the LLVM system,
575 listed by component. If you run into a problem, please check the <a
576 href="http://llvm.org/bugs/">LLVM bug database</a> and submit a bug if
577 there isn't already one.</p>
580 <li>LLVM will not correctly compile on Solaris and/or OpenSolaris
581 using the stock GCC 3.x.x series 'out the box',
582 See: <a href="#brokengcc">Broken versions of GCC and other tools</a>.
583 However, A <a href="http://pkg.auroraux.org/GCC">Modern GCC Build</a>
584 for x86/x64 has been made available from the third party AuroraUX Project
585 that has been meticulously tested for bootstrapping LLVM & Clang.</li>
590 <!-- ======================================================================= -->
591 <div class="doc_subsection">
592 <a name="experimental">Experimental features included with this release</a>
595 <div class="doc_text">
597 <p>The following components of this LLVM release are either untested, known to
598 be broken or unreliable, or are in early development. These components should
599 not be relied on, and bugs should not be filed against them, but they may be
600 useful to some people. In particular, if you would like to work on one of these
601 components, please contact us on the <a
602 href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVMdev list</a>.</p>
605 <li>The MSIL, Alpha, SPU, MIPS, and PIC16 backends are experimental.</li>
606 <li>The <tt>llc</tt> "<tt>-filetype=asm</tt>" (the default) is the only
607 supported value for this option.</li>
612 <!-- ======================================================================= -->
613 <div class="doc_subsection">
614 <a name="x86-be">Known problems with the X86 back-end</a>
617 <div class="doc_text">
620 <li>The X86 backend does not yet support
621 all <a href="http://llvm.org/PR879">inline assembly that uses the X86
622 floating point stack</a>. It supports the 'f' and 't' constraints, but not
624 <li>The X86 backend generates inefficient floating point code when configured
625 to generate code for systems that don't have SSE2.</li>
626 <li>Win64 code generation wasn't widely tested. Everything should work, but we
627 expect small issues to happen. Also, llvm-gcc cannot build the mingw64
628 runtime currently due
629 to <a href="http://llvm.org/PR2255">several</a>
630 <a href="http://llvm.org/PR2257">bugs</a> and due to lack of support for
632 'u' inline assembly constraint and for X87 floating point inline assembly.</li>
633 <li>The X86-64 backend does not yet support the LLVM IR instruction
634 <tt>va_arg</tt>. Currently, the llvm-gcc and front-ends support variadic
635 argument constructs on X86-64 by lowering them manually.</li>
640 <!-- ======================================================================= -->
641 <div class="doc_subsection">
642 <a name="ppc-be">Known problems with the PowerPC back-end</a>
645 <div class="doc_text">
648 <li>The Linux PPC32/ABI support needs testing for the interpreter and static
649 compilation, and lacks support for debug information.</li>
654 <!-- ======================================================================= -->
655 <div class="doc_subsection">
656 <a name="arm-be">Known problems with the ARM back-end</a>
659 <div class="doc_text">
662 <li>Support for the Advanced SIMD (Neon) instruction set is still incomplete
663 and not well tested. Some features may not work at all, and the code quality
664 may be poor in some cases.</li>
665 <li>Thumb mode works only on ARMv6 or higher processors. On sub-ARMv6
666 processors, thumb programs can crash or produce wrong
667 results (<a href="http://llvm.org/PR1388">PR1388</a>).</li>
668 <li>Compilation for ARM Linux OABI (old ABI) is supported but not fully tested.
670 <li>There is a bug in QEMU-ARM (<= 0.9.0) which causes it to incorrectly
672 programs compiled with LLVM. Please use more recent versions of QEMU.</li>
677 <!-- ======================================================================= -->
678 <div class="doc_subsection">
679 <a name="sparc-be">Known problems with the SPARC back-end</a>
682 <div class="doc_text">
685 <li>The SPARC backend only supports the 32-bit SPARC ABI (-m32); it does not
686 support the 64-bit SPARC ABI (-m64).</li>
691 <!-- ======================================================================= -->
692 <div class="doc_subsection">
693 <a name="mips-be">Known problems with the MIPS back-end</a>
696 <div class="doc_text">
699 <li>The O32 ABI is not fully supported.</li>
700 <li>64-bit MIPS targets are not supported yet.</li>
705 <!-- ======================================================================= -->
706 <div class="doc_subsection">
707 <a name="alpha-be">Known problems with the Alpha back-end</a>
710 <div class="doc_text">
714 <li>On 21164s, some rare FP arithmetic sequences which may trap do not have the
715 appropriate nops inserted to ensure restartability.</li>
720 <!-- ======================================================================= -->
721 <div class="doc_subsection">
722 <a name="c-be">Known problems with the C back-end</a>
725 <div class="doc_text">
728 <li><a href="http://llvm.org/PR802">The C backend has only basic support for
729 inline assembly code</a>.</li>
730 <li><a href="http://llvm.org/PR1658">The C backend violates the ABI of common
731 C++ programs</a>, preventing intermixing between C++ compiled by the CBE and
732 C++ code compiled with <tt>llc</tt> or native compilers.</li>
733 <li>The C backend does not support all exception handling constructs.</li>
734 <li>The C backend does not support arbitrary precision integers.</li>
740 <!-- ======================================================================= -->
741 <div class="doc_subsection">
742 <a name="c-fe">Known problems with the llvm-gcc C front-end</a>
745 <div class="doc_text">
747 <p>llvm-gcc does not currently support <a href="http://llvm.org/PR869">Link-Time
748 Optimization</a> on most platforms "out-of-the-box". Please inquire on the
749 LLVMdev mailing list if you are interested.</p>
751 <p>The only major language feature of GCC not supported by llvm-gcc is
752 the <tt>__builtin_apply</tt> family of builtins. However, some extensions
753 are only supported on some targets. For example, trampolines are only
754 supported on some targets (these are used when you take the address of a
755 nested function).</p>
757 <p>If you run into GCC extensions which are not supported, please let us know.
762 <!-- ======================================================================= -->
763 <div class="doc_subsection">
764 <a name="c++-fe">Known problems with the llvm-gcc C++ front-end</a>
767 <div class="doc_text">
769 <p>The C++ front-end is considered to be fully
770 tested and works for a number of non-trivial programs, including LLVM
771 itself, Qt, Mozilla, etc.</p>
774 <li>Exception handling works well on the X86 and PowerPC targets. Currently
775 only Linux and Darwin targets are supported (both 32 and 64 bit).</li>
780 <!-- ======================================================================= -->
781 <div class="doc_subsection">
782 <a name="fortran-fe">Known problems with the llvm-gcc Fortran front-end</a>
785 <div class="doc_text">
787 <li>Fortran support generally works, but there are still several unresolved bugs
788 in Bugzilla. Please see the tools/gfortran component for details.</li>
792 <!-- ======================================================================= -->
793 <div class="doc_subsection">
794 <a name="ada-fe">Known problems with the llvm-gcc Ada front-end</a>
797 <div class="doc_text">
798 The llvm-gcc 4.2 Ada compiler works fairly well; however, this is not a mature
799 technology, and problems should be expected.
801 <li>The Ada front-end currently only builds on X86-32. This is mainly due
802 to lack of trampoline support (pointers to nested functions) on other platforms.
803 However, it <a href="http://llvm.org/PR2006">also fails to build on X86-64</a>
804 which does support trampolines.</li>
805 <li>The Ada front-end <a href="http://llvm.org/PR2007">fails to bootstrap</a>.
806 This is due to lack of LLVM support for <tt>setjmp</tt>/<tt>longjmp</tt> style
807 exception handling, which is used internally by the compiler.
808 Workaround: configure with --disable-bootstrap.</li>
809 <li>The c380004, <a href="http://llvm.org/PR2010">c393010</a>
810 and <a href="http://llvm.org/PR2421">cxg2021</a> ACATS tests fail
811 (c380004 also fails with gcc-4.2 mainline).
812 If the compiler is built with checks disabled then <a href="http://llvm.org/PR2010">c393010</a>
813 causes the compiler to go into an infinite loop, using up all system memory.</li>
814 <li>Some GCC specific Ada tests continue to crash the compiler.</li>
815 <li>The -E binder option (exception backtraces)
816 <a href="http://llvm.org/PR1982">does not work</a> and will result in programs
817 crashing if an exception is raised. Workaround: do not use -E.</li>
818 <li>Only discrete types <a href="http://llvm.org/PR1981">are allowed to start
819 or finish at a non-byte offset</a> in a record. Workaround: do not pack records
820 or use representation clauses that result in a field of a non-discrete type
821 starting or finishing in the middle of a byte.</li>
822 <li>The <tt>lli</tt> interpreter <a href="http://llvm.org/PR2009">considers
823 'main' as generated by the Ada binder to be invalid</a>.
824 Workaround: hand edit the file to use pointers for <tt>argv</tt> and
825 <tt>envp</tt> rather than integers.</li>
826 <li>The <tt>-fstack-check</tt> option <a href="http://llvm.org/PR2008">is
831 <!-- *********************************************************************** -->
832 <div class="doc_section">
833 <a name="additionalinfo">Additional Information</a>
835 <!-- *********************************************************************** -->
837 <div class="doc_text">
839 <p>A wide variety of additional information is available on the <a
840 href="http://llvm.org">LLVM web page</a>, in particular in the <a
841 href="http://llvm.org/docs/">documentation</a> section. The web page also
842 contains versions of the API documentation which is up-to-date with the
843 Subversion version of the source code.
844 You can access versions of these documents specific to this release by going
845 into the "<tt>llvm/doc/</tt>" directory in the LLVM tree.</p>
847 <p>If you have any questions or comments about LLVM, please feel free to contact
848 us via the <a href="http://llvm.org/docs/#maillist"> mailing
853 <!-- *********************************************************************** -->
857 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
858 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
859 <a href="http://validator.w3.org/check/referer"><img
860 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
862 <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br>
863 Last modified: $Date$