Displaying 4 results from an estimated 4 matches for "47r7eh5fbnk".
2008 Dec 23
3
[LLVMdev] Unwinds gone missing
...__cxa_throw).
Although _Unwind_RaiseException is mentioned as part of the Itanium ABI, it
is apparently used on many more platform types than just that one processor.
A code search shows that it is in fact part of the standard gcc-provided
runtime libs (see
http://www.google.com/codesearch/p?hl=en#47R7EH5FbNk/trunk/gcc/gcc/unwind-generic.h&q=_Unwind_RaiseException%20lang:c).
There is also a mention of "libunwind". Is libunwind a portable
implementation of the Itanium unwinding ABI?
3) I really like the "invoke/unwind" abstraction that LLVM provides, as it
divorces the mechanism...
2008 Dec 29
0
[LLVMdev] Unwinds gone missing
...ugh _Unwind_RaiseException is mentioned as part of the Itanium ABI, it
> is apparently used on many more platform types than just that one processor.
> A code search shows that it is in fact part of the standard gcc-provided
> runtime libs (see
> http://www.google.com/codesearch/p?hl=en#47R7EH5FbNk/trunk/gcc/gcc/unwind-generic.h&q=_Unwind_RaiseException%20lang:c).
Exactly, this is part of libgcc and as such you can assume it is available.
> There is also a mention of "libunwind". Is libunwind a portable
> implementation of the Itanium unwinding ABI?
I think it's an...
2008 Dec 19
0
[LLVMdev] Unwinds gone missing
Hi Talin,
Talin wrote:
> After much delay, I have finally reached the point in my work where I
> need to implement some kind of exception handling. I understand that
> "unwind" is currently unimplemented and will remain so for the
> forseeable future.
>
> In the mean time, are there any examples available for implementing Java
> or Python-style exceptions using
2008 Dec 19
4
[LLVMdev] Unwinds gone missing
After much delay, I have finally reached the point in my work where I
need to implement some kind of exception handling. I understand that
"unwind" is currently unimplemented and will remain so for the
forseeable future.
In the mean time, are there any examples available for implementing Java
or Python-style exceptions using __cxa_throw or something similar? I've
read and