| 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/platform/elapsed-timer.h" | 10 #include "src/base/platform/elapsed-timer.h" |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 V(KeyedLoadIC_LoadIndexedInterceptorStub) \ | 699 V(KeyedLoadIC_LoadIndexedInterceptorStub) \ |
| 700 V(KeyedLoadIC_KeyedLoadSloppyArgumentsStub) \ | 700 V(KeyedLoadIC_KeyedLoadSloppyArgumentsStub) \ |
| 701 V(KeyedLoadIC_LoadFastElementStub) \ | 701 V(KeyedLoadIC_LoadFastElementStub) \ |
| 702 V(KeyedLoadIC_LoadDictionaryElementStub) \ | 702 V(KeyedLoadIC_LoadDictionaryElementStub) \ |
| 703 V(KeyedLoadIC_PolymorphicElement) \ | 703 V(KeyedLoadIC_PolymorphicElement) \ |
| 704 V(KeyedStoreIC_KeyedStoreSloppyArgumentsStub) \ | 704 V(KeyedStoreIC_KeyedStoreSloppyArgumentsStub) \ |
| 705 V(KeyedStoreIC_StoreFastElementStub) \ | 705 V(KeyedStoreIC_StoreFastElementStub) \ |
| 706 V(KeyedStoreIC_StoreElementStub) \ | 706 V(KeyedStoreIC_StoreElementStub) \ |
| 707 V(KeyedStoreIC_Polymorphic) \ | 707 V(KeyedStoreIC_Polymorphic) \ |
| 708 V(LoadIC_FunctionPrototypeStub) \ | 708 V(LoadIC_FunctionPrototypeStub) \ |
| 709 V(LoadIC_ArrayBufferViewLoadFieldStub) \ | |
| 710 V(LoadIC_LoadApiGetterStub) \ | 709 V(LoadIC_LoadApiGetterStub) \ |
| 711 V(LoadIC_LoadCallback) \ | 710 V(LoadIC_LoadCallback) \ |
| 712 V(LoadIC_LoadConstant) \ | 711 V(LoadIC_LoadConstant) \ |
| 713 V(LoadIC_LoadConstantStub) \ | 712 V(LoadIC_LoadConstantStub) \ |
| 714 V(LoadIC_LoadField) \ | 713 V(LoadIC_LoadField) \ |
| 715 V(LoadIC_LoadFieldStub) \ | 714 V(LoadIC_LoadFieldStub) \ |
| 716 V(LoadIC_LoadGlobal) \ | 715 V(LoadIC_LoadGlobal) \ |
| 717 V(LoadIC_LoadInterceptor) \ | 716 V(LoadIC_LoadInterceptor) \ |
| 718 V(LoadIC_LoadNonexistent) \ | 717 V(LoadIC_LoadNonexistent) \ |
| 719 V(LoadIC_LoadNormal) \ | 718 V(LoadIC_LoadNormal) \ |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 | 1231 |
| 1233 explicit Counters(Isolate* isolate); | 1232 explicit Counters(Isolate* isolate); |
| 1234 | 1233 |
| 1235 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1234 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1236 }; | 1235 }; |
| 1237 | 1236 |
| 1238 } // namespace internal | 1237 } // namespace internal |
| 1239 } // namespace v8 | 1238 } // namespace v8 |
| 1240 | 1239 |
| 1241 #endif // V8_COUNTERS_H_ | 1240 #endif // V8_COUNTERS_H_ |
| OLD | NEW |