added include/reactos/libs/pseh/pseh2.h
added lib/pseh/framebased-gcchack.c
added lib/pseh/i386/framebased-gcchack.S
modified lib/pseh/pseh.rbuild
Introducing PSEH 2.0. It only wants to be loved. Highlights of this version:
- PSEH 2.0 syntax is 99% compatible with native SEH syntax
- PSEH 2.0 binary code a vast improvement over 1.1 - no more setjmp, no bogus loops, no weird optimizer behavior
PSEH 2.0 is a horrible, GCC-only, x86-only hack. It makes several non-portable assumptions and hey, did you know __builtin_frame_address(0) is *not* the same thing as EBP? Overall, it must be a world record for compiler abuse
PSEH 2.0 is, sadly, not binary-compatible with PSEH 1.1, although I will almost certainly unify the implementation at a later time
PSEH 2.0 needs testers. And love.
Not implemented yet: returning from a SEH block (i.e. _SEH2_YIELD())
Example of 2.0 syntax (yes, _SEH2_END is unavoidable):
_SEH2_TRY
{
_SEH2_TRY
{
/* ... */
}
_SEH2_EXCEPT((/* ... */))
{
/* ... */
}
_SEH2_END;
}
_SEH2_FINALLY
{
/* ... */
}
_SEH2_END;
--
Happy early birthday, Aleksey.
svn path=/trunk/; revision=37315
2008-11-12 19:52:16 +00:00
|
|
|
// Copyright (c) 2008 KJK::Hyperion
|
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to dos so, subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
|
|
|
.text
|
|
|
|
.intel_syntax noprefix
|
|
|
|
|
2009-01-09 16:36:21 +00:00
|
|
|
.func _SEH2EnterHandleTrylevel
|
|
|
|
.globl __SEH2EnterHandleTrylevel
|
|
|
|
__SEH2EnterHandleTrylevel:
|
|
|
|
mov eax, [esp+8]
|
2013-05-30 21:53:06 +00:00
|
|
|
mov ecx, [esp]
|
2009-01-09 16:36:21 +00:00
|
|
|
mov [eax+8], ecx
|
|
|
|
mov [eax+16], ebp
|
|
|
|
mov [eax+20], ebx
|
|
|
|
mov [eax+24], esi
|
|
|
|
mov [eax+28], edi
|
|
|
|
|
|
|
|
mov edx, [esp+4]
|
|
|
|
mov [edx+8], eax
|
|
|
|
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
|
|
|
.endfunc
|
|
|
|
|
|
|
|
.func _SEH2EnterFrameAndHandleTrylevel
|
|
|
|
.globl __SEH2EnterFrameAndHandleTrylevel
|
|
|
|
__SEH2EnterFrameAndHandleTrylevel:
|
|
|
|
mov eax, [esp+8]
|
2013-05-30 21:53:06 +00:00
|
|
|
mov ecx, [esp]
|
2009-01-09 16:36:21 +00:00
|
|
|
mov [eax+8], ecx
|
|
|
|
mov [eax+16], ebp
|
|
|
|
mov [eax+20], ebx
|
|
|
|
mov [eax+24], esi
|
|
|
|
mov [eax+28], edi
|
|
|
|
|
|
|
|
.extern __SEH2EnterFrameAndTrylevel
|
|
|
|
jmp __SEH2EnterFrameAndTrylevel
|
|
|
|
.endfunc
|
|
|
|
|
2008-12-20 23:27:17 +00:00
|
|
|
.func __SEH2Handle
|
2008-11-26 16:03:12 +00:00
|
|
|
.globl ___SEH2Handle
|
|
|
|
___SEH2Handle:
|
|
|
|
mov eax, [esp+4]
|
2009-01-09 16:36:21 +00:00
|
|
|
mov ebp, [esp+12]
|
|
|
|
mov ebx, [esp+16]
|
|
|
|
mov esi, [esp+20]
|
|
|
|
mov edi, [esp+24]
|
|
|
|
mov esp, [esp+8]
|
2008-11-26 16:03:12 +00:00
|
|
|
jmp eax
|
2008-12-20 23:27:17 +00:00
|
|
|
.endfunc
|
2008-11-26 16:03:12 +00:00
|
|
|
|
2008-12-20 23:27:17 +00:00
|
|
|
.func __SEH2FrameHandler
|
2008-12-14 02:55:50 +00:00
|
|
|
.globl ___SEH2FrameHandler
|
|
|
|
___SEH2FrameHandler:
|
|
|
|
|
|
|
|
.extern __SEH2FrameHandler
|
|
|
|
|
|
|
|
cld
|
|
|
|
jmp __SEH2FrameHandler
|
2008-12-20 23:27:17 +00:00
|
|
|
.endfunc
|
2008-12-14 02:55:50 +00:00
|
|
|
|
2008-12-30 04:00:45 +00:00
|
|
|
.func __SEH2UnwindHandler
|
|
|
|
.globl ___SEH2UnwindHandler
|
|
|
|
___SEH2UnwindHandler:
|
2008-12-14 02:55:50 +00:00
|
|
|
|
2008-12-30 04:00:45 +00:00
|
|
|
.extern __SEH2UnwindHandler
|
2008-12-14 02:55:50 +00:00
|
|
|
|
|
|
|
cld
|
2008-12-30 04:00:45 +00:00
|
|
|
jmp __SEH2UnwindHandler
|
2008-12-20 23:27:17 +00:00
|
|
|
.endfunc
|
2008-12-14 02:55:50 +00:00
|
|
|
|
added include/reactos/libs/pseh/pseh2.h
added lib/pseh/framebased-gcchack.c
added lib/pseh/i386/framebased-gcchack.S
modified lib/pseh/pseh.rbuild
Introducing PSEH 2.0. It only wants to be loved. Highlights of this version:
- PSEH 2.0 syntax is 99% compatible with native SEH syntax
- PSEH 2.0 binary code a vast improvement over 1.1 - no more setjmp, no bogus loops, no weird optimizer behavior
PSEH 2.0 is a horrible, GCC-only, x86-only hack. It makes several non-portable assumptions and hey, did you know __builtin_frame_address(0) is *not* the same thing as EBP? Overall, it must be a world record for compiler abuse
PSEH 2.0 is, sadly, not binary-compatible with PSEH 1.1, although I will almost certainly unify the implementation at a later time
PSEH 2.0 needs testers. And love.
Not implemented yet: returning from a SEH block (i.e. _SEH2_YIELD())
Example of 2.0 syntax (yes, _SEH2_END is unavoidable):
_SEH2_TRY
{
_SEH2_TRY
{
/* ... */
}
_SEH2_EXCEPT((/* ... */))
{
/* ... */
}
_SEH2_END;
}
_SEH2_FINALLY
{
/* ... */
}
_SEH2_END;
--
Happy early birthday, Aleksey.
svn path=/trunk/; revision=37315
2008-11-12 19:52:16 +00:00
|
|
|
// EOF
|