]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Increase the size of the JIT's scratch working area from 4MB to 5MB.
authorJulian Seward <jseward@acm.org>
Wed, 29 Sep 2010 21:39:12 +0000 (21:39 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 29 Sep 2010 21:39:12 +0000 (21:39 +0000)
This is needed to handle long blocks of NEON code with Memcheck
--track-origins=yes.

git-svn-id: svn://svn.valgrind.org/vex/trunk@2053

VEX/priv/main_util.c

index a4f8fd576abc7a1e4437afe67ab487f1cf0f07a0..d12380ee505e8b92c16f9a67a70b4ecc388a0383 100644 (file)
@@ -51,7 +51,7 @@
    MByte/sec.  Once the size increases enough to fall out of the cache
    into memory, the rate falls by about a factor of 3. 
 */
-#define N_TEMPORARY_BYTES 4000000
+#define N_TEMPORARY_BYTES 5000000
 
 static HChar  temporary[N_TEMPORARY_BYTES] __attribute__((aligned(8)));
 static HChar* temporary_first = &temporary[0];