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