| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-20 | Merge pull request #5131 from bunnei/scheduler-rewrite | bunnei | |
| Rewrite Kernel scheduler based on Atmosphere | |||
| 2020-12-11 | Merge pull request #5172 from lioncash/svc-wide | bunnei | |
| svc: Remove unnecessary casts | |||
| 2020-12-08 | svc: Remove unnecessary casts | Lioncash | |
| Simplifies and removes some casts. In all cases, these were generally widening from a 32-bit unsigned type to a 64-bit unsigned type, so no information would be lost from the conversion. | |||
| 2020-12-07 | core: Remove unnecessary enum casts in log calls | Lioncash | |
| Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts. | |||
| 2020-12-06 | Merge pull request #5148 from comex/xx-unused-fields | bunnei | |
| core: Mark unused fields as [[maybe_unused]] | |||
| 2020-12-07 | Merge pull request #5136 from lioncash/video-shadow3 | LC | |
| video_core: Resolve more variable shadowing scenarios pt.3 | |||
| 2020-12-06 | Fix "explicitly defaulted but implicitly deleted" warning | comex | |
| `PhysicalCore`'s move assignment operator was declared as `= default`, but was implicitly deleted because `PhysicalCore` has fields of reference type. Switch to explicitly deleting it to avoid a Clang warning. The move *constructor* is still defaulted, and is required to exist due to the use of `std::vector<PhysicalCore>`. | |||
| 2020-12-06 | core: Mark unused fields as [[maybe_unused]] | comex | |
| 2020-12-06 | hle: kernel: Process: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: Thread: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: KScopedSchedulerLockAndSleep: Various style fixes based on code ↵ | bunnei | |
| review feedback. | |||
| 2020-12-06 | hle: kernel: KScopedLock: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: KAbstractSchedulerLock: Various style fixes based on code ↵ | bunnei | |
| review feedback. | |||
| 2020-12-06 | hle: kernel: KScheduler: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: KPriorityQueue: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: KAffinityMask: Various style fixes based on code review feedback. | bunnei | |
| 2020-12-06 | hle: kernel: GlobalSchedulerContext: Various style fixes based on code ↵ | bunnei | |
| review feedback. | |||
| 2020-12-06 | hle: kernel: Use C++ style comments in KScheduler, etc. | bunnei | |
| 2020-12-06 | kernel: KScopedSchedulerLockAndSleep: Remove unused ctor. | bunnei | |
| 2020-12-06 | kernel: time_manager: Add missing lock guards. | bunnei | |
| 2020-12-06 | hle: kernel: Migrate to KScopedSchedulerLock. | bunnei | |
| 2020-12-06 | hle: kernel: Separate KScopedSchedulerLockAndSleep from k_scheduler. | bunnei | |
| 2020-12-06 | hle: kernel: Separate KScheduler from GlobalSchedulerContext class. | bunnei | |
| 2020-12-06 | hle: kernel: Rewrite scheduler implementation based on Mesopshere. | bunnei | |
| 2020-12-06 | hle: kernel: physical_core: Clear exclusive state after each run. | bunnei | |
| - This is closer to pre-multicore behavior, and works a bit better. | |||
| 2020-12-06 | hle: kernel: Port KAbstractSchedulerLock from Mesosphere. | bunnei | |
| 2020-12-06 | hle: kernel: svc: Remove reschedule on svcBreak. | bunnei | |
| - This breaks things, and is unnecessary, since emulation will be done at this point. | |||
| 2020-12-06 | hle: kernel: process: Add schedule count tracking, to be used for yield impl. | bunnei | |
| 2020-12-06 | hle: kernel: svc: Remove unnecessary hack in svcSleep. | bunnei | |
| 2020-12-06 | common: Port KPriorityQueue from Mesosphere. | bunnei | |
| 2020-12-06 | hle: kernel: Port KAffinityMask from Mesosphere. | bunnei | |
| 2020-12-05 | video_core: Resolve more variable shadowing scenarios pt.3 | Lioncash | |
| Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors. | |||
| 2020-11-29 | kernel: scheduler: Minor cleanup to remove duplicated code. | bunnei | |
| 2020-11-29 | kernel: time_manager: Protect access with a mutex. | bunnei | |
| 2020-11-29 | hle: kernel: thread: Remove unused "Running" state. | bunnei | |
| 2020-11-29 | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. | bunnei | |
| 2020-11-29 | hle: kernel: time_manager: Avoid a crash on process exit. | bunnei | |
| 2020-11-29 | hle: kernel: AddressArbiter: Remove unused code. | bunnei | |
| 2020-11-29 | hle: kernel: SynchronizationObject: Use atomic_bool for is_signaled. | bunnei | |
| 2020-11-29 | common: fiber: Use boost::context instead of native fibers on Windows. | bunnei | |
| 2020-11-29 | hle: kernel: multicore: Replace n-JITs impl. with 4 JITs. | bunnei | |
| 2020-11-23 | svc: Remove unnecessary [[maybe_unused]] tag | Lioncash | |
| The parameter is used in this function, so this suppression isn't necessary. | |||
| 2020-11-08 | ipc_helpers: Remove usage of the global system instance | Lioncash | |
| Resolves numerous deprecation warnings throughout the codebase due to inclusion of this header. Now building core should be significantly less noisy (and also relying on less global state). This also uncovered quite a few modules that were relying on indirect includes, which have also been fixed. | |||
| 2020-11-03 | core: Remove usage of unicorn | Lioncash | |
| Unicorn long-since lost most of its use, due to dynarmic gaining support for handling most instructions. At this point any further issues encountered should be used to make dynarmic better. This also allows us to remove our dependency on Python. | |||
| 2020-10-29 | kernel/process: Add missing <ctime> include | Morph | |
| Fixes compilation on MSVC | |||
| 2020-10-28 | Merge pull request #4835 from lat9nq/rng-default-time | bunnei | |
| kernel: Use the current time as the default RNG seed | |||
| 2020-10-27 | hle/kernel: Remove unused registered_core_threads to fix data races | ReinUsesLisp | |
| This member was only used on asserts and it triggered data races. Remove it to fix them. | |||
| 2020-10-26 | kernel: Use the current time as the default RNG seed | lat9nq | |
| Use the current time, not zero, as the default RNG seed. | |||
| 2020-10-20 | Revert "core: Fix clang build" | bunnei | |
| 2020-10-20 | kernel: Fix build with recent compiler flag changes | Lioncash | |
| This slipped through the cracks due to another change being merged before the compiler flag changes. | |||
