Displaying 1 result from an estimated 1 matches for "doput".
Did you mean:
dbput
2008 Aug 12
1
[LLVMdev] Using JIT to construct an invocation of a non-JIT function, or how do I interface to GCC exception handling
...ther words I'm wanting to translate a
scripting language into some executable assembler where each primitive
of my scripting language is implemented with a "normal" function. That
is, lets say I've got two primitives PUT and GET and my C++ interpretter
goes somehting like
int doPUT() {
// Do the work of PUT
}
int doGET() {
// Do the work of GET
}
int main() {
// read in the script file and construct a Module containing a Function
containing suitably ordered
// CallInst objects that invoke doPUT and doGET
}
Can I do that? I can't figure out how to looking at the APIs....