OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |