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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 V(CompileCodeLazy) \ | 701 V(CompileCodeLazy) \ |
702 V(CompileDeserialize) \ | 702 V(CompileDeserialize) \ |
703 V(CompileEval) \ | 703 V(CompileEval) \ |
704 V(CompileFullCode) \ | 704 V(CompileFullCode) \ |
705 V(CompileIgnition) \ | 705 V(CompileIgnition) \ |
706 V(CompilerDispatcher) \ | 706 V(CompilerDispatcher) \ |
707 V(CompileSerialize) \ | 707 V(CompileSerialize) \ |
708 V(DeoptimizeCode) \ | 708 V(DeoptimizeCode) \ |
709 V(FunctionCallback) \ | 709 V(FunctionCallback) \ |
710 V(GC) \ | 710 V(GC) \ |
| 711 V(GC_AllAvailableGarbage) \ |
| 712 V(GCEpilogueCallback) \ |
| 713 V(GCPrologueCallback) \ |
711 V(GenericNamedPropertyDefinerCallback) \ | 714 V(GenericNamedPropertyDefinerCallback) \ |
712 V(GenericNamedPropertyDeleterCallback) \ | 715 V(GenericNamedPropertyDeleterCallback) \ |
713 V(GenericNamedPropertyDescriptorCallback) \ | 716 V(GenericNamedPropertyDescriptorCallback) \ |
714 V(GenericNamedPropertyQueryCallback) \ | 717 V(GenericNamedPropertyQueryCallback) \ |
715 V(GenericNamedPropertySetterCallback) \ | 718 V(GenericNamedPropertySetterCallback) \ |
716 V(IndexedPropertyDefinerCallback) \ | 719 V(IndexedPropertyDefinerCallback) \ |
717 V(IndexedPropertyDeleterCallback) \ | 720 V(IndexedPropertyDeleterCallback) \ |
718 V(IndexedPropertyDescriptorCallback) \ | 721 V(IndexedPropertyDescriptorCallback) \ |
719 V(IndexedPropertyGetterCallback) \ | 722 V(IndexedPropertyGetterCallback) \ |
720 V(IndexedPropertyQueryCallback) \ | 723 V(IndexedPropertyQueryCallback) \ |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1330 } | 1333 } |
1331 | 1334 |
1332 RuntimeCallStats* stats_ = nullptr; | 1335 RuntimeCallStats* stats_ = nullptr; |
1333 RuntimeCallTimer timer_; | 1336 RuntimeCallTimer timer_; |
1334 }; | 1337 }; |
1335 | 1338 |
1336 } // namespace internal | 1339 } // namespace internal |
1337 } // namespace v8 | 1340 } // namespace v8 |
1338 | 1341 |
1339 #endif // V8_COUNTERS_H_ | 1342 #endif // V8_COUNTERS_H_ |
OLD | NEW |