X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FReleaseNotes.html;h=94e5c7b398a460c00bb237d53301cd7852a4235f;hb=2db49d797b86b7f3615bae17b2b016727778a6c4;hp=a0b22248d44ab389ed6fa7e14aef34b78c371d70;hpb=78a1dcc6c211d9097bbdc03fe0a9c46185ebe42c;p=oota-llvm.git diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index a0b22248d44..94e5c7b398a 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -4,17 +4,20 @@ - LLVM 2.6 Release Notes + LLVM 2.8 Release Notes -
LLVM 2.6 Release Notes
+
LLVM 2.8 Release Notes
+ +LLVM Dragon Logo
  1. Introduction
  2. Sub-project Status Update
  3. -
  4. External Projects Using LLVM 2.6
  5. -
  6. What's New in LLVM 2.6?
  7. +
  8. External Projects Using LLVM 2.8
  9. +
  10. What's New in LLVM 2.8?
  11. Installation Instructions
  12. Portability and Supported Platforms
  13. Known Problems
  14. @@ -25,6 +28,12 @@

    Written by the LLVM Team

    +

    These are in-progress notes for the upcoming LLVM 2.8 +release.
    +You may prefer the +LLVM 2.7 +Release Notes.

    +
    Introduction @@ -34,7 +43,7 @@

    This document contains the release notes for the LLVM Compiler -Infrastructure, release 2.6. Here we describe the status of LLVM, including +Infrastructure, release 2.8. 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.

    @@ -42,8 +51,8 @@ href="http://llvm.org/releases/">LLVM releases web site.

    For more information about LLVM, including information about the latest release, please check out the main LLVM web site. If you have questions or comments, the LLVM Developer's Mailing -List is a good place to send them.

    +href="http://lists.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 @@ -58,30 +67,22 @@ Almost dead code. include/llvm/Analysis/LiveValues.h => Dan lib/Transforms/IPO/MergeFunctions.cpp => consider for 2.8. llvm/Analysis/PointerTracking.h => Edwin wants this, consider for 2.8. + ABCD, GEPSplitterPass + MSIL backend? + lib/Transforms/Utils/SSI.cpp -> ABCD depends on it. --> - @@ -92,7 +93,7 @@ Almost dead code.

    -The LLVM 2.6 distribution currently consists of code from the core LLVM +The LLVM 2.8 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 @@ -109,31 +110,49 @@ development. Here we include updates on these subprojects.

    -

    The Clang project is an effort to build -a set of new 'LLVM native' front-end technologies for the C family of languages. -LLVM 2.6 is the first release to officially include Clang, and it provides a -production quality C and Objective-C compiler. If you are interested in fast compiles and -good diagnostics, we -encourage you to try it out. Clang currently compiles typical Objective-C code -3x faster than GCC and compiles C code about 30% faster than GCC at -O0 -g -(which is when the most pressure is on the frontend).

    - -

    In addition to supporting these languages, C++ support is also well under way, and mainline -Clang is able to parse the libstdc++ 4.2 headers and even codegen simple apps. -If you are interested in Clang C++ support or any other Clang feature, we -strongly encourage you to get involved on the Clang front-end mailing -list.

    - -

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

    +

    Clang is an LLVM front end for the C, +C++, and Objective-C languages. Clang aims to provide a better user experience +through expressive diagnostics, a high level of conformance to language +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 and Objective-C on x86 (32- and 64-bit).

    + +

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

      -
    • C and Objective-C support are now considered production quality.
    • -
    • AuroraUX, FreeBSD and OpenBSD are now supported.
    • -
    • Most of Objective-C 2.0 is now supported with the GNU runtime.
    • -
    • Many many bugs are fixed and lots of features have been added.
    • + +
    • C++ Support: Clang is now capable of self-hosting! While still +alpha-quality, Clang's C++ support has matured enough to build LLVM and Clang, +and C++ is now enabled by default. See the Clang C++ compatibility +page for common C++ migration issues.
    • + +
    • Objective-C: Clang now includes experimental support for an updated +Objective-C ABI on non-Darwin platforms. This includes support for non-fragile +instance variables and accelerated proxies, as well as greater potential for +future optimisations. The new ABI is used when compiling with the +-fobjc-nonfragile-abi and -fgnu-runtime options. Code compiled with these +options may be mixed with code compiled with GCC or clang using the old GNU ABI, +but requires the libobjc2 runtime from the GNUstep project.
    • + +
    • New warnings: Clang contains a number of new warnings, including +control-flow warnings (unreachable code, missing return statements in a +non-void function, etc.), sign-comparison warnings, and improved +format-string warnings.
    • + +
    • CIndex API and Python bindings: Clang now includes a C API as part of the +CIndex library. Although we may make some changes to the API in the future, it +is intended to be stable and has been designed for use by external projects. See +the Clang +doxygen CIndex +documentation for more details. The CIndex API also includes a preliminary +set of Python bindings.
    • + +
    • ARM Support: Clang now has ABI support for both the Darwin and Linux ARM +ABIs. Coupled with many improvements to the LLVM ARM backend, Clang is now +suitable for use as a beta quality ARM compiler.
    • +
    @@ -144,24 +163,18 @@ list.

    -

    Previously announced in the 2.4 and 2.5 LLVM releases, the Clang project also -includes an early stage static source code analysis tool for automatically finding bugs -in C and Objective-C programs. The tool performs checks to find -bugs that occur on a specific path within a program.

    - -

    In the LLVM 2.6 time-frame, the analyzer core has undergone several important -improvements and cleanups and now includes a new Checker interface that -is intended to eventually serve as a basis for domain-specific checks. Further, -in addition to generating HTML files for reporting analysis results, the -analyzer can now also emit bug reports in a structured XML format that is -intended to be easily readable by other programs.

    - -

    The set of checks performed by the static analyzer continues to expand, and -future plans for the tool include full source-level inter-procedural analysis -and deeper checks such as buffer overrun detection. There are many opportunities -to extend and enhance the static analyzer, and anyone interested in working on -this project is encouraged to get involved!

    +

    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.

    + +

    In the LLVM 2.7 time-frame, the analyzer core has made several major and + minor improvements, including better support for tracking the fields of + structures, initial support (not enabled by default yet) for doing + interprocedural (cross-function) analysis, and new checks have been added. +

    @@ -178,20 +191,23 @@ implementation of the CLI) using LLVM for static and just-in-time compilation.

    -VMKit version 0.26 builds with LLVM 2.6 and you can find it on its -web page. The release includes -bug fixes, cleanup and new features. The major changes are:

    +With the release of LLVM 2.7, VMKit has shifted to a great framework for writing +virtual machines. VMKit now offers precise and efficient garbage collection with +multi-threading support, thanks to the MMTk memory management toolkit, as well +as just in time and ahead of time compilation with LLVM. The major changes in +VMKit 0.27 are:

      -
    • A new llcj tool to generate shared libraries or executables of Java - files.
    • -
    • Cooperative garbage collection.
    • -
    • Fast subtype checking (paper from Click et al [JGI'02]).
    • -
    • Implementation of a two-word header for Java objects instead of the original - three-word header.
    • -
    • Better Java specification-compliance: division by zero checks, stack - overflow checks, finalization and references support.
    • +
    • Garbage collection: VMKit now uses the MMTk toolkit for garbage collectors. + The first collector to be ported is the MarkSweep collector, which is precise, + and drastically improves the performance of VMKit.
    • +
    • Line number information in the JVM: by using the debug metadata of LLVM, the + JVM now supports precise line number information, useful when printing a stack + trace.
    • +
    • Interface calls in the JVM: we implemented a variant of the Interface Method + Table technique for interface calls in the JVM. +
    @@ -215,54 +231,41 @@ libgcc routines).

    All of the code in the compiler-rt project is available under the standard LLVM -License, a "BSD-style" license.

    +License, a "BSD-style" license. New in LLVM 2.7: compiler_rt now +supports ARM targets.

    -The new LLVM KLEE project 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 algorithms. For more -details, please see the OSDI 2008 paper about -KLEE.

    - -
    +DragonEgg is a port of llvm-gcc to +gcc-4.5. Unlike llvm-gcc, which makes many intrusive changes to the underlying +gcc-4.2 code, dragonegg in theory does not require any gcc-4.5 modifications +whatsoever (currently one small patch is needed). This is thanks to the new +gcc plugin architecture, which +makes it possible to modify the behaviour of gcc at runtime by loading a plugin, +which is nothing more than a dynamic library which conforms to the gcc plugin +interface. DragonEgg is a gcc plugin that causes the LLVM optimizers to be run +instead of the gcc optimizers, and the LLVM code generators instead of the gcc +code generators, just like llvm-gcc. To use it, you add +"-fplugin=path/dragonegg.so" to the gcc-4.5 command line, and gcc-4.5 magically +becomes llvm-gcc-4.5! +

    - - +

    +DragonEgg is still a work in progress. Currently C works very well, while C++, +Ada and Fortran work fairly well. 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 needs an additional gcc patch). +

    -

    -The goal of DragonEgg is to make -gcc-4.5 act like llvm-gcc without requiring any gcc modifications whatsoever. -DragonEgg is a shared library (dragonegg.so) -that is loaded by gcc at runtime. It uses the new gcc plugin architecture to -disable the GCC optimizers and code generators, and schedule the LLVM optimizers -and code generators (or direct output of LLVM IR) instead. Currently only Linux -and Darwin are supported, and only on x86-32 and x86-64. It should be easy to -add additional unix-like architectures and other processor families. In theory -it should be possible to use DragonEgg -with any language supported by gcc, however only C and Fortran work well for the -moment. Ada and C++ work to some extent, while Java, Obj-C and Obj-C++ are so -far entirely untested. Since gcc-4.5 has not yet been released, neither has -DragonEgg. To build -DragonEgg you will need to check out the -development versions of gcc, -llvm and -DragonEgg from their respective -subversion repositories, and follow the instructions in the -DragonEgg README. +DragonEgg is a new project which is seeing its first release with llvm-2.7.

    @@ -275,37 +278,33 @@ subversion repositories, and follow the instructions in the

    -The LLVM Machine Code (MC) Toolkit project is a (very early) effort to build -better tools for dealing with machine code, object file formats, etc. The idea -is to be able to generate most of the target specific details of assemblers and -disassemblers from existing LLVM target .td files (with suitable enhancements), -and to build infrastructure for reading and writing common object file formats. -One of the first deliverables is to build a full assembler and integrate it into -the compiler, which is predicted to substantially reduce compile time in some -scenarios. +The LLVM Machine Code (aka MC) sub-project of LLVM was created to solve a number +of problems in the realm of assembly, disassembly, object file format handling, +and a number of other related areas that CPU instruction-set level tools work +in. It is a sub-project of LLVM which provides it with a number of advantages +over other compilers that do not have tightly integrated assembly-level tools. +For a gentle introduction, please see the Intro to the +LLVM MC Project Blog Post.

    -

    In the LLVM 2.6 timeframe, the MC framework has grown to the point where it -can reliably parse and pretty print (with some encoding information) a -darwin/x86 .s file successfully, and has the very early phases of a Mach-O -assembler in progress. Beyond the MC framework itself, major refactoring of the -LLVM code generator has started. The idea is to make the code generator reason -about the code it is producing in a much more semantic way, rather than a -textual way. For example, the code generator now uses MCSection objects to -represent section assignments, instead of text strings that print to .section -directives.

    - -

    MC is an early and ongoing project that will hopefully continue to lead to -many improvements in the code generator and build infrastructure useful for many -other situations. -

    +

    2.7 includes major parts of the work required by the new MC Project. A few + targets have been refactored to support it, and work is underway to support a + native assembler in LLVM. This work is not complete in LLVM 2.7, but it has + made substantially more progress on LLVM mainline.

    + +

    One minor example of what MC can do is to transcode an AT&T syntax + X86 .s file into intel syntax. You can do this with something like:

    +
    +  llvm-mc foo.s -output-asm-variant=1 -o foo-intel.s
    +
    @@ -313,51 +312,9 @@ other situations.

    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.6.

    -
    - - - -
    -Rubinius -
    - -
    -

    Rubinius is an environment -for running Ruby code which strives to write as much of the core class -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 uncommon traps are all used to -remove dynamism from ruby execution and increase performance.

    - -

    Since LLVM 2.5, Rubinius has made several major leaps forward, implementing -a counter based JIT, type feedback and speculative method inlining. -

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

    - -
    -MacRuby -
    - -
    - -

    -MacRuby is an implementation of Ruby on top of -core Mac OS X technologies, such as the Objective-C common runtime and garbage -collector and the CoreFoundation framework. It is principally developed by -Apple and aims at enabling the creation of full-fledged Mac OS X applications. -

    - -

    -MacRuby uses LLVM for optimization passes, JIT and AOT compilation of Ruby -expressions. It also uses zero-cost DWARF exceptions to implement Ruby exception -handling.

    - -
    - -
    Pure @@ -374,28 +331,9 @@ built-in list and matrix support (including list and matrix comprehensions) and an easy-to-use C interface. The interpreter uses LLVM as a backend to JIT-compile Pure programs to fast native code.

    -

    Pure versions 0.31 and later have been tested and are known to work with -LLVM 2.6 (and continue to work with older LLVM releases >= 2.3 as well). -

    -
    - - - -
    -LLVM D Compiler -
    +

    Pure versions 0.43 and later have been tested and are known to work with +LLVM 2.7 (and continue to work with older LLVM releases >= 2.5).

    -
    -

    -LDC is an implementation of -the D Programming Language using the LLVM optimizer and code generator. -The LDC project works great with the LLVM 2.6 release. General improvements in -this -cycle have included new inline asm constraint handling, better debug info -support, general bug fixes and better x86-64 support. This has allowed -some major improvements in LDC, getting it much closer to being as -fully featured as the original DMD compiler from DigitalMars. -

    @@ -408,7 +346,8 @@ fully featured as the original DMD compiler from DigitalMars. Roadsend PHP (rphp) is an open source implementation of the PHP programming language that uses LLVM for its optimizer, JIT and static compiler. This is a -reimplementation of an earlier project that is now based on LLVM.

    +reimplementation of an earlier project that is now based on LLVM. +

    @@ -421,20 +360,45 @@ reimplementation of an earlier project that is now based on LLVM.

    Unladen Swallow is a branch of Python intended to be fully compatible and significantly faster. It uses LLVM's optimization passes and JIT -compiler.

    +compiler. +

    -llvm-lua +TTA-based Codesign Environment (TCE)

    -LLVM-Lua uses LLVM to add JIT -and static compiling support to the Lua VM. Lua bytecode is analyzed to -remove type checks, then LLVM is used to compile the bytecode down to machine -code.

    +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 llvm-gcc/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.

    + +
    + + +
    +SAFECode Compiler +
    + +
    +

    +SAFECode is a memory safe C +compiler built using LLVM. It takes standard, unannotated C code, analyzes the +code to ensure that memory accesses and array indexing operations are safe, and +instruments the code with run-time checks when safety cannot be proven +statically. +

    @@ -452,13 +416,67 @@ href="http://icedtea.classpath.org/wiki/ZeroSharkFaq">Shark which uses LLVM to provide native code generation without introducing processor-dependent code.

    +

    Icedtea6 1.8 and later have been tested and are known to work with +LLVM 2.7 (and continue to work with older LLVM releases >= 2.6 as well). +

    + +
    +LLVM-Lua +
    + +
    +

    +LLVM-Lua uses LLVM + to add JIT and static compiling support to the Lua VM. Lua +bytecode is analyzed to remove type checks, then LLVM is used to compile the +bytecode down to machine code. +

    +

    LLVM-Lua 1.2.0 have been tested and is known to work with LLVM 2.7. +

    +
    + + +
    +MacRuby +
    + +
    +

    +MacRuby is an implementation of Ruby based on +core Mac OS technologies, sponsored by Apple Inc. It uses LLVM at runtime for +optimization passes, JIT compilation and exception handling. It also allows +static (ahead-of-time) compilation of Ruby code straight to machine code. +

    +

    The upcoming MacRuby 0.6 release works with LLVM 2.7. +

    +
    + + +
    +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 now +supports an LLVM +code generator. GHC supports LLVM 2.7.

    + +
    - What's New in LLVM 2.6? + What's New in LLVM 2.7?
    @@ -471,6 +489,39 @@ in this section. + +
    +LLVM Community Changes +
    + +
    + +

    In addition to changes to the code, between LLVM 2.6 and 2.7, a number of +organization changes have happened: +

    + + +
    +
    Major New Features @@ -478,28 +529,43 @@ in this section.
    -

    LLVM 2.6 includes several major new capabilities:

    +

    LLVM 2.7 includes several major new capabilities:

      -
    • New compiler-rt, KLEE - and machine code toolkit sub-projects.
    • -
    • Debug information now includes line numbers when optimizations are enabled. - This allows statistical sampling tools like OProfile and Shark to map - samples back to source lines.
    • -
    • LLVM now includes new experimental backends to support the MSP430, SystemZ - and BlackFin architectures.
    • -
    • LLVM supports a new Gold Linker Plugin which - enables support for transparent - link-time optimization on ELF targets when used with the Gold binutils - linker.
    • -
    • LLVM now supports doing optimization and code generation on multiple - threads. Please see the LLVM - Programmer's Manual for more information.
    • -
    • LLVM now has experimental support for embedded - metadata in LLVM IR, though the implementation is not guaranteed to be - final and the .bc file format may change in future releases. Debug info - does not yet use this format in LLVM 2.6.
    • +
    • 2.7 includes initial support for the MicroBlaze target. + MicroBlaze is a soft processor core designed for Xilinx FPGAs.
    • + +
    • 2.7 includes a new LLVM IR "extensible metadata" feature. This feature + supports many different use cases, including allowing front-end authors to + encode source level information into LLVM IR, which is consumed by later + language-specific passes. This is a great way to do high-level optimizations + like devirtualization, type-based alias analysis, etc. See the + Extensible Metadata Blog Post for more information.
    • + +
    • 2.7 encodes debug information +in a completely new way, built on extensible metadata. The new implementation +is much more memory efficient and paves the way for improvements to optimized +code debugging experience.
    • + +
    • 2.7 now directly supports taking the address of a label and doing an + indirect branch through a pointer. This is particularly useful for + interpreter loops, and is used to implement the GCC "address of label" + extension. For more information, see the +Address of Label and Indirect Branches in LLVM IR Blog Post. + +
    • 2.7 is the first release to start supporting APIs for assembling and + disassembling target machine code. These APIs are useful for a variety of + low level clients, and are surfaced in the new "enhanced disassembly" API. + For more information see the The X86 + Disassembler Blog Post for more information.
    • + +
    • 2.7 includes major parts of the work required by the new MC Project, + see the MC update above for more information.
    • +
    @@ -514,50 +580,30 @@ in this section. expose new optimization opportunities:

    @@ -574,23 +620,48 @@ release includes a few major enhancements and additions to the optimizers:

    @@ -605,17 +676,20 @@ release includes a few major enhancements and additions to the optimizers:

    @@ -632,55 +706,49 @@ infrastructure, which allows us to implement more aggressive algorithms and make it run faster:

    @@ -694,59 +762,12 @@ it run faster:

    - - - - -
    -PIC16 Target Improvements -
    - -
    -

    New features of the PIC16 target include: -

    - - - -

    Things not yet supported:

    - -
    @@ -762,42 +783,31 @@ it run faster:

    - -

    These features are still somewhat experimental -and subject to change. The Neon intrinsics, in particular, may change in future -releases of LLVM. ARMv7 support has progressed a lot on top of tree since 2.6 -branched.

    +
  15. The ARM backend now generates instructions in unified assembly syntax.
  16. +
  17. llvm-gcc now has complete support for the ARM v7 NEON instruction set. This + support differs slightly from the GCC implementation. Please see the + + ARM Advanced SIMD (NEON) Intrinsics and Types in LLVM Blog Post for + helpful information if migrating code from GCC to LLVM-GCC.
  18. + +
  19. The ARM and Thumb code generators now use register scavenging for stack + object address materialization. This allows the use of R3 as a general + purpose register in Thumb1 code, as it was previous reserved for use in + stack address materialization. Secondly, sequential uses of the same + value will now re-use the materialized constant.
  20. - +
  21. The ARM backend now has good support for ARMv4 targets and has been tested + on StrongARM hardware. Previously, LLVM only supported ARMv4T and + newer chips.
  22. - -
    -Other Target Specific Improvements -
    +
  23. Atomic builtins are now supported for ARMv6 and ARMv7 (__sync_synchronize, + __sync_fetch_and_add, etc.).
  24. -
    -

    New features of other targets include: -

    - - +
    @@ -812,40 +822,34 @@ branched.

    @@ -860,32 +864,16 @@ branched.

    Other miscellaneous features include:

    @@ -899,107 +887,48 @@ CPU2000).

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

    +
  25. +The Andersen's alias analysis ("anders-aa") pass, the Predicate Simplifier +("predsimplify") pass, the LoopVR pass, the GVNPRE pass, and the random sampling +profiling ("rsprofiling") passes have all been removed. They were not being +actively maintained and had substantial problems. If you are interested in +these components, you are welcome to ressurect them from SVN, fix the +correctness problems, and resubmit them to mainline.
  26. + +
  27. LLVM now defaults to building most libraries with RTTI turned off, providing +a code size reduction. Packagers who are interested in building LLVM to support +plugins that require RTTI information should build with "make REQUIRE_RTTI=1" +and should read the new Advice on Packaging LLVM +document.
  28. + +
  29. The LLVM interpreter now defaults to not using libffi even +if you have it installed. This makes it more likely that an LLVM built on one +system will work when copied to a similar system. To use libffi, +configure with --enable-libffi.
  30. + +
  31. Debug information uses a completely different representation, an LLVM 2.6 +.bc file should work with LLVM 2.7, but debug info won't come forward.
  32. + +
  33. The LLVM 2.6 (and earlier) "malloc" and "free" instructions got removed, + along with LowerAllocations pass. Now you should just use a call to the + malloc and free functions in libc. These calls are optimized as well as + the old instructions were.
  34. +

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

    @@ -1020,12 +949,12 @@ guide. For clients, the notable API changes are:
  35. Intel and AMD machines (IA32, X86-64, AMD64, EMT-64) running Red Hat Linux, Fedora Core, FreeBSD and AuroraUX (and probably other unix-like systems).
  36. -
  37. PowerPC and X86-based Mac OS X systems, running 10.3 and above in 32-bit +
  38. PowerPC and X86-based Mac OS X systems, running 10.4 and above in 32-bit and 64-bit modes.
  39. Intel and AMD machines running on Win32 using MinGW libraries (native).
  40. Intel and AMD machines running on Win32 with the Cygwin libraries (limited support is available for native builds with Visual C++).
  41. -
  42. Sun UltraSPARC workstations running Solaris 10.
  43. +
  44. Sun x86 and AMD64 machines running Solaris 10, OpenSolaris 0906.
  45. Alpha-based machines running Debian GNU/Linux.
  46. @@ -1049,16 +978,10 @@ 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.

    -