Skip to content
Snippets Groups Projects
  1. Mar 29, 2019
  2. Mar 22, 2019
  3. 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
  4. Mar 05, 2019
  5. Mar 04, 2019
  6. Dec 03, 2018
  7. Oct 29, 2018
  8. Oct 15, 2018
  9. 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
  10. Oct 07, 2018
  11. Oct 02, 2018
  12. Oct 01, 2018
  13. Sep 30, 2018
    • 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
  14. Sep 29, 2018
  15. Sep 25, 2018
    • Lioncash's avatar
      memory: Dehardcode the use of fixed memory range constants · 83377113
      Lioncash authored
      The locations of these can actually vary depending on the address space
      layout, so we shouldn't be using these when determining where to map
      memory or be using them as offsets for calculations. This keeps all the
      memory ranges flexible and malleable based off of the virtual memory
      manager instance state.
      83377113
  16. Sep 24, 2018
  17. Sep 21, 2018
  18. Sep 13, 2018
  19. Aug 31, 2018
    • Lioncash's avatar
      core/core: Replace includes with forward declarations where applicable · 4a587b81
      Lioncash authored
      The follow-up to e2457418, which
      replaces most of the includes in the core header with forward declarations.
      
      This makes it so that if any of the headers the core header was
      previously including change, then no one will need to rebuild the bulk
      of the core, due to core.h being quite a prevalent inclusion.
      
      This should make turnaround for changes much faster for developers.
      4a587b81
  20. 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
  21. Aug 15, 2018
  22. Aug 03, 2018
  23. Jul 20, 2018
  24. Jul 19, 2018
  25. Jul 17, 2018
  26. Jul 13, 2018
    • Hedges's avatar
      More improvements to GDBStub (#653) · e066bc75
      Hedges authored
      * More improvements to GDBStub
      - Debugging of threads should work correctly with source and assembly level stepping and modifying registers and memory, meaning threads and callstacks are fully clickable in VS.
      - List of modules is available to the client, with assumption that .nro and .nso are backed up by an .elf with symbols, while deconstructed ROMs keep N names.
      - Initial support for floating point registers.
      
      * Tidy up as requested in PR feedback
      
      * Tidy up as requested in PR feedback
      e066bc75
  27. Jul 08, 2018
Loading