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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 V(CompileCode) \ | 668 V(CompileCode) \ |
669 V(CompileCodeLazy) \ | 669 V(CompileCodeLazy) \ |
670 V(CompileDeserialize) \ | 670 V(CompileDeserialize) \ |
671 V(CompileEval) \ | 671 V(CompileEval) \ |
672 V(CompileFullCode) \ | 672 V(CompileFullCode) \ |
673 V(CompileIgnition) \ | 673 V(CompileIgnition) \ |
674 V(CompileSerialize) \ | 674 V(CompileSerialize) \ |
675 V(DeoptimizeCode) \ | 675 V(DeoptimizeCode) \ |
676 V(FunctionCallback) \ | 676 V(FunctionCallback) \ |
677 V(GC) \ | 677 V(GC) \ |
| 678 V(GenericNamedPropertyDefinerCallback) \ |
678 V(GenericNamedPropertyDeleterCallback) \ | 679 V(GenericNamedPropertyDeleterCallback) \ |
679 V(GenericNamedPropertyQueryCallback) \ | 680 V(GenericNamedPropertyQueryCallback) \ |
680 V(GenericNamedPropertySetterCallback) \ | 681 V(GenericNamedPropertySetterCallback) \ |
| 682 V(IndexedPropertyDefinerCallback) \ |
681 V(IndexedPropertyDeleterCallback) \ | 683 V(IndexedPropertyDeleterCallback) \ |
682 V(IndexedPropertyGetterCallback) \ | 684 V(IndexedPropertyGetterCallback) \ |
683 V(IndexedPropertyQueryCallback) \ | 685 V(IndexedPropertyQueryCallback) \ |
684 V(IndexedPropertySetterCallback) \ | 686 V(IndexedPropertySetterCallback) \ |
685 V(InvokeFunctionCallback) \ | 687 V(InvokeFunctionCallback) \ |
686 V(JS_Execution) \ | 688 V(JS_Execution) \ |
687 V(Map_SetPrototype) \ | 689 V(Map_SetPrototype) \ |
688 V(Map_TransitionToAccessorProperty) \ | 690 V(Map_TransitionToAccessorProperty) \ |
689 V(Map_TransitionToDataProperty) \ | 691 V(Map_TransitionToDataProperty) \ |
690 V(Object_DeleteProperty) \ | 692 V(Object_DeleteProperty) \ |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 | 1238 |
1237 explicit Counters(Isolate* isolate); | 1239 explicit Counters(Isolate* isolate); |
1238 | 1240 |
1239 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1241 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1240 }; | 1242 }; |
1241 | 1243 |
1242 } // namespace internal | 1244 } // namespace internal |
1243 } // namespace v8 | 1245 } // namespace v8 |
1244 | 1246 |
1245 #endif // V8_COUNTERS_H_ | 1247 #endif // V8_COUNTERS_H_ |
OLD | NEW |