From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [7127] target-mips: fix call to check_*() functions
Date: Thu, 16 Apr 2009 11:51:19 +0000 [thread overview]
Message-ID: <E1LuQ7j-0004ED-Ex@cvs.savannah.gnu.org> (raw)
Revision: 7127
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7127
Author: aurel32
Date: 2009-04-16 11:51:19 +0000 (Thu, 16 Apr 2009)
Log Message:
-----------
target-mips: fix call to check_*() functions
check_*() functions may in fine call generate_exception(), which ends
by a call to tcg_gen_exit_tb(). As a consequence, we have to make sure
that no TCG temp variables are crossing a check_*() function.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Modified Paths:
--------------
trunk/target-mips/translate.c
Modified: trunk/target-mips/translate.c
===================================================================
--- trunk/target-mips/translate.c 2009-04-16 11:51:11 UTC (rev 7126)
+++ trunk/target-mips/translate.c 2009-04-16 11:51:19 UTC (rev 7127)
@@ -6382,10 +6382,13 @@
TCGv_i32 fp0 = tcg_temp_new_i32();
TCGv_i32 fp1 = tcg_temp_new_i32();
+ if (ctx->opcode & (1 << 6)) {
+ check_cop1x(ctx);
+ }
+
gen_load_fpr32(fp0, fs);
gen_load_fpr32(fp1, ft);
if (ctx->opcode & (1 << 6)) {
- check_cop1x(ctx);
gen_cmpabs_s(func-48, fp0, fp1, cc);
opn = condnames_abs[func-48];
} else {
@@ -6744,16 +6747,17 @@
{
TCGv_i64 fp0 = tcg_temp_new_i64();
TCGv_i64 fp1 = tcg_temp_new_i64();
+ if (ctx->opcode & (1 << 6)) {
+ check_cop1x(ctx);
+ }
+ check_cp1_registers(ctx, fs | ft);
gen_load_fpr64(ctx, fp0, fs);
gen_load_fpr64(ctx, fp1, ft);
if (ctx->opcode & (1 << 6)) {
- check_cop1x(ctx);
- check_cp1_registers(ctx, fs | ft);
gen_cmpabs_d(func-48, fp0, fp1, cc);
opn = condnames_abs[func-48];
} else {
- check_cp1_registers(ctx, fs | ft);
gen_cmp_d(func-48, fp0, fp1, cc);
opn = condnames[func-48];
}
@@ -7222,6 +7226,22 @@
int store = 0;
TCGv t0 = tcg_temp_new();
+ switch (opc) {
+ case OPC_LWXC1:
+ case OPC_SWXC1:
+ check_cop1x(ctx);
+ break;
+ case OPC_LDXC1:
+ case OPC_SDXC1:
+ check_cop1x(ctx);
+ check_cp1_registers(ctx, fd);
+ break;
+ case OPC_LUXC1:
+ case OPC_SUXC1:
+ check_cp1_64bitmode(ctx);
+ break;
+ }
+
if (base == 0) {
gen_load_gpr(t0, index);
} else if (index == 0) {
@@ -7235,7 +7255,6 @@
save_cpu_state(ctx, 0);
switch (opc) {
case OPC_LWXC1:
- check_cop1x(ctx);
{
TCGv_i32 fp0 = tcg_temp_new_i32();
@@ -7247,8 +7266,6 @@
opn = "lwxc1";
break;
case OPC_LDXC1:
- check_cop1x(ctx);
- check_cp1_registers(ctx, fd);
{
TCGv_i64 fp0 = tcg_temp_new_i64();
@@ -7259,7 +7276,6 @@
opn = "ldxc1";
break;
case OPC_LUXC1:
- check_cp1_64bitmode(ctx);
tcg_gen_andi_tl(t0, t0, ~0x7);
{
TCGv_i64 fp0 = tcg_temp_new_i64();
@@ -7271,7 +7287,6 @@
opn = "luxc1";
break;
case OPC_SWXC1:
- check_cop1x(ctx);
{
TCGv_i32 fp0 = tcg_temp_new_i32();
TCGv t1 = tcg_temp_new();
@@ -7286,8 +7301,6 @@
store = 1;
break;
case OPC_SDXC1:
- check_cop1x(ctx);
- check_cp1_registers(ctx, fs);
{
TCGv_i64 fp0 = tcg_temp_new_i64();
@@ -7299,7 +7312,6 @@
store = 1;
break;
case OPC_SUXC1:
- check_cp1_64bitmode(ctx);
tcg_gen_andi_tl(t0, t0, ~0x7);
{
TCGv_i64 fp0 = tcg_temp_new_i64();
reply other threads:[~2009-04-16 11:51 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=E1LuQ7j-0004ED-Ex@cvs.savannah.gnu.org \
--to=aurelien@aurel32.net \
--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).