OLD | NEW |
---|---|
1 // Copyright (c) 2011, 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 #include "vm/snapshot.h" | 5 #include "platform/assert.h" |
6 | |
7 #include "vm/assert.h" | |
8 #include "vm/bootstrap.h" | 6 #include "vm/bootstrap.h" |
9 #include "vm/heap.h" | 7 #include "vm/heap.h" |
10 #include "vm/object.h" | 8 #include "vm/object.h" |
11 #include "vm/object_store.h" | 9 #include "vm/object_store.h" |
10 #include "vm/snapshot.h" | |
Mads Ager (chromium)
2012/01/13 14:42:08
Move this back up since this is the header file th
Søren Gjesse
2012/01/16 08:58:00
Done.
| |
12 | 11 |
13 namespace dart { | 12 namespace dart { |
14 | 13 |
15 enum { | 14 enum { |
16 kInstanceId = ObjectStore::kMaxId, | 15 kInstanceId = ObjectStore::kMaxId, |
17 kMaxPredefinedObjectIds, | 16 kMaxPredefinedObjectIds, |
18 }; | 17 }; |
19 | 18 |
20 | 19 |
21 static bool IsSingletonClassId(intptr_t index) { | 20 static bool IsSingletonClassId(intptr_t index) { |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
454 | 453 |
455 | 454 |
456 void SnapshotWriterVisitor::VisitPointers(RawObject** first, RawObject** last) { | 455 void SnapshotWriterVisitor::VisitPointers(RawObject** first, RawObject** last) { |
457 for (RawObject** current = first; current <= last; current++) { | 456 for (RawObject** current = first; current <= last; current++) { |
458 RawObject* raw_obj = *current; | 457 RawObject* raw_obj = *current; |
459 writer_->WriteObject(raw_obj); | 458 writer_->WriteObject(raw_obj); |
460 } | 459 } |
461 } | 460 } |
462 | 461 |
463 } // namespace dart | 462 } // namespace dart |
OLD | NEW |