mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 20:34:59 +00:00
[RTL/x64] Handle STATUS_UNWIND_CONSOLIDATE in RtlRestoreContext
It's not entirely correct yet and will probably fail on recursive c++ exceptions, but it fixes basic c++ exception handling.
This commit is contained in:
parent
ff282894a8
commit
bb444b93d9
2 changed files with 29 additions and 9 deletions
|
@ -1131,3 +1131,26 @@ RtlSetUnwindContext(
|
|||
*ContextPointers.Xmm14 = Context->Xmm14;
|
||||
*ContextPointers.Xmm15 = Context->Xmm15;
|
||||
}
|
||||
|
||||
VOID
|
||||
RtlpRestoreContextInternal(
|
||||
_In_ PCONTEXT ContextRecord);
|
||||
|
||||
VOID
|
||||
RtlRestoreContext(
|
||||
_In_ PCONTEXT ContextRecord,
|
||||
_In_ PEXCEPTION_RECORD ExceptionRecord)
|
||||
{
|
||||
if (ExceptionRecord != NULL)
|
||||
{
|
||||
if ((ExceptionRecord->ExceptionCode == STATUS_UNWIND_CONSOLIDATE) &&
|
||||
(ExceptionRecord->NumberParameters >= 1))
|
||||
{
|
||||
PVOID (*Consolidate)(EXCEPTION_RECORD*) = (PVOID)ExceptionRecord->ExceptionInformation[0];
|
||||
// FIXME: This should be called through an asm wrapper to allow handling recursive unwinding
|
||||
ContextRecord->Rip = (ULONG64)Consolidate(ExceptionRecord);
|
||||
}
|
||||
}
|
||||
|
||||
RtlpRestoreContextInternal(ContextRecord);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue