OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_SCAVENGER_H_ | 5 #ifndef RUNTIME_VM_SCAVENGER_H_ |
6 #define VM_SCAVENGER_H_ | 6 #define RUNTIME_VM_SCAVENGER_H_ |
7 | 7 |
8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
9 #include "platform/utils.h" | 9 #include "platform/utils.h" |
10 #include "vm/dart.h" | 10 #include "vm/dart.h" |
11 #include "vm/flags.h" | 11 #include "vm/flags.h" |
12 #include "vm/globals.h" | 12 #include "vm/globals.h" |
13 #include "vm/raw_object.h" | 13 #include "vm/raw_object.h" |
14 #include "vm/ring_buffer.h" | 14 #include "vm/ring_buffer.h" |
15 #include "vm/spaces.h" | 15 #include "vm/spaces.h" |
16 #include "vm/virtual_memory.h" | 16 #include "vm/virtual_memory.h" |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 intptr_t external_size_; | 305 intptr_t external_size_; |
306 | 306 |
307 friend class ScavengerVisitor; | 307 friend class ScavengerVisitor; |
308 friend class ScavengerWeakVisitor; | 308 friend class ScavengerWeakVisitor; |
309 | 309 |
310 DISALLOW_COPY_AND_ASSIGN(Scavenger); | 310 DISALLOW_COPY_AND_ASSIGN(Scavenger); |
311 }; | 311 }; |
312 | 312 |
313 } // namespace dart | 313 } // namespace dart |
314 | 314 |
315 #endif // VM_SCAVENGER_H_ | 315 #endif // RUNTIME_VM_SCAVENGER_H_ |
OLD | NEW |