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

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

Issue 1836013004: [heap] Added fine grained timers to MC_MARK_WEAK_CLOSURE. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/counters.h" 9 #include "src/counters.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 MC_EXTERNAL_PROLOGUE, 122 MC_EXTERNAL_PROLOGUE,
123 MC_FINISH, 123 MC_FINISH,
124 MC_INCREMENTAL_FINALIZE, 124 MC_INCREMENTAL_FINALIZE,
125 MC_INCREMENTAL_EXTERNAL_EPILOGUE, 125 MC_INCREMENTAL_EXTERNAL_EPILOGUE,
126 MC_INCREMENTAL_EXTERNAL_PROLOGUE, 126 MC_INCREMENTAL_EXTERNAL_PROLOGUE,
127 MC_MARK, 127 MC_MARK,
128 MC_MARK_FINISH_INCREMENTAL, 128 MC_MARK_FINISH_INCREMENTAL,
129 MC_MARK_PREPARE_CODE_FLUSH, 129 MC_MARK_PREPARE_CODE_FLUSH,
130 MC_MARK_ROOTS, 130 MC_MARK_ROOTS,
131 MC_MARK_WEAK_CLOSURE, 131 MC_MARK_WEAK_CLOSURE,
132 MC_MARK_WEAK_CLOSURE_EPHEMERAL,
133 MC_MARK_WEAK_CLOSURE_WEAK_HANDLES,
134 MC_MARK_WEAK_CLOSURE_WEAK_ROOTS,
135 MC_MARK_WEAK_CLOSURE_HARMONY,
132 MC_SWEEP, 136 MC_SWEEP,
133 MC_SWEEP_CODE, 137 MC_SWEEP_CODE,
134 MC_SWEEP_MAP, 138 MC_SWEEP_MAP,
135 MC_SWEEP_OLD, 139 MC_SWEEP_OLD,
136 SCAVENGER_CODE_FLUSH_CANDIDATES, 140 SCAVENGER_CODE_FLUSH_CANDIDATES,
137 SCAVENGER_EXTERNAL_EPILOGUE, 141 SCAVENGER_EXTERNAL_EPILOGUE,
138 SCAVENGER_EXTERNAL_PROLOGUE, 142 SCAVENGER_EXTERNAL_PROLOGUE,
139 SCAVENGER_OBJECT_GROUPS, 143 SCAVENGER_OBJECT_GROUPS,
140 SCAVENGER_OLD_TO_NEW_POINTERS, 144 SCAVENGER_OLD_TO_NEW_POINTERS,
141 SCAVENGER_ROOTS, 145 SCAVENGER_ROOTS,
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 584
581 // Separate timer used for --runtime_call_stats 585 // Separate timer used for --runtime_call_stats
582 RuntimeCallTimer timer_; 586 RuntimeCallTimer timer_;
583 587
584 DISALLOW_COPY_AND_ASSIGN(GCTracer); 588 DISALLOW_COPY_AND_ASSIGN(GCTracer);
585 }; 589 };
586 } // namespace internal 590 } // namespace internal
587 } // namespace v8 591 } // namespace v8
588 592
589 #endif // V8_HEAP_GC_TRACER_H_ 593 #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