Implemented a first implementation of the function argument parsing from LLVM IR
authorBenjamin Segovia <segovia.benjamin@gmail.com>
Mon, 27 Feb 2012 20:01:19 +0000 (20:01 +0000)
committerKeith Packard <keithp@keithp.com>
Fri, 10 Aug 2012 23:15:28 +0000 (16:15 -0700)
commita1785a45d319491e4b994c87b586cce94ac08c1c
tree4af7607b6a7103c10fc114528aeec41192e1039a
parent3b30ae4738093537165cc4438c78c5c38855ea58
Implemented a first implementation of the function argument parsing from LLVM IR
23 files changed:
backend/kernels/add.cl [new file with mode: 0644]
backend/kernels/add.ll [new file with mode: 0644]
backend/kernels/add.o [new file with mode: 0644]
backend/kernels/add2.cl [new file with mode: 0644]
backend/kernels/add2.ll [new file with mode: 0644]
backend/kernels/add2.o [new file with mode: 0644]
backend/kernels/compile.sh [new file with mode: 0644]
backend/kernels/store.cl [new file with mode: 0644]
backend/kernels/store.ll [new file with mode: 0644]
backend/kernels/store.o [new file with mode: 0644]
backend/src/ir/context.cpp
backend/src/ir/context.hpp
backend/src/ir/function.cpp
backend/src/ir/function.hpp
backend/src/ir/unit.cpp
backend/src/ir/unit.hpp
backend/src/llvm/CMakeLists.txt
backend/src/llvm/GenBackend.cpp [deleted file]
backend/src/llvm/llvm2gen.cpp [deleted file]
backend/src/llvm/llvm_gen_backend.cpp [new file with mode: 0644]
backend/src/llvm/llvm_to_gen.cpp [new file with mode: 0644]
backend/src/llvm/llvm_to_gen.hpp [new file with mode: 0644]
backend/src/utest/utest_llvm.cpp