X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FReleaseNotes.html;h=4feb907d367fef5bf476e37fc4a678670ccf4135;hb=adf01b3f18442ae8db6b8948e70d82d9df415119;hp=590e03e0a2832af13fbef9e7d0f18974f6632276;hpb=a26f36c597997894974eeecdde5caa22a6d801e8;p=oota-llvm.git diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 590e03e0a28..4feb907d367 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -3,13 +3,12 @@ - - LLVM 2.9 Release Notes + LLVM 3.0 Release Notes -
LLVM 2.9 Release Notes
+

LLVM 3.0 Release Notes

LLVM Dragon Logo @@ -17,33 +16,35 @@
  1. Introduction
  2. Sub-project Status Update
  3. -
  4. External Projects Using LLVM 2.9
  5. -
  6. What's New in LLVM 2.9?
  7. +
  8. External Projects Using LLVM 3.0
  9. +
  10. What's New in LLVM 3.0?
  11. Installation Instructions
  12. Known Problems
  13. Additional Information
-

Written by the LLVM Team

+

Written by the LLVM Team

-

These are in-progress notes for the upcoming LLVM 2.9 + -
+

Introduction -

+

-
+

This document contains the release notes for the LLVM Compiler -Infrastructure, release 2.9. Here we describe the status of LLVM, including +Infrastructure, release 3.0. Here we describe the status of LLVM, including major improvements from the previous release and significant known problems. All LLVM releases may be downloaded from the LLVM releases web site.

@@ -60,47 +61,37 @@ current one. To see the release notes for a specific release, please see the releases page.

- - - - - - -
+

Sub-project Status Update -

+ -
+

-The LLVM 2.9 distribution currently consists of code from the core LLVM +The LLVM 3.0 distribution currently consists of code from the core LLVM repository (which roughly includes the LLVM optimizers, code generators and supporting tools), the Clang repository and the llvm-gcc repository. In addition to this code, the LLVM Project includes other sub-projects that are in development. Here we include updates on these subprojects.

-
- - - + -
+

Clang is an LLVM front end for the C, C++, and Objective-C languages. Clang aims to provide a better user experience @@ -109,86 +100,51 @@ standards, fast compilation, and low memory use. Like LLVM, Clang provides a modular, library-based architecture that makes it suitable for creating or integrating with other development tools. Clang is considered a production-quality compiler for C, Objective-C, C++ and Objective-C++ on x86 -(32- and 64-bit), and for darwin-arm targets.

- -

In the LLVM 2.9 time-frame, the Clang team has made many improvements:

- -
    -
-
+(32- and 64-bit), and for darwin/arm targets.

- - - -
- -

The Clang Static Analyzer - project is an effort to use static source code analysis techniques to - automatically find bugs in C and Objective-C programs (and hopefully C++ in the - future!). The tool is very good at finding bugs that occur on specific - paths through code, such as on error conditions.

- -

The LLVM 2.9 release... +

In the LLVM 3.0 time-frame, the Clang team has made many improvements:

+ +

If Clang rejects your code but another compiler accepts it, please take a +look at the language +compatibility guide to make sure this is not intentional or a known issue.

- - -
-NOTE: This should be written to be self-contained without referencing llvm-gcc. +

+DragonEgg: GCC front-ends, LLVM back-end +

+

-DragonEgg is a port of llvm-gcc to -gcc-4.5. Unlike llvm-gcc, dragonegg in theory does not require any gcc-4.5 -modifications whatsoever (currently one small patch is needed) thanks to the -new gcc plugin architecture. -DragonEgg is a gcc plugin that makes gcc-4.5 use the LLVM optimizers and code -generators instead of gcc's, just like with llvm-gcc. +DragonEgg is a +gcc plugin that replaces GCC's +optimizers and code generators with LLVM's. +Currently it requires a patched version of gcc-4.5. +The plugin can target the x86-32 and x86-64 processor families and has been +used successfully on the Darwin, FreeBSD and Linux platforms. +The Ada, C, C++ and Fortran languages work well. +The plugin is capable of compiling plenty of Obj-C, Obj-C++ and Java but it is +not known whether the compiled code actually works or not!

-DragonEgg is still a work in progress, but it is able to compile a lot of code, -for example all of gcc, LLVM and clang. Currently Ada, C, C++ and Fortran work -well, while all other languages either don't work at all or only work poorly. -For the moment only the x86-32 and x86-64 targets are supported, and only on -linux and darwin (darwin may need additional gcc patches). -

