Lines Matching full:llvm
13 The Gallium llvmpipe driver is a software rasterizer that uses LLVM to
16 implemented with LLVM IR which is translated to x86 or x86-64 machine
39 <p>LLVM: version 2.9 recommended; 2.6 or later required.</p>
40 <p><b>NOTE</b>: LLVM 2.8 and earlier will not work on systems that support the
41 Intel AVX extensions (e.g. Sandybridge). LLVM's code generator will
42 fail when trying to emit AVX instructions. This was fixed in LLVM 2.9.
48 aptitude install llvm-dev
54 yum install llvm-devel
58 For Windows you will need to build LLVM from source with MSVC or MINGW
59 (either natively or through cross compilers) and CMake, and set the LLVM
62 LLVM will be statically linked, so when building on MSVC it needs to be
89 make linux-llvm
135 To better profile JIT code you'll need to build LLVM with oprofile integration.
154 export LLVM=/path/to/llvm-2.6-profile
191 The driver-independent parts of the LLVM / Gallium code are found in
196 We use LLVM-C bindings for now. They are not documented, but follow the C++
199 http://npcontemplation.blogspot.com/2008/06/secret-of-llvm-c-bindings.html
200 for a stand-alone example. See the llvm-c/Core.h file for reference.