| 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/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/base/platform/platform.h" | 9 #include "src/base/platform/platform.h" |
| 10 #include "src/counters.h" | 10 #include "src/counters.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 F(MC_CLEAR_STORE_BUFFER) \ | 70 F(MC_CLEAR_STORE_BUFFER) \ |
| 71 F(MC_CLEAR_STRING_TABLE) \ | 71 F(MC_CLEAR_STRING_TABLE) \ |
| 72 F(MC_CLEAR_WEAK_CELLS) \ | 72 F(MC_CLEAR_WEAK_CELLS) \ |
| 73 F(MC_CLEAR_WEAK_COLLECTIONS) \ | 73 F(MC_CLEAR_WEAK_COLLECTIONS) \ |
| 74 F(MC_CLEAR_WEAK_LISTS) \ | 74 F(MC_CLEAR_WEAK_LISTS) \ |
| 75 F(MC_EVACUATE) \ | 75 F(MC_EVACUATE) \ |
| 76 F(MC_EVACUATE_CANDIDATES) \ | 76 F(MC_EVACUATE_CANDIDATES) \ |
| 77 F(MC_EVACUATE_CLEAN_UP) \ | 77 F(MC_EVACUATE_CLEAN_UP) \ |
| 78 F(MC_EVACUATE_COPY) \ | 78 F(MC_EVACUATE_COPY) \ |
| 79 F(MC_EVACUATE_UPDATE_POINTERS) \ | 79 F(MC_EVACUATE_UPDATE_POINTERS) \ |
| 80 F(MC_EVACUATE_UPDATE_POINTERS_BETWEEN_EVACUATED) \ | |
| 81 F(MC_EVACUATE_UPDATE_POINTERS_TO_EVACUATED) \ | 80 F(MC_EVACUATE_UPDATE_POINTERS_TO_EVACUATED) \ |
| 82 F(MC_EVACUATE_UPDATE_POINTERS_TO_NEW) \ | 81 F(MC_EVACUATE_UPDATE_POINTERS_TO_NEW) \ |
| 83 F(MC_EVACUATE_UPDATE_POINTERS_WEAK) \ | 82 F(MC_EVACUATE_UPDATE_POINTERS_WEAK) \ |
| 84 F(MC_EXTERNAL_EPILOGUE) \ | 83 F(MC_EXTERNAL_EPILOGUE) \ |
| 85 F(MC_EXTERNAL_PROLOGUE) \ | 84 F(MC_EXTERNAL_PROLOGUE) \ |
| 86 F(MC_FINISH) \ | 85 F(MC_FINISH) \ |
| 87 F(MC_INCREMENTAL_FINALIZE) \ | 86 F(MC_INCREMENTAL_FINALIZE) \ |
| 88 F(MC_INCREMENTAL_EXTERNAL_EPILOGUE) \ | 87 F(MC_INCREMENTAL_EXTERNAL_EPILOGUE) \ |
| 89 F(MC_INCREMENTAL_EXTERNAL_PROLOGUE) \ | 88 F(MC_INCREMENTAL_EXTERNAL_PROLOGUE) \ |
| 90 F(MC_MARK) \ | 89 F(MC_MARK) \ |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 RingBuffer<BytesAndDuration> recorded_old_generation_allocations_; | 490 RingBuffer<BytesAndDuration> recorded_old_generation_allocations_; |
| 492 RingBuffer<double> recorded_context_disposal_times_; | 491 RingBuffer<double> recorded_context_disposal_times_; |
| 493 RingBuffer<double> recorded_survival_ratios_; | 492 RingBuffer<double> recorded_survival_ratios_; |
| 494 | 493 |
| 495 DISALLOW_COPY_AND_ASSIGN(GCTracer); | 494 DISALLOW_COPY_AND_ASSIGN(GCTracer); |
| 496 }; | 495 }; |
| 497 } // namespace internal | 496 } // namespace internal |
| 498 } // namespace v8 | 497 } // namespace v8 |
| 499 | 498 |
| 500 #endif // V8_HEAP_GC_TRACER_H_ | 499 #endif // V8_HEAP_GC_TRACER_H_ |
| OLD | NEW |