diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-18 18:08:25 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-18 18:08:25 +0000 |
commit | d35527d9f9ca7b0c99de06eb720cb35ee56ac5f6 (patch) | |
tree | cd85b4f8ba93fff68c95339bb405eac115d82411 /target-sparc/translate.c | |
parent | 1f5063fb9756805efcd8c5a438ab747f36f796d9 (diff) |
Convert CCR and CWP ops to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4086 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/translate.c')
-rw-r--r-- | target-sparc/translate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 7032dab115..fce4de086d 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -2023,7 +2023,7 @@ static void disas_sparc_insn(DisasContext * dc) break; #ifdef TARGET_SPARC64 case 0x2: /* V9 rdccr */ - gen_op_rdccr(); + tcg_gen_helper_1_0(helper_rdccr, cpu_T[0]); gen_movl_T0_reg(rd); break; case 0x3: /* V9 rdasi */ @@ -2205,7 +2205,7 @@ static void disas_sparc_insn(DisasContext * dc) gen_op_movl_T0_env(offsetof(CPUSPARCState, psrpil)); break; case 9: // cwp - gen_op_rdcwp(); + tcg_gen_helper_1_0(helper_rdcwp, cpu_T[0]); break; case 10: // cansave gen_op_movl_T0_env(offsetof(CPUSPARCState, cansave)); @@ -3113,7 +3113,7 @@ static void disas_sparc_insn(DisasContext * dc) #else case 0x2: /* V9 wrccr */ gen_op_xor_T1_T0(); - gen_op_wrccr(); + tcg_gen_helper_0_1(helper_wrccr, cpu_T[0]); break; case 0x3: /* V9 wrasi */ gen_op_xor_T1_T0(); @@ -3322,7 +3322,7 @@ static void disas_sparc_insn(DisasContext * dc) gen_op_movl_env_T0(offsetof(CPUSPARCState, psrpil)); break; case 9: // cwp - gen_op_wrcwp(); + tcg_gen_helper_0_1(helper_wrcwp, cpu_T[0]); break; case 10: // cansave gen_op_movl_env_T0(offsetof(CPUSPARCState, cansave)); |