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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-05-03 01:26:14 +00:00
|
|
|
#include <condition_variable>
|
2018-05-02 02:21:38 +00:00
|
|
|
#include <memory>
|
2018-05-03 01:26:14 +00:00
|
|
|
#include <mutex>
|
2018-05-02 02:21:38 +00:00
|
|
|
#include <string>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
class ARM_Interface;
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
class Scheduler;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2018-05-03 01:26:14 +00:00
|
|
|
constexpr unsigned NUM_CPU_CORES{4};
|
|
|
|
|
|
|
|
class CpuBarrier {
|
|
|
|
public:
|
|
|
|
void Rendezvous() {
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
|
|
|
|
--cores_waiting;
|
|
|
|
if (!cores_waiting) {
|
|
|
|
cores_waiting = NUM_CPU_CORES;
|
|
|
|
condition.notify_all();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
condition.wait(lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned cores_waiting{NUM_CPU_CORES};
|
|
|
|
std::mutex mutex;
|
|
|
|
std::condition_variable condition;
|
|
|
|
};
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
class Cpu {
|
|
|
|
public:
|
2018-05-03 01:26:14 +00:00
|
|
|
Cpu(std::shared_ptr<CpuBarrier> cpu_barrier, size_t core_index);
|
2018-05-02 02:21:38 +00:00
|
|
|
|
|
|
|
void RunLoop(bool tight_loop = true);
|
|
|
|
|
|
|
|
void SingleStep();
|
|
|
|
|
|
|
|
void PrepareReschedule();
|
|
|
|
|
2018-05-03 02:36:51 +00:00
|
|
|
ARM_Interface& ArmInterface() {
|
2018-05-02 02:21:38 +00:00
|
|
|
return *arm_interface;
|
|
|
|
}
|
|
|
|
|
2018-05-03 02:36:51 +00:00
|
|
|
const ARM_Interface& ArmInterface() const {
|
|
|
|
return *arm_interface;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::shared_ptr<Kernel::Scheduler>& Scheduler() const {
|
|
|
|
return scheduler;
|
2018-05-02 02:21:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 01:26:14 +00:00
|
|
|
bool IsMainCore() const {
|
|
|
|
return core_index == 0;
|
|
|
|
}
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
private:
|
|
|
|
void Reschedule();
|
|
|
|
|
|
|
|
std::shared_ptr<ARM_Interface> arm_interface;
|
2018-05-03 01:26:14 +00:00
|
|
|
std::shared_ptr<CpuBarrier> cpu_barrier;
|
2018-05-03 02:36:51 +00:00
|
|
|
std::shared_ptr<Kernel::Scheduler> scheduler;
|
2018-05-02 02:21:38 +00:00
|
|
|
|
|
|
|
bool reschedule_pending{};
|
2018-05-03 01:26:14 +00:00
|
|
|
size_t core_index;
|
2018-05-02 02:21:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|