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

Side by Side Diff: src/counters.h

Issue 2413243002: Introduce a CompilerDispatcherTracer and track how long jobs take (Closed)
Patch Set: Created 4 years, 2 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
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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 V(AccessorGetterCallback) \ 671 V(AccessorGetterCallback) \
672 V(AccessorNameGetterCallback) \ 672 V(AccessorNameGetterCallback) \
673 V(AccessorNameSetterCallback) \ 673 V(AccessorNameSetterCallback) \
674 V(Compile) \ 674 V(Compile) \
675 V(CompileCode) \ 675 V(CompileCode) \
676 V(CompileCodeLazy) \ 676 V(CompileCodeLazy) \
677 V(CompileDeserialize) \ 677 V(CompileDeserialize) \
678 V(CompileEval) \ 678 V(CompileEval) \
679 V(CompileFullCode) \ 679 V(CompileFullCode) \
680 V(CompileIgnition) \ 680 V(CompileIgnition) \
681 V(CompilerDispatcher) \
681 V(CompileSerialize) \ 682 V(CompileSerialize) \
682 V(DeoptimizeCode) \ 683 V(DeoptimizeCode) \
683 V(FunctionCallback) \ 684 V(FunctionCallback) \
684 V(GC) \ 685 V(GC) \
685 V(GenericNamedPropertyDefinerCallback) \ 686 V(GenericNamedPropertyDefinerCallback) \
686 V(GenericNamedPropertyDeleterCallback) \ 687 V(GenericNamedPropertyDeleterCallback) \
687 V(GenericNamedPropertyDescriptorCallback) \ 688 V(GenericNamedPropertyDescriptorCallback) \
688 V(GenericNamedPropertyQueryCallback) \ 689 V(GenericNamedPropertyQueryCallback) \
689 V(GenericNamedPropertySetterCallback) \ 690 V(GenericNamedPropertySetterCallback) \
690 V(IndexedPropertyDefinerCallback) \ 691 V(IndexedPropertyDefinerCallback) \
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 } 1267 }
1267 1268
1268 Isolate* isolate_ = nullptr; 1269 Isolate* isolate_ = nullptr;
1269 RuntimeCallTimer timer_; 1270 RuntimeCallTimer timer_;
1270 }; 1271 };
1271 1272
1272 } // namespace internal 1273 } // namespace internal
1273 } // namespace v8 1274 } // namespace v8
1274 1275
1275 #endif // V8_COUNTERS_H_ 1276 #endif // V8_COUNTERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698