| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 118       MC_SWEEP_CELL, | 118       MC_SWEEP_CELL, | 
| 119       MC_SWEEP_MAP, | 119       MC_SWEEP_MAP, | 
| 120       MC_SWEEP_ABORTED, | 120       MC_SWEEP_ABORTED, | 
| 121       MC_EVACUATE_PAGES, | 121       MC_EVACUATE_PAGES, | 
| 122       MC_UPDATE_NEW_TO_NEW_POINTERS, | 122       MC_UPDATE_NEW_TO_NEW_POINTERS, | 
| 123       MC_UPDATE_ROOT_TO_NEW_POINTERS, | 123       MC_UPDATE_ROOT_TO_NEW_POINTERS, | 
| 124       MC_UPDATE_OLD_TO_NEW_POINTERS, | 124       MC_UPDATE_OLD_TO_NEW_POINTERS, | 
| 125       MC_UPDATE_POINTERS_TO_EVACUATED, | 125       MC_UPDATE_POINTERS_TO_EVACUATED, | 
| 126       MC_UPDATE_POINTERS_BETWEEN_EVACUATED, | 126       MC_UPDATE_POINTERS_BETWEEN_EVACUATED, | 
| 127       MC_UPDATE_MISC_POINTERS, | 127       MC_UPDATE_MISC_POINTERS, | 
| 128       MC_INCREMENTAL_WEAKCLOSURE, | 128       MC_INCREMENTAL_FINALIZE, | 
| 129       MC_WEAKCLOSURE, |  | 
| 130       MC_WEAKCOLLECTION_PROCESS, | 129       MC_WEAKCOLLECTION_PROCESS, | 
| 131       MC_WEAKCOLLECTION_CLEAR, | 130       MC_WEAKCOLLECTION_CLEAR, | 
| 132       MC_WEAKCOLLECTION_ABORT, | 131       MC_WEAKCOLLECTION_ABORT, | 
| 133       MC_WEAKCELL, | 132       MC_WEAKCELL, | 
| 134       MC_NONLIVEREFERENCES, | 133       MC_NONLIVEREFERENCES, | 
| 135       MC_FLUSH_CODE, | 134       MC_FLUSH_CODE, | 
| 136       SCAVENGER_CODE_FLUSH_CANDIDATES, | 135       SCAVENGER_CODE_FLUSH_CANDIDATES, | 
| 137       SCAVENGER_OBJECT_GROUPS, | 136       SCAVENGER_OBJECT_GROUPS, | 
| 138       SCAVENGER_OLD_TO_NEW_POINTERS, | 137       SCAVENGER_OLD_TO_NEW_POINTERS, | 
| 139       SCAVENGER_ROOTS, | 138       SCAVENGER_ROOTS, | 
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 568 | 567 | 
| 569   // Counts how many tracers were started without stopping. | 568   // Counts how many tracers were started without stopping. | 
| 570   int start_counter_; | 569   int start_counter_; | 
| 571 | 570 | 
| 572   DISALLOW_COPY_AND_ASSIGN(GCTracer); | 571   DISALLOW_COPY_AND_ASSIGN(GCTracer); | 
| 573 }; | 572 }; | 
| 574 }  // namespace internal | 573 }  // namespace internal | 
| 575 }  // namespace v8 | 574 }  // namespace v8 | 
| 576 | 575 | 
| 577 #endif  // V8_HEAP_GC_TRACER_H_ | 576 #endif  // V8_HEAP_GC_TRACER_H_ | 
| OLD | NEW | 
|---|