| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 | 88 |
| 89 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC | 89 // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC |
| 90 // Intellisense to crash. It was broken into two macros (each of length 40 | 90 // Intellisense to crash. It was broken into two macros (each of length 40 |
| 91 // lines) rather than one macro (of length about 80 lines) to work around | 91 // lines) rather than one macro (of length about 80 lines) to work around |
| 92 // this problem. Please avoid using recursive macros of this length when | 92 // this problem. Please avoid using recursive macros of this length when |
| 93 // possible. | 93 // possible. |
| 94 #define STATS_COUNTER_LIST_1(SC) \ | 94 #define STATS_COUNTER_LIST_1(SC) \ |
| 95 /* Global Handle Count*/ \ | 95 /* Global Handle Count*/ \ |
| 96 SC(global_handles, V8.GlobalHandles) \ | 96 SC(global_handles, V8.GlobalHandles) \ |
| 97 /* Mallocs from PCRE */ \ | |
| 98 SC(pcre_mallocs, V8.PcreMallocCount) \ | |
| 99 /* OS Memory allocated */ \ | 97 /* OS Memory allocated */ \ |
| 100 SC(memory_allocated, V8.OsMemoryAllocated) \ | 98 SC(memory_allocated, V8.OsMemoryAllocated) \ |
| 101 SC(normalized_maps, V8.NormalizedMaps) \ | 99 SC(normalized_maps, V8.NormalizedMaps) \ |
| 102 SC(props_to_dictionary, V8.ObjectPropertiesToDictionary) \ | 100 SC(props_to_dictionary, V8.ObjectPropertiesToDictionary) \ |
| 103 SC(elements_to_dictionary, V8.ObjectElementsToDictionary) \ | 101 SC(elements_to_dictionary, V8.ObjectElementsToDictionary) \ |
| 104 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ | 102 SC(alive_after_last_gc, V8.AliveAfterLastGC) \ |
| 105 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ | 103 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \ |
| 106 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ | 104 SC(objs_since_last_full, V8.ObjsSinceLastFull) \ |
| 107 SC(string_table_capacity, V8.StringTableCapacity) \ | 105 SC(string_table_capacity, V8.StringTableCapacity) \ |
| 108 SC(number_of_symbols, V8.NumberOfSymbols) \ | 106 SC(number_of_symbols, V8.NumberOfSymbols) \ |
| 109 SC(script_wrappers, V8.ScriptWrappers) \ | 107 SC(script_wrappers, V8.ScriptWrappers) \ |
| 110 SC(call_initialize_stubs, V8.CallInitializeStubs) \ | 108 SC(call_initialize_stubs, V8.CallInitializeStubs) \ |
| 111 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ | 109 SC(call_premonomorphic_stubs, V8.CallPreMonomorphicStubs) \ |
| 112 SC(call_normal_stubs, V8.CallNormalStubs) \ | 110 SC(call_normal_stubs, V8.CallNormalStubs) \ |
| 113 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ | 111 SC(call_megamorphic_stubs, V8.CallMegamorphicStubs) \ |
| 114 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ | 112 SC(arguments_adaptors, V8.ArgumentsAdaptors) \ |
| 115 SC(compilation_cache_hits, V8.CompilationCacheHits) \ | 113 SC(compilation_cache_hits, V8.CompilationCacheHits) \ |
| 116 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ | 114 SC(compilation_cache_misses, V8.CompilationCacheMisses) \ |
| 117 SC(regexp_cache_hits, V8.RegExpCacheHits) \ | |
| 118 SC(regexp_cache_misses, V8.RegExpCacheMisses) \ | |
| 119 SC(string_ctor_calls, V8.StringConstructorCalls) \ | 115 SC(string_ctor_calls, V8.StringConstructorCalls) \ |
| 120 SC(string_ctor_conversions, V8.StringConstructorConversions) \ | 116 SC(string_ctor_conversions, V8.StringConstructorConversions) \ |
| 121 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \ | 117 SC(string_ctor_cached_number, V8.StringConstructorCachedNumber) \ |
| 122 SC(string_ctor_string_value, V8.StringConstructorStringValue) \ | 118 SC(string_ctor_string_value, V8.StringConstructorStringValue) \ |
| 123 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \ | 119 SC(string_ctor_gc_required, V8.StringConstructorGCRequired) \ |
| 124 /* Amount of evaled source code. */ \ | 120 /* Amount of evaled source code. */ \ |
| 125 SC(total_eval_size, V8.TotalEvalSize) \ | 121 SC(total_eval_size, V8.TotalEvalSize) \ |
| 126 /* Amount of loaded source code. */ \ | 122 /* Amount of loaded source code. */ \ |
| 127 SC(total_load_size, V8.TotalLoadSize) \ | 123 SC(total_load_size, V8.TotalLoadSize) \ |
| 128 /* Amount of parsed source code. */ \ | 124 /* Amount of parsed source code. */ \ |
| 129 SC(total_parse_size, V8.TotalParseSize) \ | 125 SC(total_parse_size, V8.TotalParseSize) \ |
| 130 /* Amount of source code skipped over using preparsing. */ \ | 126 /* Amount of source code skipped over using preparsing. */ \ |
| 131 SC(total_preparse_skipped, V8.TotalPreparseSkipped) \ | 127 SC(total_preparse_skipped, V8.TotalPreparseSkipped) \ |
| 132 /* Number of symbol lookups skipped using preparsing */ \ | 128 /* Number of symbol lookups skipped using preparsing */ \ |
| 133 SC(total_preparse_symbols_skipped, V8.TotalPreparseSymbolSkipped) \ | 129 SC(total_preparse_symbols_skipped, V8.TotalPreparseSymbolSkipped) \ |
| 134 /* Amount of compiled source code. */ \ | 130 /* Amount of compiled source code. */ \ |
| 135 SC(total_compile_size, V8.TotalCompileSize) \ | 131 SC(total_compile_size, V8.TotalCompileSize) \ |
| 136 /* Amount of source code compiled with the old codegen. */ \ | |
| 137 SC(total_old_codegen_source_size, V8.TotalOldCodegenSourceSize) \ | |
| 138 /* Amount of source code compiled with the full codegen. */ \ | 132 /* Amount of source code compiled with the full codegen. */ \ |
| 139 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ | 133 SC(total_full_codegen_source_size, V8.TotalFullCodegenSourceSize) \ |
| 140 /* Number of contexts created from scratch. */ \ | 134 /* Number of contexts created from scratch. */ \ |
| 141 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ | 135 SC(contexts_created_from_scratch, V8.ContextsCreatedFromScratch) \ |
| 142 /* Number of contexts created by partial snapshot. */ \ | 136 /* Number of contexts created by partial snapshot. */ \ |
| 143 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \ | 137 SC(contexts_created_by_snapshot, V8.ContextsCreatedBySnapshot) \ |
| 144 /* Number of code objects found from pc. */ \ | 138 /* Number of code objects found from pc. */ \ |
| 145 SC(pc_to_code, V8.PcToCode) \ | 139 SC(pc_to_code, V8.PcToCode) \ |
| 146 SC(pc_to_code_cached, V8.PcToCodeCached) \ | 140 SC(pc_to_code_cached, V8.PcToCodeCached) \ |
| 147 /* The store-buffer implementation of the write barrier. */ \ | 141 /* The store-buffer implementation of the write barrier. */ \ |
| 148 SC(store_buffer_compactions, V8.StoreBufferCompactions) \ | 142 SC(store_buffer_compactions, V8.StoreBufferCompactions) \ |
| 149 SC(store_buffer_overflows, V8.StoreBufferOverflows) | 143 SC(store_buffer_overflows, V8.StoreBufferOverflows) |
| 150 | 144 |
| 151 | 145 |
| 152 #define STATS_COUNTER_LIST_2(SC) \ | 146 #define STATS_COUNTER_LIST_2(SC) \ |
| 153 /* Number of code stubs. */ \ | 147 /* Number of code stubs. */ \ |
| 154 SC(code_stubs, V8.CodeStubs) \ | 148 SC(code_stubs, V8.CodeStubs) \ |
| 155 /* Amount of stub code. */ \ | 149 /* Amount of stub code. */ \ |
| 156 SC(total_stubs_code_size, V8.TotalStubsCodeSize) \ | 150 SC(total_stubs_code_size, V8.TotalStubsCodeSize) \ |
| 157 /* Amount of (JS) compiled code. */ \ | 151 /* Amount of (JS) compiled code. */ \ |
| 158 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \ | 152 SC(total_compiled_code_size, V8.TotalCompiledCodeSize) \ |
| 159 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \ | 153 SC(gc_compactor_caused_by_request, V8.GCCompactorCausedByRequest) \ |
| 160 SC(gc_compactor_caused_by_promoted_data, \ | 154 SC(gc_compactor_caused_by_promoted_data, \ |
| 161 V8.GCCompactorCausedByPromotedData) \ | 155 V8.GCCompactorCausedByPromotedData) \ |
| 162 SC(gc_compactor_caused_by_oldspace_exhaustion, \ | 156 SC(gc_compactor_caused_by_oldspace_exhaustion, \ |
| 163 V8.GCCompactorCausedByOldspaceExhaustion) \ | 157 V8.GCCompactorCausedByOldspaceExhaustion) \ |
| 164 SC(gc_compactor_caused_by_weak_handles, \ | |
| 165 V8.GCCompactorCausedByWeakHandles) \ | |
| 166 SC(gc_last_resort_from_js, V8.GCLastResortFromJS) \ | 158 SC(gc_last_resort_from_js, V8.GCLastResortFromJS) \ |
| 167 SC(gc_last_resort_from_handles, V8.GCLastResortFromHandles) \ | 159 SC(gc_last_resort_from_handles, V8.GCLastResortFromHandles) \ |
| 168 /* How is the generic keyed-load stub used? */ \ | 160 /* How is the generic keyed-load stub used? */ \ |
| 169 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \ | 161 SC(keyed_load_generic_smi, V8.KeyedLoadGenericSmi) \ |
| 170 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ | 162 SC(keyed_load_generic_symbol, V8.KeyedLoadGenericSymbol) \ |
| 171 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \ | 163 SC(keyed_load_generic_lookup_cache, V8.KeyedLoadGenericLookupCache) \ |
| 172 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ | 164 SC(keyed_load_generic_slow, V8.KeyedLoadGenericSlow) \ |
| 173 SC(keyed_load_polymorphic_stubs, V8.KeyedLoadPolymorphicStubs) \ | 165 SC(keyed_load_polymorphic_stubs, V8.KeyedLoadPolymorphicStubs) \ |
| 174 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \ | 166 SC(keyed_load_external_array_slow, V8.KeyedLoadExternalArraySlow) \ |
| 175 /* How is the generic keyed-call stub used? */ \ | 167 /* How is the generic keyed-call stub used? */ \ |
| 176 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \ | 168 SC(keyed_call_generic_smi_fast, V8.KeyedCallGenericSmiFast) \ |
| 177 SC(keyed_call_generic_smi_dict, V8.KeyedCallGenericSmiDict) \ | 169 SC(keyed_call_generic_smi_dict, V8.KeyedCallGenericSmiDict) \ |
| 178 SC(keyed_call_generic_lookup_cache, V8.KeyedCallGenericLookupCache) \ | 170 SC(keyed_call_generic_lookup_cache, V8.KeyedCallGenericLookupCache) \ |
| 179 SC(keyed_call_generic_lookup_dict, V8.KeyedCallGenericLookupDict) \ | 171 SC(keyed_call_generic_lookup_dict, V8.KeyedCallGenericLookupDict) \ |
| 180 SC(keyed_call_generic_value_type, V8.KeyedCallGenericValueType) \ | |
| 181 SC(keyed_call_generic_slow, V8.KeyedCallGenericSlow) \ | 172 SC(keyed_call_generic_slow, V8.KeyedCallGenericSlow) \ |
| 182 SC(keyed_call_generic_slow_load, V8.KeyedCallGenericSlowLoad) \ | 173 SC(keyed_call_generic_slow_load, V8.KeyedCallGenericSlowLoad) \ |
| 183 /* Count how much the monomorphic keyed-load stubs are hit. */ \ | |
| 184 SC(keyed_load_function_prototype, V8.KeyedLoadFunctionPrototype) \ | |
| 185 SC(keyed_load_string_length, V8.KeyedLoadStringLength) \ | |
| 186 SC(keyed_load_array_length, V8.KeyedLoadArrayLength) \ | |
| 187 SC(keyed_load_constant_function, V8.KeyedLoadConstantFunction) \ | |
| 188 SC(keyed_load_field, V8.KeyedLoadField) \ | |
| 189 SC(keyed_load_callback, V8.KeyedLoadCallback) \ | |
| 190 SC(keyed_load_interceptor, V8.KeyedLoadInterceptor) \ | |
| 191 SC(keyed_load_inline, V8.KeyedLoadInline) \ | |
| 192 SC(keyed_load_inline_miss, V8.KeyedLoadInlineMiss) \ | |
| 193 SC(named_load_inline, V8.NamedLoadInline) \ | |
| 194 SC(named_load_inline_miss, V8.NamedLoadInlineMiss) \ | |
| 195 SC(named_load_global_inline, V8.NamedLoadGlobalInline) \ | |
| 196 SC(named_load_global_inline_miss, V8.NamedLoadGlobalInlineMiss) \ | |
| 197 SC(dont_delete_hint_hit, V8.DontDeleteHintHit) \ | |
| 198 SC(dont_delete_hint_miss, V8.DontDeleteHintMiss) \ | |
| 199 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \ | 174 SC(named_load_global_stub, V8.NamedLoadGlobalStub) \ |
| 200 SC(named_load_global_stub_miss, V8.NamedLoadGlobalStubMiss) \ | |
| 201 SC(keyed_store_field, V8.KeyedStoreField) \ | |
| 202 SC(named_store_inline_field, V8.NamedStoreInlineField) \ | |
| 203 SC(keyed_store_inline, V8.KeyedStoreInline) \ | |
| 204 SC(named_load_inline_generic, V8.NamedLoadInlineGeneric) \ | |
| 205 SC(named_load_inline_field, V8.NamedLoadInlineFast) \ | |
| 206 SC(keyed_load_inline_generic, V8.KeyedLoadInlineGeneric) \ | |
| 207 SC(keyed_load_inline_fast, V8.KeyedLoadInlineFast) \ | |
| 208 SC(keyed_store_inline_generic, V8.KeyedStoreInlineGeneric) \ | |
| 209 SC(keyed_store_inline_fast, V8.KeyedStoreInlineFast) \ | |
| 210 SC(named_store_inline_generic, V8.NamedStoreInlineGeneric) \ | |
| 211 SC(named_store_inline_fast, V8.NamedStoreInlineFast) \ | |
| 212 SC(keyed_store_inline_miss, V8.KeyedStoreInlineMiss) \ | |
| 213 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ | 175 SC(named_store_global_inline, V8.NamedStoreGlobalInline) \ |
| 214 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ | 176 SC(named_store_global_inline_miss, V8.NamedStoreGlobalInlineMiss) \ |
| 215 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \ | 177 SC(keyed_store_polymorphic_stubs, V8.KeyedStorePolymorphicStubs) \ |
| 216 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \ | 178 SC(keyed_store_external_array_slow, V8.KeyedStoreExternalArraySlow) \ |
| 217 SC(store_normal_miss, V8.StoreNormalMiss) \ | 179 SC(store_normal_miss, V8.StoreNormalMiss) \ |
| 218 SC(store_normal_hit, V8.StoreNormalHit) \ | 180 SC(store_normal_hit, V8.StoreNormalHit) \ |
| 219 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ | 181 SC(cow_arrays_created_stub, V8.COWArraysCreatedStub) \ |
| 220 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ | 182 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ |
| 221 SC(cow_arrays_converted, V8.COWArraysConverted) \ | 183 SC(cow_arrays_converted, V8.COWArraysConverted) \ |
| 222 SC(call_miss, V8.CallMiss) \ | 184 SC(call_miss, V8.CallMiss) \ |
| 223 SC(keyed_call_miss, V8.KeyedCallMiss) \ | 185 SC(keyed_call_miss, V8.KeyedCallMiss) \ |
| 224 SC(load_miss, V8.LoadMiss) \ | 186 SC(load_miss, V8.LoadMiss) \ |
| 225 SC(keyed_load_miss, V8.KeyedLoadMiss) \ | 187 SC(keyed_load_miss, V8.KeyedLoadMiss) \ |
| 226 SC(call_const, V8.CallConst) \ | 188 SC(call_const, V8.CallConst) \ |
| 227 SC(call_const_fast_api, V8.CallConstFastApi) \ | 189 SC(call_const_fast_api, V8.CallConstFastApi) \ |
| 228 SC(call_const_interceptor, V8.CallConstInterceptor) \ | 190 SC(call_const_interceptor, V8.CallConstInterceptor) \ |
| 229 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ | 191 SC(call_const_interceptor_fast_api, V8.CallConstInterceptorFastApi) \ |
| 230 SC(call_global_inline, V8.CallGlobalInline) \ | 192 SC(call_global_inline, V8.CallGlobalInline) \ |
| 231 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ | 193 SC(call_global_inline_miss, V8.CallGlobalInlineMiss) \ |
| 232 SC(constructed_objects, V8.ConstructedObjects) \ | 194 SC(constructed_objects, V8.ConstructedObjects) \ |
| 233 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ | 195 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ |
| 234 SC(constructed_objects_stub, V8.ConstructedObjectsStub) \ | |
| 235 SC(negative_lookups, V8.NegativeLookups) \ | 196 SC(negative_lookups, V8.NegativeLookups) \ |
| 236 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ | 197 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ |
| 237 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \ | 198 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \ |
| 238 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \ | 199 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \ |
| 239 SC(megamorphic_stub_cache_updates, V8.MegamorphicStubCacheUpdates) \ | 200 SC(megamorphic_stub_cache_updates, V8.MegamorphicStubCacheUpdates) \ |
| 240 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ | 201 SC(array_function_runtime, V8.ArrayFunctionRuntime) \ |
| 241 SC(array_function_native, V8.ArrayFunctionNative) \ | 202 SC(array_function_native, V8.ArrayFunctionNative) \ |
| 242 SC(for_in, V8.ForIn) \ | 203 SC(for_in, V8.ForIn) \ |
| 243 SC(enum_cache_hits, V8.EnumCacheHits) \ | 204 SC(enum_cache_hits, V8.EnumCacheHits) \ |
| 244 SC(enum_cache_misses, V8.EnumCacheMisses) \ | 205 SC(enum_cache_misses, V8.EnumCacheMisses) \ |
| 245 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ | 206 SC(zone_segment_bytes, V8.ZoneSegmentBytes) \ |
| 246 SC(compute_entry_frame, V8.ComputeEntryFrame) \ | |
| 247 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ | 207 SC(generic_binary_stub_calls, V8.GenericBinaryStubCalls) \ |
| 248 SC(generic_binary_stub_calls_regs, V8.GenericBinaryStubCallsRegs) \ | |
| 249 SC(fast_new_closure_total, V8.FastNewClosureTotal) \ | 208 SC(fast_new_closure_total, V8.FastNewClosureTotal) \ |
| 250 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \ | 209 SC(fast_new_closure_try_optimized, V8.FastNewClosureTryOptimized) \ |
| 251 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \ | 210 SC(fast_new_closure_install_optimized, V8.FastNewClosureInstallOptimized) \ |
| 252 SC(string_add_runtime, V8.StringAddRuntime) \ | 211 SC(string_add_runtime, V8.StringAddRuntime) \ |
| 253 SC(string_add_native, V8.StringAddNative) \ | 212 SC(string_add_native, V8.StringAddNative) \ |
| 254 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ | 213 SC(string_add_runtime_ext_to_ascii, V8.StringAddRuntimeExtToAscii) \ |
| 255 SC(sub_string_runtime, V8.SubStringRuntime) \ | 214 SC(sub_string_runtime, V8.SubStringRuntime) \ |
| 256 SC(sub_string_native, V8.SubStringNative) \ | 215 SC(sub_string_native, V8.SubStringNative) \ |
| 257 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ | 216 SC(string_add_make_two_char, V8.StringAddMakeTwoChar) \ |
| 258 SC(string_compare_native, V8.StringCompareNative) \ | 217 SC(string_compare_native, V8.StringCompareNative) \ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 272 SC(math_log, V8.MathLog) \ | 231 SC(math_log, V8.MathLog) \ |
| 273 SC(math_pow, V8.MathPow) \ | 232 SC(math_pow, V8.MathPow) \ |
| 274 SC(math_round, V8.MathRound) \ | 233 SC(math_round, V8.MathRound) \ |
| 275 SC(math_sin, V8.MathSin) \ | 234 SC(math_sin, V8.MathSin) \ |
| 276 SC(math_sqrt, V8.MathSqrt) \ | 235 SC(math_sqrt, V8.MathSqrt) \ |
| 277 SC(math_tan, V8.MathTan) \ | 236 SC(math_tan, V8.MathTan) \ |
| 278 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ | 237 SC(transcendental_cache_hit, V8.TranscendentalCacheHit) \ |
| 279 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ | 238 SC(transcendental_cache_miss, V8.TranscendentalCacheMiss) \ |
| 280 SC(stack_interrupts, V8.StackInterrupts) \ | 239 SC(stack_interrupts, V8.StackInterrupts) \ |
| 281 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ | 240 SC(runtime_profiler_ticks, V8.RuntimeProfilerTicks) \ |
| 282 SC(smi_checks_removed, V8.SmiChecksRemoved) \ | |
| 283 SC(map_checks_removed, V8.MapChecksRemoved) \ | |
| 284 SC(quote_json_char_count, V8.QuoteJsonCharacterCount) \ | |
| 285 SC(quote_json_char_recount, V8.QuoteJsonCharacterReCount) \ | |
| 286 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ | 241 SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ |
| 287 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ | 242 SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ |
| 288 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ | 243 SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ |
| 289 SC(old_pointer_space_bytes_available, \ | 244 SC(old_pointer_space_bytes_available, \ |
| 290 V8.MemoryOldPointerSpaceBytesAvailable) \ | 245 V8.MemoryOldPointerSpaceBytesAvailable) \ |
| 291 SC(old_pointer_space_bytes_committed, \ | 246 SC(old_pointer_space_bytes_committed, \ |
| 292 V8.MemoryOldPointerSpaceBytesCommitted) \ | 247 V8.MemoryOldPointerSpaceBytesCommitted) \ |
| 293 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ | 248 SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ |
| 294 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ | 249 SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ |
| 295 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ | 250 SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 friend class Isolate; | 388 friend class Isolate; |
| 434 | 389 |
| 435 explicit Counters(Isolate* isolate); | 390 explicit Counters(Isolate* isolate); |
| 436 | 391 |
| 437 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 392 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 438 }; | 393 }; |
| 439 | 394 |
| 440 } } // namespace v8::internal | 395 } } // namespace v8::internal |
| 441 | 396 |
| 442 #endif // V8_V8_COUNTERS_H_ | 397 #endif // V8_V8_COUNTERS_H_ |
| OLD | NEW |