| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 V(IndexedPropertyQueryCallback) \ | 695 V(IndexedPropertyQueryCallback) \ |
| 696 V(IndexedPropertySetterCallback) \ | 696 V(IndexedPropertySetterCallback) \ |
| 697 V(InvokeApiInterruptCallbacks) \ | 697 V(InvokeApiInterruptCallbacks) \ |
| 698 V(InvokeFunctionCallback) \ | 698 V(InvokeFunctionCallback) \ |
| 699 V(JS_Execution) \ | 699 V(JS_Execution) \ |
| 700 V(Map_SetPrototype) \ | 700 V(Map_SetPrototype) \ |
| 701 V(Map_TransitionToAccessorProperty) \ | 701 V(Map_TransitionToAccessorProperty) \ |
| 702 V(Map_TransitionToDataProperty) \ | 702 V(Map_TransitionToDataProperty) \ |
| 703 V(Object_DeleteProperty) \ | 703 V(Object_DeleteProperty) \ |
| 704 V(OptimizeCode) \ | 704 V(OptimizeCode) \ |
| 705 V(Parse) \ | 705 V(ParseProgram) \ |
| 706 V(ParseLazy) \ | 706 V(ParseFunction) \ |
| 707 V(PropertyCallback) \ | 707 V(PropertyCallback) \ |
| 708 V(PrototypeMap_TransitionToAccessorProperty) \ | 708 V(PrototypeMap_TransitionToAccessorProperty) \ |
| 709 V(PrototypeMap_TransitionToDataProperty) \ | 709 V(PrototypeMap_TransitionToDataProperty) \ |
| 710 V(PrototypeObject_DeleteProperty) \ | 710 V(PrototypeObject_DeleteProperty) \ |
| 711 V(RecompileConcurrent) \ | 711 V(RecompileConcurrent) \ |
| 712 V(RecompileSynchronous) \ | 712 V(RecompileSynchronous) \ |
| 713 /* Dummy counter for the unexpected stub miss. */ \ | 713 /* Dummy counter for the unexpected stub miss. */ \ |
| 714 V(UnexpectedStubMiss) | 714 V(UnexpectedStubMiss) |
| 715 | 715 |
| 716 #define FOR_EACH_HANDLER_COUNTER(V) \ | 716 #define FOR_EACH_HANDLER_COUNTER(V) \ |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1270 } | 1270 } |
| 1271 | 1271 |
| 1272 Isolate* isolate_ = nullptr; | 1272 Isolate* isolate_ = nullptr; |
| 1273 RuntimeCallTimer timer_; | 1273 RuntimeCallTimer timer_; |
| 1274 }; | 1274 }; |
| 1275 | 1275 |
| 1276 } // namespace internal | 1276 } // namespace internal |
| 1277 } // namespace v8 | 1277 } // namespace v8 |
| 1278 | 1278 |
| 1279 #endif // V8_COUNTERS_H_ | 1279 #endif // V8_COUNTERS_H_ |
| OLD | NEW |