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

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

Issue 2591823002: Introduce a SignatureData class so that signature functions can store both their (Closed)
Patch Set: address comments Created 4 years 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/raw_object_snapshot.cc ('k') | runtime/vm/symbols.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 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
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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698