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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 V(GenericNamedPropertyDeleterCallback) \ | 684 V(GenericNamedPropertyDeleterCallback) \ |
685 V(GenericNamedPropertyDescriptorCallback) \ | 685 V(GenericNamedPropertyDescriptorCallback) \ |
686 V(GenericNamedPropertyQueryCallback) \ | 686 V(GenericNamedPropertyQueryCallback) \ |
687 V(GenericNamedPropertySetterCallback) \ | 687 V(GenericNamedPropertySetterCallback) \ |
688 V(IndexedPropertyDefinerCallback) \ | 688 V(IndexedPropertyDefinerCallback) \ |
689 V(IndexedPropertyDeleterCallback) \ | 689 V(IndexedPropertyDeleterCallback) \ |
690 V(IndexedPropertyDescriptorCallback) \ | 690 V(IndexedPropertyDescriptorCallback) \ |
691 V(IndexedPropertyGetterCallback) \ | 691 V(IndexedPropertyGetterCallback) \ |
692 V(IndexedPropertyQueryCallback) \ | 692 V(IndexedPropertyQueryCallback) \ |
693 V(IndexedPropertySetterCallback) \ | 693 V(IndexedPropertySetterCallback) \ |
| 694 V(InvokeApiInterruptCallbacks) \ |
694 V(InvokeFunctionCallback) \ | 695 V(InvokeFunctionCallback) \ |
695 V(JS_Execution) \ | 696 V(JS_Execution) \ |
696 V(Map_SetPrototype) \ | 697 V(Map_SetPrototype) \ |
697 V(Map_TransitionToAccessorProperty) \ | 698 V(Map_TransitionToAccessorProperty) \ |
698 V(Map_TransitionToDataProperty) \ | 699 V(Map_TransitionToDataProperty) \ |
699 V(Object_DeleteProperty) \ | 700 V(Object_DeleteProperty) \ |
700 V(OptimizeCode) \ | 701 V(OptimizeCode) \ |
701 V(Parse) \ | 702 V(Parse) \ |
702 V(ParseLazy) \ | 703 V(ParseLazy) \ |
703 V(PropertyCallback) \ | 704 V(PropertyCallback) \ |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 } | 1266 } |
1266 | 1267 |
1267 Isolate* isolate_ = nullptr; | 1268 Isolate* isolate_ = nullptr; |
1268 RuntimeCallTimer timer_; | 1269 RuntimeCallTimer timer_; |
1269 }; | 1270 }; |
1270 | 1271 |
1271 } // namespace internal | 1272 } // namespace internal |
1272 } // namespace v8 | 1273 } // namespace v8 |
1273 | 1274 |
1274 #endif // V8_COUNTERS_H_ | 1275 #endif // V8_COUNTERS_H_ |
OLD | NEW |