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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 V(AccessorGetterCallback) \ | 671 V(AccessorGetterCallback) \ |
672 V(AccessorNameGetterCallback) \ | 672 V(AccessorNameGetterCallback) \ |
673 V(AccessorNameSetterCallback) \ | 673 V(AccessorNameSetterCallback) \ |
674 V(Compile) \ | 674 V(Compile) \ |
675 V(CompileCode) \ | 675 V(CompileCode) \ |
676 V(CompileCodeLazy) \ | 676 V(CompileCodeLazy) \ |
677 V(CompileDeserialize) \ | 677 V(CompileDeserialize) \ |
678 V(CompileEval) \ | 678 V(CompileEval) \ |
679 V(CompileFullCode) \ | 679 V(CompileFullCode) \ |
680 V(CompileIgnition) \ | 680 V(CompileIgnition) \ |
| 681 V(CompilerDispatcher) \ |
681 V(CompileSerialize) \ | 682 V(CompileSerialize) \ |
682 V(DeoptimizeCode) \ | 683 V(DeoptimizeCode) \ |
683 V(FunctionCallback) \ | 684 V(FunctionCallback) \ |
684 V(GC) \ | 685 V(GC) \ |
685 V(GenericNamedPropertyDefinerCallback) \ | 686 V(GenericNamedPropertyDefinerCallback) \ |
686 V(GenericNamedPropertyDeleterCallback) \ | 687 V(GenericNamedPropertyDeleterCallback) \ |
687 V(GenericNamedPropertyDescriptorCallback) \ | 688 V(GenericNamedPropertyDescriptorCallback) \ |
688 V(GenericNamedPropertyQueryCallback) \ | 689 V(GenericNamedPropertyQueryCallback) \ |
689 V(GenericNamedPropertySetterCallback) \ | 690 V(GenericNamedPropertySetterCallback) \ |
690 V(IndexedPropertyDefinerCallback) \ | 691 V(IndexedPropertyDefinerCallback) \ |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1266 } | 1267 } |
1267 | 1268 |
1268 Isolate* isolate_ = nullptr; | 1269 Isolate* isolate_ = nullptr; |
1269 RuntimeCallTimer timer_; | 1270 RuntimeCallTimer timer_; |
1270 }; | 1271 }; |
1271 | 1272 |
1272 } // namespace internal | 1273 } // namespace internal |
1273 } // namespace v8 | 1274 } // namespace v8 |
1274 | 1275 |
1275 #endif // V8_COUNTERS_H_ | 1276 #endif // V8_COUNTERS_H_ |
OLD | NEW |