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 04:16:12 +00:00
|
|
|
#include <atomic>
|
2018-05-03 01:26:14 +00:00
|
|
|
#include <condition_variable>
|
2018-09-17 22:15:09 +00:00
|
|
|
#include <cstddef>
|
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 "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
class Scheduler;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2018-08-25 01:43:32 +00:00
|
|
|
class ARM_Interface;
|
2018-09-17 22:15:09 +00:00
|
|
|
class ExclusiveMonitor;
|
2018-08-25 01:43:32 +00:00
|
|
|
|
2018-05-03 01:26:14 +00:00
|
|
|
constexpr unsigned NUM_CPU_CORES{4};
|
|
|
|
|
|
|
|
class CpuBarrier {
|
|
|
|
public:
|
2018-05-03 04:16:12 +00:00
|
|
|
bool IsAlive() const {
|
|
|
|
return !end;
|
|
|
|
}
|
2018-05-03 01:26:14 +00:00
|
|
|
|
2018-05-03 04:16:12 +00:00
|
|
|
void NotifyEnd();
|
2018-05-03 01:26:14 +00:00
|
|
|
|
2018-05-03 04:16:12 +00:00
|
|
|
bool Rendezvous();
|
2018-05-03 01:26:14 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned cores_waiting{NUM_CPU_CORES};
|
|
|
|
std::mutex mutex;
|
|
|
|
std::condition_variable condition;
|
2018-05-03 04:16:12 +00:00
|
|
|
std::atomic<bool> end{};
|
2018-05-03 01:26:14 +00:00
|
|
|
};
|
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
class Cpu {
|
|
|
|
public:
|
2018-10-15 12:53:01 +00:00
|
|
|
Cpu(ExclusiveMonitor& exclusive_monitor, CpuBarrier& cpu_barrier, std::size_t core_index);
|
2018-09-17 22:15:09 +00:00
|
|
|
~Cpu();
|
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;
|
|
|
|
}
|
|
|
|
|
2018-10-15 13:25:11 +00:00
|
|
|
Kernel::Scheduler& Scheduler() {
|
|
|
|
return *scheduler;
|
|
|
|
}
|
|
|
|
|
|
|
|
const 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-09-15 13:21:06 +00:00
|
|
|
std::size_t CoreIndex() const {
|
2018-07-03 13:28:46 +00:00
|
|
|
return core_index;
|
|
|
|
}
|
|
|
|
|
2018-10-15 12:53:01 +00:00
|
|
|
static std::unique_ptr<ExclusiveMonitor> MakeExclusiveMonitor(std::size_t num_cores);
|
2018-07-03 13:28:46 +00:00
|
|
|
|
2018-05-02 02:21:38 +00:00
|
|
|
private:
|
|
|
|
void Reschedule();
|
|
|
|
|
2018-09-25 20:04:53 +00:00
|
|
|
std::unique_ptr<ARM_Interface> arm_interface;
|
2018-10-15 12:42:06 +00:00
|
|
|
CpuBarrier& cpu_barrier;
|
2018-10-15 13:25:11 +00:00
|
|
|
std::unique_ptr<Kernel::Scheduler> scheduler;
|
2018-05-02 02:21:38 +00:00
|
|
|
|
2018-08-12 22:51:47 +00:00
|
|
|
std::atomic<bool> reschedule_pending = false;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t core_index;
|
2018-05-02 02:21:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|