Skip to content
Snippets Groups Projects
  1. Sep 20, 2019
  2. Sep 19, 2019
  3. Jul 05, 2019
  4. May 18, 2019
    • Lioncash's avatar
      core/kernel/object: Rename ResetType enum members · a47aaa7f
      Lioncash authored
      Renames the members to more accurately indicate what they signify.
      "OneShot" and "Sticky" are kind of ambiguous identifiers for the reset
      types, and can be kind of misleading. Automatic and Manual communicate
      the kind of reset type in a clearer manner. Either the event is
      automatically reset, or it isn't and must be manually cleared.
      
      The "OneShot" and "Sticky" terminology is just a hold-over from Citra
      where the kernel had a third type of event reset type known as "Pulse".
      Given the Switch kernel only has two forms of event reset types, we
      don't need to keep the old terminology around anymore.
      a47aaa7f
  5. Nov 29, 2018
  6. Nov 26, 2018
  7. Nov 24, 2018
  8. Sep 11, 2018
    • Lioncash's avatar
      hle/service: Default constructors and destructors in the cpp file where applicable · 6ac955a0
      Lioncash authored
      When a destructor isn't defaulted into a cpp file, it can cause the use
      of forward declarations to seemingly fail to compile for non-obvious
      reasons. It also allows inlining of the construction/destruction logic
      all over the place where a constructor or destructor is invoked, which
      can lead to code bloat. This isn't so much a worry here, given the
      services won't be created and destroyed frequently.
      
      The cause of the above mentioned non-obvious errors can be demonstrated
      as follows:
      
      ------- Demonstrative example, if you know how the described error happens, skip forwards -------
      
      Assume we have the following in the header, which we'll call "thing.h":
      
      \#include <memory>
      
      // Forward declaration. For example purposes, assume the definition
      // of Object is in some header named "object.h"
      class Object;
      
      class Thing {
      public:
          // assume no constructors or destructors are specified here,
          // or the constructors/destructors are defined as:
          //
          // Thing() = default;
          // ~Thing() = default;
          //
      
          // ... Some interface member functions would be defined here
      
      private:
          std::shared_ptr<Object> obj;
      };
      
      If this header is included in a cpp file, (which we'll call "main.cpp"),
      this will result in a compilation error, because even though no
      destructor is specified, the destructor will still need to be generated by
      the compiler because std::shared_ptr's destructor is *not* trivial (in
      other words, it does something other than nothing), as std::shared_ptr's
      destructor needs to do two things:
      
      1. Decrement the shared reference count of the object being pointed to,
         and if the reference count decrements to zero,
      
      2. Free the Object instance's memory (aka deallocate the memory it's
         pointing to).
      
      And so the compiler generates the code for the destructor doing this inside main.cpp.
      
      Now, keep in mind, the Object forward declaration is not a complete type. All it
      does is tell the compiler "a type named Object exists" and allows us to
      use the name in certain situations to avoid a header dependency. So the
      compiler needs to generate destruction code for Object, but the compiler
      doesn't know *how* to destruct it. A forward declaration doesn't tell
      the compiler anything about Object's constructor or destructor. So, the
      compiler will issue an error in this case because it's undefined
      behavior to try and deallocate (or construct) an incomplete type and
      std::shared_ptr and std::unique_ptr make sure this isn't the case
      internally.
      
      Now, if we had defaulted the destructor in "thing.cpp", where we also
      include "object.h", this would never be an issue, as the destructor
      would only have its code generated in one place, and it would be in a
      place where the full class definition of Object would be visible to the
      compiler.
      
      ---------------------- End example ----------------------------
      
      Given these service classes are more than certainly going to change in
      the future, this defaults the constructors and destructors into the
      relevant cpp files to make the construction and destruction of all of
      the services consistent and unlikely to run into cases where forward
      declarations are indirectly causing compilation errors. It also has the
      plus of avoiding the need to rebuild several services if destruction
      logic changes, since it would only be necessary to recompile the single
      cpp file.
      6ac955a0
  9. 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
  10. Jul 21, 2018
  11. Jul 03, 2018
  12. May 02, 2018
  13. Apr 24, 2018
  14. Apr 20, 2018
  15. Apr 10, 2018
  16. Feb 14, 2018
  17. Feb 09, 2018
  18. Feb 06, 2018
    • David's avatar
      Extra nvdrv support (#162) · d129905a
      David authored
      * FinishInitalize needed for 3.0.1+ games
      
      * nvdrv:s and nvdrv:t both use NVDRV
      
      * Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
      
      NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
      
      * Initial /dev/nvhost-gpu support
      
      * ZCullBind
      
      * Stubbed SetErrorNotifier
      
      * Fixed SetErrorNotifier log, Added SetChannelPriority
      
      * Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
      
      * oops
      
      * Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
      
      * Added missing fixes
      
      * /dev/nvhost-ctrl-gpu
      
      * unneeded struct
      
      * Forgot u32 in enum class
      
      * Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
      
      * nvdrv#QueryEvent
      
      * Renamed logs for nvdrv
      
      * Refactor ioctl so nv_result isn't needed
      
      * /dev/nvhost-as-gpu
      
      * Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
      
      * nvdevices now uses "Ioctl" union,
      
      * IoctlGpfifoEntry now uses bit field
      
      * final changes
      d129905a
  19. Feb 04, 2018
  20. Jan 25, 2018
  21. Jan 21, 2018
    • David's avatar
      Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid (#114) · eeb3b5ee
      David authored
      * Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid
      
      * used clang-format-3.9 instead
      
      * lowercase pid
      
      * Moved nvmemp handlers to cpp
      
      * Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG
      
      * using std::arrays instead of c arrays
      
      * nvhost get config now uses std::array completely
      
      * added pid logging back
      
      * updated cmakelist
      
      * missing includes
      
      * added array, removed memcpy
      
      * clang-format6.0
      eeb3b5ee
  22. Jan 19, 2018
  23. Jan 17, 2018
  24. Jan 13, 2018
  25. Jan 11, 2018
Loading