diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index 03d2db112fad..917ca363a826 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -4,11 +4,11 @@ - LLVM 2.0 Release Notes + LLVM 2.1 Release Notes -
LLVM 2.0 Release Notes
+
LLVM 2.1 Release Notes
  1. Introduction
  2. @@ -32,7 +32,7 @@

    This document contains the release notes for the LLVM compiler -infrastructure, release 2.0. Here we describe the status of LLVM, including +infrastructure, release 2.1. 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.

    @@ -44,10 +44,9 @@ href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM developer's mailing list is a good place to send them.

    Note that if you are reading this file from a Subversion checkout or the -main LLVM web page, -this document applies to the next release, not the current one. To see -the release notes for the current or previous releases, see the releases page.

    +main LLVM web page, this document applies to the next release, not the +current one. To see the release notes for a specific releases, please see the +releases page.

    @@ -59,416 +58,235 @@ href="http://llvm.org/releases/">releases page.

    -

    This is the eleventh public release of the LLVM Compiler Infrastructure. -Being the first major release since 1.0, this release is different in several -ways from our previous releases:

    - -
      -
    1. We took this as an opportunity to -break backwards compatibility with the LLVM 1.x bytecode and .ll file format. -If you have LLVM 1.9 .ll files that you would like to upgrade to LLVM 2.x, we -recommend the use of the stand alone llvm-upgrade -tool (which is included with 2.0). We intend to keep compatibility with .ll -and .bc formats within the 2.x release series, like we did within the 1.x -series.
    2. -
    3. There are several significant change to the LLVM IR and internal APIs, such - as a major overhaul of the type system, the completely new bitcode file - format, etc (described below).
    4. -
    5. We designed the release around a 6 month release cycle instead of the usual - 3-month cycle. This gave us extra time to develop and test some of the - more invasive features in this release.
    6. -
    7. LLVM 2.0 no longer supports the llvm-gcc3 front-end. Users are required to - upgrade to llvm-gcc4. llvm-gcc4 includes many features over - llvm-gcc3, is faster, and is much easier to - build from source.
    8. -
    - -

    Note that while this is a major version bump, this release has been - extensively tested on a wide range of software. It is easy to say that this - is our best release yet, in terms of both features and correctness. This is - the first LLVM release to correctly compile and optimize major software like - LLVM itself, Mozilla/Seamonkey, Qt 4.3rc1, kOffice, etc out of the box on - linux/x86. -

    +

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

    -New Features in LLVM 2.0 +New Frontends
    - -
    Major Changes
    -

    Changes to the LLVM IR itself:

    +

    LLVM 2.1 brings two new beta C front-ends. First, a new version of llvm-gcc +based on GCC 4.2, innovatively called "llvm-gcc-4.2". This promises to bring +FORTRAN and Ada support to LLVM as well as features like atomic builtins and +OpenMP. None of these actually work yet, but don't let that stop you checking +it out!

    - - -

    Major new features:

    - - +

    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.

    + +
    +Optimizer Improvements +
    - -
    llvm-gcc -Improvements
    -

    New features include: -

    + +

    Some of the most noticable feature improvements this release have been in the +optimizer, speeding it up and making it more aggressive. For example:

    - +
    - -
    Optimizer -Improvements
    + +
    +Code Generator Improvements +
    + +
    + +

    One of the main focuses of this release was performance tuning and bug + fixing. In addition to these, several new major changes occurred:

    + + + +
    + + + +
    +Target Specific Improvements +

    New features include:

    - -
    Code -Generator Enhancements
    + + +
    +llvm-gcc Improvements +
    -

    -New features include: +

    New features include:

    + +
    -

    -Other improvements include: + + +

    +LLVM Core Improvements +
    + +
    +

    New features include:

    - -

    In addition, the LLVM target description format has itself been extended in - several ways:

    - - - +
    - -
    Target-Specific -Improvements
    + +
    +Other Improvements +
    - -

    X86-specific Code Generator Enhancements: +

    New features include:

    - -

    ARM-specific Code Generator Enhancements:

    - - - -

    PowerPC-specific Code Generator Enhancements:

    - - - +
    - - -
    Other Improvements
    -
    - -

    More specific changes include:

    - - -
    - - -
    API Changes
    -
    - -

    LLVM 2.0 contains a revamp of the type system and several other significant -internal changes. If you are programming to the C++ API, be aware of the -following major changes:

    - - -
    - -
    Portability and Supported Platforms @@ -530,12 +348,11 @@ useful to some people. In particular, if you would like to work on one of these components, please contact us on the LLVMdev list.

    @@ -552,6 +369,9 @@ components, please contact us on the inline assembly that uses the X86 floating point stack. +
  3. 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).
  4. @@ -581,7 +401,7 @@ compilation, and lacks support for debug information.