| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 V(CompileDeserialize) \ | 675 V(CompileDeserialize) \ |
| 676 V(CompileEval) \ | 676 V(CompileEval) \ |
| 677 V(CompileFullCode) \ | 677 V(CompileFullCode) \ |
| 678 V(CompileIgnition) \ | 678 V(CompileIgnition) \ |
| 679 V(CompileSerialize) \ | 679 V(CompileSerialize) \ |
| 680 V(DeoptimizeCode) \ | 680 V(DeoptimizeCode) \ |
| 681 V(FunctionCallback) \ | 681 V(FunctionCallback) \ |
| 682 V(GC) \ | 682 V(GC) \ |
| 683 V(GenericNamedPropertyDefinerCallback) \ | 683 V(GenericNamedPropertyDefinerCallback) \ |
| 684 V(GenericNamedPropertyDeleterCallback) \ | 684 V(GenericNamedPropertyDeleterCallback) \ |
| 685 V(GenericNamedPropertyDescriptorCallback) \ |
| 685 V(GenericNamedPropertyQueryCallback) \ | 686 V(GenericNamedPropertyQueryCallback) \ |
| 686 V(GenericNamedPropertySetterCallback) \ | 687 V(GenericNamedPropertySetterCallback) \ |
| 687 V(IndexedPropertyDefinerCallback) \ | 688 V(IndexedPropertyDefinerCallback) \ |
| 688 V(IndexedPropertyDeleterCallback) \ | 689 V(IndexedPropertyDeleterCallback) \ |
| 690 V(IndexedPropertyDescriptorCallback) \ |
| 689 V(IndexedPropertyGetterCallback) \ | 691 V(IndexedPropertyGetterCallback) \ |
| 690 V(IndexedPropertyQueryCallback) \ | 692 V(IndexedPropertyQueryCallback) \ |
| 691 V(IndexedPropertySetterCallback) \ | 693 V(IndexedPropertySetterCallback) \ |
| 692 V(InvokeFunctionCallback) \ | 694 V(InvokeFunctionCallback) \ |
| 693 V(JS_Execution) \ | 695 V(JS_Execution) \ |
| 694 V(Map_SetPrototype) \ | 696 V(Map_SetPrototype) \ |
| 695 V(Map_TransitionToAccessorProperty) \ | 697 V(Map_TransitionToAccessorProperty) \ |
| 696 V(Map_TransitionToDataProperty) \ | 698 V(Map_TransitionToDataProperty) \ |
| 697 V(Object_DeleteProperty) \ | 699 V(Object_DeleteProperty) \ |
| 698 V(OptimizeCode) \ | 700 V(OptimizeCode) \ |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1283 // isolate reference and a timer for both. | 1285 // isolate reference and a timer for both. |
| 1284 Isolate* isolate_for_tracing_ = nullptr; | 1286 Isolate* isolate_for_tracing_ = nullptr; |
| 1285 RuntimeCallTimer timer_; | 1287 RuntimeCallTimer timer_; |
| 1286 RuntimeCallTimer trace_event_timer_; | 1288 RuntimeCallTimer trace_event_timer_; |
| 1287 }; | 1289 }; |
| 1288 | 1290 |
| 1289 } // namespace internal | 1291 } // namespace internal |
| 1290 } // namespace v8 | 1292 } // namespace v8 |
| 1291 | 1293 |
| 1292 #endif // V8_COUNTERS_H_ | 1294 #endif // V8_COUNTERS_H_ |
| OLD | NEW |