- Mar 29, 2019
- Mar 22, 2019
-
-
Lioncash authored
Makes it impossible to indirectly violate the ODR in some other translation unit due to these existing.
-
Lioncash authored
Instead, pass in the core timing instance and make the dependency explicit in the interface.
-
Lioncash authored
Now that the NSO header has the proper size, we can just use sizeof on it instead of having magic constants.
-
Lioncash authored
This source file was utilizing its own version of the NSO header. Instead of keeping this around, we can have the patch manager also use the version of the header that we have defined in loader/nso.h
-
Lioncash authored
The total struct itself is 0x100 (256) bytes in size, so we should be providing that amount of data. Without the data, this can result in omitted data from the final loaded NSO file.
-
- Mar 20, 2019
-
-
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.
-
- Mar 05, 2019
-
-
Zach Hilman authored
-
- Mar 04, 2019
-
-
Zach Hilman authored
For rom directories (and by extension, XCI/NSP/NAX/NCA) this is for the NSO with name 'main', for regular NSOs, this is the NSO.
-
- Dec 03, 2018
-
-
Lioncash authored
Similar to the NRO changes, we can also pass the process explicitly as a parameter from Load instead of indirecting through the System class.
-
- Oct 29, 2018
-
-
Zach Hilman authored
When enabled in settings, PatchNSO will dump the unmodified NSO that it was passed to a file named <build id>.nso in the dump root for the current title ID.
-
- Oct 15, 2018
- Oct 12, 2018
-
-
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.
-
- Oct 07, 2018
-
-
Zach Hilman authored
-
Zach Hilman authored
Uses -p (--program) and following string as args.
-
Zach Hilman authored
Only added if arguments string is non-empty and a pass is requested by loader.
-
- Oct 02, 2018
-
-
Zach Hilman authored
Avoid resource-heavy classes and remove quasi-duplicated code.
-
- Oct 01, 2018
-
-
Zach Hilman authored
-
Zach Hilman authored
-
- Sep 30, 2018
-
-
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.
-
- Sep 29, 2018
-
-
Lioncash authored
A process should never require being reference counted in this situation. If the handle to a process is freed before this function is called, it's definitely a bug with our lifetime management, so we can put the requirement in place for the API that the process must be a valid instance.
-
- Sep 25, 2018
-
-
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.
-
- Sep 24, 2018
-
-
Lioncash authored
Rather than hard-code the address range to be 36-bit, we can derive the parameters from supplied NPDM metadata if the supplied exectuable supports it. This is the bare minimum necessary for this to be possible. The following commits will rework the memory code further to adjust to this.
-
- Sep 21, 2018
-
-
David authored
* Added support for uncompressed NSOs * Moved compressed section check to NsoHeader
-
- Sep 13, 2018
-
-
Lioncash authored
Previously, these were sitting outside of the Kernel namespace, which doesn't really make sense, given they're related to the Thread class which is within the Kernel namespace.
-
- Aug 31, 2018
-
-
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.
-
- Aug 29, 2018
-
-
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.
-
- Aug 15, 2018
-
-
Lioncash authored
These mappings are leftovers from citra and don't apply to the Switch.
-
- Aug 03, 2018
-
-
Lioncash authored
Using member variables for referencing the segments array increases the size of the class in memory for little benefit. The same behavior can be achieved through the use of accessors that just return the relevant segment.
-
- Jul 20, 2018
- Jul 19, 2018
-
-
Lioncash authored
We should always assume the filesystem is volatile and check each IO operation. While we're at it reorganize checks so that early-out errors are near one another.
-
Lioncash authored
We can just initialize these vectors directly via their constructor.
-
Lioncash authored
-
Zach Hilman authored
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
-
- Jul 17, 2018
-
-
Zach Hilman authored
-
- Jul 13, 2018
-
-
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
-
- Jul 08, 2018
-