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_OBJECT_SET_H_ | 5 #ifndef RUNTIME_VM_OBJECT_SET_H_ |
6 #define VM_OBJECT_SET_H_ | 6 #define RUNTIME_VM_OBJECT_SET_H_ |
7 | 7 |
8 #include "platform/utils.h" | 8 #include "platform/utils.h" |
9 #include "vm/bit_vector.h" | 9 #include "vm/bit_vector.h" |
10 #include "vm/globals.h" | 10 #include "vm/globals.h" |
11 #include "vm/raw_object.h" | 11 #include "vm/raw_object.h" |
12 #include "vm/zone.h" | 12 #include "vm/zone.h" |
13 | 13 |
14 namespace dart { | 14 namespace dart { |
15 | 15 |
16 class ObjectSetRegion : public ZoneAllocated { | 16 class ObjectSetRegion : public ZoneAllocated { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 FATAL("Address not in any heap region"); | 83 FATAL("Address not in any heap region"); |
84 } | 84 } |
85 | 85 |
86 private: | 86 private: |
87 Zone* zone_; | 87 Zone* zone_; |
88 ObjectSetRegion* head_; | 88 ObjectSetRegion* head_; |
89 }; | 89 }; |
90 | 90 |
91 } // namespace dart | 91 } // namespace dart |
92 | 92 |
93 #endif // VM_OBJECT_SET_H_ | 93 #endif // RUNTIME_VM_OBJECT_SET_H_ |
OLD | NEW |