search for: dfa90fb3

Displaying 3 results from an estimated 3 matches for "dfa90fb3".

2012 Apr 16
0
[LLVMdev] Proper way to use "host application" function from JIT code
Hi Andrea, As I understand it, when the JIT emitter encounters a function call, it attempts to get a pointer to the function from the JIT engine by calling the JIT::getPointerToFunction() method. If the JIT engine isn't able to associate the function with an existing known function and can't JIT it, it will attempt to lookup the function by name. One of the ways it attempts to do so is
2012 Apr 16
1
[LLVMdev] Proper way to use "host application" function from JIT code
...names in the plugin, other than dumping its contents and discovering what's the real name in the IR? > > Thanks, > Andrea. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120416/dfa90fb3/attachment.html>
2012 Apr 15
2
[LLVMdev] Proper way to use "host application" function from JIT code
Hi, I found myself doing very similar things to what's discussed in http://lists.cs.uiuc.edu/pipermail/cfe-dev/2010-July/009836.html. More precisely, I've modified the clang-interpreter example so that I can specify a .cpp source file at runtime which is JIT-compiled and some functions inside it get called by the interpreter executable itself. In this context, "host-application"