]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Increase default max bb size from 50 to 60 guest instructions.
authorJulian Seward <jseward@acm.org>
Tue, 29 Mar 2005 21:32:41 +0000 (21:32 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 29 Mar 2005 21:32:41 +0000 (21:32 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@1109

VEX/priv/main/vex_main.c
VEX/priv/main/vex_util.c

index ea97c4c4be79b5894de78509982c022d6544b7e5..538255f261a4276e4e7d8bc0c3149a6a4e00db04 100644 (file)
@@ -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;
 }
 
index dd93df48b2c00d4a904ccce4a92bb166112ea43e..4c83353a1d75180de29597e2fd78fe2e41a7c255 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 1000000
+#define N_TEMPORARY_BYTES 1200000
 
 static Char temporary[N_TEMPORARY_BYTES];
 static Int  temporary_used = 0;