- Apr 15, 2019
-
-
Lioncash authored
This is a holdover from Citra that currently remains unused, so it can be removed from the Thread interface.
-
- Apr 02, 2019
-
-
Lioncash authored
Similarly like svcGetProcessList, this retrieves the list of threads from the current process. In the kernel itself, a process instance maintains a list of threads, which are used within this function. Threads are registered to a process' thread list at thread initialization, and unregistered from the list upon thread destruction (if said thread has a non-null owning process). We assert on the debug event case, as we currently don't implement kernel debug objects.
-
- Apr 01, 2019
-
-
Lioncash authored
Now that ShouldWait() is a const qualified member function, this one can be made const qualified as well, since it can handle passing a const qualified this pointer to ShouldWait().
-
Lioncash authored
Given this is intended as a querying function, it doesn't make sense to allow the implementer to modify the state of the given thread.
-
Lioncash authored
Previously this was performing a u64 + int sign conversion. When dealing with addresses, we should generally be keeping the arithmetic in the same signedness type. This also gets rid of the static lifetime of the constant, as there's no need to make a trivial type like this potentially live for the entire duration of the program.
-
Lioncash authored
The pointed to member is never actually modified, so it can be made const.
-
- Mar 30, 2019
-
- Mar 20, 2019
-
-
Fernando Sahmkow authored
-
Fernando Sahmkow authored
-
- Mar 16, 2019
-
-
Lioncash authored
Rather than make a global accessor for this sort of thing. We can make it a part of the thread interface itself. This allows getting rid of a hidden global accessor in the kernel code.
-
Lioncash authored
Aims to disambiguate why each priority instance exists a little bit. While we're at it, also add an explanatory comment to UpdatePriority().
-
Lioncash authored
-
Lioncash authored
This condition was checking against the nominal thread priority, whereas the kernel itself checks against the current priority instead. We were also assigning the nominal priority, when we should be assigning current_priority, which takes priority inheritance into account. This can lead to the incorrect priority being assigned to a thread. Given we recursively update the relevant threads, we don't need to go through the whole mutex waiter list. This matches what the kernel does as well (only accessing the first entry within the waiting list).
-
Lioncash authored
The kernel keeps the internal waiting list ordered by priority. This is trivial to do with std::find_if followed by an insertion.
- Mar 05, 2019
-
-
Lioncash authored
This is a TODO carried over from Citra that doesn't apply here.
-
- Feb 16, 2019
-
-
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.
-
- Feb 12, 2019
-
-
Lioncash authored
Places all of the timing-related functionality under the existing Core namespace to keep things consistent, rather than having the timing utilities sitting in its own completely separate namespace.
-
- Dec 28, 2018
-
-
Lioncash authored
This function isn't a general purpose function that should be exposed to everything, given it's specific to initializing the main thread for a Process instance. Given that, it's a tad bit more sensible to place this within process.cpp, which keeps it visible only to the code that actually needs it.
-
- Dec 19, 2018
-
-
David Marcec authored
-
- Dec 18, 2018
-
-
MerryMage authored
-
- Dec 04, 2018
-
-
Luke Street authored
-
- Dec 03, 2018
-
-
David Marcec authored
Added to both dynarmic and unicorn
-
David Marcec authored
When we get an svcBreak we get a backtrace now
-
- Nov 22, 2018
-
-
Zach Hilman authored
-
- Nov 19, 2018
-
-
Zach Hilman authored
-
- Nov 14, 2018
-
-
Lioncash authored
The code in both places was the same verbatim, so we can extract it to a function to deduplicate the logic.
-
- Oct 30, 2018
-
-
Frederic L authored
* get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
-
- Oct 20, 2018
-
-
Lioncash authored
In the kernel, there isn't a singular handle table that everything gets tossed into or used, rather, each process gets its own handle table that it uses. This currently isn't an issue for us, since we only execute one process at the moment, but we may as well get this out of the way so it's not a headache later on.
-
- Oct 15, 2018
-
-
Lioncash authored
-
- Oct 12, 2018
-
-
Lioncash authored
Regular value initialization is adequate here for zeroing out data. It also has the benefit of not invoking undefined behavior if a non-trivial type is ever added to the struct for whatever reason.
-
- Oct 10, 2018
-
-
Lioncash authored
There's no real need to use a shared pointer in these cases, and only makes object management more fragile in terms of how easy it would be to introduce cycles. Instead, just do the simple thing of using a regular pointer. Much of this is just a hold-over from citra anyways. It also doesn't make sense from a behavioral point of view for a process' thread to prolong the lifetime of the process itself (the process is supposed to own the thread, not the other way around).
-
- Oct 05, 2018
-
-
balika011 authored
Conceptually, it doesn't make sense for a thread to be able to persist the lifetime of a scheduler. A scheduler should be taking care of the threads; the threads should not be taking care of the scheduler. If the threads outlive the scheduler (or we simply don't actually terminate/shutdown the threads), then it should be considered a bug that we need to fix. Attributing this to balika011, as they opened #1317 to attempt to fix this in a similar way, but my refactoring of the kernel code caused quite a few conflicts.
-
- Oct 04, 2018
-
-
Lioncash authored
Many of the member variables of the thread class aren't even used outside of the class itself, so there's no need to make those variables public. This change follows in the steps of the previous changes that made other kernel types' members private. The main motivation behind this is that the Thread class will likely change in the future as emulation becomes more accurate, and letting random bits of the emulator access data members of the Thread class directly makes it a pain to shuffle around and/or modify internals. Having all data members public like this also makes it difficult to reason about certain bits of behavior without first verifying what parts of the core actually use them. Everything being public also generally follows the tendency for changes to be introduced in completely different translation units that would otherwise be better introduced as an addition to the Thread class' public interface.
-
- 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 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 21, 2018
-
-
Lioncash authored
Allows making several members of the process class private, it also avoids going through Core::CurrentProcess() just to retrieve the owning process.
-
Lioncash authored
The owning process of a thread is required to exist before the thread, so we can enforce this API-wise by using a reference. We can also avoid the reliance on the system instance by using that parameter to access the page table that needs to be set.
-
- Sep 18, 2018
-
-
Lioncash authored
This modifies the CPU interface to more accurately match an AArch64-supporting CPU as opposed to an ARM11 one. Two of the methods don't even make sense to keep around for this interface, as Adv Simd is used, rather than the VFP in the primary execution state. This is essentially a modernization change that should have occurred from the get-go.
-
- Sep 15, 2018
-
-
fearlessTobi authored
-