From: Julian Seward Date: Tue, 29 Mar 2005 21:32:41 +0000 (+0000) Subject: Increase default max bb size from 50 to 60 guest instructions. X-Git-Tag: svn/VALGRIND_3_0_1^2~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f331e0dbfd9795faaa21c06e4cb3e7c3f82fd8de;p=thirdparty%2Fvalgrind.git Increase default max bb size from 50 to 60 guest instructions. git-svn-id: svn://svn.valgrind.org/vex/trunk@1109 --- diff --git a/VEX/priv/main/vex_main.c b/VEX/priv/main/vex_main.c index ea97c4c4be..538255f261 100644 --- a/VEX/priv/main/vex_main.c +++ b/VEX/priv/main/vex_main.c @@ -77,7 +77,7 @@ void LibVEX_default_VexControl ( /*OUT*/ VexControl* vcon ) vcon->iropt_level = 2; vcon->iropt_precise_memory_exns = False; vcon->iropt_unroll_thresh = 120; - vcon->guest_max_insns = 50; + vcon->guest_max_insns = 60; vcon->guest_chase_thresh = 10; } diff --git a/VEX/priv/main/vex_util.c b/VEX/priv/main/vex_util.c index dd93df48b2..4c83353a1d 100644 --- a/VEX/priv/main/vex_util.c +++ b/VEX/priv/main/vex_util.c @@ -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 1000000 +#define N_TEMPORARY_BYTES 1200000 static Char temporary[N_TEMPORARY_BYTES]; static Int temporary_used = 0;