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) \ |
752 V(StoreIC_StoreFieldStub) \ | 753 V(StoreIC_StoreFieldStub) \ |
753 V(StoreIC_StoreGlobal) \ | 754 V(StoreIC_StoreGlobal) \ |
754 V(StoreIC_StoreGlobalTransition) \ | 755 V(StoreIC_StoreGlobalTransition) \ |
755 V(StoreIC_StoreInterceptorStub) \ | 756 V(StoreIC_StoreInterceptorStub) \ |
756 V(StoreIC_StoreNormal) \ | 757 V(StoreIC_StoreNormal) \ |
757 V(StoreIC_StoreScriptContextFieldStub) \ | 758 V(StoreIC_StoreScriptContextFieldStub) \ |
758 V(StoreIC_StoreTransition) \ | 759 V(StoreIC_StoreTransition) \ |
759 V(StoreIC_StoreViaSetter) | 760 V(StoreIC_StoreViaSetter) |
760 | 761 |
761 class RuntimeCallStats { | 762 class RuntimeCallStats { |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1272 } | 1273 } |
1273 | 1274 |
1274 Isolate* isolate_ = nullptr; | 1275 Isolate* isolate_ = nullptr; |
1275 RuntimeCallTimer timer_; | 1276 RuntimeCallTimer timer_; |
1276 }; | 1277 }; |
1277 | 1278 |
1278 } // namespace internal | 1279 } // namespace internal |
1279 } // namespace v8 | 1280 } // namespace v8 |
1280 | 1281 |
1281 #endif // V8_COUNTERS_H_ | 1282 #endif // V8_COUNTERS_H_ |
OLD | NEW |