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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 V(UnboundScript_GetSourceMappingURL) \ | 655 V(UnboundScript_GetSourceMappingURL) \ |
656 V(UnboundScript_GetSourceURL) \ | 656 V(UnboundScript_GetSourceURL) \ |
657 V(Value_TypeOf) | 657 V(Value_TypeOf) |
658 | 658 |
659 #define FOR_EACH_MANUAL_COUNTER(V) \ | 659 #define FOR_EACH_MANUAL_COUNTER(V) \ |
660 V(AccessorGetterCallback) \ | 660 V(AccessorGetterCallback) \ |
661 V(AccessorNameGetterCallback) \ | 661 V(AccessorNameGetterCallback) \ |
662 V(AccessorNameSetterCallback) \ | 662 V(AccessorNameSetterCallback) \ |
663 V(Compile) \ | 663 V(Compile) \ |
664 V(CompileCode) \ | 664 V(CompileCode) \ |
| 665 V(CompileCodeLazy) \ |
665 V(CompileDeserialize) \ | 666 V(CompileDeserialize) \ |
666 V(CompileEval) \ | 667 V(CompileEval) \ |
667 V(CompileFullCode) \ | 668 V(CompileFullCode) \ |
668 V(CompileIgnition) \ | 669 V(CompileIgnition) \ |
669 V(CompileSerialize) \ | 670 V(CompileSerialize) \ |
670 V(DeoptimizeCode) \ | 671 V(DeoptimizeCode) \ |
671 V(FunctionCallback) \ | 672 V(FunctionCallback) \ |
672 V(GC) \ | 673 V(GC) \ |
673 V(GenericNamedPropertyDeleterCallback) \ | 674 V(GenericNamedPropertyDeleterCallback) \ |
674 V(GenericNamedPropertyQueryCallback) \ | 675 V(GenericNamedPropertyQueryCallback) \ |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 | 1234 |
1234 explicit Counters(Isolate* isolate); | 1235 explicit Counters(Isolate* isolate); |
1235 | 1236 |
1236 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1237 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1237 }; | 1238 }; |
1238 | 1239 |
1239 } // namespace internal | 1240 } // namespace internal |
1240 } // namespace v8 | 1241 } // namespace v8 |
1241 | 1242 |
1242 #endif // V8_COUNTERS_H_ | 1243 #endif // V8_COUNTERS_H_ |
OLD | NEW |