- -

-The 2.9 release has the following notable changes: +The 3.0 release has the following notable changes:

    +
- - -
-

-The VMKit project is an implementation of -a Java Virtual Machine (Java VM or JVM) that uses LLVM for static and -just-in-time compilation. - -UPDATE. -

-
- - - + -
+

The new LLVM compiler-rt project is a simple library that provides an implementation of the low-level @@ -199,22 +155,16 @@ function. The compiler-rt library provides highly optimized implementations of this and other low-level routines (some are 3x faster than the equivalent libgcc routines).

-

-All of the code in the compiler-rt project is available under the standard LLVM -License, a "BSD-style" license. - -NEW: MIT License as well. - -New in LLVM 2.9, UPDATE

+

In the LLVM 3.0 timeframe,

- + -
+

LLDB is a brand new member of the LLVM umbrella of projects. LLDB is a next generation, high-performance debugger. It @@ -223,23 +173,20 @@ libraries in the larger LLVM Project, such as the Clang expression parser, the LLVM disassembler and the LLVM JIT.

-LLDB is in early development and not included as part of the LLVM 2.9 release, -UPDATE! - - -

+LLDB is has advanced by leaps and bounds in the 3.0 timeframe. It is +dramatically more stable and useful, and includes both a new tutorial and a side-by-side comparison with +GDB.

- + -
+

libc++ is another new member of the LLVM family. It is an implementation of the C++ standard library, written from the @@ -247,23 +194,55 @@ ground up to specifically target the forthcoming C++'0X standard and focus on delivering great performance.

-As of the LLVM 2.9 release, UPDATE! - - +In the LLVM 3.0 timeframe,

+ +

+Like compiler_rt, libc++ is now dual + licensed under the MIT and UIUC license, allowing it to be used more + permissively.

+ +

+LLBrowse: IR Browser +

+ +
+

+ + LLBrowse is an interactive viewer for LLVM modules. It can load any LLVM + module and displays its contents as an expandable tree view, facilitating an + easy way to inspect types, functions, global variables, or metadata nodes. It + is fully cross-platform, being based on the popular wxWidgets GUI toolkit. +

+
-
-KLEE: A Symbolic Execution Virtual Machine +

+VMKit +

+ +
+

The VMKit project is an implementation + of a Java Virtual Machine (Java VM or JVM) that uses LLVM for static and + just-in-time compilation. As of LLVM 3.0, VMKit now supports generational + garbage collectors. The garbage collectors are provided by the MMTk framework, + and VMKit can be configured to use one of the numerous implemented collectors + of MMTk. +

+ + + +
- - +

+ External Open Source Projects Using LLVM 3.0 +

-
+

An exciting aspect of LLVM is that it is used as an enabling technology for a lot of other language and tools projects. This section lists some of the - projects that have already been updated to work with LLVM 2.9.

+ projects that have already been updated to work with LLVM 3.0.

+ + +

Crack Programming Language

+ +
+

+Crack aims to provide the +ease of development of a scripting language with the performance of a compiled +language. The language derives concepts from C++, Java and Python, incorporating +object-oriented programming, operator overloading and strong typing.

+
+ + + +

TTA-based Codesign Environment (TCE)

+ +
+

TCE is a toolset for designing application-specific processors (ASP) based on +the Transport triggered architecture (TTA). The toolset provides a complete +co-design flow from C/C++ programs down to synthesizable VHDL and parallel +program binaries. Processor customization points include the register files, +function units, supported operations, and the interconnection network.

+ +

TCE uses Clang and LLVM for C/C++ language support, target independent +optimizations and also for parts of code generation. It generates new LLVM-based +code generators "on the fly" for the designed TTA processors and loads them in +to the compiler backend as runtime libraries to avoid per-target recompilation +of larger parts of the compiler chain.

+
+ + + + +

PinaVM

+ +
+

PinaVM is an open +source, SystemC front-end. Unlike many +other front-ends, PinaVM actually executes the elaboration of the +program analyzed using LLVM's JIT infrastructure. It later enriches the +bitcode with SystemC-specific information.

+ +

Pure

+ +
+

