| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_COUNTERS_H_ | 5 #ifndef V8_COUNTERS_H_ |
| 6 #define V8_COUNTERS_H_ | 6 #define V8_COUNTERS_H_ |
| 7 | 7 |
| 8 #include "include/v8.h" | 8 #include "include/v8.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/base/atomic-utils.h" | 10 #include "src/base/atomic-utils.h" |
| (...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 SC(ic_keyed_load_generic_smi, V8.ICKeyedLoadGenericSmi) \ | 1081 SC(ic_keyed_load_generic_smi, V8.ICKeyedLoadGenericSmi) \ |
| 1082 SC(ic_keyed_load_generic_symbol, V8.ICKeyedLoadGenericSymbol) \ | 1082 SC(ic_keyed_load_generic_symbol, V8.ICKeyedLoadGenericSymbol) \ |
| 1083 SC(ic_keyed_load_generic_slow, V8.ICKeyedLoadGenericSlow) \ | 1083 SC(ic_keyed_load_generic_slow, V8.ICKeyedLoadGenericSlow) \ |
| 1084 SC(ic_named_load_global_stub, V8.ICNamedLoadGlobalStub) \ | 1084 SC(ic_named_load_global_stub, V8.ICNamedLoadGlobalStub) \ |
| 1085 SC(ic_store_normal_miss, V8.ICStoreNormalMiss) \ | 1085 SC(ic_store_normal_miss, V8.ICStoreNormalMiss) \ |
| 1086 SC(ic_store_normal_hit, V8.ICStoreNormalHit) \ | 1086 SC(ic_store_normal_hit, V8.ICStoreNormalHit) \ |
| 1087 SC(ic_binary_op_miss, V8.ICBinaryOpMiss) \ | 1087 SC(ic_binary_op_miss, V8.ICBinaryOpMiss) \ |
| 1088 SC(ic_compare_miss, V8.ICCompareMiss) \ | 1088 SC(ic_compare_miss, V8.ICCompareMiss) \ |
| 1089 SC(ic_call_miss, V8.ICCallMiss) \ | 1089 SC(ic_call_miss, V8.ICCallMiss) \ |
| 1090 SC(ic_keyed_call_miss, V8.ICKeyedCallMiss) \ | 1090 SC(ic_keyed_call_miss, V8.ICKeyedCallMiss) \ |
| 1091 SC(ic_load_miss, V8.ICLoadMiss) \ | |
| 1092 SC(ic_keyed_load_miss, V8.ICKeyedLoadMiss) \ | |
| 1093 SC(ic_store_miss, V8.ICStoreMiss) \ | 1091 SC(ic_store_miss, V8.ICStoreMiss) \ |
| 1094 SC(ic_keyed_store_miss, V8.ICKeyedStoreMiss) \ | 1092 SC(ic_keyed_store_miss, V8.ICKeyedStoreMiss) \ |
| 1095 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ | 1093 SC(cow_arrays_created_runtime, V8.COWArraysCreatedRuntime) \ |
| 1096 SC(cow_arrays_converted, V8.COWArraysConverted) \ | 1094 SC(cow_arrays_converted, V8.COWArraysConverted) \ |
| 1097 SC(constructed_objects, V8.ConstructedObjects) \ | 1095 SC(constructed_objects, V8.ConstructedObjects) \ |
| 1098 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ | 1096 SC(constructed_objects_runtime, V8.ConstructedObjectsRuntime) \ |
| 1099 SC(negative_lookups, V8.NegativeLookups) \ | 1097 SC(negative_lookups, V8.NegativeLookups) \ |
| 1100 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ | 1098 SC(negative_lookups_miss, V8.NegativeLookupsMiss) \ |
| 1101 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \ | 1099 SC(megamorphic_stub_cache_probes, V8.MegamorphicStubCacheProbes) \ |
| 1102 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \ | 1100 SC(megamorphic_stub_cache_misses, V8.MegamorphicStubCacheMisses) \ |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1331 |
| 1334 explicit Counters(Isolate* isolate); | 1332 explicit Counters(Isolate* isolate); |
| 1335 | 1333 |
| 1336 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1334 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1337 }; | 1335 }; |
| 1338 | 1336 |
| 1339 } // namespace internal | 1337 } // namespace internal |
| 1340 } // namespace v8 | 1338 } // namespace v8 |
| 1341 | 1339 |
| 1342 #endif // V8_COUNTERS_H_ | 1340 #endif // V8_COUNTERS_H_ |
| OLD | NEW |