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
|
|
|
|
|
|
|
#include "arm_interpreter.h"
|
|
|
|
|
|
|
|
const static cpu_config_t s_arm11_cpu_info = {
|
|
|
|
"armv6", "arm11", 0x0007b000, 0x0007f000, NONCACHE
|
|
|
|
};
|
|
|
|
|
|
|
|
ARM_Interpreter::ARM_Interpreter() {
|
2014-04-09 00:38:33 +00:00
|
|
|
m_state = new ARMul_State;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
ARMul_EmulateInit();
|
2014-04-09 00:38:33 +00:00
|
|
|
ARMul_NewState(m_state);
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
m_state->abort_model = 0;
|
|
|
|
m_state->cpu = (cpu_config_t*)&s_arm11_cpu_info;
|
|
|
|
m_state->bigendSig = LOW;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
ARMul_SelectProcessor(m_state, ARM_v6_Prop | ARM_v5_Prop | ARM_v5e_Prop);
|
|
|
|
m_state->lateabtSig = LOW;
|
|
|
|
mmu_init(m_state);
|
2014-04-05 02:26:06 +00:00
|
|
|
|
|
|
|
// Reset the core to initial state
|
2014-04-09 00:38:33 +00:00
|
|
|
ARMul_Reset(m_state);
|
|
|
|
m_state->NextInstr = 0;
|
|
|
|
m_state->Emulate = 3;
|
2014-04-05 02:26:06 +00:00
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
m_state->pc = m_state->Reg[15] = 0x00000000;
|
|
|
|
m_state->Reg[13] = 0x10000000; // Set stack pointer to the top of the stack
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ARM_Interpreter::SetPC(u32 pc) {
|
2014-04-09 00:38:33 +00:00
|
|
|
m_state->pc = m_state->Reg[15] = pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 ARM_Interpreter::GetPC() const {
|
|
|
|
return m_state->pc;
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
u32 ARM_Interpreter::GetReg(int index) const {
|
|
|
|
return m_state->Reg[index];
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
u32 ARM_Interpreter::GetCPSR() const {
|
|
|
|
return m_state->Cpsr;
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 00:38:33 +00:00
|
|
|
u64 ARM_Interpreter::GetTicks() const {
|
|
|
|
return ARMul_Time(m_state);
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ARM_Interpreter::~ARM_Interpreter() {
|
2014-04-09 00:38:33 +00:00
|
|
|
delete m_state;
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ARM_Interpreter::ExecuteInstruction() {
|
2014-04-09 00:38:33 +00:00
|
|
|
m_state->step++;
|
|
|
|
m_state->cycle++;
|
|
|
|
m_state->EndCondition = 0;
|
|
|
|
m_state->stop_simulator = 0;
|
|
|
|
m_state->NextInstr = RESUME;
|
|
|
|
m_state->last_pc = m_state->Reg[15];
|
|
|
|
m_state->Reg[15] = ARMul_DoInstr(m_state);
|
|
|
|
m_state->Cpsr = ((m_state->Cpsr & 0x0fffffdf) | (m_state->NFlag << 31) | (m_state->ZFlag << 30) |
|
|
|
|
(m_state->CFlag << 29) | (m_state->VFlag << 28) | (m_state->TFlag << 5));
|
|
|
|
m_state->NextInstr |= PRIMEPIPE; // Flush pipe
|
2014-04-05 02:26:06 +00:00
|
|
|
}
|