2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-11-22 06:27:23 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
#include "common/fiber.h"
|
2020-02-25 15:12:46 +00:00
|
|
|
#include "common/microprofile.h"
|
2020-11-21 10:22:03 +00:00
|
|
|
#include "common/scope_exit.h"
|
2020-02-25 02:04:12 +00:00
|
|
|
#include "common/thread.h"
|
2018-11-22 06:27:23 +00:00
|
|
|
#include "core/core.h"
|
2019-09-10 01:37:29 +00:00
|
|
|
#include "core/core_timing.h"
|
2020-01-26 18:07:22 +00:00
|
|
|
#include "core/cpu_manager.h"
|
2022-06-26 22:52:16 +00:00
|
|
|
#include "core/hle/kernel/k_interrupt_manager.h"
|
2020-12-03 02:08:35 +00:00
|
|
|
#include "core/hle/kernel/k_scheduler.h"
|
2020-12-31 07:01:08 +00:00
|
|
|
#include "core/hle/kernel/k_thread.h"
|
2020-02-25 02:04:12 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/kernel/physical_core.h"
|
2020-04-03 15:58:43 +00:00
|
|
|
#include "video_core/gpu.h"
|
2018-11-22 06:27:23 +00:00
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2022-06-13 22:36:30 +00:00
|
|
|
CpuManager::CpuManager(System& system_) : system{system_} {}
|
2020-01-26 18:07:22 +00:00
|
|
|
CpuManager::~CpuManager() = default;
|
2018-11-22 06:27:23 +00:00
|
|
|
|
2021-08-07 05:32:48 +00:00
|
|
|
void CpuManager::ThreadStart(std::stop_token stop_token, CpuManager& cpu_manager,
|
|
|
|
std::size_t core) {
|
2022-06-13 22:36:30 +00:00
|
|
|
cpu_manager.RunThread(core);
|
2020-03-16 01:34:22 +00:00
|
|
|
}
|
|
|
|
|
2020-01-26 18:07:22 +00:00
|
|
|
void CpuManager::Initialize() {
|
2022-06-13 22:36:30 +00:00
|
|
|
num_cores = is_multicore ? Core::Hardware::NUM_CPU_CORES : 1;
|
2022-06-17 03:42:39 +00:00
|
|
|
gpu_barrier = std::make_unique<Common::Barrier>(num_cores + 1);
|
2022-06-13 22:36:30 +00:00
|
|
|
|
|
|
|
for (std::size_t core = 0; core < num_cores; core++) {
|
|
|
|
core_data[core].host_thread = std::jthread(ThreadStart, std::ref(*this), core);
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-26 18:07:22 +00:00
|
|
|
void CpuManager::Shutdown() {
|
2022-06-13 22:36:30 +00:00
|
|
|
for (std::size_t core = 0; core < num_cores; core++) {
|
|
|
|
if (core_data[core].host_thread.joinable()) {
|
|
|
|
core_data[core].host_thread.join();
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::GuestActivateFunction() {
|
2022-07-02 16:33:49 +00:00
|
|
|
if (is_multicore) {
|
2022-06-26 22:52:16 +00:00
|
|
|
MultiCoreGuestActivate();
|
2020-03-09 02:39:41 +00:00
|
|
|
} else {
|
2022-06-26 22:52:16 +00:00
|
|
|
SingleCoreGuestActivate();
|
2020-03-09 02:39:41 +00:00
|
|
|
}
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::GuestThreadFunction() {
|
2022-07-02 16:33:49 +00:00
|
|
|
if (is_multicore) {
|
2022-06-26 22:52:16 +00:00
|
|
|
MultiCoreRunGuestThread();
|
2020-03-09 02:39:41 +00:00
|
|
|
} else {
|
2022-06-26 22:52:16 +00:00
|
|
|
SingleCoreRunGuestThread();
|
2020-03-09 02:39:41 +00:00
|
|
|
}
|
2020-02-27 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::ShutdownThreadFunction() {
|
|
|
|
ShutdownThread();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CpuManager::WaitForAndHandleInterrupt() {
|
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
auto& physical_core = kernel.CurrentPhysicalCore();
|
|
|
|
|
|
|
|
ASSERT(Kernel::GetCurrentThread(kernel).GetDisableDispatchCount() == 1);
|
|
|
|
|
|
|
|
if (!physical_core.IsInterrupted()) {
|
|
|
|
physical_core.Idle();
|
2020-03-09 02:39:41 +00:00
|
|
|
}
|
2022-06-26 22:52:16 +00:00
|
|
|
|
|
|
|
HandleInterrupt();
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::HandleInterrupt() {
|
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
auto core_index = kernel.CurrentPhysicalCoreIndex();
|
|
|
|
|
|
|
|
Kernel::KInterruptManager::HandleInterrupt(kernel, static_cast<s32>(core_index));
|
2020-02-25 02:04:12 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 02:39:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// MultiCore ///
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::MultiCoreGuestActivate() {
|
|
|
|
// Similar to the HorizonKernelMain callback in HOS
|
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
auto* scheduler = kernel.CurrentScheduler();
|
|
|
|
|
|
|
|
scheduler->Activate();
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
2020-03-09 02:39:41 +00:00
|
|
|
void CpuManager::MultiCoreRunGuestThread() {
|
2022-06-26 22:52:16 +00:00
|
|
|
// Similar to UserModeThreadStarter in HOS
|
2020-02-25 02:04:12 +00:00
|
|
|
auto& kernel = system.Kernel();
|
2022-06-26 22:52:16 +00:00
|
|
|
auto* thread = kernel.GetCurrentEmuThread();
|
|
|
|
thread->EnableDispatch();
|
|
|
|
|
2020-03-09 02:39:41 +00:00
|
|
|
MultiCoreRunGuestLoop();
|
2020-02-27 23:12:41 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 02:39:41 +00:00
|
|
|
void CpuManager::MultiCoreRunGuestLoop() {
|
2020-02-27 23:12:41 +00:00
|
|
|
auto& kernel = system.Kernel();
|
2020-11-13 19:11:12 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
while (true) {
|
2020-03-01 16:14:17 +00:00
|
|
|
auto* physical_core = &kernel.CurrentPhysicalCore();
|
|
|
|
while (!physical_core->IsInterrupted()) {
|
2020-11-13 19:11:12 +00:00
|
|
|
physical_core->Run();
|
2020-03-01 16:14:17 +00:00
|
|
|
physical_core = &kernel.CurrentPhysicalCore();
|
2020-02-25 14:43:34 +00:00
|
|
|
}
|
2018-11-22 06:27:23 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
HandleInterrupt();
|
2020-02-25 02:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 02:39:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// SingleCore ///
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::SingleCoreGuestActivate() {}
|
2020-03-09 02:39:41 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::SingleCoreRunGuestThread() {}
|
2020-12-06 08:16:39 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::SingleCoreRunGuestLoop() {}
|
2020-12-06 08:16:39 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
void CpuManager::PreemptSingleCore(bool from_running_enviroment) {}
|
2020-03-09 02:39:41 +00:00
|
|
|
|
2022-06-13 22:36:30 +00:00
|
|
|
void CpuManager::ShutdownThread() {
|
|
|
|
auto& kernel = system.Kernel();
|
2022-06-26 22:52:16 +00:00
|
|
|
auto* thread = kernel.GetCurrentEmuThread();
|
2022-06-13 22:36:30 +00:00
|
|
|
auto core = is_multicore ? kernel.CurrentPhysicalCoreIndex() : 0;
|
2022-05-28 00:44:45 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
Common::Fiber::YieldTo(thread->GetHostContext(), *core_data[core].host_context);
|
2022-06-13 22:36:30 +00:00
|
|
|
UNREACHABLE();
|
2020-03-09 02:39:41 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 22:36:30 +00:00
|
|
|
void CpuManager::RunThread(std::size_t core) {
|
2020-02-25 02:04:12 +00:00
|
|
|
/// Initialization
|
|
|
|
system.RegisterCoreThread(core);
|
2020-03-09 02:39:41 +00:00
|
|
|
std::string name;
|
|
|
|
if (is_multicore) {
|
2020-08-02 17:57:08 +00:00
|
|
|
name = "yuzu:CPUCore_" + std::to_string(core);
|
2020-03-09 02:39:41 +00:00
|
|
|
} else {
|
|
|
|
name = "yuzu:CPUThread";
|
|
|
|
}
|
2020-02-25 15:12:46 +00:00
|
|
|
MicroProfileOnThreadCreate(name.c_str());
|
2020-02-25 02:04:12 +00:00
|
|
|
Common::SetCurrentThreadName(name.c_str());
|
2020-04-05 13:48:53 +00:00
|
|
|
Common::SetCurrentThreadPriority(Common::ThreadPriority::High);
|
2020-02-25 02:04:12 +00:00
|
|
|
auto& data = core_data[core];
|
|
|
|
data.host_context = Common::Fiber::ThreadToFiber();
|
2020-11-21 10:22:03 +00:00
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
SCOPE_EXIT({
|
|
|
|
data.host_context->Exit();
|
|
|
|
MicroProfileOnThreadExit();
|
|
|
|
});
|
|
|
|
|
2022-06-13 22:36:30 +00:00
|
|
|
// Running
|
2022-06-17 03:42:39 +00:00
|
|
|
gpu_barrier->Sync();
|
|
|
|
|
2022-06-13 22:36:30 +00:00
|
|
|
if (!is_async_gpu && !is_multicore) {
|
|
|
|
system.GPU().ObtainContext();
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
2022-06-13 22:36:30 +00:00
|
|
|
|
2022-06-26 22:52:16 +00:00
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
|
|
|
|
auto* main_thread = Kernel::KThread::Create(kernel);
|
|
|
|
main_thread->SetName(fmt::format("MainThread:{}", core));
|
|
|
|
ASSERT(Kernel::KThread::InitializeMainThread(system, main_thread, static_cast<s32>(core))
|
|
|
|
.IsSuccess());
|
|
|
|
|
|
|
|
auto* idle_thread = Kernel::KThread::Create(kernel);
|
|
|
|
ASSERT(Kernel::KThread::InitializeIdleThread(system, idle_thread, static_cast<s32>(core))
|
|
|
|
.IsSuccess());
|
|
|
|
|
|
|
|
kernel.SetCurrentEmuThread(main_thread);
|
|
|
|
kernel.CurrentScheduler()->Initialize(idle_thread);
|
|
|
|
|
|
|
|
Common::Fiber::YieldTo(data.host_context, *main_thread->GetHostContext());
|
2018-11-22 06:27:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|