2014-09-12 22:34:51 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/arm/arm_interface.h"
|
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
|
|
|
|
|
|
|
class ARM_DynCom final : virtual public ARM_Interface {
|
|
|
|
public:
|
|
|
|
|
|
|
|
ARM_DynCom();
|
|
|
|
~ARM_DynCom();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Program Counter to an address
|
2014-11-18 13:31:24 +00:00
|
|
|
* @param pc Address to set PC to
|
2014-09-12 22:34:51 +00:00
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void SetPC(u32 pc) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the current Program Counter
|
|
|
|
* @return Returns current PC
|
|
|
|
*/
|
|
|
|
u32 GetPC() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @return Returns the value in the register
|
|
|
|
*/
|
|
|
|
u32 GetReg(int index) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @param value Value to set register to
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void SetReg(int index, u32 value) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current CPSR register
|
|
|
|
* @return Returns the value of the CPSR register
|
|
|
|
*/
|
|
|
|
u32 GetCPSR() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current CPSR register
|
|
|
|
* @param cpsr Value to set CPSR to
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void SetCPSR(u32 cpsr) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of clock ticks since the last reset
|
|
|
|
* @return Returns number of clock ticks
|
|
|
|
*/
|
|
|
|
u64 GetTicks() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves the current CPU context
|
|
|
|
* @param ctx Thread context to save
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void SaveContext(ThreadContext& ctx) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a CPU context
|
|
|
|
* @param ctx Thread context to load
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void LoadContext(const ThreadContext& ctx) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/// Prepare core for thread reschedule (if needed to correctly handle state)
|
2014-10-26 04:56:13 +00:00
|
|
|
void PrepareReschedule() override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes the given number of instructions
|
|
|
|
* @param num_instructions Number of instructions to executes
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void ExecuteInstructions(int num_instructions) override;
|
2014-09-12 22:34:51 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::unique_ptr<ARMul_State> state;
|
|
|
|
u64 ticks;
|
|
|
|
|
|
|
|
};
|