2018-05-02 04:21:38 +02: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 06:16:12 +02:00
|
|
|
#include <atomic>
|
2018-09-18 00:15:09 +02:00
|
|
|
#include <cstddef>
|
2018-05-02 04:21:38 +02:00
|
|
|
#include <memory>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
2019-03-29 22:09:10 +01:00
|
|
|
class GlobalScheduler;
|
2020-01-25 23:55:32 +01:00
|
|
|
class PhysicalCore;
|
2019-04-02 15:22:53 +02:00
|
|
|
} // namespace Kernel
|
2018-05-02 04:21:38 +02:00
|
|
|
|
2019-03-04 22:02:59 +01:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2019-02-14 18:42:58 +01:00
|
|
|
namespace Core::Timing {
|
|
|
|
class CoreTiming;
|
|
|
|
}
|
|
|
|
|
2019-11-26 23:39:57 +01:00
|
|
|
namespace Memory {
|
|
|
|
class Memory;
|
|
|
|
}
|
|
|
|
|
2018-05-02 04:21:38 +02:00
|
|
|
namespace Core {
|
|
|
|
|
2018-05-03 03:26:14 +02:00
|
|
|
constexpr unsigned NUM_CPU_CORES{4};
|
|
|
|
|
2020-01-26 19:07:22 +01:00
|
|
|
class CoreManager {
|
2018-05-02 04:21:38 +02:00
|
|
|
public:
|
2020-01-26 19:07:22 +01:00
|
|
|
CoreManager(System& system, std::size_t core_index);
|
|
|
|
~CoreManager();
|
2018-05-02 04:21:38 +02:00
|
|
|
|
|
|
|
void RunLoop(bool tight_loop = true);
|
|
|
|
|
|
|
|
void SingleStep();
|
|
|
|
|
|
|
|
void PrepareReschedule();
|
|
|
|
|
2018-05-03 03:26:14 +02:00
|
|
|
bool IsMainCore() const {
|
|
|
|
return core_index == 0;
|
|
|
|
}
|
|
|
|
|
2018-09-15 15:21:06 +02:00
|
|
|
std::size_t CoreIndex() const {
|
2018-07-03 15:28:46 +02:00
|
|
|
return core_index;
|
|
|
|
}
|
|
|
|
|
2018-05-02 04:21:38 +02:00
|
|
|
private:
|
|
|
|
void Reschedule();
|
|
|
|
|
2019-03-29 22:09:10 +01:00
|
|
|
Kernel::GlobalScheduler& global_scheduler;
|
2020-01-25 23:55:32 +01:00
|
|
|
Kernel::PhysicalCore& physical_core;
|
2019-02-14 18:42:58 +01:00
|
|
|
Timing::CoreTiming& core_timing;
|
2018-05-02 04:21:38 +02:00
|
|
|
|
2018-08-13 00:51:47 +02:00
|
|
|
std::atomic<bool> reschedule_pending = false;
|
2018-09-15 15:21:06 +02:00
|
|
|
std::size_t core_index;
|
2018-05-02 04:21:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|