2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64;
|
2018-02-26 02:14:58 +01:00
|
|
|
using ChocolArm64.Events;
|
2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
2018-04-22 06:21:49 +02:00
|
|
|
using ChocolArm64.State;
|
2018-02-20 21:09:23 +01:00
|
|
|
using Ryujinx.Core.Loaders;
|
|
|
|
using Ryujinx.Core.Loaders.Executables;
|
2018-04-24 20:57:39 +02:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-20 21:09:23 +01:00
|
|
|
using Ryujinx.Core.OsHle.Exceptions;
|
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-04-19 04:52:23 +02:00
|
|
|
using Ryujinx.Core.OsHle.Kernel;
|
2018-03-20 21:00:00 +01:00
|
|
|
using Ryujinx.Core.OsHle.Services.Nv;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Collections.Generic;
|
2018-04-22 06:21:49 +02:00
|
|
|
using System.Text;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
namespace Ryujinx.Core.OsHle
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
class Process : IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-06 15:53:18 +02:00
|
|
|
private const int TlsSize = 0x200;
|
|
|
|
|
|
|
|
private const int TotalTlsSlots = (int)MemoryRegions.TlsPagesSize / TlsSize;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-14 01:24:17 +01:00
|
|
|
private const int TickFreq = 19_200_000;
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private Switch Ns;
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public bool NeedsHbAbi { get; private set; }
|
|
|
|
|
|
|
|
public long HbAbiDataPosition { get; private set; }
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
public int ProcessId { get; private set; }
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
private ATranslator Translator;
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
public AMemory Memory { get; private set; }
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
public KProcessScheduler Scheduler { get; private set; }
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
public KThread ThreadArbiterList { get; set; }
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public KProcessHandleTable HandleTable { get; private set; }
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public AppletStateMgr AppletState { get; private set; }
|
|
|
|
|
2018-02-14 06:43:21 +01:00
|
|
|
private SvcHandler SvcHandler;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
private ConcurrentDictionary<int, AThread> TlsSlots;
|
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
private ConcurrentDictionary<long, KThread> Threads;
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
private KThread MainThread;
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private List<Executable> Executables;
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
private Dictionary<long, string> SymbolTable;
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private long ImageBase;
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
private bool ShouldDispose;
|
|
|
|
|
|
|
|
private bool Disposed;
|
|
|
|
|
2018-04-19 04:52:23 +02:00
|
|
|
public Process(Switch Ns, KProcessScheduler Scheduler, int ProcessId)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
this.Ns = Ns;
|
2018-04-19 04:52:23 +02:00
|
|
|
this.Scheduler = Scheduler;
|
2018-02-05 00:08:20 +01:00
|
|
|
this.ProcessId = ProcessId;
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
Memory = new AMemory();
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
HandleTable = new KProcessHandleTable();
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
AppletState = new AppletStateMgr();
|
2018-02-14 03:43:08 +01:00
|
|
|
|
|
|
|
SvcHandler = new SvcHandler(Ns, this);
|
|
|
|
|
|
|
|
TlsSlots = new ConcurrentDictionary<int, AThread>();
|
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
Threads = new ConcurrentDictionary<long, KThread>();
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
Executables = new List<Executable>();
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
ImageBase = MemoryRegions.AddrSpaceStart;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
MapRWMemRegion(
|
|
|
|
MemoryRegions.TlsPagesAddress,
|
|
|
|
MemoryRegions.TlsPagesSize,
|
|
|
|
MemoryType.ThreadLocal);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
public void LoadProgram(IExecutable Program)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
if (Disposed)
|
|
|
|
{
|
|
|
|
throw new ObjectDisposedException(nameof(Process));
|
|
|
|
}
|
|
|
|
|
2018-04-24 20:57:39 +02:00
|
|
|
Ns.Log.PrintInfo(LogClass.Loader, $"Image base at 0x{ImageBase:x16}.");
|
2018-02-17 22:06:11 +01:00
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
Executable Executable = new Executable(Program, Memory, ImageBase);
|
|
|
|
|
|
|
|
Executables.Add(Executable);
|
|
|
|
|
|
|
|
ImageBase = AMemoryHelper.PageRoundUp(Executable.ImageEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetEmptyArgs()
|
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
//TODO: This should be part of Run.
|
2018-02-05 00:08:20 +01:00
|
|
|
ImageBase += AMemoryMgr.PageSize;
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public bool Run(bool NeedsHbAbi = false)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
if (Disposed)
|
|
|
|
{
|
|
|
|
throw new ObjectDisposedException(nameof(Process));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.NeedsHbAbi = NeedsHbAbi;
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
if (Executables.Count == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
MakeSymbolTable();
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
MapRWMemRegion(
|
|
|
|
MemoryRegions.MainStackAddress,
|
|
|
|
MemoryRegions.MainStackSize,
|
|
|
|
MemoryType.Normal);
|
2018-04-05 00:29:34 +02:00
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
long StackTop = MemoryRegions.MainStackAddress + MemoryRegions.MainStackSize;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-19 04:52:23 +02:00
|
|
|
int Handle = MakeThread(Executables[0].ImageBase, StackTop, 0, 44, 0);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
if (Handle == -1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
MainThread = HandleTable.GetData<KThread>(Handle);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
if (NeedsHbAbi)
|
2018-02-24 01:59:38 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
HbAbiDataPosition = AMemoryHelper.PageRoundUp(Executables[0].ImageEnd);
|
2018-02-24 01:59:38 +01:00
|
|
|
|
2018-02-26 02:44:30 +01:00
|
|
|
Homebrew.WriteHbAbiData(Memory, HbAbiDataPosition, Handle);
|
|
|
|
|
|
|
|
MainThread.Thread.ThreadState.X0 = (ulong)HbAbiDataPosition;
|
2018-02-24 01:59:38 +01:00
|
|
|
MainThread.Thread.ThreadState.X1 = ulong.MaxValue;
|
|
|
|
}
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
Scheduler.StartThread(MainThread);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
private void MapRWMemRegion(long Position, long Size, MemoryType Type)
|
|
|
|
{
|
|
|
|
Memory.Manager.Map(Position, Size, (int)Type, AMemoryPerm.RW);
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
public void StopAllThreadsAsync()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
if (Disposed)
|
|
|
|
{
|
|
|
|
throw new ObjectDisposedException(nameof(Process));
|
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
if (MainThread != null)
|
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
MainThread.Thread.StopExecution();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach (AThread Thread in TlsSlots.Values)
|
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
Thread.StopExecution();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int MakeThread(
|
|
|
|
long EntryPoint,
|
|
|
|
long StackTop,
|
|
|
|
long ArgsPtr,
|
|
|
|
int Priority,
|
|
|
|
int ProcessorId)
|
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
if (Disposed)
|
2018-02-14 03:43:08 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
throw new ObjectDisposedException(nameof(Process));
|
2018-02-14 03:43:08 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
AThread CpuThread = new AThread(GetTranslator(), Memory, EntryPoint);
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
KThread Thread = new KThread(CpuThread, ProcessorId, Priority);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
int Handle = HandleTable.OpenHandle(Thread);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
int ThreadId = GetFreeTlsSlot(CpuThread);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
long Tpidr = MemoryRegions.TlsPagesAddress + ThreadId * TlsSize;
|
2018-02-28 00:45:07 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
CpuThread.ThreadState.ProcessId = ProcessId;
|
|
|
|
CpuThread.ThreadState.ThreadId = ThreadId;
|
|
|
|
CpuThread.ThreadState.CntfrqEl0 = TickFreq;
|
|
|
|
CpuThread.ThreadState.Tpidr = Tpidr;
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
CpuThread.ThreadState.X0 = (ulong)ArgsPtr;
|
|
|
|
CpuThread.ThreadState.X1 = (ulong)Handle;
|
|
|
|
CpuThread.ThreadState.X31 = (ulong)StackTop;
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
CpuThread.ThreadState.Break += BreakHandler;
|
|
|
|
CpuThread.ThreadState.SvcCall += SvcHandler.SvcCall;
|
|
|
|
CpuThread.ThreadState.Undefined += UndefinedHandler;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
CpuThread.WorkFinished += ThreadFinished;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
Threads.TryAdd(CpuThread.ThreadState.Tpidr, Thread);
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
return Handle;
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
private void BreakHandler(object sender, AInstExceptionEventArgs e)
|
2018-02-10 14:24:16 +01:00
|
|
|
{
|
|
|
|
throw new GuestBrokeExecutionException();
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
private void UndefinedHandler(object sender, AInstUndefinedEventArgs e)
|
2018-02-10 18:20:46 +01:00
|
|
|
{
|
|
|
|
throw new UndefinedInstructionException(e.Position, e.RawOpCode);
|
|
|
|
}
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
private void MakeSymbolTable()
|
2018-02-26 02:14:58 +01:00
|
|
|
{
|
2018-04-22 06:21:49 +02:00
|
|
|
SymbolTable = new Dictionary<long, string>();
|
2018-02-26 02:14:58 +01:00
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
foreach (Executable Exe in Executables)
|
|
|
|
{
|
|
|
|
foreach (KeyValuePair<long, string> KV in Exe.SymbolTable)
|
2018-02-26 02:14:58 +01:00
|
|
|
{
|
2018-04-22 06:21:49 +02:00
|
|
|
SymbolTable.TryAdd(Exe.ImageBase + KV.Key, KV.Value);
|
2018-02-26 02:14:58 +01:00
|
|
|
}
|
2018-04-22 06:21:49 +02:00
|
|
|
}
|
|
|
|
}
|
2018-02-26 02:14:58 +01:00
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
private ATranslator GetTranslator()
|
|
|
|
{
|
|
|
|
if (Translator == null)
|
|
|
|
{
|
2018-02-26 02:14:58 +01:00
|
|
|
Translator = new ATranslator(SymbolTable);
|
|
|
|
|
|
|
|
Translator.CpuTrace += CpuTraceHandler;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Translator;
|
|
|
|
}
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
public void EnableCpuTracing()
|
|
|
|
{
|
|
|
|
Translator.EnableCpuTrace = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DisableCpuTracing()
|
|
|
|
{
|
|
|
|
Translator.EnableCpuTrace = false;
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
private void CpuTraceHandler(object sender, ACpuTraceEventArgs e)
|
|
|
|
{
|
2018-03-04 04:06:44 +01:00
|
|
|
string NsoName = string.Empty;
|
|
|
|
|
|
|
|
for (int Index = Executables.Count - 1; Index >= 0; Index--)
|
|
|
|
{
|
|
|
|
if (e.Position >= Executables[Index].ImageBase)
|
|
|
|
{
|
|
|
|
NsoName = $"{(e.Position - Executables[Index].ImageBase):x16}";
|
2018-04-05 00:29:34 +02:00
|
|
|
|
2018-03-04 04:06:44 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 20:57:39 +02:00
|
|
|
Ns.Log.PrintDebug(LogClass.Cpu, $"Executing at 0x{e.Position:x16} {e.SubName} {NsoName}");
|
2018-02-26 02:14:58 +01:00
|
|
|
}
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
public void PrintStackTrace(AThreadState ThreadState)
|
2018-03-03 02:49:17 +01:00
|
|
|
{
|
2018-04-22 06:21:49 +02:00
|
|
|
long[] Positions = ThreadState.GetCallStack();
|
|
|
|
|
|
|
|
StringBuilder Trace = new StringBuilder();
|
|
|
|
|
|
|
|
Trace.AppendLine("Guest stack trace:");
|
|
|
|
|
|
|
|
foreach (long Position in Positions)
|
|
|
|
{
|
|
|
|
if (!SymbolTable.TryGetValue(Position, out string SubName))
|
|
|
|
{
|
|
|
|
SubName = $"Sub{Position:x16}";
|
|
|
|
}
|
|
|
|
|
|
|
|
Trace.AppendLine(" " + SubName + " (" + GetNsoNameAndAddress(Position) + ")");
|
|
|
|
}
|
|
|
|
|
2018-04-24 20:57:39 +02:00
|
|
|
Ns.Log.PrintInfo(LogClass.Cpu, Trace.ToString());
|
2018-03-03 02:49:17 +01:00
|
|
|
}
|
|
|
|
|
2018-04-22 06:21:49 +02:00
|
|
|
private string GetNsoNameAndAddress(long Position)
|
2018-03-03 02:49:17 +01:00
|
|
|
{
|
2018-04-22 06:21:49 +02:00
|
|
|
string Name = string.Empty;
|
|
|
|
|
|
|
|
for (int Index = Executables.Count - 1; Index >= 0; Index--)
|
|
|
|
{
|
|
|
|
if (Position >= Executables[Index].ImageBase)
|
|
|
|
{
|
|
|
|
long Offset = Position - Executables[Index].ImageBase;
|
|
|
|
|
|
|
|
Name = $"{Executables[Index].Name}:{Offset:x8}";
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Name;
|
2018-03-03 02:49:17 +01:00
|
|
|
}
|
|
|
|
|
2018-02-05 00:08:20 +01:00
|
|
|
private int GetFreeTlsSlot(AThread Thread)
|
|
|
|
{
|
|
|
|
for (int Index = 1; Index < TotalTlsSlots; Index++)
|
|
|
|
{
|
|
|
|
if (TlsSlots.TryAdd(Index, Thread))
|
|
|
|
{
|
|
|
|
return Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
throw new InvalidOperationException();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void ThreadFinished(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
if (sender is AThread Thread)
|
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
TlsSlots.TryRemove(GetTlsSlot(Thread.ThreadState.Tpidr), out _);
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-04-26 05:07:12 +02:00
|
|
|
Threads.TryRemove(Thread.ThreadState.Tpidr, out KThread KernelThread);
|
2018-04-19 04:52:23 +02:00
|
|
|
|
|
|
|
Scheduler.RemoveThread(KernelThread);
|
|
|
|
|
|
|
|
KernelThread.WaitEvent.Set();
|
2018-03-12 05:04:52 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
if (TlsSlots.Count == 0)
|
|
|
|
{
|
|
|
|
if (ShouldDispose)
|
|
|
|
{
|
|
|
|
Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ns.Os.ExitProcess(ProcessId);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int GetTlsSlot(long Position)
|
|
|
|
{
|
2018-02-28 00:45:07 +01:00
|
|
|
return (int)((Position - MemoryRegions.TlsPagesAddress) / TlsSize);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public KThread GetThread(long Tpidr)
|
2018-02-14 03:43:08 +01:00
|
|
|
{
|
2018-04-21 21:07:16 +02:00
|
|
|
if (!Threads.TryGetValue(Tpidr, out KThread Thread))
|
2018-02-19 20:37:13 +01:00
|
|
|
{
|
2018-04-24 20:57:39 +02:00
|
|
|
throw new InvalidOperationException();
|
2018-02-19 20:37:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return Thread;
|
2018-02-14 03:43:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
if (Disposing && !Disposed)
|
2018-02-14 03:43:08 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
//If there is still some thread running, disposing the objects is not
|
|
|
|
//safe as the thread may try to access those resources. Instead, we set
|
|
|
|
//the flag to have the Process disposed when all threads finishes.
|
|
|
|
//Note: This may not happen if the guest code gets stuck on a infinite loop.
|
|
|
|
if (TlsSlots.Count > 0)
|
|
|
|
{
|
|
|
|
ShouldDispose = true;
|
|
|
|
|
2018-04-24 20:57:39 +02:00
|
|
|
Ns.Log.PrintInfo(LogClass.Loader, $"Process {ProcessId} waiting all threads terminate...");
|
2018-03-12 05:04:52 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Disposed = true;
|
2018-03-19 19:58:46 +01:00
|
|
|
|
|
|
|
foreach (object Obj in HandleTable.Clear())
|
|
|
|
{
|
|
|
|
if (Obj is KSession Session)
|
|
|
|
{
|
|
|
|
Session.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
INvDrvServices.UnloadProcess(this);
|
2018-03-19 19:58:46 +01:00
|
|
|
|
|
|
|
AppletState.Dispose();
|
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
SvcHandler.Dispose();
|
2018-03-19 19:58:46 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
Memory.Dispose();
|
|
|
|
|
2018-04-24 20:57:39 +02:00
|
|
|
Ns.Log.PrintInfo(LogClass.Loader, $"Process {ProcessId} exiting...");
|
2018-02-14 03:43:08 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|