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

Side by Side Diff: src/counters.h

Issue 2577263002: [Compiler] Track Ignition background compilation separately in RuntimeStats. (Closed)
Patch Set: Created 4 years 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
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/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 V(AccessorNameGetterCallback_BoundFunctionName) \ 681 V(AccessorNameGetterCallback_BoundFunctionName) \
682 V(AccessorNameGetterCallback_FunctionPrototype) \ 682 V(AccessorNameGetterCallback_FunctionPrototype) \
683 V(AccessorNameGetterCallback_StringLength) \ 683 V(AccessorNameGetterCallback_StringLength) \
684 V(AccessorNameSetterCallback) \ 684 V(AccessorNameSetterCallback) \
685 V(Compile) \ 685 V(Compile) \
686 V(CompileCode) \ 686 V(CompileCode) \
687 V(CompileCodeLazy) \ 687 V(CompileCodeLazy) \
688 V(CompileDeserialize) \ 688 V(CompileDeserialize) \
689 V(CompileEval) \ 689 V(CompileEval) \
690 V(CompileFullCode) \ 690 V(CompileFullCode) \
691 V(CompileGetFromOptimizedCodeMap) \
692 V(CompileGetUnoptimizedCode) \
693 V(CompileAnalyse) \
691 V(CompileIgnition) \ 694 V(CompileIgnition) \
695 V(CompileBackgroundIgnition) \
696 V(CompileIgnitionFinalization) \
692 V(CompilerDispatcher) \ 697 V(CompilerDispatcher) \
693 V(CompileSerialize) \ 698 V(CompileSerialize) \
694 V(DeoptimizeCode) \ 699 V(DeoptimizeCode) \
695 V(FunctionCallback) \ 700 V(FunctionCallback) \
696 V(GC) \ 701 V(GC) \
697 V(GC_AllAvailableGarbage) \ 702 V(GC_AllAvailableGarbage) \
698 V(GCEpilogueCallback) \ 703 V(GCEpilogueCallback) \
699 V(GCPrologueCallback) \ 704 V(GCPrologueCallback) \
700 V(GenericNamedPropertyDefinerCallback) \ 705 V(GenericNamedPropertyDefinerCallback) \
701 V(GenericNamedPropertyDeleterCallback) \ 706 V(GenericNamedPropertyDeleterCallback) \
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 1333
1329 explicit Counters(Isolate* isolate); 1334 explicit Counters(Isolate* isolate);
1330 1335
1331 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1336 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1332 }; 1337 };
1333 1338
1334 } // namespace internal 1339 } // namespace internal
1335 } // namespace v8 1340 } // namespace v8
1336 1341
1337 #endif // V8_COUNTERS_H_ 1342 #endif // V8_COUNTERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698