* [Qemu-devel] [4731] Avoid gen_opc_buf overflow.
@ 2008-06-11 12:26 Thiemo Seufer
0 siblings, 0 replies; only message in thread
From: Thiemo Seufer @ 2008-06-11 12:26 UTC (permalink / raw)
To: qemu-devel
Revision: 4731
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4731
Author: ths
Date: 2008-06-11 12:26:29 +0000 (Wed, 11 Jun 2008)
Log Message:
-----------
Avoid gen_opc_buf overflow.
Modified Paths:
--------------
trunk/target-mips/translate.c
Modified: trunk/target-mips/translate.c
===================================================================
--- trunk/target-mips/translate.c 2008-06-11 11:03:34 UTC (rev 4730)
+++ trunk/target-mips/translate.c 2008-06-11 12:26:29 UTC (rev 4731)
@@ -7229,7 +7229,8 @@
fprintf (logfile, "search pc %d\n", search_pc);
pc_start = tb->pc;
- gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
+ /* Leave some spare opc slots for branch handling. */
+ gen_opc_end = gen_opc_buf + OPC_MAX_SIZE - 16;
ctx.pc = pc_start;
ctx.saved_pc = -1;
ctx.tb = tb;
@@ -7254,7 +7255,7 @@
fprintf(logfile, "\ntb %p idx %d hflags %04x\n",
tb, ctx.mem_idx, ctx.hflags);
#endif
- while (ctx.bstate == BS_NONE && gen_opc_ptr < gen_opc_end) {
+ while (ctx.bstate == BS_NONE) {
if (env->nb_breakpoints > 0) {
for(j = 0; j < env->nb_breakpoints; j++) {
if (env->breakpoints[j] == ctx.pc) {
@@ -7290,6 +7291,9 @@
if ((ctx.pc & (TARGET_PAGE_SIZE - 1)) == 0)
break;
+ if (gen_opc_ptr >= gen_opc_end)
+ break;
+
#if defined (MIPS_SINGLE_STEP)
break;
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-06-11 12:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-11 12:26 [Qemu-devel] [4731] Avoid gen_opc_buf overflow Thiemo Seufer
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).