Index: src/v8-counters.h |
=================================================================== |
--- src/v8-counters.h (revision 4215) |
+++ src/v8-counters.h (working copy) |
@@ -97,7 +97,11 @@ |
/* Amount of source code compiled with the old codegen. */ \ |
SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \ |
/* Amount of source code compiled with the full codegen. */ \ |
- SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) |
+ SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ |
+ /* Number of contexts created from scratch. */ \ |
+ SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ |
+ /* Number of contexts created by partial snapshot. */ \ |
+ SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) |
#define STATS_COUNTER_LIST_2(SC) \ |
@@ -187,6 +191,7 @@ |
SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ |
SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) |
+ |
// This file contains all the v8 counters that are in use. |
class Counters : AllStatic { |
public: |