|
From: <sv...@va...> - 2010-09-29 21:39:20
|
Author: sewardj
Date: 2010-09-29 22:39:12 +0100 (Wed, 29 Sep 2010)
New Revision: 2053
Log:
Increase the size of the JIT's scratch working area from 4MB to 5MB.
This is needed to handle long blocks of NEON code with Memcheck
--track-origins=yes.
Modified:
trunk/priv/main_util.c
Modified: trunk/priv/main_util.c
===================================================================
--- trunk/priv/main_util.c 2010-09-29 21:36:56 UTC (rev 2052)
+++ trunk/priv/main_util.c 2010-09-29 21:39:12 UTC (rev 2053)
@@ -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];
|