Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(866)

Side by Side Diff: runtime/vm/object_store.h

Issue 2032153003: Use clustered serialization for full snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: round2 Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_STORE_H_ 5 #ifndef VM_OBJECT_STORE_H_
6 #define VM_OBJECT_STORE_H_ 6 #define VM_OBJECT_STORE_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 case Snapshot::kScript: 605 case Snapshot::kScript:
606 case Snapshot::kMessage: 606 case Snapshot::kMessage:
607 case Snapshot::kNone: 607 case Snapshot::kNone:
608 case Snapshot::kInvalid: 608 case Snapshot::kInvalid:
609 break; 609 break;
610 } 610 }
611 UNREACHABLE(); 611 UNREACHABLE();
612 return NULL; 612 return NULL;
613 } 613 }
614 614
615 friend class FullSnapshotWriter; 615 friend class Serializer;
616 friend class SnapshotReader; 616 friend class Deserializer;
617 friend class VmIsolateSnapshotReader;
618 617
619 DISALLOW_COPY_AND_ASSIGN(ObjectStore); 618 DISALLOW_COPY_AND_ASSIGN(ObjectStore);
620 }; 619 };
621 620
622 } // namespace dart 621 } // namespace dart
623 622
624 #endif // VM_OBJECT_STORE_H_ 623 #endif // VM_OBJECT_STORE_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698