Commit graph

16 commits

Author SHA1 Message Date
Michael Scire
9d0d9d95e1 Stratosphere: Give more memory to SYSTEM, use less memory. 2018-07-27 01:44:34 -07:00
Tony Wasserka
ad636f7216 Modernize C++ usage (#144)
* Stratosphere: Use modern C++ idioms in some places

* algorithms like std::for_each are used instead of raw loops

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Add a utility predicate function to test for equality with a reference element

This can be used to rewrite some common raw loops using algorithms instead

* fs.mitm: Use variant

* fs.mitm: Use enum class

* fs.mitm: Turn RomFSSourceInfo::Cleanup into a destructor

This obsoletes the need for a custom deleter in other places

* fs.mitm: Use enum class some more

* fs.mitm: Use unique_ptr

* fs.mitm: Simplify initialization

* Stratosphere: Simplify initialization

* fs.mitm: Use unique_ptr (fix memory leak along the way)

The previous code was using "delete" rather than "delete[]"

* fs.mitm: Use vector::emplace_back rather than push_back

emplace_back constructs elements in-place, hence avoiding a redundant element copy.

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Use unique_ptr

* fs.mitm: Replace more raw loops with algorithms

* Stratosphere: Prefer move-construction over copy-construction when moving sink parameters around
2018-06-19 11:07:31 -07:00
Michael Scire
237ff0d1e7 libstratosphere/fs.mitm: Push WIP support for Domains. Not yet fully working. 2018-06-12 16:01:04 -06:00
Michael Scire
c1c211f542 fs.mitm: Implement basic passthrough framework for input commands. 2018-06-09 19:33:22 -06:00
Michael Scire
ba7d0c2cb6 Exosphere: Add API for retrieving versioning info. 2018-05-09 06:29:56 -06:00
Michael Scire
e05f199394 Loader: Fix (all?) remaining bugs in ldr:pm.
Loader now works when booted as a KIP1. NOTE: ldr:ro still needs
debugging.
2018-05-01 16:49:20 -06:00
Michael Scire
977a51edb0 Loader: Service ldr:ro on <= 2.3.0 2018-04-26 16:50:43 -06:00
Michael Scire
b81ceeca21 Stratosphere: extract common code to libstratosphere. 2018-04-21 20:31:06 -06:00
Michael Scire
7940981bb8 Stratosphere: Add lz4 library, add GetContentPath primitive to loader. 2018-04-19 07:34:56 -06:00
Michael Scire
d39c3b8efc Stratosphere: Properly overwrite appInit/appExit for libnx in loader 2018-04-19 07:07:43 -06:00
Michael Scire
f0759b0afc Stratosphere: Add libnx fsp-ldr wrapper to Loader 2018-04-19 00:37:01 -06:00
Michael Scire
af11f9fdec Stratosphere: Skeleton ldr:pm (RegisterTitle/UnregisterTitle are implemented) 2018-04-18 23:15:17 -06:00
Michael Scire
7fed8a4428 Stratosphere: Add debugging to loader, it can now be talked to on console successfully. 2018-04-18 16:24:40 -06:00
Michael Scire
321286ceab Stratosphere: Fill out Loader main(), fix template classes. 2018-04-18 12:10:45 -06:00
Michael Scire
864979179a Fix C++ header includes 2018-04-17 17:31:57 -06:00
Michael Scire
79aba08295 Stratosphere: Make dir for loader 2018-04-17 17:26:28 -06:00