2014-04-09 02:38:33 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 04:26:06 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "common/common.h"
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "core/arm/arm_interface.h"
|
2014-09-11 03:27:14 +02:00
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
|
|
|
#include "core/arm/skyeye_common/armemu.h"
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-09-13 00:34:51 +02:00
|
|
|
class ARM_Interpreter final : virtual public ARM_Interface {
|
2014-04-05 04:26:06 +02:00
|
|
|
public:
|
2014-04-11 01:55:59 +02:00
|
|
|
|
2014-04-05 04:26:06 +02:00
|
|
|
ARM_Interpreter();
|
|
|
|
~ARM_Interpreter();
|
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
/**
|
|
|
|
* Set the Program Counter to an address
|
|
|
|
* @param addr Address to set PC to
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void SetPC(u32 pc) override;
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
/*
|
|
|
|
* Get the current Program Counter
|
|
|
|
* @return Returns current PC
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
u32 GetPC() const override;
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
/**
|
|
|
|
* Get an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @return Returns the value in the register
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
u32 GetReg(int index) const override;
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
/**
|
|
|
|
* Set an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @param value Value to set register to
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void SetReg(int index, u32 value) override;
|
2014-04-11 01:55:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current CPSR register
|
|
|
|
* @return Returns the value of the CPSR register
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
u32 GetCPSR() const override;
|
2014-04-05 04:26:06 +02:00
|
|
|
|
2014-05-12 04:14:13 +02:00
|
|
|
/**
|
|
|
|
* Set the current CPSR register
|
|
|
|
* @param cpsr Value to set CPSR to
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void SetCPSR(u32 cpsr) override;
|
2014-05-12 04:14:13 +02:00
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
/**
|
|
|
|
* Returns the number of clock ticks since the last reset
|
|
|
|
* @return Returns number of clock ticks
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
u64 GetTicks() const override;
|
2014-04-05 21:23:59 +02:00
|
|
|
|
2014-05-21 00:50:16 +02:00
|
|
|
/**
|
|
|
|
* Saves the current CPU context
|
|
|
|
* @param ctx Thread context to save
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void SaveContext(ThreadContext& ctx) override;
|
2014-05-21 00:50:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a CPU context
|
|
|
|
* @param ctx Thread context to load
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void LoadContext(const ThreadContext& ctx) override;
|
2014-05-21 00:50:16 +02:00
|
|
|
|
2014-06-02 03:40:10 +02:00
|
|
|
/// Prepare core for thread reschedule (if needed to correctly handle state)
|
2014-10-26 05:56:13 +01:00
|
|
|
void PrepareReschedule() override;
|
2014-06-02 03:40:10 +02:00
|
|
|
|
2014-04-11 01:55:59 +02:00
|
|
|
protected:
|
|
|
|
|
2014-05-17 17:59:18 +02:00
|
|
|
/**
|
|
|
|
* Executes the given number of instructions
|
|
|
|
* @param num_instructions Number of instructions to executes
|
|
|
|
*/
|
2014-10-26 05:56:13 +01:00
|
|
|
void ExecuteInstructions(int num_instructions) override;
|
2014-04-11 01:55:59 +02:00
|
|
|
|
2014-04-05 04:26:06 +02:00
|
|
|
private:
|
2014-04-11 01:55:59 +02:00
|
|
|
|
2014-05-21 00:52:54 +02:00
|
|
|
ARMul_State* state;
|
2014-04-05 21:23:59 +02:00
|
|
|
|
2014-04-05 04:26:06 +02:00
|
|
|
};
|