PTX Backend for LLVM Code
Brought to you by:
karrenberg,
krabb
File | Date | Author | Commit |
---|---|---|---|
autoconf | 2010-05-17 |
![]() |
[b2cca1] Remove svn metadata checked in by mistake. |
include | 2010-05-05 |
![]() |
[e98d23] Update with my changes. |
lib | 2010-11-20 |
![]() |
[6f6b71] Changed texture fetch intrinsics |
Makefile | 2010-05-05 |
![]() |
[775391] More changes. |
Makefile.common.in | 2010-05-05 |
![]() |
[e98d23] Update with my changes. |
README | 2010-05-05 |
![]() |
[775391] More changes. |
configure | 2010-05-11 |
![]() |
[62b557] fixed configure: was using $LLVM_SRC_ROOT inste... |
Basically, the way Tom set this up is to allow all of us to use our own versions of LLVM in a local repository (on the machine where we have checked out LLVM) and still be able use each other's "passes" using shared libraries. This also gives a way of cleanly separating our passes from LLVM-core passes at the cost of some additional command line options to opt. Here is one way to set up and start adding new passes as shared libraries and use other passes too. (1) First, make sure some environment variables are set up: Assuming you already have the following environment variables defined: LLVM_SRC_ROOT (eg, /home/pprabhu/llvm/llvm/) LLVM_OBJ_DIR (eg, /home/pprabhu/llvm/llvm-objects/) LLVM_INSTALL_DIR (eg, /home/pprabhu/llvm/llvm-install/) set up any include directory (using the absolute path): export INCLUDE_DIR=/home/pprabhu/llvmptxbackend/include (2) Configure the build system: ~/llvmptxbackend$ ./configure --with-llvmsrc=$LLVM_SRC_ROOT \ --with-llvmobj=$LLVM_OBJ_DIR \ --prefix=$LLVM_INSTALL_DIR \ --exec-prefix=$LLVM_INSTALL_DIR \ --includedir=$INCLUDE_DIR (3) Run make to build all the shared objects: ~/llvmptxbackend$ make (4) To test the backend try: ~/llvmptxbackend$ echo "int main() { return 42; }" | \ clang -x c - -emit-llvm -c -o - | \ llc -load ./Debug/lib/libPTXBackend.so -march=ptx (5) Create a new directory for any new set of passes you want to add within the lib directory, create .cpp files within that directory while the include directory has Liberty-specific .h files required by the .cpp files Written by Prakash, 4th Sep 2008.