Displaying 2 results from an estimated 2 matches for "intrinsic_function".
2010 Oct 26
3
[LLVMdev] Throwing C++ exception through LLVM JITed code
...t the exception to be caught
by the C++ code that invoked the script. Instead it appears that no
exception handler is found.
Does anyone know of a way to throw C++ exceptions through LLVM JITed code?
To illustrate the problem a bit better, consider this psuedo code. I want
the exception thrown in intrinsic_function(), which is called from the LLVM
compiled code, to be caught by the exception handler at the bottom of
run_program().
void intrinsic_function() {
throw runtime_error("unimplemented function");
}
void run_program() {
char *script_code = "call intrinsic_function();";
try...
2012 Jul 16
2
[LLVMdev] what is "intrinsic"?
hi,
i found the term "intrinsic" in some LLVM docs i am reading, and
nowhere explains what that means.
i did try to google, but nothing helpful came up. anybody please help?
many thanks,
Jun