aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-16 20:04:13 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-16 20:04:13 -0400
commita2804bf7010c2759668cfc36285a2b2a39bc695f (patch)
tree9d0823f4cd6afca9255080530a16e50aa0673dcd /src
parentf872807de2d2fec7cd7c76936fa06cca1cf1c1ad (diff)
- removed unused stubbed out code
- fixed some compiler issues with xscale_copro when porting code to Windows - fixed some #include's
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/interpreter/armemu.cpp11
-rw-r--r--src/core/arm/interpreter/mmu/xscale_copro.cpp35
-rw-r--r--src/core/arm/interpreter/vfp/vfp.h4
-rw-r--r--src/core/arm/interpreter/vfp/vfpdouble.cpp5
-rw-r--r--src/core/arm/interpreter/vfp/vfpsingle.cpp5
5 files changed, 27 insertions, 33 deletions
diff --git a/src/core/arm/interpreter/armemu.cpp b/src/core/arm/interpreter/armemu.cpp
index 1af684fe..87141653 100644
--- a/src/core/arm/interpreter/armemu.cpp
+++ b/src/core/arm/interpreter/armemu.cpp
@@ -23,17 +23,6 @@
#include "armemu.h"
#include "armos.h"
-void
-XScale_set_fsr_far(ARMul_State * state, ARMword fsr, ARMword _far)
-{
- _dbg_assert_msg_(ARM11, false, "ImplementMe: XScale_set_fsr_far!");
- //if (!state->is_XScale || (read_cp14_reg(10) & (1UL << 31)) == 0)
- // return;
- //
- //write_cp15_reg(state, 5, 0, 0, fsr);
- //write_cp15_reg(state, 6, 0, 0, _far);
-}
-
#define ARMul_Debug(x,y,z) 0 // Disabling this /bunnei
//#include "skyeye_callback.h"
diff --git a/src/core/arm/interpreter/mmu/xscale_copro.cpp b/src/core/arm/interpreter/mmu/xscale_copro.cpp
index a006cb10..433ce8e0 100644
--- a/src/core/arm/interpreter/mmu/xscale_copro.cpp
+++ b/src/core/arm/interpreter/mmu/xscale_copro.cpp
@@ -412,7 +412,8 @@ unsigned xscale_cp15_write_reg (ARMul_State * state, unsigned reg,
return 0;
}
-int xscale_cp15_init (ARMul_State * state)
+unsigned
+xscale_cp15_init (ARMul_State * state)
{
xscale_mmu_desc_t *desc;
cache_desc_t *c_desc;
@@ -489,7 +490,8 @@ int xscale_cp15_init (ARMul_State * state)
return -1;
}
-void xscale_cp15_exit (ARMul_State * state)
+unsigned
+xscale_cp15_exit (ARMul_State * state)
{
//mmu_rb_exit(RB());
mmu_wb_exit (WB ());
@@ -498,6 +500,7 @@ void xscale_cp15_exit (ARMul_State * state)
mmu_tlb_exit (D_TLB ());
mmu_cache_exit (I_CACHE ());
mmu_tlb_exit (I_TLB ());
+ return 0;
};
@@ -1372,17 +1375,17 @@ static int xscale_mmu_v2p_dbct (ARMul_State * state, ARMword virt_addr,
//AJ2D--------------------------------------------------------------------------
/*xscale mmu_ops_t*/
-mmu_ops_t xscale_mmu_ops = {
- xscale_cp15_init,
- xscale_cp15_exit,
- xscale_mmu_read_byte,
- xscale_mmu_write_byte,
- xscale_mmu_read_halfword,
- xscale_mmu_write_halfword,
- xscale_mmu_read_word,
- xscale_mmu_write_word,
- xscale_mmu_load_instr, xscale_mmu_mcr, xscale_mmu_mrc,
-//teawater add for arm2x86 2005.06.24-------------------------------------------
- xscale_mmu_v2p_dbct,
-//AJ2D--------------------------------------------------------------------------
-};
+//mmu_ops_t xscale_mmu_ops = {
+// xscale_cp15_init,
+// xscale_cp15_exit,
+// xscale_mmu_read_byte,
+// xscale_mmu_write_byte,
+// xscale_mmu_read_halfword,
+// xscale_mmu_write_halfword,
+// xscale_mmu_read_word,
+// xscale_mmu_write_word,
+// xscale_mmu_load_instr, xscale_mmu_mcr, xscale_mmu_mrc,
+////teawater add for arm2x86 2005.06.24-------------------------------------------
+// xscale_mmu_v2p_dbct,
+////AJ2D--------------------------------------------------------------------------
+//};
diff --git a/src/core/arm/interpreter/vfp/vfp.h b/src/core/arm/interpreter/vfp/vfp.h
index e1607631..ba23bd6e 100644
--- a/src/core/arm/interpreter/vfp/vfp.h
+++ b/src/core/arm/interpreter/vfp/vfp.h
@@ -84,8 +84,8 @@ void vfp_put_float(ARMul_State * state, int32_t val, unsigned int reg);
uint64_t vfp_get_double(ARMul_State * state, unsigned int reg);
void vfp_put_double(ARMul_State * state, uint64_t val, unsigned int reg);
void vfp_raise_exceptions(ARMul_State * state, uint32_t exceptions, uint32_t inst, uint32_t fpscr);
-extern uint32_t vfp_single_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr);
-extern uint32_t vfp_double_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr);
+u32 vfp_single_cpdo(ARMul_State* state, u32 inst, u32 fpscr);
+u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr);
/* MRC */
inline void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value);
diff --git a/src/core/arm/interpreter/vfp/vfpdouble.cpp b/src/core/arm/interpreter/vfp/vfpdouble.cpp
index 37fd2882..7e79ecaf 100644
--- a/src/core/arm/interpreter/vfp/vfpdouble.cpp
+++ b/src/core/arm/interpreter/vfp/vfpdouble.cpp
@@ -51,8 +51,9 @@
* ===========================================================================
*/
-#include "vfp_helper.h"
-#include "asm_vfp.h"
+#include "core/arm/interpreter/vfp/vfp.h"
+#include "core/arm/interpreter/vfp/vfp_helper.h"
+#include "core/arm/interpreter/vfp/asm_vfp.h"
static struct vfp_double vfp_double_default_qnan = {
//.exponent = 2047,
diff --git a/src/core/arm/interpreter/vfp/vfpsingle.cpp b/src/core/arm/interpreter/vfp/vfpsingle.cpp
index 24c0ded2..34de030b 100644
--- a/src/core/arm/interpreter/vfp/vfpsingle.cpp
+++ b/src/core/arm/interpreter/vfp/vfpsingle.cpp
@@ -51,8 +51,9 @@
* ===========================================================================
*/
-#include "vfp_helper.h"
-#include "asm_vfp.h"
+#include "core/arm/interpreter/vfp/vfp_helper.h"
+#include "core/arm/interpreter/vfp/asm_vfp.h"
+#include "core/arm/interpreter/vfp/vfp.h"
static struct vfp_single vfp_single_default_qnan = {
//.exponent = 255,