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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 V(LoadIC_LoadConstantDH) \ | 757 V(LoadIC_LoadConstantDH) \ |
758 V(LoadIC_LoadConstantFromPrototypeDH) \ | 758 V(LoadIC_LoadConstantFromPrototypeDH) \ |
759 V(LoadIC_LoadConstant) \ | 759 V(LoadIC_LoadConstant) \ |
760 V(LoadIC_LoadConstantStub) \ | 760 V(LoadIC_LoadConstantStub) \ |
761 V(LoadIC_LoadFieldDH) \ | 761 V(LoadIC_LoadFieldDH) \ |
762 V(LoadIC_LoadFieldFromPrototypeDH) \ | 762 V(LoadIC_LoadFieldFromPrototypeDH) \ |
763 V(LoadIC_LoadField) \ | 763 V(LoadIC_LoadField) \ |
764 V(LoadIC_LoadFieldStub) \ | 764 V(LoadIC_LoadFieldStub) \ |
765 V(LoadIC_LoadGlobal) \ | 765 V(LoadIC_LoadGlobal) \ |
766 V(LoadIC_LoadInterceptor) \ | 766 V(LoadIC_LoadInterceptor) \ |
| 767 V(LoadIC_LoadNonexistentDH) \ |
767 V(LoadIC_LoadNonexistent) \ | 768 V(LoadIC_LoadNonexistent) \ |
768 V(LoadIC_LoadNormal) \ | 769 V(LoadIC_LoadNormal) \ |
769 V(LoadIC_LoadScriptContextFieldStub) \ | 770 V(LoadIC_LoadScriptContextFieldStub) \ |
770 V(LoadIC_LoadViaGetter) \ | 771 V(LoadIC_LoadViaGetter) \ |
771 V(LoadIC_Premonomorphic) \ | 772 V(LoadIC_Premonomorphic) \ |
772 V(LoadIC_SlowStub) \ | 773 V(LoadIC_SlowStub) \ |
773 V(LoadIC_StringLengthStub) \ | 774 V(LoadIC_StringLengthStub) \ |
774 V(StoreIC_HandlerCacheHit_AccessCheck) \ | 775 V(StoreIC_HandlerCacheHit_AccessCheck) \ |
775 V(StoreIC_HandlerCacheHit_Exotic) \ | 776 V(StoreIC_HandlerCacheHit_Exotic) \ |
776 V(StoreIC_HandlerCacheHit_Interceptor) \ | 777 V(StoreIC_HandlerCacheHit_Interceptor) \ |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1303 } | 1304 } |
1304 | 1305 |
1305 Isolate* isolate_ = nullptr; | 1306 Isolate* isolate_ = nullptr; |
1306 RuntimeCallTimer timer_; | 1307 RuntimeCallTimer timer_; |
1307 }; | 1308 }; |
1308 | 1309 |
1309 } // namespace internal | 1310 } // namespace internal |
1310 } // namespace v8 | 1311 } // namespace v8 |
1311 | 1312 |
1312 #endif // V8_COUNTERS_H_ | 1313 #endif // V8_COUNTERS_H_ |
OLD | NEW |