2018-05-01 19:21:38 -07:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-05-02 21:16:12 -07:00
|
|
|
#include <atomic>
|
2018-09-17 15:15:09 -07:00
|
|
|
#include <cstddef>
|
2018-05-01 19:21:38 -07:00
|
|
|
#include <memory>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
2019-03-29 14:09:10 -07:00
|
|
|
class GlobalScheduler;
|
2020-01-25 14:55:32 -08:00
|
|
|
class PhysicalCore;
|
2019-04-02 06:22:53 -07:00
|
|
|
} // namespace Kernel
|
2018-05-01 19:21:38 -07:00
|
|
|
|
2019-03-04 13:02:59 -08:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2019-02-14 09:42:58 -08:00
|
|
|
namespace Core::Timing {
|
|
|
|
class CoreTiming;
|
|
|
|
}
|
|
|
|
|
2020-03-31 12:10:44 -07:00
|
|
|
namespace Core::Memory {
|
2019-11-26 14:39:57 -08:00
|
|
|
class Memory;
|
|
|
|
}
|
|
|
|
|
2018-05-01 19:21:38 -07:00
|
|
|
namespace Core {
|
|
|
|
|
2018-05-02 18:26:14 -07:00
|
|
|
constexpr unsigned NUM_CPU_CORES{4};
|
|
|
|
|
2020-01-26 10:07:22 -08:00
|
|
|
class CoreManager {
|
2018-05-01 19:21:38 -07:00
|
|
|
public:
|
2020-01-26 10:07:22 -08:00
|
|
|
CoreManager(System& system, std::size_t core_index);
|
|
|
|
~CoreManager();
|
2018-05-01 19:21:38 -07:00
|
|
|
|
|
|
|
void RunLoop(bool tight_loop = true);
|
|
|
|
|
|
|
|
void SingleStep();
|
|
|
|
|
|
|
|
void PrepareReschedule();
|
|
|
|
|
2018-05-02 18:26:14 -07:00
|
|
|
bool IsMainCore() const {
|
|
|
|
return core_index == 0;
|
|
|
|
}
|
|
|
|
|
2018-09-15 06:21:06 -07:00
|
|
|
std::size_t CoreIndex() const {
|
2018-07-03 06:28:46 -07:00
|
|
|
return core_index;
|
|
|
|
}
|
|
|
|
|
2018-05-01 19:21:38 -07:00
|
|
|
private:
|
|
|
|
void Reschedule();
|
|
|
|
|
2019-03-29 14:09:10 -07:00
|
|
|
Kernel::GlobalScheduler& global_scheduler;
|
2020-01-25 14:55:32 -08:00
|
|
|
Kernel::PhysicalCore& physical_core;
|
2019-02-14 09:42:58 -08:00
|
|
|
Timing::CoreTiming& core_timing;
|
2018-05-01 19:21:38 -07:00
|
|
|
|
2018-08-12 15:51:47 -07:00
|
|
|
std::atomic<bool> reschedule_pending = false;
|
2018-09-15 06:21:06 -07:00
|
|
|
std::size_t core_index;
|
2018-05-01 19:21:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|