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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |