X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=docs%2FReleaseNotes.html;h=2f83b9447d1d98613e3ac0451f8aef501a58bb0f;hb=a75ce9f5d2236d93c117e861e60e6f3f748c9555;hp=83586ea4b70658374f812ac8d44b7826b6f4aeac;hpb=30be9e4f798099704af933e79f8c170f1c72821b;p=oota-llvm.git diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 83586ea4b70..2f83b9447d1 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -126,10 +126,19 @@ production-quality compiler for C, Objective-C, C++ and Objective-C++ on x86
  • Introduced many new warnings, including -Wmissing-field-initializers, -Wshadow, -Wno-protocol, -Wtautological-compare, -Wstrict-selector-match, -Wcast-align, -Wunused improvements, and greatly improved format-string checking.
  • Introduced the "libclang" library, a C interface to Clang intended to support IDE clients.
  • Added support for #pragma GCC visibility, #pragma align, and others.
  • -
  • Added support for SSE, ARM NEON, and Altivec.
  • +
  • Added support for SSE, AVX, ARM NEON, and AltiVec.
  • +
  • Improved support for many Microsoft extensions.
  • Implemented support for blocks in C++.
  • Implemented precompiled headers for C++.
  • Improved abstract syntax trees to retain more accurate source information.
  • +
  • Added driver support for handling LLVM IR and bitcode files directly.
  • +
  • Major improvements to compiler correctness for exception handling.
  • +
  • Improved generated code quality in some areas: + +
  • @@ -188,7 +197,6 @@ optimizers, rather than just a handful.
  • Fortran programs using common variables now link correctly.
  • GNU OMP constructs no longer crash the compiler.
  • -

    @@ -261,7 +269,7 @@ support new platforms, new languages, new architectures, and new features.

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

    @@ -275,6 +283,43 @@ looking forward to the C++ committee finalizing the C++'0x standard.
    + + +
    +KLEE: A Symbolic Execution Virtual Machine +
    + +
    +

    +KLEE is a symbolic execution framework for +programs in LLVM bitcode form. KLEE tries to symbolically evaluate "all" paths +through the application and records state transitions that lead to fault +states. This allows it to construct testcases that lead to faults and can even +be used to verify some algorithms. +

    + +

    Although KLEE does not have any major new features as of 2.8, we have made +various minor improvements, particular to ease development:

    + + +
    + +
    External Open Source Projects Using LLVM 2.8 @@ -321,8 +366,8 @@ recompilation of larger parts of the compiler chain.

    language and compiler written on top of LLVM, intended for producing single-address-space managed code operating systems that run faster than the equivalent multiple-address-space C systems. -More in-depth blurb is available on the wiki.

    +More in-depth blurb is available on the wiki.

    @@ -333,14 +378,14 @@ href="http://www.quokforge.org/projects/horizon/wiki/Wiki">the wiki.

    -Clam AntiVirus is an open source (GPL) +Clam AntiVirus is an open source (GPL) anti-virus toolkit for UNIX, designed especially for e-mail scanning on mail gateways. Since version 0.96 it has bytecode signatures that allow writing detections for complex malware. It uses LLVM's JIT to speed up the execution of bytecode on -X86,X86-64,PPC32/64, falling back to its own interpreter otherwise. -The git version was updated to work with LLVM 2.8 +X86, X86-64, PPC32/64, falling back to its own interpreter otherwise. +The git version was updated to work with LLVM 2.8.

    The DTMC provides support for Transactional Memory, which is an easy-to-use and efficient way to synchronize accesses to shared memory. Transactions can contain normal C/C++ code (e.g., -__transaction { list.remove(x); x.refCount--; }) and will be executed +__transaction { list.remove(x); x.refCount--; }) and will be executed virtually atomically and isolated from other transactions.

    -Kai Interpreter +Kai Programming Language
    @@ -570,7 +615,6 @@ in this section.
  • LLVM 2.8 now has pretty decent support for debugging optimized code. You should be able to reliably get debug info for function arguments, assuming that the value is actually available where you have stopped.
  • -
  • A new 'llvm-diff' tool is available that does a semantic diff of .ll files.
  • The MC subproject has made major progress in this release. @@ -629,7 +673,7 @@ release includes a few major enhancements and additions to the optimizers:

    be 13 in one of the predecessors of a block. It does this in conjunction with the new LazyValueInfo analysis pass.
  • The new RegionInfo analysis pass identifies single-entry single-exit regions - in the CFG. You can play with it with the "opt -regions analyze" or + in the CFG. You can play with it with the "opt -regions -analyze" or "opt -view-regions" commands.
  • The loop optimizer has significantly improved strength reduction and analysis capabilities. Notably it is able to build on the trap value and signed @@ -734,12 +778,11 @@ it run faster:

    is available from a previous instruction.
  • Atomic operations now get legalized into simpler atomic operations if not natively supported, easing the implementation burden on targets.
  • -
  • The bottom-up pre-allocation scheduler is now register pressure aware, - allowing it to avoid overscheduling in high pressure situations while still - aggressively scheduling when registers are available.
  • -
  • A new instruction-level-parallelism pre-allocation scheduler is available, - which is also register pressure aware. This scheduler has shown substantial - wins on X86-64 and is on by default.
  • +
  • We have added two new bottom-up pre-allocation register pressure aware schedulers: +
      +
    1. The hybrid scheduler schedules aggressively to minimize schedule length when registers are available and avoid overscheduling in high pressure situations.
    2. +
    3. The instruction-level-parallelism scheduler schedules for maximum ILP when registers are available and avoid overscheduling in high pressure situations.
    4. +
  • The tblgen type inference algorithm was rewritten to be more consistent and diagnose more target bugs. If you have an out-of-tree backend, you may find that it finds bugs in your target description. This support also @@ -775,7 +818,7 @@ it run faster:

  • + +
    +Development Infrastructure 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.

    + + +
    @@ -1013,7 +1114,7 @@ components, please contact us on the LLVMdev list.