| 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 RUNTIME_VM_SNAPSHOT_H_ | 5 #ifndef RUNTIME_VM_SNAPSHOT_H_ |
| 6 #define RUNTIME_VM_SNAPSHOT_H_ | 6 #define RUNTIME_VM_SNAPSHOT_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/allocation.h" | 9 #include "vm/allocation.h" |
| 10 #include "vm/bitfield.h" | 10 #include "vm/bitfield.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 class RawBigint; | 70 class RawBigint; |
| 71 class RawNamespace; | 71 class RawNamespace; |
| 72 class RawObject; | 72 class RawObject; |
| 73 class RawObjectPool; | 73 class RawObjectPool; |
| 74 class RawOneByteString; | 74 class RawOneByteString; |
| 75 class RawPatchClass; | 75 class RawPatchClass; |
| 76 class RawPcDescriptors; | 76 class RawPcDescriptors; |
| 77 class RawReceivePort; | 77 class RawReceivePort; |
| 78 class RawRedirectionData; | 78 class RawRedirectionData; |
| 79 class RawScript; | 79 class RawScript; |
| 80 class RawSignatureData; |
| 80 class RawSendPort; | 81 class RawSendPort; |
| 81 class RawSmi; | 82 class RawSmi; |
| 82 class RawStackMap; | 83 class RawStackMap; |
| 83 class RawStackTrace; | 84 class RawStackTrace; |
| 84 class RawSubtypeTestCache; | 85 class RawSubtypeTestCache; |
| 85 class RawTokenStream; | 86 class RawTokenStream; |
| 86 class RawTwoByteString; | 87 class RawTwoByteString; |
| 87 class RawType; | 88 class RawType; |
| 88 class RawTypeArguments; | 89 class RawTypeArguments; |
| 89 class RawTypedData; | 90 class RawTypedData; |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 friend class Library; | 536 friend class Library; |
| 536 friend class LibraryPrefix; | 537 friend class LibraryPrefix; |
| 537 friend class LinkedHashMap; | 538 friend class LinkedHashMap; |
| 538 friend class LiteralToken; | 539 friend class LiteralToken; |
| 539 friend class MirrorReference; | 540 friend class MirrorReference; |
| 540 friend class MixinAppType; | 541 friend class MixinAppType; |
| 541 friend class Namespace; | 542 friend class Namespace; |
| 542 friend class PatchClass; | 543 friend class PatchClass; |
| 543 friend class RedirectionData; | 544 friend class RedirectionData; |
| 544 friend class Script; | 545 friend class Script; |
| 546 friend class SignatureData; |
| 545 friend class SubtypeTestCache; | 547 friend class SubtypeTestCache; |
| 546 friend class TokenStream; | 548 friend class TokenStream; |
| 547 friend class Type; | 549 friend class Type; |
| 548 friend class TypeArguments; | 550 friend class TypeArguments; |
| 549 friend class TypeParameter; | 551 friend class TypeParameter; |
| 550 friend class TypeRef; | 552 friend class TypeRef; |
| 551 friend class UnhandledException; | 553 friend class UnhandledException; |
| 552 friend class UnresolvedClass; | 554 friend class UnresolvedClass; |
| 553 friend class WeakProperty; | 555 friend class WeakProperty; |
| 554 DISALLOW_COPY_AND_ASSIGN(SnapshotReader); | 556 DISALLOW_COPY_AND_ASSIGN(SnapshotReader); |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 private: | 1018 private: |
| 1017 SnapshotWriter* writer_; | 1019 SnapshotWriter* writer_; |
| 1018 bool as_references_; | 1020 bool as_references_; |
| 1019 | 1021 |
| 1020 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); | 1022 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); |
| 1021 }; | 1023 }; |
| 1022 | 1024 |
| 1023 } // namespace dart | 1025 } // namespace dart |
| 1024 | 1026 |
| 1025 #endif // RUNTIME_VM_SNAPSHOT_H_ | 1027 #endif // RUNTIME_VM_SNAPSHOT_H_ |
| OLD | NEW |