]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Increase translation table size a bit.
authorJulian Seward <jseward@acm.org>
Sat, 11 Sep 2004 20:06:36 +0000 (20:06 +0000)
committerJulian Seward <jseward@acm.org>
Sat, 11 Sep 2004 20:06:36 +0000 (20:06 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@260

VEX/hacked104/vg_transtab.c

index 81e74b22bbfa1340573fe7113d261377cd47762b..b0417dbab7ecf9c1b196cee5cdc52bd5212a4f75 100644 (file)
@@ -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