MachO file loader and execution utility.
authorJim Grosbach <grosbach@apple.com>
Fri, 18 Mar 2011 17:11:39 +0000 (17:11 +0000)
committerJim Grosbach <grosbach@apple.com>
Fri, 18 Mar 2011 17:11:39 +0000 (17:11 +0000)
commit1cb19a4470533be84eb61e8f5fc40aa9d45f86f9
tree247a074ed1ba65138f012a7c59a804a00da3c648
parent5fd5b125ff41088c005b7107e8cf92f281313040
MachO file loader and execution utility.

Add a bone-simple utility to load a MachO object into memory, look for
a function (main) in it, and run that function directly. This will be used
as a test and development platform for MC-JIT work regarding symbol resolution,
dynamic lookup, etc..

Code by Daniel Dunbar.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127885 91177308-0d34-0410-b5e6-96231b3b80d8
tools/CMakeLists.txt
tools/Makefile
tools/llvm-rtdyld/CMakeLists.txt [new file with mode: 0644]
tools/llvm-rtdyld/Makefile [new file with mode: 0644]
tools/llvm-rtdyld/llvm-rtdyld.cpp [new file with mode: 0644]