Improve debugger interface code

This commit is contained in:
svc64 2023-12-12 20:32:43 +02:00
parent e401097e1e
commit cc32ac251b
1 changed files with 18 additions and 11 deletions

View File

@ -1196,6 +1196,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
public DebuggerInterface(KProcess p)
{
_parent = p;
KernelContext = p.KernelContext;
}
public void DebugStop()
@ -1206,7 +1207,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
return;
}
_parent.KernelContext.CriticalSection.Enter();
KernelContext.CriticalSection.Enter();
lock (_parent._threadingLock)
{
foreach (KThread thread in _parent._threads)
@ -1217,8 +1218,8 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
}
}
_debugState = (int)DebugState.Stopped;
_parent.KernelContext.CriticalSection.Leave();
_debugState = (int)DebugState.Stopped;
KernelContext.CriticalSection.Leave();
}
public void DebugContinue()
@ -1229,7 +1230,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
return;
}
_parent.KernelContext.CriticalSection.Enter();
KernelContext.CriticalSection.Enter();
lock (_parent._threadingLock)
{
foreach (KThread thread in _parent._threads)
@ -1237,7 +1238,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
thread.Resume(ThreadSchedState.ThreadPauseFlag);
}
}
_parent.KernelContext.CriticalSection.Leave();
KernelContext.CriticalSection.Leave();
}
public bool DebugStep(KThread target)
@ -1246,10 +1247,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
{
return false;
}
_parent.KernelContext.CriticalSection.Enter();
KernelContext.CriticalSection.Enter();
bool waiting = target.MutexOwner != null || target.WaitingSync || target.WaitingInArbitration;
target.Context.RequestDebugStep();
target.Resume(ThreadSchedState.ThreadPauseFlag);
if (waiting)
{
lock (_parent._threadingLock)
@ -1260,13 +1260,16 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
}
}
}
_parent.KernelContext.CriticalSection.Leave();
else
{
target.Resume(ThreadSchedState.ThreadPauseFlag);
}
KernelContext.CriticalSection.Leave();
target.Context.StepBarrier.SignalAndWait();
target.Context.StepBarrier.SignalAndWait();
_parent.KernelContext.CriticalSection.Enter();
target.Suspend(ThreadSchedState.ThreadPauseFlag);
KernelContext.CriticalSection.Enter();
if (waiting)
{
lock (_parent._threadingLock)
@ -1277,7 +1280,11 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
}
}
}
_parent.KernelContext.CriticalSection.Leave();
else
{
target.Suspend(ThreadSchedState.ThreadPauseFlag);
}
KernelContext.CriticalSection.Leave();
return true;
}