You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// we don't need the list of using declaration anymore
12843
12789
g_usingDeclarations.clear();
12844
12790
@@ -13478,16 +13424,7 @@ void generateOutput()
13478
13424
g_outputList->cleanup();
13479
13425
cleanupInlineGraph();
13480
13426
13481
-
msg("type lookup cache used {}/{} hits={} misses={}\n",
13482
-
SymbolResolver::typeLookupCache().size(),
13483
-
SymbolResolver::typeLookupCache().capacity(),
13484
-
SymbolResolver::typeLookupCache().hits(),
13485
-
SymbolResolver::typeLookupCache().misses());
13486
-
int cacheParam = computeIdealCacheParam(static_cast<size_t>(SymbolResolver::typeLookupCache().misses()*2/3)); // part of the cache is flushed, hence the 2/3 correction factor
13487
-
if (cacheParam>Config_getInt(LOOKUP_CACHE_SIZE))
13488
-
{
13489
-
msg("Note: based on cache misses the ideal setting for LOOKUP_CACHE_SIZE is {} at the cost of higher memory usage.\n",cacheParam);
0 commit comments