Skip to content
Snippets Groups Projects
  1. May 29, 2019
    • Lioncash's avatar
      core/core: Remove unnecessary includes · 8bbe930f
      Lioncash authored
      The contents of these includes aren't used anywhere in this translation
      unit.
      8bbe930f
    • Lioncash's avatar
      core/loader: Remove LoadKernelSystemMode · 84a8fb92
      Lioncash authored
      This is a hold-over from Citra and doesn't apply to yuzu.
      84a8fb92
    • Lioncash's avatar
      core/telemetry_session: Remove usages of the global system accessor · 215fd827
      Lioncash authored
      Makes the dependency explicit in the TelemetrySession's interface
      instead of making it a hidden dependency.
      
      This also revealed a hidden issue with the way the telemetry session was
      being initialized. It was attempting to retrieve the app loader and log
      out title-specific information. However, this isn't always guaranteed to
      be possible.
      
      During the initialization phase, everything is being constructed. It
      doesn't mean an actual title has been selected. This is what the Load()
      function is for. This potentially results in dead code paths involving
      the app loader. Instead, we explicitly add this information when we know
      the app loader instance is available.
      215fd827
  2. Apr 17, 2019
  3. 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
    • Lioncash's avatar
      core/core: Move main process creation into Load() · a4b0a855
      Lioncash authored
      Now that we have dependencies on the initialization order, we can move
      the creation of the main process to a more sensible area: where we
      actually load in the executable data.
      
      This allows localizing the creation and loading of the process in one
      location, making the initialization of the process much nicer to trace.
      a4b0a855
    • Lioncash's avatar
      video_core/gpu: Create threads separately from initialization · 6d055119
      Lioncash authored
      Like with CPU emulation, we generally don't want to fire off the threads
      immediately after the relevant classes are initialized, we want to do
      this after all necessary data is done loading first.
      
      This splits the thread creation into its own interface member function
      to allow controlling when these threads in particular get created.
      6d055119
    • Lioncash's avatar
      core/cpu_core_manager: Create threads separately from initialization. · f2331a80
      Lioncash authored
      Our initialization process is a little wonky than one would expect when
      it comes to code flow. We initialize the CPU last, as opposed to
      hardware, where the CPU obviously needs to be first, otherwise nothing
      else would work, and we have code that adds checks to get around this.
      
      For example, in the page table setting code, we check to see if the
      system is turned on before we even notify the CPU instances of a page
      table switch. This results in dead code (at the moment), because the
      only time a page table switch will occur is when the system is *not*
      running, preventing the emulated CPU instances from being notified of a
      page table switch in a convenient manner (technically the code path
      could be taken, but we don't emulate the process creation svc handlers
      yet).
      
      This moves the threads creation into its own member function of the core
      manager and restores a little order (and predictability) to our
      initialization process.
      
      Previously, in the multi-threaded cases, we'd kick off several threads
      before even the main kernel process was created and ready to execute (gross!).
      Now the initialization process is like so:
      
      Initialization:
        1. Timers
      
        2. CPU
      
        3. Kernel
      
        4. Filesystem stuff (kind of gross, but can be amended trivially)
      
        5. Applet stuff (ditto in terms of being kind of gross)
      
        6. Main process (will be moved into the loading step in a following
                         change)
      
        7. Telemetry (this should be initialized last in the future).
      
        8. Services (4 and 5 should ideally be alongside this).
      
        9. GDB (gross. Uses namespace scope state. Needs to be refactored into a
                class or booted altogether).
      
        10. Renderer
      
        11. GPU (will also have its threads created in a separate step in a
                 following change).
      
      Which... isn't *ideal* per-se, however getting rid of the wonky
      intertwining of CPU state initialization out of this mix gets rid of
      most of the footguns when it comes to our initialization process.
      f2331a80
  4. Mar 27, 2019
  5. Mar 22, 2019
  6. 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
  7. Mar 07, 2019
  8. Mar 05, 2019
  9. Mar 04, 2019
  10. Feb 16, 2019
    • Lioncash's avatar
      video_core: Remove usages of System::GetInstance() within the engines · a8fa5019
      Lioncash authored
      Avoids the use of the global accessor in favor of explicitly making the
      system a dependency within the interface.
      a8fa5019
    • Lioncash's avatar
      core_timing: Convert core timing into a class · bd983414
      Lioncash authored
      Gets rid of the largest set of mutable global state within the core.
      This also paves a way for eliminating usages of GetInstance() on the
      System class as a follow-up.
      
      Note that no behavioral changes have been made, and this simply extracts
      the functionality into a class. This also has the benefit of making
      dependencies on the core timing functionality explicit within the
      relevant interfaces.
      bd983414
  11. Feb 12, 2019
  12. Feb 07, 2019
  13. Jan 17, 2019
    • Lioncash's avatar
      core/frontend/applets/web_browser: Make OpenPage() non-const · a6610256
      Lioncash authored
      This is a function that definitely doesn't always have a non-modifying
      behavior across all implementations, so this should be made non-const.
      
      This gets rid of the need to mark data members as mutable to work around
      the fact mutating data members needs to occur.
      a6610256
  14. Jan 08, 2019
  15. Dec 28, 2018
  16. Dec 03, 2018
  17. Nov 22, 2018
    • Lioncash's avatar
      core: Relocate CPU core management to its own class · 232d95b5
      Lioncash authored
      Keeps the CPU-specific behavior from being spread throughout the main
      System class. This will also act as the home to contain member functions
      that perform operations on all cores. The reason for this being that the
      following pattern is sort of prevalent throughout sections of the
      codebase:
      
      If clearing the instruction cache for all 4 cores is necessary:
      
      Core::System::GetInstance().ArmInterface(0).ClearInstructionCache();
      Core::System::GetInstance().ArmInterface(1).ClearInstructionCache();
      Core::System::GetInstance().ArmInterface(2).ClearInstructionCache();
      Core::System::GetInstance().ArmInterface(3).ClearInstructionCache();
      
      This is kind of... well, silly to copy around whenever it's needed.
      especially when it can be reduced down to a single line.
      
      This change also puts the basics in place to begin "ungrafting" all of the
      forwarding member functions from the System class that are used to
      access CPU state or invoke CPU-specific behavior. As such, this change
      itself makes no changes to the direct external interface of System. This
      will be covered by another changeset.
      232d95b5
  18. Nov 18, 2018
  19. Oct 30, 2018
  20. Oct 28, 2018
  21. Oct 18, 2018
  22. Oct 15, 2018
Loading