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

Side by Side Diff: src/heap/gc-tracer.h

Issue 1345273004: [heap] Add timer scopes to process weak cells and clear non-live references. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/gc-tracer.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_HEAP_GC_TRACER_H_ 5 #ifndef V8_HEAP_GC_TRACER_H_
6 #define V8_HEAP_GC_TRACER_H_ 6 #define V8_HEAP_GC_TRACER_H_
7 7
8 #include "src/base/platform/platform.h" 8 #include "src/base/platform/platform.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 MC_UPDATE_ROOT_TO_NEW_POINTERS, 110 MC_UPDATE_ROOT_TO_NEW_POINTERS,
111 MC_UPDATE_OLD_TO_NEW_POINTERS, 111 MC_UPDATE_OLD_TO_NEW_POINTERS,
112 MC_UPDATE_POINTERS_TO_EVACUATED, 112 MC_UPDATE_POINTERS_TO_EVACUATED,
113 MC_UPDATE_POINTERS_BETWEEN_EVACUATED, 113 MC_UPDATE_POINTERS_BETWEEN_EVACUATED,
114 MC_UPDATE_MISC_POINTERS, 114 MC_UPDATE_MISC_POINTERS,
115 MC_INCREMENTAL_WEAKCLOSURE, 115 MC_INCREMENTAL_WEAKCLOSURE,
116 MC_WEAKCLOSURE, 116 MC_WEAKCLOSURE,
117 MC_WEAKCOLLECTION_PROCESS, 117 MC_WEAKCOLLECTION_PROCESS,
118 MC_WEAKCOLLECTION_CLEAR, 118 MC_WEAKCOLLECTION_CLEAR,
119 MC_WEAKCOLLECTION_ABORT, 119 MC_WEAKCOLLECTION_ABORT,
120 MC_WEAKCELL,
121 MC_NONLIVEREFERENCES,
120 MC_FLUSH_CODE, 122 MC_FLUSH_CODE,
121 SCAVENGER_CODE_FLUSH_CANDIDATES, 123 SCAVENGER_CODE_FLUSH_CANDIDATES,
122 SCAVENGER_OBJECT_GROUPS, 124 SCAVENGER_OBJECT_GROUPS,
123 SCAVENGER_OLD_TO_NEW_POINTERS, 125 SCAVENGER_OLD_TO_NEW_POINTERS,
124 SCAVENGER_ROOTS, 126 SCAVENGER_ROOTS,
125 SCAVENGER_SCAVENGE, 127 SCAVENGER_SCAVENGE,
126 SCAVENGER_SEMISPACE, 128 SCAVENGER_SEMISPACE,
127 SCAVENGER_WEAK, 129 SCAVENGER_WEAK,
128 NUMBER_OF_SCOPES 130 NUMBER_OF_SCOPES
129 }; 131 };
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 552
551 // Counts how many tracers were started without stopping. 553 // Counts how many tracers were started without stopping.
552 int start_counter_; 554 int start_counter_;
553 555
554 DISALLOW_COPY_AND_ASSIGN(GCTracer); 556 DISALLOW_COPY_AND_ASSIGN(GCTracer);
555 }; 557 };
556 } 558 }
557 } // namespace v8::internal 559 } // namespace v8::internal
558 560
559 #endif // V8_HEAP_GC_TRACER_H_ 561 #endif // V8_HEAP_GC_TRACER_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap/gc-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698