diff options
Diffstat (limited to 'lib/Core/StatsTracker.cpp')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index 6dc13df8..83e1844f 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -412,6 +412,8 @@ void StatsTracker::writeStatsHeader() { << "'CexCacheTime'," << "'ForkTime'," << "'ResolveTime'," + << "'QueryCexCacheMisses'," + << "'QueryCexCacheHits'," #ifdef DEBUG << "'ArrayHashTime'," #endif @@ -442,6 +444,8 @@ void StatsTracker::writeStatsLine() { << "," << stats::cexCacheTime / 1000000. << "," << stats::forkTime / 1000000. << "," << stats::resolveTime / 1000000. + << "," << stats::queryCexCacheMisses + << "," << stats::queryCexCacheHits #ifdef DEBUG << "," << stats::arrayHashTime / 1000000. #endif |