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/globals.h" | 9 #include "src/globals.h" |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 MC_MARK_FINISH_INCREMENTAL, | 102 MC_MARK_FINISH_INCREMENTAL, |
103 MC_MARK_PREPARE_CODE_FLUSH, | 103 MC_MARK_PREPARE_CODE_FLUSH, |
104 MC_MARK_ROOT, | 104 MC_MARK_ROOT, |
105 MC_MARK_TOPOPT, | 105 MC_MARK_TOPOPT, |
106 MC_MARK_RETAIN_MAPS, | 106 MC_MARK_RETAIN_MAPS, |
107 MC_MARK_WEAK_CLOSURE, | 107 MC_MARK_WEAK_CLOSURE, |
108 MC_MARK_STRING_TABLE, | 108 MC_MARK_STRING_TABLE, |
109 MC_MARK_WEAK_REFERENCES, | 109 MC_MARK_WEAK_REFERENCES, |
110 MC_MARK_GLOBAL_HANDLES, | 110 MC_MARK_GLOBAL_HANDLES, |
111 MC_MARK_CODE_FLUSH, | 111 MC_MARK_CODE_FLUSH, |
112 MC_MARK_OPTIMIZED_CODE_MAPS, | |
113 MC_STORE_BUFFER_CLEAR, | 112 MC_STORE_BUFFER_CLEAR, |
114 MC_SLOTS_BUFFER_CLEAR, | 113 MC_SLOTS_BUFFER_CLEAR, |
115 MC_SWEEP, | 114 MC_SWEEP, |
116 MC_SWEEP_NEWSPACE, | 115 MC_SWEEP_NEWSPACE, |
117 MC_SWEEP_OLDSPACE, | 116 MC_SWEEP_OLDSPACE, |
118 MC_SWEEP_CODE, | 117 MC_SWEEP_CODE, |
119 MC_SWEEP_CELL, | 118 MC_SWEEP_CELL, |
120 MC_SWEEP_MAP, | 119 MC_SWEEP_MAP, |
121 MC_SWEEP_ABORTED, | 120 MC_SWEEP_ABORTED, |
122 MC_EVACUATE_PAGES, | 121 MC_EVACUATE_PAGES, |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 | 590 |
592 // Counts how many tracers were started without stopping. | 591 // Counts how many tracers were started without stopping. |
593 int start_counter_; | 592 int start_counter_; |
594 | 593 |
595 DISALLOW_COPY_AND_ASSIGN(GCTracer); | 594 DISALLOW_COPY_AND_ASSIGN(GCTracer); |
596 }; | 595 }; |
597 } // namespace internal | 596 } // namespace internal |
598 } // namespace v8 | 597 } // namespace v8 |
599 | 598 |
600 #endif // V8_HEAP_GC_TRACER_H_ | 599 #endif // V8_HEAP_GC_TRACER_H_ |
OLD | NEW |