summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/physical_core.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: convert miscellaneousLiam2023-03-131-22/+14
|
* kernel: fix compilation with older gccLiam2023-02-061-0/+1
|
* kernel/physical_core: Ensure is_interrupted is always initializedLioncash2022-12-051-1/+1
|
* kernel: unlayer CPU interrupt handlingLiam2022-07-251-10/+7
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* hle: kernel: Use std::mutex instead of spin locks for most kernel locking.bunnei2022-04-121-5/+2
|
* core: Remove unused includesameerj2021-11-041-1/+0
|
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-2/+2
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* Merge pull request #5131 from bunnei/scheduler-rewritebunnei2020-12-211-8/+5
|\ | | | | Rewrite Kernel scheduler based on Atmosphere
| * hle: kernel: Rewrite scheduler implementation based on Mesopshere.bunnei2020-12-061-8/+5
| |
* | Fix "explicitly defaulted but implicitly deleted" warningcomex2020-12-071-1/+1
|/ | | | | | | | | | `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>`.
* core: arm: Implement InvalidateCacheRange for CPU cache invalidation.bunnei2020-11-291-0/+4
|
* hle: kernel: multicore: Replace n-JITs impl. with 4 JITs.bunnei2020-11-291-5/+24
|
* Revert "core: Fix clang build"bunnei2020-10-211-1/+1
|
* core: Fix clang buildLioncash2020-10-181-1/+1
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* Core/Common: Address Feedback.Fernando Sahmkow2020-06-281-5/+2
|
* Clang Format.Fernando Sahmkow2020-06-271-4/+3
|
* General: Move ARM_Interface into Threads.Fernando Sahmkow2020-06-271-30/+7
|
* Core: Refactor ARM Interface.Fernando Sahmkow2020-06-271-6/+8
|
* CPU_Manager: Reconfigre guest threads for dynamrmic downsidesFernando Sahmkow2020-06-271-0/+2
|
* General: Recover Prometheus project from harddrive failure Fernando Sahmkow2020-06-271-0/+21
| | | | | | | This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host Timing, Reworks the Kernel's Scheduler, Introduce Idle State and Suspended State, Recreates the bootmanager, Initializes Multicore system.
* core: Implement separate A32/A64 ARM interfaces.bunnei2020-03-031-1/+5
|
* kernel/physical_core: Make use of std::unique_ptrLioncash2020-01-311-2/+8
| | | | | | | | | | | | | | | | | | shared_ptr was used in 2d1984c20c75e03ec79eeb3806b12efa1679b977 due to a misunderstanding of how the language generates move constructors and move assignment operators. If a destructor is user-provided, then the compiler won't generate the move constructor and move assignment operators by default--they must be explicitly opted into. The reason for the compilation errors is due to the fact that the language will fall back to attempting to use the copy constructor/copy assignment operators if the respective move constructor or move assignment operator is unavailable. Given that we explicitly opt into them now, the the move constructor and move assignment operators will be generated as expected.
* kernel/physical_core: Remove unused kernel reference member variableLioncash2020-01-311-4/+1
| | | | | | | This isn't used within the class, so it can be removed to simplify the overall interface. While we're in the same area, we can simplify a unique_ptr reset() call.
* System: Address FeedbackFernando Sahmkow2020-01-271-3/+9
|
* Core: Refactor CPU Management.Fernando Sahmkow2020-01-251-8/+14
| | | | This commit moves ARM Interface and Scheduler handling into the kernel.
* Kernel: Implement Physical Core.Fernando Sahmkow2020-01-241-0/+62