Implement BLR Overflow handling for Windows.

This commit is contained in:
Scott Mansell
2016-02-15 14:25:34 +13:00
parent b164b4c475
commit c5b3a2efac
7 changed files with 83 additions and 33 deletions

View File

@ -218,6 +218,16 @@ namespace JitInterface
return jit->HandleFault(access_address, ctx);
}
bool HandleStackFault()
{
if (!jit)
{
return false;
}
return jit->HandleStackFault();
}
void ClearCache()
{
if (jit)