1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

wow64: Always use a .seh handler in cpu_simulate().

This commit is contained in:
Alexandre Julliard 2024-03-21 18:14:27 +01:00
parent d2c0efe163
commit d09501691e

View file

@ -999,8 +999,7 @@ __ASM_GLOBAL_FUNC( cpu_simulate_handler,
"mov x19, x2\n\t" /* record */
"bl RtlUnwind\n\t"
"brk #1" )
#elif defined __WINE_PE_BUILD
#else
extern void DECLSPEC_NORETURN cpu_simulate( void (*func)(void) );
__ASM_GLOBAL_FUNC( cpu_simulate,
"subq $0x28, %rsp\n\t"
@ -1026,28 +1025,6 @@ __ASM_GLOBAL_FUNC( cpu_simulate_handler,
"movq %rsi,%r8\n\t" /* record */
"call RtlUnwind\n\t"
"int3" )
#else
static LONG CALLBACK simulate_filter( EXCEPTION_POINTERS *ptrs )
{
Wow64PassExceptionToGuest( ptrs );
return EXCEPTION_EXECUTE_HANDLER;
}
static void cpu_simulate( void (*func)(void) )
{
for (;;)
{
__TRY
{
func();
}
__EXCEPT( simulate_filter )
{
/* restart simulation loop */
}
__ENDTRY
}
}
#endif