mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-02 13:02:44 +01:00
1648d189d3
Co-authored-by: palfaiate <syl.paulo.alfaiate@gmail.com> Co-authored-by: SylverDiscord51 <p71468162@gmail.com> Co-committed-by: SylverDiscord51 <p71468162@gmail.com>
113 lines
3.4 KiB
C++
113 lines
3.4 KiB
C++
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <span>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common/common_funcs.h"
|
|
#include "common/common_types.h"
|
|
#include "core/hardware_properties.h"
|
|
|
|
#include "core/hle/kernel/svc_types.h"
|
|
|
|
namespace Common {
|
|
struct PageTable;
|
|
}
|
|
|
|
namespace Kernel {
|
|
enum class DebugWatchpointType : u8;
|
|
struct DebugWatchpoint;
|
|
class KThread;
|
|
class KProcess;
|
|
} // namespace Kernel
|
|
|
|
namespace Core {
|
|
using WatchpointArray = std::array<Kernel::DebugWatchpoint, Core::Hardware::NUM_WATCHPOINTS>;
|
|
|
|
// NOTE: these values match the HaltReason enum in Dynarmic
|
|
enum class HaltReason : u64 {
|
|
StepThread = 0x00000001,
|
|
DataAbort = 0x00000004,
|
|
BreakLoop = 0x02000000,
|
|
SupervisorCall = 0x04000000,
|
|
InstructionBreakpoint = 0x08000000,
|
|
PrefetchAbort = 0x20000000,
|
|
};
|
|
DECLARE_ENUM_FLAG_OPERATORS(HaltReason);
|
|
|
|
enum class Architecture {
|
|
AArch64,
|
|
AArch32,
|
|
};
|
|
|
|
/// Generic ARMv8 CPU interface
|
|
class ArmInterface {
|
|
public:
|
|
SUYU_NON_COPYABLE(ArmInterface);
|
|
SUYU_NON_MOVEABLE(ArmInterface);
|
|
|
|
explicit ArmInterface(bool uses_wall_clock) : m_uses_wall_clock{uses_wall_clock} {}
|
|
virtual ~ArmInterface() = default;
|
|
|
|
// Perform any backend-specific initialization.
|
|
virtual void Initialize() {}
|
|
|
|
// Runs the CPU until an event happens.
|
|
virtual HaltReason RunThread(Kernel::KThread* thread) = 0;
|
|
|
|
// Runs the CPU for one instruction or until an event happens.
|
|
virtual HaltReason StepThread(Kernel::KThread* thread) = 0;
|
|
|
|
// Admits a backend-specific mechanism to lock the thread context.
|
|
virtual void LockThread(Kernel::KThread* thread) {}
|
|
virtual void UnlockThread(Kernel::KThread* thread) {}
|
|
|
|
// Clear the entire instruction cache for this CPU.
|
|
virtual void ClearInstructionCache() = 0;
|
|
|
|
// Clear a range of the instruction cache for this CPU.
|
|
virtual void InvalidateCacheRange(u64 addr, std::size_t size) = 0;
|
|
|
|
// Get the current architecture.
|
|
// This returns AArch64 when PSTATE.nRW == 0 and AArch32 when PSTATE.nRW == 1.
|
|
virtual Architecture GetArchitecture() const = 0;
|
|
|
|
// Context accessors.
|
|
// These should not be called if the CPU is running.
|
|
virtual void GetContext(Kernel::Svc::ThreadContext& ctx) const = 0;
|
|
virtual void SetContext(const Kernel::Svc::ThreadContext& ctx) = 0;
|
|
virtual void SetTpidrroEl0(u64 value) = 0;
|
|
|
|
virtual void GetSvcArguments(std::span<uint64_t, 8> args) const = 0;
|
|
virtual void SetSvcArguments(std::span<const uint64_t, 8> args) = 0;
|
|
virtual u32 GetSvcNumber() const = 0;
|
|
|
|
void SetWatchpointArray(const WatchpointArray* watchpoints) {
|
|
m_watchpoints = watchpoints;
|
|
}
|
|
|
|
// Signal an interrupt for execution to halt as soon as possible.
|
|
// It is safe to call this if the CPU is not running.
|
|
virtual void SignalInterrupt(Kernel::KThread* thread) = 0;
|
|
|
|
// Stack trace generation.
|
|
void LogBacktrace(Kernel::KProcess* process) const;
|
|
|
|
// Debug functionality.
|
|
virtual const Kernel::DebugWatchpoint* HaltedWatchpoint() const = 0;
|
|
virtual void RewindBreakpointInstruction() = 0;
|
|
|
|
protected:
|
|
const Kernel::DebugWatchpoint* MatchingWatchpoint(
|
|
u64 addr, u64 size, Kernel::DebugWatchpointType access_type) const;
|
|
|
|
protected:
|
|
const WatchpointArray* m_watchpoints{};
|
|
bool m_uses_wall_clock{};
|
|
};
|
|
|
|
} // namespace Core
|