Displaying 3 results from an estimated 3 matches for "tp22427938p22436396".
2009 Mar 10
0
[LLVMdev] C++ Exception Handling Problem
Hi Nyx,
> I'm in the process of creating a JIT and I've run into a problem with
> exception handling. The situation I'm in is that my program will JIT
> functions, which will call native C++ functions (part of the run-time
> support). These native functions can throw exceptions. However, I don't
> actually want to handle these exceptions in the JITted functions.
2009 Mar 10
2
[LLVMdev] C++ Exception Handling Problem
...ecause the code I produce
contains pointers to dynamically allocated structures. What I'm doing right
now is getting a function pointer from the execution engine and calling the
JITted functions directly.
--
View this message in context: http://www.nabble.com/C%2B%2B-Exception-Handling-Problem-tp22427938p22436396.html
Sent from the LLVM - Dev mailing list archive at Nabble.com.
2009 Mar 10
4
[LLVMdev] C++ Exception Handling Problem
Hello,
I'm in the process of creating a JIT and I've run into a problem with
exception handling. The situation I'm in is that my program will JIT
functions, which will call native C++ functions (part of the run-time
support). These native functions can throw exceptions. However, I don't
actually want to handle these exceptions in the JITted functions. There are
already try/catch