| 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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 V(TypeError_New) \ | 650 V(TypeError_New) \ |
| 651 V(Uint16Array_New) \ | 651 V(Uint16Array_New) \ |
| 652 V(Uint32Array_New) \ | 652 V(Uint32Array_New) \ |
| 653 V(Uint8Array_New) \ | 653 V(Uint8Array_New) \ |
| 654 V(Uint8ClampedArray_New) \ | 654 V(Uint8ClampedArray_New) \ |
| 655 V(UnboundScript_GetId) \ | 655 V(UnboundScript_GetId) \ |
| 656 V(UnboundScript_GetLineNumber) \ | 656 V(UnboundScript_GetLineNumber) \ |
| 657 V(UnboundScript_GetName) \ | 657 V(UnboundScript_GetName) \ |
| 658 V(UnboundScript_GetSourceMappingURL) \ | 658 V(UnboundScript_GetSourceMappingURL) \ |
| 659 V(UnboundScript_GetSourceURL) \ | 659 V(UnboundScript_GetSourceURL) \ |
| 660 V(Value_TypeOf) | 660 V(Value_TypeOf) \ |
| 661 V(ValueDeserializer_ReadValue) \ |
| 662 V(ValueSerializer_WriteValue) |
| 661 | 663 |
| 662 #define FOR_EACH_MANUAL_COUNTER(V) \ | 664 #define FOR_EACH_MANUAL_COUNTER(V) \ |
| 663 V(AccessorGetterCallback) \ | 665 V(AccessorGetterCallback) \ |
| 664 V(AccessorNameGetterCallback) \ | 666 V(AccessorNameGetterCallback) \ |
| 665 V(AccessorNameSetterCallback) \ | 667 V(AccessorNameSetterCallback) \ |
| 666 V(Compile) \ | 668 V(Compile) \ |
| 667 V(CompileCode) \ | 669 V(CompileCode) \ |
| 668 V(CompileCodeLazy) \ | 670 V(CompileCodeLazy) \ |
| 669 V(CompileDeserialize) \ | 671 V(CompileDeserialize) \ |
| 670 V(CompileEval) \ | 672 V(CompileEval) \ |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 | 1237 |
| 1236 explicit Counters(Isolate* isolate); | 1238 explicit Counters(Isolate* isolate); |
| 1237 | 1239 |
| 1238 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1240 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1239 }; | 1241 }; |
| 1240 | 1242 |
| 1241 } // namespace internal | 1243 } // namespace internal |
| 1242 } // namespace v8 | 1244 } // namespace v8 |
| 1243 | 1245 |
| 1244 #endif // V8_COUNTERS_H_ | 1246 #endif // V8_COUNTERS_H_ |
| OLD | NEW |