yuzu/src/core/hle/kernel/physical_core.h

92 lines
1.8 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-01-24 20:38:20 +01:00
#pragma once
2020-01-26 21:14:18 +01:00
#include <cstddef>
#include <memory>
#include <mutex>
2020-01-26 21:14:18 +01:00
#include "core/arm/arm_interface.h"
2020-01-24 20:38:20 +01:00
namespace Kernel {
class KScheduler;
2020-01-24 20:38:20 +01:00
} // namespace Kernel
namespace Core {
2020-01-24 20:38:20 +01:00
class ExclusiveMonitor;
class System;
} // namespace Core
2020-01-24 20:38:20 +01:00
namespace Kernel {
class PhysicalCore {
public:
2022-07-08 02:06:46 +02:00
PhysicalCore(std::size_t core_index_, Core::System& system_, KScheduler& scheduler_);
2020-01-26 21:14:18 +01:00
~PhysicalCore();
2020-01-24 20:38:20 +01:00
2022-07-08 02:06:46 +02:00
YUZU_NON_COPYABLE(PhysicalCore);
YUZU_NON_MOVEABLE(PhysicalCore);
/// Initialize the core for the specified parameters.
void Initialize(bool is_64_bit);
/// Execute current jit state
void Run();
void Idle();
/// Interrupt this physical core.
void Interrupt();
/// Clear this core's interrupt
void ClearInterrupt();
/// Check if this core is interrupted
2020-06-28 00:20:06 +02:00
bool IsInterrupted() const;
bool IsInitialized() const {
return arm_interface != nullptr;
}
Core::ARM_Interface& ArmInterface() {
return *arm_interface;
}
const Core::ARM_Interface& ArmInterface() const {
return *arm_interface;
}
2020-01-24 20:38:20 +01:00
bool IsMainCore() const {
return core_index == 0;
}
bool IsSystemCore() const {
return core_index == 3;
}
std::size_t CoreIndex() const {
return core_index;
}
Kernel::KScheduler& Scheduler() {
return scheduler;
2020-01-24 20:38:20 +01:00
}
const Kernel::KScheduler& Scheduler() const {
return scheduler;
2020-01-24 20:38:20 +01:00
}
private:
const std::size_t core_index;
Core::System& system;
Kernel::KScheduler& scheduler;
2022-07-08 02:06:46 +02:00
std::mutex guard;
std::condition_variable on_interrupt;
std::unique_ptr<Core::ARM_Interface> arm_interface;
bool is_interrupted{};
};
2020-01-24 20:38:20 +01:00
} // namespace Kernel