Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Side by Side Diff: src/counters.h

Issue 2069373002: [counter] Adding missing compile counters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 V(UnboundScript_GetSourceMappingURL) \ 655 V(UnboundScript_GetSourceMappingURL) \
656 V(UnboundScript_GetSourceURL) \ 656 V(UnboundScript_GetSourceURL) \
657 V(Value_TypeOf) 657 V(Value_TypeOf)
658 658
659 #define FOR_EACH_MANUAL_COUNTER(V) \ 659 #define FOR_EACH_MANUAL_COUNTER(V) \
660 V(AccessorGetterCallback) \ 660 V(AccessorGetterCallback) \
661 V(AccessorNameGetterCallback) \ 661 V(AccessorNameGetterCallback) \
662 V(AccessorNameSetterCallback) \ 662 V(AccessorNameSetterCallback) \
663 V(Compile) \ 663 V(Compile) \
664 V(CompileCode) \ 664 V(CompileCode) \
665 V(CompileCodeLazy) \
665 V(CompileDeserialize) \ 666 V(CompileDeserialize) \
666 V(CompileEval) \ 667 V(CompileEval) \
667 V(CompileFullCode) \ 668 V(CompileFullCode) \
668 V(CompileIgnition) \ 669 V(CompileIgnition) \
669 V(CompileSerialize) \ 670 V(CompileSerialize) \
670 V(DeoptimizeCode) \ 671 V(DeoptimizeCode) \
671 V(FunctionCallback) \ 672 V(FunctionCallback) \
672 V(GC) \ 673 V(GC) \
673 V(GenericNamedPropertyDeleterCallback) \ 674 V(GenericNamedPropertyDeleterCallback) \
674 V(GenericNamedPropertyQueryCallback) \ 675 V(GenericNamedPropertyQueryCallback) \
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 1234
1234 explicit Counters(Isolate* isolate); 1235 explicit Counters(Isolate* isolate);
1235 1236
1236 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1237 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1237 }; 1238 };
1238 1239
1239 } // namespace internal 1240 } // namespace internal
1240 } // namespace v8 1241 } // namespace v8
1241 1242
1242 #endif // V8_COUNTERS_H_ 1243 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698