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