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

Side by Side Diff: src/counters.h

Issue 2861763002: [heap] Add GC accounting to slow allocation and incremental marking job (Closed)
Patch Set: Fix typo Created 3 years, 7 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 | « no previous file | src/heap/heap.cc » ('j') | 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/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 V(CompileRenumber) \ 709 V(CompileRenumber) \
710 V(CompileRewriteReturnResult) \ 710 V(CompileRewriteReturnResult) \
711 V(CompileScopeAnalysis) \ 711 V(CompileScopeAnalysis) \
712 V(CompileScript) \ 712 V(CompileScript) \
713 V(CompileSerialize) \ 713 V(CompileSerialize) \
714 V(CompileWaitForDispatcher) \ 714 V(CompileWaitForDispatcher) \
715 V(DeoptimizeCode) \ 715 V(DeoptimizeCode) \
716 V(FunctionCallback) \ 716 V(FunctionCallback) \
717 V(GC) \ 717 V(GC) \
718 V(GC_AllAvailableGarbage) \ 718 V(GC_AllAvailableGarbage) \
719 V(GC_IncrementalMarkingJob) \
720 V(GC_SlowAllocateRaw) \
719 V(GCEpilogueCallback) \ 721 V(GCEpilogueCallback) \
720 V(GCPrologueCallback) \ 722 V(GCPrologueCallback) \
721 V(GenericNamedPropertyDefinerCallback) \ 723 V(GenericNamedPropertyDefinerCallback) \
722 V(GenericNamedPropertyDeleterCallback) \ 724 V(GenericNamedPropertyDeleterCallback) \
723 V(GenericNamedPropertyDescriptorCallback) \ 725 V(GenericNamedPropertyDescriptorCallback) \
724 V(GenericNamedPropertyQueryCallback) \ 726 V(GenericNamedPropertyQueryCallback) \
725 V(GenericNamedPropertySetterCallback) \ 727 V(GenericNamedPropertySetterCallback) \
726 V(GetMoreDataCallback) \ 728 V(GetMoreDataCallback) \
727 V(IndexedPropertyDefinerCallback) \ 729 V(IndexedPropertyDefinerCallback) \
728 V(IndexedPropertyDeleterCallback) \ 730 V(IndexedPropertyDeleterCallback) \
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1345 1347
1346 explicit Counters(Isolate* isolate); 1348 explicit Counters(Isolate* isolate);
1347 1349
1348 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1350 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1349 }; 1351 };
1350 1352
1351 } // namespace internal 1353 } // namespace internal
1352 } // namespace v8 1354 } // namespace v8
1353 1355
1354 #endif // V8_COUNTERS_H_ 1356 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698