Skip to content
Snippets Groups Projects
  1. Jun 05, 2019
  2. Apr 12, 2019
    • Lioncash's avatar
      core/core: Move process execution start to System's Load() · 612e1388
      Lioncash authored
      This gives us significantly more control over where in the
      initialization process we start execution of the main process.
      
      Previously we were running the main process before the CPU or GPU
      threads were initialized (not good). This amends execution to start
      after all of our threads are properly set up.
      612e1388
  3. Apr 11, 2019
    • Lioncash's avatar
      kernel: Make handle type declarations constexpr · 6300ccbc
      Lioncash authored
      Some objects declare their handle type as const, while others declare it
      as constexpr. This makes the const ones constexpr for consistency, and
      prevent unexpected compilation errors if these happen to be attempted to be
      used within a constexpr context.
      6300ccbc
  4. Apr 02, 2019
    • Lioncash's avatar
      kernel/svc: Implement svcGetThreadList · 28719ee3
      Lioncash authored
      Similarly like svcGetProcessList, this retrieves the list of threads
      from the current process. In the kernel itself, a process instance
      maintains a list of threads, which are used within this function.
      
      Threads are registered to a process' thread list at thread
      initialization, and unregistered from the list upon thread destruction
      (if said thread has a non-null owning process).
      
      We assert on the debug event case, as we currently don't implement
      kernel debug objects.
      28719ee3
  5. Apr 01, 2019
  6. Mar 29, 2019
  7. Mar 28, 2019
  8. Mar 24, 2019
  9. Mar 20, 2019
    • Lioncash's avatar
      kernel: Move CodeSet structure to its own source files · 1b6bd9d6
      Lioncash authored
      Given this is utilized by the loaders, this allows avoiding inclusion of
      the kernel process definitions where avoidable.
      
      This also keeps the loading format for all executable data separate from
      the kernel objects.
      1b6bd9d6
  10. Mar 15, 2019
    • Lioncash's avatar
      core/hle/kernel: Make Mutex a per-process class. · 555cd26e
      Lioncash authored
      Makes it an instantiable class like it is in the actual kernel. This
      will also allow removing reliance on global accessors in a following
      change, now that we can encapsulate a reference to the system instance
      in the class.
      555cd26e
  11. Mar 12, 2019
  12. Mar 08, 2019
    • Lioncash's avatar
      kernel: Make the address arbiter instance per-process · 8e510d5a
      Lioncash authored
      Now that we have the address arbiter extracted to its own class, we can
      fix an innaccuracy with the kernel. Said inaccuracy being that there
      isn't only one address arbiter. Each process instance contains its own
      AddressArbiter instance in the actual kernel.
      
      This fixes that and gets rid of another long-standing issue that could
      arise when attempting to create more than one process.
      8e510d5a
  13. Jan 01, 2019
  14. Dec 31, 2018
  15. Dec 28, 2018
    • Lioncash's avatar
      kernel: Rename 'default' CPU core to 'ideal' core · f80bc712
      Lioncash authored
      This makes the naming more closely match its meaning. It's just a
      preferred core, not a required default core. This also makes the usages
      of this term consistent across the thread and process implementations.
      f80bc712
    • Lioncash's avatar
      kernel/process: Remove most allocation functions from Process' interface · fbeaa330
      Lioncash authored
      In all cases that these functions are needed, the VMManager can just be
      retrieved and used instead of providing the same functions in Process'
      interface.
      
      This also makes it a little nicer dependency-wise, since it gets rid of
      cases where the VMManager interface was being used, and then switched
      over to using the interface for a Process instance. Instead, it makes
      all accesses uniform and uses the VMManager instance for all necessary
      tasks.
      
      All the basic memory mapping functions did was forward to the Process'
      VMManager instance anyways.
      fbeaa330
  16. Dec 21, 2018
  17. Dec 19, 2018
  18. Dec 12, 2018
    • Lioncash's avatar
      vm_manager: Amend MemoryState enum members · 366985ca
      Lioncash authored
      Amends the MemoryState enum to use the same values like the actual
      kernel does. Also provides the necessary operators to operate on them.
      This will be necessary in the future for implementing
      svcSetMemoryAttribute, as memory block state is checked before applying
      the attribute.
      366985ca
  19. Dec 05, 2018
    • Lioncash's avatar
      kernel/process: Make Process a WaitObject · c7462ce7
      Lioncash authored
      Process instances can be waited upon for state changes. This is also
      utilized by svcResetSignal, which will be modified in an upcoming
      change. This simply puts all of the WaitObject related machinery in
      place.
      c7462ce7
  20. Dec 04, 2018
  21. Nov 20, 2018
  22. Nov 15, 2018
  23. Nov 13, 2018
  24. Oct 26, 2018
    • Lioncash's avatar
      svc: Implement svcGetInfo command 0xF0000002 · 6594853e
      Lioncash authored
      This retrieves:
      
      if (curr_thread == handle_thread) {
         result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks);
      } else if (curr_thread == handle_thread && sub_id == current_core_index) {
         result = hardware_tick_count - last_context_switch_ticks;
      }
      6594853e
  25. Oct 20, 2018
    • Lioncash's avatar
      kernel/process: Make the handle table per-process · 90a981a0
      Lioncash authored
      In the kernel, there isn't a singular handle table that everything gets
      tossed into or used, rather, each process gets its own handle table that
      it uses. This currently isn't an issue for us, since we only execute one
      process at the moment, but we may as well get this out of the way so
      it's not a headache later on.
      90a981a0
  26. Oct 13, 2018
    • Lioncash's avatar
      svc: Implement svcGetProcessInfo · 1c7a7ed7
      Lioncash authored
      A fairly basic service function, which only appears to currently support
      retrieving the process state. This also alters the ProcessStatus enum to
      contain all of the values that a kernel process seems to be able of
      reporting with regards to state.
      1c7a7ed7
  27. Oct 12, 2018
    • Lioncash's avatar
      kernel/process: Make CodeSet a regular non-inherited object · 1abed2f4
      Lioncash authored
      These only exist to ferry data into a Process instance and end up going
      out of scope quite early. Because of this, we can just make it a plain
      struct for holding things and just std::move it into the relevant
      function. There's no need to make this inherit from the kernel's Object
      type.
      1abed2f4
  28. Sep 30, 2018
    • Lioncash's avatar
      kernel/process: Add a data member to determine if a process is 64-bit or not. · dccfe193
      Lioncash authored
      This will be necessary for the implementation of svcGetThreadContext(),
      as the kernel checks whether or not the process that owns the thread
      that has it context being retrieved is a 64-bit or 32-bit process.
      
      If the process is 32-bit, then the upper 15 general-purpose registers
      and upper 16 vector registers are cleared to zero (as AArch32 only has
      15 GPRs and 16 128-bit vector registers. not 31 general-purpose
      registers and 32 128-bit vector registers like AArch64).
      dccfe193
    • Lioncash's avatar
      kernel/process: Make data member variables private · cf9d6c6f
      Lioncash authored
      Makes the public interface consistent in terms of how accesses are done
      on a process object. It also makes it slightly nicer to reason about the
      logic of the process class, as we don't want to expose everything to
      external code.
      cf9d6c6f
  29. Sep 24, 2018
  30. Sep 21, 2018
  31. Sep 15, 2018
  32. Aug 29, 2018
    • Lioncash's avatar
      kernel: Eliminate kernel global state · 0cbcd6ec
      Lioncash authored
      As means to pave the way for getting rid of global state within core,
      This eliminates kernel global state by removing all globals. Instead
      this introduces a KernelCore class which acts as a kernel instance. This
      instance lives in the System class, which keeps its lifetime contained
      to the lifetime of the System class.
      
      This also forces the kernel types to actually interact with the main
      kernel instance itself instead of having transient kernel state placed
      all over several translation units, keeping everything together. It also
      has a nice consequence of making dependencies much more explicit.
      
      This also makes our initialization a tad bit more correct. Previously we
      were creating a kernel process before the actual kernel was initialized,
      which doesn't really make much sense.
      
      The KernelCore class itself follows the PImpl idiom, which allows
      keeping all the implementation details sealed away from everything else,
      which forces the use of the exposed API and allows us to avoid any
      unnecessary inclusions within the main kernel header.
      0cbcd6ec
  33. Aug 03, 2018
Loading