From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4717] CRIS: Translator updates.
Date: Mon, 09 Jun 2008 23:06:32 +0000 [thread overview]
Message-ID: <E1K5qRb-0003Zv-VB@cvs.savannah.gnu.org> (raw)
Revision: 4717
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4717
Author: edgar_igl
Date: 2008-06-09 23:06:31 +0000 (Mon, 09 Jun 2008)
Log Message:
-----------
CRIS: Translator updates.
* RFN (Return From NMI) insn.
* Avoid unnecessary T0 transfers.
* Dont do tcg related init more than once.
Modified Paths:
--------------
trunk/target-cris/translate.c
Modified: trunk/target-cris/translate.c
===================================================================
--- trunk/target-cris/translate.c 2008-06-09 20:44:19 UTC (rev 4716)
+++ trunk/target-cris/translate.c 2008-06-09 23:06:31 UTC (rev 4717)
@@ -735,7 +735,7 @@
else
tcg_gen_andi_tl(cpu_PR[PR_CCS],
cpu_PR[PR_CCS], ~X_FLAG);
- }
+ }
dc->flags_uptodate = 1;
}
@@ -1530,7 +1530,6 @@
cris_cc_mask(dc, CC_MASK_NZ);
- t_gen_mov_TN_reg(cpu_T[0], dc->op2);
cris_alu(dc, CC_OP_BTST,
cpu_T[0], cpu_R[dc->op2], tcg_const_tl(dc->op1), 4);
cris_update_cc_op(dc, CC_OP_FLAGS, 4);
@@ -1968,11 +1967,10 @@
dc->op1, dc->op2));
cris_cc_mask(dc, CC_MASK_NZ);
- t_gen_mov_TN_reg(cpu_T[0], dc->op1);
/* Size can only be qi or hi. */
t_gen_sext(cpu_T[1], cpu_R[dc->op1], size);
cris_alu(dc, CC_OP_MOVE,
- cpu_R[dc->op2], cpu_T[0], cpu_T[1], 4);
+ cpu_R[dc->op2], cpu_R[dc->op1], cpu_T[1], 4);
return 2;
}
@@ -2788,7 +2786,9 @@
break;
case 5:
/* rfn. */
- BUG();
+ cris_evaluate_flags(dc);
+ tcg_gen_helper_0_0(helper_rfn);
+ dc->is_jmp = DISAS_UPDATE;
break;
case 6:
/* break. */
@@ -3271,13 +3271,21 @@
CPUCRISState *cpu_cris_init (const char *cpu_model)
{
CPUCRISState *env;
+ static int tcg_initialized = 0;
int i;
env = qemu_mallocz(sizeof(CPUCRISState));
if (!env)
return NULL;
+
cpu_exec_init(env);
+ cpu_reset(env);
+ if (tcg_initialized)
+ return env;
+
+ tcg_initialized = 1;
+
cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
#if TARGET_LONG_BITS > HOST_LONG_BITS
cpu_T[0] = tcg_global_mem_new(TCG_TYPE_TL,
@@ -3337,6 +3345,7 @@
TCG_HELPER(helper_movl_sreg_reg);
TCG_HELPER(helper_movl_reg_sreg);
TCG_HELPER(helper_rfe);
+ TCG_HELPER(helper_rfn);
TCG_HELPER(helper_evaluate_flags_muls);
TCG_HELPER(helper_evaluate_flags_mulu);
@@ -3346,8 +3355,6 @@
TCG_HELPER(helper_evaluate_flags_move_2);
TCG_HELPER(helper_evaluate_flags);
TCG_HELPER(helper_top_evaluate_flags);
-
- cpu_reset(env);
return env;
}
reply other threads:[~2008-06-09 23:06 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1K5qRb-0003Zv-VB@cvs.savannah.gnu.org \
--to=edgar.iglesias@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).