Displaying 4 results from an estimated 4 matches for "_exceptiondemo".
Did you mean:
exceptiondemo
2010 Jan 13
0
[LLVMdev] invoke/unwind
If it helps, to see what is involved, outside of a pure IR context, see the example code, and doc at:
http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp
Although this is a pure example that shows several test cases, including foreign exception interaction, it is
not an IR example, but rather a LLVM IR API example. It would be interesting to see a pure IR version of a
personality function. I don't see why this would not be possible, althoug...
2010 Jan 13
5
[LLVMdev] invoke/unwind
I put invoke/unwind aside because I couldn't get them to work, but I'm
working on my evaluator now and it would be nice to figure this out so I
don't have to unwind the stack manually. This was the reason for my
earlier question about global declarations, and as that's cleared up I
can easily pass exception data...if I can make unwind return out of some
deep recursion.
The
2010 Jan 13
2
[LLVMdev] invoke/unwind
On 01/13/2010 04:08 AM, Garrison Venn wrote:
> If it helps, to see what is involved, outside of a pure IR context,
> see the example code, and doc at:
>
> http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp
It does, although in the "let me show you why this is too much to
tackle" way.
> Although this is a pure example that shows several test cases,
> including foreign exception interaction, it is not an IR example, but
> rather a LLVM IR API example. It would be interesting t...
2010 Jan 13
0
[LLVMdev] invoke/unwind
...:46, Dustin Laurence wrote:
> On 01/13/2010 04:08 AM, Garrison Venn wrote:
>
>> If it helps, to see what is involved, outside of a pure IR context,
>> see the example code, and doc at:
>>
>> http://wiki.llvm.org/HowTo:_Build_JIT_based_Exception_mechanism#Source_Code:_exceptionDemo.cpp
>
> It does, although in the "let me show you why this is too much to
> tackle" way.
>
Yeah, I hear you. The LLVM developer fly trap got me. ;-)
>> Although this is a pure example that shows several test cases,
>> including foreign exception interaction, it...