2014-04-09 00:38:33 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-05-16 04:51:45 +00:00
|
|
|
#include "core/arm/interpreter/arm_interpreter.h"
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
const static cpu_config_t s_arm11_cpu_info = {
|
|
|
|
"armv6", "arm11", 0x0007b000, 0x0007f000, NONCACHE
|
|
|
|
};
|
|
|
|
|
|
|
|
ARM_Interpreter::ARM_Interpreter() {
|
2014-05-20 22:52:54 +00:00
|
|
|
state = new ARMul_State;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
ARMul_EmulateInit();
|
2014-05-20 22:52:54 +00:00
|
|
|
ARMul_NewState(state);
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
state->abort_model = 0;
|
|
|
|
state->cpu = (cpu_config_t*)&s_arm11_cpu_info;
|
|
|
|
state->bigendSig = LOW;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
ARMul_SelectProcessor(state, ARM_v6_Prop | ARM_v5_Prop | ARM_v5e_Prop);
|
|
|
|
state->lateabtSig = LOW;
|
|
|
|
mmu_init(state);
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
// Reset the core to initial state
|
2014-05-20 22:52:54 +00:00
|
|
|
ARMul_Reset(state);
|
|
|
|
state->NextInstr = 0;
|
|
|
|
state->Emulate = 3;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
state->pc = state->Reg[15] = 0x00000000;
|
|
|
|
state->Reg[13] = 0x10000000; // Set stack pointer to the top of the stack
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:55:59 +00:00
|
|
|
ARM_Interpreter::~ARM_Interpreter() {
|
2014-05-20 22:52:54 +00:00
|
|
|
delete state;
|
2014-04-10 23:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Program Counter to an address
|
|
|
|
* @param addr Address to set PC to
|
|
|
|
*/
|
2014-04-05 02:26:06 +00:00
|
|
|
void ARM_Interpreter::SetPC(u32 pc) {
|
2014-05-20 22:52:54 +00:00
|
|
|
state->pc = state->Reg[15] = pc;
|
2014-04-09 00:38:33 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:55:59 +00:00
|
|
|
/*
|
|
|
|
* Get the current Program Counter
|
|
|
|
* @return Returns current PC
|
|
|
|
*/
|
2014-04-09 00:38:33 +00:00
|
|
|
u32 ARM_Interpreter::GetPC() const {
|
2014-05-20 22:52:54 +00:00
|
|
|
return state->pc;
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:55:59 +00:00
|
|
|
/**
|
|
|
|
* Get an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @return Returns the value in the register
|
|
|
|
*/
|
2014-04-09 00:38:33 +00:00
|
|
|
u32 ARM_Interpreter::GetReg(int index) const {
|
2014-05-20 22:52:54 +00:00
|
|
|
return state->Reg[index];
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:55:59 +00:00
|
|
|
/**
|
|
|
|
* Set an ARM register
|
|
|
|
* @param index Register index (0-15)
|
|
|
|
* @param value Value to set register to
|
|
|
|
*/
|
|
|
|
void ARM_Interpreter::SetReg(int index, u32 value) {
|
2014-05-20 22:52:54 +00:00
|
|
|
state->Reg[index] = value;
|
2014-04-10 23:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current CPSR register
|
|
|
|
* @return Returns the value of the CPSR register
|
|
|
|
*/
|
2014-04-09 00:38:33 +00:00
|
|
|
u32 ARM_Interpreter::GetCPSR() const {
|
2014-05-20 22:52:54 +00:00
|
|
|
return state->Cpsr;
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-05-12 02:14:13 +00:00
|
|
|
/**
|
|
|
|
* Set the current CPSR register
|
|
|
|
* @param cpsr Value to set CPSR to
|
|
|
|
*/
|
|
|
|
void ARM_Interpreter::SetCPSR(u32 cpsr) {
|
2014-05-20 22:52:54 +00:00
|
|
|
state->Cpsr = cpsr;
|
2014-05-12 02:14:13 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 23:55:59 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of clock ticks since the last reset
|
|
|
|
* @return Returns number of clock ticks
|
|
|
|
*/
|
2014-04-09 00:38:33 +00:00
|
|
|
u64 ARM_Interpreter::GetTicks() const {
|
2014-05-20 22:52:54 +00:00
|
|
|
return ARMul_Time(state);
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 15:59:18 +00:00
|
|
|
/**
|
|
|
|
* Executes the given number of instructions
|
|
|
|
* @param num_instructions Number of instructions to executes
|
|
|
|
*/
|
|
|
|
void ARM_Interpreter::ExecuteInstructions(int num_instructions) {
|
2014-06-05 04:25:32 +00:00
|
|
|
state->NumInstrsToExecute = num_instructions - 1;
|
2014-05-20 22:52:54 +00:00
|
|
|
ARMul_Emulate32(state);
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
2014-05-20 22:50:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves the current CPU context
|
|
|
|
* @param ctx Thread context to save
|
|
|
|
* @todo Do we need to save Reg[15] and NextInstr?
|
|
|
|
*/
|
|
|
|
void ARM_Interpreter::SaveContext(ThreadContext& ctx) {
|
2014-05-20 22:52:54 +00:00
|
|
|
memcpy(ctx.cpu_registers, state->Reg, sizeof(ctx.cpu_registers));
|
|
|
|
memcpy(ctx.fpu_registers, state->ExtReg, sizeof(ctx.fpu_registers));
|
2014-05-20 22:50:16 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
ctx.sp = state->Reg[13];
|
|
|
|
ctx.lr = state->Reg[14];
|
|
|
|
ctx.pc = state->pc;
|
|
|
|
ctx.cpsr = state->Cpsr;
|
2014-05-22 22:47:42 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
ctx.fpscr = state->VFP[1];
|
|
|
|
ctx.fpexc = state->VFP[2];
|
2014-06-05 04:20:11 +00:00
|
|
|
|
|
|
|
ctx.reg_15 = state->Reg[15];
|
|
|
|
ctx.mode = state->NextInstr;
|
2014-05-20 22:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a CPU context
|
|
|
|
* @param ctx Thread context to load
|
|
|
|
* @param Do we need to load Reg[15] and NextInstr?
|
|
|
|
*/
|
|
|
|
void ARM_Interpreter::LoadContext(const ThreadContext& ctx) {
|
2014-05-20 22:52:54 +00:00
|
|
|
memcpy(state->Reg, ctx.cpu_registers, sizeof(ctx.cpu_registers));
|
|
|
|
memcpy(state->ExtReg, ctx.fpu_registers, sizeof(ctx.fpu_registers));
|
2014-05-20 22:50:16 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
state->Reg[13] = ctx.sp;
|
|
|
|
state->Reg[14] = ctx.lr;
|
|
|
|
state->pc = ctx.pc;
|
|
|
|
state->Cpsr = ctx.cpsr;
|
2014-05-20 22:50:16 +00:00
|
|
|
|
2014-05-20 22:52:54 +00:00
|
|
|
state->VFP[1] = ctx.fpscr;
|
|
|
|
state->VFP[2] = ctx.fpexc;
|
2014-05-22 22:47:42 +00:00
|
|
|
|
2014-06-05 04:20:11 +00:00
|
|
|
state->Reg[15] = ctx.reg_15;
|
|
|
|
state->NextInstr = ctx.mode;
|
2014-05-20 22:50:16 +00:00
|
|
|
}
|
2014-06-02 01:40:10 +00:00
|
|
|
|
|
|
|
/// Prepare core for thread reschedule (if needed to correctly handle state)
|
|
|
|
void ARM_Interpreter::PrepareReschedule() {
|
|
|
|
state->NumInstrsToExecute = 0;
|
|
|
|
}
|