|
From: <sv...@va...> - 2011-01-10 15:01:12
|
Author: sewardj
Date: 2011-01-10 15:01:03 +0000 (Mon, 10 Jan 2011)
New Revision: 11494
Log:
Memcheck, None: update avg translation size to be more realistic.
Massif: specify avg translation size at all, so as to avoid excessive
retranslations caused by the fact that the default value is far below
reality for Massif.
Modified:
trunk/coregrind/m_transtab.c
trunk/massif/ms_main.c
trunk/memcheck/mc_main.c
trunk/none/nl_main.c
Modified: trunk/coregrind/m_transtab.c
===================================================================
--- trunk/coregrind/m_transtab.c 2011-01-10 14:56:59 UTC (rev 11493)
+++ trunk/coregrind/m_transtab.c 2011-01-10 15:01:03 UTC (rev 11494)
@@ -1556,7 +1556,7 @@
/* Ensure the calculated value is not way crazy. */
vg_assert(tc_sector_szQ >= 2 * N_TTES_PER_SECTOR_USABLE);
- vg_assert(tc_sector_szQ <= 80 * N_TTES_PER_SECTOR_USABLE);
+ vg_assert(tc_sector_szQ <= 100 * N_TTES_PER_SECTOR_USABLE);
/* Initialise the sectors */
youngest_sector = 0;
Modified: trunk/massif/ms_main.c
===================================================================
--- trunk/massif/ms_main.c 2011-01-10 14:56:59 UTC (rev 11493)
+++ trunk/massif/ms_main.c 2011-01-10 15:01:03 UTC (rev 11494)
@@ -2491,6 +2491,8 @@
"Copyright (C) 2003-2010, and GNU GPL'd, by Nicholas Nethercote");
VG_(details_bug_reports_to) (VG_BUGS_TO);
+ VG_(details_avg_translation_sizeB) ( 330 );
+
// Basic functions.
VG_(basic_tool_funcs) (ms_post_clo_init,
ms_instrument,
Modified: trunk/memcheck/mc_main.c
===================================================================
--- trunk/memcheck/mc_main.c 2011-01-10 14:56:59 UTC (rev 11493)
+++ trunk/memcheck/mc_main.c 2011-01-10 15:01:03 UTC (rev 11494)
@@ -5788,7 +5788,7 @@
VG_(details_copyright_author)(
"Copyright (C) 2002-2010, and GNU GPL'd, by Julian Seward et al.");
VG_(details_bug_reports_to) (VG_BUGS_TO);
- VG_(details_avg_translation_sizeB) ( 556 );
+ VG_(details_avg_translation_sizeB) ( 640 );
VG_(basic_tool_funcs) (mc_post_clo_init,
MC_(instrument),
Modified: trunk/none/nl_main.c
===================================================================
--- trunk/none/nl_main.c 2011-01-10 14:56:59 UTC (rev 11493)
+++ trunk/none/nl_main.c 2011-01-10 15:01:03 UTC (rev 11494)
@@ -58,6 +58,8 @@
"Copyright (C) 2002-2010, and GNU GPL'd, by Nicholas Nethercote.");
VG_(details_bug_reports_to) (VG_BUGS_TO);
+ VG_(details_avg_translation_sizeB) ( 275 );
+
VG_(basic_tool_funcs) (nl_post_clo_init,
nl_instrument,
nl_fini);
|