From a0c4cb4a7026977266d08d3e6af27d4dd04ed1e4 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 10 Oct 2004 17:46:24 +0000 Subject: sparc fixes git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1117 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-sparc/exec.h | 2 ++ target-sparc/op.c | 18 +++++++++++++++--- target-sparc/op_helper.c | 28 ++++++++++++++++++++-------- target-sparc/translate.c | 5 ++++- 4 files changed, 41 insertions(+), 12 deletions(-) (limited to 'target-sparc') diff --git a/target-sparc/exec.h b/target-sparc/exec.h index cea9616b36..941b22a741 100644 --- a/target-sparc/exec.h +++ b/target-sparc/exec.h @@ -25,6 +25,8 @@ void helper_st_asi(int asi, int size, int sign); void helper_rett(void); void helper_ldfsr(void); void set_cwp(int new_cwp); +void do_fitos(void); +void do_fitod(void); void do_fabss(void); void do_fsqrts(void); void do_fsqrtd(void); diff --git a/target-sparc/op.c b/target-sparc/op.c index 042fd6199a..2cf4ed8411 100644 --- a/target-sparc/op.c +++ b/target-sparc/op.c @@ -932,20 +932,32 @@ void OPPROTO op_fcmpd(void) do_fcmpd(); } +#ifdef USE_INT_TO_FLOAT_HELPERS void OPPROTO op_fitos(void) { - FT0 = (float) *((int32_t *)&FT1); + do_fitos(); } -void OPPROTO op_fdtos(void) +void OPPROTO op_fitod(void) { - FT0 = (float) DT1; + do_fitod(); +} +#else +void OPPROTO op_fitos(void) +{ + FT0 = (float) *((int32_t *)&FT1); } void OPPROTO op_fitod(void) { DT0 = (double) *((int32_t *)&FT1); } +#endif + +void OPPROTO op_fdtos(void) +{ + FT0 = (float) DT1; +} void OPPROTO op_fstod(void) { diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index 909639af0f..3a6de7cfc2 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -2,22 +2,34 @@ #include #include "exec.h" -void OPPROTO do_fabss(void) +#ifdef USE_INT_TO_FLOAT_HELPERS +void do_fitos(void) +{ + FT0 = (float) *((int32_t *)&FT1); +} + +void do_fitod(void) +{ + DT0 = (double) *((int32_t *)&FT1); +} +#endif + +void do_fabss(void) { FT0 = fabsf(FT1); } -void OPPROTO do_fsqrts(void) +void do_fsqrts(void) { FT0 = sqrtf(FT1); } -void OPPROTO do_fsqrtd(void) +void do_fsqrtd(void) { DT0 = sqrt(DT1); } -void OPPROTO do_fcmps (void) +void do_fcmps (void) { if (isnan(FT0) || isnan(FT1)) { T0 = FSR_FCC1 | FSR_FCC0; @@ -31,7 +43,7 @@ void OPPROTO do_fcmps (void) env->fsr = T0; } -void OPPROTO do_fcmpd (void) +void do_fcmpd (void) { if (isnan(DT0) || isnan(DT1)) { T0 = FSR_FCC1 | FSR_FCC0; @@ -45,7 +57,7 @@ void OPPROTO do_fcmpd (void) env->fsr = T0; } -void OPPROTO helper_ld_asi(int asi, int size, int sign) +void helper_ld_asi(int asi, int size, int sign) { switch(asi) { case 3: /* MMU probe */ @@ -76,7 +88,7 @@ void OPPROTO helper_ld_asi(int asi, int size, int sign) } } -void OPPROTO helper_st_asi(int asi, int size, int sign) +void helper_st_asi(int asi, int size, int sign) { switch(asi) { case 3: /* MMU flush */ @@ -125,7 +137,7 @@ void do_ldd_kernel(uint32_t addr) #endif #endif -void OPPROTO helper_rett() +void helper_rett() { int cwp; env->psret = 1; diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 721a91d7f8..2440c0d22e 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -291,7 +291,10 @@ GEN32(gen_op_store_DT2_fpr, gen_op_store_DT2_fpr_fprf); #if defined(CONFIG_USER_ONLY) #define gen_op_ldst(name) gen_op_##name##_raw() -#define OP_LD_TABLE(width) +#define OP_LD_TABLE(width) \ +static void gen_op_##width##a(int insn, int is_ld, int size, int sign) \ +{ \ +} #define supervisor(dc) 0 #else #define gen_op_ldst(name) (*gen_op_##name[dc->mem_idx])() -- cgit v1.2.1