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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 MC_UPDATE_NEW_TO_NEW_POINTERS, | 123 MC_UPDATE_NEW_TO_NEW_POINTERS, |
124 MC_UPDATE_ROOT_TO_NEW_POINTERS, | 124 MC_UPDATE_ROOT_TO_NEW_POINTERS, |
125 MC_UPDATE_OLD_TO_NEW_POINTERS, | 125 MC_UPDATE_OLD_TO_NEW_POINTERS, |
126 MC_UPDATE_POINTERS_TO_EVACUATED, | 126 MC_UPDATE_POINTERS_TO_EVACUATED, |
127 MC_UPDATE_POINTERS_BETWEEN_EVACUATED, | 127 MC_UPDATE_POINTERS_BETWEEN_EVACUATED, |
128 MC_UPDATE_MISC_POINTERS, | 128 MC_UPDATE_MISC_POINTERS, |
129 MC_INCREMENTAL_FINALIZE, | 129 MC_INCREMENTAL_FINALIZE, |
130 MC_WEAKCOLLECTION_PROCESS, | 130 MC_WEAKCOLLECTION_PROCESS, |
131 MC_WEAKCOLLECTION_CLEAR, | 131 MC_WEAKCOLLECTION_CLEAR, |
132 MC_WEAKCOLLECTION_ABORT, | 132 MC_WEAKCOLLECTION_ABORT, |
133 MC_WEAKCELL, | 133 MC_CLEAR, |
134 MC_EXTRACT_DEPENDENT_CODE, | 134 MC_CLEAR_WEAKCELL, |
135 MC_NONLIVEREFERENCES, | 135 MC_CLEAR_MAP, |
136 MC_DEOPT_DEPENDENT_CODE, | 136 MC_CLEAR_DEPENDENT_CODE, |
137 MC_FLUSH_CODE, | 137 MC_FLUSH_CODE, |
138 SCAVENGER_CODE_FLUSH_CANDIDATES, | 138 SCAVENGER_CODE_FLUSH_CANDIDATES, |
139 SCAVENGER_OBJECT_GROUPS, | 139 SCAVENGER_OBJECT_GROUPS, |
140 SCAVENGER_OLD_TO_NEW_POINTERS, | 140 SCAVENGER_OLD_TO_NEW_POINTERS, |
141 SCAVENGER_ROOTS, | 141 SCAVENGER_ROOTS, |
142 SCAVENGER_SCAVENGE, | 142 SCAVENGER_SCAVENGE, |
143 SCAVENGER_SEMISPACE, | 143 SCAVENGER_SEMISPACE, |
144 SCAVENGER_WEAK, | 144 SCAVENGER_WEAK, |
145 NUMBER_OF_SCOPES | 145 NUMBER_OF_SCOPES |
146 }; | 146 }; |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 | 602 |
603 // Counts how many tracers were started without stopping. | 603 // Counts how many tracers were started without stopping. |
604 int start_counter_; | 604 int start_counter_; |
605 | 605 |
606 DISALLOW_COPY_AND_ASSIGN(GCTracer); | 606 DISALLOW_COPY_AND_ASSIGN(GCTracer); |
607 }; | 607 }; |
608 } // namespace internal | 608 } // namespace internal |
609 } // namespace v8 | 609 } // namespace v8 |
610 | 610 |
611 #endif // V8_HEAP_GC_TRACER_H_ | 611 #endif // V8_HEAP_GC_TRACER_H_ |
OLD | NEW |