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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 V(CompileRewriteReturnResult) \ | 710 V(CompileRewriteReturnResult) \ |
711 V(CompileScopeAnalysis) \ | 711 V(CompileScopeAnalysis) \ |
712 V(CompileScript) \ | 712 V(CompileScript) \ |
713 V(CompileSerialize) \ | 713 V(CompileSerialize) \ |
714 V(CompileWaitForDispatcher) \ | 714 V(CompileWaitForDispatcher) \ |
715 V(DeoptimizeCode) \ | 715 V(DeoptimizeCode) \ |
716 V(FunctionCallback) \ | 716 V(FunctionCallback) \ |
717 V(GC) \ | 717 V(GC) \ |
718 V(GC_AllAvailableGarbage) \ | 718 V(GC_AllAvailableGarbage) \ |
719 V(GC_IncrementalMarkingJob) \ | 719 V(GC_IncrementalMarkingJob) \ |
| 720 V(GC_IncrementalMarkingObserver) \ |
720 V(GC_SlowAllocateRaw) \ | 721 V(GC_SlowAllocateRaw) \ |
721 V(GCEpilogueCallback) \ | 722 V(GCEpilogueCallback) \ |
722 V(GCPrologueCallback) \ | 723 V(GCPrologueCallback) \ |
723 V(GenericNamedPropertyDefinerCallback) \ | 724 V(GenericNamedPropertyDefinerCallback) \ |
724 V(GenericNamedPropertyDeleterCallback) \ | 725 V(GenericNamedPropertyDeleterCallback) \ |
725 V(GenericNamedPropertyDescriptorCallback) \ | 726 V(GenericNamedPropertyDescriptorCallback) \ |
726 V(GenericNamedPropertyQueryCallback) \ | 727 V(GenericNamedPropertyQueryCallback) \ |
727 V(GenericNamedPropertySetterCallback) \ | 728 V(GenericNamedPropertySetterCallback) \ |
728 V(GetMoreDataCallback) \ | 729 V(GetMoreDataCallback) \ |
729 V(IndexedPropertyDefinerCallback) \ | 730 V(IndexedPropertyDefinerCallback) \ |
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1347 | 1348 |
1348 explicit Counters(Isolate* isolate); | 1349 explicit Counters(Isolate* isolate); |
1349 | 1350 |
1350 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1351 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1351 }; | 1352 }; |
1352 | 1353 |
1353 } // namespace internal | 1354 } // namespace internal |
1354 } // namespace v8 | 1355 } // namespace v8 |
1355 | 1356 |
1356 #endif // V8_COUNTERS_H_ | 1357 #endif // V8_COUNTERS_H_ |
OLD | NEW |