Chromium Code Reviews| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 683 V(AccessorNameGetterCallback_FunctionPrototype) \ | 683 V(AccessorNameGetterCallback_FunctionPrototype) \ |
| 684 V(AccessorNameGetterCallback_StringLength) \ | 684 V(AccessorNameGetterCallback_StringLength) \ |
| 685 V(AccessorNameSetterCallback) \ | 685 V(AccessorNameSetterCallback) \ |
| 686 V(Compile) \ | 686 V(Compile) \ |
| 687 V(CompileCode) \ | 687 V(CompileCode) \ |
| 688 V(CompileCodeLazy) \ | 688 V(CompileCodeLazy) \ |
| 689 V(CompileDeserialize) \ | 689 V(CompileDeserialize) \ |
| 690 V(CompileEval) \ | 690 V(CompileEval) \ |
| 691 V(CompileFullCode) \ | 691 V(CompileFullCode) \ |
| 692 V(CompileIgnition) \ | 692 V(CompileIgnition) \ |
| 693 V(CompileRewriteReturnResult) \ | |
| 694 V(CompileSerialize) \ | |
| 693 V(CompilerDispatcher) \ | 695 V(CompilerDispatcher) \ |
|
Camillo Bruni
2016/12/16 15:07:47
why no usey?
| |
| 694 V(CompileSerialize) \ | |
| 695 V(DeoptimizeCode) \ | 696 V(DeoptimizeCode) \ |
| 696 V(FunctionCallback) \ | 697 V(FunctionCallback) \ |
| 697 V(GC) \ | 698 V(GC) \ |
| 698 V(GC_AllAvailableGarbage) \ | 699 V(GC_AllAvailableGarbage) \ |
| 699 V(GCEpilogueCallback) \ | 700 V(GCEpilogueCallback) \ |
| 700 V(GCPrologueCallback) \ | 701 V(GCPrologueCallback) \ |
| 701 V(GenericNamedPropertyDefinerCallback) \ | 702 V(GenericNamedPropertyDefinerCallback) \ |
| 702 V(GenericNamedPropertyDeleterCallback) \ | 703 V(GenericNamedPropertyDeleterCallback) \ |
| 703 V(GenericNamedPropertyDescriptorCallback) \ | 704 V(GenericNamedPropertyDescriptorCallback) \ |
| 704 V(GenericNamedPropertyQueryCallback) \ | 705 V(GenericNamedPropertyQueryCallback) \ |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1329 | 1330 |
| 1330 explicit Counters(Isolate* isolate); | 1331 explicit Counters(Isolate* isolate); |
| 1331 | 1332 |
| 1332 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); | 1333 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); |
| 1333 }; | 1334 }; |
| 1334 | 1335 |
| 1335 } // namespace internal | 1336 } // namespace internal |
| 1336 } // namespace v8 | 1337 } // namespace v8 |
| 1337 | 1338 |
| 1338 #endif // V8_COUNTERS_H_ | 1339 #endif // V8_COUNTERS_H_ |
| OLD | NEW |