2018-05-02 02:21:38 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-05-03 01:26:14 +00:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#ifdef ARCHITECTURE_x86_64
|
|
|
|
#include "core/arm/dynarmic/arm_dynarmic.h"
|
|
|
|
#endif
|
2018-09-17 22:15:09 +00:00
|
|
|
#include "core/arm/exclusive_monitor.h"
|
2018-05-02 02:21:38 +00:00
|
|
|
#include "core/arm/unicorn/arm_unicorn.h"
|
|
|
|
#include "core/core_cpu.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/hle/kernel/scheduler.h"
|
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-08-12 22:50:44 +00:00
|
|
|
#include "core/hle/lock.h"
|
2018-05-02 02:21:38 +00:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2018-05-03 04:16:12 +00:00
|
|
|
void CpuBarrier::NotifyEnd() {
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
end = true;
|
|
|
|
condition.notify_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CpuBarrier::Rendezvous() {
|
2018-05-03 04:34:54 +00:00
|
|
|
if (!Settings::values.use_multi_core) {
|
|
|
|
// Meaningless when running in single-core mode
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!end) {
|
2018-05-03 04:16:12 +00:00
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
|
|
|
|
--cores_waiting;
|
|
|
|
if (!cores_waiting) {
|
|
|
|
cores_waiting = NUM_CPU_CORES;
|
|
|
|
condition.notify_all();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
condition.wait(lock);
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-03 04:34:54 +00:00
|
|
|
|
|
|
|
return false;
|
2018-05-03 04:16:12 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 13:28:46 +00:00
|
|
|
Cpu::Cpu(std::shared_ptr<ExclusiveMonitor> exclusive_monitor,
|
2018-09-15 13:21:06 +00:00
|
|
|
std::shared_ptr<CpuBarrier> cpu_barrier, std::size_t core_index)
|
2018-05-03 01:26:14 +00:00
|
|
|
: cpu_barrier{std::move(cpu_barrier)}, core_index{core_index} {
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
if (Settings::values.use_cpu_jit) {
|
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2018-07-03 13:28:46 +00:00
|
|
|
arm_interface = std::make_shared<ARM_Dynarmic>(exclusive_monitor, core_index);
|
2018-05-02 02:21:38 +00:00
|
|
|
#else
|
2018-07-03 13:28:46 +00:00
|
|
|
arm_interface = std::make_shared<ARM_Unicorn>();
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available");
|
2018-05-02 02:21:38 +00:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
arm_interface = std::make_shared<ARM_Unicorn>();
|
|
|
|
}
|
|
|
|
|
2018-09-25 20:00:14 +00:00
|
|
|
scheduler = std::make_shared<Kernel::Scheduler>(*arm_interface);
|
2018-05-02 02:21:38 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 22:15:09 +00:00
|
|
|
Cpu::~Cpu() = default;
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::shared_ptr<ExclusiveMonitor> Cpu::MakeExclusiveMonitor(std::size_t num_cores) {
|
2018-07-03 13:28:46 +00:00
|
|
|
if (Settings::values.use_cpu_jit) {
|
|
|
|
#ifdef ARCHITECTURE_x86_64
|
|
|
|
return std::make_shared<DynarmicExclusiveMonitor>(num_cores);
|
|
|
|
#else
|
|
|
|
return nullptr; // TODO(merry): Passthrough exclusive monitor
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
return nullptr; // TODO(merry): Passthrough exclusive monitor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
void Cpu::RunLoop(bool tight_loop) {
|
2018-05-03 01:26:14 +00:00
|
|
|
// Wait for all other CPU cores to complete the previous slice, such that they run in lock-step
|
2018-05-03 04:16:12 +00:00
|
|
|
if (!cpu_barrier->Rendezvous()) {
|
|
|
|
// If rendezvous failed, session has been killed
|
|
|
|
return;
|
|
|
|
}
|
2018-05-03 01:26:14 +00:00
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
|
|
|
// instead advance to the next event and try to yield to the next thread
|
|
|
|
if (Kernel::GetCurrentThread() == nullptr) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_TRACE(Core, "Core-{} idling", core_index);
|
2018-05-03 01:26:14 +00:00
|
|
|
|
|
|
|
if (IsMainCore()) {
|
2018-08-13 01:41:28 +00:00
|
|
|
// TODO(Subv): Only let CoreTiming idle if all 4 cores are idling.
|
2018-05-03 01:26:14 +00:00
|
|
|
CoreTiming::Idle();
|
|
|
|
CoreTiming::Advance();
|
|
|
|
}
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
PrepareReschedule();
|
|
|
|
} else {
|
2018-05-03 01:26:14 +00:00
|
|
|
if (IsMainCore()) {
|
|
|
|
CoreTiming::Advance();
|
|
|
|
}
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
if (tight_loop) {
|
|
|
|
arm_interface->Run();
|
|
|
|
} else {
|
|
|
|
arm_interface->Step();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Reschedule();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cpu::SingleStep() {
|
|
|
|
return RunLoop(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cpu::PrepareReschedule() {
|
|
|
|
arm_interface->PrepareReschedule();
|
|
|
|
reschedule_pending = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cpu::Reschedule() {
|
|
|
|
if (!reschedule_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reschedule_pending = false;
|
2018-08-12 22:50:44 +00:00
|
|
|
// Lock the global kernel mutex when we manipulate the HLE state
|
|
|
|
std::lock_guard<std::recursive_mutex> lock(HLE::g_hle_lock);
|
2018-05-02 02:21:38 +00:00
|
|
|
scheduler->Reschedule();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|