| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 RawSendPort; | 80 class RawSendPort; |
| 81 class RawSmi; | 81 class RawSmi; |
| 82 class RawStackmap; | 82 class RawStackMap; |
| 83 class RawStacktrace; | 83 class RawStackTrace; |
| 84 class RawSubtypeTestCache; | 84 class RawSubtypeTestCache; |
| 85 class RawTokenStream; | 85 class RawTokenStream; |
| 86 class RawTwoByteString; | 86 class RawTwoByteString; |
| 87 class RawType; | 87 class RawType; |
| 88 class RawTypeArguments; | 88 class RawTypeArguments; |
| 89 class RawTypedData; | 89 class RawTypedData; |
| 90 class RawTypeParameter; | 90 class RawTypeParameter; |
| 91 class RawTypeRef; | 91 class RawTypeRef; |
| 92 class RawUnhandledException; | 92 class RawUnhandledException; |
| 93 class RawUnresolvedClass; | 93 class RawUnresolvedClass; |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 friend class RawInstructions; | 951 friend class RawInstructions; |
| 952 friend class RawLibrary; | 952 friend class RawLibrary; |
| 953 friend class RawLinkedHashMap; | 953 friend class RawLinkedHashMap; |
| 954 friend class RawLiteralToken; | 954 friend class RawLiteralToken; |
| 955 friend class RawLocalVarDescriptors; | 955 friend class RawLocalVarDescriptors; |
| 956 friend class RawMirrorReference; | 956 friend class RawMirrorReference; |
| 957 friend class RawObjectPool; | 957 friend class RawObjectPool; |
| 958 friend class RawReceivePort; | 958 friend class RawReceivePort; |
| 959 friend class RawRegExp; | 959 friend class RawRegExp; |
| 960 friend class RawScript; | 960 friend class RawScript; |
| 961 friend class RawStacktrace; | 961 friend class RawStackTrace; |
| 962 friend class RawSubtypeTestCache; | 962 friend class RawSubtypeTestCache; |
| 963 friend class RawTokenStream; | 963 friend class RawTokenStream; |
| 964 friend class RawType; | 964 friend class RawType; |
| 965 friend class RawTypeArguments; | 965 friend class RawTypeArguments; |
| 966 friend class RawTypeParameter; | 966 friend class RawTypeParameter; |
| 967 friend class RawUserTag; | 967 friend class RawUserTag; |
| 968 friend class SnapshotWriterVisitor; | 968 friend class SnapshotWriterVisitor; |
| 969 friend class WriteInlinedObjectVisitor; | 969 friend class WriteInlinedObjectVisitor; |
| 970 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter); | 970 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter); |
| 971 }; | 971 }; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 private: | 1016 private: |
| 1017 SnapshotWriter* writer_; | 1017 SnapshotWriter* writer_; |
| 1018 bool as_references_; | 1018 bool as_references_; |
| 1019 | 1019 |
| 1020 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); | 1020 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); |
| 1021 }; | 1021 }; |
| 1022 | 1022 |
| 1023 } // namespace dart | 1023 } // namespace dart |
| 1024 | 1024 |
| 1025 #endif // RUNTIME_VM_SNAPSHOT_H_ | 1025 #endif // RUNTIME_VM_SNAPSHOT_H_ |
| OLD | NEW |