| 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/atomic-utils.h" | 10 #include "src/base/atomic-utils.h" |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 | 678 |
| 679 #define FOR_EACH_MANUAL_COUNTER(V) \ | 679 #define FOR_EACH_MANUAL_COUNTER(V) \ |
| 680 V(AccessorGetterCallback) \ | 680 V(AccessorGetterCallback) \ |
| 681 V(AccessorNameGetterCallback) \ | 681 V(AccessorNameGetterCallback) \ |
| 682 V(AccessorNameGetterCallback_ArrayLength) \ | 682 V(AccessorNameGetterCallback_ArrayLength) \ |
| 683 V(AccessorNameGetterCallback_BoundFunctionLength) \ | 683 V(AccessorNameGetterCallback_BoundFunctionLength) \ |
| 684 V(AccessorNameGetterCallback_BoundFunctionName) \ | 684 V(AccessorNameGetterCallback_BoundFunctionName) \ |
| 685 V(AccessorNameGetterCallback_FunctionPrototype) \ | 685 V(AccessorNameGetterCallback_FunctionPrototype) \ |
| 686 V(AccessorNameGetterCallback_StringLength) \ | 686 V(AccessorNameGetterCallback_StringLength) \ |
| 687 V(AccessorNameSetterCallback) \ | 687 V(AccessorNameSetterCallback) \ |
| 688 V(Compile) \ | |
| 689 V(CompileCode) \ | |
| 690 V(CompileCodeLazy) \ | 688 V(CompileCodeLazy) \ |
| 691 V(CompileDeserialize) \ | 689 V(CompileDeserialize) \ |
| 692 V(CompileEval) \ | 690 V(CompileEval) \ |
| 693 V(CompileFullCode) \ | 691 V(CompileFullCode) \ |
| 692 V(CompileAnalyse) \ |
| 693 V(CompileBackgroundIgnition) \ |
| 694 V(CompileFunction) \ |
| 694 V(CompileGetFromOptimizedCodeMap) \ | 695 V(CompileGetFromOptimizedCodeMap) \ |
| 695 V(CompileGetUnoptimizedCode) \ | 696 V(CompileGetUnoptimizedCode) \ |
| 696 V(CompileAnalyse) \ | |
| 697 V(CompileIgnition) \ | 697 V(CompileIgnition) \ |
| 698 V(CompileBackgroundIgnition) \ | |
| 699 V(CompileIgnitionFinalization) \ | 698 V(CompileIgnitionFinalization) \ |
| 699 V(CompileInnerFunction) \ |
| 700 V(CompileRenumber) \ |
| 701 V(CompileRewriteReturnResult) \ |
| 702 V(CompileScopeAnalysis) \ |
| 703 V(CompileScript) \ |
| 704 V(CompileSerialize) \ |
| 700 V(CompilerDispatcher) \ | 705 V(CompilerDispatcher) \ |
| 701 V(CompileSerialize) \ | |
| 702 V(DeoptimizeCode) \ | 706 V(DeoptimizeCode) \ |
| 703 V(FunctionCallback) \ | 707 V(FunctionCallback) \ |
| 704 V(GC) \ | 708 V(GC) \ |
| 705 V(GC_AllAvailableGarbage) \ | 709 V(GC_AllAvailableGarbage) \ |
| 706 V(GCEpilogueCallback) \ | 710 V(GCEpilogueCallback) \ |
| 707 V(GCPrologueCallback) \ | 711 V(GCPrologueCallback) \ |
| 708 V(GenericNamedPropertyDefinerCallback) \ | 712 V(GenericNamedPropertyDefinerCallback) \ |
| 709 V(GenericNamedPropertyDeleterCallback) \ | 713 V(GenericNamedPropertyDeleterCallback) \ |
| 710 V(GenericNamedPropertyDescriptorCallback) \ | 714 V(GenericNamedPropertyDescriptorCallback) \ |
| 711 V(GenericNamedPropertyQueryCallback) \ | 715 V(GenericNamedPropertyQueryCallback) \ |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1337 |
| 1334 explicit Counters(Isolate* isolate); | 1338 explicit Counters(Isolate* isolate); |
| 1335 | 1339 |
| 1336 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1340 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1337 }; | 1341 }; |
| 1338 | 1342 |
| 1339 } // namespace internal | 1343 } // namespace internal |
| 1340 } // namespace v8 | 1344 } // namespace v8 |
| 1341 | 1345 |
| 1342 #endif // V8_COUNTERS_H_ | 1346 #endif // V8_COUNTERS_H_ |
| OLD | NEW |