| 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 V(LoadIC_LoadInterceptor) \ | 742 V(LoadIC_LoadInterceptor) \ |
| 743 V(LoadIC_LoadNonexistent) \ | 743 V(LoadIC_LoadNonexistent) \ |
| 744 V(LoadIC_LoadNormal) \ | 744 V(LoadIC_LoadNormal) \ |
| 745 V(LoadIC_LoadScriptContextFieldStub) \ | 745 V(LoadIC_LoadScriptContextFieldStub) \ |
| 746 V(LoadIC_LoadViaGetter) \ | 746 V(LoadIC_LoadViaGetter) \ |
| 747 V(LoadIC_SlowStub) \ | 747 V(LoadIC_SlowStub) \ |
| 748 V(LoadIC_StringLengthStub) \ | 748 V(LoadIC_StringLengthStub) \ |
| 749 V(StoreIC_SlowStub) \ | 749 V(StoreIC_SlowStub) \ |
| 750 V(StoreIC_StoreCallback) \ | 750 V(StoreIC_StoreCallback) \ |
| 751 V(StoreIC_StoreField) \ | 751 V(StoreIC_StoreField) \ |
| 752 V(StoreIC_StoreFieldDH) \ | |
| 753 V(StoreIC_StoreFieldStub) \ | 752 V(StoreIC_StoreFieldStub) \ |
| 754 V(StoreIC_StoreGlobal) \ | 753 V(StoreIC_StoreGlobal) \ |
| 755 V(StoreIC_StoreGlobalTransition) \ | 754 V(StoreIC_StoreGlobalTransition) \ |
| 756 V(StoreIC_StoreInterceptorStub) \ | 755 V(StoreIC_StoreInterceptorStub) \ |
| 757 V(StoreIC_StoreNormal) \ | 756 V(StoreIC_StoreNormal) \ |
| 758 V(StoreIC_StoreScriptContextFieldStub) \ | 757 V(StoreIC_StoreScriptContextFieldStub) \ |
| 759 V(StoreIC_StoreTransition) \ | 758 V(StoreIC_StoreTransition) \ |
| 760 V(StoreIC_StoreViaSetter) | 759 V(StoreIC_StoreViaSetter) |
| 761 | 760 |
| 762 class RuntimeCallStats { | 761 class RuntimeCallStats { |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 } | 1272 } |
| 1274 | 1273 |
| 1275 Isolate* isolate_ = nullptr; | 1274 Isolate* isolate_ = nullptr; |
| 1276 RuntimeCallTimer timer_; | 1275 RuntimeCallTimer timer_; |
| 1277 }; | 1276 }; |
| 1278 | 1277 |
| 1279 } // namespace internal | 1278 } // namespace internal |
| 1280 } // namespace v8 | 1279 } // namespace v8 |
| 1281 | 1280 |
| 1282 #endif // V8_COUNTERS_H_ | 1281 #endif // V8_COUNTERS_H_ |
| OLD | NEW |