|
From: <sv...@va...> - 2005-03-31 15:49:01
|
Author: sewardj
Date: 2005-03-31 16:48:57 +0100 (Thu, 31 Mar 2005)
New Revision: 3492
Modified:
trunk/coregrind/vg_translate.c
Log:
Increase maximum translation size. This can happen when translating
long sequences of x86 insns with IR optimisation disabled, so the
tag-checking crap doesn't get knocked out like it usually does.
Modified: trunk/coregrind/vg_translate.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/vg_translate.c 2005-03-31 10:19:59 UTC (rev 3491)
+++ trunk/coregrind/vg_translate.c 2005-03-31 15:48:57 UTC (rev 3492)
@@ -277,7 +277,7 @@
=20
/* Vex dumps the final code in here. Then we can copy it off
wherever we like. */
-#define N_TMPBUF 10000
+#define N_TMPBUF 20000
static UChar tmpbuf[N_TMPBUF];
=20
/* Function pointers we must supply to LibVEX in order that it
|