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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 V(LoadIC_LoadFieldFromPrototypeDH) \ | 776 V(LoadIC_LoadFieldFromPrototypeDH) \ |
777 V(LoadIC_LoadField) \ | 777 V(LoadIC_LoadField) \ |
778 V(LoadIC_LoadFieldStub) \ | 778 V(LoadIC_LoadFieldStub) \ |
779 V(LoadIC_LoadGlobal) \ | 779 V(LoadIC_LoadGlobal) \ |
780 V(LoadIC_LoadInterceptor) \ | 780 V(LoadIC_LoadInterceptor) \ |
781 V(LoadIC_LoadNonexistentDH) \ | 781 V(LoadIC_LoadNonexistentDH) \ |
782 V(LoadIC_LoadNonexistent) \ | 782 V(LoadIC_LoadNonexistent) \ |
783 V(LoadIC_LoadNormal) \ | 783 V(LoadIC_LoadNormal) \ |
784 V(LoadIC_LoadScriptContextFieldStub) \ | 784 V(LoadIC_LoadScriptContextFieldStub) \ |
785 V(LoadIC_LoadViaGetter) \ | 785 V(LoadIC_LoadViaGetter) \ |
| 786 V(LoadIC_NonReceiver) \ |
786 V(LoadIC_Premonomorphic) \ | 787 V(LoadIC_Premonomorphic) \ |
787 V(LoadIC_SlowStub) \ | 788 V(LoadIC_SlowStub) \ |
788 V(LoadIC_StringLengthStub) \ | 789 V(LoadIC_StringLengthStub) \ |
789 V(StoreIC_HandlerCacheHit_AccessCheck) \ | 790 V(StoreIC_HandlerCacheHit_AccessCheck) \ |
790 V(StoreIC_HandlerCacheHit_Exotic) \ | 791 V(StoreIC_HandlerCacheHit_Exotic) \ |
791 V(StoreIC_HandlerCacheHit_Interceptor) \ | 792 V(StoreIC_HandlerCacheHit_Interceptor) \ |
792 V(StoreIC_HandlerCacheHit_JSProxy) \ | 793 V(StoreIC_HandlerCacheHit_JSProxy) \ |
793 V(StoreIC_HandlerCacheHit_NonExistent) \ | 794 V(StoreIC_HandlerCacheHit_NonExistent) \ |
794 V(StoreIC_HandlerCacheHit_Accessor) \ | 795 V(StoreIC_HandlerCacheHit_Accessor) \ |
795 V(StoreIC_HandlerCacheHit_Data) \ | 796 V(StoreIC_HandlerCacheHit_Data) \ |
796 V(StoreIC_HandlerCacheHit_Transition) \ | 797 V(StoreIC_HandlerCacheHit_Transition) \ |
| 798 V(StoreIC_NonReceiver) \ |
797 V(StoreIC_Premonomorphic) \ | 799 V(StoreIC_Premonomorphic) \ |
798 V(StoreIC_SlowStub) \ | 800 V(StoreIC_SlowStub) \ |
799 V(StoreIC_StoreCallback) \ | 801 V(StoreIC_StoreCallback) \ |
800 V(StoreIC_StoreField) \ | 802 V(StoreIC_StoreField) \ |
801 V(StoreIC_StoreFieldDH) \ | 803 V(StoreIC_StoreFieldDH) \ |
802 V(StoreIC_StoreFieldStub) \ | 804 V(StoreIC_StoreFieldStub) \ |
803 V(StoreIC_StoreGlobal) \ | 805 V(StoreIC_StoreGlobal) \ |
804 V(StoreIC_StoreGlobalTransition) \ | 806 V(StoreIC_StoreGlobalTransition) \ |
805 V(StoreIC_StoreInterceptorStub) \ | 807 V(StoreIC_StoreInterceptorStub) \ |
806 V(StoreIC_StoreNormal) \ | 808 V(StoreIC_StoreNormal) \ |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1324 | 1326 |
1325 explicit Counters(Isolate* isolate); | 1327 explicit Counters(Isolate* isolate); |
1326 | 1328 |
1327 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1329 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1328 }; | 1330 }; |
1329 | 1331 |
1330 } // namespace internal | 1332 } // namespace internal |
1331 } // namespace v8 | 1333 } // namespace v8 |
1332 | 1334 |
1333 #endif // V8_COUNTERS_H_ | 1335 #endif // V8_COUNTERS_H_ |
OLD | NEW |