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

Side by Side Diff: src/counters.h

Issue 2524733007: [gc] Add runtime timer for gc prologue and epilogue callbacks (Closed)
Patch Set: adding more gc counters 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
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | src/heap/heap.cc » ('J')
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/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 V(CompileCodeLazy) \ 701 V(CompileCodeLazy) \
702 V(CompileDeserialize) \ 702 V(CompileDeserialize) \
703 V(CompileEval) \ 703 V(CompileEval) \
704 V(CompileFullCode) \ 704 V(CompileFullCode) \
705 V(CompileIgnition) \ 705 V(CompileIgnition) \
706 V(CompilerDispatcher) \ 706 V(CompilerDispatcher) \
707 V(CompileSerialize) \ 707 V(CompileSerialize) \
708 V(DeoptimizeCode) \ 708 V(DeoptimizeCode) \
709 V(FunctionCallback) \ 709 V(FunctionCallback) \
710 V(GC) \ 710 V(GC) \
711 V(GC_AllAvailableGarbage) \
712 V(GCEpilogueCallback) \
713 V(GCPrologueCallback) \
711 V(GenericNamedPropertyDefinerCallback) \ 714 V(GenericNamedPropertyDefinerCallback) \
712 V(GenericNamedPropertyDeleterCallback) \ 715 V(GenericNamedPropertyDeleterCallback) \
713 V(GenericNamedPropertyDescriptorCallback) \ 716 V(GenericNamedPropertyDescriptorCallback) \
714 V(GenericNamedPropertyQueryCallback) \ 717 V(GenericNamedPropertyQueryCallback) \
715 V(GenericNamedPropertySetterCallback) \ 718 V(GenericNamedPropertySetterCallback) \
716 V(IndexedPropertyDefinerCallback) \ 719 V(IndexedPropertyDefinerCallback) \
717 V(IndexedPropertyDeleterCallback) \ 720 V(IndexedPropertyDeleterCallback) \
718 V(IndexedPropertyDescriptorCallback) \ 721 V(IndexedPropertyDescriptorCallback) \
719 V(IndexedPropertyGetterCallback) \ 722 V(IndexedPropertyGetterCallback) \
720 V(IndexedPropertyQueryCallback) \ 723 V(IndexedPropertyQueryCallback) \
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 } 1333 }
1331 1334
1332 RuntimeCallStats* stats_ = nullptr; 1335 RuntimeCallStats* stats_ = nullptr;
1333 RuntimeCallTimer timer_; 1336 RuntimeCallTimer timer_;
1334 }; 1337 };
1335 1338
1336 } // namespace internal 1339 } // namespace internal
1337 } // namespace v8 1340 } // namespace v8
1338 1341
1339 #endif // V8_COUNTERS_H_ 1342 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | src/heap/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698