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

Side by Side Diff: runtime/vm/snapshot.cc

Issue 9189003: Move assert.h/assert.cc from runtime/vm to runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing vm/assert.h for _macos, _win, _arm and _x64 files Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698