diff options
| author | 2014-05-16 20:04:13 -0400 | |
|---|---|---|
| committer | 2014-05-16 20:04:13 -0400 | |
| commit | a2804bf7010c2759668cfc36285a2b2a39bc695f (patch) | |
| tree | 9d0823f4cd6afca9255080530a16e50aa0673dcd /src/core/arm/interpreter/vfp | |
| parent | added maverick.cpp to ARM core from skyeye (diff) | |
| download | yuzu-a2804bf7010c2759668cfc36285a2b2a39bc695f.tar.gz yuzu-a2804bf7010c2759668cfc36285a2b2a39bc695f.tar.xz yuzu-a2804bf7010c2759668cfc36285a2b2a39bc695f.zip | |
- 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/core/arm/interpreter/vfp')
| -rw-r--r-- | src/core/arm/interpreter/vfp/vfp.h | 4 | ||||
| -rw-r--r-- | src/core/arm/interpreter/vfp/vfpdouble.cpp | 5 | ||||
| -rw-r--r-- | src/core/arm/interpreter/vfp/vfpsingle.cpp | 5 |
3 files changed, 8 insertions, 6 deletions
diff --git a/src/core/arm/interpreter/vfp/vfp.h b/src/core/arm/interpreter/vfp/vfp.h index e16076310..ba23bd6ec 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); | |||
| 84 | uint64_t vfp_get_double(ARMul_State * state, unsigned int reg); | 84 | uint64_t vfp_get_double(ARMul_State * state, unsigned int reg); |
| 85 | void vfp_put_double(ARMul_State * state, uint64_t val, unsigned int reg); | 85 | void vfp_put_double(ARMul_State * state, uint64_t val, unsigned int reg); |
| 86 | void vfp_raise_exceptions(ARMul_State * state, uint32_t exceptions, uint32_t inst, uint32_t fpscr); | 86 | void vfp_raise_exceptions(ARMul_State * state, uint32_t exceptions, uint32_t inst, uint32_t fpscr); |
| 87 | extern uint32_t vfp_single_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr); | 87 | u32 vfp_single_cpdo(ARMul_State* state, u32 inst, u32 fpscr); |
| 88 | extern uint32_t vfp_double_cpdo(ARMul_State * state, uint32_t inst, uint32_t fpscr); | 88 | u32 vfp_double_cpdo(ARMul_State* state, u32 inst, u32 fpscr); |
| 89 | 89 | ||
| 90 | /* MRC */ | 90 | /* MRC */ |
| 91 | inline void VMRS(ARMul_State * state, ARMword reg, ARMword Rt, ARMword *value); | 91 | 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 37fd28829..7e79ecafb 100644 --- a/src/core/arm/interpreter/vfp/vfpdouble.cpp +++ b/src/core/arm/interpreter/vfp/vfpdouble.cpp | |||
| @@ -51,8 +51,9 @@ | |||
| 51 | * =========================================================================== | 51 | * =========================================================================== |
| 52 | */ | 52 | */ |
| 53 | 53 | ||
| 54 | #include "vfp_helper.h" | 54 | #include "core/arm/interpreter/vfp/vfp.h" |
| 55 | #include "asm_vfp.h" | 55 | #include "core/arm/interpreter/vfp/vfp_helper.h" |
| 56 | #include "core/arm/interpreter/vfp/asm_vfp.h" | ||
| 56 | 57 | ||
| 57 | static struct vfp_double vfp_double_default_qnan = { | 58 | static struct vfp_double vfp_double_default_qnan = { |
| 58 | //.exponent = 2047, | 59 | //.exponent = 2047, |
diff --git a/src/core/arm/interpreter/vfp/vfpsingle.cpp b/src/core/arm/interpreter/vfp/vfpsingle.cpp index 24c0ded2b..34de030bf 100644 --- a/src/core/arm/interpreter/vfp/vfpsingle.cpp +++ b/src/core/arm/interpreter/vfp/vfpsingle.cpp | |||
| @@ -51,8 +51,9 @@ | |||
| 51 | * =========================================================================== | 51 | * =========================================================================== |
| 52 | */ | 52 | */ |
| 53 | 53 | ||
| 54 | #include "vfp_helper.h" | 54 | #include "core/arm/interpreter/vfp/vfp_helper.h" |
| 55 | #include "asm_vfp.h" | 55 | #include "core/arm/interpreter/vfp/asm_vfp.h" |
| 56 | #include "core/arm/interpreter/vfp/vfp.h" | ||
| 56 | 57 | ||
| 57 | static struct vfp_single vfp_single_default_qnan = { | 58 | static struct vfp_single vfp_single_default_qnan = { |
| 58 | //.exponent = 255, | 59 | //.exponent = 255, |