|
|
@ -22,31 +22,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
void switch_mode(ARMul_State* core, uint32_t mode);
|
|
|
|
void switch_mode(ARMul_State* core, uint32_t mode);
|
|
|
|
|
|
|
|
|
|
|
|
/* FIXME, we temporarily think thumb instruction is always 16 bit */
|
|
|
|
// Note that for the 3DS, a Thumb instruction will only ever be
|
|
|
|
|
|
|
|
// two bytes in size. Thus we don't need to worry about ThumbEE
|
|
|
|
|
|
|
|
// or Thumb-2 where instructions can be 4 bytes in length.
|
|
|
|
static inline u32 GET_INST_SIZE(ARMul_State* core) {
|
|
|
|
static inline u32 GET_INST_SIZE(ARMul_State* core) {
|
|
|
|
return core->TFlag? 2 : 4;
|
|
|
|
return core->TFlag? 2 : 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @brief Read R15 and forced R15 to wold align, used address calculation
|
|
|
|
* Checks if the PC is being read, and if so, word-aligns it.
|
|
|
|
*
|
|
|
|
* Used with address calculations.
|
|
|
|
* @param core
|
|
|
|
*
|
|
|
|
* @param Rn
|
|
|
|
* @param core The ARM CPU state instance.
|
|
|
|
*
|
|
|
|
* @param Rn The register being read.
|
|
|
|
* @return
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
* @return If the PC is being read, then the word-aligned PC value is returned.
|
|
|
|
static inline addr_t CHECK_READ_REG15_WA(ARMul_State* core, int Rn) {
|
|
|
|
* If the PC is not being read, then the value stored in the register is returned.
|
|
|
|
return (Rn == 15)? ((core->Reg[15] & ~0x3) + GET_INST_SIZE(core) * 2) : core->Reg[Rn];
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline u32 CHECK_READ_REG15_WA(ARMul_State* core, int Rn) {
|
|
|
|
|
|
|
|
return (Rn == 15) ? ((core->Reg[15] & ~0x3) + GET_INST_SIZE(core) * 2) : core->Reg[Rn];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @brief Read R15, used to data processing with pc
|
|
|
|
* Reads the PC. Used for data processing operations that use the PC.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param core
|
|
|
|
* @param core The ARM CPU state instance.
|
|
|
|
* @param Rn
|
|
|
|
* @param Rn The register being read.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @return If the PC is being read, then the incremented PC value is returned.
|
|
|
|
*/
|
|
|
|
* If the PC is not being read, then the values stored in the register is returned.
|
|
|
|
|
|
|
|
*/
|
|
|
|
static inline u32 CHECK_READ_REG15(ARMul_State* core, int Rn) {
|
|
|
|
static inline u32 CHECK_READ_REG15(ARMul_State* core, int Rn) {
|
|
|
|
return (Rn == 15)? ((core->Reg[15] & ~0x1) + GET_INST_SIZE(core) * 2) : core->Reg[Rn];
|
|
|
|
return (Rn == 15) ? ((core->Reg[15] & ~0x1) + GET_INST_SIZE(core) * 2) : core->Reg[Rn];
|
|
|
|
}
|
|
|
|
}
|
|
|
|