Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TranslationCPU: Always eventually handle IRQs #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 47 additions & 1 deletion src/Emulator/Peripherals/Peripherals/CPU/TranslationCPU.cs
Original file line number Diff line number Diff line change
@@ -68,6 +68,7 @@ protected TranslationCPU(uint id, string cpuType, IMachine machine, Endianess en
decodedIrqs = new Dictionary<Interrupt, HashSet<int>>();
hooks = new Dictionary<ulong, HookDescriptor>();
currentMappings = new List<SegmentMapping>();
deferred = new Queue<Tuple<int, bool>>();
InitializeRegisters();
Init();
InitDisas();
@@ -258,6 +259,7 @@ public override ExecutionMode ExecutionMode
{
base.ExecutionMode = value;
UpdateBlockBeginHookPresent();
SetDeferredIRQs();
}
}

@@ -300,6 +302,12 @@ protected override void OnLeavingResetState()
TlibOnLeavingResetState();
}

protected override void OnResume()
{
base.OnResume();
SetDeferredIRQs();
}

protected override void RequestPause()
{
base.RequestPause();
@@ -361,6 +369,28 @@ public virtual void OnGPIO(int number, bool value)
sleeper.Interrupt();
}
}
else
{
deferred.Enqueue(new Tuple<int, bool>(number, value));
}
}
}

private void SetDeferredIRQs()
{
if(started && (lastTlibResult == TlibExecutionResult.WaitingForInterrupt
|| !(DisableInterruptsWhileStepping && IsSingleStepMode)))
{
Tuple<int, bool> t;
while (deferred.TryDequeue(out t))
{
TlibSetIrqWrapped(t.Item1, t.Item2);
if(EmulationManager.Instance.CurrentEmulation.Mode !=
Emulation.EmulationMode.SynchronizedIO)
{
sleeper.Interrupt();
}
}
}
}

@@ -445,7 +475,18 @@ public void ClearPageAccessViaIo(ulong address)
TlibClearPageIoAccessed(address);
}

public bool DisableInterruptsWhileStepping { get; set; }
private bool disableInterruptsWhileStepping;
public bool DisableInterruptsWhileStepping {
get
{
return disableInterruptsWhileStepping;
}
set
{
disableInterruptsWhileStepping = value;
SetDeferredIRQs();
}
}

// this is just for easier usage in Monitor
public void LogFunctionNames(bool value, bool removeDuplicates = false)
@@ -2410,6 +2451,10 @@ public override ExecutionResult ExecuteInstructions(ulong numberOfInstructionsTo
this.Trace($"Asked tlib to execute {numberOfInstructionsToExecute}, but did nothing");
}
DebugHelper.Assert(numberOfExecutedInstructions <= numberOfInstructionsToExecute, "tlib executed more instructions than it was asked to");
if (lastTlibResult == TlibExecutionResult.WaitingForInterrupt)
{
SetDeferredIRQs();
}
}

switch(lastTlibResult)
@@ -2447,6 +2492,7 @@ public void SetBroadcastDirty(bool enable)
private Dictionary<ulong, HookDescriptor> hooks;
private Dictionary<Interrupt, HashSet<int>> decodedIrqs;
private bool isInterruptLoggingEnabled;
private Queue<Tuple<int, bool>> deferred;

private class HookDescriptor
{