* [Qemu-devel] [6931] target-ppc: avoid nop to override next instruction
@ 2009-03-29 1:18 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-03-29 1:18 UTC (permalink / raw)
To: qemu-devel
Revision: 6931
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6931
Author: aurel32
Date: 2009-03-29 01:18:03 +0000 (Sun, 29 Mar 2009)
Log Message:
-----------
target-ppc: avoid nop to override next instruction
While searching PC, always store the pc of a new instruction.
Instructions that didn't generate tcg code (such as nop) prevented the
next one to be referenced.
Based on patch for target-alpha, r6930.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Modified Paths:
--------------
trunk/target-ppc/translate.c
Modified: trunk/target-ppc/translate.c
===================================================================
--- trunk/target-ppc/translate.c 2009-03-29 01:04:39 UTC (rev 6930)
+++ trunk/target-ppc/translate.c 2009-03-29 01:18:03 UTC (rev 6931)
@@ -8213,10 +8213,10 @@
lj++;
while (lj < j)
gen_opc_instr_start[lj++] = 0;
- gen_opc_pc[lj] = ctx.nip;
- gen_opc_instr_start[lj] = 1;
- gen_opc_icount[lj] = num_insns;
}
+ gen_opc_pc[lj] = ctx.nip;
+ gen_opc_instr_start[lj] = 1;
+ gen_opc_icount[lj] = num_insns;
}
LOG_DISAS("----------------\n");
LOG_DISAS("nip=" ADDRX " super=%d ir=%d\n",
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-29 1:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-29 1:18 [Qemu-devel] [6931] target-ppc: avoid nop to override next instruction Aurelien Jarno
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).