X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FReleaseNotes.html;h=b0e3ba28e54ba3170be5d6151a381dd749476c24;hb=d051f7a13d8345ced6e409b3fe0313b9f865f1e0;hp=7fc4ead6001de6b4122006a3da049a7cb99fadb5;hpb=8497764d703aa5361790eaf72e64da33e31f2503;p=oota-llvm.git diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 7fc4ead6001..b0e3ba28e54 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -4,11 +4,11 @@ - LLVM 2.1 Release Notes + LLVM 2.3 Release Notes -
LLVM 2.1 Release Notes
+
LLVM 2.3 Release Notes
  1. Introduction
  2. @@ -23,6 +23,9 @@

    Written by the LLVM Team

    +

    THIS IS A WORK IN PROGRESS FOR LLVM 2.3 (currently in +progress on SVN HEAD)

    +
    Introduction @@ -32,7 +35,7 @@

    This document contains the release notes for the LLVM compiler -infrastructure, release 2.1. Here we describe the status of LLVM, including +infrastructure, release 2.3. Here we describe the status of LLVM, including major improvements from the previous release and any known problems. All LLVM releases may be downloaded from the LLVM releases web site.

    @@ -58,103 +61,69 @@ current one. To see the release notes for a specific releases, please see the
    -

    This is the twelfth public release of the LLVM Compiler Infrastructure. -It includes many features and refinements from LLVM 2.0.

    +

    This is the fourteenth public release of the LLVM Compiler Infrastructure. +It includes many features and refinements from LLVM 2.2.

    + +
    -

    LLVM 2.1 brings two new beta C front-ends. First, Duncan, Anton and Devang -start syncing up llvm-gcc with GCC 4.2, yielding "llvm-gcc 4.2" (creative, -huh?). llvm-gcc 4.2 has the promise to bring much better FORTRAN and Ada -support to LLVM as well as features like atomic builtins, OpenMP, and many other -things. Check it out!

    - -

    Second, LLVM now includes its own native C and Objective-C front-end (C++ is -in progress, but is not very far along) code named "clang". This front-end has a number of great -features, primarily aimed at source-level analysis and speeding up compile-time. -At this point though, the LLVM Code Generator component is still very early in -development, so it's mostly useful for people looking to build source-level -analysis tools or source-to-source translators.

    +

    LLVM 2.2 was the last LLVM release to support llvm-gcc 4.0 and llvm-upgrade. +llvm-gcc 4.0 has been replaced with llvm-gcc 4.2. llvm-upgrade was useful for +upgrading llvm 1.9 files to llvm 2.x syntax, but you can always use a previous +llvm release to do this.

    -

    Some of the most noticable improvements this release have been in the -optimizer, speeding it up and making it more aggressive

    - -
      - -
    • Owen DSE and MemDep analysis
    • -
    • Owen GVN
    • -
    • Owen GVN-PRE, not in llvm-gcc
    • -
    • Devang merged ETForest and DomTree into a single easier to use data -structure.
    • -
    • Nick Lewycky improved loop trip count analysis to handle many more common -cases.
    • +

      LLVM 2.3 fully supports llvm-gcc 4.2 front-end.

      -
    +

    The clang project is an effort to build +a set of new 'llvm native' front-end technologies for the LLVM optimizer +and code generator. Currently, its C and Objective-C support is maturing +nicely, and it has advanced source-to-source analysis and transformation +capabilities. If you are interested in building source-level tools for C and +Objective-C (and eventually C++), you should take a look. However, note that +clang is not an official part of the LLVM 2.3 release. If you are interested in +this project, please see its web site.

    -

    foo

    +

    LLVM 2.3 includes several major new capabilities:

      - -
    • Dale finished up the Tail Merging optimization in the code generator, -enabling it by default. This produces smaller code that is also faster in some -cases.
    • - -
    • Dan Gohman changed the way we represent vectors before legalization, -significantly simplifying the SelectionDAG representation for these and making -the code generator faster for vector code.
    • - -
    • Evan remat rewrite (coallesced intervals + folding of remat'd loads) and -live intervals improvements.
    • - -
    • Dan Gohman contributed support for better alignment and volatility handling -in the code generator, and significantly enhanced alignment analysis for SSE -load/store instructions.
    • - -
    • Christopher Lamb virtual register sub-register support, better truncates and -extends on X86.
    • - -
    • Duraid Madina contributed a new "bigblock" register allocator, and Roman -Levenstein contributed several big improvements. BigBlock is optimized for code -that uses very large basic blocks. It is slightly slower than the "local" -allocator, but produces much better code.
    • - -
    • David Greene refactored the register allocator to split coallescing out from -allocation, making coallescers pluggable.
    • -
    -
    @@ -162,68 +131,57 @@ allocation, making coallescers pluggable.

      -
    • Bruno Cardoso Lopes contributed initial MIPS support.
    • -
    • Bill Wendling added SSSE3 support.
    • -
    • New Target independent if converter, ARM uses it so far
    • -
    • Nicholas Geoffray contributed improved linux/ppc ABI and JIT support.
    • -
    • Dale Johannesen rewrote handling of 32-bit float values in the X86 backend -when using the floating point stack, fixing several nasty bugs.
    • -
    • Dan contributed rematerialization support for the X86 backend.
    • +
    -
    -

    New features include: -

    + +

    We put a significant amount of work into the code generator infrastructure, +which allows us to implement more aggressive algorithms and make it run +faster:

      -
    • Duncan and Anton exception handling in llvm-gcc 4.0/4.2
    • +
    • MemOperand in the code generator.
    • +
    + +
    -
  3. Devang and Duncan: Bitfields, pragma pack
  4. + + -
  5. Tanya implemented support for __attribute__((noinline)) in llvm-gcc, and -added support for generic variable annotations which are propagated into the -LLVM IR, e.g. "int X __attribute__((annotate("myproperty")));".
  6. +
    + +

    In addition to a huge array of bug fixes and minor performance tweaks, the +LLVM 2.3 optimizers support a few major enhancements:

    -
  7. Sheng Zhou and Christopher Lamb implemented alias analysis support for -'restrict' arguments to functions.
  8. +
      -
    • Duncan contributed support for trampolines (pointers to nested functions), -currently only supported on x86 target.
    • +
    • Index set splitting on by default.
    - +
    -

    New features include: +

    New target-specific features include:

      -
    • Neil Booth APFloat, foundation for long double support that will be wrapped -up in 2.2. Dale contributed most of long double support, will be enabled in -2.2.
    • - -
    • LLVM now provides an LLVMBuilder class which makes it significantly easier -to create LLVM IR instructions.
    • - -
    • Reid contributed support for intrinsics that take arbitrary integer typed -arguments, Dan Gohman and Chandler extended it to support FP and vectors.
    • - -
    @@ -238,13 +196,6 @@ arguments, Dan Gohman and Chandler extended it to support FP and vectors.

      -
    • BrainF frontend by Sterling Stein.
    • - -
    • David Green contributed a new --enable-expensive-checks configure option -which enables STL checking, and fixed several bugs exposed by it.
    • - - -
    @@ -262,9 +213,9 @@ which enables STL checking, and fixed several bugs exposed by it.
    @@ -332,6 +280,11 @@ components, please contact us on the inline assembly that uses the X86 floating point stack. +
  9. The X86 backend occasionally has alignment + problems on operating systems that don't require 16-byte stack alignment + (including most non-darwin OS's like linux).
  10. +
  11. The X86 backend generates inefficient floating point code when configured to + generate code for systems that don't have SSE2.
  12. @@ -344,8 +297,6 @@ components, please contact us on the @@ -361,11 +312,11 @@ compilation, and lacks support for debug information. @@ -441,6 +392,12 @@ programs. @@ -456,8 +413,8 @@ programs.
    -

    llvm-gcc4 does not currently support Link-Time -Optimization on most platforms "out-of-the-box". Please inquire on the +

    llvm-gcc does not currently support Link-Time +Optimization on most platforms "out-of-the-box". Please inquire on the llvmdev mailing list if you are interested.

    @@ -470,91 +427,37 @@ llvmdev mailing list if you are interested.

    If you run into GCC extensions which have not been included in any of these @@ -574,30 +477,57 @@ tested and works for a number of non-trivial programs, including LLVM itself, Qt, Mozilla, etc.

    + +
    + + + +
    + Known problems with the Ada front-end +
    + +
    +The llvm-gcc 4.2 Ada compiler works fairly well, however this is not a mature +technology and problems should be expected. + +
    + + +
    + Known problems with the Fortran front-end +
    +
    + +
    @@ -631,7 +561,7 @@ lists.

    Valid CSS! Valid HTML 4.01! + src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"> LLVM Compiler Infrastructure
    Last modified: $Date$