Pure is an + algebraic/functional + programming language based on term rewriting. Programs are collections + of equations which are used to evaluate expressions in a symbolic + fashion. The interpreter uses LLVM as a backend to JIT-compile Pure + programs to fast native code. Pure offers dynamic typing, eager and lazy + evaluation, lexical closures, a hygienic macro system (also based on + term rewriting), built-in list and matrix support (including list and + matrix comprehensions) and an easy-to-use interface to C and other + programming languages (including the ability to load LLVM bitcode + modules, and inline C, C++, Fortran and Faust code in Pure programs if + the corresponding LLVM-enabled compilers are installed).

+ +

Pure version 0.47 has been tested and is known to work with LLVM 3.0 + (and continues to work with older LLVM releases >= 2.5).

+
+ +

IcedTea Java Virtual Machine Implementation

+
+

+IcedTea provides a +harness to build OpenJDK using only free software build tools and to provide +replacements for the not-yet free parts of OpenJDK. One of the extensions that +IcedTea provides is a new JIT compiler named Shark which uses LLVM +to provide native code generation without introducing processor-dependent +code. +

- -
- What's New in LLVM 2.9? +

OpenJDK 7 b112, IcedTea6 1.9 and IcedTea7 1.13 and later have been tested +and are known to work with LLVM 3.0 (and continue to work with older LLVM +releases >= 2.6 as well).

+
+ + +

Glasgow Haskell Compiler (GHC)

+ +
+

GHC is an open source, state-of-the-art programming suite for Haskell, +a standard lazy functional programming language. It includes an +optimizing static compiler generating good code for a variety of +platforms, together with an interactive system for convenient, quick +development.

+ +

In addition to the existing C and native code generators, GHC 7.0 now +supports an LLVM code generator. GHC supports LLVM 2.7 and later.

+ + +

Polly - Polyhedral optimizations for LLVM

+ +
+

Polly is a project that aims to provide advanced memory access optimizations +to better take advantage of SIMD units, cache hierarchies, multiple cores or +even vector accelerators for LLVM. Built around an abstract mathematical +description based on Z-polyhedra, it provides the infrastructure to develop +advanced optimizations in LLVM and to connect complex external optimizers. In +its first year of existence Polly already provides an exact value-based +dependency analysis as well as basic SIMD and OpenMP code generation support. +Furthermore, Polly can use PoCC(Pluto) an advanced optimizer for data-locality +and parallelism.

+
+ + +

Rubinius

+ +
+

Rubinius is an environment + for running Ruby code which strives to write as much of the implementation in + Ruby as possible. Combined with a bytecode interpreting VM, it uses LLVM to + optimize and compile ruby code down to machine code. Techniques such as type + feedback, method inlining, and deoptimization are all used to remove dynamism + from ruby execution and increase performance.

+
+ + + +

+FAUST Real-Time Audio Signal Processing Language +

+ +
+

+FAUST is a compiled language for real-time +audio signal processing. The name FAUST stands for Functional AUdio STream. Its +programming model combines two approaches: functional programming and block +diagram composition. In addition with the C, C++, JAVA output formats, the +Faust compiler can now generate LLVM bitcode, and works with LLVM 2.7-3.0.

+ +
+ +
+ + +

+ What's New in LLVM 3.0? +

-
+

This release includes a huge number of bug fixes, performance tweaks and minor improvements. Some of the major improvements and new features are listed in this section.

-
- - + -
+
-

LLVM 2.9 includes several major new capabilities:

+

LLVM 3.0 includes several major new capabilities:

    -
+ + + +
- + -
+

LLVM IR has several new features for better support of new targets and that expose new optimization opportunities:

    +
- + -
+

In addition to a large array of minor performance tweaks and bug fixes, this release includes a few major enhancements and additions to the optimizers:

    -
  • TBAA.
  • -
  • LTO has been improved to use MC for parsing inline asm and now - can build large programs like Firefox 4 on both OS X and Linux.
  • -
- + + +
- + -
+

The LLVM Machine Code (aka MC) subsystem was created to solve a number of problems in the realm of assembly, disassembly, object file format handling, @@ -374,14 +491,9 @@ and a number of other related areas that CPU instruction-set level tools work in.

    -
  • MC is now used by default for ELF systems on x86 and - x86-64.
  • -
  • MC supports and CodeGen uses the .loc directives for - producing line number debug info. This produces more compact line - tables.
  • -
  • MC supports the .cfi_* directives for producing DWARF - frame information, but it is still not used by CodeGen by default.
  • -
  • COFF support?
  • +

For more information, please see the Intro to the LLVM MC Project Blog Post.

