| 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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 V(KeyedStoreIC_Polymorphic) \ | 745 V(KeyedStoreIC_Polymorphic) \ |
| 746 V(LoadIC_FunctionPrototypeStub) \ | 746 V(LoadIC_FunctionPrototypeStub) \ |
| 747 V(LoadIC_HandlerCacheHit_AccessCheck) \ | 747 V(LoadIC_HandlerCacheHit_AccessCheck) \ |
| 748 V(LoadIC_HandlerCacheHit_Exotic) \ | 748 V(LoadIC_HandlerCacheHit_Exotic) \ |
| 749 V(LoadIC_HandlerCacheHit_Interceptor) \ | 749 V(LoadIC_HandlerCacheHit_Interceptor) \ |
| 750 V(LoadIC_HandlerCacheHit_JSProxy) \ | 750 V(LoadIC_HandlerCacheHit_JSProxy) \ |
| 751 V(LoadIC_HandlerCacheHit_NonExistent) \ | 751 V(LoadIC_HandlerCacheHit_NonExistent) \ |
| 752 V(LoadIC_HandlerCacheHit_Accessor) \ | 752 V(LoadIC_HandlerCacheHit_Accessor) \ |
| 753 V(LoadIC_HandlerCacheHit_Data) \ | 753 V(LoadIC_HandlerCacheHit_Data) \ |
| 754 V(LoadIC_HandlerCacheHit_Transition) \ | 754 V(LoadIC_HandlerCacheHit_Transition) \ |
| 755 V(LoadIC_LoadApiGetterDH) \ |
| 756 V(LoadIC_LoadApiGetterFromPrototypeDH) \ |
| 755 V(LoadIC_LoadApiGetterStub) \ | 757 V(LoadIC_LoadApiGetterStub) \ |
| 756 V(LoadIC_LoadCallback) \ | 758 V(LoadIC_LoadCallback) \ |
| 757 V(LoadIC_LoadConstantDH) \ | 759 V(LoadIC_LoadConstantDH) \ |
| 758 V(LoadIC_LoadConstantFromPrototypeDH) \ | 760 V(LoadIC_LoadConstantFromPrototypeDH) \ |
| 759 V(LoadIC_LoadConstant) \ | 761 V(LoadIC_LoadConstant) \ |
| 760 V(LoadIC_LoadConstantStub) \ | 762 V(LoadIC_LoadConstantStub) \ |
| 761 V(LoadIC_LoadFieldDH) \ | 763 V(LoadIC_LoadFieldDH) \ |
| 762 V(LoadIC_LoadFieldFromPrototypeDH) \ | 764 V(LoadIC_LoadFieldFromPrototypeDH) \ |
| 763 V(LoadIC_LoadField) \ | 765 V(LoadIC_LoadField) \ |
| 764 V(LoadIC_LoadFieldStub) \ | 766 V(LoadIC_LoadFieldStub) \ |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 } | 1305 } |
| 1304 | 1306 |
| 1305 Isolate* isolate_ = nullptr; | 1307 Isolate* isolate_ = nullptr; |
| 1306 RuntimeCallTimer timer_; | 1308 RuntimeCallTimer timer_; |
| 1307 }; | 1309 }; |
| 1308 | 1310 |
| 1309 } // namespace internal | 1311 } // namespace internal |
| 1310 } // namespace v8 | 1312 } // namespace v8 |
| 1311 | 1313 |
| 1312 #endif // V8_COUNTERS_H_ | 1314 #endif // V8_COUNTERS_H_ |
| OLD | NEW |