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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 V(CompileDeserialize) \ | 672 V(CompileDeserialize) \ |
673 V(CompileEval) \ | 673 V(CompileEval) \ |
674 V(CompileFullCode) \ | 674 V(CompileFullCode) \ |
675 V(CompileIgnition) \ | 675 V(CompileIgnition) \ |
676 V(CompileSerialize) \ | 676 V(CompileSerialize) \ |
677 V(DeoptimizeCode) \ | 677 V(DeoptimizeCode) \ |
678 V(FunctionCallback) \ | 678 V(FunctionCallback) \ |
679 V(GC) \ | 679 V(GC) \ |
680 V(GenericNamedPropertyDefinerCallback) \ | 680 V(GenericNamedPropertyDefinerCallback) \ |
681 V(GenericNamedPropertyDeleterCallback) \ | 681 V(GenericNamedPropertyDeleterCallback) \ |
| 682 V(GenericNamedPropertyDescriptorCallback) \ |
682 V(GenericNamedPropertyQueryCallback) \ | 683 V(GenericNamedPropertyQueryCallback) \ |
683 V(GenericNamedPropertySetterCallback) \ | 684 V(GenericNamedPropertySetterCallback) \ |
684 V(IndexedPropertyDefinerCallback) \ | 685 V(IndexedPropertyDefinerCallback) \ |
685 V(IndexedPropertyDeleterCallback) \ | 686 V(IndexedPropertyDeleterCallback) \ |
| 687 V(IndexedPropertyDescriptorCallback) \ |
686 V(IndexedPropertyGetterCallback) \ | 688 V(IndexedPropertyGetterCallback) \ |
687 V(IndexedPropertyQueryCallback) \ | 689 V(IndexedPropertyQueryCallback) \ |
688 V(IndexedPropertySetterCallback) \ | 690 V(IndexedPropertySetterCallback) \ |
689 V(InvokeFunctionCallback) \ | 691 V(InvokeFunctionCallback) \ |
690 V(JS_Execution) \ | 692 V(JS_Execution) \ |
691 V(Map_SetPrototype) \ | 693 V(Map_SetPrototype) \ |
692 V(Map_TransitionToAccessorProperty) \ | 694 V(Map_TransitionToAccessorProperty) \ |
693 V(Map_TransitionToDataProperty) \ | 695 V(Map_TransitionToDataProperty) \ |
694 V(Object_DeleteProperty) \ | 696 V(Object_DeleteProperty) \ |
695 V(OptimizeCode) \ | 697 V(OptimizeCode) \ |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 | 1242 |
1241 explicit Counters(Isolate* isolate); | 1243 explicit Counters(Isolate* isolate); |
1242 | 1244 |
1243 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1245 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
1244 }; | 1246 }; |
1245 | 1247 |
1246 } // namespace internal | 1248 } // namespace internal |
1247 } // namespace v8 | 1249 } // namespace v8 |
1248 | 1250 |
1249 #endif // V8_COUNTERS_H_ | 1251 #endif // V8_COUNTERS_H_ |
OLD | NEW |