-
- +
- + -
+

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

    - -FastISel for ARM. +
- + -
+

New features and major changes in the X86 target include:

    +
  • The CRC32 intrinsics have been renamed. The intrinsics were previously + @llvm.x86.sse42.crc32.[8|16|32] and @llvm.x86.sse42.crc64.[8|64]. They have + been renamed to @llvm.x86.sse42.crc32.32.[8|16|32] and + @llvm.x86.sse42.crc32.64.[8|64].
  • +
- + -
+

New features of the ARM target include:

    +
+ + +

+Other Target Specific Improvements +

+
+
    + +
+
- + -
+
-

If you're already an LLVM user or developer with out-of-tree changes based -on LLVM 2.8, this section lists some "gotchas" that you may run into upgrading -from the previous release.

+

If you're already an LLVM user or developer with out-of-tree changes based on + LLVM 2.9, this section lists some "gotchas" that you may run into upgrading + from the previous release.

    +
  • The LowerSetJmp pass wasn't used effectively by any + target and has been removed.
  • +
  • The old TailDup pass was not used in the standard pipeline + and was unable to update ssa form, so it has been removed. +
  • The syntax of volatile loads and stores in IR has been changed to + "load volatile"/"store volatile". The old + syntax ("volatile load"/"volatile store") + is still accepted, but is now considered deprecated.
- - -

In addition, many APIs have changed in this release. Some of the major LLVM -API changes are:

+

Windows (32-bit)

+
    +
  • On Win32(MinGW32 and MSVC), Windows 2000 will not be supported. + Windows XP or higher is required.
+
- +

+Internal API Changes +

-
+
-

This section lists changes to the LLVM development infrastructure. This -mostly impacts users who actively work on LLVM or follow development on -mainline, but may also impact users who leverage the LLVM build infrastructure -or are interested in LLVM qualification.

+

In addition, many APIs have changed in this release. Some of the major + LLVM API changes are:

    +
  • The biggest and most pervasive change is that llvm::Type's are no longer + returned or accepted as 'const' values. Instead, just pass around non-const + Type's.
  • + +
  • PHINode::reserveOperandSpace has been removed. Instead, you + must specify how many operands to reserve space for when you create the + PHINode, by passing an extra argument into PHINode::Create.
  • + +
  • PHINodes no longer store their incoming BasicBlocks as operands. Instead, + the list of incoming BasicBlocks is stored separately, and can be accessed + with new functions PHINode::block_begin + and PHINode::block_end.
  • + +
  • Various functions now take an ArrayRef instead of either a pair + of pointers (or iterators) to the beginning and end of a range, or a pointer + and a length. Others now return an ArrayRef instead of a + reference to a SmallVector or std::vector. These + include: +
      + +
    • CallInst::Create
    • +
    • ComputeLinearIndex (in llvm/CodeGen/Analysis.h)
    • +
    • ConstantArray::get
    • +
    • ConstantExpr::getExtractElement
    • +
    • ConstantExpr::getGetElementPtr
    • +
    • ConstantExpr::getInBoundsGetElementPtr
    • +
    • ConstantExpr::getIndices
    • +
    • ConstantExpr::getInsertElement
    • +
    • ConstantExpr::getWithOperands
    • +
    • ConstantFoldCall (in llvm/Analysis/ConstantFolding.h)
    • +
    • ConstantFoldInstOperands (in llvm/Analysis/ConstantFolding.h)
    • +
    • ConstantVector::get
    • +
    • DIBuilder::createComplexVariable
    • +
    • DIBuilder::getOrCreateArray
    • +
    • ExtractValueInst::Create
    • +
    • ExtractValueInst::getIndexedType
    • +
    • ExtractValueInst::getIndices
    • +
    • FindInsertedValue (in llvm/Analysis/ValueTracking.h)
    • +
    • gep_type_begin (in llvm/Support/GetElementPtrTypeIterator.h)
    • +
    • gep_type_end (in llvm/Support/GetElementPtrTypeIterator.h)
    • +
    • GetElementPtrInst::Create
    • +
    • GetElementPtrInst::CreateInBounds
    • +
    • GetElementPtrInst::getIndexedType
    • +
    • InsertValueInst::Create
    • +
    • InsertValueInst::getIndices
    • +
    • InvokeInst::Create
    • +
    • IRBuilder::CreateCall
    • +
    • IRBuilder::CreateExtractValue
    • +
    • IRBuilder::CreateGEP
    • +
    • IRBuilder::CreateInBoundsGEP
    • +
    • IRBuilder::CreateInsertValue
    • +
    • IRBuilder::CreateInvoke
    • +
    • MDNode::get
    • +
    • MDNode::getIfExists
    • +
    • MDNode::getTemporary
    • +
    • MDNode::getWhenValsUnresolved
    • +
    • SimplifyGEPInst (in llvm/Analysis/InstructionSimplify.h)
    • +
    • TargetData::getIndexedOffset
    • +
  • + +
  • All forms of StringMap::getOrCreateValue have been remove + except for the one which takes a StringRef.
  • + +
  • The LLVMBuildUnwind function from the C API was removed. The + LLVM unwind instruction has been deprecated for a long time and + isn't used by the current front-ends. So this was removed during the + exception handling rewrite.
  • + +
  • The LLVMAddLowerSetJmpPass function from the C API was removed + because the LowerSetJmp pass was removed.
  • + +
  • The DIBuilder interface used by front ends to encode debugging + information in the LLVM IR now expects clients to use DIBuilder::finalize() + at the end of translation unit to complete debugging information encoding.
  • +
