update Mon Nov 16 18:37:00 PST 2009
[pkgsrc.git] / lang / clang / DESCR
1 Low Level Virtual Machine (LLVM) is:
2
3 A compilation strategy designed to enable effective program optimization across
4 the entire lifetime of a program. LLVM supports effective optimization at
5 compile time, link-time (particularly interprocedural), run-time and offline
6 (i.e., after software is installed), while remaining transparent to developers
7 and maintaining compatibility with existing build scripts.
8
9 A virtual instruction set - LLVM is a low-level object code representation that
10 uses simple RISC-like instructions, but provides rich, language-independent,
11 type information and dataflow (SSA) information about operands. This combination
12 enables sophisticated transformations on object code, while remaining
13 light-weight enough to be attached to the executable. This combination is key to
14 allowing link-time, run-time, and offline transformations.
15
16 A compiler infrastructure - LLVM is also a collection of source code that
17 implements the language and compilation strategy. The primary components of the
18 LLVM infrastructure are a GCC-based C & C++ front-end, a link-time optimization
19 framework with a growing set of global and interprocedural analyses and
20 transformations, static back-ends for the X86, X86-64, PowerPC 32/64, ARM,
21 Thumb, IA-64, Alpha and SPARC architectures, a back-end which emits portable C
22 code, and a Just-In-Time compiler for X86, X86-64, PowerPC 32/64 processors.