2014-04-08 23:19:26 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-09 21:33:46 +00:00
|
|
|
#include <array>
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/common_types.h"
|
2017-10-10 03:56:20 +00:00
|
|
|
#include "core/hle/kernel/vm_manager.h"
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
/// Generic ARM11 CPU interface
|
2014-04-27 22:29:51 +00:00
|
|
|
class ARM_Interface : NonCopyable {
|
2014-04-05 02:26:06 +00:00
|
|
|
public:
|
2016-09-19 01:01:46 +00:00
|
|
|
virtual ~ARM_Interface() {}
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2016-12-22 05:08:09 +00:00
|
|
|
struct ThreadContext {
|
2018-01-09 21:33:46 +00:00
|
|
|
std::array<u64, 31> cpu_registers;
|
2017-08-29 01:09:42 +00:00
|
|
|
u64 sp;
|
|
|
|
u64 pc;
|
|
|
|
u64 cpsr;
|
2018-01-09 21:33:46 +00:00
|
|
|
std::array<u128, 32> fpu_registers;
|
2017-08-29 01:09:42 +00:00
|
|
|
u64 fpscr;
|
2017-10-10 03:56:20 +00:00
|
|
|
|
2017-09-30 18:16:39 +00:00
|
|
|
// TODO(bunnei): Fix once we have proper support for tpidrro_el0, etc. in the JIT
|
|
|
|
VAddr tls_address;
|
2016-12-22 05:08:09 +00:00
|
|
|
};
|
|
|
|
|
2018-02-14 17:47:48 +00:00
|
|
|
/// Runs the CPU until an event happens
|
|
|
|
virtual void Run() = 0;
|
2014-05-17 15:59:18 +00:00
|
|
|
|
2014-04-05 19:23:59 +00:00
|
|
|
/// Step CPU by one instruction
|
2018-02-14 17:47:48 +00:00
|
|
|
virtual void Step() = 0;
|
2014-05-17 15:59:18 +00:00
|
|
|
|
2018-03-16 22:22:14 +00:00
|
|
|
/// Maps a backing memory region for the CPU
|
2018-01-16 18:05:21 +00:00
|
|
|
virtual void MapBackingMemory(VAddr address, size_t size, u8* memory,
|
2018-03-16 22:22:14 +00:00
|
|
|
Kernel::VMAPermission perms) = 0;
|
|
|
|
|
|
|
|
/// Unmaps a region of memory that was previously mapped using MapBackingMemory
|
|
|
|
virtual void UnmapMemory(VAddr address, size_t size) = 0;
|
2017-10-10 03:56:20 +00:00
|
|
|
|
2016-06-27 18:38:49 +00:00
|
|
|
/// Clear all instruction cache
|
|
|
|
virtual void ClearInstructionCache() = 0;
|
|
|
|
|
2017-09-24 21:44:13 +00:00
|
|
|
/// Notify CPU emulation that page tables have changed
|
|
|
|
virtual void PageTableChanged() = 0;
|
|
|
|
|
2014-04-05 19:23:59 +00:00
|
|
|
/**
|
|
|
|
* Set the Program Counter to an address
|
|
|
|
* @param addr Address to set PC to
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
virtual void SetPC(u64 addr) = 0;
|
2014-04-05 19:23:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the current Program Counter
|
|
|
|
* @return Returns current PC
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
virtual u64 GetPC() const = 0;
|
2014-04-05 19:23:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an ARM register
|
2017-08-29 01:09:42 +00:00
|
|
|
* @param index Register index
|
2014-04-05 19:23:59 +00:00
|
|
|
* @return Returns the value in the register
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
virtual u64 GetReg(int index) const = 0;
|
2014-04-05 19:23:59 +00:00
|
|
|
|
2014-04-10 23:57:56 +00:00
|
|
|
/**
|
|
|
|
* Set an ARM register
|
2017-08-29 01:09:42 +00:00
|
|
|
* @param index Register index
|
2014-04-10 23:57:56 +00:00
|
|
|
* @param value Value to set register to
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
virtual void SetReg(int index, u64 value) = 0;
|
2014-04-10 23:57:56 +00:00
|
|
|
|
2018-01-09 21:33:46 +00:00
|
|
|
virtual u128 GetExtReg(int index) const = 0;
|
2017-10-10 03:56:20 +00:00
|
|
|
|
2018-01-09 21:33:46 +00:00
|
|
|
virtual void SetExtReg(int index, u128 value) = 0;
|
2014-04-10 23:57:56 +00:00
|
|
|
|
2015-08-07 01:24:25 +00:00
|
|
|
/**
|
|
|
|
* Gets the value of a VFP register
|
|
|
|
* @param index Register index (0-31)
|
|
|
|
* @return Returns the value in the register
|
|
|
|
*/
|
|
|
|
virtual u32 GetVFPReg(int index) const = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a VFP register to the given value
|
|
|
|
* @param index Register index (0-31)
|
|
|
|
* @param value Value to set register to
|
|
|
|
*/
|
|
|
|
virtual void SetVFPReg(int index, u32 value) = 0;
|
|
|
|
|
2014-04-05 19:23:59 +00:00
|
|
|
/**
|
|
|
|
* Get the current CPSR register
|
|
|
|
* @return Returns the value of the CPSR register
|
|
|
|
*/
|
2014-11-19 08:49:13 +00:00
|
|
|
virtual u32 GetCPSR() const = 0;
|
2014-04-05 05:23:28 +00:00
|
|
|
|
2014-05-12 02:14:13 +00:00
|
|
|
/**
|
|
|
|
* Set the current CPSR register
|
|
|
|
* @param cpsr Value to set CPSR to
|
|
|
|
*/
|
|
|
|
virtual void SetCPSR(u32 cpsr) = 0;
|
|
|
|
|
2017-09-30 18:16:39 +00:00
|
|
|
virtual VAddr GetTlsAddress() const = 0;
|
|
|
|
|
|
|
|
virtual void SetTlsAddress(VAddr address) = 0;
|
|
|
|
|
2014-05-20 22:50:16 +00:00
|
|
|
/**
|
|
|
|
* Saves the current CPU context
|
|
|
|
* @param ctx Thread context to save
|
|
|
|
*/
|
2016-12-22 05:08:09 +00:00
|
|
|
virtual void SaveContext(ThreadContext& ctx) = 0;
|
2014-05-20 22:50:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a CPU context
|
|
|
|
* @param ctx Thread context to load
|
|
|
|
*/
|
2016-12-22 05:08:09 +00:00
|
|
|
virtual void LoadContext(const ThreadContext& ctx) = 0;
|
2014-05-20 22:50:16 +00:00
|
|
|
|
2018-07-16 10:24:00 +00:00
|
|
|
virtual void ClearExclusiveState() = 0;
|
|
|
|
|
2014-06-02 01:40:10 +00:00
|
|
|
/// Prepare core for thread reschedule (if needed to correctly handle state)
|
|
|
|
virtual void PrepareReschedule() = 0;
|
2014-04-05 02:26:06 +00:00
|
|
|
};
|