OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ | 121 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ |
122 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ | 122 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ |
123 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ | 123 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ |
124 SC(string_table_capacity, V8.StringTableCapacity) \ | 124 SC(string_table_capacity, V8.StringTableCapacity) \ |
125 SC(number_of_symbols, V8.NumberOfSymbols) \ | 125 SC(number_of_symbols, V8.NumberOfSymbols) \ |
126 SC(script_wrappers, V8.ScriptWrappers) \ | 126 SC(script_wrappers, V8.ScriptWrappers) \ |
127 SC(call_initialize_stubs, V8.CallInitializeStubs) \ | 127 SC(call_initialize_stubs, V8.CallInitializeStubs) \ |
128 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ | 128 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ |
129 SC(call_normal_stubs, V8.CallNormalStubs) \ | 129 SC(call_normal_stubs, V8.CallNormalStubs) \ |
130 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ | 130 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ |
131 SC(inlined_copyied_elements, V8.InlinedCopiedElements) \ | |
132 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ | 131 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ |
133 SC(compilation_cache_hits, V8.CompilationCacheHits) \ | 132 SC(compilation_cache_hits, V8.CompilationCacheHits) \ |
134 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ | 133 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ |
135 SC(string_ctor_calls, V8.StringConstructorCalls) \ | 134 SC(string_ctor_calls, V8.StringConstructorCalls) \ |
136 SC(string_ctor_conversions, V8.StringConstructorConversions) \ | 135 SC(string_ctor_conversions, V8.StringConstructorConversions) \ |
137 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \ | 136 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \ |
138 SC(string_ctor_string_value, V8.StringConstructorStringValue) \ | 137 SC(string_ctor_string_value, V8.StringConstructorStringValue) \ |
139 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \ | 138 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \ |
140 /* Amount of evaled source code. */ \ | 139 /* Amount of evaled source code. */ \ |
141 SC(total_eval_size, V8.TotalEvalSize) \ | 140 SC(total_eval_size, V8.TotalEvalSize) \ |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 friend class Isolate; | 426 friend class Isolate; |
428 | 427 |
429 explicit Counters(Isolate* isolate); | 428 explicit Counters(Isolate* isolate); |
430 | 429 |
431 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 430 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
432 }; | 431 }; |
433 | 432 |
434 } } // namespace v8::internal | 433 } } // namespace v8::internal |
435 | 434 |
436 #endif // V8_V8_COUNTERS_H_ | 435 #endif // V8_V8_COUNTERS_H_ |
OLD | NEW |