| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- using ChocolArm64.State;
- using Ryujinx.Core.Logging;
- using Ryujinx.Core.OsHle.Handles;
- using System.Threading;
- using static Ryujinx.Core.OsHle.ErrorCode;
- namespace Ryujinx.Core.OsHle.Kernel
- {
- partial class SvcHandler
- {
- private void SvcCreateThread(AThreadState ThreadState)
- {
- long EntryPoint = (long)ThreadState.X1;
- long ArgsPtr = (long)ThreadState.X2;
- long StackTop = (long)ThreadState.X3;
- int Priority = (int)ThreadState.X4;
- int ProcessorId = (int)ThreadState.X5;
- if ((uint)Priority > 0x3f)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid priority 0x{Priority:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidPriority);
- return;
- }
- if (ProcessorId == -2)
- {
- //TODO: Get this value from the NPDM file.
- ProcessorId = 0;
- }
- else if ((uint)ProcessorId > 3)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid core id 0x{ProcessorId:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidCoreId);
- return;
- }
- int Handle = Process.MakeThread(
- EntryPoint,
- StackTop,
- ArgsPtr,
- Priority,
- ProcessorId);
- ThreadState.X0 = 0;
- ThreadState.X1 = (ulong)Handle;
- }
- private void SvcStartThread(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X0;
- KThread CurrThread = Process.HandleTable.GetData<KThread>(Handle);
- if (CurrThread != null)
- {
- Process.Scheduler.StartThread(CurrThread);
- Process.Scheduler.Yield(Process.GetThread(ThreadState.Tpidr));
- ThreadState.X0 = 0;
- }
- else
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- }
- }
- private void SvcExitThread(AThreadState ThreadState)
- {
- KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
- CurrThread.Thread.StopExecution();
- }
- private void SvcSleepThread(AThreadState ThreadState)
- {
- ulong Ns = ThreadState.X0;
- KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
- if (Ns == 0)
- {
- Process.Scheduler.Yield(CurrThread);
- }
- else
- {
- Process.Scheduler.Suspend(CurrThread);
- Thread.Sleep(NsTimeConverter.GetTimeMs(Ns));
- Process.Scheduler.Resume(CurrThread);
- }
- }
- private void SvcGetThreadPriority(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X1;
- KThread Thread = GetThread(ThreadState.Tpidr, Handle);
- if (Thread != null)
- {
- ThreadState.X0 = 0;
- ThreadState.X1 = (ulong)Thread.ActualPriority;
- }
- else
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- }
- }
- private void SvcSetThreadPriority(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X0;
- int Priority = (int)ThreadState.X1;
- KThread Thread = GetThread(ThreadState.Tpidr, Handle);
- if (Thread != null)
- {
- Thread.SetPriority(Priority);
- ThreadState.X0 = 0;
- }
- else
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- }
- }
- private void SvcSetThreadCoreMask(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X0;
- int IdealCore = (int)ThreadState.X1;
- long CoreMask = (long)ThreadState.X2;
- KThread Thread = GetThread(ThreadState.Tpidr, Handle);
- if (IdealCore == -2)
- {
- //TODO: Get this value from the NPDM file.
- IdealCore = 0;
- CoreMask = 1 << IdealCore;
- }
- else if (IdealCore != -3)
- {
- if ((uint)IdealCore > 3)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid core id 0x{IdealCore:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidCoreId);
- return;
- }
- if ((CoreMask & (1 << IdealCore)) == 0)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid core mask 0x{CoreMask:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidCoreMask);
- return;
- }
- }
- if (Thread == null)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- return;
- }
- if (IdealCore == -3)
- {
- if ((CoreMask & (1 << Thread.IdealCore)) == 0)
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid core mask 0x{CoreMask:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidCoreMask);
- return;
- }
- }
- else
- {
- Thread.IdealCore = IdealCore;
- }
- Thread.CoreMask = (int)CoreMask;
- KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
- Process.Scheduler.Yield(CurrThread);
- Process.Scheduler.TryRunning(Thread);
- ThreadState.X0 = 0;
- }
- private void SvcGetCurrentProcessorNumber(AThreadState ThreadState)
- {
- ThreadState.X0 = (ulong)Process.GetThread(ThreadState.Tpidr).ActualCore;
- }
- private void SvcGetThreadId(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X1;
- KThread Thread = GetThread(ThreadState.Tpidr, Handle);
- if (Thread != null)
- {
- ThreadState.X0 = 0;
- ThreadState.X1 = (ulong)Thread.ThreadId;
- }
- else
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- }
- }
- private void SvcSetThreadActivity(AThreadState ThreadState)
- {
- int Handle = (int)ThreadState.X0;
- bool Active = (int)ThreadState.X1 == 0;
- KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
- if (Thread != null)
- {
- Process.Scheduler.SetThreadActivity(Thread, Active);
- ThreadState.X0 = 0;
- }
- else
- {
- Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
- ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
- }
- }
- }
- }
|