+
+ - + -
+

This section contains significant known problems with the LLVM system, listed by component. If you run into a problem, please check the LLVM bug database and submit a bug if there isn't already one.

-
- - + -
+

The following components of this LLVM release are either untested, known to be broken or unreliable, or are in early development. These components should @@ -509,41 +723,51 @@ href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVMdev list.

  • The Alpha, Blackfin, CellSPU, MicroBlaze, MSP430, MIPS, PTX, SystemZ and XCore backends are experimental.
  • llc "-filetype=obj" is experimental on all targets - other than darwin-i386 and darwin-x86_64. FIXME: Not true on ELF anymore?
  • + other than darwin and ELF X86 systems.
    - + -
    +
    • The X86 backend does not yet support all inline assembly that uses the X86 floating point stack. It supports the 'f' and 't' constraints, but not 'u'.
    • -
    • Win64 code generation wasn't widely tested. Everything should work, but we - expect small issues to happen. Also, llvm-gcc cannot build the mingw64 - runtime currently due to lack of support for the 'u' inline assembly - constraint and for X87 floating point inline assembly.
    • The X86-64 backend does not yet support the LLVM IR instruction va_arg. Currently, front-ends support variadic argument constructs on X86-64 by lowering them manually.
    • +
    • Windows x64 (aka Win64) code generator has a few issues. +
        +
      • llvm-gcc cannot build the mingw-w64 runtime currently + due to lack of support for the 'u' inline assembly + constraint and for X87 floating point inline assembly.
      • +
      • On mingw-w64, you will see unresolved symbol __chkstk + due to Bug 8919. + It is fixed in r128206.
      • +
      • Miss-aligned MOVDQA might crash your program. It is due to + Bug 9483, + lack of handling aligned internal globals.
      • +
      +
    • +
    - + -
    +
    • The Linux PPC32/ABI support needs testing for the interpreter and static @@ -553,11 +777,11 @@ compilation, and lacks support for debug information.
    - + -
    +
    • Thumb mode works only on ARMv6 or higher processors. On sub-ARMv6 @@ -570,11 +794,11 @@ results (PR1388).
    - + -
    +
    • The SPARC backend only supports the 32-bit SPARC ABI (-m32); it does not @@ -584,11 +808,11 @@ results (PR1388).
    - + -
    +
    • 64-bit MIPS targets are not supported yet.
    • @@ -597,11 +821,11 @@ results (PR1388).
    - + -
    +
      @@ -612,11 +836,11 @@ appropriate nops inserted to ensure restartability.
    - + -
    +

    The C backend has numerous problems and is not being actively maintained. Depending on it for anything serious is not advised.

    @@ -635,11 +859,13 @@ Depending on it for anything serious is not advised.

    - + -
    +
    + +

    LLVM 3.0 will be the last release of llvm-gcc.

    llvm-gcc is generally very stable for the C family of languages. The only major language feature of GCC not supported by llvm-gcc is the @@ -660,16 +886,18 @@ actively maintained. If you are interested in Ada, we recommend that you consider using dragonegg instead.

    +
    + - + -
    +

    A wide variety of additional information is available on the LLVM web page, in particular in the LLVM web page, in particular in the documentation section. The web page also contains versions of the API documentation which is up-to-date with the Subversion version of the source code.