From: Julian Seward Date: Sat, 11 Sep 2004 20:06:36 +0000 (+0000) Subject: Increase translation table size a bit. X-Git-Tag: svn/VALGRIND_3_0_1^2~1074 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60ec3f099d4abeef617f625d5603b92dcac1aea2;p=thirdparty%2Fvalgrind.git Increase translation table size a bit. git-svn-id: svn://svn.valgrind.org/vex/trunk@260 --- diff --git a/VEX/hacked104/vg_transtab.c b/VEX/hacked104/vg_transtab.c index 81e74b22bb..b0417dbab7 100644 --- a/VEX/hacked104/vg_transtab.c +++ b/VEX/hacked104/vg_transtab.c @@ -44,7 +44,7 @@ of code retranslation. */ /* Size of the translation cache, in bytes. */ -#define VG_TC_SIZE /*1000000*/ /*16000000*/ 32000000 /*40000000*/ +#define VG_TC_SIZE /*1000000*/ /*16000000*/ /*32000000*/ 40000000 /* Do a LRU pass when the translation cache becomes this full. */ #define VG_TC_LIMIT_PERCENT 98 @@ -54,7 +54,7 @@ /* Number of entries in the translation table. This must be a prime number in order to make the hashing work properly. */ -#define VG_TT_SIZE /*5281*/ /*100129*/ 200191 /*250829*/ +#define VG_TT_SIZE /*5281*/ /*100129*/ /*200191*/ 250829 /* Do an LRU pass when the translation table becomes this full. */ #define VG_TT_LIMIT_PERCENT /*67*/ 80